@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;

}

/*要素を全画面に広げる*/
.hongawa-shoulderLP {

              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;

}

/*スクロール時にフェードイン*/
.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 ;
}

.mainbanner span {
    color: #000;
}

.concept-title {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto 2% auto;
}

.concept-title h1 {
  color: #000;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 130%;
  font-weight: 700;
  letter-spacing: 2px;
}

.concept-txt {
  width: 84%;
  display: flex;
  justify-content: center;
  margin: 0 8% 5% 8%;
}

.concept-txt span {
  color: #000;
  font-family: 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 1px;
  line-height: 160%;
}

.mokuji {
    width: 40%;
    display: flex;
    justify-content: center;
    margin: 0 30% 5% 30%;
    text-align: left;
    border: 1px solid #000;
}

.mokuji ul {
    color: #000;
    font-size: 100%;
    list-style: none;
    padding: 0; /*ブラウザではリストの・を消去しても左側に空白が残るのでこの指示が必要*/
    line-height: 330%;
    margin: 5%;
}

.mokuji li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.mokuji li a:link,
.mokuji li a:visited,
.mokuji li a:active {
  color: #000;
}

.mokuji li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.mokuji li a:hover::after {
  transform: scaleX(1);
}

.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: 0 auto 5% auto;
}

.contents-title h1 {
  color: #000;
  font-family: sans-serif;
  font-size: 120%;
  letter-spacing: 1px;
  border: 1px solid #000;
  padding: 1% 7% ;
}

.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: 70%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);/*要素を画面2分割で横に並べる*/
  column-gap: 5%;
  align-items: center;
  margin: 0 auto 5% auto;
}

.osusume-item .picture-area {
    display: block;
}

.osusume-item .picture-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.osusume-item-shousai {
    width: 100%;
    display: block;
}

.osusume-item-shousai .price {
  width: 100%;
  display: block;
  justify-content: center;
  text-align: center;
  margin: 0 auto 2% auto;
}

.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 .price .num {
  color: #000;
  font-family: "century-gothic-std",sans-serif;
  font-size: 130%;
  letter-spacing: 2px;
  font-weight: 400;
}


.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: 160%;
}

.linkBtn {
	background-color: #1c2743;
	padding: 1%;
	color: #fff;
	width: 18%;
	margin: 0 auto 5% auto;
    text-align: center;
}
.linkBtn a {
	color: #FFFFFF;
	text-decoration: none;
}
.linkBtn:hover {
	color: #275D9C;
	background-color: #7AABC7;
}

.contents-title2 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.contents-title2 h1 {
  color: #000;
  font-family: sans-serif;
  font-size: 120%;
  letter-spacing: 1px;
  border: 1px solid #000;
  padding: 1% 7% ;
}

/*===================================================
				商品一覧挿入時
===================================================*/

.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 #1c2743;
    color: #1c2743;
    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: #6b9bb8;
  transform: translateY(-5px); /* ホバー時に少し持ち上げる */
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #1c2743;
    border-right: 3px solid #1c2743;
    transform: translateY(20%) rotate(-45deg);
}
/*===================================================
スマホ表示用調整
===================================================*/

@media screen and (max-width: 980px) {

.scroll-block {
  margin-bottom: 5%;
}

.mainbanner {
  width: 100%;
  margin: 0 auto 5% auto;
}

.mainbanner img{
    width:100% ;
    margin:0 auto ;
}

.mainbanner span {
    color: #000;
}

.concept-title {
  width: 90%;
  display: flex;
  justify-content: center;
  margin: 0 auto 2% auto;

}

.concept-title h1 {
  color: #000;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 110%;
  font-weight: 700;
  	word-break: keep-all;
	overflow-wrap: break-word; 
}

.concept-txt {
  width: 90%;
  display: flex;
  justify-content: center;
  margin: 0 5% 5% 5%;
}

.concept-txt span {
  color: #000;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 1px;
  line-height: 160%;
}

.mokuji {
    width: 94%;
    display: flex;
    justify-content: center;
    margin: 2% 3% 7% 3%;
    text-align: left;
    border: 1px solid #000;
}

.mokuji ul {
    color: #000;
    font-size: 75%;
    list-style: none;
    padding: 0; /*ブラウザではリストの・を消去しても左側に空白が残るのでこの指示が必要*/
    line-height: 220%;
    margin: 5%;
}

.mokuji li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.mokuji li a:link,
.mokuji li a:visited,
.mokuji li a:active {
  color: #000;
}

.mokuji li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.mokuji li a:hover::after {
  transform: scaleX(1);
}

.contents-box {
    display: block;
    justify-content: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding : 0 5%;
    margin: 0 auto 5% auto;
}

.contents-box .picture-area {
    flex: initial;
    min-width: initial; /* flexアイテムの縮みによる崩れを防ぐ */
    display: initial;
}

.contents-box .text-area {
    flex: initial;
    min-width: initial;
    display: initial;
}


.contents-title {
  width: 100%;
  text-align: center;
  margin: 0 auto 5% auto;
}

.contents-title h1 {
  color: #000;
  font-family: sans-serif;
  font-size: 110%;
  letter-spacing: 1px;
  border: 1px solid #000;
  padding: 1% 7% ;
  	word-break: keep-all;
	overflow-wrap: break-word; 
}

.contents-box .picture-area {
    width: 90%;
    box-sizing: border-box;
}

.contents-box .picture-area img {
    width: 100%;
    display: block;
     margin: 0 auto 5% auto;
}

.text-area {
    width: 95%;
    display: block !important;
    justify-content: center;
    margin: auto;
    padding-left: 0;

}
.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: 95%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);/*要素を画面2分割で横に並べる*/
  column-gap: 3%;
  align-items: center;
  margin: 0 auto 5% auto;
}

.osusume-item .picture-area {
    display: block;
}

.osusume-item .picture-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.osusume-item-shousai {
    width: 100%;
    display: block;
}

.osusume-item-shousai .price {
  width: 100%;
  display: block;
  justify-content: center;
  text-align: center;
  margin: 0 auto 4% auto;
}

.osusume-item-shousai .price .hira {
  color: #000;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 110%;
  letter-spacing: 1px;
  font-weight: 600;
}

.osusume-item-shousai .price .num {
  color: #000;
  font-family: "century-gothic-std",sans-serif;
  font-size: 110%;
  letter-spacing: 1px;
  font-weight: 400;
}


.osusume-item-shousai .text {
    width: 90%;
    display: flex;
    justify-content: center;
    margin: 0 auto 6% auto;
}

.osusume-item-shousai .text span {
  color: #000;
  font-family: sans-serif;
  line-height: 160%;
}

.linkBtn {
	background-color: #1c2743;
	padding: 1%;
	color: #fff;
	width: 55%;
	margin: 0 auto 10% auto;
    text-align: center;
}
.linkBtn a {
	color: #FFFFFF;
	text-decoration: none;
}
.linkBtn:hover {
	color: #275D9C;
	background-color: #7AABC7;
}

.contents-title2 {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.contents-title2 h1 {
  color: #000;
  font-family: sans-serif;
  font-size: 100%;
  letter-spacing: 1px;
  border: 1px solid #000;
  padding: 1% 7% ;
}

.rte a {
  text-decoration: initial;
}

}