
body div#wrap{
}

/*common*/
section{
    margin-bottom: 50px;
}
section h1,
section h2,
section h3,
section h4,
section h5{
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #008943;
    margin-bottom: 15px;
}


#logistics h2 {
    font-size: 1.8rem;
}
#logistics h3 {
    font-size: 1.5rem;
}
#logistics h4 {
    font-size: 1.2rem;
}
#logistics h5 {
    font-size: 1.0rem;
}

/*.delivery1*/
div.delivery1{
    margin-bottom: 60px;
}
div.delivery1 dl dt{
    font-size: 150%;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    color: #008943;
    margin-bottom: 10px;
}




/*philosophy*/
section.philosophy h2{
    margin-bottom: 20px;
}
section.philosophy section.philosophy-item{
}

section.philosophy section.philosophy-item h3{
}

/* 全体を囲む親要素の余白など */
section.philosophy {
  padding: 10px 0 80px;
  max-width: 100%;
  margin: 0 auto;
}

/* 3つのセクション共通の横並び設定 */
section.philosophy-item {
  display: flex;
  align-items: flex-start; /* 画像と文章の縦方向中央を揃える */
  justify-content: space-between; /* 両端に広げる */
  margin-bottom: 50px; /* セクション同士の間隔 */
}

/* 画像と文章の横幅（合計で100%未満になるように調整） */
section.philosophy-item .philosophy-img {
  width: 42%;
}
section.philosophy-item .philosophy-img img {
  width: 100%;
  height: auto;
  display: block;
}

section.philosophy-item .philosophy-txt {
  width: 55%;
}

/* 左右を反転させる */
section.philosophy-item:nth-of-type(even) {
  flex-direction: row-reverse;
}




/*flow*/
#flow{
  padding-top: 130px;
  margin-top: -130px;
}
section.flow h2{
    text-align: center;
    margin-bottom: 50px;
}
section.flow div.flow-img {
  text-align: center;
}

section.flow div.flow-img img {
  max-width: 100%;
  height: auto;
}

/*process*/
section.process h3{
}
section.process h3 span{
	font-size: 150%;
	margin-right: 10px;
}


section.process {
  padding: 10px 0 0;
  max-width: 100%;
  margin: 0 auto;
}

/* 3つのセクション共通の横並び設定 */
section.process .process-item {
  display: flex;
  align-items: flex-start; /* 画像と文章の縦方向中央を揃える */
  justify-content: space-between; /* 両端に広げる */
  margin-bottom: 50px; /* セクション同士の間隔 */
}

/* 画像と文章の横幅（合計で100%未満になるように調整） */
section.process .process-img {
  width: 42%;
}
section.process .process-img img {
  width: 100%;
  height: auto;
  display: block;
}

section.process .process-txt {
  width: 55%;
  margin-top: -0.5em;
}

/* 左右を反転させる */
section.process-item:nth-of-type(even) {
  flex-direction: row-reverse;
}



	/*order*/
	/* 左右を反転させる */
	section.process-item:nth-of-type(1) {
		margin-bottom: 20px;
	}
	article{
		margin-bottom: 50px;
	}
	.order {
		border: #EEE 10px solid;
		padding: 3%;
		width: 80%;
		margin: 0 auto;
	}
	.order ul {
	}
	.order ul li {
		float: left;
		width: 50%;
	}
	.order ul li:nth-child(1) {
		margin-bottom: 20px;
	}
	.order ul li:nth-child(2) {
		margin-bottom: 20px;
	}
	.order ul li:nth-child(3) {
		clear: both;
		float: none;
		width: 100%;
	}
	.order ul li dl {
		display: table;
	}
	.order ul li dt {
		display: table-cell;
		vertical-align: middle;
		padding-right: 10px;
	}
	.order ul li dd {
		display: table-cell;
		vertical-align: middle;
		line-height: 170%;
		font-size: 80%;
	}
	.order ul li dd span {
		display: block;
		color: #00853F;
		font-size: 200%;
		font-family: "europa",sans-serif;
		font-weight: 600;
	}
	.order ul li dd strong {
		display: block;
		color: #00853F;
		font-size: 200%;
		font-family: "europa",sans-serif;
		padding-right: 10px;
		font-weight: 600;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	.order ul li dd p {
		margin: 0;
	}
	.order ul li dd p a {
		display: inline-block;
		background: url(../images/common/pdf.png) no-repeat;
		background-size: 30px auto;
		background-position: left 2px center;
		background-color: #00853F;
		color: #fff;
		font-size: 90%;
		line-height: 100%;
		padding: 5px 10px 5px 40px;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
	}


.buttons {
  display: flex;          /* これでpタグ（ボタン）が横に並びます */
  justify-content: center;/* 中央寄せ（左詰めにしたい場合は削除） */
  gap: 50px;              /* ボタンとボタンの間の隙間 */
}

.button {
  margin: 0;
  padding: 0;
  flex: 1;           /* 2つのpタグの幅を均等に広げる */
  display: flex;
  justify-content: center; 
}

.button .btn{
  width: 100%;       /* これでpタグの領域いっぱいにボタンが広がります */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  text-align: center;
  transition: background-color .3s, color .3s, border-color .3s;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 5px;
  letter-spacing: 0.2em;
}

.button .btn span {
  display: flex;
  align-items: center;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.button .btn.btn-green{
    background-color: #008943;
}
.btn-orange{
    background-color: #f09813;
}
.btn-yellow{
    background-color: #ffbe00;
}
.btn-red{
    background-color: #ff002f;
}

/* ---------------------------------------
delivery
--------------------------------------- */
.delivery1 {
	width: 100%;
	margin: 0px auto;
}
.delivery1 .ph {
	float: right;
	width: 40%;
}
.delivery1 dl {
	width: 55%;
}
.delivery1 dt {
	color: #008843;
	font-size: 140%;
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 140%;
}
.delivery1 dd {
}
.delivery1 .btn {
	clear: both;
	margin: 0px auto;
    border-radius: 50px;
    padding: 2px 20px;
	text-align: center;
}

.delivery1 .btn .btn-main {
    display: inline-block;
    padding: 10px 35px;
    background-color: #008943;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.delivery1 .btn a:hover {
	background-image: none;
	background-color: #008743;
}
.delivery2 {
	max-width: 850px;
	width: 100%;
	margin: 0px auto;
}
.deli2_1 {
	margin-bottom: 65px;
}
.deli2_1 table,
.deli2_1 table th,
.deli2_1 table td {
	text-align: center;
}
.deli2_1 table {
	max-width: 510px;
	width: 100%;
	margin: 0px auto;
	border-top: #ccc 1px solid;
	border-left: #ccc 1px solid;
	line-height: 100%;
	margin-bottom: 15px;
}
.deli2_1 table th {
	border-right: #ccc 1px solid;
	border-bottom: #ccc 1px solid;
	background-color: #f3f3f3;
	font-weight: 500;
	padding: 5px 0 8px;
}
.deli2_1 table td {
	border-right: #ccc 1px solid;
	border-bottom: #ccc 1px solid;
	padding: 12px 0 15px;
}
.deli2_1 .green {
	color: #159050;
}
.deli2_1 .green2 {
	max-width: 510px;
	width: 100%;
	margin: 0px auto;
	background-color: #159050;
	color: #fff;
	text-align: center;
}
.deli2_1 .green2 span {
	display: block;
	text-align: center;
	color: #fff;
	padding: 10px 0;
	line-height: 150%;
	font-size: 90%;
}
.deli2_1 .green2 a {
	display: block;
	text-align: center;
	background-color: #4AA977;
	color: #fff;
	line-height: 100%;
	padding: 7px 0 10px;
	font-weight: 500;
}
.deli2_2 {
	clear: both;
	padding-bottom: 10px;
	border-bottom: #bbb 1px dotted;
	margin-bottom: 20px;
	overflow: hidden;
}
.deli2_2 .ph {
	float: right;
	width: 45%;
	margin: 0;
}
.deli2_2 .ph img {
	margin-bottom: 10px;
}
.deli2_2 .txt {
	width: 50%;
}
.order {
	border: #EEE 10px solid;
	padding: 3%;
}
.order ul {
}
.order ul li {
	float: left;
	width: 50%;
}
.order ul li:nth-child(1) {
	margin-bottom: 20px;
}
.order ul li:nth-child(2) {
	margin-bottom: 20px;
}
.order ul li:nth-child(3) {
	clear: both;
	float: none;
	width: 100%;
}
.order ul li dl {
	display: table;
}
.order ul li dt {
	display: table-cell;
	vertical-align: middle;
	padding-right: 10px;
}
.order ul li dd {
	display: table-cell;
	vertical-align: middle;
	line-height: 170%;
	font-size: 80%;
}
.order ul li dd span {
	display: block;
	color: #00853F;
	font-size: 200%;
	font-weight: 600;
}
.order ul li dd strong {
	display: block;
	color: #00853F;
	font-size: 200%;
	padding-right: 10px;
	font-weight: 600;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.order ul li dd p {
	margin: 0;
}
.order ul li dd p a {
	display: inline-block;
	background: url(../images/common/pdf.png) no-repeat;
	background-size: 30px auto;
	background-position: left 2px center;
	background-color: #00853F;
	color: #fff;
	font-size: 90%;
	line-height: 100%;
	padding: 5px 10px 5px 40px;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}



@media screen and (max-width: 767px) {
  /* セクション全体の余白調整 */
  section.philosophy,
  section.process {
    padding-bottom: 40px;
  }

  /* 画像とテキストを縦並びにする */
  section.philosophy-item,
  section.process .process-item {
    flex-direction: column !important;
  }

  section.philosophy-item .philosophy-img,
  section.philosophy-item .philosophy-txt,
  section.process .process-img,
  section.process .process-txt {
    width: 100% !important;
  }

  section.process .process-txt {
    margin-top: 15px;
  }

  /* 注文情報のボックス（order） */
  .order {
    width: 95%;
    padding: 20px;
  }
  .order ul li {
    float: none !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  /* 注文情報の数字・電話番号サイズ調整 */
  .order ul li dd span,
  .order ul li dd strong {
    font-size: 150% !important;
  }

  /* ボタンの並びを縦にする */
  .buttons {
    flex-direction: column;
    gap: 20px;
  }
  .button {
    max-width: 100%;
  }
  
  /* フォントサイズの微調整 */
  section h2 { font-size: 170%; }
  section h3 { font-size: 160%; }
}
