@charset "UTF-8";
/* CSS Document */

/*Font Awesomeの読み込み*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*cssファイルの読み込み*/
@import url("animation.css");


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/*関数*/
:root {

	--primary-color: #83A2A5;			/*テーマカラーブルー*/
	--primary-inverse-color: #fff;		/*primary-colorの対となる色*/

	--secondary-color: #ECE484;			/*サブカラーイエロー*/
	--secondary-inverse-color: #fff;	/*secondary-colorの対となる色*/
	
	--accent-color: #CDBBB9;			/*アクセントカラー紫*/
	--accent-inverse-color: #fff;		/*accent-colorの対となる色*/

	/*余白管理*/
	--content-space: 4rem;
	--content-space2: 2rem;
	
}
/*全体の設定*/
body * {box-sizing: border-box;}
html,body {
	font-size: 16px;
    scroll-behavior: smooth;

}


/*基本*/
body {
	margin: 0;padding:0;
	font-family: "poppins",  "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: none;
	background: #fff;
	color: #83A2A5;	
	line-height: 2;	
	text-align: center;
	overflow-x: hidden;
}
h1 {font-family:  'poppins', 'Noto Sans JP', sans-serif;; 
	font-weight: bold;	
	font-size: 1.5em;}

h2 { font-family: 'Poppins', sans-serif;
  font-weight: 700; 
	letter-spacing: 0.05em;
	font-size: 1.2em;}

h3 {font-family:  'Noto Sans JP', sans-serif; 
	font-weight: 500;	
	font-size: 2em;
	letter-spacing: 0.05em;
	line-height: 1.4em;	
	padding-bottom:  var(--content-space2);
}

h4 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700; 
	letter-spacing: 0.1em;
}

h5 {
	font-family:  'Noto Sans JP', sans-serif; 
	font-weight: 500; 
	font-size: 1.2em;
	letter-spacing: 0.1em;
	color: var(--primary-color)
}

.space_b {	padding-bottom:  var(--content-space);}
.space_t {	padding-top:  var(--content-space);}
.box_80 {	
	width: 80%;
	margin: auto;
	text-align: left;
}
.text_left {text-align: left;}
.text_right {text-align: right;}



/*リンク*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
	text-decoration: none;
}
a:hover {
	filter: brightness(1.1);
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
ul,li {list-style: none;}
table {border-collapse:collapse;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
video {max-width: 100%;}
iframe {width: 100%;}
input {font-size: 1rem;}
section {
	padding: var(--content-space2);	
}

/*PC、スマホの表示だし分け*/
.forpc {
	display: block;
}
.forsp {
	display: none;
}


/*コンテナブロック*/
#container {
	position: relative;
	animation: opa1 1s 1s both;	/*1秒待機し、1秒かけてフェードイン*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
}

/*コンテンツブロック*/
#contents {
	flex: 1;
}


/*ヘッダー*/
header {
	padding: 1rem var(--content-space);		
	color:  var(--primary-inverse-color);	
	position: absolute;
	width: 100%;
	height: fit-content;
	z-index: 2;
}
header a {color: inherit;}

/*ロゴ*/
#logo a {text-decoration: none;}
#logo img {
	display: block;
	margin: auto;
	background-position: center center;
	width: 282px;
}


/*キャッチ部分*/
.catch {
	background:  var(--primary-color);	
	color: var(--secondary-color);
	padding: var(--content-space) 0px;
}
.catch p {
	width: 80%;
	margin: auto;
}

/*特徴*/
.features .list {
    display: grid;
	position: relative;	
	background: none;	
	color: #555;
	border: none;	
	padding: 2rem;	
	margin-bottom: 2rem;
}


.features .list h4 {
	text-align: center;	
	font-size: 1.3rem;	
	margin-bottom: 1rem;	
	color: var(--primary-color);
}

.features .list h4 span {
	display: block;
	font-weight: normal;	
	font-size: 0.7em;
}

.features .list p {
	font-size: 0.85rem;	
	line-height: 1.5;	
	color: var(--primary-color);
	text-align: left;
	width: 80%;
	margin: 0 auto;
}


.features .list figure {
	margin: 0 auto;
	margin-bottom: 1rem;
	border-radius: 30px;		
}
.features .list img {
	border-radius: 30px;		
}

	/*レスポンシブ800px以上*/
	@media screen and (min-width:800px) {

	.features {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}

	}/*レスポンシブここまで*/



/*グッズ*/
.goods .list {
    display: grid;
	justify-content: space-evenly;
	position: relative;	
	background: none;	
	color: #555;
	border: none;	
	padding: 2rem;	
	margin-bottom: 2rem;
}


.goods .list h4 {
	text-align: center;	
	font-size: 1.3rem;	
	margin-bottom: 0.5rem;	
	color: var(--primary-color);
}

.goods .list h4 span {
	display: block;
	font-weight: normal;	
	font-size: 0.7em;
}

.goods .list p {
	font-size: 1rem;	
	line-height: 1.5;	
	color: var(--primary-color);
	text-align: left;
		width: 80%;
	margin: auto;
}


.goods .list figure {
	margin: 0 auto;
	margin-bottom: 1rem;
	border-radius: 5px;		
}
.goods .list img {
	margin: 0 auto;
	margin-bottom: 1rem;
	border-radius: 30px;		
}

	/*レスポンシブ800px以上*/
	@media screen and (min-width:800px) {

	.goods {
		display: grid;
		grid-template-columns: repeat(2, 1fr);	
		gap: 2rem;	
	}

	}/*レスポンシブここまで*/

/*howtoオーダー*/
.h2_title {
	display: flex;
	justify-content: center;
    align-items: center;
	width: 100%;
	background-color:  var(--accent-color);
}
.h2_title h2 {    
	color: #fff;
}

/*オーダー方法*/
.order .list {
    display: grid;
	justify-content: space-evenly;
	position: relative;	
	background: none;	
	color: #555;
	border: none;	
	padding: 2rem;	
	margin-bottom: 2rem;
}


.order .list h4 {
	text-align: center;	
	font-size: 1.3rem;	
	margin-bottom: 0.5rem;	
	color: var(--primary-color);
}

.order .list h4 span {
	display: block;
	font-weight: normal;	
	font-size: 0.7em;
}

.order .list p {
	font-size: 1rem;	
	line-height: 1.5;	
	color: var(--primary-color);
	text-align: left;
		width: 80%;
	margin: auto;
}


.order .list figure {
	margin: 0 auto;
	margin-bottom: 0.3rem;
	border-radius: 5px;	
	width: 70%;	
}
.order.list img {
	margin: 0 auto;
	margin-bottom: 0.2rem;

}

	/*レスポンシブ800px以上*/
	@media screen and (min-width:800px) {

	.order {
		display: grid;
		grid-template-columns: repeat(4, 1fr);	
		gap: 2rem;	
	}
 /* 最後の要素以外に右の線を表示 */
  .order .list:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;

    width: 1px;
    height: 90%;
    background-color:  var(--primary-color);
	  right: -1rem;
  }
	}/*レスポンシブここまで*/



/*フッター*/
.footerbox {
	background-color:  var(--primary-color);	
	color: var(--secondary-color);
	padding: var(--content-space) 0px;
}

.footerbox_inner {
	width: 90%; 
	margin: 0 auto;
}

.footerbox_inner .list {
    display: grid;
	position: relative;	
	background: none;	
	color: #fff;
	border: none;	
	padding: 2rem;	
	margin-bottom: 2rem;
}

.footerbox_inner .list ul li a {
	color: #fff;
}

a:hover {
	opacity: .7;
}

/*ショップボタン*/
.on_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin: 0 auto;
    border-radius: 50vh;
    font-size: 1em;
}

/* aタグをボタン全体に広げる */
.on_button a {
	display: block;              /* ← ブロック要素化 */
    width: 100%;
    padding: .9em 2em;
    text-align: center;
    color: #fff;
    background-color: #cdbbb9;
    text-decoration: none;       /* 下線を消す */
    border-radius: 50vh;         /* liの丸みに合わせる */
	letter-spacing: 0.05em;
	border: 1px solid transparent;
}

/* ホバー時のデザイン */
.on_button a:hover {
    border: 1px solid #cdbbb9;
    background-color: #fff;
    color: #cdbbb9;
    font-weight: 600;
	opacity: 1;
}

/*ページトップへ*/
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #83A2A5;
    border-right: 3px solid #83A2A5;
    transform: translateY(20%) rotate(-45deg);
}


/*font*/
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

@keyframes slideUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/*初期状態*/
.show {
    opacity: 0;
    transform: translateY(40px);
}

/*スクロールで表示*/
.show.current {
    animation: slideUp 0.6s ease-out forwards;
}

/*レスポンシブ800px以上*/
@media (max-width: 800px){
	.forsp {
		display: block;
	}
	.forpc {
		display: none;
	}

	p {
		font-size: 3.4vw;
	}

	h2 {
		font-size: 4.5vw;
	}
	h3 {
		font-size: 4.2vw;
	}
	h4 {
		font-size: 4vw;
	}
	h5 {
		font-size: 3.8vw;
	}

	.features .list,
	.goods .list {
		margin: 0;
		padding: 5vw 7vw;
	}
	.features .list h4 {
		font-size: 4vw;
		margin: 3vw 0 1vw;
	}
	.features .list h4 span {
		font-size: 3.5vw;
	}
	.order .list p,
	.features .list p,
	.goods .list p {
		font-size: 3.2vw;
		margin: 0 auto 3vw;
	}

	.goods {
		margin: 0 0 2rem;
	}

	.about h2,
	.partner h2 {
		margin: 0 0 2vw;
	}

	.about h3,
	.partner h3 {
		margin: 0;
	}

	.order .list h5 {
		margin: 0 0 2vw;
	}

	.footerbox_inner {
		display: block;
		font-size: 4vw;
	}
	.footerbox_inner .list.text_left {
		text-align: center;
	}
	.footerbox_inner .list.text_right {
		display: none;
	}

	.on_button {
		font-size: 3.5vw;
		width: 45vw;
	}
}
