@charset "UTF-8";
/* ------------------------------------------------------------ */
/* mainvisual  */
/* ------------------------------------------------------------ */
.mainvisual {
	width: 100%;
	height: auto;
	padding: 48vw 2rem 0;
	position: relative;
	z-index: 3;
}
.mainvisual::after {
	content: "";
	display: block;
	width: 100%;
	height: 20%;
	background-color: #dcdddd;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.mv-box {
	max-width: 840px;
	margin: 0 auto;
	padding: 80px 3rem 3rem;
	border: 2px solid #000;
	background: #fff;
	border-radius: 10px;
	position: relative;
	z-index: 1;
}
.mv-box::before {
	content: "";
	display: block;
	width: 180px;
	height: 90px;
	background-color: #fff;
	border: 2px solid #000;
	border-bottom-color: #fff;
	border-bottom-width: 6px;
	position: absolute;
	top: -85px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 90px 90px 0 0;
	z-index: -1;
}
.mv-box::after {
	content: "";
	display: block;
	width: 95%;
	height: 50%;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.mv-logo {
	width: 120px;
	height: 110px;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	top: -65px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.mv-logo img {
	width: 100%;
	height: 100%;
}

.mv-ttl {
	width: 90%;
	max-width: 660px;
	margin: 0 auto 2rem;
	position: relative;
	z-index: 3;
}
.mv-subttl {
	font-size: 1.8rem;
	font-weight: 900;
	letter-spacing: 0.3em;
	text-align: center;
	position: relative;
	z-index: 3;
}
.mv-date {
	width: 90px;
	height: 90px;
	padding: 1.5rem 0.5rem 0;
	background: #000;
	color: #fff;
	/* display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */
	text-align: center;
	font-size: 1.2rem;
	line-height: 1;
	font-weight: 900;
	border-radius: 100%;
	position: absolute;
	top: -50px;
	right: -20px;
	z-index: 3;
}
.date-year {
	font-weight: 400;
	/* margin: 0 0 1rem; */
}
.date-md {
	font-size: 2.4rem;
	letter-spacing: 0;
	position: absolute;
	bottom: 25px;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
}
.date-md::after {
	content: "";
	display: block;
	font-weight: 400;
	width: 1px;
	height: 140%;
	background: #fff;
	position: absolute;
	top: -6px;
	left: 42px;
	transform: rotate(30deg);
}
.date-month {
	position: relative;
	top: -5px;
	left: -3px;
	text-align: right;
	padding-right: 3px;
}
.date-day {
	position: relative;
	bottom: -5px;
	right: 4px;
	text-align: left;
	padding-left: 3px;
}

/* ------------------------------------------------------------ */
/* topics  */
/* ------------------------------------------------------------ */
.topics {
	background-color: #dcdddd;
}
.topics::after {
	content: "";
	display: block;
	width: 100%;
	height: 20%;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.topmenu {
	width: 80%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: column-reverse;
	flex-wrap: wrap;
	margin: 0 auto 3rem;
}
.list-sub {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 auto 2rem;
}
.list-sub-item {
	font-size: 1.4rem;
	margin: 0 2rem 1rem;
}
.list-sub-item a {
	display: block;
}
.list-main {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	flex-wrap: wrap;
	margin: 0 auto 2rem;
}
.list-main-item {
	width: 100%;
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}
.list-main-item a {
	display: block;
	padding: 1rem 0;
	border-bottom: 1px solid #000;
	position: relative;
}
.list-main-item a::before {
	content: "";
	display: block;
	width: 8px;
	height: 1px;
	background-color: #000;
	position: absolute;
	top: 45%;
	/* right: 1rem; */
	right: 0;
	transform: translateX(-1rem) rotate(40deg);
	-webkit-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}
.list-main-item a::after {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	background-color: #000;
	position: absolute;
	top: 52%;
	right: 1rem;
	transform-origin: left center;
	-webkit-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}
.list-main-item a:hover::before {
	/* right: 0; */
	transform: translateX(0) rotate(40deg);
}
.list-main-item a:hover::after {
	transform: scaleX(1.3);
}
.scroll {
	width: 16px;
	height: 50px;
	position: absolute;
	top: 145px;
	left: 4%;
	z-index: 3;
	cursor: pointer;
	/* overflow: hidden; */
}
.scroll a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	position: relative;
}
.scroll-line {
	display: block;
	width: 1px;
	height: 50px;
	margin: 0 auto;
	background: #000;
	/* -webkit-animation: lineDown 2s linear infinite both;
	animation: lineDown 2s linear infinite both; */
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.scroll-circle {
	display: block;
	width: 6px;
	height: 6px;
	margin: 0 auto;
	background: #fff38e;
	border: 1px solid #000;
	border-radius: 100%;
	-webkit-animation: dotDown 2s linear infinite both;
	animation: dotDown 2s linear infinite both;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

/* scroll line-down */
@-webkit-keyframes dotDown {
	0% {
		top: 0;
		/* height: 0; */
	}
	100% {
		top: 100%;
		/* height: 100%; */
	}
}
@keyframes dotDown {
	0% {
		top: 0;
		/* height: 0; */
	}
	100% {
		top: 100%;
		/* height: 100%; */
	}
}
/* ------------------------------------------------------------ */
/* info  */
/* ------------------------------------------------------------ */
.info-box {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 auto 3em;
}
.info-box .main-ttl {
	border: 2px solid #000;
	border-radius: 10px 10px 0 0;
	border-bottom: none;
	margin: 0;
	display: inline-block;
	padding: 0.5rem 2rem;
	font-size: 1.5rem;
	text-align: center;
}
.info-box .txt-list {
	width: 100%;
	border: 2px solid #000;
	border-radius: 0 10px 0 10px;
	padding: 2rem;
	margin: 0 auto;
}
.info-box .more-arw {
	border: 2px solid #000;
	border-radius: 0 0 10px 10px;
	border-top: none;
	background: #fff38e;
	color: #000;
	padding-left: 3em;
	padding-right: 6em;
	margin: 0 0 0 auto;
}
.info-box .more-arw:hover {
	padding-left: 3em;
	padding-right: 6em;
}
.info-box .more-arw::before {
	right: 1rem;
	transform: translateX(-1rem) rotate(40deg);
	/* -webkit-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out; */
	/* right: 2rem;
	-webkit-transition: right 0.3s ease-in-out;
	transition: right 0.3s ease-in-out; */
}
.info-box .more-arw::after {
	width: 40px;
	right: 2rem;
	/* transform-origin: left center;
	-webkit-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out; */
}
.info-box .more-arw:hover::before {
	/* right: 1rem; */
	transform: translateX(0) rotate(40deg);
}
.info-box .more-arw:hover::after {
	transform: scaleX(1.2);
}

.recruit-box {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin: 0 auto 2rem;
	position: relative;
}
.recruit-box .txt {
	width: 100%;
	padding: 6em 0 0;
}
.recruit-box .main-ttl {
	font-size: 1.8rem;
	line-height: 1.6;
	text-align: left;
	margin-bottom: 0;
}
.recruit-box .illust {
	width: 110%;
	position: absolute;
	top: 0;
	right: -23px;
	z-index: -1;
}
.wanted-illust img {
	width: 100%;
}
.recruit-box .more-arw {
	padding: 0.5em 4rem 0.5em 0;
}
/* .recruit-box .more-arw:hover {
	padding: 0.5em 5.5rem 0.5em 0;
} */

/* ------------------------------------------------------------ */
/* delivery  */
/* ------------------------------------------------------------ */
.delivery {
	background: url(../img/top/bg-delivery-sp.jpg) repeat top center / 100% auto;
	color: #fff;
}
.delivery .main-ttl {
	position: relative;
}
.delivery .main-ttl span {
	display: block;
	margin: 0 auto;
	transform-origin: left center;
	position: relative;
	overflow: hidden;
}
.delivery .main-ttl .stroke {
	width: 243px;
	position: relative;
	left: 0.5rem;
}
.stroke svg {
	width: 100%;
}
#stroke-del .st {
	fill: none;
	stroke: #fff;
	stroke-width: 11px;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-miterlimit: 10;
	stroke-dasharray: 1500; /* 線の間隔を指定する */
	stroke-dashoffset: 1500; /* 線の位置を指定する */
}

.delivery .main-ttl .ttl-caps {
	margin-top: -0.5rem;
	opacity: 0;
}
.delivery .main-ttl .ttl-menu {
	width: 50%;
	max-width: 115px;
	opacity: 0;
	margin-top: -30px;
}
.delivery .main-ttl .illust {
	position: absolute;
	opacity: 0;
}
.delivery .main-ttl .paper {
	right: 71%;
	bottom: 2rem;
	width: 40px;
}
.delivery .main-ttl .milk {
	left: 73%;
	bottom: 0;
	width: 20px;
}
.delivery .ttl-menu.is-show {
	/* animation: show2 0.5s ease-in-out 2s 1 forwards; */
	animation: show2 0.5s ease-in-out 1s 1 forwards;
}
.delivery .ttl-caps.is-show {
	/* animation: show2 0.5s ease-in-out 2.2s 1 forwards; */
	animation: show2 0.5s ease-in-out 1.2s 1 forwards;
}
.delivery .paper.is-show {
	/* animation: show2 0.5s ease-in-out 2.5s 1 forwards; */
	animation: show2 0.5s ease-in-out 1.5s 1 forwards;
}
.delivery .milk.is-show {
	/* animation: show2 0.5s ease-in-out 2.8s 1 forwards; */
	animation: show2 0.5s ease-in-out 1.8s 1 forwards;
}
@keyframes show1 {
	0% {
		opacity: 0;
		transform: translateX(-100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes show2 {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.delivery .flx_item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 4rem;
	position: relative;
	opacity: 0;
	overflow: hidden;
}
.delivery .flx_item.is-show {
	animation: show1 0.8s ease-in-out .8s 1 forwards;
}
.delivery .flx_item:nth-of-type(2).is-show {
	animation: show1 0.8s ease-in-out 0.5s 1 forwards;
}
.delivery .flx_item:nth-of-type(3).is-show {
	animation: show1 0.8s ease-in-out 0.5s 1 forwards;
}
.delivery .flx_item:nth-of-type(4).is-show {
	animation: show1 0.8s ease-in-out 0.5s 1 forwards;
}

.delivery .item-ttl {
	width: 100%;
	color: #fff38e;
	text-align: center;
	font-size: 2rem;
	display: flex;
	align-items: center;
  white-space: nowrap;
}
.delivery .item-ttl::before,
.delivery .item-ttl::after {
	content: "";
	width: 50%;
	height: 2px;
	background-color: #fff38e;
	display: flex;
}
.delivery .item-ttl::before {
	margin-right: 1rem;
}
.delivery .item-ttl::after {
	margin-left: 1rem;
}
.delivery .txt-list {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 2rem;
	margin-bottom: 0;
}
.delivery .txt-list-item {
	width: calc((100% - 2rem) / 2);
	margin: 0 0.5rem 1rem;
	font-size: 1.4rem;
	line-height: 1.6;
}
.delivery .txt-list-item a {
	color: #fff;
}
.delivery .txt-list-item a:hover {
	color: #fff38e;
}
.delivery .txt-list-item a.more:hover {
	color: #000;
}

.delivery .basis_2 {
  position: relative;
  padding: 0 0 40px;
}
.delivery .basis_2 .txt-list {
	width: 100%;
	height: 190px;
	flex-direction: column;
}
.delivery .basis_2 .txt-list-item {
	/* width: 100%;
	margin: 0 auto 1rem; */
}
.delivery .basis_2 .txt-list-item.sp {
	/* width: 100%;
	margin: 0 auto 1rem; */
	width: auto;
	margin: 0 0 1rem;
}
.delivery .flx_item .more {
	margin: 2em auto 0;
}
.delivery .basis_2 .more.sp {
	position: absolute;
	bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
/* ------------------------------------------------------------ */
/* service  */
/* ------------------------------------------------------------ */
.service {
	background: url(../img/top/bg-service-sp.jpg) repeat top center / 100% auto;
}
.service .btn {
	height: 120px;
	align-items: center;
	margin: 1.5rem auto;
	opacity: 0;
}

.service .btn a {
	height: 100%;
	flex-direction: column;
	font-size: 1.6rem;
}
.service .line a {
	padding: 12px 1em 12px 28vw;
	background: #fff url(../img/icon/icon-line.svg) no-repeat left 14vw center / 40px auto;
	text-align: left;
	align-items: flex-start;
}
.service .line a:hover {
	background-color: #fff38e;
}
.service .btn .caps {
	display: block;
	color: #000;
	width: 100%;
	font-size: 1.3rem;
	font-weight: 400;
}

.service .circle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: -20px;
	right: -10px;
	opacity: 0;
	/* -webkit-transition: background-image 0.4s ease-in-out,opacity 0.4s ease-in-out;
	transition: background-image 0.4s ease-in-out,opacity 0.4s ease-in-out; */
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.service .circle::before,
.service .circle::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
.service a:hover .circle::before {
	opacity: 0;
}

.service .circle::after {
	opacity: 0;
}
.service a:hover .circle::after {
	opacity: 1;
}
/* .service .circle img {
	width: 100%;
} */
.service .badge-free::before {
	background-image: url(../img/top/badge-free.svg);
}
.service .badge-free::after {
	background-image: url(../img/top/badge-free-on.svg);
}
.service .badge-check::before {
	background-image: url(../img/top/badge-check.svg);
}
.service .badge-check::after {
	background-image: url(../img/top/badge-check-on.svg);
}
.service .badge-goodvalue::before {
	background-image: url(../img/top/badge-goodvalue.svg);
}
.service .badge-goodvalue::after {
	background-image: url(../img/top/badge-goodvalue-on.svg);
}

@-webkit-keyframes circleRotate {
	0% {
		transform: rotate(-8deg);
		opacity: 0;
	}
	25% {
		opacity: 1;
		transform: rotate(8deg);
	}
	50% {
		opacity: 1;
		transform: rotate(-8deg);
	}
	75% {
		opacity: 1;
		transform: rotate(8deg);
	}
	100% {
		opacity: 1;
		transform: rotate(0deg);
	}
}
@keyframes circleRotate {
	0% {
		transform: rotate(-8deg);
		opacity: 0;
	}
	25% {
		opacity: 1;
		transform: rotate(8deg);
	}
	50% {
		opacity: 1;
		transform: rotate(-8deg);
	}
	75% {
		opacity: 1;
		transform: rotate(8deg);
	}
	100% {
		opacity: 1;
		transform: rotate(0deg);
	}
}

.service .circle.is-show {
	-webkit-animation: circleRotate 0.8s ease-in-out 0.8s 1 forwards;
	animation: circleRotate 0.8s ease-in-out 0.8s 1 forwards;
}

/* ------------------------------------------------------------ */
/* link_area  */
/* ------------------------------------------------------------ */
.link_area .btn-icon a {
	font-size: 1.3rem;
	align-items: flex-start;
	justify-content: flex-start;
	text-align: left;
	padding: 3rem;
	background-color: #fff;
}
.link_area .btn-icon span {
	display: block;
	width: 100%;
	font-size: 1.7em;
	line-height: 1.3;
}
.icon-faq a {
	background: #fff url(../img/icon/icon-faq.svg) no-repeat right 2rem center / 110px auto;
}
.icon-truck a {
	background: #fff url(../img/icon/icon-truck.svg) no-repeat right 2rem center / 85px auto;
}

.library-link {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 5rem auto 0;
}
.library-link a {
	color: #000;
	background: #fff38e url(../img/top/illust-library2.svg) no-repeat center top 3em / 90% auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 72vw 2rem 3rem;
	border-radius: 10px;
	border: 2px solid #000;
	position: relative;
}
.library-link .circle {
	width: 110px;
	height: 110px;
	background: #000;
	border-radius: 100%;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 500;
	position: absolute;
	top: -40px;
	right: 10px;
	transform: rotate(-10deg);
}

.library-ttl {
	font-size: 1.7rem;
	margin: 0 0 1rem;
	text-align: center;
}
.library-ttl span {
	display: inline-block;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: 0.2em;
	background-color: #fff;
	line-height: 1.5;
	padding: 0.5rem 1rem;
	margin-top: 0.5rem;
}

.library-caps {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 2.8;
}
.library-caps span {
	letter-spacing: 0.2em;
	background-color: #fff;
	padding: 0.5rem 1rem;
}

.library-caps span.arw {
	position: relative;
	padding-right: 2rem;
}
.library-caps span.arw::before {
	content: "";
	display: block;
	width: 8px;
	height: 1px;
	background-color: #000;
	position: absolute;
	top: 45%;
	/* right: -2rem; */
	right: -3rem;
	transform: translateX(-1rem) rotate(40deg);
	-webkit-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}
.library-caps span.arw::after {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	background-color: #000;
	position: absolute;
	top: 52%;
	right: -2rem;
	transform-origin: left center;
	-webkit-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}
.library-link a:hover span.arw::before {
	/* right: -3rem; */
	transform: translateX(0) rotate(40deg);
}
.library-link a:hover span.arw::after {
	transform: scaleX(1.3);
}
/* ------------------------------------------------------------ */
/* news_of_note  */
/* ------------------------------------------------------------ */
.news_of_note {
	padding: 2em 0 4em;
}

.news_of_note .main-ttl {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	text-align: left;
}
.news_of_note .main-ttl span:first-child {
	display: block;
	width: 100%;
	background: #000;
	color: #fff;
	max-width: 480px;
	padding: 2rem 2rem 5rem;
}
.news_of_note .main-ttl .ttl-caps {
	margin-top: 1rem;
	font-size: 1.6rem;
	font-weight: 600;
}
.news_of_note .illust {
	width: 38%;
	max-width: 200px;
	position: absolute;
	top: 13rem;
	left: 1.5rem;
	z-index: 2;
}
.top .note-list {
	margin: -3rem auto 0;
  max-width: 625px;
}
.top .note-list-item {
	margin: 0 auto;
	padding: 12rem 2rem 2rem;
}
.top .note-list-item .update {
	top: 3rem;
	left: inherit;
	right: 0;
	max-width: 65%;
}
/* ------------------------------------------------------------ */
/* about  */
/* ------------------------------------------------------------ */

.about {
	background: url(../img/top/bg-about-sp.jpg) no-repeat top center / cover;
	color: #fff;
}

.about-link {
	width: 100%;
	margin: 0 auto 2rem;
}
.about-link a {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	color: #fff;
	padding: 2rem;
	border: 2px solid #fff;
	border-radius: 10px;
}
.about-link a:hover {
	background-color: #fff;
	color: #000;
}
.link-num {
	font-size: 4.8rem;
	font-weight: 900;
	color: rgba(255, 255, 255, 0);
	/* text-shadow: 0 0 0 #fff, 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 0 0 #fff, 0 1px 0 #000, -1px 0 0 #fff, 0 -1px 0 #fff; */
	-webkit-text-stroke: 2px #fff;
	line-height: 1;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.about-link a:hover .link-num {
	-webkit-text-stroke: 2px #000;
}

.link-ttl {
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 1.5;
	border-bottom: 2px solid #fff;
	margin: 0 0 0 1rem;
	-webkit-transition: border-color 0.3s ease-in-out;
	transition: border-color 0.3s ease-in-out;
}
.about-link a:hover .link-ttl {
	border-color: #000;
}

.link-caps {
	width: 100%;
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
	margin-top: 1rem;
}

@media screen and (min-width: 480px) {
	/* スマートフォン横 */
	/* ------------------------------------------------------------ */
	/* mainvisual  */
	/* ------------------------------------------------------------ */
	.mainvisual {
		padding: 28vw 1.5em 0;
	}
	.mv-ttl .pc {
		display: block;
	}
	/* ------------------------------------------------------------ */
	/* info  */
	/* ------------------------------------------------------------ */
	.info {
		padding-top: 0;
	}
	.recruit-box .illust {
		width: 90%;
		right: 0;
	}
	.recruit-box .txt {
		padding: 10em 4em 0;
	}
	.recruit-box .main-ttl {
		font-size: 2rem;
	}
	.recruit-box .more-arw {
		font-size: 1.4rem;
	}
	/* ------------------------------------------------------------ */
	/* delivery  */
	/* ------------------------------------------------------------ */
	.delivery .main-ttl .stroke {
		width: 362px;
	}
	.delivery .main-ttl .ttl-menu {
		max-width: 150px;
		margin-top: -15px;
	}
	.delivery .main-ttl .ttl-caps {
		margin-top: 0.5rem;
		font-size: 1.5rem;
	}
	.delivery .main-ttl .paper {
		right: 61vw;
		bottom: 2.7rem;
		width: 48px;
	}
	.delivery .main-ttl .milk {
		left: 60.5vw;
		width: 25px;
	}
	.delivery .flx_box {
		margin: 4em auto 0;
	}
	.delivery .flx_item.is-show {
		-webkit-animation: show1 0.8s ease-in-out 2s 1 forwards;
		animation: show1 0.8s ease-in-out 2s 1 forwards;
	}
	.delivery .flx_item:nth-of-type(2).is-show {
		-webkit-animation: show1 0.8s ease-in-out 2s 1 forwards;
		animation: show1 0.8s ease-in-out 2s 1 forwards;
	}
	.delivery .flx_item:nth-of-type(3).is-show {
		-webkit-animation: show1 0.8s ease-in-out 1.8s 1 forwards;
		animation: show1 0.8s ease-in-out 1.8s 1 forwards;
	}
	.delivery .flx_item:nth-of-type(4).is-show {
		-webkit-animation: show1 0.8s ease-in-out 1.8s 1 forwards;
		animation: show1 0.8s ease-in-out 1.8s 1 forwards;
	}
	/* ------------------------------------------------------------ */
	/* service  */
	/* ------------------------------------------------------------ */
	.service .line a {
		padding: 12px 1em 12px 16vw;
		background: #fff url(../img/icon/icon-line.svg) no-repeat left 6vw center / 40px auto;
	}

	/* ------------------------------------------------------------ */
	/* link_area  */
	/* ------------------------------------------------------------ */
	.link_area .btn-icon a {
		padding: 3rem 2rem;
	}
	.library-link a {
		flex-direction: row;
		flex-wrap: wrap;
		padding: 2rem 2rem 2rem 40%;
		background-position: left 1rem center;
		background-size: 35% auto;
	}
	.library-ttl {
		width: 100%;
		text-align: left;
	}
	.library-ttl span {
		font-size: 3rem;
	}
	.library-caps span {
		display: inline-block;
		line-height: 1.5;
	}
	.library-caps span.pc {
		display: none;
	}
	/* ------------------------------------------------------------ */
	/* news_of_note  */
	/* ------------------------------------------------------------ */
	.news_of_note .illust {
    width: 40%;
    top: inherit;
    left: 0.5rem;
    bottom: 0;
    max-width: 220px;
	}
	.top .note-list {
		margin: -3rem 2rem 0 auto;
		width: 70%;
	}
	.top .note-list-item {
		padding: 9rem 2rem 2rem;
	}
	/* ------------------------------------------------------------ */
	/* about  */
	/* ------------------------------------------------------------ */
	.link-ttl {
		font-size: 2.2rem;
		margin: 0 0 0 2rem;
	}
	.link-num {
		font-size: 5.8rem;
	}
	.link-caps {
		width: auto;
		font-size: 1.4rem;
		margin-top: 0;
		margin-left: 2rem;
    text-align: left;
	}
}
@media screen and (min-width: 768px) {
	/* タブレット縦 / スマートフォン横 */
	/* ------------------------------------------------------------ */
	/* mainvisual  */
	/* ------------------------------------------------------------ */
	.mainvisual {
		padding: 20vw 2em 0;
	}
	.mv-box::before {
		width: 220px;
		height: 110px;
		top: -85px;
		border-radius: 110px 110px 0 0;
	}
	.mv-subttl {
		font-size: 2rem;
	}
	.mv-date {
		width: 95px;
		height: 95px;
		padding: 1.5rem 1rem 0;
	}
	.date-md {
		bottom: 28px;
	}
	.date-md::after {
		left: 45px;
	}
	/* ------------------------------------------------------------ */
	/* topics  */
	/* ------------------------------------------------------------ */
	.topmenu {
		/* width: 80%; */
		max-width: 550px;
		flex-direction: column;
	}
	.list-sub {
		justify-content: flex-start;
	}
	.list-sub-item {
		margin: 0 6rem 2rem 0;
	}
	.list-sub-item.pc {
		display: block;
	}
	.list-main {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.list-main-item {
		width: auto;
		margin: 0 3rem 2rem 0;
	}
	.list-main-item.sp {
		display: none;
	}
	.list-main-item a {
		padding: 1rem 8rem 1rem 0;
	}
	.scroll {
		left: 94%;
	}
	/* ------------------------------------------------------------ */
	/* info  */
	/* ------------------------------------------------------------ */
	.recruit-box {
		width: 80%;
	}
	/* ------------------------------------------------------------ */
	/* delivery  */
	/* ------------------------------------------------------------ */
	/* .delivery .main-ttl .paper {
		right: 65%;
		width: 55px;
	}
	.delivery .main-ttl .milk {
		left: 65%;
		width: 38px;
	} */
	.delivery .main-ttl .ttl-menu {
		max-width: 150px;
		margin-top: -15px;
	}
	.delivery .main-ttl .ttl-caps {
		margin-top: 0;
		font-size: 1.6rem;
	}
	.delivery .main-ttl .paper {
		right: 57vw;
		bottom: 2.8rem;
		width: 50px;
	}
	.delivery .main-ttl .milk {
		left: 57.6vw;
		width: 26px;
		bottom: -0.3rem;
	}
	.delivery .flx_item {
		width: calc((100% - 4rem) / 2);
		margin: 0 1rem 3rem;
	}
	.delivery .flx_item:nth-of-type(2n),
	.delivery .flx_item:last-of-type {
		margin: 0 1rem 3rem;
	}

	/* ------------------------------------------------------------ */
	/* service  */
	/* ------------------------------------------------------------ */
	.service {
		background: url(../img/top/bg-service.jpg) repeat top center / cover;
	}
	.service .btn {
		height: auto;
	}
	.service .line a {
		padding: 12px 1em 12px 7rem;
		background: #fff url(../img/icon/icon-line.svg) no-repeat left 2rem center / 40px auto;
	}
	.service .circle {
		top: -40px;
		right: -20px;
	}

	/* ------------------------------------------------------------ */
	/* link_area  */
	/* ------------------------------------------------------------ */
	.link_area .btn-icon a {
		padding: 3rem 4rem;
		font-size: 1.6rem;
	}
	.link_area .btn-icon span {
		font-size: 2.4rem;
	}
	.icon-faq a {
		background-position: right 3rem center;
	}
	.icon-truck a {
		background-position: right 3rem center;
	}

	.library-caps span.sp {
		display: none;
	}
	.library-caps br.sp:last-of-type {
		display: none;
	}
	.library-caps span.pc {
		display: inline-block;
	}
	.library-link .circle {
		width: 140px;
		height: 140px;
		font-size: 1.6rem;
		top: -30px;
		right: 20px;
	}
	/* ------------------------------------------------------------ */
	/* news_of_note  */
	/* ------------------------------------------------------------ */
	.news_of_note {
		padding: 3em 0 6em;
	}
	.news_of_note .main-ttl {
		width: 100%;
		margin: 0;
		position: relative;
	}
	.news_of_note .main-ttl span:first-child {
		width: 55%;
		padding: 2rem;
	}
	.news_of_note .main-ttl .ttl-caps {
		font-size: 1.8rem;
	}
	.news_of_note .main-ttl .pc {
		display: inline-block;
		width: 45%;
		padding: 0 3rem;
		position: absolute;
		bottom: 4.2rem;
		right: 0;
	}
	.news_of_note .illust {
		left: 2rem;
    width: 45%;
    max-width: 240px;
	}
	.top .note-list {
		margin: -5rem 2rem 0 auto;
	}
	.top .note-list-item {
		padding: 6rem 4rem 3rem;
	}
	.top .note-list-item .update {
		top: 0;
		left: inherit;
		right: 0;
		max-width: 65%;
	}
	/* ------------------------------------------------------------ */
	/* about  */
	/* ------------------------------------------------------------ */
	.about {
		background: url(../img/top/bg-about.jpg) no-repeat top center / cover;
	}
	.about-link {
		margin: 4rem auto;
	}
	.about-link a {
		padding: 4rem;
	}
	.link-ttl {
		font-size: 2.7rem;
	}
	.link-num {
		font-size: 7.4rem;
	}
}
@media screen and (min-width: 1025px) {
	/* デスクトップ/タブレット横 */

	/* ------------------------------------------------------------ */
	/* mainvisual  */
	/* ------------------------------------------------------------ */
	.mv-box::before {
		width: 360px;
		height: 180px;
		top: -140px;
		border-radius: 180px 180px 0 0;
	}
	.mv-logo {
		width: 145px;
		height: 140px;
		top: -110px;
	}
	.mv-ttl {
		margin: 0 auto 3rem;
	}

	/* ------------------------------------------------------------ */
	/* topics  */
	/* ------------------------------------------------------------ */
	.topics {
		padding: 4em 0;
	}
	.topics::after {
		height: 35%;
	}
	/* ------------------------------------------------------------ */
	/* info  */
	/* ------------------------------------------------------------ */
	.info {
		padding-bottom: 3em;
	}
	.info .inner {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.info-box {
		width: 50%;
	}
	.recruit-box {
		width: 45%;
	}
	.recruit-box .txt {
		padding: 8em 4em 0;
	}
	.recruit-box .illust {
		width: 100%;
		right: -30px;
	}
	/* ------------------------------------------------------------ */
	/* delivery  */
	/* ------------------------------------------------------------ */
	.delivery {
		background: url(../img/top/bg-delivery.jpg) repeat top center / cover;
	}
	.delivery .inner {
    max-width: calc(1180px + 4em);
	}
	.delivery .main-ttl .ttl-menu {
		margin-top: -25px;
	}
	.delivery .main-ttl .ttl-caps {
		margin-top: -0.6rem;
		font-size: 1.8rem;
	}
	.delivery .main-ttl .paper {
		right: 60%;
		bottom: 2.5rem;
	}
	.delivery .main-ttl .milk {
		left: 61%;
		bottom: -0.7rem;
	}
	/* .delivery .main-ttl .paper {
		right: 60%;
	}
	.delivery .main-ttl .milk {
		left: 60%;
	} */
	.delivery .flx_item {
		/* width: 14%; */
		width: 15%;
		margin-bottom: 0;
	}
	.delivery .flx_item:nth-of-type(2n),
	.delivery .flx_item:last-of-type {
		margin-bottom: 0;
	}
	.delivery .flx_item:nth-of-type(2) {
		/* width: 22%; */
		width: 18%;
	}
	.delivery .flx_item:nth-of-type(4) {
		width: 30%;
    margin-right: 0;
	}
	.delivery .basis_2 {
		/* width: 40%; */
		width: 30%;
    margin-left: 0;
	}

	.delivery .flx_item.is-show {
		-webkit-animation: show1 0.8s ease-in-out 1.2s 1 forwards;
		animation: show1 0.8s ease-in-out 1.2s 1 forwards;
	}
	.delivery .flx_item:nth-of-type(2).is-show {
		-webkit-animation: show1 0.8s ease-in-out 1.8s 1 forwards;
		animation: show1 0.8s ease-in-out 1.8s 1 forwards;
	}
	.delivery .flx_item:nth-of-type(3).is-show {
		-webkit-animation: show1 0.8s ease-in-out 2.2s 1 forwards;
		animation: show1 0.8s ease-in-out 2.2s 1 forwards;
	}
	.delivery .flx_item:nth-of-type(4).is-show {
		-webkit-animation: show1 0.8s ease-in-out 2.8s 1 forwards;
		animation: show1 0.8s ease-in-out 2.8s 1 forwards;
	}


	.delivery .item-ttl {
		width: auto;
		border-bottom: 2px solid #fff38e;
	}
  .delivery .item-ttl::before,
  .delivery .item-ttl::after {
    display: none;
  }
	.delivery .basis_2 .item-ttl {
		width: 100%;
    text-align: left;
		border-bottom: none;
	}
	.delivery .basis_2 .item-ttl span {
    display: inline-block;
		border-bottom: 2px solid #fff38e;
	}
	.delivery .txt-list {
		/* width: auto; */
		flex-direction: column;
		margin: 2rem 0 0;
	}
	.delivery .txt-list-item {
		width: auto;
		margin: 0 0 1rem;
	}

	.delivery .flx_item:nth-of-type(4) .txt-list {
    height: 240px;
	}
	.delivery .flx_item:nth-of-type(4) .txt-list-item {
    max-width: 50%;
    padding-right: 1rem;
	}
	.delivery .flx_item .more {
		margin: 2em 0 0;
	}
	.delivery .flx_item .more.sp {
		display: none;
	}

	/* ------------------------------------------------------------ */
	/* service  */
	/* ------------------------------------------------------------ */
	.service .inner {
		max-width: 900px;
	}
	.service .btn-3cols {
		justify-content: space-between;
		margin-top: 3em;
	}
	.service .btn {
		width: calc((100% - 8rem) / 3);
		margin: 2.5rem 4rem 2.5rem 0;
	}
	.service .btn:last-of-type {
		margin-right: 0;
	}
	.service .btn a {
		padding: 2rem;
	}
	.service .line a {
		padding: 2rem 2rem 2rem 9rem;
		background-position: left 3.5rem center;
	}
	/* ------------------------------------------------------------ */
	/* link_area  */
	/* ------------------------------------------------------------ */

	.link_area .inner {
		max-width: 900px;
	}
	.link_area .btn-2cols {
		justify-content: space-between;
	}
	.link_area .btn-2cols .btn {
		width: calc((100% - 4rem) / 2);
		max-width: inherit;
		margin-left: 0;
		margin-right: 2rem;
	}
	.link_area .btn-2cols .btn:last-of-type {
		margin-left: 2rem;
		margin-right: 0;
	}
	.library-link a {
		padding: 4rem 4rem 4rem 45%;
		background-position: left 3rem center;
		background-size: 38% auto;
	}
	/* ------------------------------------------------------------ */
	/* news_of_note  */
	/* ------------------------------------------------------------ */
	.news_of_note {
		padding: 1em 0 7em;
	}
	.news_of_note .inner {
		max-width: 900px;
	}
	.news_of_note .main-ttl .ttl-caps {
		font-size: 2rem;
	}
	/* ------------------------------------------------------------ */
	/* about  */
	/* ------------------------------------------------------------ */
	.about .inner {
		max-width: 800px;
	}
}
