@charset "UTF-8";
.fv {
  padding: 0 40px;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .fv {
    padding: 4.2666666667vw 5.3333333333vw;
    margin-bottom: 0;
  }
}
.fv__inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    display: flex;
    flex-direction: column-reverse;
  }
}
.fv__contents {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #fff;
  writing-mode: vertical-rl;
  z-index: 10;
  padding: 64px 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 1320px) {
  .fv__contents {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 768px) {
  .fv__contents {
    position: unset;
    writing-mode: horizontal-tb;
    padding: 4.2666666667vw 0 4.2666666667vw;
  }
}
.fv__contents .ashirai {
  position: absolute;
  top: 37px;
  right: -37px;
}
@media screen and (max-width: 768px) {
  .fv__contents .ashirai {
    right: unset;
    top: 10.6666666667vw;
    left: 8vw;
  }
}
.fv__contents .ashirai02 {
  position: absolute;
  bottom: 0;
  left: -80px;
}
@media screen and (max-width: 768px) {
  .fv__contents .ashirai02 {
    width: 21.3333333333vw;
    left: -10px;
    bottom: 20px;
  }
}
.fv__title {
  font-size: 32px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-left: 20px;
}
@media screen and (max-width: 1320px) {
  .fv__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 5.8666666667vw;
    text-align: center;
    margin-left: 0;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 3.2vw;
  }
}
.fv__text {
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 1320px) {
  .fv__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .fv__text {
    text-align: center;
    font-size: 3.4666666667vw;
    line-height: 1.6;
  }
}
.fv__img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.fv__img .ashirai {
  position: absolute;
  bottom: -60px;
  right: -37px;
  z-index: 10;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .fv__img .ashirai {
    display: none;
  }
}
.fv__slider {
  width: 100%;
}
.fv__slider .swiper-slide {
  /* ズームイン */
  /* ズームアウト */
}
.fv__slider .swiper-slide img {
  width: 100%;
}
.fv__slider .swiper-slide.swiper-slide-active img, .fv__slider .swiper-slide.swiper-slide-duplicate-active img, .fv__slider .swiper-slide.swiper-slide-prev img {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center center/cover;
  /* ズームイン */
  animation: fvZoomOut 10s linear 0s normal both;
  /*ズームアウト */
}
@keyframes fvZoomIn {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fvZoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}
.fv__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .fv__scroll {
    display: none;
  }
}
.fv__scroll .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fv__scroll .arrow img {
  animation: zoom 1.5s linear infinite;
}
@keyframes zoom {
  from {
    width: 8px;
    height: 20%;
  }
  to {
    width: 8px;
    height: 100%;
  }
}
.fv__scroll .circle {
  display: inline-block;
  animation: rotateCircle 20s linear infinite;
  /* 10秒で1回転・無限ループ */
}
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.intro {
  background: #FFF0F0;
  padding: 56px 40px 80px;
}
@media screen and (max-width: 768px) {
  .intro {
    padding: 8.5333333333vw 5.3333333333vw;
  }
}
.intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .intro__inner {
    display: block;
  }
}
.intro .news {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .intro .news {
    width: 100%;
  }
}
.intro .clinic {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .intro .clinic {
    width: 100%;
  }
}
.intro .news {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .intro .news {
    display: block;
    margin-bottom: 10.6666666667vw;
  }
}
.intro .news .section__title {
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .intro .news .section__title {
    padding-top: 0;
    text-align: center;
  }
}
.intro .news__contents {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .intro .news__contents {
    width: 100%;
    margin-top: 5.3333333333vw;
  }
}
.intro .news__contents .more {
  margin: 30px 0 0 auto;
}
.intro .news__list {
  padding: 24px 0;
  display: block;
  border-bottom: 4px dotted #5D3E22;
}
@media screen and (max-width: 768px) {
  .intro .news__list {
    padding: 4.2666666667vw 0;
  }
}
.intro .news__list .date {
  font-size: 16px;
  font-weight: normal;
  font-family: "futura-pt", sans-serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 1320px) {
  .intro .news__list .date {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .intro .news__list .date {
    font-size: 3.4666666667vw;
  }
}
.intro .news__list .title {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 1320px) {
  .intro .news__list .title {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .intro .news__list .title {
    font-size: 3.4666666667vw;
  }
}
.intro .clinic {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .intro .clinic {
    display: block;
  }
}
.intro .clinic .section__title {
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .intro .clinic .section__title {
    padding-top: 0;
    text-align: center;
  }
}
.intro .clinic__table {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .intro .clinic__table {
    width: 100%;
    margin-top: 4.2666666667vw;
  }
}
.intro .clinic__table table {
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .intro .clinic__table table {
    margin-bottom: 2.6666666667vw;
  }
}
.intro .clinic__table thead {
  border-bottom: 1px solid #5D3E22;
}
.intro .clinic__table thead th {
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  box-sizing: border-box;
  padding: 16px;
  vertical-align: middle;
}
@media screen and (max-width: 1320px) {
  .intro .clinic__table thead th {
    font-size: 12px;
    padding: 12px 6px;
  }
}
@media screen and (max-width: 768px) {
  .intro .clinic__table thead th {
    font-size: 3.4666666667vw;
    padding: 12px 5px;
  }
}
.intro .clinic__table thead td {
  text-align: center;
  font-size: 14px;
  box-sizing: border-box;
  padding: 16px 7px;
  vertical-align: middle;
}
@media screen and (max-width: 1320px) {
  .intro .clinic__table thead td {
    font-size: 12px;
    padding: 12px 6px;
  }
}
@media screen and (max-width: 768px) {
  .intro .clinic__table thead td {
    font-size: 3.4666666667vw;
  }
}
.intro .clinic__table tbody th {
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  box-sizing: border-box;
  padding: 16px;
  line-height: 1.4;
  vertical-align: middle;
}
@media screen and (max-width: 1320px) {
  .intro .clinic__table tbody th {
    font-size: 12px;
    padding: 12px 6px;
  }
}
@media screen and (max-width: 768px) {
  .intro .clinic__table tbody th {
    font-size: 3.2vw;
    padding: 10px 5px;
  }
}
.intro .clinic__table tbody td {
  text-align: center;
  font-size: 14px;
  box-sizing: border-box;
  padding: 16px 7px;
  vertical-align: middle;
}
@media screen and (max-width: 1320px) {
  .intro .clinic__table tbody td {
    font-size: 12px;
    padding: 12px 6px;
  }
}
@media screen and (max-width: 768px) {
  .intro .clinic__table tbody td {
    font-size: 3.7333333333vw;
    padding: 12px 5px;
  }
}
.intro .clinic__text {
  text-align: right;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .intro .clinic__text {
    font-size: 3.2vw;
  }
}

.section__title {
  writing-mode: vertical-lr;
}
@media screen and (max-width: 768px) {
  .section__title {
    writing-mode: horizontal-tb;
  }
}
.section__title .en {
  font-size: 32px;
  color: #EF9395;
  font-family: "futura-pt", sans-serif;
  margin-right: 12px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .section__title .en {
    font-size: 6.4vw;
    margin-right: 0;
  }
}
.section__title .ja {
  border-left: 1px solid #5D3E22;
  font-size: 16px;
  padding-left: 5px;
  display: inline-block;
  letter-spacing: 0.15em;
	    font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  .section__title .ja {
    margin-top: 12px;
    padding-top: 12px;
    border-left: 0 solid #5D3E22;
    border-top: 1px solid #5D3E22;
    padding-left: 0;
  }
}

.feature {
  padding: 160px 40px 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .feature {
    padding: 13.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
.feature .ashirai {
  position: absolute;
  top: -30px;
  right: 80px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .feature .ashirai {
    width: 16vw;
    left: 15%;
    right: unset;
  }
}
.feature .ashirai02 {
  position: absolute;
  top: 8%;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .feature .ashirai02 {
    width: 32vw;
    top: 4%;
  }
}
.feature__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.feature__title {
  text-align: center;
  max-width: 700px;
  font-family: "Shippori Mincho", serif;
  margin: 0 auto 120px;
  font-size: 36px;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .feature__title {
    font-size: 6.4vw;
    margin-bottom: 13.3333333333vw;
  }
}
.feature__title::before {
  content: "";
  width: 107px;
  height: 107px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/top/ashirai_title01.svg) no-repeat;
  background-size: 107px;
  background-position: left;
}
@media screen and (max-width: 768px) {
  .feature__title::before {
    width: 70px;
    height: 70px;
    background-size: 70px;
  }
}
.feature__title::after {
  content: "";
  width: 107px;
  height: 107px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../img/top/ashirai_title02.svg) no-repeat;
  background-size: 107px;
  background-position: right;
}
@media screen and (max-width: 768px) {
  .feature__title::after {
    width: 70px;
    height: 70px;
    background-size: 70px;
  }
}
.feature__img {
  width: 53%;
  position: relative;
}
@media screen and (max-width: 1320px) {
  .feature__img {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .feature__img {
    width: 90%;
    transform: translateX(20px);
  }
}
.feature__img .ashirai03 {
  position: absolute;
  bottom: -90px;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .feature__img .ashirai03 {
    bottom: -60px;
    left: 75%;
    width: 29.3333333333vw;
  }
}
.feature__img .ashirai04 {
  position: absolute;
  top: -120px;
  right: -140px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .feature__img .ashirai04 {
    top: 100px;
    width: 66.6666666667vw;
  }
}
.feature__img .ashirai05 {
  position: absolute;
  bottom: -130px;
  left: 10%;
}
@media screen and (max-width: 768px) {
  .feature__img .ashirai05 {
    width: 32vw;
    left: unset;
    right: 6%;
    bottom: -130px;
  }
}
.feature__img img {
  position: relative;
  z-index: 2;
  border-radius: 8px;
}
.feature__img::after {
  content: "";
  width: 100%;
  height: 368px;
  background: #FAF6EF;
  border-radius: 8px;
  position: absolute;
  left: -84px;
  top: 84px;
}
@media screen and (max-width: 1320px) {
  .feature__img::after {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .feature__img::after {
    top: 20px;
    height: 100%;
    left: -20px;
  }
}
.feature__num {
  width: 144px;
  position: absolute;
  z-index: 3;
  top: 32px;
  right: -72px;
}
@media screen and (max-width: 1320px) {
  .feature__num {
    width: 100px;
    right: -30px;
  }
}
@media screen and (max-width: 768px) {
  .feature__num {
    width: 21.3333333333vw;
    right: 50%;
    bottom: -40px;
    top: unset;
    transform: translateX(50%);
  }
  .feature__num img {
    width: 100%;
  }
}
.feature__contents {
  width: 38%;
  padding-top: 56px;
}
@media screen and (max-width: 1320px) {
  .feature__contents {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .feature__contents {
    width: 100%;
    padding-top: 13.3333333333vw;
  }
}
.feature__contents h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  font-family: "Shippori Mincho", serif;
  padding-bottom: 30px;
  border-bottom: 3px dotted #5D3E22;
  margin-bottom: 35px;
}
@media screen and (max-width: 1320px) {
  .feature__contents h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .feature__contents h3 {
    font-size: 5.3333333333vw;
  }
}
.feature__contents p {
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1320px) {
  .feature__contents p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .feature__contents p {
    font-size: 3.7333333333vw;
  }
}
.feature__box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .feature__box {
    display: block;
  }
}
.feature__box:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .feature__box:nth-of-type(even) .feature__img {
    margin: 0 auto;
    transform: translateX(0);
  }
}
.feature__box:nth-of-type(even) .feature__img::after {
  left: 84px;
}
@media screen and (max-width: 768px) {
  .feature__box:nth-of-type(even) .feature__img::after {
    left: -20px;
  }
}
.feature__box:nth-of-type(even) .feature__num {
  right: unset;
  left: -72px;
}
@media screen and (max-width: 1320px) {
  .feature__box:nth-of-type(even) .feature__num {
    left: -34px;
  }
}
@media screen and (max-width: 768px) {
  .feature__box:nth-of-type(even) .feature__num {
    left: unset;
    right: 50%;
  }
}

.greeting {
  padding: 120px 40px 130px;
  background: #FFF0F0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .greeting {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}
.greeting .ashirai {
  position: absolute;
  top: 0;
  left: 0;
  width: 604px;
/*   overflow: hidden; */
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .greeting .ashirai {
    width: 300px;
  }
}
.greeting .ashirai img {
  transform: translate(-50px, -80px);
}
@media screen and (max-width: 768px) {
  .greeting .ashirai img {
    transform: translate(0, -80px);
  }
}
.greeting .ashirai02 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1000px;
}
@media screen and (max-width: 768px) {
  .greeting .ashirai02 {
    width: 500px;
  }
}
.greeting__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.greeting__box {
  margin-top: 120px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .greeting__box {
    display: block;
    margin-top: 13.3333333333vw;
  }
}
.greeting__contents {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .greeting__contents {
    width: 100%;
  }
}
.greeting__contents h3 {
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: normal;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  .greeting__contents h3 {
    font-size: 5.8666666667vw;
    text-align: center;
    margin-bottom: 8vw;
  }
}
.greeting__contents p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .greeting__contents p {
    font-size: 3.7333333333vw;
  }
}
.greeting__img {
  width: 31%;
}
@media screen and (max-width: 768px) {
  .greeting__img {
    width: 75%;
    margin: 9.3333333333vw auto;
  }
}
.greeting .more {
  margin-top: 40px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .greeting .more {
    margin-top: 6.6666666667vw;
  }
}

.more {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 5px 0;
  padding-right: 64px;
  font-size: 14px;
  font-weight: bold;
  height: 56px;
  display: flex;
  align-items: center;
  background: url(../img/common/icon_arrow_right.svg) no-repeat;
  background-position: right;
  background-size: 56px;
  transition: 0.1s ease;
}
@media screen and (max-width: 768px) {
  .more {
    height: 45px;
    padding-right: 46px;
    background-size: 40px;
  }
}
.more:hover {
  background: url(../img/common/icon_arrow_right_bk.svg) no-repeat;
  background-position: right;
  background-size: 56px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .more:hover {
    background-size: 40px;
  }
}

.section__title2 {
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 152px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section__title2 {
    padding: 20px 40px;
  }
}
.section__title2::before {
  content: "";
  width: 120px;
  height: 54px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/top/ashirai_title_greeting01.svg) no-repeat;
  background-size: 120px;
  background-position: left;
}
@media screen and (max-width: 768px) {
  .section__title2::before {
    left: -50px;
    width: 60px;
    height: 24px;
    background-size: 60px;
    display: none;
  }
}
.section__title2::after {
  content: "";
  width: 120px;
  height: 54px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/top/ashirai_title_greeting02.svg) no-repeat;
  background-size: 120px;
  background-position: right;
}
@media screen and (max-width: 768px) {
  .section__title2::after {
    right: -50px;
    width: 60px;
    height: 24px;
    background-size: 60px;
    display: none;
  }
}
.section__title2 .ja {
  font-size: 36px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .section__title2 .ja {
    font-size: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.section__title2 .en {
  font-size: 20px;
  color: #EF9395;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section__title2 .en {
    font-size: 3.2vw;
  }
}

.information {
  padding: 160px 40px 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .information {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}
.information > .ashirai {
  position: absolute;
  top: -30px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .information > .ashirai {
    right: unset;
    left: 0;
    top: -60px;
    width: 24vw;
  }
}
.information__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.information .section__title2 {
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 120px;
  padding: 20px 152px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .information .section__title2 {
    padding: 20px 0;
    margin-bottom: 13.3333333333vw;
  }
}
.information .section__title2::before {
  content: "";
  width: 120px;
  height: 54px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/top/ashirai_title_information01.svg) no-repeat;
  background-size: 120px;
  background-position: left;
}
@media screen and (max-width: 768px) {
  .information .section__title2::before {
    display: none;
  }
}
.information .section__title2::after {
  content: "";
  width: 120px;
  height: 54px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/top/ashirai_title_information02.svg) no-repeat;
  background-size: 120px;
  background-position: right;
}
@media screen and (max-width: 768px) {
  .information .section__title2::after {
    display: none;
  }
}
.information .about {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .information .about {
    margin-bottom: 13.3333333333vw;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .information .about .section__title {
    text-align: center;
  }
}
.information .about .ashirai {
  position: absolute;
  left: -14%;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .information .about .ashirai {
    bottom: unset;
    top: 105%;
    left: -5%;
    width: 32vw;
  }
}
.information .about__img {
  width: 35%;
}
.information .about__img img {
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .information .about__img {
    width: 100%;
    margin: 8vw auto;
  }
}
.information .about__table {
  width: 60%;
}
.information .about__table table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .information .about__table {
    width: 100%;
  }
}
.information .about__table th {
  box-sizing: border-box;
  border-bottom: 1px solid #EF9395;
  font-size: 16px;
  font-weight: bold;
  padding: 24px;
  text-align: left;
  width: 30%;
  line-height: 1.6;
}
@media screen and (max-width: 1320px) {
  .information .about__table th {
    font-size: 14px;
    padding: 12px;
  }
}
@media screen and (max-width: 768px) {
  .information .about__table th {
    width: 30%;
    padding: 14px 5px;
    box-sizing: border-box;
    font-size: 14px;
  }
}
.information .about__table td {
  width: 70%;
  font-size: 16px;
  padding: 24px;
  border-bottom: 1px solid #F5F5F5;
  line-height: 1.6;
}
@media screen and (max-width: 1320px) {
  .information .about__table td {
    font-size: 14px;
    padding: 12px;
  }
}
@media screen and (max-width: 768px) {
  .information .about__table td {
    width: 75%;
    padding: 15px 10px;
    box-sizing: border-box;
    font-size: 14px;
  }
}
.information .about__contents,
.information .hours__contents {
  width: 90%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .information .about__contents,
  .information .hours__contents {
    display: block;
    width: 100%;
  }
}
.information .hours {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .information .hours {
    display: block;
    margin-bottom: 13.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .information .hours .section__title {
    text-align: center;
  }
}
.information .hours__table {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .information .hours__table {
    width: 100%;
    margin-top: 10.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.information .hours__table .thead {
  display: flex;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 0;
  gap: 12px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1320px) {
  .information .hours__table .thead {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .information .hours__table .thead {
    font-size: 14px;
    gap: 2px;
  }
}
.information .hours__table .thead .th {
  width: 152px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .information .hours__table .thead .th {
    width: 170px;
  }
}
.information .hours__table .thead .td {
  text-align: center;
  width: 80px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .information .hours__table .thead .td {
    width: 60px;
  }
}
.information .hours__table .tbody {
  display: flex;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 0;
  gap: 12px;
}
@media screen and (max-width: 1320px) {
  .information .hours__table .tbody {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .information .hours__table .tbody {
    font-size: 13px;
    padding: 6px 4px;
    gap: 2px;
  }
}
.information .hours__table .tbody .th {
  width: 152px;
  text-align: center;
  background: #F5F5F5;
  border-radius: 8px;
  padding: 14px 0;
  line-height: 1.4;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .information .hours__table .tbody .th {
    width: 170px;
  }
}
.information .hours__table .tbody .td {
  width: 80px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .information .hours__table .tbody .td {
    width: 60px;
    flex-direction: column;
  }
  .information .hours__table .tbody .td img {
    width: 20px;
  }
}
.information .hours__table .tbody .td.on {
  background: #FAF6EF;
}
.information .hours__doctors {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .information .hours__doctors {
    width: 100%;
  }
}
.information .hours__doctors--text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .information .hours__doctors--text {
    font-size: 3.7333333333vw;
  }
}
.information .hours__doctor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 4px dotted #5D3E22;
}
.information .hours__doctor p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 1320px) {
  .information .hours__doctor p {
    font-size: 14px;
  }
}
.information .access {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .information .access {
    display: block;
  }
}
.information .access__contents {
  width: 90%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .information .access__contents {
    width: 100%;
    display: block;
    margin-top: 8vw;
  }
}
.information .access__text {
  width: 42%;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 1320px) {
  .information .access__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .information .access__text {
    width: 100%;
    margin-bottom: 5.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.information .access__box {
  width: 55%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .information .access__box {
    width: 100%;
    display: block;
  }
}
.information .access__item {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .information .access__item {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
.information .access__item--title {
  text-align: center;
  padding: 12px 0;
  background: #F5F5F5;
  border-radius: 8px;
  gap: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 1320px) {
  .information .access__item--title {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .information .access__item--title {
    font-size: 4.2666666667vw;
  }
}
.information .access__item p {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 1320px) {
  .information .access__item p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .information .access__item p {
    font-size: 3.7333333333vw;
  }
}

.map {
  position: relative;
}
.map .more {
  position: absolute;
  bottom: 24px;
  right: 8%;
  z-index: 10;
  padding: 40px 32px;
  padding-right: 96px;
  background-position: 86%;
  background-color: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .map .more {
    padding: 30px 20px;
    padding-right: 70px;
  }
}
@media screen and (max-width: 768px) {
  .map iframe {
    height: 280px;
  }
}

.departments {
  padding: 160px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .departments {
    padding: 13.3333333333vw 0;
  }
}
.departments > .ashirai {
  position: absolute;
  top: -20px;
  left: 5%;
}
@media screen and (max-width: 768px) {
  .departments > .ashirai {
    left: 2%;
    top: -10px;
    width: 24vw;
  }
}
.departments > .ashirai02 {
  position: absolute;
  top: 2%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .departments > .ashirai02 {
    top: 1%;
    right: -10%;
    width: 50.6666666667vw;
  }
}
.departments > .ashirai03 {
  position: absolute;
  top: 11%;
  right: 0;
  z-index: -1;
}
.departments > .ashirai04 {
  position: absolute;
  top: 18%;
  left: 0;
}
.departments .section__title2 {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .departments .section__title2 {
    margin-bottom: 13.3333333333vw;
  }
}
.departments__item {
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .departments__item {
    margin-bottom: 16vw;
  }
}
.departments__item--inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding-left: 6%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .departments__item--inner {
    padding: 0 5.3333333333vw;
  }
}
.departments__item--inner > .more {
  margin-left: auto;
  margin-top: 20px;
}
.departments__item.neurology {
  position: relative;
}
.departments__item.neurology::after {
  z-index: -1;
  content: "";
  width: 100%;
  position: absolute;
  bottom: 10%;
  left: 0;
  height: 70%;
  background: #FAF6EF;
}
.departments__item.internal {
  padding-bottom: 130px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .departments__item.internal {
    padding-bottom: 13.3333333333vw;
  }
}
.departments__item.internal::after {
  z-index: -1;
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  background: #FAF6EF;
}
@media screen and (max-width: 768px) {
  .departments__item.internal::after {
    height: 65%;
  }
}
.departments__item.orthopedics {
  position: relative;
}
.departments__item.orthopedics .ashirai {
  position: absolute;
  right: 0;
  top: -34%;
}
@media screen and (max-width: 768px) {
  .departments__item.orthopedics .ashirai {
    top: -10%;
    width: 48vw;
  }
}
.departments__item.orthopedics .ashirai02 {
  position: absolute;
  right: 0;
  bottom: -100px;
}
@media screen and (max-width: 768px) {
  .departments__item.orthopedics .ashirai02 {
    width: 18.6666666667vw;
  }
}
.departments__item.practice {
  position: relative;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .departments__item.practice {
    padding-bottom: 10.6666666667vw;
    margin-bottom: 0;
  }
}
.departments__item.practice .ashirai {
  position: absolute;
  left: 0;
  bottom: -43%;
}
@media screen and (max-width: 768px) {
  .departments__item.practice .ashirai {
    width: 53.3333333333vw;
    bottom: -20%;
  }
}
.departments__item.practice::after {
  z-index: -1;
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  background: #FFF0F0;
}
@media screen and (max-width: 768px) {
  .departments__item.practice::after {
    height: 70%;
  }
}
.departments__item--en {
  font-size: 104px;
  font-weight: 600;
  position: absolute;
  left: -100px;
  color: #EDE6D5;
  writing-mode: vertical-lr;
  font-family: "futura-pt", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .departments__item--en {
    left: -10px;
    font-size: 18.6666666667vw;
    top: 13%;
    z-index: 4;
    display: none;
  }
}
.departments__item--title {
  font-size: 30px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  padding-bottom: 20px;
  border-bottom: 2px solid #F5F5F5;
  position: relative;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .departments__item--title {
    font-size: 5.8666666667vw;
    margin-bottom: 6.6666666667vw;
  }
}
.departments__item--title::after {
  content: "";
  width: 80px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #EF9395;
  height: 2px;
}
.departments__item--img {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .departments__item--img {
    width: 100%;
  }
}
.departments__item--contents {
  width: 45%;
  margin-right: -5%;
  z-index: 2;
  padding: 32px;
  background: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .departments__item--contents {
    width: 100%;
    margin-right: 0;
    padding: 5.3333333333vw;
    border-radius: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
}
.departments__item--contents h4 {
  font-size: 28px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  padding: 10px 0;
  padding-left: 52px;
  background: url(../img/top/icon_bluebird.svg) no-repeat;
  background-position: left;
  background-size: 48px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .departments__item--contents h4 {
    font-size: 5.3333333333vw;
    background-size: 32px;
    margin-bottom: 5.3333333333vw;
  }
}
.departments__item--contents p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .departments__item--contents p {
    font-size: 3.7333333333vw;
    line-height: 1.6;
  }
}
.departments__item--contents .lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .departments__item--contents .lists {
    display: block;
  }
}
.departments__item--contents .list {
  background: #FAF6EF;
  padding: 10px 0;
  text-align: center;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .departments__item--contents .list {
    font-size: 3.2vw;
    margin-bottom: 3.2vw;
  }
}
.departments__item--box {
  margin-top: 80px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .departments__item--box {
    flex-direction: column;
    margin-top: 10.6666666667vw;
  }
}
.departments__item--box:nth-of-type(even) h4 {
  background: url(../img/top/icon_pinkbird.svg) no-repeat;
}
.departments__item--text {
  line-height: 2;
  font-size: 16px;
}
.departments__box {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .departments__box {
    display: block;
    margin-top: 13.3333333333vw;
  }
}
.departments__box--item {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .departments__box--item {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.departments__box--itemImg {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .departments__box--itemImg {
    margin-bottom: 4.2666666667vw;
  }
}
.departments__box--itemImg img {
  border-radius: 8px;
}
.departments__box--item h3 {
  font-size: 28px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  padding: 10px 0;
  padding-left: 52px;
  background: url(../img/top/icon_bluebird.svg) no-repeat;
  background-position: left;
  background-size: 48px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .departments__box--item h3 {
    background-size: 32px;
    font-size: 5.8666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}
.departments__box--item p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .departments__box--item p {
    font-size: 3.7333333333vw;
  }
}
.departments__box--item:nth-of-type(even) h3 {
  background: url(../img/top/icon_pinkbird.svg) no-repeat;
}
.departments__lists {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .departments__lists {
    display: block;
    margin-top: 10.6666666667vw;
  }
}
.departments__list {
  width: 31%;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 80px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .departments__list {
    width: 100%;
    margin: 0 auto 8vw;
  }
}
.departments__list--title {
  border-bottom: 2px solid #EF9395;
}
.departments__list--title a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  font-size: 26px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  .departments__list--title a {
    font-size: 5.3333333333vw;
    padding: 5.3333333333vw;
  }
}
.departments__list--title a .more {
  height: auto;
  padding-right: 20px;
  background: url(../img/common/icon_right.svg) no-repeat;
  background-position: right;
  background-size: 16px;
  border-bottom: 1px solid #fff;
}
.departments__list--title a .more:hover {
  border-bottom: 1px solid #5D3E22;
}
.departments__list .lists {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .departments__list .lists {
    padding: 8.5333333333vw 5.3333333333vw;
  }
}
.departments__list .list {
  background: #FAF6EF;
  padding: 10px 0;
  text-align: center;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 13px;
  height: 56px;
}
@media screen and (max-width: 768px) {
  .departments__list .list {
    font-size: 3.2vw;
  }
}

.defference {
  background: #FFF0F0;
  border-radius: 8px;
  padding: 80px 40px;
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .defference {
    padding: 10.6666666667vw 5.3333333333vw;
  }
}
.defference .ashirai {
  position: absolute;
  width: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: -80px;
  margin-left: auto;
}
.defference .ashirai02 {
  position: absolute;
  bottom: 36px;
  left: 30%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .defference .ashirai02 {
    left: 70%;
    bottom: 10px;
    width: 18.6666666667vw;
  }
}
.defference .ashirai03 {
  position: absolute;
  bottom: -30px;
  left: 3%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .defference .ashirai03 {
    width: 40vw;
    left: 0;
    bottom: -10px;
  }
}
.defference__box {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .defference__box {
    display: block;
  }
}
.defference__img {
  width: 35%;
  z-index: 2;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .defference__img {
    width: 85%;
    margin: 0 auto -40px;
    margin-top: 0;
  }
}
.defference__contents {
  width: 70%;
  margin-left: -5%;
  border-radius: 8px;
  padding: 48px 64px;
  padding-left: 124px;
  background: #fff;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1320px) {
  .defference__contents {
    padding: 30px 40px;
    padding-left: 70px;
  }
}
@media screen and (max-width: 768px) {
  .defference__contents {
    width: 100%;
    margin: 0 auto;
    padding: 21.3333333333vw 5.3333333333vw 10.6666666667vw;
    display: block;
  }
}
.defference__contents h3 {
  writing-mode: vertical-rl;
  font-size: 23px;
  font-weight: normal;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1320px) {
  .defference__contents h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .defference__contents h3 {
    writing-mode: horizontal-tb;
    font-size: 5.3333333333vw;
    text-align: center;
  }
}
.defference__contents h3 span {
  padding: 16px;
  border-radius: 100px;
  background: #FFF0F0;
  display: inline-block;
  box-sizing: border-box;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .defference__contents h3 span {
    padding: 10px 14px;
  }
}
.defference__contents .defference__title {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .defference__contents .defference__title {
    gap: 10px;
    flex-direction: column-reverse;
    margin-bottom: 5.3333333333vw;
  }
}
.defference__contents p {
  width: 66%;
  line-height: 2;
}
@media screen and (max-width: 1320px) {
  .defference__contents p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .defference__contents p {
    width: 100%;
    line-height: 1.6;
    font-size: 3.7333333333vw;
  }
}

.gallery {
  padding: 320px 40px 160px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .gallery {
    padding: 10.6666666667vw 0 37.3333333333vw;
  }
}
.gallery .ashirai {
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .gallery .ashirai {
    width: 37.3333333333vw;
  }
}
.gallery .ashirai img {
  transform: translateY(60px);
}
.gallery .ashirai02 {
  position: absolute;
  right: 4%;
  bottom: 10%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .gallery .ashirai02 {
    width: 24vw;
    right: 8%;
    bottom: 3%;
  }
}
.gallery .ashirai03 {
  position: absolute;
  right: 14%;
  bottom: 6%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .gallery .ashirai03 {
    width: 32vw;
    right: 30%;
  }
}
.gallery__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.gallery__contents {
  width: 264px;
}
@media screen and (max-width: 768px) {
  .gallery__contents {
    width: 100%;
  }
}
.gallery__contents .img {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .gallery__contents .img {
    width: 60%;
  }
}
.gallery__title {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .gallery__title {
    text-align: center;
  }
}
.gallery__title h2 {
  font-size: 36px;
  line-height: 1.6;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .gallery__title h2 {
    font-size: 6.4vw;
    margin-bottom: 4vw;
  }
}
.gallery__title .en {
  display: block;
  color: #EF9395;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "futura-pt", sans-serif;
}
@media screen and (max-width: 768px) {
  .gallery__title .en {
    font-size: 4.2666666667vw;
  }
}
.gallery__text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .gallery__text {
    text-align: center;
    font-size: 3.7333333333vw;
    margin-bottom: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .gallery .more {
    margin: 8vw auto 0;
  }
  .gallery .more.is-sp {
    display: flex !important;
  }
}
.gallery__imgs {
  background: url(../img/top/gallery-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 160px 60px;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  bottom: 160px;
  width: 58%;
  border-radius: 8px;
  overflow: hidden;
  max-width: 840px;
}
.gallery__imgs .gallery__slider .swiper-wrapper {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .gallery__imgs {
    width: 100%;
    margin-top: 10.6666666667vw;
    position: unset;
    padding: 21.3333333333vw 5.3333333333vw;
    border-radius: 0;
    padding-left: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .gallery__imgs .swiper-slide {
    width: 267px !important;
    transition: width 0.5 ease !important;
  }
  .gallery__imgs .swiper-slide-active {
    width: 368px !important;
  }
}
@media screen and (max-width: 768px) {
  .gallery__imgs .swiper-slide {
    width: 140px !important;
    transition: width 0.5 ease !important;
  }
  .gallery__imgs .swiper-slide-active {
    width: 200px !important;
  }
}
.gallery .is-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .gallery .is-sp {
    display: block !important;
  }
}
.gallery .is-pc {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .gallery .is-pc {
    display: none !important;
  }
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  position: unset;
  height: auto;
  margin-top: 0;
}

.swiper-button-next {
  justify-content: flex-end;
  width: 24%;
  cursor: pointer;
}

.swiper-button-prev {
  width: 24%;
  cursor: pointer;
  justify-content: flex-start;
}

.swiper-pause {
  cursor: pointer;
  width: 35%;
  text-align: center;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.swiper-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 278px;
  height: 56px;
  z-index: 10;
  border-radius: 100px;
  padding: 0 20px;
  background: #D6B785;
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .swiper-controls {
    bottom: 240px;
    height: 45px;
  }
}/*# sourceMappingURL=top.css.map */