/****==================================================
----------------------------------
title
----------------------------------

HELAS-LP

----------------------------------
Color
----------------------------------

background: #EFEBE9
main: #66BB6A
text: #263238
sub: #FFA000
shadow: #EBE6E4

----------------------------------
font
----------------------------------
Noto Sans JP　（400,700）
==================================================****/

:root {
	--color-main: #66BB6A;
	--color-sub: #FFA000;
	--color-text: #263238;
	--color-shadow: #EBE6E4;
}

html {
	font-size: 62.5%;
}

body {
	background: #EFEBE9;
	color: var(--color-text);
	font-size: 1.4rem;
	line-height: 2;
	font-weight: 700;
	font-family: 'Noto Sans Jp', sans-serif;
	min-width: 1200px;
}

.wrapper {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}

.pc-title,
.title {
	font-size: 3rem;
	color: var(--color-main);
	margin-bottom: 40px;
}

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

.sm-title,
.sm-image {
	display: none;
}

.small-text {
	font-size: 75%;
	padding: 0 0.4em;
}

.pc-text {
	display: block;
}

/****======================================
*
* header ヘッダー
*
======================================****/

/***----------------
nav
-----------------------------***/

.g-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 45px;
	position: absolute;
	right: 10px;
	padding-top: 40px;
	color: var(--color-main);
}

.menu-area {
	width: 100%;
	height: 100%;
	position: relative;
}

.menu-btn {
	display: block;
	position: relative;
	width: 100%;
	height: 31px;
}

/* 閉じるボタン */
/*×に変化*/
.menu-btn span {
	display: inline-block;
	transition: all .4s;
	/*アニメーションの設定*/
	position: absolute;
	left: 50%;
	margin-left: -18px;
	height: 3px;
	border-radius: 2px;
	background: var(--color-main);
	width: 36px;
}

.menu-btn span:nth-of-type(1) {
	top: 0;
}

.menu-btn span:nth-of-type(2) {
	top: 14px;
}

.menu-btn span:nth-of-type(3) {
	top: 28px;
}

.menu-btn.active span:nth-of-type(1) {
	top: 18px;
	left: 22px;
	transform: translateY(6px) rotate(-45deg);
	width: 80%;
}

.menu-btn.active span:nth-of-type(2) {
	opacity: 0;
}

.menu-btn.active span:nth-of-type(3) {
	top: 30px;
	left: 22px;
	transform: translateY(-6px) rotate(45deg);
	width: 80%;
}

.menu-text {
	writing-mode: vertical-rl;
	margin-top: 40px;
	font-size: 1.6rem;
	font-weight: 400;
}

.close-text,
#g-nav.panelactive .open-text {
	display: none;
}

#g-nav.panelactive .close-text,
.open-text {
	display: block;
	margin-right: -5px;
}

/***----------------
ハンバーガーメニューの中身
-----------------------------***/

#g-nav {
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position: fixed;
	/*ナビのスタート位置と形状*/
	top: 0;
	left: -250px;
	width: 345px;
	height: 100vh;
	/*ナビの高さ*/
	/*動き*/
	transition: all 0.6s;
	color: var(--color-main);
}

#g-nav.panelactive {
	left: 0;
	background: rgba(239, 235, 233, 0.9);
	transition: all 0.5s;
}

.menu-list {
	/*ナビゲーション天地中央揃え*/
	position: absolute;
	top: 100px;
	left: 45px;
}

.menu-list li:not(:last-of-type) {
	margin-bottom: 20px;
}

.menu-list a {
	display: inline-block;
}

.menu-list li.menu-logo {
	margin-bottom: 30px;
}

.menu-logo img {
	width: 120px;
}


/***----------------
.contact-btn 導入について
-----------------------------***/

.contact-btn {
	display: block;
	width: auto;
	padding: 25px 30px;
	position: fixed;
	left: 45px;
	bottom: 40px;
	background: rgba(102, 187, 106, 0.8);
	color: #FFF;
	text-align: center;
	border-radius: 15px;
}

.menu-contact .contact-btn {
	position: absolute;
	opacity: 0;
}

#g-nav.panelactive .menu-contact .contact-btn {
	display: block;
	opacity: 1;
}

/****======================================
*
* main メイン
*
======================================****/

/***----------------
.main-view メインビュー
-----------------------------***/

.main-view {
	width: 100%;
	position: relative;
	height: 100%;
}

.shinmai-logo {
	width: 80px;
	position: absolute;
	right: 0;
	top: 50px;
}

.shinmai-logo img {
	width: 80px;
	height: 160px;
}

.main-image {
	position: relative;
	padding-top: 120px;
}

/***----------------
.helas-logo
-----------------------------***/
.helas-logo {
	display: inline-block;
	color: var(--color-main);
	text-align: center;
	position: relative;
	top: 0;
	left: 120px;
	font-size: 1.6rem;
}

.logo-catch {
	display: block;
}

.logo-img {
	width: 200px;
	margin-top: 25px;
}

.desc {
	margin-top: 35px;
	font-size: 1.4rem;
}

.main-img01 {
	position: relative;
	display: block;
	width: 530px;
	top: 5px;
	left: 100px;
}

.main-img02 {
	width: 490px;
	position: absolute;
	top: 85px;
	right: 80px;
}

/***----------------
.recruiting 募集案内
-----------------------------***/

.recruiting {
	margin-top: 60px;
}

.recruiting .wrapper {
	padding: 0 100px;
}

.recruiting .title {
	margin-bottom: 10px;
}

.marche img {
	display: block;
	margin: 0 auto;
	width: 300px;
}

.main-contact-btn {
	text-align: center;
}

.main-contact-btn a {
	display: inline-block;
	width: auto;
	margin: 40px auto 0;
	padding: 25px 50px;
	background: rgba(102, 187, 106, 0.8);
	color: #FFF;
	font-size: 1.6rem;
	text-align: center;
	border-radius: 15px;
}

.app_store_list li{ 
	float: left;
}

.app_store_list li a img{
	width: 260px;
	height: auto;
}
/***----------------
.news お知らせ
-----------------------------***/
.news {
	margin-top: 140px;
	font-size: 2rem;
}

.news-box li {
	position: relative;
	margin-bottom: 20px;
	background: var(--color-shadow);
	border-radius: 15px;
}

.news-list {
	display: flex;
	align-items: center;
	padding: 30px 40px;
}


.time {
	color: var(--color-main);
	margin-right: 20px;
	font-size: 1.6rem;
}

.news-more {
	display: block;
	color: var(--color-main);
	text-align: right;
	margin-top: 10px;
}

/***----------------
.about HELASって何
-----------------------------***/

#about {
	margin-top: 100px;
}

#about figure img {
	width: 550px;
}

#about .text {
	width: 510px;
	padding-top: 20px;
}

.text p:not(:last-of-type) {
	margin-bottom: 40px;
}

#about picture {
	display: block;
	margin-top: 50px;
}

#about picture img {
	width: 1100px;
}

.note {
	width: 1000px;
	margin: 30px auto 0;
}

/***----------------
#user-merit 購入者のメリット
-----------------------------***/
#user-merit {
	margin-top: 150px;
}

.merit-img img {
	width: 520px;
}

.content-box {
	width: 520px;
	background: var(--color-shadow);
	padding: 40px;
	border-radius: 25px;
}

.content-box:first-of-type {
	margin-bottom: 40px;
}

.subtitle {
	font-size: 22px;
	color: var(--color-sub);
	margin-bottom: 20px;
}

/***----------------
#shop-merit 購入者のメリット
-----------------------------***/

#shop-merit {
	margin-top: 150px;
}

/***----------------
#howto アプリの使い方
-----------------------------***/
#howto {
	margin-top: 150px;
}

#howto .title {
	margin-bottom: 10px;
}

.caption {
	color: #BCAAA4;
	font-size: 1.4rem;
	margin-bottom: 60px;
}

/* メインビジュアル下のキャプション */

.top-caption {
	margin: 30px 0 0 120px;
}

.step-box {
	position: relative;
	padding-bottom: 230px;
}

.step-box:not(:first-of-type) {
	margin-top: 80px;
}

.step-title {
	width: 560px;
	font-size: 2.4rem;
	margin: 0 0 20px 20px;
	padding-top: 20px;
}

.step-no {
	color: var(--color-sub);
	margin-right: 30px;
}

.detail {
	width: 100%;
	background: var(--color-shadow);
	padding: 40px 60px;
	border-radius: 30px;
}

.detail p {
	width: 460px;
}

.app-image {
	position: absolute;
	right: 0;
	top: -40px;
}

.app-image img {
	width: 550px;
}

.inline-flex {
	display: inline-flex;
}

.second {
	margin-left: auto;
}

.step2 .app-image {
	left: 0;
}

/***----------------
#food-loss 食品ロスについて
-----------------------------***/

#food-loss {
	margin-top: 150px;
}

#food-loss p .small-text {
	font-size: 90%;
}

.loss-text {
	width: 520px;
}

.image img {
	width: 520px;
}

.data {
	display: block;
	margin: 120px auto 0;
	text-align: center;
}

.data img {
	width: 100%;
}

/***---
ロスをみえる化
--------------------------***/

.loss-title {
	margin-top: 100px;
}

.loss-img {
	position: relative;
	top: -60px;
}

.loss-img img {
	width: 700px;
}

#food-loss .text-area {
	display: flex;
	flex-direction: column;
	width: 360px;
}

.project-logo {
	margin-top: 30px;
}

.project-logo img {
	width: 100%;
}

/***----------------
#related 連携組織・自治体
-----------------------------***/

#related {
	margin-top: 150px;
}

#related .flex-box {
	align-items: center;
	justify-content: start;
}

.nasc-logo {
	width: 320px;
	margin-right: 40px;
}

.nasc-logo img {
	width: 100%;
}

#related p {
	font-weight: 400;
}



/***----------------
#faq よくある質問
--------------------------***/
#faq {
	margin-top: 150px;
}

.inquiry {
	background: var(--color-shadow);
	margin-bottom: 40px;
	border-radius: 0 30px 30px 30px;
	margin-left: 10px;
	padding: 0 40px 20px 30px;
}

.question {
	position: relative;
	font-size: 1.8rem;
	top: -15px;
	left: -40px;
}

.question::before {
	content: 'Q';
	color: var(--color-sub);
	margin-right: 0.5em;
}

.question::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: var(--color-sub);
	border-radius: 2px;
	position: absolute;
	bottom: -5px;
	left: 40px;
}

.answer {
	padding-left: 10px;
}

.form-link {
	color: var(--color-main);
	border-bottom: 1px solid;
}

.flow-img {
	display: block;
	width: 80%;
	margin: 30px auto;
}

.flow-img img {
	width: 100%;
}

/***----------------
#sponsorship わたしたちもHELASを支援しています
--------------------------***/

#sponsorship {
	margin-top: 150px;
	display: grid;
	justify-content: center;
	align-items: center;
}

.support {
	color: var(--color-main);
	text-align:center;
	font-size: 1.5em;
	position: relative;
	padding-bottom: 10px;
}

.support::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100px;
    height: 2px;
    background: var(--color-sub);
    transform: translateX(-50%);
}

.logos {
	display: flex;
	align-items: center;
	gap: 70px;
	margin-top: 50px;
}

.logos a {
	max-height: 60px;
	width: 240px;
	text-align: center;
}


.logos img {
	max-height: 60px;
	width: auto;
	max-width: 240px;
}

/****======================================
*
* 下層ページ共通
*
======================================****/

.content-wrapper {
	width: 1000px;
	margin: 0 auto;
	position: relative;
}

/***----------------
.content-logo 下層ページのロゴ
-----------------------------***/

.content-logo {
	position: fixed;
	right: 40px;
	top: 40px;
}

.content-logo img {
	width: 90px;
}

/***----------------
.page-title 下層ページのページタイトル
-----------------------------***/

.page-title {
	font-size: 4rem;
	color: var(--color-main);
	margin-top: 80px;
	margin-bottom: 40px;
}

.back-btn {
	display: block;
	width: 420px;
	position: relative;
	padding: 20px 0;
	text-align: center;
	color: var(--color-main);
	font-size: 1.4rem;
	border-radius: 60px;
	border: 6px solid var(--color-shadow);
	margin: 200px auto 0;
	transition: 0.5s;
	overflow: hidden;
}


/****======================================
*
* privacy プライバシーポリシーページ
* scta 特定商取引法に基づく表記ページ
* cancel キャンセルポリシーページ
*
======================================****/

.policy-content {
	font-weight: 400;
}

.policy-item {
	margin-top: 80px;
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: 700;
}

.inner-list {
	margin-left: 2em;
	list-style: disc;
	margin-top: 5px;
}

.policy-link {
	color: var(--color-main);
	margin-top: 1em;
}

.policy-link li {
	margin-bottom: 10px;
}

.policy-link a {
	border-bottom: 1px solid;
}

.contact-item {
	margin-top: 20px;
}

.scta-item {
	margin-top: 40px;
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: 700;
}

.cancel-item {
	margin-top: 40px;
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: 700;
}

.cancel-section {
	margin-top: 80px;
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: 700;
}


/****======================================
*
* footer フッター
*
======================================****/

footer {
	background: var(--color-shadow);
	margin-top: 180px;
	padding: 60px 0;
	color: var(--color-main);
}

footer .flex-box {
	align-items: center;
}

.foot-logo img {
	width: 130px;
}

.foot-nav {
	display: flex;
}

.foot-nav li:not(:first-of-type) {
	margin-left: 30px;
}

.copy {
	margin-top: 180px;
	text-align: center;
}

/****======================================
*
* z-index
*
======================================****/

/* コンタクトボタン */
.contact-btn {
	z-index: 900;
}

/* グローバルナビ全体 */
#g-nav {
	z-index: 500;
}

/* 下層ページロゴ */
.content-logo {
	z-index: 200;
}

/****======================================
*
* ホバー
*
======================================****/

.g-menu:hover {
	cursor: pointer;
}

a:hover {
	opacity: .5;
}

a {
	transition: opacity .5s;
}

.form-link:hover {
	border-bottom: none;
}

.back-btn:hover {
	background: var(--color-shadow);
	opacity: 1;
}

.policy-link a:hover {
	border-bottom: none;
}
