@charset "UTF-8";
/* --------------------------------------------

FileName    :    style.css

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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: 'Noto Serif Japanese', "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  position: relative;
  min-width: 1040px;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media screen and (max-width: 768px) {
  body {
    min-width: 320px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #333;
  outline: 0;
}

img {
  border: 0;
  vertical-align: middle;
}

img:not([width]) {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

i, em {
  font-style: normal;
}

input, button, textarea, select {
  border-radius: 0;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  background: #fff;
  vertical-align: middle;
  font-size: inherit;
  color: #333;
}

input[type=checkbox] {
  visibility: hidden;
  width: 0;
}

input::-webkit-input-placeholder {
  color: #bfbfbf;
}

input:-ms-input-placeholder {
  color: #bfbfbf;
}

input::-moz-placeholder {
  color: #bfbfbf;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

option {
  outline: 0;
}

sup {
  display: inline-block;
  position: relative;
  top: -0.4em;
  line-height: 0;
  letter-spacing: -.2em;
  transform: scale(0.6);
}

ruby {
  display: inline-block;
  position: relative;
  line-height: 1.0;
}

ruby rt {
  font-size: 30%;
}

img[src$=".svg"] {
  width: 100%;
}

/* =======================================

    animation

======================================= */
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes fade-down {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
  }
}

@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translate(0, -40px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 100%);
  }
}

@keyframes slide-down {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 100%);
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes shopText {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.6);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}

@keyframes shopText {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes water {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, -100%);
  }
  48% {
    -webkit-transform: translate(0, 0%);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes water {
  0% {
    opacity: 1;
    transform: translate(0, -100%);
  }
  48% {
    transform: translate(0, 0%);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* =======================================

    共通 要素

======================================= */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #a5769a;
  z-index: 9999;
}

#loading i {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background: url(../img/common/com_load_ic01.png) no-repeat 50% 50%/cover;
  -webkit-animation: loading 1400ms linear infinite;
  animation: loading 1400ms linear infinite;
}

.load-end #loading i {
  -webkit-animation: loading 1000ms linear infinite, fade-out 200ms ease-out forwards;
  animation: loading 1000ms linear infinite, fade-out 200ms ease-out forwards;
}

#loading span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  background: url(../img/common/com_mg_logo01.svg) no-repeat 50% 50%/contain;
  opacity: 0;
}

.load-end #loading span {
  -webkit-animation: fade-in 800ms ease-out 400ms forwards;
  animation: fade-in 800ms ease-out 400ms forwards;
}

#container {
  overflow: hidden;
}

#scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  background: #b4266c;
  border: 2px solid #fff;
  border-radius: 100%;
  transition: border-color 300ms, background-color 300ms;
  z-index: 90;
}

#scroll-top:before {
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: scale(0.8, 1) rotate(-45deg);
  transition: border-color 300ms;
}

#scroll-top:hover {
  background: #fff;
  border-color: #b4266c;
}

#scroll-top:hover:before {
  border-color: #b4266c;
}

@media screen and (max-width: 768px) {
  #scroll-top {
    right: 20px;
    bottom: 40px;
    width: 40px;
    height: 40px;
  }
  #scroll-top:before {
    top: 14px;
    width: 14px;
    height: 14px;
    margin-left: -7px;
  }
}

#buy {
  position: fixed;
  left: 30px;
  bottom: 0;
  width: 220px;
  transform: translate(0, 100%);
  transition: transform 300ms;
  z-index: 90;
}

#buy.enable {
  transform: translate(0, 0);
}

#buy a {
  display: block;
  transition: opacity 300ms;
}

@media screen and (min-width: 768px) {
  #buy a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
  }
}

@media screen and (max-width: 768px) {
  #buy {
    left: 15px;
    width: 120px;
  }
}

.inner {
  position: relative;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

.only-pc {
  display: block;
}

.only-sp {
  display: none;
}

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

.nInd1 {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

.nInd2 {
  display: block;
  text-indent: -2em;
  padding-left: 2em;
}

.ds-bl {
  display: block;
}

.ds-ib {
  display: inline-block;
}

.ds-in {
  display: inline;
}

.color-base {
  color: #a5769a;
}

.color-sub {
  color: #b4266c;
}

.color-ac {
  color: #ad004d;
}

.color-other {
  color: #98002a;
}

.red {
  color: #f00;
}

.ruby {
  display: inline-block;
  position: relative;
}

.ruby .rt {
  position: absolute;
  top: -.5em;
  left: 0;
  text-align: center;
  width: 100%;
  font-size: 30%;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

/* =======================================

    共通 リンク

======================================= */
.btn-pink {
  display: block;
  position: relative;
  padding: 15px 20px;
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  background: #a5769a;
  border: 2px solid #fff;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}

.btn-pink span {
  display: inline-block;
  position: relative;
  padding-right: 3em;
}

.btn-pink span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 22px;
  height: 22px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(0, -50%) scale(1, 0.6) rotate(45deg);
  transition: border-color 300ms;
}

.btn-pink:hover {
  color: #a5769a;
  border-color: #a5769a;
  background: #fff;
}

.btn-pink:hover span:before {
  border-color: #a5769a;
}

@media screen and (max-width: 768px) {
  .btn-pink {
    padding: 10px 20px;
    font-size: 18px;
    font-size: 1.28571rem;
  }
  .btn-pink span {
    padding-right: 2em;
  }
  .btn-pink span:before {
    width: 16px;
    height: 16px;
  }
}

.btn-gray {
  display: block;
  position: relative;
  padding: 15px 20px;
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  color: #000;
  background: #ddd;
  border: 2px solid #fff;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}

.btn-gray span {
  display: inline-block;
  position: relative;
  padding-right: 3em;
}

.btn-gray span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 22px;
  height: 22px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translate(0, -50%) scale(1, 0.6) rotate(45deg);
  transition: border-color 300ms;
}

.btn-gray:hover {
  background: #aaa;
}

@media screen and (max-width: 768px) {
  .btn-gray {
    padding: 10px 20px;
    font-size: 18px;
    font-size: 1.28571rem;
  }
  .btn-gray span {
    padding-right: 2em;
  }
  .btn-gray span:before {
    width: 16px;
    height: 16px;
  }
}

.btn-coporate {
  display: block;
  position: relative;
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333;
  background: #fff;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}

.btn-coporate span {
  display: inline-block;
  position: relative;
  padding-right: 3em;
}

.btn-coporate span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translate(0, -50%) scale(1, 0.6) rotate(45deg);
  transition: border-color 300ms;
}

.btn-coporate:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 768px) {
  .btn-coporate {
    font-size: 12px;
    font-size: 0.85714rem;
  }
  .btn-coporate span {
    padding-right: 2em;
  }
  .btn-coporate span:before {
    width: 16px;
    height: 16px;
  }
}

.link-text {
  color: #a5769a;
  text-decoration: underline;
  transition: opacity 300ms;
}

@media screen and (min-width: 768px) {
  .link-text:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
  }
}

.tel-disable {
  pointer-events: none;
  text-decoration: none;
}

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