@charset "UTF-8";
/*====================================================================================
START TABLE OF CONTENT

1. START COMMON ONLY TOP PAGE.
2. START MAIN VISUAL SECTION.
3. START TOP INFORMATION SECTION.
4. START TOP ABOUT SECTION.
5. START TOP MENU SECTION.
6. START TOP FIRST SECTION.
7. START COMMON TOP SECTION.

END TABLE OF CONTENT
====================================================================================*/
/*====================================================================================
1. START COMMON ONLY TOP PAGE.
====================================================================================*/
/*---------- START  ----------*/
/*---------- END  ----------*/
/*====================================================================================
1. END COMMON ONLY TOP PAGE.
====================================================================================*/
/*====================================================================================
2. START MAIN VISUAL SECTION.
====================================================================================*/
.mv {
  position: relative;
  overflow: hidden;
}
.mv__img img {
  width: 100%;
  transform: translateX(2%) scale(1);
}
.mv__wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mv__wrap::before{/*茶色背景*/
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  background-color: var(--color-brown);
  width: 60%;
  height: 100%;
  z-index: 0;
  transform: translateX(-30%) skewX(-30deg);
}
.mv .container {
  height: 100%;
  position: relative;
  z-index: 1;
}
.mv__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.mv__title {
  writing-mode: horizontal-tb;
  font-size: 4.55rem;
  font-family: var(--font-noto-serif-jp);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 1rem;
  color: var(--color-white);
  transform: translate(0,-5%);
  text-shadow: 0 .3rem 1rem rgba(0,0,0,.3);
}

@media only screen and (max-width: 767px) {
  .mv__title {
    writing-mode: vertical-rl;
    font-size: 5vw;
    color: initial;
    line-height: 1.7;
    text-shadow: 0 .1rem .5rem rgba(255,255,255,1),0 .1rem .5rem rgba(255,255,255,1);
    letter-spacing: .5rem;
    transform: translate(0,0);
  }
  .mv__wrap::before{
    display: none;
  }
  .mv__row{
    align-items: stretch;
    padding: 8% 0 0 22%;
  }
  .mv__img img{
    transform: translate(-13%, -15%) scale(1.5);
  }
}

@media only screen and (min-width: 1300px) {
  .mv__title {
    transform: translate(-5vw, -5%);
  }
}
/*====================================================================================
2. END MAIN VISUAL SECTION.
====================================================================================*/
/*====================================================================================
3. START TOP INFORMATION SECTION.
====================================================================================*/
.mv__desc {
  padding: 0 0 5rem;
  font-size: 2vw;
  line-height: 1.5;
  font-family: var(--font-noto-serif-jp);
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: var(--color-brown-second);
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .mv__desc {
    font-size: 5vw;
    line-height: 1.7;
    padding: 0 0 2.5rem;
  }
}

/*---------- START CARD TOP ----------*/
.card-top {
  margin-top: 3rem;
}
.card-top a {
  display: block;
  text-decoration: none;
}
.card-top figure{position: relative;
  width: 100%;
  height: 100%;
}
.card-top__figure{
  position: relative;
  margin-bottom: 1.2rem;
  padding-top: 100%;
  border-radius: 0.7rem;
  overflow: hidden;
}
.card-top__figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.card-top__figcaption {
  display: inline-block;
  margin-bottom: 5px;
  padding: 0.4rem 2rem;
  border-radius: 0.7rem;
  z-index: 99999;
}
.card-top__title {
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.card-top__time {
  margin-bottom: 0.2rem;
}
.card-top__time time {
  letter-spacing: 0.05em;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.card-top:nth-child(even) {
  margin-top: 6rem;
}
.card-top .card-top__figcaption{
background-color: var(--color-pear-yellow);
}

/*.card-top:nth-child(5n+1) .card-top__figcaption, .card-top:nth-child(5n+5) .card-top__figcaption {
  background-color: var(--color-umber);
}
.card-top:nth-child(5n+2) .card-top__figcaption {
  background-color: var(--color-pear-yellow);
}
.card-top:nth-child(5n+3) .card-top__figcaption {
  background-color: var(--color-baby-blue);
}
.card-top:nth-child(5n+4) .card-top__figcaption {
  background-color: var(--color-salmon);
}*/

@media only screen and (min-width: 768px) {
  .card-top__desc p {
    display: inline;
    background: no-repeat 0 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    -webkit-transition: background-size 0.4s cubic-bezier(0.43, 0.05, 0.17, 1) 0s;
    transition: background-size 0.4s cubic-bezier(0.43, 0.05, 0.17, 1) 0s;
  }
  .card-top a:hover .card-top__figure img {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  .card-top a:hover .card-top__time time {
    color: var(--color-brown-second);
  }
  .card-top a:hover .card-top__desc p {
    color: var(--color-brown-second);
    background-size: 100% 1px;
  }
}
@media only screen and (max-width: 767px) {
  .card-top__figcaption {
    padding: 0.3rem 1.5rem;
  }
  .card-top__title {
    font-size: 1.4rem;
  }
}
/*---------- END CARD TOP ----------*/
.top-info {
  padding: 6rem 0 6rem;
  background-color: var(--color-gray);
}
.top-info__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-info__cards .card-top:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 768px) {
  .top-info__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 5rem;
  }
  .top-info__head-left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 1px;
  }
  .top-info__head-right {
    width: 75%;
  }
  .top-info__cards .card-top {
    width: calc(20% - 1.6rem);
    margin-right: 2rem;
  }
  .top-info__cards .card-top:nth-child(5n) {
    margin-right: 0;
  }
  .top-info__cards .card-top:nth-child(1), .top-info__cards .card-top:nth-child(2), .top-info__cards .card-top:nth-child(3), .top-info__cards .card-top:nth-child(4), .top-info__cards .card-top:nth-child(5) {
    margin-top: 0;
  }
}

#strongblog_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--color-gray);
}
#strongblog_category .strongblog_category_ttl {
  background-color: #6a6a6a;
  color: #fff;
  padding: 12px 20px;
  display: block;
  width: 100%;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  #strongblog_category .strongblog_category_ttl {
    display: inline-block;
    width: auto;
  }
}
#strongblog_category .strongblog_category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding: 10px 10px 5px;
}
#strongblog_category .strongblog_category_list li {
  list-style: none;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}
#strongblog_category .strongblog_category_list li a {
  display: block;
  color: #fff;
  background: var(--color-brown);
  border-radius: 5px;
  padding: 5px 20px;
  text-decoration: none;
}
#strongblog_category .strongblog_category_list li a:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  .top-info {
    padding: 3.5rem 0;
  }
  .top-info__head {
    margin-bottom: 2.5rem;
  }
  .top-info__head-left {
    text-align: center;
  }
  .top-info__head-right {
    width: 100%;
    margin-block-start: 1.5em;
  }
  .top-info__cards {
    gap: 2rem;
  }
  .top-info__cards .card-top {
    width: calc(50% - 1rem);
  }
  .top-info__cards .card-top {
    margin-top: 0;
  }
  .top-info__btn {
    margin-top: 2.5rem;
    text-align: center;
  }
}
/*====================================================================================
3. END TOP INFORMATION SECTION.
====================================================================================*/
/*====================================================================================
4. START TOP ABOUT SECTION.
====================================================================================*/
.top-about {
  background-color: var(--color-beige);
}
.top-about__subtitle {
  margin-bottom: 4.5rem;
  color: var(--color-brown-second);
  font-size: 3.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-family: var(--font-sorts-mill-goudy);
}
.top-about__subtitle-text {
  position: relative;
  display: inline-block;
}
.top-about__subtitle--deco-left, .top-about__subtitle--deco-right {
  position: relative;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 400;
  font-family: var(--font-sorts-mill-goudy);
}
.top-about__subtitle--deco-left {
  top: -1.8rem;
  margin-right: 0.7rem;
}
.top-about__subtitle--deco-right {
  bottom: -1.8rem;
  margin-left: 0.7rem;
}
.top-about__text {
  margin-bottom: 4.5rem;
  font-size: 2.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: var(--font-noto-serif-jp);
  text-align: center;
}
.top-about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.top-about__desc p {
  margin-top: 2rem;
  padding-bottom: 1rem;
}
.top-about__desc p:first-child {
  margin-top: 0;
}
.top-about__figure img {
  width: 100%;
  border-radius: 0.7rem;
}
.top-about__btn {
  margin-top: 2rem;
  width: 100%;
}

.top-about .box-main__body .box-main__list li {
  font-size: clamp(1rem, 0.591rem + 2.2vw, 2.5rem);
  padding-bottom: .8rem;
}

@media only screen and (min-width: 768px) {
  .top-about__left {
    width: 50%;
    padding: 0 4.6rem;
    order: 1;
    display: flex;
    align-items: center;
  }
  .top-about__right {
    /*-webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;*/
    width: 50%;
    min-width: 1px;
    margin-right: -5.5rem;
    order: 2;
  }
  .top-about__bottom{
    width: 100%;
    order: 3;
  }
  .top-about__desc {
    font-size: 1.6rem;
    margin-top: -1rem;
  }
  .top-about__text {
    padding-left: 7rem;
  }
  .top-about .box-main__list {
    height: 34rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .top-about .box-main__body .box-main__list li {
    font-size: 2rem;
  }
  .top-about .box-main--umber .box-main__list li{/*資格情報*/
    line-height: 3;
    padding-bottom: .5rem;
  }
  .top-about .box-main__body .box-main__list li:last-of-type{
    padding-bottom: 0;
  }
  .top-about__bottom .benefit .box-main__list > li {
    height: 22rem;
  }
}
@media only screen and (max-width: 767px) {
  .top-about__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top-about__right {
    margin-bottom: 2.5rem;
  }
  .top-about__subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 1.7rem;
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .top-about__subtitle-text {
    padding-left: 0.7em;
    text-indent: -0.7em;
  }
  .top-about__subtitle--deco-left, .top-about__subtitle--deco-right {
    font-size: 2rem;
  }
  .top-about__subtitle--deco-left {
    top: -0.7rem;
  }
  .top-about__subtitle--deco-right {
    bottom: -1.3rem;
  }
  .top-about__text, .top-about__btn {
    text-align: center;
  }
  .top-about__text {
    margin-bottom: 2.5rem;
    font-size: 1.9rem;
  }
  .top-about__btn {
    margin-top: 2.5rem;
  }
}
/*====================================================================================
4. END TOP ABOUT SECTION.
====================================================================================*/
/*====================================================================================
5. START TOP MENU SECTION.
====================================================================================*/
/*---------- START BANNER TOP ----------*/
.bnr-top {
  position: relative;
  text-decoration: none;
}
.bnr-top__figure {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
}
.bnr-top__figure img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.bnr-top__figcaption {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  padding: 0 0.7rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--color-white);
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.bnr-top__title {
  color: #808080;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

@media only screen and (min-width: 768px) {
  .bnr-top:hover .bnr-top__figure img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  .bnr-top:hover .bnr-top__figcaption {
    background-color: var(--color-brown);
  }
  .bnr-top:hover .bnr-top__title {
    color: var(--color-white);
  }
}
/*---------- END BANNER TOP ----------*/
/*---------- START GROUP TOP ----------*/
.group-top {
  padding: 3rem 5rem 5rem 5rem;
  border-radius: 1rem;
  background-color: var(--color-white);
}
.group-top__title {
  margin-bottom: 2rem;
  text-align: center;
}
.group-top__title-wrap {
  position: relative;
  display: inline-block;
}
.group-top__title-deco {
  position: absolute;
  top: -5.2rem;
  left: -11rem;
}
.group-top__title-en, .group-top__title-ja {
  font-weight: 400;
  letter-spacing: 0.05em;
}
.group-top__title-en {
  font-size: 2.6rem;
  font-family: var(--font-sorts-mill-goudy);
}
.group-top__title-ja {
  font-size: 2.4rem;
  font-family: var(--font-noto-serif-jp);
}
.group-top__bnrs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.group-top__bnrs .bnr-top:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 768px) {
  .group-top__bnrs .bnr-top {
    width: calc(33.333% - 2.7rem);
    margin-right: 4rem;
  }
  .group-top__bnrs .bnr-top:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .group-top__bnrs .bnr-top {
    width: calc(50% - 1rem);
    margin-right: 2rem;
  }
  .group-top__bnrs .bnr-top:nth-child(2) {
    margin-top: 0;
  }
  .group-top__bnrs .bnr-top:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .group-top {
    padding: 3rem 2rem 2rem 2rem;
  }
  .group-top__title-deco {
    top: -4rem;
    left: -8rem;
  }
  .group-top__title-deco img {
    max-height: 4.8rem;
  }
  .group-top__title-en, .group-top__title-ja {
    line-height: 1.3;
  }
  .group-top__title-en {
    font-size: 2.2rem;
  }
  .group-top__title-ja {
    font-size: 2rem;
  }
  .group-top__bnrs .bnr-top {
    margin-top: 2rem;
  }
  .group-top__bnrs .bnr-top:first-child {
    margin-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .group-top__bnrs .bnr-top {
    width: 100%;
  }
}
/*---------- END GROUP TOP ----------*/
.top-menu {
  padding-bottom: 10rem;
  background-color: var(--color-gray);
}
.top-menu .group-top {
  margin-bottom: 8rem;
}
.top-menu__btn {
  margin-top: 6rem;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .top-menu .container {
    margin-top: -5rem;
  }
}
@media only screen and (max-width: 767px) {
  .top-menu {
    padding-bottom: 5rem;
  }
  .top-menu .group-top {
    margin-bottom: 4rem;
  }
  .top-menu__btn {
    margin-top: 3rem;
  }
}
/*====================================================================================
5. END TOP MENU SECTION.
====================================================================================*/
/*====================================================================================
6. START TOP FIRST SECTION.
====================================================================================*/
.top-first {
  padding: 7.5rem 0;
}
.top-first__left {
  position: relative;
  text-align: center;
}
.top-first__right {
  padding-top: 3rem;
}
.top-first__gallery {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-first__gallery-sm img, .top-first__gallery-lg img {
  border-radius: 0.7rem;
}
.top-first__gallery-sm {
  position: absolute;
  top: 0;
  left: -3rem;
}
.top-first__gallery-lg {
  position: relative;
  z-index: 2;
  padding-top: 7.5rem;
}
.top-first__list {
  margin-top: 5rem;
}

@media only screen and (min-width: 768px) {
  .top-first__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-first__left, .top-first__right {
    width: 50%;
  }
  .top-first__left {
    margin-left: -3rem;
  }
  .top-first__left::before {
    position: absolute;
    content: "";
    top: -7.5rem;
    right: 24rem;
    width: 100vw;
    height: calc(100% + 15rem);
    background-color: var(--color-beige-third);
  }
}
@media only screen and (min-width: 576px) {
  .top-first__list {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .top-first__item:nth-child(odd) {
    text-align: right;
  }
  .top-first__item:nth-child(even) {
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .top-first {
    position: relative;
    padding: 0.5rem 0;
  }

  .top-first__gallery-sm img, .top-first__gallery-lg img {
    width: 100%;
  }
  .top-first__gallery-sm {
    left: 0;
    width: 55%;
  }
  .top-first__gallery-lg {
    width: 75%;
    margin-left: auto;
    padding-top: 5rem;
  }
  .top-first__list {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 575px) {
  .top-first__item {
    margin-top: 1.5rem;
    text-align: center;
  }
  .top-first__item:first-child {
    margin-top: 0;
  }
}
/*====================================================================================
6. END TOP FIRST SECTION.
====================================================================================*/

/*====================================================================================
7. START COMMON TOP SECTION.
====================================================================================*/
/*---------- START POSTS TOP ----------*/
.posts-top__figure {
  margin-bottom: 3rem;
}
.posts-top__figure img {
  width: 100%;
  border-radius: 1rem;
}
.posts-top__title {
  margin-bottom: 0.5rem;
}
.posts-top__title-en, .posts-top__title-ja {
  font-weight: 400;
}
.posts-top__title-en {
  color: var(--color-black-third);
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  font-family: var(--font-sorts-mill-goudy);
}
.posts-top__title-ja {
  position: relative;
  padding-left: 3.5rem;
  color: var(--color-gray-second);
  font-size: 1.6rem;
}
.posts-top__title-ja::before {
  position: absolute;
  left: 0.8rem;
  bottom: 0;
  content: "／";
  font-weight: 500;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
  color: var(--color-brown-second);
}
.posts-top__btn {
  margin-top: 2.5rem;
}

@media only screen and (max-width: 767px) {
  .posts-top__figure {
    margin-bottom: 2rem;
  }
  .posts-top__title-en {
    font-size: 2.5rem;
  }
  .posts-top__title-ja {
    padding-left: 3rem;
    font-size: 1.4rem;
  }
  .posts-top__title-ja::before {
    left: 0.4rem;
    bottom: -0.1rem;
  }
}
/*---------- END POSTS TOP ----------*/
.cm-top {
  background-color: var(--color-gray);
}
.cm-top__list {
  grid-gap: 8rem;
}

@media only screen and (min-width: 576px) {
  .cm-top__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cm-top__list {
    grid-gap: 4.5rem 3rem;
  }
}
@media only screen and (max-width: 575px) {
  .cm-top .posts-top {
    margin-top: 4.5rem;
  }
  .cm-top .posts-top:first-child {
    margin-top: 0;
  }
}
/*====================================================================================
7. END COMMON TOP SECTION.
====================================================================================*/

/*====================================================================================
8. START CASE TOP SECTION.
====================================================================================*/

.slick-case{
  width: 100%;
  margin-right: auto;
  display: flex;
  align-items: stretch;
  position: relative;
}

/*高さを揃える*/
.slick-track{
  display: flex;
}

.slick-case .slick-slide div{
  flex: 1 0 auto;
}
/*高さを揃える*/

.slick-case .slick-slide{
  margin-right: 1vw!important;
  line-height: 1.5;
  height: auto;/*高さを揃える*/
  background-color: var(--color-white);
  padding: 16px;
  padding: 1rem;
  height: auto;
  text-decoration: none;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  transform: translateX(-5%);
  /*color: #1F2937;*/
  color: var(--color-black-third);
  display: flex;/*子要素高さを揃える*/
  flex-wrap: wrap;/*子要素高さを揃える*/
  font-size: 1.3rem;
}

.slick-case .slick-slide .slick-case__content{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .slick-case .slick-slide{
    transform: translateX(0);
  }
}

.slick-case .slick-slide > a:hover{
  opacity: .7;
}

.slick-case__BeforeAfter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  letter-spacing: 0;
  align-items: stretch;
 aspect-ratio: 10/9;
  width: 100%;
  height: fit-content;
  min-height: 0;
  flex: none !important;/*先の指定をココだけ打ち消し*/
}

.slick-case__BeforeAfter img {
  display: block;
  vertical-align: bottom;
}

.slick-case__BeforeAfter.vertical{
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 5px 0;
}

.slick-case__BeforeAfter figure {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slick-case__BeforeAfter > span{/*矢印*/
  width: clamp(2rem, 2vw, 20px);
  display: inline-block;
  margin: auto .95rem;
}

.slick-case__BeforeAfter.vertical > span{
  width: clamp(1.5rem, 2vw, 20px);
  margin: 0;
}

.slick-case__BeforeAfter img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  max-height: 100%;
}

.slick-case__BeforeAfter figcaption {
  padding: .5rem 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  min-height: calc(14px + 1rem);
}

.slick-case__content {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
}

.slick-case__title {
  font-weight: 600;
  font-family: var(--font-noto-serif-jp);
  line-height: 1.3;
  margin: 1rem 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.slick-case__title small{
  display: inline-block;
  font-size: .6em;
}

.slick-case__head,
.slick-case__price,
.slick-case__detail{
  width: 100%;
  border-radius: .7rem .7rem 0 0;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 1.5rem auto 0;
}

.slick-case__head{
  flex: none !important;/*先の指定をココだけ打ち消し*/
}

.slick-case__detail{
  flex: 5 0 auto!important;
}

.slick-case__content div:nth-of-type(3){
  margin: 3rem auto 0;
}

.slick-case__head span{
  width: 100%;
}

.slick-case__price h4,
.slick-case__detail h4{
  width: 100%;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  word-break: break-all;
  line-height: 1.2;
  padding: .5rem 0 .3rem 0;
}

.slick-case__price p,
.slick-case__detail p{
  margin-top: .25rem;
}


@media only screen and (min-width: 768px) {
  .slick-case__title{
    font-size: clamp(1rem, 0.591rem + 1.5vw, 2.5rem);
  }

  .slick-case .slick-slide{
    padding: 2rem;
  }

  .slick-case__price h4,
  .slick-case__detail h4{
    width: 18%;
  }

  .slick-case__price p,
  .slick-case__detail p{
    /*margin-left: -1px;ボーダーの重なり*/
    width: calc(82% + 1px);
  }

}

/*---項目名ボーダー----*/
.slick-case__price h4,
.slick-case__detail h4 {
  background-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  white-space: nowrap;
}

.slick-case__price h4::after,
.slick-case__detail h4::after {
  background-color: #D1D5DB;
  width: 100%;
  height: 1px;
  content: '';
  margin-left: 1rem;
}

@media only screen and (min-width: 768px) {

  .slick-case__price h4,
  .slick-case__detail h4{
    width: 100%;
  }

  .slick-case__price p,
  .slick-case__detail p{
    width: 100%;
  }

}
/*---項目名ボーダーここまで----*/
/*---矢印と数字----*/
.arrow_wrap {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .arrow_wrap {
    width: 95vw;
    /*margin-left: calc(50% - 45vw);*/
    margin-right: calc(50% - 45vw);
  }
}

.arrow_wrap .arrows{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  max-width: 220px;
}

.slick-num {
  font-size: clamp(1.5rem,1vw,1.25rem);
  line-height: 1;
  position: relative;
  text-align: center;
  white-space: nowrap;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  color: var(--color-brown);
}

.now-count{
  color: var(--color-brown-second);
}

.slick-prev,
.slick-next{
  font-size: .875rem;
  width: 6rem;
  height: 6rem;
  /*aspect-ratio: 58.5 / 48;*/
  aspect-ratio: 1/1;
  top: 30%;
  transform: translate(0,-50%);/*初期設定を打ち消す*/
  z-index: 10;
}

.slick-prev{
  left: 0;
}

.slick-next{
  right: 0;
}

.slick-prev::before,
.slick-next::before{
  color: var(--color-black-third);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /*color: #3E7E91;*/
  color: var(--color-brown-second);
  background-color: rgba(255,255,255,.9);
  border: 1px solid;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 1;/*初期設定を打ち消す*/
}

.slick-prev:hover::before,
.slick-next:hover::before{
  opacity: .7;
}

.slick-prev::before{
  content: '←';
}

.slick-next::before{
  content: '→';
}

/*麻布クリニック仕様*/
/*.slick-prev::before{
  aspect-ratio: 58.5 / 48;
  display: block;
  -webkit-mask-image: url(../common_img/arrow.svg);
  mask-image: url(../common_img/arrow.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #3E7E91;
  width: 100%;
  content: '';
  transform: scale(-1, 1);
}

.slick-next::before{
  aspect-ratio: 58.5 / 48;
  display: block;
  -webkit-mask-image: url(../common_img/arrow.svg);
  mask-image: url(../common_img/arrow.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #3E7E91;
  font-size: clamp(1.5rem,2vw,2rem);
  content: '';
}*/

.slick-dots {
  display: none!important;
}

.slick-case__content + .top-menu__btn{
  margin-top: initial;
  margin: auto auto 3rem auto;
  padding-top: 5rem;
}

.slick-case__content + .top-menu__btn .btn-main{
  min-width: 15rem;
  text-align: center;
  border: 1px solid var(--color-umber);
  background-color: var(--color-umber);
}


@media only screen and (min-width: 768px) {
  .slick-case__content + .top-menu__btn .btn-main.btn--brown .btn__bg::before {
    background-color: var(--color-white);
  }
  .slick-case__content + .top-menu__btn .btn-main.btn--brown:hover{
    border-color: initial;
  }
  .slick-case__content + .top-menu__btn .btn-main.btn--brown:hover .btn__text{
    color: initial;
  }
}

.slick-scrollbar{
  background-color: #fff;
  width: 100%;
  display: inline-block;
  height: 1px;
  position: relative;
  color: var(--color-brown);
  margin-left: 1rem;
}


.slick-scrollbar::after {
  position: absolute;
  top: 0;
  right: 52%;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  content: '';
}

/*====================================================================================
8. END CASE TOP SECTION.
====================================================================================*/
/*====================================================================================
2. START
====================================================================================*/
/*---------- START  ----------*/
/*---------- END  ----------*/
/*---------- START  ----------*/
/*---------- END  ----------*/
/*---------- START  ----------*/
/*---------- END  ----------*/
/*====================================================================================
2. END
====================================================================================*/
