* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  font-size: 16px;
  /* font-family:'メイリオ', 'Meiryo', sans-serif; */
  text-decoration: none;
}

/*以下、共通部分*/

body {
  position: relative;
  color: #281616;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6",
    "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

body.rock {
  height: 100vh;
  overflow: hidden;
}

body.brown-body::before {
  content: "";
  position: absolute;
  z-index: -10;
  width: 100%;
  height: 100%;
  background: #d9c7bb;
  top: 0;
  left: 0;
}

body.white-body::before {
  content: "";
  position: absolute;
  z-index: -10;
  width: 100%;
  height: 100%;
  background: #fbfbfb;
  top: 0;
  left: 0;
}

main {
}

img {
  object-position: center;
  max-width: 100%;
  display: block;
}

.times {
  font-family: "Times New Roman", Times, serif;
}

.hover-opa {
  transition-duration: 0.5s;
}

.hover-opa:hover {
  opacity: 0.5;
}

.hide {
  display: none !important;
}

.fade-show {
  opacity: 0;
  transform: translateY(50px);
}

.fade-show.show {
  opacity: 1;
  transition-duration: 3s;
  transform: translateY(0);
}

.container1 {
  width: 1200px;
  margin: auto;
  max-width: 100%;
}

.container2 {
  width: 1000px;
  margin: auto;
  max-width: 100%;
}

.link-jump {
  margin-top: -120px;
  padding-top: 120px;
  pointer-events: none;
}

a.border-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 50px;
  position: relative;
  background-position: 0 0;
  background-size: 200% auto;
  transition: all 0.5s ease 0s;
}

a.border-link::after {
  content: "";
  width: 138px;
  height: 5px;
  position: absolute;
  right: -110px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-position: center;
  background-size: cover;
}

a.border-link:hover {
  background-position: -100% 0;
}

a.border-link span {
  font-weight: normal;
  letter-spacing: 0.04em;
}

a.border-link.black {
  border: 1px solid #251716;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 50%,
    #936d54 50%
  );
}

a.border-link.black::after {
  background-image: url("../img/common/link-arrow-black.png");
}

a.border-link.black span {
  color: #251716;
}

a.border-link.white {
  border: 1px solid #ffffff;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 50%,
    #936d54 50%
  );
}

a.border-link.white::after {
  background-image: url("../img/common/link-arrow-white.png");
}

a.border-link.white span {
  color: #ffffff;
}

header {
  background: #fff;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

header .header-container {
  width: 1200px;
  max-width: 100%;
  margin: auto;
  height: 100%;
}

header .header-flex {
  display: flex;
  justify-content: space-between;

  height: 100%;
}

header .header-flex .logo {
  width: 211px;
  display: block;
  padding-top: 27px;
}

header .header-flex .logo img {
  display: block;
  width: 100%;
}

header nav {
  display: flex;
  align-items: center;
  height: 100%;
}

header nav .parent-box {
  height: 100%;
  display: block;
  margin-left: 40px;
  padding-top: 40px;
  position: relative;
}

header nav .parent-box .parent-item {
  font-family: "游教科書体", "YuKyokasho", "YuKyokasho Yoko";
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #251716;
  line-height: 1;
  padding-bottom: 6px;
  position: relative;
}

header nav .parent-box .parent-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #251716;
  transition-duration: 0.2s;
}

header nav .parent-box.step1 .parent-item::before {
  width: 100%;
}

header nav .parent-box.step2 .parent-item::before {
  right: 0;
  left: auto;
}

header nav .parent-item.active {
  border-bottom: 2px solid #231816;
}

header nav .about-parent {
  cursor: default;
}

header nav .about-parent .parent-item {
  padding-right: 40px;
}

header nav .about-parent .parent-item::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 13px;
  height: 9px;
  background: url("../img/common/down-arrow.png");
  background-position: center;
  background-size: cover;
}

header nav .online .parent-item {
  padding-right: 30px;
}

header nav .online .parent-item::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 17px;
  height: 17px;
  background: url("../img/common/cart-icon.png");
  background-position: center;
  background-size: cover;
}

header nav .sub-menu {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.85);
  transition: 0.4s;
  opacity: 0;
  pointer-events: none;
}

header nav .sub-menu.show {
  opacity: 1;
  pointer-events: auto;
}

header nav .sub-menu ul {
}

header nav .sub-menu ul li {
  padding-left: 36px;
  margin-bottom: 16px;
  position: relative;
}

header nav .sub-menu ul li.active::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background: #231816;
  left: 0;
  top: 11px;
}

header nav .sub-menu ul li.hover::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background: #231816;
  left: 0;
  top: 11px;
}

header nav .sub-menu ul li:last-child {
  margin-bottom: 0;
}

header nav .sub-menu ul li a {
  font-family: "游教科書体", "YuKyokasho", "YuKyokasho Yoko";
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.04em;
  color: #231816;
}

footer {
  position: relative;
  overflow: hidden;
}

footer img.footer-bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 865px;
  object-position: top;
  object-fit: cover;
  bottom: 0;
  left: 0;
  z-index: -3;
}

footer .footer-area1 {
  overflow: hidden;
  height: 865px;
  position: relative;
}

footer .footer-area1 .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 1440px;
  height: 865px;
}

footer .footer-area1 .relative {
  width: 100%;
  height: 100%;
  margin: auto;
  padding-top: 500px;
  position: relative;
}

footer .footer-area1 .logo {
  display: block;
  margin: 0 auto 56px;
  width: 172px;
}

footer .footer-area1 .logo img {
  display: block;
  width: 100%;
}

footer .footer-area1 .flex1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
}

footer .footer-area1 .flex1 a {
  margin: 0 28px;
}

footer .footer-area1 .flex1 a img {
  display: block;
}

footer .footer-area1 .flex1 a img.line {
  width: 38px;
}

footer .footer-area1 .flex1 a img.insta {
  width: 42px;
}

footer .footer-area1 .flex1 a img.twitter {
  width: 42px;
}

footer .footer-area1 .flex2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .footer-area1 .flex2 a {
  margin: 0 36px;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #000;
}

footer .footer-area2 {
  background: #292019;
  padding: 16px 0 40px;
}

footer .footer-area2 p {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #fff;
}

footer img.choco {
  position: absolute;
  z-index: -1;
  display: block;
  transition-duration: 1.5s;
  opacity: 0;
}

footer img.choco.show {
  opacity: 1;
}

footer img.choco1 {
  /* width:586px;
  bottom:-64px;
  left:-290px; */
  width: 410px;
  bottom: -45px;
  left: -200px;
}

footer img.choco2 {
  /* width:191px;
  left:163px;
  bottom:15px; */
  width: 134px;
  left: 193px;
  bottom: 45px;
}

footer img.choco3 {
  /* width:191px;
  bottom:-72px;
  left:307px; */
  width: 134px;
  bottom: -36px;
  left: 270px;
}

footer img.choco4 {
  /* width:161px;
  bottom:234px;
  left:354px; */
  width: 113px;
  bottom: 230px;
  left: 344px;
}

footer img.choco5 {
  /* width:188px;
  bottom:317px;
  right:326px; */
  width: 132px;
  bottom: 300px;
  right: 260px;
}

footer img.choco6 {
  /* width:260px;
  bottom:-37px;
  right:268px; */
  width: 182px;
  bottom: 0;
  right: 228px;
}

footer img.choco7 {
  /* width:465px;
  top:178px;
  right:-216px; */
  width: 325px;
  top: 320px;
  right: -160px;
}

footer img.choco8 {
  /* width:260px; */
  width: 182px;
  top: 460px;
  right: -64px;
}

footer img.choco9 {
  /* width:310px;
  right:-64px;
  bottom:-84px; */
  width: 217px;
  right: 0;
  bottom: -30px;
}

footer .page-top {
  position: absolute;
  right: 120px;
  bottom: 180px;
  width: 20px;
  height: 92px;
  overflow: hidden;
  cursor: pointer;
}

footer .page-top .page-top-relative {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 0;
}

footer .page-top img {
  position: absolute;
  display: block;
}

footer .page-top img.arrow {
  bottom: 0;
  left: 0;
  height: 100%;
  animation-name: arrow-move;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

footer .page-top img.text {
  bottom: 0;
  right: 0;
  width: 12px;
}

@keyframes arrow-move {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 100%;
  }
}

.brown-body {
  background: #d9c7bb;
}

body.brown-body footer {
  position: relative;
}

body.brown-body footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #d9c7bb;
  z-index: -4;
  top: 0;
  left: 0;
}

body.white-body footer {
  position: relative;
}

body.white-body footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fbfbfb;
  z-index: -4;
  top: 0;
  left: 0;
}

main.page-main .page-top-section {
  padding-top: 216px;
}

main.page-main .page-title-block {
  position: relative;
}

main.page-main .page-title-block img.bg {
  object-fit: cover;
  display: block;
  height: 345px;
  min-width: 1200px;
  width: 84vw;
}

main.page-main .page-title-block .text-block {
  position: absolute;
  width: 1000px;
  max-width: 100%;
  left: 0;
  right: 0;
  bottom: 12px;
  margin: auto;
}

main.page-main .page-title-block .text-block h1 {
  font-weight: normal;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  color: #fff;
}

main.page-main .page-title-block .text-block p {
  font-weight: normal;
  font-size: 110px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
}

/*以上、共通部分*/

/*以下、トップ部分*/

header.top-header {
  background: none;
  z-index: 10001;
  box-shadow: none;
  position: absolute;
}

header.top-header.rock {
  pointer-events: none;
}

header.top-header .header-flex .logo {
  opacity: 0;
  pointer-events: none;
}

header.top-header nav .parent-box .parent-item {
  color: #fff;
}

header.top-header nav .about-parent .parent-item::after {
  background-image: url("../img/common/down-arrow-white.png");
}

header.top-header nav .online .parent-item::after {
  background-image: url("../img/common/cart-icon-white.png");
}

header.top-header nav .parent-box .parent-item::before {
  background: #fff;
}

body.top-body {
}
/*
body.top-body .white-out{
  position: absolute;
  width:100%;
  height:100%;
  z-index:10010;
  left:0;
  top:0;
  background-color: #fff;

} */

body.top-body .common-header {
  transition-duration: 0.5s;
  top: -90px;
}

body.top-body .common-header.show {
  top: 0px;
}

main.top-main {
  /* padding-top: 90px; */
}

.top-main-frame {
  width: 100%;
  /* height:57vw; */
  overflow: hidden;
  height: 100vh;
  min-height: 500px;
  position: relative;
  background: #fff;
}

.top-main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-main-frame .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10000;
  transition-duration: 4s;
  opacity: 0;
}

.top-main-frame .slide.show {
  opacity: 1;
}

.top-main-frame .slide img.bg {
  transform: scale(1.15);
}

.top-main-frame .slide.extend img.bg {
  /* transform: scale(1.05); */
  transform: scale(1);
  transition-duration: 20s;
}

.top-main-frame .slide .relative {
  width: 100%;
  height: 100%;
  position: relative;
}

.top-main-frame .slide1 {
  background: #fff;
}

.top-main-frame .slide .block {
  position: absolute;
  width: 148px;
  height: 148px;
  top: 41%;
  left: 0;
  right: 0;
  margin: auto;
  transition-duration: 1s;
}

.top-main-frame .slide .block.move {
  top: 35%;
  bottom: auto;
}

.top-main-frame .slide .text {
  position: absolute;
  width: 520px;
  height: 22px;
  top: 59%;
  right: 0;
  left: 0;
  margin: auto;
  transition-duration: 1s;
}

.top-main-frame .slide .text.fade {
  opacity: 0;
}

.top-section1 {
  /* padding-top: 88px; */
  padding-top: 178px;
  padding-bottom: 64px;
  background: #d9c7bb;
}

.top-section1 .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-section1 .flex .left {
}

.top-section1 .left h2 {
  font-weight: normal;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: #000;
}

.top-section1 .left p.p1 {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
}

.top-section1 .flex .right {
  width: 740px;
  max-width: 100%;
}

.top-section1 .flex .right ul {
}

.top-section1 .flex .right ul li {
  border-bottom: 1px solid #707070;
}

.top-section1 .flex .right ul li:first-child {
  border-top: 1px solid #707070;
}

.top-section1 .flex .right ul li a {
  padding: 32px 0;
  display: block;
}

.top-section1 .flex .right ul li a .info-flex {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.top-section1 .flex .right ul li a p.date {
  width: 105px;
  font-weight: normal;
  letter-spacing: 0.04em;
  color: #000;
}

.top-section1 .flex .right ul li a p.category {
  width: 85px;
  height: 25px;
  border-radius: 2px;
  background: #c6a591;
  display: flex;
  justify-content: center;
}

.top-section1 .flex .right ul li a p.category span {
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  align-self: center;
  letter-spacing: 0.04em;
  color: #000;
}

.top-section1 .flex .right ul li a p.title {
  width: 100%;
  letter-spacing: 0.04em;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: underline;
}

.top-section1 a.more-link {
  display: block;
  margin: 40px 0 0 auto;
  width: 140px;
}

.top-section1 a.more-link img {
  display: block;
  width: 100%;
}

.top-section2 {
  padding: 48px 0;
  background: #c6a591;
}

.top-section2 .flex {
  display: flex;
}

.top-section2 .flex .left,
.top-section2 .flex .right {
  width: 50%;
}

.top-section2 .flex .left {
  padding-left: 100px;
  padding-top: 80px;
}

.top-section2 .flex .left h2 {
  font-weight: normal;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: #000;
}

.top-section2 .flex .left p.p1 {
  margin-bottom: 64px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
}

.top-section2 .flex .left p.p2 {
  font-size: 30px;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  margin-left: -20px;
}

.top-section2 .flex .left p.p3 {
  margin-bottom: 88px;
  letter-spacing: 0.01em;
}

.top-section2 .flex .right {
}

.top-section2 .flex .right img {
  display: block;
  width: 100%;
}

.top-section3 {
  padding: 195px 0;
}

.top-section3 img.top-para {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  z-index: -5;
}
.top-section3 .contents-area {
  padding: 192px 0 132px;
  background: #4e3c35;
}

.top-section3 .flex {
  display: flex;
}

.top-section3 .flex .left,
.top-section3 .flex .right {
  width: 50%;
}

.top-section3 .flex .left {
  padding-top: 24px;
  padding-left: 100px;
}

.top-section3 .flex .left p.p1 {
  margin-bottom: 20px;
  font-weight: normal;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: #fff;
}

.top-section3 .flex .left p.p2 {
  margin-bottom: 48px;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #fff;
}

.top-section3 .flex .left p.p3 {
  width: 390px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 110px;
}

.top-section3 .flex .right {
}

.top-section3 .flex .right img {
  display: block;
  width: 545px;
}

.top-section4 {
  padding: 160px 0 100px;
  background-color: #c6a591;
}

.top-section4 .swiper-container {
  width: 100%;
  margin-bottom: 48px;
}

.top-section4 .swiper-slide {
  width: 490px;
  margin: 0 36px;
  cursor: pointer;
}

.top-section4 .swiper-slide img {
  display: block;
  width: 490px;
  height: 500px;
  object-fit: cover;
  margin-bottom: 30px;
}

.top-section4 .swiper-slide p.p1 {
  font-family: "Times New Roman", Times, serif;
  font-weight: normal;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #281616;
  margin-bottom: 8px;
}

.top-section4 .swiper-slide p.p2 {
  font-weight: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #281616;
}

.top-section4 a.border-link {
  margin: auto;
}

.top-section5 {
  padding-top: 180px;
  padding-bottom: 48px;
  position: relative;
}

.top-section5::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -5;
  background: #d9c7bb;
}

.top-section5 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-section5 ul li {
  margin-bottom: 72px;
  width: 465px;
  height: 348px;
  position: relative;
}

.top-section5 ul li::after {
  content: "";
  width: 448px;
  height: 335px;
  position: absolute;
  /* right:-14px;
  bottom:-14px; */
  right: 0;
  bottom: 0;
  background: url("../img/top/dot-frame.png");
  background-position: center;
  background-size: cover;
  z-index: -2;
}

.top-section5 ul li a {
  display: block;
  width: 450px;
  height: 333px;
  transition-duration: 0.3s;
  background-size: cover;
  background-position: center;
}

.top-section5 ul li a.history {
  background-image: url("../img/top/top-history-bg1.png");
}

.top-section5 ul li a.history:hover {
  background-image: url("../img/top/top-history-bg2.png");
}

.top-section5 ul li a.factory {
  background-image: url("../img/top/top-factory-bg1.png");
}

.top-section5 ul li a.factory:hover {
  background-image: url("../img/top/top-factory-bg2.png");
}

.top-section5 ul li a.company {
  background-image: url("../img/top/top-company-bg1.png");
}

.top-section5 ul li a.company:hover {
  background-image: url("../img/top/top-company-bg2.png");
}

.top-section5 ul li a.shop {
  background-image: url("../img/top/top-shop-bg1.png");
}

.top-section5 ul li a.shop:hover {
  background-image: url("../img/top/top-shop-bg2.png");
}

/* .top-section6{
    background-color: #D9C7BB;
} */

.top-section6 a {
  display: block;
  width: 100%;
  height: 388px;
  overflow: hidden;
  position: relative;
}

.top-section6 a .icon {
  position: absolute;
  z-index: 1;
  display: block;
  width: 376px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.top-section6 a .bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition-duration: 0.6s;
}

.top-section6 a:hover .bg {
  transform: scale(1.05);
}

/*以上、トップ部分*/

/*以下、私たちについてページ*/
body.about-body {
}

main.about-main {
}

.about-section1 {
  background: #fbfbfb;
}

.about-section2 {
  padding: 124px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left -190px top 0;
  background-image: url(../img/about/about-bg1.png);
}

.about-section2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
}

.about-section2 p.p1 {
  font-size: 30px;
  letter-spacing: 0.2em;
  width: 520px;
  max-width: 100%;
  text-align: left;
  margin: 0 auto 64px;
  line-height: 1.6;
}

.about-section2 p.p2 {
  letter-spacing: 0.04em;
  width: 875px;
  margin: auto;
  max-width: 100%;
  line-height: 1.6;
}

.about-section3 {
  padding-top: 120px;
  padding-bottom: 102px;
}

.about-section3 p.p1 {
  font-size: 128px;
  letter-spacing: 0.03em;
  text-align: center;
  color: #e2d0b2;
  line-height: 1;
}

.about-section3 p.p1 span {
  font-family: "Times New Roman", Times, serif;
  font-size: 128px;
  letter-spacing: 0.03em;
  /* color: transparent; */
  color: #e2d0b2;
  line-height: 1;
  transition-duration: 1.5s;
  opacity: 0;
  filter: blur(20px);
}

.about-section3 p.p1 span.show {
  opacity: 1;

  filter: blur(0);
}

/* .about-section3 p.p1 span:nth-child(1) {
  animation-delay: 0.1s;
}

.about-section3 p.p1 span:nth-child(2) {
  animation-delay: 0.3s;
}

.about-section3 p.p1 span:nth-child(3) {
  animation-delay: 0.5s;
}

.about-section3 p.p1 span:nth-child(4) {
  animation-delay: 0.7s;
}

.about-section3 p.p1 span:nth-child(5) {
  animation-delay: 0.9s;
}

.about-section3 p.p1 span:nth-child(6) {
  animation-delay: 1.1s;
}

.about-section3 p.p1 span:nth-child(7) {
  animation-delay: 1.3s;
}

.about-section3 p.p1 span:nth-child(8) {
  animation-delay: 1.5s;
}

.about-section3 p.p1 span:nth-child(9) {
  animation-delay: 1.7s;
}

@keyframes blur {
  0%    {text-shadow:  0 0 100px #e2d0b2; opacity:0;}
  5%    {text-shadow:  0 0 90px #e2d0b2;}
  20%   {text-shadow:  0 0 0px #e2d0b2;}
  80%   {text-shadow:  0 0 0px #e2d0b2;}
  95%   {text-shadow:  0 0 90px #e2d0b2;}
  100%  {text-shadow:  0 0 100px #e2d0b2; opacity:1;}
} */

.about-section3 p.p2 {
  font-size: 24px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  line-height: 1;
}

.about-section3 img.bg {
  position: fixed;
  z-index: -9;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
}

.about-section4 {
  padding-top: 80px;
  background: #fbfbfb;
}

.about-section4 .list {
  width: 875px;
  max-width: 100%;
  margin: auto;
}

.about-section4 .list .block {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #251716;
}

.about-section4 .list .block:first-child {
  border-top: 1px solid #251716;
}

.about-section4 .block .left {
  width: 275px;
  height: 242px;
}

.about-section4 .block .left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section4 .block .right {
  width: 600px;
  padding-left: 64px;
}

.about-section4 .block .right p.p1 {
  margin-bottom: 16px;
  font-size: 40px;
  letter-spacing: 0.01em;
}

.about-section4 .block .right p.p2 {
  margin-bottom: 24px;
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.about-section4 .block .right p.p3 {
  line-height: 1.6;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
/*以上、私たちについてページ*/

/*以下、芥川製菓の歴史ページ*/
body.history-body {
}

main.history-main {
}

.history-section1 {
}

.history-section2 {
  padding-top: 116px;
}

.history-section2 .flex {
  display: flex;
  justify-content: center;
}

.history-section2 .flex .center {
  width: 1px;
  background: #727272;
}

.history-section2 ul p {
  color: #000;
  letter-spacing: 0.05em;
}

.history-section2 ul p.p1 {
  font-size: 14px;
  margin-bottom: 6px;
}

.history-section2 ul .border-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.history-section2 ul .border-flex .border {
  width: 300px;
  height: 1px;
  background: #727272;
  position: relative;
}

.history-section2 ul .border-flex .border::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #727272;
  top: -2.5px;
}

.history-section2 ul p.p2 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 55px;
  white-space: nowrap;
  line-height: 1;
}

.history-section2 ul p.p3 {
}

.history-section2 ul p.img-text {
  margin-top: 12px;
  font-weight: bold;
}

.history-section2 ul .img-block {
}

.history-section2 ul .img-block img {
  display: block;
  width: 100%;
}

.history-section2 .flex .left-list,
.history-section2 .flex .right-list {
  width: 450px;
}

.history-section2 .left-list {
  padding-top: 124px;
}

.history-section2 .left-list .border::after {
  right: -3.5px;
}

.history-section2 .right-list {
  padding-top: 32px;
}

.history-section2 .right-list p {
  text-align: right;
}

.history-section2 .right-list .border::after {
  left: -3.5px;
}

.history-section2 ul.right-list .img-block {
  margin-right: 0;
  margin-left: auto;
}

.history-section2 ul.right-list .img-flex {
  width: 388px;
  display: flex;
  justify-content: space-between;
  margin: 32px 0 32px auto;
}

.history-section2 ul.right-list .img-flex .img-block {
  margin-left: 0;
}

.history-section2 ul .block-1886 {
  margin-bottom: 148px;
}

.history-section2 ul .block-1891 {
  margin-bottom: 206px;
}

.history-section2 ul .block-1896 {
  margin-bottom: 110px;
}

.history-section2 ul .block-1896 .img-block {
  margin-top: 72px;
  width: 406px;
}

.history-section2 ul .block-1907 {
  margin-bottom: 72px;
}

.history-section2 ul .block-1907 .img-block {
  margin-top: 32px;
  width: 388px;
}

.history-section2 ul .block-1913 {
  margin-bottom: 207px;
}

.history-section2 ul .block-1914 {
  margin-bottom: 372px;
}

.history-section2 ul .block-1923 {
  margin-bottom: 354px;
}

.history-section2 ul .block-1945 {
  margin-bottom: 72px;
}

.history-section2 ul .block-1946 {
  margin-bottom: 72px;
}

.history-section2 ul .block-1948 {
  margin-bottom: 630px;
}

.history-section2 ul .block-1949 {
  margin-bottom: 36px;
}

.history-section2 ul .block-1949 .img-block1 {
  width: 388px;
}

.history-section2 ul .block-1949 .img-block2 {
  margin-top: 72px;
  width: 255px;
  margin-right: auto;
  margin-left: 62px;
}

.history-section2 ul .block-1962 {
  margin-bottom: 148px;
}

.history-section2 ul .block-1962 .img-block {
  /* margin-top:200px;
  width:403px; */
  margin-top: 60px;
  width: 136px;
  margin-left: auto;
  margin-right: 60px;
}

.history-section2 ul .block-1963 {
  margin-bottom: 72px;
}

.history-section2 ul .block-1963 .img-block {
  margin-top: 32px;
  width: 255px;
  margin-right: auto;
  margin-left: 62px;
}

.history-section2 ul .block-1966 {
  /* margin-bottom: 200px; */
  margin-bottom: 400px;
}

.history-section2 ul .block-1966 .img-block {
  /* margin-top:100px;
  width:272px; */
  margin-top: 60px;
  width: 136px;
  margin-left: auto;
  margin-right: 60px;
}

.history-section2 ul .block-1969 {
  margin-bottom: 370px;
}

.history-section2 ul .block-1973 {
  /* margin-bottom: 72px; */
  margin-bottom: 300px;
}

.history-section2 ul .block-1980 {
  margin-bottom: 300px;
}

.history-section2 ul .block-1982 {
  margin-bottom: 72px;
}

.history-section2 ul .block-1982 .img-block {
  margin-top: 16px;
  width: 388px;
}

.history-section2 ul .block-1983 {
  margin-bottom: 380px;
}

.history-section2 ul .block-1984 {
  margin-bottom: 140px;
}

.history-section2 ul .block-1992 {
  margin-bottom: 164px;
}

.history-section2 ul .block-2003 {
  margin-bottom: 108px;
}

.history-section2 ul .block-2004 {
  margin-bottom: 108px;
}

.history-section2 ul .block-2009 {
  margin-bottom: 40px;
}

.history-section2 ul .block-2009 .img-block {
  margin-top: 16px;
  width: 388px;
}

.history-section2 ul .block-2012 {
  margin-bottom: 226px;
}

.history-section2 ul .block-2012 .img-block {
  margin-top: 32px;
  width: 392px;
}

.history-section2 ul .block-2015 {
}

.history-section2 ul .block-2015 .img-block {
  margin-top: 16px;
  width: 388px;
}

.history-section2 ul .block-2016 {
  padding-bottom: 100px;
}

.history-section2 img.book {
  display: block;
  width: 100%;
  margin: -40px auto 0;
}
/*以上、芥川製菓の歴史ページ*/

/*以下、会社概要ページ*/
body.company-body {
}

main.company-main {
}

.company-section1 {
}

.company-section2 {
  padding-top: 124px;
}

.company-section2 .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 72px;
}

.company-section2 .flex .left {
  width: 440px;
}

.company-section2 .flex .left img {
  display: block;
  width: 100%;
}
.company-section2 .flex .right {
  width: 496px;
}

.company-section2 .right p.p1 {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.2em;
  line-height: 1;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 8px 0 10px 24px;
}

.company-section2 .right .block {
  margin-bottom: 24px;
}

.company-section2 .right .block p.p2 {
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 8px 16px;
  background: #cecece;
}

.company-section2 .right .block p.p3 {
  padding: 8px 16px 0;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.company-section2 .right .block.block4 {
  margin-bottom: 0;
}

.company-section2 ul {
  margin-bottom: 72px;
}

.company-section2 ul li {
  padding: 24px 0;
  border-top: 1px solid #251716;
}

.company-section2 ul li:last-child {
  border-bottom: 1px solid #251716;
}

.company-section2 ul li .flex2 {
  display: flex;
}

.company-section2 .flex2 .title {
  width: 260px;
  padding-left: 64px;
}

.company-section2 .flex2 .title p {
  letter-spacing: 0.04em;
  font-weight: bold;
}

.company-section2 .flex2 .content {
  width: 740px;
}

.company-section2 .flex2 .content p {
  letter-spacing: 0.04em;
  line-height: 1.5;
  white-space: nowrap;
}

.company-section2 .flex2 .map-flex {
  display: flex;
  margin-bottom: 28px;
}

.company-section2 .flex2 .map-flex .info {
  width: 480px;
}

.company-section2 .flex2 .map-flex .info .bold {
  font-weight: bold;
}

.company-section2 .flex2 .map-flex .link {
  padding-top: 26px;
}

.company-section2 .flex2 .map-flex .link img {
  display: block;
  width: 115px;
}

.company-section2 iframe {
  display: block;
  width: 100%;
  height: 40vw;
}
/*以上、会社概要ページ*/

/*以下、商品一覧*/
body.product-body {
}

main.product-main {
}

.product-section1 {
}

.product-section2 {
  padding-top: 128px;
  padding-bottom: 56px;
}

.product-section2 .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}

.product-section2 .flex .link {
  cursor: pointer;
  width: 475px;
  padding-bottom: 10px;
  border-bottom: 1px solid #281616;
}

.product-section2 .flex .link p {
  position: relative;
  font-size: 18px;
  line-height: 1;
  padding-left: 56px;
}

.product-section2 .flex .link p::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 17px;
  height: 11px;
  background-position: center;
  background-size: cover;
  background-image: url("../img/common/down-arrow.png");
}

main.product-main h2 {
  margin-bottom: 32px;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-align: center;
  background: #c6a591;
  padding: 16px 0;
  line-height: 1;
}

.product-section2 p.text1 {
  margin-bottom: 80px;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 40px;
  color: #281616;
}

.product-section2 ul {
  display: flex;
  flex-wrap: wrap;
}

.product-section2 ul li {
  width: 300px;
  margin-bottom: 96px;
  margin-right: 50px;
}

.product-section2 ul li:nth-child(3n) {
  margin-right: 0;
}

.product-section2 ul li a {
  display: block;
  color: #281616;
}

.product-section2 ul li a .thumb {
  margin-bottom: 30px;
  width: 300px;
  height: 305px;
}

.product-section2 ul li a .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-section2 ul li a p.p1 {
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  font-weight: bold;
}

.product-section2 ul li a p.p2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.05em;
  position: relative;
}

.product-section2 ul li a p.p2 span {
  font-size: 16px;
  font-weight: bold;
}

/* .product-section2 ul li a p.p2::after{
  content:'';
  width:35px;
  height:35px;
  position: absolute;
  right:8px;
  top:0;
  bottom:0;
  margin:auto;
  background-position: center;
  background-size: cover;
  background-image: url('../img/product/product-icon.png');
} */

.product-section3 {
  padding-top: 180px;
}

.product-section3 p.alert {
  margin-bottom: 80px;
  margin-top: -20px;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #b2372e;
}

.product-section3 .title-flex {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 36px;
  border-bottom: 2px solid #281616;
}

.product-section3 .title-flex p.title1 {
  margin-right: 36px;
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.product-section3 .title-flex p.title2 {
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  letter-spacing: 0.05em;
}

.product-section3 .area {
  margin-bottom: 64px;
}

.product-section3 .area.area3 {
  margin-bottom: 16px;
}

.product-section3 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-section3 ul li {
  width: 480px;
  margin-bottom: 64px;
}

.product-section3 ul li {
  display: block;
  color: #281616;
}

.product-section3 ul li .thumb {
  width: 480px;
  height: 305px;
  margin-bottom: 30px;
}

.product-section3 ul li .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-section3 ul li p.p1 {
  font-family: "Times New Roman", Times, serif;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-size: 22px;
}

.product-section3 ul li p.p2 {
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.product-section3 .border {
  margin-bottom: 64px;
  height: 2px;
  background: #281616;
}

.product-section3 .logo-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-section3 .logo-flex img {
  display: block;
  margin: 0 40px;
}

.product-section3 .logo-flex img.logo1 {
  width: 95px;
}

.product-section3 .logo-flex img.logo2 {
  width: 88px;
}

.product-section3 .logo-flex img.logo3 {
  width: 100px;
}

.product-section3 .logo-flex img.logo4 {
  width: 154px;
}

.product-section3 a.border-link {
  margin: 0 auto 80px;
}

/*以上、商品一覧*/

/*以上、店舗情報*/
body.shop-body {
}

main.shop-main {
}

.shop-section1 {
}

.shop-section2 {
  padding-top: 56px;
}

.shop-section2 p.p1 {
  line-height: 1.6;
  font-size: 18px;
  margin-bottom: 10px;
}

.shop-section2 p.p2 {
  line-height: 1.6;
  font-size: 18px;
  margin-bottom: 40px;
}

.shop-section2 .white-box {
  width: 1200px;
  max-width: 100%;
  background-color: #fff;
  margin: auto;
  padding: 72px 100px 166px;
}

.shop-section2 .link-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}

.shop-section2 .link-flex .link {
  cursor: pointer;
  width: 320px;
  padding-bottom: 10px;
  border-bottom: 1px solid #281616;
}

.shop-section2 .link-flex .link p {
  position: relative;
  font-size: 18px;
  line-height: 1;
  padding-left: 36px;
}

.shop-section2 .link-flex .link p::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 17px;
  height: 11px;
  background-position: center;
  background-size: cover;
  background-image: url("../img/common/down-arrow.png");
}

.shop-section2 .title-box {
  padding: 16px 36px;
  background-color: #c6a591;
  display: flex;
  align-items: center;
  margin-bottom: 56px;
}

.shop-section2 .title-box h2 {
  margin-right: 48px;
  line-height: 1;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.04em;
}

.shop-section2 .title-box p {
  line-height: 1;
}

.shop-section2 .area {
  margin-bottom: 140px;
}

.shop-section2 .area .button-flex {
  display: flex;
  justify-content: space-between;
  width: 350px;
}

.shop-section2 .area .button-flex.verti {
  width: auto;
  flex-direction: column;
}

.shop-section2 .area .button-flex.verti a:first-child {
  margin-bottom: 16px;
}

.shop-section2 .area .button-flex img {
  display: block;
  width: 155px;
  border-radius: 3px;
}

.shop-section2 .area1 .flex {
  display: flex;
  justify-content: space-between;
}

.shop-section2 .area1 .flex .left {
  width: 515px;
}

.shop-section2 .area1 .flex .left p.name {
  padding-left: 18px;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #251716;
  margin-bottom: 24px;
}

.shop-section2 .area1 .flex .left .info-block {
  padding: 56px 0 40px 18px;
  border-top: 1px solid #251716;
  border-bottom: 1px solid #251716;
  margin-bottom: 30px;
}

.shop-section2 .area1 .flex .left .info-flex {
  display: flex;
  margin-bottom: 36px;
}

.shop-section2 .area1 .flex .left .info-flex:last-child {
  margin-bottom: 0;
}

.shop-section2 .area1 .flex .left .info-flex p {
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #251716;
}

.shop-section2 .area1 .flex .left .info-flex p.title {
  width: 85px;
}

.shop-section2 .area1 .flex .left .info-flex p.info {
  width: 400px;
  white-space: nowrap;
}

.shop-section2 .area1 .flex .left .button-flex {
  padding-left: 18px;
}

.shop-section2 .area1 .flex .right {
  width: 445px;
}

.shop-section2 .area1 .flex .right img {
  display: block;
  border-radius: 6px;
  width: 100%;
}

.shop-section2 .area2 {
}

.shop-section2 .area2 ul {
}

.shop-section2 .area2 ul li {
  padding: 32px 32px 40px 18px;
  border-top: 1px solid #251716;
  display: flex;
  justify-content: space-between;
}

.shop-section2 .area2 ul li:last-child {
  border-bottom: 1px solid #251716;
}

.shop-section2 .area2 ul li .name {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #251716;
}

.shop-section2 .area2 ul li .info {
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #251716;
}

.shop-section2 .area2 .img-flex {
  width: 415px;
  display: flex;
  justify-content: space-between;
}

.shop-section2 .area2 .img-flex img {
  display: block;
  width: 190px;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
}

.shop-section2 .area3 {
  margin-bottom: 0;
}

.shop-section2 .area3 ul {
}

.shop-section2 .area3 ul li {
}

.shop-section2 .area3 ul li {
  padding: 32px 32px 32px 18px;
  border-top: 1px solid #251716;
  display: flex;
  align-items: center;
}

.shop-section2 .area3 ul li:last-child {
  border-bottom: 1px solid #251716;
}

.shop-section2 .area3 ul li .left {
  width: 345px;
}

.shop-section2 .area3 ul li .left p.name {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #251716;
}

.shop-section2 .area3 ul li .left p.info {
  letter-spacing: 0.04em;
  color: #c6a591;
  line-height: 1;
}

.shop-section2 .area3 ul li .center {
  width: 450px;
}

.shop-section2 .area3 ul li .center p {
  line-height: 1;
  color: #251716;
}

/*以上、店舗情報*/

/*以上、faq*/
body.faq-body {
}

main.faq-main {
}

.faq-section1 {
}

.faq-section2 {
  padding-top: 120px;
}

.faq-section2 .faq-list {
}

.faq-section2 .faq-block {
  margin-bottom: 40px;
}

.faq-section2 .question-area {
  position: relative;
  padding: 16px 80px 16px 36px;
  background-color: #c6a591;
  position: relative;
  cursor: pointer;
}

.faq-section2 .question-area::after {
  content: "";
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("../img/faq/faq-open.png");
  background-size: cover;
  background-position: center;
  width: 19px;
  height: 19px;
}

.faq-section2 .question-area.open::after {
  background: url("../img/faq/faq-close.png");
  background-size: cover;
  background-position: center;
  width: 19px;
  height: 1px;
}

.faq-section2 .question-area p {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #000;
}

.faq-section2 .answer-area {
  padding: 48px 36px;
  display: none;
}

.faq-section2 .answer-area p {
  letter-spacing: 0.04em;
  line-height: 30px;
  color: #000;
}

.faq-section2 .answer-area p a {
  position: relative;
  padding-right: 30px;
}

.faq-section2 .answer-area p a::after {
  position: absolute;
  content: "";
  bottom: 2px;
  width: 16px;
  height: 12px;
  margin-left: 12px;
  background-position: center;
  background-size: cover;
  background-image: url("../img/faq/link-icon.png");
}

.faq-section2 .answer-area p a span {
  text-decoration: underline;
  color: #000;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.faq-section2 .faq-block:first-child .answer-area {
  display: block;
}
/*以上、faq*/

/*以下、お問い合わせ*/
body.conatct-body {
}

main.conatct-main {
}

.contact-section1 {
}

.contact-section2 {
  padding-top: 96px;
  padding-bottom: 24px;
}

.contact-section2 .text-block {
  display: flex;
  justify-content: center;
  margin-bottom: 128px;
}

.contact-section2 .text-block p {
  line-height: 1.6;
  color: #000;
}

.contact-section2 .switch-flex {
  display: flex;
  justify-content: space-between;
}

.contact-section2 .switch-flex a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 494px;
  height: 49px;
  background: #4e3c35;
}

.contact-section2 .switch-flex a.active {
  pointer-events: none;
  background: #fff;
}

.contact-section2 .switch-flex a span {
  padding-left: 36px;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
}
.contact-section2 .switch-flex .active span {
  color: #251716;
}

.contact-section2 .switch-flex a span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 13px;
  height: 9px;
  background: url("../img/common/down-arrow-white.png");
  background-position: center;
  background-size: cover;
}
.contact-section2 .switch-flex .active span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 13px;
  height: 9px;
  background: url("../img/common/down-arrow.png");
  background-position: center;
  background-size: cover;
}

.contact-section2 .white-box {
  background-color: #fff;
  padding: 64px 136px 120px;
}

.contact-section2 .contact-box {
}

.contact-section2 .contact-box ::placeholder {
  color: #bfbfbf;
}

.contact-section2 .contact-box .flex1 {
  display: flex;
  margin-bottom: 40px;
}

.contact-section2 .contact-box .flex1 label {
  display: flex;
  margin-bottom: 20px;
  cursor: pointer;
}

.contact-section2 .contact-box .flex1 label input {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 28px;
}

.contact-section2 .contact-box .flex1 label span {
  letter-spacing: 0.14em;
  line-height: 30px;
  margin-top: -8px;
  color: #080808;
  max-width: calc(100% - 46px);
  padding-top: 2px;
}

.contact-section2 .contact-box .flex2 {
  display: flex;
  margin-bottom: 20px;
}

.contact-section2 .contact-box .title {
  width: 268px;
}

.contact-section2 .contact-box .flex2 .title {
  padding-top: 8px;
}

.contact-section2 .contact-box .title p {
  font-weight: bold;
  letter-spacing: 0.14em;
  line-height: 30px;
  color: #080808;
}

.contact-section2 .contact-box .title p span.must {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.14em;
  line-height: 30px;
  color: #c91e1e;
}

.contact-section2 .contact-box .title p span.black {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.14em;
  line-height: 30px;
  color: #080808;
}

.contact-section2 .contact-box .content {
  width: 460px;
}

.contact-section2 .contact-box .content input[type="text"] {
  display: block;
  width: 100%;
  height: 48px;
  border-radius: 2px;
  border: 1px solid #a8a8a8;
  padding: 0 24px;
  color: #080808;
}

.contact-section2 .contact-box .input-flex {
  display: flex;
  justify-content: space-between;
}

.contact-section2 .contact-box .content .input-flex input[type="text"] {
  width: 220px;
}

.contact-section2 .contact-box .adress-flex {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 10px;
}

.contact-section2 .contact-box .adress-flex span {
  margin-right: 16px;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #000;
}

.contact-section2 .contact-box .content .adress-flex input {
  width: 175px;
}

.contact-section2 .contact-box .content textarea {
  width: 100%;
  height: 240px;
  border-radius: 2px;
  border: 1px solid #a8a8a8;
  color: #000;
  line-height: 1.5;
  padding: 16px 24px;
}

.contact-section2 .contact-box .submit-frame {
  position: relative;
  margin-top: 56px;
}

.contact-section2 .contact-box .submit-frame .submit {
  display: block;
  border: none;
  background: none;
  width: 302px;
  margin: auto;
  background: #d9c7bb;
  text-align: center;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #000;
  padding: 16px 0;
  cursor: pointer;
}

.contact-section2 .contact-box .check-text {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.contact-section2 .contact-box .check-text p {
  letter-spacing: 0.14em;
  line-height: 27px;
  color: #080808;
}

.contact-section2 .contact-box .check-text p a {
  letter-spacing: 0.14em;
  line-height: 27px;
  color: #080808;
  text-decoration: underline;
}

.contact-section2 .contact-box .check-flex {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.contact-section2 .contact-box .check-flex label {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section2 .contact-box .check-flex label input {
  width: 20px;
  height: 20px;
  margin-right: 18px;
}

.contact-section2 .contact-box .check-flex label span {
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #000;
}

.contact-section2 .mw_wp_form_confirm .check-text {
  display: none;
}

.contact-section2 .mw_wp_form_confirm .check-flex {
  display: none;
}

.contact-section2 .mw_wp_form_confirm .adress-flex span.mark {
  display: none;
}

.contact-section2 .mw_wp_form_confirm .adress-flex {
  margin-top: -24px;
  padding-left: 0;
}

.contact-section2 .contact-box .mw_wp_form_confirm .flex2 .title {
  padding-top: 0;
}

.contact-section2 .contact-box .mw_wp_form_confirm .content {
  padding-top: 2px;
}

.contact-section2 .contact-box .mw_wp_form_confirm .return {
  position: absolute;
  right: 0;
  top: 12px;
  color: #000;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 1px solid #000;
}

/*以上、お問い合わせ*/

/*以下、お知らせ一覧*/
body.archive-news-body {
}

main.archive-news-main {
}

.archive-news-section1 {
}

.archive-news-section2 {
  padding-top: 88px;
}

.archive-news-section2 h2.title-block {
  text-align: center;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 48px;
  padding: 16px 0;
  background: #c6a591;
}

.archive-news-section2 ul {
  margin-bottom: 48px;
}

.archive-news-section2 ul li {
  padding: 24px 0;
  border-bottom: 1px solid #b4b4b4;
}

.archive-news-section2 ul li:first-child {
  border-top: 1px solid #b4b4b4;
}

.archive-news-section2 ul li a {
  display: flex;
  align-items: center;
}

.archive-news-section2 ul li a .date {
  width: 145px;
  text-align: right;
  padding-right: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #000;
}

.archive-news-section2 ul li a .category {
  width: 85px;
  height: 25px;
  border-radius: 2px;
  background: #c6a591;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 70px;
}

.archive-news-section2 ul li a .category span {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
}

.archive-news-section2 ul li a .title {
  width: 700px;
  letter-spacing: 0.04em;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: underline;
}

.pagenation .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagenation .wp-pagenavi span.current {
  /*現在のページボタン*/
  background: #c6a591;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  font-weight: normal;
  font-size: 18px;
  padding: 8px 12px;
  margin: 0 12px;
}

.pagenation .wp-pagenavi span.dots {
  /*現在のページボタン*/
  color: #aaa;
  margin: 0 12px;
}

.pagenation .wp-pagenavi a.page-numbers {
  /*指定のページ移動ボタン*/
  font-weight: normal;
  font-size: 18px;
  line-height: 1;
  color: #aaa;
  margin: 0 12px;
}

.pagenation .wp-pagenavi a.page-numbers.next {
  margin-left: 24px;
  margin-right: 0;
  width: 10.24px;
  height: 15.5px;
  background-image: url("../img/news/next.png");
  background-position: right;
  background-size: cover;
}

.pagenation .wp-pagenavi a.page-numbers.prev {
  /*next prevボタン*/
  margin-right: 24px;
  margin-left: 0;
  width: 10.24px;
  height: 15.5px;
  background-image: url("../img/news/prev.png");
  background-position: left;
  background-size: cover;
}

/*以上、お知らせ一覧*/

/*以下、お知らせシングル*/

body.single-news-body {
}

main.single-news-main {
}

.single-news-section1 {
}

.single-news-section2 {
  padding-top: 100px;
}

.single-news-section2 .flex {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  padding-left: 130px;
  padding-bottom: 12px;
  border-bottom: 1px solid #b4b4b4;
}

.single-news-section2 .flex .date {
  margin-right: 12px;
  line-height: 1;
  color: #000;
}

.single-news-section2 .flex .category {
  width: 85px;
  height: 25px;
  border-radius: 2px;
  background: #c6a591;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-news-section2 .flex .category span {
  font-weight: normal;
  font-size: 14px;
  color: #000;
}

.single-news-section2 .single-block {
  padding: 0 130px;
}

.single-news-section2 .single-block h2 {
  font-family: "Hiragino Mincho ProN";
  font-weight: normal;
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #000;
  margin-bottom: 32px;
}

.single-news-section2 .single-block p {
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  line-height: 2;
  font-size: 14px;
}

.single-news-section2 .single-block .wp-block-image {
  margin-bottom: 40px;
}

.single-news-section2 .single-block a.return-button {
  display: block;
  width: 204px;
  margin: 88px 0 0 auto;
}

.single-news-section2 .single-block a.return-button img {
  display: block;
  width: 100%;
}

/*以上、お知らせシングル*/

/*以下、工場見学*/

main.factory-main {
}

.factory-section1 {
}

.factory-section2 {
  padding: 56px 0 25px;
  overflow: hidden;
}

.factory-section2 .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.factory-section2 .flex .left {
}

.factory-section2 .flex .left p.p1 {
  margin-bottom: 40px;
}

.factory-section2 .flex .left p.p1 img {
  display: block;
  width: 545px;
}

.factory-section2 .flex .left p.p2 {
  padding-left: 16px;
  letter-spacing: 0.04em;
}

.factory-section2 .flex .right {
  width: 392px;
}

.factory-section2 .flex .right img {
  width: 100%;
  /* border-radius:50%; */
}

.factory-section2 .step-list {
}

.factory-section2 .step-block {
  position: relative;
  padding-bottom: 75px;
}

.factory-section2 .step-block .step-num {
  position: absolute;
  left: 38px;
  bottom: 185px;
  width: 51px;
}

.factory-section2 .step-block .border {
  width: 1px;
  height: 150px;
  background: #251716;
  position: absolute;
  bottom: 0;
  left: 64px;
}

.factory-section2 .step-block .bg-area {
  position: relative;
  padding: 56px 0;
}

.factory-section2 .step-block .bg-area::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 110vw;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}

.factory-section2 .step-block:nth-child(odd) .bg-area::before {
  background-color: #c6a591;
}

.factory-section2 .step-block:nth-child(even) .bg-area::before {
  background-color: #fff;
}

.factory-section2 .step-block .step-flex {
  display: flex;
  justify-content: space-between;
}

.factory-section2 .step-block .text-area {
  width: 50%;
  padding: 20px 36px 0 154px;
  height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.factory-section2 .step-block .text-area .title {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.factory-section2 .step-block .text-area .sub {
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 300;
}

.factory-section2 .step-block .text-area .info {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.factory-section2 .step-block .text-area .info.pb {
  padding-bottom: 32px;
}

.factory-section2 .step-block .movie-area {
  width: 50%;
  display: flex;
  justify-content: center;
}

.factory-section2 .step-block .thumb {
  position: relative;
  width: 425px;
  height: 235px;
}

.factory-section2 .step-block .thumb .play-hide {
  transition-duration: 0.8s;
}

.factory-section2 .step-block .thumb img.play-hide.vanish {
  opacity: 0;
  pointer-events: none;
}

.factory-section2 .step-block .thumb img.step-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.factory-section2 .step-block .thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-section2 .step-block .play-start {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
}

.factory-section2 .step-block .play-start span {
  transition-duration: 0.8s;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #fff;
}

.factory-section2 .step-block .play-start:hover {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background-color: rgba(255, 255, 255, 0.75);
}

.factory-section2 .step-block .play-start:hover span {
  border-color: transparent transparent transparent #281616;
}

.factory-section2 .step-block .play-start.vanish {
  opacity: 0;
  pointer-events: none;
}

.factory-section3 {
  position: relative;
  height: 70vw;
}

.factory-section3 p.p1 {
}

.factory-online-banner {
  margin-top: 68px;
  transition: 0.5s;
}

.factory-online-banner:hover {
  opacity: 0.8;
}

.factory-section3 p.p1 img {
  width: 645px;
  margin: 0 auto;
}

.factory-section3 img.factory2 {
  width: 54%;
  margin-top: 300px;
}

.factory-section3 img.factory3 {
  position: absolute;
  top: 16px;
  right: 0;
  z-index: 10;
  width: 36%;
  margin-top: 550px;
}

.annotation {
  font-size: 14px;
}

/*以上、工場見学*/

/*以下、デフォルト固定*/
main.def-main {
  padding-top: 160px;
  padding-bottom: 80px;
}

.def-section1 {
}

.def-section1 h1 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

.def-section1 h2 {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6",
    "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #000;
  margin: 24px 0;
}

.def-section1 p {
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 8px;
}

.def-section1 ul li {
  list-style: inside;
  line-height: 1.5;
}

/*以上、デフォルト固定*/

/*以下、 カタログページ*/
.catalog-section .desc {
  width: 781px;
  max-width: 100%;
  margin: 0 auto;
  line-height: 40px;
  font-size: 18px;
}
.catalog-section {
  padding-top: 200px;
}
.catalog-section .flex {
  display: flex;
  justify-content: space-around;
}
.catalog-body {
  margin-top: 60px;
  margin-bottom: 120px;
}
.catalog-name {
  margin-top: 23px;
  text-align: center;
  font-size: 18px;
}
.catalog-link {
  margin-top: 23px;
  display: flex;
  justify-content: center;
  background-color: #fff;
  align-items: center;
  width: 300px;
  max-width: 100%;
  text-align: center;
  position: relative;
}
.catalog-link img {
  margin-right: 14px;
}
.catalog-link a {
  font-size: 18px;
  padding: 20px 0;
  display: block;
  color: #251716;
}

.catalog-link-comingsoon {
  margin-top: 23px;
  justify-content: center;
  background-color: #dedddd;
  align-items: center;
  width: 300px;
  text-align: center;
  font-size: 18px;
  padding: 20px 0;
  display: block;
  color: #251716;
  letter-spacing: 0.1rem;
}

.catalog-link a:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}
.catalog-section .return-button {
  margin: 130px auto 0;
  display: block;
}
.catalog-section .return-button img {
  margin: 0 auto;
}
/*以上、 カタログページ*/

.p-product__block a {
  pointer-events: none;
}
