﻿@charset "UTF-8";

*,
*:before,
*:after {
  box-sizing: border-box;
}

:root {
  --vw: 1vw;
  --text-color: #1D1D1D;
  --text-color2: #4A453A;
  --main-color: #BA8D10;
  --sub-color: #FAF7F0;
  --sub-color2: #4A453A;

  --btn-color1: #BA8D10;
  --btn-color2: #4A453A;

  --color-gray: #f7f7f7;
  --color-yellow: #FDD900;
  --color-red: #B40000;
  --color-beige: #B1A792;
  --color-gold: #BA8D10;

  --font-default: "Arial","メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-antonio: "Antonio","Arial","メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

}

@media screen and (max-width: 1179px) {
  :root {
    --vw: calc(1180px / 100)!important;
  }
}

@media screen and (max-width: 767px) {
  .only__pc {
    display: none!important;
  }
}
@media screen and (min-width: 768px) {
  .only__sp {
    display: none!important;
  }
}

html {
  font-size: calc(10 / 414* 100dvw);
}
body {
  font-family: "Arial","メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text-color);
}
@media screen and (min-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 16px;
  }
}

a {
  color: inherit;
}
@media screen and (min-width: 768px) {
  a img {
    transition: opacity 0.3s;
  }
  a:hover img {
    opacity: 0.8;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.wrapper {
  display: flex;
  flex-flow: column;
  min-height: 100dvh;
}
.wrapper > .page-error-contents {
  flex: 1;
}


.btn {
  margin: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  min-width: 16rem;
  min-height: 4.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.2rem;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none!important;

  color: var(--color-gold);
  background: #ffffff;
  border: solid 2px var(--color-gold);
}
.btn.btn-gold {
  color: #ffffff;
  background: var(--color-gold);
  border: solid 2px var(--color-gold);
}
.btn.btn__big {
  width: 100%;
}
.btn.btn__big {
  width: 100%;
  font-size: 1.6rem;
  min-height: 6.5rem;
  background-image: url(../../img/usr/common/arrow_white.png);
  background-size: 2.0rem auto;
  background-position: calc(100% - 2.0rem) 50%;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .btn {
    transition: all 0.3s;
  }

  .btn:hover {
    border-color: var(--color-beige);
    background-color: var(--color-beige);
  }
  .btn.btn__big {
    width: 350px;
    font-size: 16px;
    min-height: 65px;
  }
  .btn.btn__big {
    background-image: url(../../img/usr/common/arrow_white.png);
    background-size: 30px auto;
    background-position: calc(100% - 20px) 50%;
    background-repeat: no-repeat;
  }

}

/* header */
header {
  background: #ffffff;
}
header h1 {
  width: 17rem;
  margin: 0 auto;
  padding: 1.0rem 0 0;
  font-size: inherit;
  height: auto;
  height: 5.5rem;
}
@media screen and (min-width: 768px) {
  header {
    border-bottom: solid 5px #EEEEEE;
  }
  header h1 {
    width: auto;
    max-width: 1180px;
    padding: 0 40px;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  header h1 img {
    width: 195px;
  }

}

/* footer */
footer {
  margin: 8.0rem 0 0;
  background: #f7f7f7;
}
footer .block-footer-banners {
  margin: 3.0rem 0 5.0rem;
  padding: 0 2.0rem;
}
footer .block-footer-banners ul {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.0rem;
}
footer .block-footer-banners ul li {
  width: calc((100% - 1.0rem) / 2);
}
footer .block-footer-banners div {
  width: 10rem;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  footer .block-footer-banners {
    margin: 60px auto 80px;
    padding: 0 40px;
    max-width: 1180px;
    display: flex;
    align-items: center;
  }
  footer .block-footer-banners ul {
    flex: 1;
    flex-flow: row;
    gap: 1;
  }
  footer .block-footer-banners ul li {
    width: auto;
  }

  footer .block-footer-banners div {
    width: 72px;
    margin: 0;
  }
  
}
#footer_pagetop {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 99950;
}
#footer_pagetop a {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: url(../../img/usr/common/sp/back.png) center / contain no-repeat;
  color: #ffffff;
  font-size: 1.0rem;
  line-height: 1.2;
  font-weight: bold;
  padding: 0.5rem 0 0;
  text-decoration: none;
}
#footer_pagetop a::before {
  content: 'PAGE';
}
#footer_pagetop a::after {
  content: 'TOP';
}
@media screen and (min-width: 768px) {
  #footer_pagetop a {
    bottom: 25px;
    width: 50px;
    height: 50px;
    padding: 8px 0 0;
    background: url(../../img/usr/common/back.png) center / contain no-repeat;
    font-size: 10px;
    transition: opacity 0.3s;
  }
  #footer_pagetop a:hover {
    opacity: 0.8;
  }

}

#copyright {
  margin: 5.0rem 0 0;
  padding: 2.0rem 1.5rem 2.0rem 1.5rem;
  background: var(--sub-color2);
  color: #ffffff;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  #copyright {
      margin: 84px 0 0;
      height: 57px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
  } 
}
/* contents */
.page-error-contents {
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-error-contents {
    width: 100%;
    max-width: 1180px;
    padding: 0 40px;
    margin: 30px auto;
  }
}
.block-global-search {
  background: #f7f7f7;
  margin: 0 -1.5rem 4.0rem;
  padding: 1.5rem;
}
.block-global-search > form {
  position: relative;
  flex: 1;
}
.block-global-search > form .block-global-search--keyword {
  position: relative;
  z-index: 1;
  border: none;
  background: #FFFFFF;
  border-radius: 3px;
  width: 100%;
  height: 3.5rem;
  padding-right: 4.0rem;
  padding-left: 1.2rem;
}
.block-global-search > form .block-global-search--submit {
  appearance: none;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 4.0rem;
  height: 3.5rem;
  border: none;
  background: url(../../img/usr/common/sp/icon_search.png) center / 2.0rem auto no-repeat;
}
@media screen and (min-width: 768px) {
  .block-global-search {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto 50px;
    padding: 28px 40px;
  }
  .block-global-search > form .block-global-search--keyword {
    height: 40px;
  }
  .block-global-search > form .block-global-search--submit {
    height: 40px;
    background: url(../../img/usr/common/icon_search.png) center / 20px auto no-repeat;
  } 
}

.error-contents {
  margin: 4.0rem 0;
}
.error-contents-tit {
  position: relative;
  margin: 0 0 3.8rem;
  padding: 0 4.0rem;
  text-align: center;
}
.error-contents-tit::before {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  top: calc(50% - 3.3rem / 2);
  display: block;
  content: '';
  height: 3.3rem;
  background: url(../../img/usr/order/order_complete2_sp.png) 0 0 / 2.0rem auto repeat;
}
.error-contents-tit::after {
  position: absolute;
  z-index: 20;
  left: 0.6rem;
  top: calc(50% - 3.3rem / 2 - 0.4rem);
  display: block;
  content: '';
  width: 1.8rem;
  height: 4.5rem;
  background: url(../../img/usr/order/order_complete1_sp.png) center / contain no-repeat;
}
.error-contents-tit > p {
  position: relative;
  z-index: 50;
  background: #ffffffee;
  margin: 0;
  padding: 0 0.5rem;
  min-height: 3.3rem;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0 1.0rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-color2);
}
.error-contents-tit > p span {
  font-size: 2.5rem;
  font-family: var(--font-antonio);
}
.error-contents-text {
  font-size: 1.6rem;
  line-height: 1.7;
}
.error-contents-text > *:not(:first-child) {
  margin-top: 1.4em;
}
@media screen and (min-width: 768px) {
  .error-contents-tit::before {
    top: calc(50% - 27px);
    height: 54px;
    background: url(../../img/usr/order/order_complete2.png) 0 0 / auto 53px repeat-x;
  }
  .error-contents-tit::after {
    left: 10px;
    top: calc(50% - 37px);
    width: 32px;
    height: 75px;
    background: url(../../img/usr/order/order_complete1.png) center / contain no-repeat;
  }
  .error-contents-tit > p {
    display: inline-flex;
    padding: 10px 25px;
    font-size: 25px;
  }
  .error-contents-tit > p span {
    font-size: 35px;
  }
  .error-contents-text {
    margin: 50px 0;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
  }
    
}

/* category */
#error-category {
  display: none;
  margin: 4.0rem -1.5rem;
  padding: 6.0rem 1.5rem;
  background: var(--sub-color);
}
#error-category h2 {
  color: var(--text-color2);
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 4.0rem;
}
#error-category .error-category--btns {
  margin: 4.0rem 0 0;
}
#error-category .error-category--btns li + li {
  margin-top: 2.0rem;
}
#error-category .error-category--btns li .btn {
  width: 100%;
}

.error-category--list ul {
	display: flex;
	flex-flow: wrap;
	align-items: stretch;
	gap: 3px;
  margin: 0 0 3px;
}
.error-category--list ul li {
	width: calc((100% - 3px * 2) / 3);
	word-break: break-all;
}
.error-category--list ul li a {
	height: 100%;
  position: relative;
	padding: 6.5rem 0.5rem 1.4rem;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #ffffff;
	font-size: 1.3rem;
  text-decoration: none!important;
}
.error-category--list ul a figure {
  position: absolute;
  top: 1.0rem;
	width: 5.0rem;
	height: 5.0rem;
	margin: 0;
}
#error-category .top-categories--btn {
	margin: 1.8rem 0 0;
	text-align: center;
}
#error-category .top-categories--btn a {
	position: relative;
	width: 19.2rem;
	height: 5.5rem;
}
#error-category .top-categories--btn a::before,
#error-category .top-categories--btn a::after {
	display: block;
	content: '';
	width: 1.5rem;
	height: 2px;
	background: var(--main-color);
	position: absolute;
	right: 1.4rem;
	top: calc(50% - 1px);
}
#error-category .top-categories--btn a:not(.st__open)::after {
	transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  #error-category {
    position: relative;
    z-index: 1;
    margin: 50px 0;
    padding: 50px 0;
  }
  #error-category::before {
    display: block;
    content: '';
    position: absolute;
    left: calc((100% - var(--vw) * 100) / 2);
    right: calc((100% - var(--vw) * 100) / 2);
    top: 0;
    bottom: 0;
    z-index: -1;
    background: var(--sub-color);
  }
  
  #error-category h2 {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0 0 40px;
  }
  #error-category .error-category--btns {
    margin: 50px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  #error-category .error-category--btns li + li {
    margin-top: 0;
  }
  #error-category .error-category--btns li .btn {
    width: 350px;
  }
  
  #error-category .top-categories--btn {
    display: none!important;
  }
  #error-category .error-category--list > ul + div {
    display: contents!important;
    margin: 0;
  }
  .error-category--list {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 4px;
  }
  .error-category--list ul {
    display: contents!important;
    margin: 0;
  }
  .error-category--list ul li {
    width: calc((100% - 4px * 5) / 6);
  }
  .error-category--list ul li a {
    padding: 90px 5px 20px;
    font-size: 14px;
    text-decoration: none!important;
  }
  .error-category--list ul a figure {
    top: 20px;
    width: 60px;
    height: 60px;
  }  
}



/* topics */
#error-topics {
  display: none;
}
#error-topics .error-topics--container .only__sp {
  margin: 0 -1.5rem;
  overflow: auto;
}
.error-topics--container .only__sp ul {
  display: flex;
  gap: 1.0rem;
}
.error-topics--container .only__sp ul::before,
.error-topics--container .only__sp ul::after {
  display: block;
  content: '';
  width: 0.5rem;
  min-width: 0.5rem;  
}
.error-topics--container .only__sp ul li {
  width: 16rem;
  min-width: 16rem;  
}
.error-topics--container .only__sp ul li a {
  text-decoration: none;
}
.error-topics--container .only__sp ul li figure {
  margin-bottom: 0.6rem;
}
#error-topics .error-topics--container .only__pc {
  position: relative;
}
.error-topics--container .only__pc ul li figure {
  margin-bottom: 8px;
}
.error-topics--container .only__pc ul li a {
  text-decoration: none;
}
.error-topics--container .only__pc ul li a:hover {
  text-decoration: underline;
}

body .swiper-button-next, body .swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: rgba(29,29,29,0.45);
  top: 50px;
  margin: 0;
}
body .swiper-button-next {
  right: -20px;
  padding-right: 4px;
}
body .swiper-button-prev {
  left: -20px;
  padding-left: 4px;
}
body .swiper-button-next:after, body .swiper-button-prev:after {
  content:"";
  width: 10px;
  height: 10px;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transform: rotate(45deg);
}
body .swiper-button-prev:after {
  transform: rotate(-135deg);
}
body .swiper-button-next:hover, body .swiper-button-prev:hover {
  background: rgba(29,29,29,0.75);
}