@charset "UTF-8";
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  word-break: break-word;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul,
ol {
  list-style: none;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: inherit;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

table {
  border-collapse: collapse;
}

body,
button,
input,
textarea {
  font-family: "BIZ UDPGothic", sans-serif;
  font-optical-sizing: auto;
}

::selection {
  background-color: #FFEF27;
  color: #333;
}

html * {
  font-feature-settings: "palt";
  word-break: break-all;
  line-break: strict;
}

html,
body {
  position: relative;
  width: 100%;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
}

body {
  font-size: 1.4rem;
  line-height: 1.6875;
}

:where(body, button, input, textarea, select) {
  color: #333333;
  font-size: inherit;
  line-height: inherit;
}

label,
select,
input[type=checkbox],
input[type=radio],
button {
  cursor: pointer;
}

a {
  color: #e61874;
}
a:hover {
  text-decoration: none;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 25px;
}

.mb35 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 30px;
}

.mb45 {
  margin-bottom: 35px;
}

.mb50 {
  margin-bottom: 30px;
}

.mb55 {
  margin-bottom: 30px;
}

.mb60 {
  margin-bottom: 30px;
}

.mb65 {
  margin-bottom: 30px;
}

.mb70 {
  margin-bottom: 35px;
}

.mb75 {
  margin-bottom: 35px;
}

.mb80 {
  margin-bottom: 40px;
}

.mb85 {
  margin-bottom: 40px;
}

.mb90 {
  margin-bottom: 45px;
}

.mb95 {
  margin-bottom: 50px;
}

.mb100 {
  margin-bottom: 50px;
}

.mb110 {
  margin-bottom: 55px;
}

.mb120 {
  margin-bottom: 60px;
}

.mb125 {
  margin-bottom: 65px;
}

.mb130 {
  margin-bottom: 60px;
}

.mb140 {
  margin-bottom: 60px;
}

.mb150 {
  margin-bottom: 60px;
}

.mb160 {
  margin-bottom: 70px;
}

.mb170 {
  margin-bottom: 70px;
}

.mb180 {
  margin-bottom: 70px;
}

.mb190 {
  margin-bottom: 70px;
}

.mb200 {
  margin-bottom: 70px;
}

.centerBox {
  max-width: 1082px;
  margin-inline: auto;
  padding-inline: 25px;
}

.pcBr {
  display: none;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  width: 12px;
  background-color: #fff;
}

html::-webkit-scrollbar-thumb {
  background-color: #e61874;
}
.header {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}

.headerLogo {
  padding: 15px 0 15px 15px;
}

.headerLogoLink {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.headerLogoLink:hover {
  opacity: 0.7;
}

.headerLogoImg {
  width: 190px;
}

.headerLogoText {
  font-size: 1.2rem;
}

.headerToggle {
  border: none;
  background: none;
  background-color: #D90060;
  border-radius: 0 0 0 24px;
  display: flex;
  align-items: end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  width: 62px;
  height: 62px;
  padding-bottom: 18px;
  position: relative;
  transition: opacity 0.3s;
}
.headerToggle:hover {
  opacity: 0.7;
}

.headerToggleLine {
  background-color: #fff;
  border-radius: 50%;
  display: block;
  width: 6px;
  height: 6px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 20px;
  left: 0;
  right: 0;
}
.headerToggleLine:nth-child(1) {
  right: 24px;
}
.headerToggleLine:nth-child(3) {
  left: 24px;
}
.-active .headerToggleLine {
  border-radius: 0;
  width: 30px;
  height: 2px;
  bottom: 2px;
}
.-active .headerToggleLine:nth-child(1) {
  right: 0;
  transform: rotate(45deg);
}
.-active .headerToggleLine:nth-child(2) {
  display: none;
}
.-active .headerToggleLine:nth-child(3) {
  left: 0;
  transform: rotate(-45deg);
}

.headerToggleText {
  color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
  width: 100%;
  height: auto;
}
.-active .headerToggleText {
  opacity: 0;
}

.headerMenu {
  background-image: url(../images/bg.jpg);
  background-position: center;
  background-size: 1492px auto;
  background-repeat: repeat;
  width: 100%;
  height: calc(100vh - 62px);
  padding: 50px 20px 20px;
  position: fixed;
  top: 62px;
  right: -100vw;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.3s;
}
.-active .headerMenu {
  right: 0;
  opacity: 1;
}
.headerMenu::before {
  content: "";
  display: block;
  background-image: url(../images/deco-wave-02.png);
  background-position: 35% top;
  background-size: cover;
  background-repeat: repeat-x;
  width: 100%;
  height: 42px;
  margin: auto;
  transform: scale(-1, -1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.headerMenuItem {
  border-bottom: 1px dashed #D90060;
  padding: 12px 0;
}

.headerMenuLink {
  color: #6E6E6E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.headerMenuLink span {
  color: #A59879;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
}
.headerMenuLink:hover {
  opacity: 0.7;
}

.headerIllust01 {
  display: none;
}

.headerIllust02 {
  display: none;
}

.contentsOuter {
  margin-top: 64px;
  overflow: hidden;
}

.contents {
  background-image: url(../images/bg.jpg);
  background-position: center;
  background-size: 1492px auto;
  background-repeat: repeat;
  padding: 0 0 50px;
}

.storeContents {
  background-image: url(../images/bg.jpg);
  background-position: center;
  background-size: 1492px auto;
  background-repeat: repeat;
}

.screenReaderText {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  border: 0;
}

.min {
  font-family: serif;
}

.fontHead {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.maxImg {
  width: 100%;
  height: auto;
}

.iframeWrap {
  aspect-ratio: 16/9;
}
.iframeWrap iframe {
  width: 100%;
  height: 100%;
}

.maxContainer {
  max-width: 1280px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.middleContainer {
  max-width: 1080px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.smallContainer {
  max-width: 860px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 640px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.columnBox {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(1, 1fr);
}
.columnBox.column_sp02 {
  grid-template-columns: repeat(2, 1fr);
}
.columnBox.column_sp03 {
  grid-template-columns: repeat(3, 1fr);
}
.columnBox.column_sp04 {
  grid-template-columns: repeat(4, 1fr);
}

.breadcrumbOuter {
  padding: 15px 0 70px;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
}

.breadcrumbItem {
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
}
.breadcrumbItem:after {
  content: "/";
  display: block;
}
.breadcrumbItem:last-child:after {
  content: none;
}

.breadcrumbLink {
  color: #333;
  display: block;
  font-size: 1.4rem;
  text-decoration: none;
}
.breadcrumbLink:hover {
  color: #D90060;
  text-decoration: underline;
}

.sectionTitle {
  color: #D90060;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  width: fit-content;
  margin-inline: auto;
}

.sectionTitleLabel {
  color: #A59879;
  display: block;
  font-size: 1.4rem;
}

.pageTitleWrap {
  background-color: #fff;
  margin-bottom: 100px;
  position: relative;
}
.pageTitleWrap::before {
  content: "";
  display: block;
  background-image: url(../images/deco-wave-01.png);
  background-position: 30% top;
  background-size: auto 100%;
  background-repeat: repeat-x;
  width: 100%;
  height: 60px;
  margin: auto;
  transform: scale(-1, -1);
  position: absolute;
  bottom: -59px;
  left: 0;
  right: 0;
  z-index: 0;
}

.pageTitle {
  color: #D90060;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  width: fit-content;
  margin: auto;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  z-index: 1;
}
.pageTitle.packageTitle {
  bottom: -30px;
}
.pageTitle::before {
  content: "";
  display: block;
  background-image: url(../images/icon-hibiscus.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 30%;
  left: -45px;
}
.pageTitle span {
  color: #A59879;
  font-size: 1.5rem;
}

.pageTitle02 {
  color: #D90060;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

.borderTitle {
  border-bottom: 1px solid #D90060;
  color: #D90060;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  padding-bottom: 0.75em;
}

.boldTitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

.pageButton {
  border: none;
  background-color: transparent;
  background-color: #fff;
  border: 2px solid #D90060;
  border-radius: 8px;
  color: #D90060;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 8px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 0.5em 35px 0.5em 10px;
  position: relative;
  transition: background 0.3s, color 0.3s;
}
.pageButton::before {
  content: "";
  display: block;
  border-top: 2px solid #D90060;
  border-right: 2px solid #D90060;
  width: 10px;
  height: 10px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  transform: rotate(45deg);
  transition: border 0.3s;
}
.pageButton:hover {
  background-color: #D90060;
  color: #fff;
}
.pageButton:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.contactColumnBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.contactColumnBox .columnTextBox {
  order: 2;
}
.contactColumnBox .columnImgBox {
  order: 1;
}
.contactColumnBox .columnImgBox img {
  max-width: 250px;
  margin-inline: auto;
}

.contactTitle {
  color: #D90060;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

.contactInfoTitle {
  font-size: 1.6rem;
  line-height: 1.4;
}

.contactInfoText {
  font-size: 1.4rem;
  line-height: 1.4;
}

.contactPageButton {
  max-width: 360px;
  margin-inline: auto;
}

.other {
  padding: 40px 0;
}

.bannerIwakiMegumi {
  display: block;
  max-width: 360px;
  margin-inline: auto;
  transition: opacity 0.3s;
}
.bannerIwakiMegumi:hover {
  opacity: 0.7;
}

.snsList {
  display: flex;
  align-items: center;
  gap: 10px 25px;
  width: fit-content;
  margin-top: 35px;
  margin-inline: auto;
}

.snsLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: opacity 0.3s;
}
.snsLink:hover {
  opacity: 0.7;
}

.storeLinkBanner {
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 5;
}

.storeLink {
  background-color: #fff;
  border: 4px solid #e61874;
  border-radius: 10px;
  color: #e61874;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  padding: 1.5em 1.25em;
  position: relative;
  transition: background 0.3s, color 0.3s;
}
.storeLink:hover {
  background-color: #e61874;
  color: #fff;
}

.storeLinkIcon {
  width: 40px;
  position: absolute;
  top: -15px;
  left: -10px;
}

.footer .middleContainer {
  padding: 40px 0 50px;
  position: relative;
}

.footerMenuWrap {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 90px;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 60px;
}

.pagetopWrap {
  margin-top: -60px;
}

.pagetop {
  border: none;
  background-color: transparent;
  display: block;
  width: 90px;
  height: 170px;
  transition: opacity 0.3s;
}
.pagetop:hover {
  opacity: 0.7;
}

.footerMenu {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
  width: fit-content;
  margin-inline: auto;
}

.footerMenuItem {
  font-size: 1.2rem;
  line-height: 1.2;
}

.footerMenuLink {
  display: block;
  color: #6E6E6E;
  padding-left: 20px;
  text-decoration: none;
  position: relative;
}
.footerMenuLink::before {
  content: "";
  display: block;
  border-top: 2px solid #6E6E6E;
  border-right: 2px solid #6E6E6E;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 2px;
  left: 0;
  transform: rotate(45deg);
  transition: border 0.3s;
}
.footerMenuLink:hover {
  color: #e61874;
}
.footerMenuLink:hover::before {
  border-top: 2px solid #e61874;
  border-right: 2px solid #e61874;
}

.footerLogoImg {
  margin-inline: auto;
  margin-bottom: 10px;
}

.copyright {
  color: #9A9898;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
}

@media (min-width: 768px){
  .spBr {
    display: none;
  }
  .headerMenuLink {
    font-size: 1.9rem;
  }
  .headerMenuLink span {
    font-size: 1.4rem;
  }
  .columnBox {
    gap: 20px;
  }
  .columnBox.column_tb01 {
    grid-template-columns: repeat(1, 1fr);
  }
  .columnBox.column_tb02 {
    grid-template-columns: repeat(2, 1fr);
  }
  .columnBox.column_tb03 {
    grid-template-columns: repeat(3, 1fr);
  }
  .columnBox.column_tb04 {
    grid-template-columns: repeat(4, 1fr);
  }
  .columnBox.column_tb05 {
    grid-template-columns: repeat(5, 1fr);
  }
  .columnBox.column_tb06 {
    grid-template-columns: repeat(6, 1fr);
  }
  .columnBox.column_pc01_02 {
    grid-template-columns: 1fr 2fr;
  }
  .columnBox.column_pc02_01 {
    grid-template-columns: 2fr 1fr;
  }
  .sectionTitle {
    font-size: 3.2rem;
  }
  .pageTitleWrap {
    margin-bottom: 110px;
  }
  .pageTitle {
    font-size: 2.8rem;
    bottom: -18px;
  }
  .pageTitle.packageTitle {
    bottom: -18px;
  }
  .pageTitle::before {
    width: 40px;
    height: 40px;
    left: -55px;
  }
  .pageTitle span {
    font-size: 1.8rem;
  }
  .pageTitle02 {
    font-size: 2.4rem;
  }
  .contactColumnBox {
    display: grid;
    grid-template-columns: 40% 1fr;
  }
  .contactColumnBox .columnTextBox {
    width: 100%;
  }
  .contactColumnBox .columnImgBox img {
    max-width: 100%;
  }
  .contactTitle {
    font-size: 2.2rem;
  }
  .storeLink {
    font-size: 1.5rem;
  }
  .pagetop {
    width: 130px;
    height: 250px;
  }
  .footerMenu {
    gap: 20px;
  }
  .footerMenuItem {
    font-size: 1.4rem;
  }
  .footerMenuLink::before {
    top: 4px;
  }
}

@media (min-width: 960px){
  body {
    font-size: 1.6rem;
  }
  .mb30 {
    margin-bottom: 30px;
  }
  .mb35 {
    margin-bottom: 35px;
  }
  .mb40 {
    margin-bottom: 40px;
  }
  .mb45 {
    margin-bottom: 45px;
  }
  .mb50 {
    margin-bottom: 50px;
  }
  .mb55 {
    margin-bottom: 55px;
  }
  .mb60 {
    margin-bottom: 60px;
  }
  .mb65 {
    margin-bottom: 65px;
  }
  .mb70 {
    margin-bottom: 70px;
  }
  .mb75 {
    margin-bottom: 75px;
  }
  .mb80 {
    margin-bottom: 80px;
  }
  .mb85 {
    margin-bottom: 85px;
  }
  .mb90 {
    margin-bottom: 90px;
  }
  .mb95 {
    margin-bottom: 95px;
  }
  .mb100 {
    margin-bottom: 100px;
  }
  .mb110 {
    margin-bottom: 110px;
  }
  .mb120 {
    margin-bottom: 120px;
  }
  .mb125 {
    margin-bottom: 125px;
  }
  .mb130 {
    margin-bottom: 130px;
  }
  .mb140 {
    margin-bottom: 140px;
  }
  .mb150 {
    margin-bottom: 150px;
  }
  .mb160 {
    margin-bottom: 160px;
  }
  .mb170 {
    margin-bottom: 170px;
  }
  .mb180 {
    margin-bottom: 180px;
  }
  .mb190 {
    margin-bottom: 190px;
  }
  .mb200 {
    margin-bottom: 200px;
  }
  .tbBr {
    display: none;
  }
  .pcBr {
    display: inline;
  }
  .header {
    display: block;
    max-width: 1280px;
    width: 95%;
    margin-inline: auto;
    padding: 50px 0 10px;
    position: relative;
  }
  .headerLogo {
    margin: 0 0 10px 110px;
    padding: 0;
  }
  .headerLogoLink {
    gap: 10px;
  }
  .headerLogoImg {
    width: 280px;
  }
  .headerLogoText {
    font-size: 1.6rem;
  }
  .headerToggle {
    display: none;
  }
  .headerMenu {
    background: none;
    height: auto;
    padding: 0;
    position: relative;
    top: auto;
    right: auto;
    opacity: 1;
  }
  .headerMenu::before {
    display: none;
  }
  .headerMenuList {
    background-color: #D90060;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    gap: 0 40px;
    padding: 20px;
    position: relative;
    z-index: 5;
  }
  .headerMenuItem {
    border: none;
    padding: 0;
  }
  .headerMenuLink {
    color: #fff;
  }
  .headerMenuLink span {
    color: #fff;
  }
  .headerIllust01 {
    display: block;
    margin: auto;
    position: absolute;
    bottom: 0;
    left: -10px;
    z-index: 5;
  }
  .headerIllust02 {
    display: block;
    width: 150px;
    height: 120px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 2%;
    z-index: 5;
  }
  .contentsOuter {
    margin-top: 0;
  }
  .contents {
    padding: 0 0 200px;
  }
  .maxContainer {
    width: 95%;
  }
  .middleContainer {
    width: 95%;
  }
  .smallContainer {
    width: 95%;
  }
  .container {
    width: 95%;
  }
  .columnBox {
    gap: 30px;
  }
  .columnBox.column_pc01 {
    grid-template-columns: repeat(1, 1fr);
  }
  .columnBox.column_pc02 {
    grid-template-columns: repeat(2, 1fr);
  }
  .columnBox.column_pc03 {
    grid-template-columns: repeat(3, 1fr);
  }
  .columnBox.column_pc04 {
    grid-template-columns: repeat(4, 1fr);
  }
  .columnBox.column_pc05 {
    grid-template-columns: repeat(5, 1fr);
  }
  .columnBox.column_pc06 {
    grid-template-columns: repeat(6, 1fr);
  }
  .pageTitleWrap::before {
    background-position: center top;
  }
  .pageTitle {
    font-size: 3.2rem;
    bottom: -18px;
  }
  .other {
    padding: 40px 0 20px;
  }
  .storeLinkBanner {
    bottom: 4%;
    z-index: 99;
  }
  .footer .middleContainer {
    padding: 30px 0 50px;
  }
  .footerMenuWrap {
    display: block;
  }
  .pagetopWrap {
    margin-top: 0;
    position: absolute;
    top: -20px;
    right: 0;
    top: -235px;
  }
  .footerMenu {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .footerMenuItem {
    display: flex;
    align-items: center;
  }
  .footerMenuItem::after {
    content: none;
    padding: 0 10px;
    color: #707070;
  }
  .footerMenuItem:first-child::before {
    content: none;
    padding: 0 10px;
    color: #707070;
  }
  .footerMenuLink {
    padding: 0 10px;
  }
  .footerMenuLink::before {
    content: none;
  }
}

@media (min-width: 960px) and (min-width: 960px){
  .footerMenuItem::after {
    content: "|";
  }
  .footerMenuItem:first-child::before {
    content: "|";
  }
}

@media (min-width: 1230px){
  .headerMenu {
    max-width: 1100px;
  }
  .headerIllust01 {
    width: 88px;
    height: 170px;
    left: 0;
  }
  .headerIllust02 {
    top: auto;
    bottom: 5px;
    width: 252px;
    height: 168px;
    right: 0;
  }
}

@media print{
  body {
    width: 960px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=common.css.map*/