@charset "UTF-8";

:root {
  --color-green: #225C2C;
  --color-yellow: #D0A649;
  --color-orennji: #D47B38;
  --color-green02: #60A14D;
  --color-red: #A04655;
  --color-greenyello: #A6BA17;
}

/* ==================== reset ==================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #333;
  font-optical-sizing: auto;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4em;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

ol, ul {
  list-style-type: none;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: bottom;
  display: block;
  width: 100%;
  height: auto;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

/* ==================== conditional ==================== */
.img-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .img-pc {
    display: none;
  }
}

.img-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .img-sp {
    display: block;
  }
}

.break-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .break-pc {
    display: none !important;
  }
}

.break-sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .break-sp {
    display: block !important;
  }
}

/* ==================== blank-content ==================== */
.blank-content {
  position: relative;
  height: 300px;
}

.blank-content-gray {
  background: #f8f8f8;
}

.blank-content-white {
  background: #fff;
}

.blank-content-title {
  position: absolute;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ==================== two-column ==================== */
.two-column-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: space-between;
  flex-wrap: wrap;
}

.two-column-8 {
  width: 78%;
}

@media screen and (max-width: 768px) {
  .two-column-8 {
    width: 100%;
  }
}

.two-column-7 {
  width: 68%;
}

@media screen and (max-width: 768px) {
  .two-column-7 {
    width: 100%;
  }
}

.two-column-6 {
  width: 58%;
}

@media screen and (max-width: 768px) {
  .two-column-6 {
    width: 100%;
  }
}

.two-column-5 {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .two-column-5 {
    width: 100%;
  }
}

.two-column-4 {
  width: 38%;
}

@media screen and (max-width: 768px) {
  .two-column-4 {
    width: 100%;
  }
}

.two-column-3 {
  width: 28%;
}

@media screen and (max-width: 768px) {
  .two-column-3 {
    width: 100%;
  }
}

.two-column-2 {
  width: 18%;
}

@media screen and (max-width: 768px) {
  .two-column-2 {
    width: 100%;
  }
}

.scr-event {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.scr-event.active {
  opacity: 1;
}

/* ==================== header ==================== */
header {
  position: relative;
  background-color: #fff;
  border-bottom: solid 1px rgba(179, 127, 84, 0.6);
}

.c-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 31px 40px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .c-header-inner {
    padding: 17px 20px;
    margin: 0 auto;
    transform: translateX(-3px);
  }
}

.c-header-link {
  display: block;
  max-width: 360px;
}

@media screen and (min-width: 769px) {
  .c-header-link {
    transition: opacity 0.6s ease;
  }

  .c-header-link:hover {
    opacity: 0.5;
  }
}

.maru-gothic {
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
}

/* ==================== footer ==================== */
.c-footer-inner {
  background: #fff;
  padding: 20px;
}

.c-footer-inner img {
  width: 257px;
  transform: translateX(76px);
}

.c-footer-link {
  display: block;
  max-width: 320px;
  margin: 0 auto;
  transform: translateX(-43px);
}

@media screen and (min-width: 769px) {
  .c-footer-link {
    transition: opacity 0.6s ease;
  }

  .c-footer-link:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 768px) {
  .c-footer-inner {
    padding: 42px 0;
  }

  .c-footer-inner img {
    width: 90%;
    transform: translateX(11px);
  }

  .c-footer-link {
    width: 55%;
    transform: translateX(0);
  }
}

/* ==================== section-footer-note ==================== */
.c-section-footer-note {
  padding: 60px 40px;
}

@media screen and (max-width: 768px) {
  .c-section-footer-note {
    width: 100%;
    /* margin: -5px auto 60px; */
    padding: 30px 30px;
    max-width: 518px;
  }
}

/* footer-note ---------------------------- */
.c-footer-note {
  max-width: 875px;
  /* margin: 53px auto 80px; */
  margin: 0 auto;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 40px 54px 40px 60px;
}

.c-footer-note li {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.53;
  padding: 0 0 0 1.6em;
  letter-spacing: 0;
  padding-left: 1.6em;
}

.c-footer-note li+li {
  margin: 8px 0 0 0;
}

.c-footer-note li a {
  color: #01006A;
}

.c-footer-note li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.c-footer-note li.asterisk_none {
  padding-left: 0;
}

.c-footer-note li.asterisk_none::before {
  display: none;
}

.c-footer-note li.asterisk_none dl {
  margin-top: 20px;
}

.c-footer-note li.asterisk_none dt {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .c-footer-note {
    /* padding: 40px 54px 40px 60px; */
    padding: 24px 32px;
  }

  .c-footer-note li {
    line-height: 1.56;
    letter-spacing: 0;
    padding-left: 22px;
    font-size: 1.4rem;
  }

  .c-footer-note li+li {
    margin: 6px 0 0 0;
  }
}


.p-shop a {
  text-decoration: none;
  color: #333333;
}

.p-shop__block {
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .p-shop__block {
    padding: 46px 0 0;
  }
}

.p-shop__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;

  display: flex;
  justify-content: space-between;
  align-items: start;
}

@media screen and (max-width: 768px) {
  .p-shop__inner {
    display: block;
    margin: 0 auto;
  }
}

.p-shop__img-wrap {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .p-shop__img-wrap {
    width: 100%;
  }
}

.p-shop__text-wrap {
  width: 46.1538%;
}

@media screen and (max-width: 768px) {
  .p-shop__text-wrap {
    padding: 24px 0 68px;
    width: 100%;
  }
}


/* shop-Shop Name ------------------------- */
.p-shop__shopcategory {
  margin: 0 auto 12px;
  color: #a95264;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.3rem;

  margin-left: -0.5rem;
  padding-left: 1rem;
  text-indent: -1rem;
}

.p-shop__shopcategory span {
  letter-spacing: 0.1rem;
}

.p-shop__name {
  /* font-size: 2.8rem; */
  margin-bottom: 18px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  display: block;
  text-decoration: none;
  color: #333;
  transition: color 0.6s ease;
}

.p-shop__name:hover {
  color: #979797;
}

@media screen and (max-width: 768px) {
  .p-shop__name {
    /* font-size: 2.3rem; */
    font-size: 2.5rem;
    margin-bottom: 14px;
    width: 100%;
    height: initial;
  }
}


/* shop-floor icon ------------------------- */
.p-shop__floor {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 24px;
}

.p-shop__floor-item {
  font-size: 1.5rem;
  color: #fff;
  background-color: #a95264;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  border-radius: 20px;
  padding: 8px 16px;
  letter-spacing: 0.1em;
  margin-right: 16px;
}


/* shop-Phone ----------------------------- */
.p-shop_phone a {
  padding: 4px 12px 4px 32px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  text-decoration: none;
  border: solid 2px #e30000;
  border-radius: 8px;
  background-image: url(../images/common/icon_tel.png);
  background-repeat: no-repeat;
  background-color: #e30000;
  background-position: left 12px center;
  background-size: 16px auto;
  display: block;
  /* transition: all 0.6s ease; */
}

@media screen and (min-width: 769px) {
  .p-shop_phone a {
    transition: all 0.6s ease;
  }

  .p-shop_phone a:hover,
  .p-shop_phone a:focus {
    color: #e30000;
    border: solid 2px #e30000;
    background-image: url(../images/common/icon_tel-r.png);
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .p-shop__floor .number {
    letter-spacing: 0;
    padding-left: 1px;
  }
}

/* shop-Title/discription ----------------- */
.p-shop__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #b37f54;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4em;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .p-shop__title {
    font-size: 2.3rem;
    line-height: 1.55;
    margin-bottom: 11px;
  }
}

.p-shop__description {
  font-size: 1.8rem;
  line-height: 1.5em;
  margin-bottom: 22px;
}


/* shop-Price ----------------------------- */
.p-shop__menu-wrap {
  padding: 15px 0 14px;
  border-top: solid 2px #A3907B;
  border-bottom: solid 2px #A3907B;
  margin-bottom: 19px;
}

dl.p-shop__menu {
  color: #333;
}

dt.p-shop__menu-name {
  margin-bottom: 6px;
  font-size: 2.2rem;
  line-height: 1.4em;
  color: #b37f54;

  font-weight: 700;
}

dd.p-shop__menu-price {
  margin-bottom: 6px;
  font-size: 1.8rem;
  line-height: 1.4;
}

.p-shop__menu-price span {
  margin: 0 4px 0 6px;
  font-size: 2.2rem;
}

.p-shop__menu-wrap ul {
  margin: 12px 0 4px;
  line-height: 1.4;
}

.p-shop__menu-wrap ul li {
  position: relative;
  padding-left: 2rem;
}

.p-shop__menu-wrap li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.txt00 {
  margin-left: -1rem;
  text-indent: -1rem;
  padding-left: 1rem;
}


@media screen and (max-width: 768px) {
  .p-shop__menu:not(:first-child) {
    margin-top: 11px;
  }

  .p-shop__menu-wrap {
    padding: 15px 0 2px;
    margin-bottom: 20px;
  }

  .p-shop__menu-name {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 11px;
    letter-spacing: -0.05em;
  }

  .p-shop__menu-price {
    font-size: 1.8rem;
    transform: translateY(-6px);
  }
}


/* shop-notice ---------------------------- */
.p-shop__lists {
  margin-bottom: 36px;
}

.p-shop__lists li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 3px;
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.p-shop__lists li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.p-shop__lists li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .p-shop__lists {
    margin-bottom: 17px;
  }
}

/* shop-inside ---------------------------- */
.shop_inside img {
  display: block;
  max-width: 60%;
  height: auto;
}


.p-shop__block:nth-child(even) {
  background-color: rgba(255, 227, 195, 0.4);
}

.p-shop__block:nth-child(even) .p-shop__inner {
  flex-direction: row-reverse;
}

.p-shop__shopwrap.sp {
  display: none;
}

.p-shop__shopwrap.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .p-shop__shopwrap.sp {
    display: block;
  }

  .p-shop__shopwrap.pc {
    display: none;
  }
}

/* ==================== loader ==================== */
.loader.active {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loader.active::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  border-top: 2px solid #cb8c02;
  border-right: 2px solid #cb8c02;
  border-bottom: 2px solid #cb8c02;
  border-left: 2px solid transparent;
  border-radius: 50%;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ==================== wrapper ==================== */
.wrapper {
  overflow: hidden;
}

.serif {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.br-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

/* ==================== feature-group ==================== */
.p-feature-group {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.p-feature-image {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 1440px;
}

.p-feature-text {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  background-color: #F0851E;
  font-weight: 600;
  padding: 19px 0;
  line-height: 1.9;
  width: 100%;
  margin: 0 auto;
}

.p-feature-text-bg {
  background-color: rgba(255, 255, 255, 0.4);
}

.notice-txtarea {
  margin: 0 auto;
  text-align: center;
  background-color: #a95264;
}

.notice-txtarea p {
  padding: 32px;
  color: #fff;
  font-size: 2.3rem;
  line-height: 1.6;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 768px) {
  .p-feature-image {
    margin: 0 auto;
  }

  .p-feature-text {
    display: none;
  }

  .notice-txtarea p {
    padding: 24px 4vw;
    font-size: 2rem;
    line-height: 1.6;
  }
}


/* ==================== main ==================== */
main {
  background-color: #F2E7D6;
  background-image: url(../images/common/bg_pc.png);
  background-repeat: repeat-y;
  background-size: contain;
  background-position: top;
}

.main {
  position: relative;
}

.p-main {
  position: relative;
}

.p-main-inner {}

@media screen and (max-width: 768px) {
  .p-main::before, .p-main::after {
    content: "";
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    z-index: -1;
  }

  .p-main-inner {
    /* max-width: 500px; */
    margin: 0 auto;
  }
}

.section {
  position: relative;
}

.section-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0px 0px;
  width: 95%;
}

@media screen and (max-width: 768px) {
  .section-inner {
    width: 100%;
    padding: 20px 0 0;
  }
}

.section-introduction .section-inner {
  width: 100%;
}

.p-introduction__copy {
  max-width: 1200px;
  margin: 0 auto 45px;
  width: 95%;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 1.944vw, 2.8rem);
  font-weight: 600;
  color: #205026;
  display: flex;
  justify-content: center;
  position: relative;
  height: 100px;
}

@media screen and (max-width: 768px) {
  .p-introduction__copy {
    width: 95%;
    height: 128px;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 49px;
  }
}

.p-introduction__copy::before, .p-introduction__copy::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}

.p-introduction__copy::before {
  background-image: url(../images/common/bg_introduction-left.png);
  left: -4px;
  top: -2px;
  width: 105.4px;
  width: clamp(84px, 7.3194vw, 105.4px);
  aspect-ratio: 105.4/104.58;
}

@media screen and (max-width: 768px) {
  .p-introduction__copy::before {
    background-image: url(../images/common/bg_introduction-left_sp.png);
    left: -2px;
    top: -3px;
    width: 78px;
  }
}

.p-introduction__copy::after {
  background-image: url(../images/common/bg_introduction-right.png);
  right: 0;
  bottom: clamp(-20px, -3vw, -11.3px);
  width: clamp(100px, 8.857vw, 127.54px);
  aspect-ratio: 127.54/110.01;
  transform: translateX(clamp(26px, 2.36111vw, 34px));
}

@media screen and (max-width: 768px) {
  .p-introduction__copy::after {
    background-image: url(../images/common/bg_introduction-right_sp.png);
    width: 83px;
    right: 0px;
    aspect-ratio: 82.25/71.25;
    transform: translateX(11px);
  }
}

.p-introduction__copy-bg {
  overflow: hidden;
  width: 100%;
  position: relative;
  background-color: #E1CA9B;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-introduction__copy-bg::before, .p-introduction__copy-bg::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 5;
  width: 190px;
  aspect-ratio: 190/99;
}

.p-introduction__copy-bg::before {
  background-image: url(../images/common/bg_introduction-left-line.svg);
  left: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .p-introduction__copy-bg::before {
    background-image: url(../images/common/bg_introduction-left-line_sp.svg);
    width: 90px;
    aspect-ratio: 90/128;
  }
}

.p-introduction__copy-bg::after {
  background-image: url(../images/common/bg_introduction-right-line.svg);
  right: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .p-introduction__copy-bg::after {
    background-image: url(../images/common/bg_introduction-right-line_sp.svg);
    width: 90px;
    aspect-ratio: 90/128;
  }
}

.p-introduction__copy p {
  position: relative;
  z-index: 9;
  transform: translate(-4px, 3px);
}

@media screen and (max-width: 768px) {
  .p-introduction__copy p {
    transform: translate(0, 0);
  }
}

.p-introduction__passport {
  background-color: #D42C35;
  color: #fff;
  width: 98%;
  max-width: 1200px;
  border-radius: 4px;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7em;
  text-align: center;
  padding: 13px 0;
}

@media screen and (max-width: 768px) {
  .p-introduction__passport {
    width: 94.6%;
    font-size: 1.6rem;
    line-height: 1.43em;
  }
}

.p-introduction__passport .yello {
  color: #F3DF86;
}

@media screen and (max-width: 768px) {
  .p-introduction__passport .spmb-9 {
    display: block;
    margin-bottom: -9px;
  }
}

.p-introduction__present {
  margin: 0 auto;
  background-color: #F0DDA8;
  border: solid 3px #225C2C;
  padding: 7px;
  max-width: 1200px;
  width: 95%;
}

@media screen and (max-width: 768px) {
  .p-introduction__present {
    padding: 3px;
  }
}

.p-introduction__present-inner {
  text-align: center;
  padding: 34px 0 31px;
}

@media screen and (max-width: 768px) {
  .p-introduction__present-inner {
    padding: 24px 0 25px;
    width: 95%;
    margin: 0 auto;
  }
}

.p-introduction__present-title {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 600;
  color: #225C2C;
  margin-bottom: 29px;
}

@media screen and (max-width: 768px) {
  .p-introduction__present-title {
    font-size: 3.2rem;
  }
}

.p-introduction__present-text {
  font-size: 2.4rem;
  line-height: 1.5em;
  font-weight: 600;
  width: 95%;
  margin: 0 auto 20px;
}

.p-introduction__present-text span {
  color: #D42C35;
}

@media screen and (max-width: 768px) {
  .p-introduction__present-text {
    width: 100%;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

.p-introduction__present-list {
  list-style: none;
  text-align: start;
  max-width: 850px;
  margin: 0 auto;
  width: 95%;
  transform: translateX(4px);
}

@media screen and (max-width: 768px) {
  .p-introduction__present-list {
    width: 98%;
    transform: translateX(0);
  }
}

.p-introduction__present-list li {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  padding: 0 0 0 1.3em;
  letter-spacing: 0;
  padding-left: 1.3em;
}

@media screen and (max-width: 768px) {
  .p-introduction__present-list li {
    line-height: 1.4;
    letter-spacing: 0;
    padding-left: 22px;
    font-size: 1.6rem;
  }
}

.p-introduction__present-list li+li {
  margin: 8px 0 0 0;
}

@media screen and (max-width: 768px) {
  .p-introduction__present-list li+li {
    margin: 8px 0 0 0;
  }
}

.p-introduction__present-list li a {
  color: #01006A;
}

.p-introduction__present-list li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.p-introduction__present-list li.asterisk_none {
  padding-left: 0;
}

.p-introduction__present-list li.asterisk_none::before {
  display: none;
}

.p-introduction__present-list li.asterisk_none dl {
  margin-top: 20px;
}

.p-introduction__present-list li.asterisk_none dt {
  margin: 0;
}


/* -------------------- */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/*------------------------------------------
 *page top
------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#pageTop a {
  width: 60px;
  height: 60px;
  padding: 24px 0 0;
  background: #333;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: block;
  font-size: 80%;
  border-radius: 100%;
  transition: background-color 0.5s ease-out;
}

#pageTop a:hover {
  text-decoration: none;
  background-color: #666;
}

#pageTop .icon-arrow-up {
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  display: inline-block;
  transform: rotate(-45deg);
  width: 16px;
  height: 16px;
}

/*------------------------------------------
 *common
------------------------------------------*/
.mb8 {
  margin-bottom: 8px;
}

.mb16 {
  margin-bottom: 16px;
}

@media screen and (min-width: 769px) {
  .onlyMobile {
    display: none;
  }
}

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