/* 共通 */

html {
  overflow-x: hidden;
  /*検証ツール用記述*/
  scroll-behavior: smooth;
}

body {
  background-color: #EBFCFF;
  font-family: 'Noto Sans JP', sans-serif;
  /* Regular 400 Medium 500 */
  /* font-family: 'Work Sans', sans-serif; SemiBold 600 ExtraBold 800*/
  font-weight: 400;
  color: #806C68;
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

.flex {
  display: flex;
}

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

.wrapper {
  width: 90%;
  margin: 0 auto;
}

.container {
  width: 90%;
  margin: 0 auto;
}

address {
  font-style: normal;
}

.more {
  font-size: 23px;
  background-color: #E34940;
  color: #ffffff;
  padding: 27px 47px;
  border-radius: 50px;
  display: inline-block;
}

.more span {
  display: inline-block;
}

.more:hover span {
  transform: rotateX(360deg);
  transition: .5s;
}

.to-cart span {
  display: inline-block;
}

.to-cart:hover span {
  transform: rotateX(360deg);
  transition: .5s;
}

/* TOPへ戻る（四角）ボタン */
.return-top {
  /*背景の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  display: inline-block;
  width: 400px;
  height: 61px;
  line-height: 50px;
  text-align: center;
  outline: none;
  box-sizing: border-box;
}

.return-top span {
  font-size: 20px;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid #F9D78B;
  border-radius: 5px;
  /* 重なりを3Dで表示 */
  transform-style: preserve-3d;
  /* アニメーションの設定 数字が少なくなるほど早く回転 */
  transition: 0.5s;
}

/*== くるっと回転（手前に） */

/* 回転前 */
.rotatefront span:nth-child(1) {
  background: #fff;
  color: #806C68;
  transform: rotateX(0deg);
  /*はじめは回転なし*/
  transform-origin: 0 50% -25px;
  /* 回転する起点 */
}

/*hoverをした後の形状*/
.rotatefront:hover span:nth-child(1) {
  transform: rotateX(-90deg);
  /* X軸に-90度回転 */
}

/* 回転後 */
.rotatefront span:nth-child(2) {
  background: #F9D78B;
  color: #ffffff;
  transform: rotateX(90deg);
  /*はじめはX軸に90度回転*/
  transform-origin: 0 50% -25px;
  /* 回転する起点 */
  display: block;
  line-height: 55px;
  z-index: -1;
}

/*hoverをした後の形状*/
.rotatefront:hover span:nth-child(2) {
  transform: rotateX(0deg);
  /* X軸に0度回転 */
}



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

  25% {
    transform: translateY(5px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}




.rotate-text {
  /* transform-origin: top; */
}

/* ----------ヘッダー---------- */
header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 2;
  top: 0;
}

header .container {
  align-items: center;
  justify-content: space-between;
}

header .container .logo {
  transition: .3s;
}

header .container .logo:hover {
  opacity: .5;
}

header .container nav ul li {
  font-size: 18px;
}

header .container nav ul li a {
  padding: 5px;
  position: relative;
}

header .container nav ul li a::before {
  background: #806C68;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

@media screen and (max-width: 1000px) {
  header .container nav ul li a::before {
    background: #ffffff;
  }
}

header .container nav ul li a:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

header .container .hamburger {
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 1000px) {
  header {
    border-radius: 0;
  }

  header .container {
    align-items: center;
    padding: 0;
    width: 100%;
  }

  header .container .logo {
    margin-left: 5%;
  }

  header .container nav ul {
    display: block;
    position: absolute;
    top: 0;
    right: -375px;
    background: #22A6BD;
    width: 375px;
    height: 100vh;
    text-align: center;
    padding-top: calc(50vh - 204px);
  }

  header nav ul li {
    margin-left: 0;
    margin-bottom: 35px;
    display: block;
    width: 100%;
    color: #ffffff;
  }

  header .container .hamburger {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    width: 71px;
    height: 71px;
    background-color: #22A6BD;
  }

  header .container .hamburger span:nth-child(2) {
    display: inline-block;
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 10px;
    background-color: #fff;
    top: 50%;
    right: 5%;
    transform: translate(-50%, -50%);
  }

  header .container .hamburger span:nth-child(1) {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 10px;
    background-color: #fff;
    top: calc(50% - 13px);
    right: 5%;
    transform: translate(-50%, -50%);
  }

  header .container .hamburger span:nth-child(3) {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 10px;
    background-color: #fff;
    top: calc(50% + 13px);
    right: 5%;
    transform: translate(-50%, -50%);
  }

  header .container .active ul {
    right: 0;
    transition: .3s;
  }

  header .container .active span:nth-child(2) {
    opacity: 0;
  }

  header .container .active span:nth-child(1) {
    top: 50%;
    transition: .3s;
    right: 5%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  header .container .active span:nth-child(3) {
    top: 50%;
    transition: .3s;
    right: 5%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}


/* ----------トップページ---------- */
/* ファーストビュー */
#top {
  position: relative;
}

#top .dragon {
  position: relative;
  width: 100%;
}

#top .dragon img {
  position: absolute;
  z-index: -1;
  max-width: none;
}

#top .dragon .open-eye {
  z-index: 1;
  /* open-eyeは最初に表示 */
  opacity: 1;
  /* 最初は非表示 */
  animation: dragonBlinkOpen 3s infinite;
}

#top .dragon .close-eye {
  z-index: 0;
  opacity: 0;
  /* 最初に非表示 */
  animation: dragonBlinkClose 3s infinite;
}

@keyframes dragonBlinkOpen {
  0% {
    opacity: 1;
    /* 最初に表示 */
  }

  46% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    /* 50%の位置で非表示 */
  }

  54% {
    opacity: 1;
    /* 瞬時に表示に切り替え */
  }

  100% {
    opacity: 1;
    /* 最後に表示 */
  }
}

@keyframes dragonBlinkClose {
  0% {
    opacity: 0;
    /* 最初に非表示 */
  }

  46% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    /* 50%の位置で表示 */
  }

  54% {
    opacity: 0;
    /* 瞬時に非表示に切り替え */
  }

  100% {
    opacity: 0;
    /* 最後に非表示 */
  }
}

#top .dragon::after {
  position: absolute;
  content: "";
  animation: dragonShake 4s linear infinite;
  transform-origin: right top;
}

@keyframes dragonShake {

  0%,
  100% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(-5deg);
  }
}

#top .fv .circle_width {
  background-color: #E34940;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  display: block;
  position: relative;
}

#top .fv .circle_width::before {
  position: absolute;
  display: block;
  content: url('../img/cloud_1.png');
  height: auto;
  top: 0;
  /* animation: cloudFuwa 5s linear infinite; */
}

#top .fv .circle_width::after {
  position: absolute;
  content: url('../img/cloud_2.png');
  height: auto;
}

#top .fv .circle_width .circle_height {
  position: relative;
  padding-top: 100%;
  height: 0;
}

#top .fv .circle_width .circle_height .heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#top .fv .heading h1 {
  line-height: 1.07;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
}

#top .fv .heading h1 .company {
  display: block;
}

#top .fv .heading h1 .year {
  display: block;
  font-weight: 600;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 16%);
}

#top .fv .heading h2 {
  font-weight: 700;
  line-height: 1.41;
  white-space: nowrap;
}

#top .fv .heading h3 {
  font-weight: 700;
  line-height: 1.41;
}

.TextTyping span {
  display: none;
}

/*文字列後ろの線の設定 前duration実行時間 後ろdelay遅延時間*/
.TextTyping::after {
  content: "|";
  animation: typinganime .8s ease infinite;
}

h2.TextTyping::after {
  animation: outStart .6s linear 1, fadeOut 2s linear 1.8s infinite;
}

h3.TextTyping::after {
  animation: outStart 3s linear 1, typinganime .8s ease infinite 1.6s;
  /* ここを修正 */
}

@keyframes typinganime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes outStart {
  0% {
    opacity: 0;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* 年賀状 */
#top .card {
  text-align: center;
}

#top .card .cloud_3 {
  position: relative;
}

#top .card .cloud_3 img {
  position: absolute;
  z-index: -1;
  animation: cloudFuwa 4s linear infinite;
}

#top .card .heading {
  position: relative;
}

#top .card .heading h2 {
  font-weight: 500;
}

#top .card .heading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#top .card .cloud_4 {
  position: relative;
  animation: cloudFuwa 4s linear infinite;
  animation-delay: 2s;
}

#top .card .cloud_4 img {
  position: absolute;
}

#top .card .vertical {
  position: relative;
}

#top .card .vertical h3 {
  font-weight: 400;
}

#top .card .vertical .item {
  flex-wrap: wrap;
  justify-content: space-between;
}

#top .card .vertical .item .each-item a {
  display: inline-block;
  transition: .3s;
}

#top .card .vertical .item .each-item a:hover {
  scale: 1.05;
}

#top .card .vertical .cloud_5_sp_img {
  position: absolute;
  z-index: -1;
  scale: 2.2;
}

#top .card .vertical .cloud_5_img {
  position: absolute;
  z-index: -1;
  scale: 2.2;
}

#top .card .horizontal .item .each-item a {
  display: inline-block;
  transition: .3s;
}

#top .card .horizontal .item .each-item a:hover {
  scale: 1.05;
}

#top .card .horizontal {
  width: 915px;
  margin: 0 auto;
  position: relative;
  padding-top: 40px;
}

#top .card .horizontal h3 {
  font-weight: 400;
}

#top .card .horizontal .item {
  flex-wrap: wrap;
  justify-content: space-between;
}

#top .card .horizontal .cloud_6_sp_img {
  position: absolute;
  left: 0;
  z-index: -1;
}

#top .card .horizontal .cloud_6_img {
  position: absolute;
  left: 0;
  z-index: -1;
}

#top .card .horizontal .item .each-item a {
  display: inline-block;
  transition: .3s;
}

#top .card .horizontal .item .each-item a:hover {
  scale: 1.05;
}

/* カレンダー */

#top .calendar .cloud_7 {
  position: relative;
}

#top .calendar .cloud_7 img {
  position: absolute;
  left: 0;
  z-index: -1;
  animation: cloudFuwa 4s linear infinite;
}

#top .calendar .heading {
  position: relative;
  text-align: center;
}

#top .calendar .heading h2 {
  font-weight: 500;
}

#top .calendar .heading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#top .calendar .a4 {
  text-align: center;
  position: relative;
}

#top .calendar .a4 h3 {
  font-weight: 400;
}

#top .calendar .a4 .item {
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

#top .calendar .a4 .item .each-item a {
  display: inline-block;
  transition: .3s;
}

#top .calendar .a4 .item .each-item a:hover {
  scale: 1.05;
}

#top .calendar .a4 .cloud_8_sp_img {
  position: absolute;
  z-index: -1;
}

#top .calendar .a4 .cloud_8_img {
  position: absolute;
  z-index: -1;
}

#top .calendar .post {
  margin: 0 auto;
  text-align: center;
  position: relative;
}

#top .calendar .post h3 {
  font-weight: 400;
}

#top .calendar .post .item {
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

#top .calendar .post .item .each-item a {
  display: inline-block;
  transition: .3s;
}

#top .calendar .post .item .each-item a:hover {
  scale: 1.05;
}

#top .calendar .post .cloud_9_sp_img {
  position: absolute;
  z-index: -1;
}

#top .calendar .post .cloud_9_img {
  position: absolute;
  z-index: -1;
}

#top .calendar .cloud_10 img {
  animation: cloudFuwa 4s linear infinite;
}


/* -------------------- 年賀状-たて向きタイプ一覧 -------------------- */
#vertical-list {
  text-align: center;
}

#vertical-list .heading {
  position: relative;
}

#vertical-list .heading h1 {
  font-weight: normal;
}

#vertical-list .heading h1 span:first-of-type {
  letter-spacing: 0.088em;
}

#vertical-list .heading h1 span:last-of-type {
  display: block;
}

#vertical-list .heading img:first-of-type {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

#vertical-list .heading img:last-of-type {
  position: absolute;
  transform: translateX(-50%);
  z-index: -2;
}

#vertical-list .item {
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 90%;
  margin-inline: auto;
}

#vertical-list .item .each-item a {
  display: inline-block;
  transition: .3s;
}

#vertical-list .item .each-item a:hover {
  scale: 1.05;
}

#vertical-list .item .each-item:last-of-type {
 opacity: 0;
}


/* -------------------- 年賀状-よこ向きタイプ一覧 -------------------- */
#horizontal-list {
  text-align: center;
}

#horizontal-list .heading {
  position: relative;
}

#horizontal-list .heading h1 {
  font-weight: normal;
}

#horizontal-list .heading h1 span:first-of-type {
  letter-spacing: 0.088em;
}

#horizontal-list .heading h1 span:last-of-type {
  display: block;
}

#horizontal-list .heading img:first-of-type {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

#horizontal-list .heading img:last-of-type {
  position: absolute;
  transform: translateX(-50%);
  z-index: -2;
}

#horizontal-list .item {
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 90%;
  margin-inline: auto;
}

#horizontal-list .item .each-item a {
  display: inline-block;
  transition: .3s;
}

#horizontal-list .item .each-item a:hover {
  scale: 1.05;
}

#horizontal-list .item .each-item:last-of-type {
 opacity: 0;
}



/* -------------------- カート内商品（カラ） -------------------- */
#empty {
  text-align: center;
}

#empty .heading {
  position: relative;
}

#empty .heading h1 {
  font-weight: normal;
}

#empty .heading img {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#empty .dragon-cloud {
  max-width: 90%;
  display: block;
}





/* -------------------- 料金表 -------------------- */
#price {
  text-align: center;
}

#price .heading {
  position: relative;
}

#price .heading h1 {
  font-weight: 500;
  letter-spacing: 0.088em;
}

#price .heading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#price .card-calendar {
  justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  #price .card-calendar {
    flex-direction: column;
    justify-content: center;
  }
  #price .card-calendar .card {
    margin: 0 auto 56px;
  }
  #price .card-calendar .calendar {
    margin-inline: auto;
  }
}

#price .card-calendar .frame {
  border: 4px solid #22A6BD;
  border-radius: 10px;
  background-color: #fff;
}

#price .card-calendar .frame h2 {
  background-color: #22A6BD;
  color: #ffffff;
  font-size: 30px;
  padding: 13px 0;
  font-weight: inherit;
}

#price .card-calendar .frame .content {
  display: block;
  position: relative;
  padding: 43px 65px 54px 67px;
}

#price .card-calendar .frame .content img {
  position: absolute;
}

#price .card-calendar .frame .content h3 {
  font-size: 25px;
  font-weight: normal;
  line-height: 1.8;
  margin-bottom: 32px;
}

#price .card-calendar .frame .content h3 span {
  font-size: 13px;
  display: block;
}

#price .card-calendar .frame .content .included {
  margin-bottom: 40px;
  white-space: nowrap;
}

#price .card-calendar .frame .content .yen {
  color: #E34940;
  font-size: 25px;
}

#price .card-calendar .frame .content .yen .dol {
  padding-right: 3px;
}

#price .card-calendar .frame .content .yen .tax {
  font-size: 13px;
}

#price .card-calendar .card .single-card {
  position: relative;
}

#price .card-calendar .card .single-card .dashed {
  position: absolute;
  content: "";
}

#price .card-calendar .card .set-card img {
  right: -30px;
}

#price .card-calendar .card .single-card img {
  left: -30px;
}

#price .card-calendar .calendar .calendar-content h3 {
  margin-bottom: 54px;
}

#price .card-calendar .calendar .calendar-content img {
  right: -30px;
}





/* -------------------- プライバシーポリシー -------------------- */
#privacy {
  text-align: center;
}

#privacy .heading {
  position: relative;
}

#privacy .heading h1 {
  font-weight: 500;
  letter-spacing: 0.088em;
}

#privacy .heading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#privacy .policy {
  background-color: #fff;
  width: 90%;
}

#privacy .policy .declaration {
  line-height: 1.56;
  text-align: left;
}

#privacy .policy .item:last-of-type{
  margin-bottom: 0;
}

#privacy h2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  font-weight: normal;
  text-align: left;
}

#privacy h2::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: #22A6BD;
}

#privacy .policy .item p {
  text-align: left;
}

#privacy .policy .item ul li {
  text-align: left;
}

#privacy .policy .item ul li::before {
  content: "・";
}

#privacy .policy .ban p {
  margin-bottom: 5px;
}

#privacy .contact {
  background-color: #fff;
  width: 90%;
}

#privacy .contact .content {
  text-align: left;
}





/* -------------------- 会社概要 -------------------- */
#profile {
  text-align: center;
}

#profile .heading {
  position: relative;
}

#profile .heading h1 {
  font-weight: 500;
  letter-spacing: 0.088em;
}

#profile .heading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#profile dl {
  width: 90%;
  display: flex;
  margin-inline: auto;
  background-color: #fff;
  margin-bottom: 10px;
  justify-content: space-between;
}

#profile dt {
  width: 130px;
  height: 40px;
  background-color: #FFEFD5;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#profile dd {
  font-size: 18px;
  display: flex;
  align-items: center;
  text-align: left;
  line-height: 1.8;
}

#profile .place {
  flex-direction: column;
  align-items: flex-start;
}

#profile dl dd .name {
  padding-right: 24px;
  width: 92px;
}

#profile dl dd .hp {
  display: inline-block;
  color: #22A6BD;
  position: relative;
}

#profile dl dd .hp:hover {
  opacity: .5;
}

#profile dl dd .hp::after {
  position: absolute;
  content: "";
  background-color: #22A6BD;
  width: 149px;
  height: 1px;
  bottom: 5px;
  left: 0;
}







/* -------------------- 404 -------------------- */
#not-found {
  text-align: center;
}

#not-found h1 {
  margin-bottom: 52px;
}







/* -------------------- フッター -------------------- */
footer {
  background-color: #22A6BD;
  color: #ffffff;
  padding: 73px 0 66px;
}

footer .container {
  margin-bottom: 80px;
  width: 90%;
}

footer .container .lists a {
  padding-bottom: 5px;
}

@media screen and (max-width: 1000px) {
  footer .container {
    flex-direction: column-reverse;
    margin-bottom: 25px;
  }
}

footer .container .logo {
  transition: .3s;
}

footer .container .logo:hover {
  opacity: .5;
}

footer .container .lists {
  justify-content: space-between;
  width: 100%;
}

footer .container .lists a {
  position: relative;
}

footer .container .lists a::before {
  background: #ffffff;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

footer .container .lists a:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

footer .container .bigger-button {
  position: relative;
  display: inline-block;
  letter-spacing: 0.112em;
  font-size: 20px;
}

footer .container .bigger-button::after {
  position: absolute;
  content: "";
  bottom: -17px;
  left: 0;
  background-color: #fff;
  height: 1px;
  width: 242px;
}

footer .container .arrow li {
  position: relative;
  padding-left: 22px;
}

footer .container .arrow li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 7px;
  height: 7px;
}

footer .container .arrow li:first-of-type {
  margin-bottom: 18px;
}

footer .container .logo {
  color: #ffffff;
}

footer .container .different li {
  margin-bottom: 21px;
  font-size: 20px;
  letter-spacing: 0.112em;
}

footer .container .different li:last-of-type {
  margin-bottom: 0;
}

footer .copy {
  text-align: center;
}

/* トップに戻るボタン */
#page_top {
  position: fixed;
  bottom: 30px;
  right: 20px;
}

#page_top a {
  background-color: #22A6BD;
  color: #ffffff;
  display: flex;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #ffffff;
}

#page_top a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  rotate: 45deg;
  top: 17px;
  transition: .3s;
}

#page_top a:hover::after {
  top: 12px;
}

#page_top a span {
  font-size: 26px;
  font-weight: 500;
  padding-top: 31px;
}




/* -------------------- 商品詳細(横) -------------------- */
#single-horizontal {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  #single-horizontal .container {
    flex-direction: column;
  }
}

@media screen and (max-width: 1200px) {
  #single-horizontal .container .goods {
    flex-direction: column;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1000px) {
  #single-horizontal .container .goods {
    margin-right: 0;
  }
}

.slick-container .slider .slick-next:before, .slick-container .slider .slick-prev:before {
  color: #806C68;
  font-size: 32px;
}

#single-horizontal .container .goods .slick-container .thumbnail  {
  margin-inline: auto;
}

#single-horizontal .container .goods .slick-container .thumbnail .thumbnail-img {
  margin-inline: auto;
}

#single-horizontal .container .goods .explanation {
  text-align: left;
  font-size: 14px;
}

#single-horizontal .container .goods .explanation .about {
  border-bottom: 1px solid #707070;
}

#single-horizontal .container .goods .explanation .about h1 {
  font-weight: normal;
}

#single-horizontal .container .goods .explanation .about p {
  line-height: 1.79;
}

#single-horizontal .container .goods .explanation .pay {
  line-height: 1.7;
}

#single-horizontal .container .goods .explanation .pay .advance {
  display: inline-block;
  color: #E34940;
  text-decoration: underline #E34940;
  text-underline-offset: 2px;
}

#single-horizontal .container .goods .explanation .pay .postage {
  font-weight: 500;
}

#single-horizontal .cart {
  text-align: left;
}

#single-horizontal .cart h2 {
  font-weight: normal;
  font-size: 18px;
}

#single-horizontal .cart h3 {
  font-size: 28px;
}

#single-horizontal .cart h3 span {
  font-weight: normal;
  font-size: 13px;
  display: inline-block;
  margin-left: 4px;
}

#single-horizontal .cart .type p {
  font-size: 14px;
}

#single-horizontal .cart .number {
  margin-bottom: 20px;
}

#single-horizontal .cart .to-cart {
  font-size: 18px;
  background-color: #E34940;
  color: #ffffff;
  padding: 18px 0px;
  border-radius: 50px;
  display: inline-block;
  width: 186px;
  text-align: center;
}

#single-horizontal .cart .single {
  margin-bottom: 47px;
}



/* -------------------- 商品詳細(縦) -------------------- */
#single-vertical {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  #single-vertical .container {
    flex-direction: column;
  }
}

@media screen and (max-width: 1200px) {
  #single-vertical .container .goods {
    flex-direction: column;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1000px) {
  #single-vertical .container .goods {
    margin-right: 0;
  }
}

.slick-container .slider .slick-next:before, .slick-container .slider .slick-prev:before {
  color: #806C68;
  font-size: 32px;
}

#single-vertical .container .goods .slick-container .thumbnail  {
  margin-inline: auto;
}

#single-vertical .container .goods .slick-container .thumbnail .thumbnail-img {
  margin-inline: auto;
}

#single-vertical .container .goods .explanation {
  text-align: left;
  font-size: 14px;
}

#single-vertical .container .goods .explanation .about {
  border-bottom: 1px solid #707070;
}

#single-vertical .container .goods .explanation .about h1 {
  font-weight: normal;
}

#single-vertical .container .goods .explanation .about p {
  line-height: 1.79;
}

#single-vertical .container .goods .explanation .pay {
  line-height: 1.7;
}

#single-vertical .container .goods .explanation .pay .advance {
  display: inline-block;
  color: #E34940;
  text-decoration: underline #E34940;
  text-underline-offset: 2px;
}

#single-vertical .container .goods .explanation .pay .postage {
  font-weight: 500;
}

#single-vertical .cart {
  text-align: left;
}

#single-vertical .cart h2 {
  font-weight: normal;
  font-size: 18px;
}

#single-vertical .cart h3 {
  font-size: 28px;
}

#single-vertical .cart h3 span {
  font-weight: normal;
  font-size: 13px;
  display: inline-block;
  margin-left: 4px;
}

#single-vertical .cart .type p {
  font-size: 14px;
}

#single-vertical .cart .number {
  margin-bottom: 20px;
}

#single-vertical .cart .to-cart {
  font-size: 18px;
  background-color: #E34940;
  color: #ffffff;
  padding: 18px 0px;
  border-radius: 50px;
  display: inline-block;
  width: 186px;
  text-align: center;
}

#single-vertical .cart .single {
  margin-bottom: 47px;
}



/* -------------------- 商品詳細(カレンダー) -------------------- */
#single-calendar {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  #single-calendar .container {
    flex-direction: column;
  }
}

@media screen and (max-width: 1200px) {
  #single-calendar .container .goods {
    flex-direction: column;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1000px) {
  #single-calendar .container .goods {
    margin-right: 0;
  }
}

.slick-container .calendar-slider .slick-next:before, .slick-container .calendar-slider .slick-prev:before {
  color: #806C68;
  font-size: 32px;
}

#single-calendar .container .goods .slick-container .calendar-thumbnail {
  margin-inline: auto;
}

#single-calendar .container .goods .slick-container .calendar-thumbnail .slick-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#single-calendar .container .goods .slick-container .calendar-thumbnail .thumbnail-img {
  margin-inline: auto;
}

#single-calendar .container .goods .slick-container .calendar-thumbnail .thumbnail-img img {
  cursor: pointer;
}

#single-calendar .container .goods .explanation {
  text-align: left;
  font-size: 14px;
}

#single-calendar .container .goods .explanation .about {
  border-bottom: 1px solid #707070;
}

#single-calendar .container .goods .explanation .about h1 {
  font-weight: normal;
}

#single-calendar .container .goods .explanation .about p {
  line-height: 1.79;
}

#single-calendar .container .goods .explanation .pay {
  line-height: 1.7;
}

#single-calendar .container .goods .explanation .pay .advance {
  display: inline-block;
  color: #E34940;
  text-decoration: underline #E34940;
  text-underline-offset: 2px;
}

#single-calendar .container .goods .explanation .pay .postage {
  font-weight: 500;
}

#single-calendar .cart {
  text-align: left;
}

#single-calendar .cart h2 {
  font-weight: normal;
  font-size: 18px;
}

#single-calendar .cart h3 {
  font-size: 28px;
}

#single-calendar .cart h3 span {
  font-weight: normal;
  font-size: 13px;
  display: inline-block;
  margin-left: 4px;
}

#single-calendar .cart .type p {
  font-size: 14px;
}

#single-calendar .cart .number {
  margin-bottom: 20px;
}

#single-calendar .cart .to-cart {
  font-size: 18px;
  background-color: #E34940;
  color: #ffffff;
  padding: 18px 0px;
  border-radius: 50px;
  display: inline-block;
  width: 186px;
  text-align: center;
}

#single-calendar .cart .single {
  margin-bottom: 47px;
}