@charset "utf-8";

html {
  letter-spacing: 2px;
  font-weight: 600;
}
body {
  background-color: #EEF3F4;
  font-family: "Kaisei Opti", serif;
}
section {
}
#primary section {
  margin: 0;
  padding: 0;
}
/*-----------------------------------------------
welcart下層ページ用
-----------------------------------------------*/
/* ============== 差し替え用css ============== */
:root {
  /* back-ground-base */
  --child-back-fir: #4E7186;
  --child-back-fir-hov: #2D3049;
  /* 問い合わせ必須back-ground */
  --contact-equired: #e5a34e;
  /* text-shadow 1-1-2 #575757 */
  --textshadow-01: 1px 1px 2px #575757;
  /* text-shadow 2px 2px 3px #000 */
  --textshadow-02: 2px 2px 3px #000;
  /* text-shadow 1-1-2 #fff */
  --textshadow-03: 1px 1px 2px #fff;
}
/* btn */
.flow-btn {
  display: flex;
  justify-content: center;
}
.flow-btn a {
  margin: 0 auto;
}
.c-btn {
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.c-btn {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 60px;
  color: #fff;
  display: block;
  width: 280px;
  text-align: center;
}
.c-btn p {
  margin: 0 auto;
  padding: 22px 60px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.c-btn.slide {
  background: #fff;
  color: #0f0f0f;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 3px #4d4d4d;
}
.c-btn.slide:active {
  box-shadow: none;
}
.c-btn.slide::after {
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-btn.slide:hover {
  color: #fff;
}
.c-btn.slide:hover::after {
  transform: scale(1, 1);
}
/*-----------------------------------------------
header
-----------------------------------------------*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  margin: 0 auto;
}
header .logo {
  margin-left: 2%;
}
header .logo img {
  width: 150px;
  height: auto;
}
header .cart {
}
header .cart a {
  display: flex !important;
  align-items: center;
}
header .cart img{
 height:25px;
 padding-right: 5px;
}
header .cart p {
  font-weight: 600;
}
.child .header {
}
.menu-right {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2%;
}
.menu-right .menu-list {}
.menu-right .menu-list ul {}
.menu-right .menu-list ul li {}
.menu-right .menu-list ul li a {
  margin-right: 20px;
}
/*-----------------------------------------------
footer add
-----------------------------------------------*/
footer {
  background-color: #2D3049;
  color: #fff;
  margin-top: 50px;
}
footer a {
  color: #fff;
}
footer .contents {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0 35px;
}
footer .ft-up {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .ft-box {
}
footer .ft-down {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  align-items: baseline;
}
footer .ft-menu {
  text-align: center;
  font-size: 20px;
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}
footer .ft-menu div:first-child {
}
footer .ft-menu a:last-child{
}
footer .ft-ttl {
}
footer .ft-ttl p {
  text-align: center;
  font-size: 45px;
  letter-spacing: 3px;
}
footer .copy {
  text-align: center;
  padding-bottom: 5px;
}
footer .copy a {
  margin-right: 15px;
}
footer .copy p {
  text-align: center;
}
footer .membership {
  margin-right: 20px;
}
footer .bottom-menu {
  text-align: center;
  padding: 20px 0 5px;
  font-size: 14px;
}
footer .bottom-menu a:first-child {
  margin-right: 25px;
}
.ft-category {
}
.ft-category ul {
  font-size: 16px;
  display: flex;
  justify-content: center;
}
.ft-category ul li {
  margin-right: 25px;
}
.ft-category ul li:last-child {
  margin-right: 0;
}
.ft-category ul li a {}
@media screen and (max-width:650px) {
  footer .ft-up {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  footer .ft-menu {
    justify-content: center;
    font-size: 16px;
    margin: 25px 0;
  }
  footer .ft-ttl p {
    font-size: 30px;
  }
  footer .bottom-menu {
    font-size: 16px;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  footer .copy p {
    text-align: center;
    font-size: 12px;
  }
  footer .bottom-menu a:first-child {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width:820px) {
  footer .ft-down {
    flex-direction: column;
  }
}
/*-----------------------------------------------
section
-----------------------------------------------*/
.sec-title {
  font-size: 34px;
  margin-bottom: 50px;
  font-weight: bold;
  color: #2D3049;
  text-shadow: 1px 1px 1px #515151;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 3px solid #2D3049;
}
.sec-title span {
  font-size: 20px;
  margin-left: 5px;
}
@media screen and (max-width:820px) {
  .sec-title {
    margin-bottom: 25px;
  }
}
/*-----------------------------------------------
btn
-----------------------------------------------*/
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn-border {
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
  -webkit-box-shadow: 4px 4px 0 #000;
  box-shadow: 4px 4px 0 #000;
  display: table;
  margin: 0 auto;
}
a.btn-border:hover {
  -webkit-box-shadow: -4px -4px 0 #000;
  box-shadow: -4px -4px 0 #000;
  background: #fff;
  border: 2px solid #000;
}
/*-----------------------------------------------
top
-----------------------------------------------*/
.top {
  position: relative;
  height: 100vh;
}
.top .img-box {
  position: absolute;
  bottom: 0%;
  right: 0%;
}
.top .img-box img {
  width: 83vw;
}
.top .text-box {
  position: absolute;
  top: 20%;
  left: 5%;
  text-shadow: 2px 2px 2px #fff;
}
.top .text-box h2 {
  font-size: 80px;
}
.top .text-box p {
  font-size: 40px;
  letter-spacing: 25px;
  margin-top: 15px;
}
.top .lead {
  position: absolute;
  bottom: 5%;
  right: 0%;
  color: #000;
  font-size: 25px;
  letter-spacing: 14px;
  text-shadow: 1px 1px 3px #adadad;
  line-height: 1.8;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(255,255,255,0.500437675070028) 100%);
  padding: 10px 20px;
}
/*-----------------------------------------------
slide
-----------------------------------------------*/
.slide01 img {
  width:100%;
  height:auto;
}
.slide01 .slick-slide {
  margin:0 10px;
}
.item-slide {
  padding: 80px 0;
}
.item-slide .slide01 {}
.item-slide .slide01 {}
.item-slide .slide01 .parts{
  position: relative;
  transition: 0.5s ease-in-out;
}
.item-slide .slide01 .parts:hover {
  opacity: 0.8;
}
.item-slide .slide01 .parts img{}
.item-slide .slide01 .parts .sub {
  text-shadow: none;
  color: #373737;
  margin: 10px 0;
}

.item-slide .slide01 li a {
  text-shadow: var(--textshadow-02);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item-slide .slide01 li a .title {
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 500;
  width: 100%;
  text-shadow: none;
  margin-top: 10px;
}
.item-slide .slide01 li a p {
  overflow: hidden;
}
.item-slide .slide01 li .sub {
  line-height: 1.8;
}
.item-slide .slide01 li .itemprice {
  text-align: center;
  font-size: 22px;
  color: #fff;
  text-shadow: var(--textshadow-02);
  padding: 5px 5px 5px 15px;
  background: rgb(45 48 73 / 90%);
}
.item-slide .slide01 .parts .itemprice .tax {
  color: #fff;
  font-weight: 600;
}
.item-slide .slide01 .parts .category-tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 15px;
  background-color: rgb(45 48 73 / 90%);
  color: #fff;
}
.slide01 img {
  width:100%;
  height:auto;
}
/*-----------------------------------------------
recommend
-----------------------------------------------*/
.recommend {
  margin-top: 100px;
}
/*-----------------------------------------------
lineup
-----------------------------------------------*/
.lineup {
  margin-top: 100px;
}
.lineup .contents{}
.lineup .contents .left-box {
  display: flex;
  flex-direction: column;
}
.lineup .contents .left-box img {
  box-shadow: 2px 2px 3px #575757;
}
.lineup .contents .right-box {}
.lineup .contents .right-box .img-box img {
  box-shadow: 2px 2px 3px #575757;
}
.lineup .lineup-btn {
  margin: 50px 0 25px;
}
.lineup .contents .row {
  display: flex;
  align-items: stretch;
}
.lineup .left-box img,
.lineup .right-box .lineup-box {
  height: 100%;
  object-fit: cover;
}
.lineup .right-box .lineup-box {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.lineup .left-box,
.lineup .right-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lineup .right-box .lineup-box .img-box {
  position: relative;
}
.lineup p {
  background: rgb(45,48,73);
  background: linear-gradient(90deg, rgba(45,48,73,1) 0%, rgba(45,48,73,1) 15%, rgba(45,48,73,0.500437675070028) 90%);
  color: #fff;
  padding: 10px 20px;
}
.lineup .ttl {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 22px;
}
.lineup .lead {
  bottom: 0;
  right: 0;
  line-height: 1.8;
  box-shadow: 2px 2px 3px #575757;
  background: rgb(45,48,73);
}
@media (max-width: 540px) {
  .lineup .contents .row {
    flex-direction: column;
  }
  .left-box,
  .right-box {
    height: auto;
  }
  .right-box .img-box {
    grid-template-rows: auto;
  }
  .right-box img {
    width: 100%;
    height: auto;
  }
  .lineup .contents .left-box {
  }
  .lineup .contents .left-box img {
    width: 100%;
  }
  .lineup img {
    aspect-ratio: 16/9;
  }
  .lineup .right-box .lineup-box {
    gap: 0px;
  }
}
/*-----------------------------------------------
flow
-----------------------------------------------*/
.flow {
  margin-top: 100px;
}
.flow .left-box {
  height: 100%;
}
.flow .left-box .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.flow .left-box .text-box .title {
  font-size: 30px;
  margin-bottom: 15px;
}
.flow .left-box .text-box .title span {}
.flow .left-box .text-box p {
  font-size: 18px;
  width: 80%;
  margin: 0 auto;
  line-height: 1.8;
}
.flow .right-box {}
.flow .right-box img{
  box-shadow: 2px 2px 3px #575757;
}
/*-----------------------------------------------
category
-----------------------------------------------*/
.category {
  margin-top: 100px;
}
.category a {
  display: block;
  position: relative;
  width: 100%;
}
.category .cate-box p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  background-color: rgba(195, 195, 195, 0.7);
  text-align: center;
  padding: 10px 0;
  font-size: 20px;
  font-weight: 700;
  /* width: -webkit-max-content; */
}
.category .cate-box img {
  box-shadow: 2px 2px 3px #575757;
}



/*-----------------------------------------------
Responsive
-----------------------------------------------*/
@media screen and (max-width:1400px) {
  /* top */
  .top {
    height: 800px;
  }
  .top .text-box h2 {
    font-size: 50px;
  }
  .top .text-box p {
    font-size: 25px;
    letter-spacing: 10px;
  }
}
@media screen and (max-width:820px) {
  /* top */
  .top .img-box img {
    width: 100%;
    height: 800px;
  }
  .top .text-box {
    text-shadow: 2px 2px 2px #fff;
    background-color: rgb(255 255 255 / 50%);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
  }
  .top .lead {
    font-size: 18px;
    letter-spacing: 3px;
    text-shadow: unset;
    background-color: rgb(0 0 0 / 60%);
    padding: 8px 15px;
    backdrop-filter: blur(2px);
  }
  /* recommend */
  .recommend {
    margin-top: 60px;
  }
  .item-slide {
    padding: 0 0 25px;
  }
  /* lineup */
  .lineup {
    margin-top: 60px;
  }
  /* flow */
  .flow {
    margin-top: 60px;
  }
  /* Category */
  .category {
    margin-top: 30px;
  }
}
@media screen and (max-width:650px) {
  .top {
    height: 100vh;
    aspect-ratio: auto;
  }
  .top .text-box {
    left: 0;
  }
  .top .img-box img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  .top .text-box {
    width: 100%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    top: 17%;
    background-color: unset;
    backdrop-filter: blur(0px);
  }
  .top .text-box h2 {
    font-size: 38px;
  }
  .top .text-box p {
    font-size: 16px;
    letter-spacing: 2px;
    text-orientation: upright;
  }
  .top .lead {
    text-align: center;
    right: 0;
    bottom: 0;
    width: 100%;
  }
  .top .img-box {
    position: relative;
  }
  /* lineup */
  .lineup .contents .left-box img {
  }
  .lineup .lead {
    line-height: 1.5;
    font-size: 16px;
  }
  /* flow */
  .flow .left-box .text-box p {
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .flow .left-box .text-box .title {
    font-size: 25px;
    text-align: left;
    width: 100%;
  }
  /* category */
  .category .cate-box img {
    height: 100px;
    width: 100%;
  }
  .category .cate-box p {
    background-color: rgb(195 195 195 / 35%);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width:420px) {
  .top .text-box {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
  }
}