@charset "UTF-8";

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, img, 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, 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;
  transition: 0.3s;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none
}

q, blockquote {
  quotes: none
}

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

a {
  display: block;
}

a img {
  border: none
}

b {
  font-weight: bold;
}

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

input, select, option, textarea {
  border-radius: none;
  border: none;
  box-shadow: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

body {
  font-family: "Zen Maru Gothic", "Meiryo", "Hiragino Kaku Gothic ProN", "MS PGothic", sans-serif;
  line-height: 1.2;
  position: relative;
  font-weight: 500;
  color: #333;
  background: #deecf7;
  letter-spacing: 0.05em;
}

/*【必須】ヘッダー*/
header {
  width: 100%;
  height: 40px;
  position: fixed;
  top: 0;
  left: 0;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  background: #3e3a39;
  /*スクログは　#00AFD0*/
  z-index: 100;
}

header div {
  width: 100%;
  max-width: 1000px;
  height: 40px;
  margin: 0 auto;
  position: relative;
}

header .image {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  max-width: 150px;
  transform: translateY(-50%);
}

header .txt {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 991px) {
  header div {
    width: 94%;
  }

  header .txt {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  header div {
    width: 94%;
  }

  header div h1 a {
    width: 120px;
    top: 12px;
  }

  header div p {
    font-size: 14px;
    top: 14px;
  }
}


#spnav {
  display: none;
  width: 100%;
  height: auto;
  z-index: 99;
  opacity: 0;
  animation-name: fadein;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  position: fixed;
  top: 20px;
  left: 0;
  padding: 0;
  background: rgba(255, 255, 255, .8);
}

#spnav .column4.flexBox {
  max-width: 900px;
  justify-content: center;
  gap: 30px;
}

#spnav .column4 li {
  width: 15%;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(20px);
  }
}

#spnav.fixed {
  display: block;
}

@media screen and (max-width: 991px) {
  #spnav .column4.flexBox {
    width: 100%;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  #spnav .column4.flexBox {
    gap: 0;
  }

  #spnav .column4 li {
    width: 23%;
  }
}

#topic1,
#topic2,
#topic3,
#topic4 {
  padding-top: 150px;
  margin-top: -150px;
}

@media screen and (max-width: 767px) {

  #topic1,
  #topic2,
  #topic3,
  #topic4 {
    padding-top: 100px;
    margin-top: -100px;
  }
}

/*基本設定*/
br.pc-br {
  display: block;
}

br.mb-br {
  display: none;
}

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

img.pc-img {
  display: block;
}

img.mb-img {
  display: none;
}

a:hover {
  opacity: 0.7;
}

a {
  text-decoration: none;
}

section {
  max-width: 1000px;
  margin: 0 auto 60px;
  background-color: #fdfdfd;
  padding: 0 50px;
  box-sizing: border-box;
}

section h2 img {
  width: 100%;
  display: block;
  padding-top: 80px;
}

/*2カラム*/
.column2 li {
  width: 45%;
}

/*3カラム*/
.column3 li {
  width: 32%;
}

/*4カラム*/
.column4 li {
  width: 23.5%;
}

/* flexBox */
.flexBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  section {
    width: 92%;
    padding: 0 35px;
  }
}

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

  br.mb-br {
    display: block;
  }

  img.pc-img {
    display: none;
  }

  img.mb-img {
    display: block;
  }

  section {
    width: 92%;
    padding: 15px;
    margin: 0 auto;
  }

  section h2 img {
    padding: 0;
  }

  section p.main-copy {
    font-size: 14px;
    line-height: 2.0;
    padding: 20px;
    text-align-last: auto;
    text-align: left;
  }

  .flexBox {
    justify-content: center;
  }

  /*カラム*/
  .column2 li, .column3 li {
    width: 100%;
    margin-bottom: 20px;
  }

  .column4 li {
    width: 48%;
    margin-bottom: 20px;
  }

}

/*全体*/
#top {
  padding-bottom: 100px;
}

/*mainv*/
#mainv {
  margin: 40px 0 20px;
}

@media screen and (max-width: 767px) {
  #top {
    padding-bottom: 30px;
  }

  #mainv {
    margin: 20px 0 10px;
    padding: 0;
  }
}

/*	リード文 */
.lead {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 40px;
}

.lead h2 {
  font-size: 50px;
  font-weight: bold;
}

.lead h2 small {
  font-size: 25px;
  padding: 0 10px;
}

.lead h3 {
  margin: 20px 0;
  font-size: 25px;
  font-weight: bold;
}

.lead p {
  font-size: 18px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .lead h2 {
    font-size: 35px;
  }

  .lead h2 small,
  .lead h3 {
    font-size: 20px;
  }

  .lead h3 {
    margin: 10px 0;
  }

  .lead p {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  section.lead {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .lead h2 {
    font-size: 30px;
  }

  .lead h2 small,
  .lead h3 {
    font-size: 18px;
  }

  .lead p {
    font-size: 16px;
    text-align: left;
  }
}

/*navi*/
nav {
  padding: 40px 0;
}

nav ul {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li img {
  width: 98%;
  transition: transform .3s ease;
}

nav ul li a:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 991px) {

  #nav a {
    display: block;
  }

  #nav ul li img {
    max-width: 100%;
  }

  .column4 li {
    width: 23%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  #nav {
    padding: 20px 0 0;
  }

  .column4 li {
    width: 45%;
  }

  #nav.fixed .column4 li {
    width: 24%;
  }
}


/*topic*/
.ttl {
  font-size: 36px;
  color: #fdfdfd;
  padding: 20px;
  text-align: center;
  background-color: #77AED7;
  border-radius: 70px 70px 0 0;
  box-sizing: border-box;
}

.ttl p {
  z-index: 20;
}

.ttl span {
  font-size: 24px;
  padding-bottom: 3px;
  display: block;
}

.text {
  text-align: center;
  padding: 20px 0 40px;
  line-height: 1.6;
  font-size: 18px;
}

.contentWrap {
  background-color: #fef5f0;
  margin-bottom: 100px;
  padding-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .ttl {
    font-size: 32px;
  }

  .ttl span {
    font-size: 18px;
  }

  .text {
    font-size: 16px;
  }

  .contentWrap {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .contentWrap {
    padding: 15px;
    box-sizing: border-box;
  }

  h3 {
    font-size: 24px;
    padding: 15px 0;
    border-radius: 30px 30px 0 0;
    margin-top: 40px;
  }

  h3 span {
    font-size: 18px;
  }

  h3 img {
    width: 38%;
    position: absolute;
    top: -70px;
    left: 32%;
    z-index: -1;
  }

  .text {
    padding: 0 0 30px;
    text-align: left;
  }



}

/*アイテムリスト*/
.item_list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.item_list ul li {
  margin-bottom: 4%;
}

.item_list ul li a {
  display: block;
  color: #333;
  text-align: center;
  padding: 3%;
}

.item_list .price {
  font-weight: bold;
  color: #ff5555;
  text-align: center;
  margin: 1% 0;
  font-size: 23px;
}

.item_list .price small {
  font-size: 13px;
}

.item_list .price span {
  font-size: 18px;
}

.item_list h5 {
  font-weight: bold;
  line-height: 1.5;
  font-size: 21px;
  text-align: center;
  letter-spacing: 0;
}

.item_list img {
  width: 100%;
  border-radius: 0 100px 0 0;
  border: #ddd solid 1px;
}

.item_list .btn {
  font-size: 18px;
  width: 70%;
  background-color: #77AED7;
  border-radius: 5px;
  padding: 10px;
  margin: 0 auto;
  color: #fdfdfd;
}

@media screen and (max-width: 991px) {
  .item_list h5 {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .item_list h5 {
    width: 100%;
  }

  .item_list ul li {
    margin-bottom: 12%;
  }

  .item_list ul li:last-child {
    margin-bottom: 9%;
  }
}


/*more*/
.more a {
  display: block;
  border: #77AED7 solid 5px;
  border-radius: 10px;
  color: #77AED7;
  width: 60%;
  padding: 2%;
  margin: 0 auto;
  box-sizing: border-box;
  background: rgba(255, 255, 255, .7);
  letter-spacing: 0;
}

.more p {
  font-size: 24px;
  text-align: center;
}

.more a:hover {
  opacity: 1;
  color: #fdfdfd;
  background-color: #77AED7;
}

.moreCont {
  max-width: 750px;
  margin: 0 auto;
}

.moreCont.flexBox {
  justify-content: center;
}

.moreCont.column2 li {
  padding: 0 10px;
}

.moreCont .more a {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .more a {
    border-width: 3px;
  }

  .more p {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .more a {
    width: 100%;
    margin: 0 auto 40px;
    padding: 10px;
  }

  .more p {
    font-size: 18px;
  }

  .moreCont .more a {
    margin-bottom: 0;
  }
}


/*ラッピングについて*/
#wrapping {
  max-width: none;
  background-color: #FFEAE3;
  margin: 160px 0 0;
}

.Wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.Wrap_title {
  text-align: center;
  position: relative;
  top: -120px;
}

.Wrap_title h4 {
  font-size: 36px;
  color: #11AC9F;
  font-weight: 900;
}

.Wrap_title div {
  display: inline-block;
  margin: 0 auto;
}

.Wrap_title p {
  text-align: center;
  margin: 10px 0;
  line-height: 1.5;
}

.Wrap_title img {
  width: 18%;
  margin: 0 20px -35px;
}

.Wrap_col2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  top: -40px;
}

.Wrap_col2 img {
  width: 100%;
  margin-bottom: 8px;
}

.Wrap_col2 li {
  width: 45%;
  margin: 0 10px
}


@media screen and (max-width: 991px) {
  #wrapping {
    margin: 120px 0 0;
  }

  .Wrap {
    padding-bottom: 30px;
  }

  .Wrap_title {
    top: -30px;
  }

  .Wrap_title div {
    display: block;
    float: left;
    width: 82%;
    text-align: left;
    padding: 0 20px 0 30px;
    box-sizing: border-box;
  }

  .Wrap_title img {
    margin: 0;
    float: right;
    rotate: 10deg;
  }

  .Wrap_title p {
    text-align: left;
  }

  .Wrap_col2 {
    clear: both;
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  .Wrap {
    padding-bottom: 0;
    font-size: 17px;
  }

  .Wrap_title {
    position: relative;
    top: -30px;
  }

  .Wrap_title h4 {
    font-size: 23px;
    text-align: center;
    letter-spacing: 0;
  }

  .Wrap_title div {
    display: block;
    width: 100%;
    padding: 0 15px;
  }

  .Wrap_title p {
    margin-bottom: 0;
  }

  .Wrap_title img {
    display: none;
  }

  .Wrap_col2 {
    top: -20px;
  }

  .Wrap_col2 li {
    width: 90%;
    margin: 10px 0 40px;
  }

  .Wrap_col2 li p {
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.5;
  }
}

/*footer*/
footer {
  padding: 60px 0;
  text-align: center;
}

footer div {
  width: 600px;
  margin: 0 auto;
}

footer div a {
  width: 47%;
  display: inline-block;
  text-align: center;
  margin: 0 5% 0 0;
  border-style: solid;
  border-width: 3px;
  border-radius: 5px;
  box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  font-size: 18px;
  padding: 15px 0;
  text-decoration: none;
  color: #ffffff
}

footer div a.pagetop {
  border-color: #333333;
  background: #333333;
}

footer div a.storetop {
  border-color: #f00000;
  background: #f00000;
  margin: 0;
}

footer div a.pagetop:hover {
  color: #333333;
  background: #ffffff;
}

footer div a.storetop:hover {
  color: #f00000;
  background: #ffffff;
  margin: 0;
}

footer small {
  font-size: 12px;
  padding: 40px 0 0 0;
  display: block;
  letter-spacing: 0;
}

/*ラッピング追従ボタン*/
.ToWrapping {
  position: fixed;
  bottom: 200px;
  z-index: 99999;
  max-width: 1045px;
  height: 0px;
  width: 100%;
  text-align: right;
}

.ToWrapping a {
  display: inline-block;
}

.ToWrapping img {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .ToWrapping {
    right: 20px;
  }
}


@media screen and (max-width: 767px) {
  .ToWrapping {
    right: 40%;
    bottom: 100px;
  }

  .ToWrapping img {
    width: 80%;
  }
}

/*【必須】フッター*/
footer {
  padding: 0 0 60px 0;
  text-align: center;
}

footer div {
  width: 600px;
  margin: 0 auto;
}

footer div a {
  width: 47%;
  display: inline-block;
  text-align: center;
  margin: 0 5% 0 0;
  border-style: solid;
  border-width: 3px;
  border-radius: 5px;
  box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  font-size: 18px;
  padding: 15px 0;
  text-decoration: none;
  color: #ffffff
}

footer div a.pagetop {
  border-color: #3e3a39;
  /*スクログは#808080*/
  background: #3e3a39;
  /*スクログは#808080*/
}

footer div a.storetop {
  border-color: #f00000;
  /*スクログは#00AFD0*/
  background: #f00000;
  /*スクログは#00AFD0*/
  margin: 0;
}

footer div a.pagetop:hover {
  color: #3e3a39;
  /*スクログは#808080*/
  background: #ffffff;
}

footer div a.storetop:hover {
  color: #f00000;
  /*スクログは#00AFD0*/
  background: #ffffff;
  margin: 0;
}

footer small {
  font-size: 12px;
  padding: 40px 0 0 0;
  display: block;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 0 0 40px 0;
    text-align: center;
  }

  footer div {
    width: 90%;
    margin: 20px auto 0;
  }

  footer div a {
    width: 70%;
    margin: 10px auto;
  }

  footer small {
    font-size: 10px;
    padding: 40px 0 0 0;
    display: block;
    letter-spacing: 0;
  }
}



/* ページトップ */
#pageTopWrap {
  position: fixed;
  bottom: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 1160px;
  height: 1px;
  margin: 0 auto;
  z-index: 99999;
}

#pageTopWrap .character {
  position: absolute;
  bottom: 73px;
  right: 0;
}

#pageTopWrap .character img {
  max-width: 60px;
}

#pageTop a {
  background: #3D3A39;
  /*スクログは#00AFD0*/
  text-decoration: none;
  color: #fdfdfd;
  width: 60px;
  height: 60px;
  text-align: center;
  display: block;
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: 0;
  position: absolute;
  bottom: 10px;
  right: 5px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

#pageTop a:hover {
  opacity: 1;
}

#pageTop a span {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#pageTop a span:before {
  content: "";
  display: block;
  margin: 0 auto 5px;
  width: 30px;
  height: 30px;
  background: url("https://www.rakuten.ne.jp/gold/suteteko/special/_img/icon_arrow_wh.svg") no-repeat;
  /*各モールにある矢印を使用*/
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 1300px) {
  #pageTop a {
    margin: 0;
    right: 20px;
  }
}

@media screen and (max-width: 1160px) {
  #pageTopWrap .character {
    right: 20px;
  }
}

@media screen and (max-width: 991px) {
  #pageTop a {
    right: 40px;
  }
}

@media screen and (max-width: 767px) {
  #pageTopWrap .character {
    right: 10px;
  }

  #pageTop a {
    margin: 0;
    right: 10px;
  }
}

/* 画面サイズによる表示/非表示の切替用 */
.visible-md, .visible-sm, .visible-xs {
  display: none !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}