@charset "utf-8";

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}


/*===================================================
	1-1. Font (Yahoo UI Library Fonts CSS)
===================================================*/

body {
	font-size: 12px;
	font-size: small;
	font: x-small;
	font-family: "Noto Sans JP", sans-serif;
}

table {
	font-size: inherit;
}

select, 
input, 
textarea {
	font: 99% arial,helvetica,clean,sans-serif;
}

pre, 
code {
	font: 115% monospace;
	font-size: 100%;
}
a {
	text-decoration:none;
}

/*===================================================
					共通CSS
===================================================*/

#ccBOx {
	width: 100%;
/*	background-color: #d0cece;*/
	padding-top: 140px;
	padding-bottom: 5%;
	text-align: center;
	align-items: center;
}

@media screen and (max-width: 980px) {
#ccBOx {
	width: 100%;
	padding-top: 0px;
	padding-bottom: 5%;
}
}

@import url("https://p.typekit.net/p.css?s=1&k=izc7peq&ht=tk&f=60838&a=87929704&app=typekit&e=css");

@font-face {
font-family:"century-gothic-std";
src:url("https://use.typekit.net/af/d3f1b9/0000000000000000773f3cf0/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/d3f1b9/0000000000000000773f3cf0/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/d3f1b9/0000000000000000773f3cf0/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
font-display:auto;font-style:normal;font-weight:700;font-stretch:normal;
}

/*===================================================
					オリジナル CSS
===================================================*/

/*要素を全画面に広げる*/
:root {

  --vw: 1vw;

}

/*要素を全画面に広げる*/
.MAINLP {
              position:relative;
              width: calc( var(--vw) * 100 );
              left:50%;
              transform: translate(-50%, 0%);
              -webkit-transform: translate(-50%, 0%);
              -ms-transform: translate(-50%, 0%);
              overflow: hidden;
              background-color:#fff;
              font-family: "eb-garamond", "Noto Sans JP", sans-serif;
}

/*スクロール時にフェードイン*/
.scroll-block {
    transform: translateY(100px);
    transition: all 1.5s;
    opacity: 0;
    margin-bottom: 1%;
    
}
.blockIn {
    transform: translateY(0px);
    opacity: 1;
}
.main-area {
  width: 90%;
  margin: 5% auto;
}
.mainbanner {
  width: 70%;
  margin: 0 auto 5% auto;
}
.mainbanner img{
    width:100% ;
    margin:0 auto ;
}
@media screen and (max-width: 980px) {
  .mainbanner {
  width: 100%;
  }
}
.concept-title {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto 2% auto;
}
.concept-title h1 {
  color: #000;
  font-size: 2rem;
  font-weight: 600;
  font-family: "eb-garamond","yu-gothic-pr6n", sans-serif;
}
.concept-title-sp {
  display: none;
}
@media screen and (max-width: 980px) {
  .concept-title{
    display: none;
  }
  .concept-title-sp {
    display: flex;
  }
  .concept-title-sp {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto 5% auto;
}
.concept-title-sp h1 {
  color: #000;
  font-size: 1.7rem;
  font-weight: 600;
  font-family: "eb-garamond", sans-serif;
  line-height: 2.5rem;
}
}

.concept-txt {
  width: 84%;
  display: flex;
  justify-content: center;
  margin: 0 8% 5% 8%;
}
.concept-txt span {
  color: #000;
  line-height: 160%;
  font-family: sans-serif;
}
@media screen and (max-width: 980px) {

.concept-txt {
  justify-content: initial;
  text-align: justify;
}
}
.contents-box {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding : 0 5%;
    margin: 0 auto 5% auto;
}

.contents-box .picture-area {
    flex: 1;
    min-width: 0; /* flexアイテムの縮みによる崩れを防ぐ */
    display: flex;
}

.contents-box .text-area {
    flex: 2;
    min-width: 0;
    display: flex;
}
.contents-title {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10% auto 2% auto;
}

.contents-title h1 {
  color: #000;
  font-size: 120%;
  letter-spacing: 1px;
  border: 1px solid #000;
  padding: 1% 7% ;
  font-family: "eb-garamond", sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 980px) {
  .contents-title h1{
    padding: 3% 7%;
    font-size: 1.3rem;
  }
}

.contents-box .picture-area {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.contents-box .picture-area img {
    width: 100%;
    display: block;
}

.text-area {
    width: 60%;
    display: block !important;
    justify-content: center;
    margin: auto;
    padding-left: 2%;

}
.text-area span {
    color: #000;
    font-family: sans-serif;
    line-height: 200%;
}

.text-area h1 {
    color: #000;
    font-family: sans-serif;
    line-height: 200%;
    font-size: 120%;
    font-weight: 600;
}

.osusume-item {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);/*要素を画面2分割で横に並べる*/
  column-gap: 5%;
  align-items: center;
  margin: 0 auto 3% auto;
}

.osusume-item .picture-area {
    display: block;
}

.osusume-item .picture-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width: 980px) {
  .osusume-item{
    width: 90%;
    display: block;
  }
  .osusume-item .picture-area {
    margin: 2%;
  }
}

.osusume-item-shousai {
    width: 100%;
    display: block;
}

.osusume-item-shousai .price .hira {
  color: #000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 130%;
  letter-spacing: 2px;
  font-weight: 600;
}

.osusume-item-shousai .text {
    width: 65%;
    display: flex;
    justify-content: center;
    margin: 0 auto 2% auto;
}

.osusume-item-shousai .text span {
  color: #000;
  font-family: sans-serif;
  line-height: 2.2rem;
}

@media screen and (max-width: 980px) {
  .osusume-item-shousai .text {
    width: 85%;
    text-align: justify;
  }
}

.itemWide_2 {
  width: 70%;
  column-gap: 5%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);/*要素を画面2分割で横に並べる*/
  margin: 0 auto 3% auto;
  justify-items: center; 
}
.itemWide_2 .itemBox {
      display: block;
      width: 90%;
}
.itemWide_2 .itemBox img {
  margin: auto;
    width: 100%;
    height: 100%;
}
.itemWide_2 .textBox {
      width: 60%;
    display: block !important;
    margin: 7% auto;
    text-align: center;
}
.itemWide_2 .textBox span {
    color: #000;
    font-family: sans-serif;
    line-height: 200%;
}
.itemWide_2 .linkBtn {
  background-color: #fff;
	padding: 3% 5%;
	background-color: #842631;
	width: 40%;
	margin: 0 auto 5% auto;
	font-weight: 400;
	font-size: 120%;
  text-align: center;
}
.itemWide_2 .linkBtn a {
	color: #fff;
	text-decoration: none;
}
.itemWide_2 .linkBtn:hover {
	background-color: #842631;
}
.itemWide_2 .linkBtn:hover a {
	color: #c4c2c2;
}
@media screen and (max-width: 980px) {
  .itemWide_2 {
    width: 95%;
    column-gap: 3%;
    margin: 0 auto 10% auto;
  }
  .itemWide_2 .textBox {
    width: 90%;
  }
  .itemWide_2 .textBox span {
    font-size: 1.2rem;
  }
  .itemWide_2 .linkBtn {
    width: 90%;
    font-size: 0.9rem;
    padding: 5%;
  }

}



/*===================================================
				商品一覧挿入時
===================================================*/

.item-card {
  width: 90%;
  margin: 0 5% 5% 5%;
  text-align: center;
  position: relative;
}

/*===================================================
					Footer CSS
===================================================*/
.copy {
	width: 100%;
	background-color: #153e35;
	position: absolute;
}
.copy .c_text {
	color: #ffffff;
	padding: 1%;
	text-align: center;
}
/*===================================================
			戻るボタン　CSS
===================================================*/

html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 1;               /* 初期状態は非表示 */
    transform: translateY(10px); /* お好みで、少し下から出てくる演出 */
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease;
}

.pagetop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pagetop:hover {
  background-color: #fff;
  transform: translateY(-5px); /* ホバー時に少し持ち上げる */
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}
/*===================================================
スマホ表示用調整
===================================================*/