/*********************************
Variables
*********************************/
:root {
  /* Font */
  --font-family--primary: 'Noto Sans JP', sans-serif;
  --font-family--secondary: 'Noto Serif JP', sans-serif;

  /* Colors */
	--color-white: #ffffff;
	--color-dark: #473838;
	--color-red: #B50B28;
  --color-red-light: #DA1B33;
  --color-green: #3a664d;
  --color-purple: #423C74;
  --color-purple-light: #5959A6;
  --color-brown: #A58758;
  --color-gray: #C1C1C1;
}

* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-red-light);
  border-radius: 4px;
}

html {
  scroll-behavior: smooth;
}
  
body {
  font-family: var(--font-family--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8rem;
  color: var(--color-dark);
  overflow-x: hidden;
}

a {
  color: var(--color-dark);
  text-decoration: none;
  transition: all .5s;
}
a:hover {
  color: var(--color-red);
}

p {
  margin-bottom: 1rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mb-2 {
  margin-bottom: 1.5rem !important;
}
.mb-3 {
  margin-bottom: 2rem !important;
}
.mb-4 {
  margin-bottom: 3rem !important;
}

.mt-2 {
  margin-top: 1.5rem !important;
}

.text-center {
  text-align: center;
}

.text-red {
  color: var(--color-red);
}

.text-white {
  color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family--secondary);
  font-weight: 700;
}

/* badge */
.badge {
  border-radius: 30px;
  padding: 3px 7px;
  color: var(--color-dark);
  display: inline-block;
  text-align: center;
}
.badge-diamond {
  color: var(--color-white);
  position: relative;
  border-radius: 0;
  padding: 0;
}
.badge-diamond > span {
  margin: 0 8px;
  padding: 0 2px;
  display: block;
  line-height: 1.7rem;
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
.badge-diamond:before,
.badge-diamond:after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  width: 8px;
  height: 29px;
}
.badge-diamond:before {
  left: 0;
  background-image: url(../img/badge_before.png);
  background-position: top left;
  background-repeat: no-repeat;
}
.badge-diamond:after {
  right: 0;
  background-image: url(../img/badge_after.png);
  background-position: top right;
  background-repeat: no-repeat;
}

.badge-white {
  background-color: white;
}

.badge-outline {
  color: var(--color-white);
  border: 1px solid var(--color-white)
}

/* .container */
.container {
	margin: 0 auto;
	width: 100%;
	max-width: 1080px;
}
.contentlayout_plan{
  padding-bottom: 120px;
}

@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}
  .contentlayout_plan{
    padding-bottom: 60px;
  }
}

/* .list-inline */
ul.list-inline li {
	display: inline;
  padding: 0 10px;
  position: relative;
}

ul.style-1 li {
  padding: 0 20px;
	border-left: 1px solid var(--color-dark);
}
ul.style-1 li:last-child {
	border-right: 1px solid var(--color-dark);
}

/* btn_button */
.btn-button {
  font-weight: 700;
  font-family: var(--font-family--secondary);
  color: var(--color-white);
  background-color: var(--color-brown);
  border-radius: 30px;
  padding: 11.5px 50px;
  display: inline-block;
  min-width: 285px;
  position: relative;
}
.btn-button:after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 20px;
  width: 6px;
  height: 6px;
  margin: auto;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: rotate(45deg);
}

.btn-button:hover {
  color: var(--color-white);
  box-shadow: 0 0 10px var(--color-dark);
}

/* bg */
.bg {
  position: relative;
  padding-top: 189px;
}
.bg:after {
  position: absolute;
  content: "";
  top: -2px;
  width: 100%;
  height: 189px;
  background-position: top center;
  background-repeat: no-repeat;
}
.bg.bg-purple:after {
  background-image: url(../img/bg-purple.png);
  background-color: var(--color-red-light);
}
.bg.bg-white:after {
  background-image: url(../img/bg-white.png);
  background-color: var(--color-red);
}

.bg.bg-red:after {
  background-image: url(../img/bg-red.png);
  background-color: var(--color-purple);
}

.bg.bg-red-light:after {
  background-image: url(../img/bg-red-light.png);
  background-color: var(--color-red);
}
.bg.bg-purple-light:after {
  background-image: url(../img/bg-purple-light.png);
  background-color: var(--color-purple);
}

.bg-color-red {
  background-color: var(--color-red);
}

.bg__icon:before,
.bg__icon:after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 1;
}
.bg__icon:before {
  top: -40px;
  left: 50px;
  width: 308px;
  height: 210px;
  background-image: url(../img/icon4.png);
}
.bg__icon:after {
  top: -10px;
  right: 20px;
  width: 401px;
  height: 247px;
  background-image: url(../img/icon5.png);
}

@media (min-width: 1280px) and (max-width: 1536px) {
  .bg__icon:before {
    top: 14px;
  }
  .bg__icon:after {
    top: -20px;
  }
}

@media (max-width: 768px) {
  .bg__icon {
    display: none;
  }
}

/* .h2 */
.h2 {
  font-size: 30px;
}
@media (max-width: 768px) {
  .h2 {
    font-size: 20px;
  }
}

/* subtitle */
.subtitle {
  margin-bottom: 20px;
}
.subtitle_content {
  position: relative;
}
.subtitle_content > span {
  display: inline-block;
  height: 38px;
  line-height: 35px;
  margin: 0 22px;
  padding: 0 10px;
  border-top: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  font-size: 20px;
  font-weight: 700;
}
.subtitle_content:before,
.subtitle_content:after {
  position: absolute;
  content: "";
  width: 22px;
  height: 38px;
  background-repeat: no-repeat;
  background-position: center;
}
.subtitle_content:before {
  left: 1px;
  background-image: url(../img/subttile_before.png);
}
.subtitle_content:after {
  right: 1px;
  background-image: url(../img/subttile_after.png);
}

/* pc,sp/on_off */
.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*********************************
1. Topbar
*********************************/
.s__intro {
  overflow-x: hidden;
}
.s__intro--content {
  margin-bottom: 60px;
}
.s__intro--content .h1 {
  font-size: 32px;
  line-height: 44px;
  margin: 25px 0 30px;
}
.s__intro--content p {
  font-weight: 500;
}

.s__intro--image {
  position: relative;
}
.s__intro--image:before,
.s__intro--image:after {
  position: absolute;
  content: "";
  bottom: 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 2;
}
.s__intro--image:before {
  left: 0;
  width: 578px;
  height: 243px;
  background-image: url(../img/bg-topbar-before_01.png);
  background-size: contain;
}
.s__intro--image:after {
  right: 0;
  width: 468px;
  height: 217px;
  background-image: url(../img/bg-topbar-before_02.png);
  background-size: contain;
}

.topbar__logo {
  position: absolute;
  content: "";
  top: 30%;
  left: 0;
  right: 0;
  transform: translateY(-30%);
  text-align: center;
  z-index: 3;
}

.topbar__slide__image {
  position: relative;
}
.topbar__slide__image:after {
  position: absolute;
  content: "";
  bottom: 7px;
  width: 100%;
  height: 189px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/bg-topbar-after.png);
  z-index: 1;
}

@media (min-width: 1360px) and (max-width: 1536px) {
  .topbar__logo img {
    width: 600px;
  }
}
@media (max-width: 1024px) {
  .s__intro--image:before,
  .s__intro--image:after {
    width: 300px;
    height: 126px;
  }
  .topbar__logo img {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .s__intro--image {
    margin-bottom: 30px;
  }
  .topbar__logo {
    top: 45%;
    transform: translateY(-45%);
  }
  .topbar__logo img {
    width: 280px;
  }
  .topbar__slide__image:after {
    height: 60px;
  }
  .topbar__slide__image .img_box img {
    height: 350px;
    object-fit: cover;
  }
  .s__intro--image:before,
  .s__intro--image:after {
    width: 150px;
  }
}

/*********************************
2. Header
*********************************/
.header {
  padding: 25px 0;
  position: relative;
}
.header.fixed {
  position: sticky;
  top: -1px;
  z-index: 99;
}

.header:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 161px;
  width: 100%;
  background-image: url(../img/bg-nav.svg);
  background-repeat: no-repeat;
  background-position: top center;
}
.header .nav-site {
  position: relative;
  z-index: 2;
}
.header .nav .nav-item {
  padding: 0 20px;
  background-image: url(../img/bg-line.svg);
  background-position: right center;
  background-repeat: no-repeat;
}
.header .nav .nav-item:last-child {
  background-image: none;
}
.header .nav .nav-item a {
  font-size: 20px;
  font-weight: bold;
  font-family: var(--font-family--secondary);
}
@media(max-width: 1199px) {
  .header .nav .nav-item a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
  .header .nav .nav-item {
    padding: 0 6px
  }
  .header .nav .nav-item a {
    font-size: 14px;
  }
}
/*********************************
3. Main
*********************************/
/* 3.1. Section service */
.s__service {
  background-color: var(--color-red);
  padding-top: 150px;
  position: relative;
}
.s__service:after {
  position: absolute;
  content: "";
  top: 0;
  width: 273px;
  height: 199px;
  right: 40px;
  background-image: url(../img/icon1.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.s__service img {
  position: relative;
  z-index: 3;
}
.s__service iframe {
  width: 100%;
  height: 610px;
}
@media(max-width: 1199px) {
  .s__service {
    padding-top: 150px;
  }
  .s__service:after {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .s__service {
    padding-top: 100px;
  }
  .s__service iframe {
    height: 70%;
  }
}
@media (max-width: 567px) {
  .s__service:after {
    content: none;
  }
  .s__service iframe {
    height: 250px;
  }
}

/* 3.2. Dinner buffet */
#diner_buffet.s__dinnerbuffet {
  padding-top: 160px;
}
.s__dinnerbuffet {
  background-color: var(--color-red);
}
.s__dinnerbuffet.bg-red-light {
  background-color: var(--color-red-light);
}

.s__dinnerbuffet .contentlayout__title:after {
  top: -25px;
  width: 291px;
  height: 211px;
  left: -225px;
  background-image: url(../img/icon2.png);
  background-position: top left;
  background-size: contain;
}
@media(max-width: 1199px) {
  .s__dinnerbuffet .contentlayout__title:after {
    left: 0;
    width: 200px;
  }
}
@media (max-width: 768px) {
  #diner_buffet.s__dinnerbuffet {
    padding-top: 50px;
  }
}

@media(max-width: 640px) {
  .s__dinnerbuffet .contentlayout__title:after {
    top: -50px;
    height: 65px;
    background-size: cover;
  }
}

/* 3.3. Dinner course */
.s__dinnercourse {
  background-color: var(--color-purple);
}
.s__dinnercourse.bg-purple:after {
  /* background-image: url(../img/bg-purple-dark.png); */
  background-color: var(--color-red);
}
.s__dinnercourse.bg-purple-light {
  background-color: var(--color-purple-light);
}

.s__dinnercourse .contentlayout__title:after {
  top: -10px;
  width: 134px;
  height: 133px;
  right: 15%;
  background-image: url(../img/icon3.png);
  background-position: top right;
}

.s__dinnercourse .contentlayout__text .h3 {
  font-size: 32px;
}

/* 3.4. Afternoon tea */
.s__afternoontea,
.s__afternoontea.bg-purple:after {
  background-color: var(--color-white);
}

.s__afternoontea .subtitle_content > span {
  border-top-color: var(--color-red);
  border-bottom-color: var(--color-red);
}
.s__afternoontea .subtitle_content:before {
  background-image: url(../img/subttile_before_red.png);
}
.s__afternoontea .subtitle_content:after {
  background-image: url(../img/subttile_after_red.png);
}


@media (max-width: 992px) {
  .s__dinnercourse .contentlayout__title:after {
    right: 0;
  }
}

@media (max-width: 767px) {
  .subtitle_content > span {
    font-size: 12px;
  }
  .s__dinnercourse .contentlayout__title:before,
  .s__dinnercourse .contentlayout__title:after {
    display: none;
  }

  .s__dinnercourse .contentlayout__text .h3 {
    font-size: 24px;
  }
}

/* 3.5. Hight tea */
.s__hightea {
  background-color: var(--color-red);
}
.s__hightea.bg.bg-purple:after {
  background-color: var(--color-white);
}

.s__hightea .contentlayout__grid--col.col-1 {
  width: 51.8%;
}
.s__hightea .contentlayout__grid--col.col-2 {
  width: 48.2%;
}
.s__hightea .detail_list .badge-diamond {
  width: auto;
}

/* 3.5. cafe */
.s__cafe {
  background-color: var(--color-purple);
}
.s__cafe.bg.bg-purple:after {
  background-color: var(--color-white);
}

.s__cafe .contentlayout__grid--col.col-1 {
  width: 51.8%;
}
.s__cafe .contentlayout__grid--col.col-2 {
  width: 48.2%;
}
.s__cafe .detail_list .badge-diamond {
  width: auto;
}

/* 3.6. Christmas cakes */
.s__christmascakes,
.s__christmascakes.bg.bg-purple:after {
  background-color: var(--color-red);
}

.s__christmascakes .detail_list .badge-diamond {
  width: 132px;
}
/* 3.7. Stay/Others */
.s__stayothers {
  background-color: var(--color-purple);
}
.s__stayothers.bg.bg-purple:after {
  background-color: var(--color-red);
}
.contentlayout__stay {
  margin-bottom: 160px;
}

.contentlayout__stay .contentlayout__img--des {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: flex-start;
}
.contentlayout__stay .contentlayout__img--des > ul {
  margin-top: 7px;
}

.contentlayout__decor .img_box {
  position: relative;
}
.contentlayout__decor .img_box span {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  font-size: 24px;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-family--primary);
}
@media(max-width: 767px) {
  .contentlayout__decor .img_box span {
    font-size: 18px;
  }
}

/* 3.8. Section note */
.s__note.bg-white:after {
  background-color: var(--color-purple);
}
.s__note .s__note--content {
  font-weight: 500;
  padding-top: 50px;
}

@media (max-width: 767px) {
  .s__note .s__note--content {
    padding-top: 0;
  }
}

/* contentlayout */
.contentlayout__title {
  margin-bottom: 60px;
  position: relative;
}
.contentlayout__title:before,
.contentlayout__title:after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
}
.contentlayout__title .h2 {
  font-size: 32px;
  line-height: 44px;
}

.contentlayout__text,
.contentlayout__grid {
   width: 100%;
   max-width: 900px;
   margin: 0 auto;
   box-sizing: border-box;
}

.contentlayout__text {
  margin-bottom: 40px;
}
.contentlayout__text .h3 {
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 30px;
  text-align: center;
}
.mw-900 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contentlayout__text p.mw-735 {
  max-width: 735px;
  margin: 0 auto 1rem ;
}

.contentlayout__grid {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.contentlayout__grid .list-group {
  border-radius: 8px;
  border: 1px solid var(--color-white);
  padding: 5px 15px;
}
.contentlayout__grid .list-group li {
  padding: 10px 0;
  display: block;
  border-bottom: 1px dashed var(--color-white);
}
.contentlayout__grid .list-group li:last-child {
  border-bottom: none;
}
.contentlayout__grid .list-group li > h2 {
  font-size: 32px;
  line-height: 170%;
}
.contentlayout__grid .list-group li > h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.contentlayout__grid .list-group li > p {
  margin-bottom: .4rem;
}
.contentlayout__grid .detail_list {
  display: grid;
  grid-template-columns: auto 6fr;
  row-gap: 8px;
  column-gap: 1rem;
}

.contentlayout__note {
  margin-top: 60px;
}
.contentlayout__note p {
  max-width: 835px;
  margin: 0 auto;
}

.contentlayout__readmore {
  text-align: center;
  margin-top: 80px;
  padding-bottom: 1rem;
}

.contentlayout__grid .list-group.border-dark {
  border-color: var(--color-dark);
}
.contentlayout__grid .list-group.border-dark li {
  border-color: var(--color-dark);
}

.contentlayout__grid .list-group.border-dark .badge-diamond > span {
  border-top-color: var(--color-dark);
  border-bottom-color: var(--color-dark);
  color: var(--color-dark);
}
.contentlayout__grid .list-group.border-dark .badge-diamond:before {
  background-image: url(../img/badge_before_dark.png);
}
.contentlayout__grid .list-group.border-dark .badge-diamond:after {
  background-image: url(../img/badge_after_dark.png);
}

@media (max-width: 767px) {
  .contentlayout__title {
    margin-bottom: 30px;
  }
  .contentlayout__text .h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .contentlayout__grid {
    row-gap: 30px;
  }
  .contentlayout__readmore {
    margin-top: 30px;
  }

  .contentlayout__grid .list-group li > h2 {
    font-size: 1.5rem;
  }
  .contentlayout__grid .list-group li > h3 {
    font-size: 1.125rem;
  }
}

/* contentlayout slide */
.contentlayout__slide {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.contentlayout__slide__image,
.contentlayout__img--normal {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.contentlayout__slide img,
.contentlayout__img--normal img {
  border-radius: 8px;
}
.contentlayout__slide .img_box,
.contentlayout__img--normal .img_box {
  display: flex;
}

.btn_next_prev {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
}
.btn_left {
  left: 0;
}
.btn_right {
  right: 0;
}

@media(min-width: 1025px) {
  .btn_left,
  .btn_right {
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
  }
  .btn_left {
    left: -100px;
  }
  .btn_right {
    right: -100px;
  }
}

.swiper-button-prev, 
.swiper-button-next {
  display: inline-block;
  position: relative;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border: 2px solid var(--color-gray);
  left: 0;
  border-radius: 50%;
  padding: 0;
  transition: 0.3s;
  cursor: pointer;
  transition: all .5s;
  color: var(--color-gray);
}
.swiper-button-prev:after, 
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, 
.swiper-rtl .swiper-button-prev:after {
  font-size: 26px;
}
.contentlayout__slide__image--none .swiper-slide {
  cursor: default;
}
.contentlayout__slide__image .swiper-slide,
.planlist__slide .swiper-slide {
  cursor: pointer;
}

.contentlayout__slide__image.contentlayout__grid--col.col-2 .swiper-pagination {
  bottom: 40px;
}
.contentlayout__slide__image.contentlayout__grid--col.col-2 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #E4E4E4;
  opacity: 1;
}
.contentlayout__slide__image.contentlayout__grid--col.col-2 .swiper-pagination-bullet-active {
  background-color: var(--color-red);
}

.contentlayout__slide .swiper-pagination {
  bottom: 40px;
}
.contentlayout__slide .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #E4E4E4;
  opacity: 1;
}
.contentlayout__slide .swiper-pagination-bullet-active {
  background-color: var(--color-red);
}

/* Plan list slode */
.planlist {
  width: 100%;
  position: relative;
}
.planlist__slide {
  overflow: hidden;
}
.planlist__slide ul li {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media(min-width: 1025px) {
  .planlist .btn_left,
  .planlist .btn_right {
    top: 46%;
    transform: translateY(-46%);
  }
}

@media (max-width: 991px) {
  .contentlayout__grid .detail_list {
    grid-template-columns: auto 4fr;
  }
  .contentlayout__slide__image,
  .contentlayout__slide__image__none {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .contentlayout__note p {
    width: 100%;
  }
  .planlist__slide ul li {
    row-gap: 30px;
  }
  .contentlayout__stay {
    margin-bottom: 50px;
  }
  .contentlayout__stay .contentlayout__img--des {
    grid-template-columns: 1fr;
  }
  .planlist .btn_next_prev {
    margin-top: 30px;
    padding-bottom: 2px;
  }
}

@media (max-width: 1024px) {
  .swiper-button-prev, 
  .swiper-button-next {
    position: inherit;
    width: 40px;
    height: 40px;
    line-height: 35px;
  }

  .swiper-button-prev {
    left: 10px;
  }
  .swiper-button-next {
    right: 10px;
    left: inherit;
  }

  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after, 
  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 16px;
  }
}
/*********************************
4. Footer
*********************************/
/* s__footertop */
.footer__top {
  padding-top: 70px;
  padding-bottom: 20px;
}
.footer__top > div {
  margin-bottom: 30px;
}
.footer__top--address .h2 {
  color: var(--color-dark);
  font-size: 32px;
  margin-bottom: 20px;
} 
.footer__top--address p {
  margin-bottom: 30px;
  font-weight: 500;
}
.footer__top--hotels li {
  font-weight: 500;
}

/* s__footercopyright */
.s__footercopyright {
  padding: .7rem 0;
  color: var(--color-white);
  background-color: var(--color-red);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .5px;
}

@media (max-width: 567px) {
  .footer__top--hotels ul.style-1 li {
    display: block;
    border-color: transparent;
  }
  .s__footercopyright {
    line-height: 18px;
  }
  .footer__top--logo img {
    width: 250px;
  }
  .footer__top--address .h2 {
    font-size: 1.5rem;
  }
}

/*********************************
5. Back top
*********************************/
.pageTop {
  position: relative;
  z-index: 100;
}
.pageTop svg {
  font-size: 20px;
}
.pageTop a {
	background: var(--color-brown);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 30px;
	bottom: 60px;
	z-index: 100;
	filter: drop-shadow(0px 3px 3px rgba(61, 38, 4, 0.25));
}

.pageTop p {
	position: fixed;
	right: 32px;
	bottom: 16px;
	z-index: 100;
}

.pageTop a svg {
	fill: #fff;
	width: 24px;
	height: auto;
}

@media screen and (max-width: 768px) {
	.pageTop a {
		width: 50px;
		height: 50px;
		right: 16px;
		bottom: 24px;
	}

	.pageTop a svg {
		width: 20px;
	}
}