@charset "UTF-8";

* {
  min-height: 0;
  min-width : 0;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}

img {
  max-width: 100%;
}



/* 汎用スタイル
-----------------------------------------------------------------------*/
.mb30 {
  margin-bottom: 30px;
}



/* オープニング
-----------------------------------------------------------------------*/
@keyframes opening-back {
  0% {
    background-color: #0EAF0E;
    opacity: 1;
  }
  30% {
    background-color: #1357D7;
    opacity: 1;
  }
  60% {
    background-color: #FFF;
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes catch {
  0% {
    opacity: 0;
    transform: scale(200%);
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

#opening {
  width: 100vw;
  height: 100vh;
  background-color: #FFF;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  animation: opening-back 7.0s forwards;
}

.opening-catch {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  animation: fadeout 0.5s 2.5s forwards;
}

.opening-catch p:first-of-type {
  font-size: 200%;
  color: #FFF;
  font-weight: 600;
  opacity: 0;
  animation: catch 1.0s 0.5s forwards;
}

.opening-catch p:last-of-type {
  font-size: 150%;
  color: #FFF;
  font-weight: 600;
  opacity: 0;
  animation: catch 1.0s 1.5s forwards;
}

.opening-catch p:last-of-type::before,
.opening-catch p:last-of-type::after {
  content: "～";
}

.opening-catch p br {
  display: none;
}

.opening-logo {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  animation: catch 1.0s 3.0s forwards;
}

.opening-line {
  width: 0;
  height: 5px;
  border-bottom: 1px solid #1357D7;
  position: absolute;
  left: 50%;
  top: 60%;
  bottom: -15px;
  transform: translateX(-50%);
  animation: line 1.0s 3.0s forwards;
}



/* ページヘッダー
-----------------------------------------------------------------------*/
header {
  width: 100%;
  padding: 15px 50px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  z-index: 150;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-inner h1 img {
  height: 60px;
}

.header-inner ul {
  display: flex;
  align-items: center;
}

.header-inner ul li:not(:last-of-type) {
  margin-right: 35px;
}

.header-inner ul li a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  transition: all 0.4s;
}

.header-inner ul li a:hover {
  color: #0EAF0E;
  text-decoration: underline;
}

.header-inner ul li.link-inq a {
  padding: 10px 40px;
  background-color: #1357D7;
  color: #FFF;
}

.header-inner ul li.link-inq a:hover {
  text-decoration: none;
  filter: brightness(125%);
}



/* ページフッター
-----------------------------------------------------------------------*/
.footer-inner {
  width: 1100px;
  padding: 25px 0;
  margin: 0 auto;
  border-top: 1px dotted #1357D7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo p:not(:first-of-type) {
  padding-left: 3.5em;
}

.footer-logo p img {
  width: 160px;
}

.footer-privacy img {
  width: 100px;
}

.footer-privacy span {
  display: none;
}

footer nav {
  background-color: #0EAF0E;
}

footer nav ul {
  display: flex;
  justify-content: center;
}

footer nav ul li a {
  display: block;
  padding: 14px 20px 17px;
  color: #FFF;
  font-size: 90%;
  font-weight: 600;
}

footer nav ul li a:hover {
  background-color: #0EAF0E;
  filter: brightness(110%);
}

.footer-copyright {
  padding: 14px 0 17px;
  background-color: #1357D7;
  text-align: center;
  color: #FFF;
  font-size: 90%;
}



/* スマホ用スライドメニュー
-----------------------------------------------------------------------*/
#drawer-nav-moba {
	background-color: #1357D7;
	position: fixed;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	z-index: 151;
	padding-top: 80px;
	transition: transform 0.8s;
	overflow-y: auto;
	color: #FFF;
}

.moba-logo {
	margin-bottom: 15px;
	text-align: center;
}

.moba-logo img {
	max-width: 260px;
	width: 80%;
}

.nav-moba-list {
	width: 80%;
	margin: 0 auto;
}

.nav-moba-list li {
	position: relative;
}

.nav-moba-list li a {
	display: block;
	padding: 20px 0 20px 20px;
	border-bottom: 1px solid #FFF;
	font-size: 130%;
  color: #FFF;
  text-decoration: none;
	position: relative;
}

.nav-moba-list li a.nav-switch::after {
	content: "▼";
	display: inline-block;
	position: absolute;
	top: 20px;
	right: 0;
}

.nav-moba-list li a.nav-switch.active::after {
	content: "▲";
}

.nav-moba-list li .mobachild-list li::before {
	display: none;
}

.nav-moba-list li .mobachild-list li a {
	border-bottom: 1px dotted #FFF;
	font-size: 110%;
}

.mobachild-list {
	display: none;
}



/* TOPページコンテンツ
-----------------------------------------------------------------------*/
.top-full01 {
  background: url(../images/mainvisual/main01.jpg) no-repeat center / cover;
  position: relative;
}

.top-catch {
  text-align: center;
}

.catch01 {
  color: #FFF;
  font-size: 280%;
  font-weight: 700;
}

.catch01 br {
  display: none;
}

.catch02 {
  color: #FFF;
  font-size: 200%;
  font-weight: 600;
}

.catch02::before,
.catch02::after {
  content: "～";
}

.top-full02,
.top-full04 {
  background-image: url(../images/deco/back_deco02.svg), url(../images/deco/back_deco01.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: right bottom, left bottom;
  background-size: contain, contain;
}

.top-full02 h2 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 240%;
  font-weight: 700;
}

.top-full02 h2 br {
  display: none;
}

.top-full02 h2 span {
  display: block;
  font-size: 76%;
  font-weight: 500;
}

.top-full02 h2 span::before,
.top-full02 h2 span::after {
  content: "～";
}

.top-full02 .intoro01 {
  width: 60%;
  margin: 0 auto 30px;
}

.top-full02 .link-banner {
  text-align: center;
}

.top-full02 .link-banner img {
  width: 780px;
}

.top-inner {
  width: 1100px;
  margin: 0 auto;
}

.top-full03 h2 {
  margin-bottom: 40px;
  font-size: 210%;
  display: flex;
  align-items: center;
  position: relative;
}

.top-full03 h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 20px;
  background: linear-gradient(180deg, #FFF 0%, #1357D7 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.top-full03 h2 span {
  font-size: 50%;
  font-weight: 600;
  margin-left: 15px;
  display: flex;
  align-items: center;
}

.top-full03 h2 span::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #000;
  margin-right: 5px;
}

.top-flex01 {
  display: flex;
}

.top-flex01 li {
  flex-basis: 50%;
  text-align: center;
}

.top-flex01 li:first-of-type img {
  width: 70%;
  max-width: 340px;
  margin-bottom: 10px;
}

.top-flex01 li:first-of-type h3 {
  margin-bottom: 10px;
  font-size: 140%;
  font-weight: 600;
}

.top-flex01 li:first-of-type .service-caption {
  width: 80%;
  max-width: 450px;
  margin: 0 auto;
  text-align: left;
}

.top-flex01 li:last-of-type {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service-item {
  flex-basis: 49%;
}

.service-item img {
  width: 72%;
}

.service-item h3 {
  font-size: 105%;
  font-weight: 600;
}

.service-link {
  margin-top: 30px;
  text-align: center;
}

.service-link a {
  display: inline-block;
  padding: 12px 30px 15px;
  background-color: #409CE6;
  border-radius: 10px;
  color: #FFF;
}

.service-link a:hover {
  filter: brightness(120%);
}

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

.top-flex02 li {
  flex-basis: 30%;
}

.top-flex02 li h3 {
  margin: 20px 0 17px;
  text-align: center;
  font-size: 120%;
  font-weight: 600;
}

.top-full04 {
  text-align: center;
}

.top-full04 p.inq-button {
  margin: 15px 0 40px;
}

.top-full04 p.inq-button a {
  display: inline-block;
  padding: 10px 30px 12px;
  background-color: #409CE6;
  border-radius: 10px;
  color: #FFF;
  font-size: 120%;
}

.top-full04 p.inq-button a:hover {
  filter: brightness(120%);
}

.top-full04 ul li {
  margin-bottom: 10px;
}

.top-full04 ul li.footer-logo img {
  width: 200px;
}

.top-full04 ul li.privacy-mark img {
  width: 130px;
}

.privacy-link {
  margin-top: 10px;
}

.privacy-link a {
  padding: 0 10px;
  font-size: 90%;
  color: #1357D7;
  text-decoration: underline;
}

.top-full04 p.copyright {
  width: 100%;
  text-align: center;
  color: #FFF;
  position: absolute;
  left: 0;
  bottom: 15px;
}



/* 下層ページ
-----------------------------------------------------------------------*/
/* 共通事項 */
.page-title {
  height: 500px;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.page-title h2 {
  color: #FFF;
  font-size: 280%;
  font-weight: 600;
  position: absolute;
  left: 15%;
  bottom: 50px;
}

.page-title h2 span {
  display: flex;
  align-items: center;
  padding-left: 4em;
  font-size: 55%;
  font-weight: 400;
}

.page-title h2 span::before {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  margin-right: 10px;
  background-color: #FFF;
}

.sub-contents {
  width: 1100px;
  margin: 0 auto;
  padding: 80px 0;
}


/* 事業内容ページ */
.page-title.service {
  background-image: url(../images/pagetitle/service_back.jpg);
}

.service-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-list div dt {
  flex-basis: 50%;
  font-weight: 400;
}

.service-list div dd {
  flex-basis: 50%;
}

.service-list div.reverse dt {
  order: 2;
}

.service-list div.reverse dd {
  order: 1;
}

.service-list div dt h3 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 150%;
  font-weight: 600;
}

.service-list div dt p {
  padding: 0 30px;
}

.service-list div dt p.detail-link {
  width: 80%;
  padding: 0;
  margin: 0 auto;
}

.service-list div dt p.detail-link a {
  display: block;
  padding: 16px 0 18px;
  margin-top: 15px;
  background-color: #409CE6;
  text-align: center;
  color: #FFF;
}

.service-list div dt p.detail-link a:hover {
  filter: brightness(120%);
}


/* 生産者専用ホームページ制作ページ */
.page-title.producers {
  background-image: url(../images/pagetitle/producers_back.jpg);
}

.pd-concept {
  padding: 50px 0;
  margin-bottom: 50px;
  background: url(../images/main/pd_concept.jpg) no-repeat center / cover;
}

.pd-concept h2 {
  margin-bottom: 15px;
  text-align: center;
  color: #FFF;
  font-size: 225%;
  font-weight: 600;
  text-shadow: 0 0 5px #000, 0 0 5px #000;
}

.pd-concept h2 span {
  display: block;
  font-size: 80%;
}

.pd-concept p {
  text-align: center;
  font-size: 140%;
  color: #FFF;
  text-shadow: 0 0 5px #000, 0 0 5px #000;
}

.pd-section {
  margin-bottom: 50px;
}

.pd-section h3 {
  padding: 12px 25px 14px;
  margin-bottom: 30px;
  background-color: #CEFECE;
  font-size: 174%;
  font-weight: 600;
  position: relative;
}

.pd-section h3::before {
  content: "";
  display: block;
  width: 5px;
  height: 36px;
  background-color: #0EAF0E;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.pd-section p em {
  font-style: normal;
  font-weight: 700;
}

.pd-flex {
  width: 92%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pd-flex p:first-of-type {
  flex-basis: 70%;
}

.pd-flex p:last-of-type {
  flex-basis: 28%;
}

.pd-service3 {
  width: 92%;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.pd-service3 div {
  padding: 20px 25px;
  margin-bottom: 20px;
  border: 1px solid #CCC;
  border-radius: 15px;
}

.pd-service3 div.service01 {
  flex-basis: 49%;
  margin-right: 2%;
  position: relative;
}

.pd-service3 div.service01::before {
  content: "1";
  display: block;
  padding: 2px 25px 4px;
  background-color: #FFF;
  border: 2px solid #000;
  border-radius: 40px;
  font-size: 300%;
  font-weight: 400;
  position: absolute;
  top: -35px;
  left: -5px;
}

.pd-service3 div.service02 {
  flex-basis: 49%;
  position: relative;
}

.pd-service3 div.service02::before {
  content: "2";
  display: block;
  padding: 2px 25px 4px;
  background-color: #FFF;
  border: 2px solid #000;
  border-radius: 40px;
  font-size: 300%;
  font-weight: 400;
  position: absolute;
  top: -35px;
  left: -5px;
}

.pd-service3 div.service03 {
  flex-basis: 55%;
  margin-top: 30px;
  position: relative;
}

.pd-service3 div.service03::before {
  content: "3";
  display: block;
  padding: 2px 25px 4px;
  background-color: #FFF;
  border: 2px solid #000;
  border-radius: 40px;
  font-size: 300%;
  font-weight: 400;
  position: absolute;
  top: -35px;
  left: -5px;
}

.pd-service3 div dt {
  padding: 0 0 5px 50px;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid #000;
  font-size: 120%;
}

.pd-service3 .price-box {
  margin-top: 20px;
  background-color: #DE3E0F;
  border: none;
  border-radius: 0;
  color: #FFF;
  text-align: center;
}

.pd-service3 .price-box em {
  display: block;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #FFF;
  font-style: normal;
  font-weight: bold;
  font-size: 146%;
}

.pd-service3 .price-box em span {
  font-size: 70%;
}

.step-flow {
  padding: 25px 25px 7px;
  background-color: #EEE;
}

.step-flow li {
  display: flex;
  align-items: stretch;
  margin-bottom: 20px;
  background-color: #FFF;
}

.step-flow li .step-label {
  flex-basis: 15%;
  padding: 20px 0;
  background-color: #0EAF0E;
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-flow li .step-label span {
  display: block;
  text-align: center;
}

.step-flow li .step-label span:last-of-type {
  font-size: 200%;
  font-weight: 700;
}

.step-flow li .step-txt {
  padding: 30px;
}

.step-flow li .step-txt span:first-of-type {
  display: block;
  color: #0EAF0E;
  font-size: 160%;
  font-weight: 600;
}

.step-flow li .step-txt span:first-of-type span {
  display: inline;
  font-size: 80%;
}

.faq-list div {
  padding: 20px;
  border: 3px solid #CEFECE;
  border-radius: 10px;
}

.faq-list div:not(:last-of-type) {
  margin-bottom: 30px;
}

.faq-list div dt {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.faq-list div dt::before {
  content: "Q";
  display: block;
  width: 40px;
  padding: 7px 0 9px;
  margin-right: 15px;
  background-color: #0EAF0E;
  border-radius: 40px;
  color: #FFF;
  text-align: center;
}

.faq-list div dd {
  display: flex;
  align-items: center;
}

.faq-list div dd::before {
  content: "A";
  display: block;
  width: 40px;
  padding: 6px 0 8px;
  margin-right: 15px;
  border: 1px solid #DE3E0F;
  border-radius: 40px;
  color: #DE3E0F;
  text-align: center;
  font-weight: 700;
}

/* 組合案内ページ */
.page-title.profile {
  background-image: url(../images/pagetitle/profile_back.jpg);
}

.greeting-list {
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.greeting-list li:first-of-type {
  flex-basis: 70%;
  padding: 15px 30px 15px 0;
  margin-right: -120px;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 15;
}

.greeting-list li:last-of-type {
  flex-basis: 70%;
  position: relative;
  z-index: 14;
}

.greeting-list li h3 {
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  font-size: 135%;
  font-weight: 600;
}

.outline-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.outline-list li {
  flex-basis: 48%;
}

.outline-list li h3 {
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  font-size: 135%;
  font-weight: 600;
}

.outline-list li table {
  width: 100%;
}

.outline-list li table th,
.outline-list li table td {
  border: 1px solid #1357D7;
}

.outline-list li table th {
  width: 25%;
  padding: 15px;
  background-color: #409CE6;
  color: #FFF;
  text-align: center;
}

.outline-list li table td {
  padding: 15px;
}

.outline-list li iframe {
  width: 100%;
  height: 460px;
  border: 1px solid #1357D7;
}


/* お問い合わせページ */
.page-title.contact {
  background-image: url(../images/pagetitle/contact_back.jpg);
}

.contact-form h3 {
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
  font-size: 160%;
  font-weight: 500;
}

.contact-form dl {
  width: 90%;
  margin: 0 auto 30px;
}

.contact-form dl div {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-form dl div dt {
  flex-basis: 20%;
}

.contact-form dl div dd {
  flex-basis: 78%;
}

.contact-form dl div dd label {
  display: block;
  margin-bottom: 5px;
}

.contact-form dl div input[type="text"],
.contact-form dl div input[type="email"],
.contact-form dl div textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
}

.contact-form dl div textarea {
  height: 140px;
}

.contact-form dl div input[type="checkbox"],
.privacy-check input {
  margin-right: 5px;
  vertical-align: baseline;
}

.privacy-check,
.submit-button {
  text-align: center;
}

.privacy-check {
  margin-bottom: 30px;
}

.privacy-check a {
  text-decoration: underline;
  transition: all 0.4s;
}

.privacy-check a:hover {
  color: #0EAF0E;
}

.submit-button button {
  padding: 10px 30px;
  background-color: #1357D7;
  color: #FFF;
}

.submit-button button:hover {
  filter: brightness(120%);
}

.error {
  color: #F00;
}

em.error {
  display: block;
  text-align: center;
}

.formbutton {
  display: flex;
  justify-content: center;
}

.formbutton form {
  padding: 15px 20px;
  background-color: #1357D7;
  color: #FFF;
}

.formbutton form:first-of-type {
  margin-right: 15px;
  background-color: #999;
}

.finish-footmenu {
  margin-top: 20px;
}

.finish-footmenu ul {
  padding-left: 15px;
}

.finish-footmenu ul li a {
  text-decoration: underline;
  color: #1357D7;
}



/* 個人情報保護方針 */
.page-title.privacy {
  background-image: url(../images/pagetitle/privacy_back.jpg);
}

.policy-contents {
  margin-bottom: 50px;
}

.policy-contents h3 {
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  font-size: 160%;
  font-weight: 500;
}

.policy-contents p {
  padding: 0 20px;
  margin-bottom: 15px;
}

.policy-contents p.align-right {
  text-align: right;
}

.policy-contents ol {
  padding: 0 70px;
  margin-bottom: 15px;
}

.policy-contents ol li {
  list-style-type: decimal;
  padding-left: 5px;
  margin-bottom: 10px;
}

.policy-contents .contents-box {
  width: 70%;
  padding: 30px;
  margin: 0 auto;
  background-color: #AAD7FB;
}

.policy-contents .contents-box h4 {
  margin-bottom: 15px;
  border-bottom: 1px solid #000;
  text-align: center;
  font-size: 110%;
  font-weight: 500;
}

.policy-contents .contents-box h4::before {
  content: "【";
}

.policy-contents .contents-box h4::after {
  content: "】";
}

.policy-contents .contents-box p {
  padding: 0;
  margin-bottom: 5px;
}

.policy-contents .contents-box p.mt30 {
  margin-top: 30px;
}

.policy-contents dl {
  padding: 0 20px;
  margin-bottom: 15px;
}

.policy-contents dl dt {
  margin-bottom: 5px;
  border-bottom: 1px dotted #000;
}

.policy-contents dl dd {
  padding-left: 1em;
  margin-bottom: 20px;
}

.policy-contents table {
  margin: 0 20px;
}

.policy-contents table th {
  padding: 10px;
  border: 1px solid #1357D7;
  background-color: #AAD7FB;
  text-align: center;
}

.policy-contents table td {
  padding: 10px;
  border: 1px solid #1357D7;
  vertical-align: middle;
}



/*レスポンシブ対応
---------------------------------------------------------------------------*/
@media only screen and (max-width:1000px) {
  /* ページヘッダー */
  header {
    padding: 15px 30px 20px;
  }

  .header-inner ul {
    display: none;
    align-items: center;
  }

  /* ページフッター */
  .footer-inner {
    width: 100%;
    display: block;
  }

  .footer-logo p {
    text-align: center;
  }

  .footer-logo p:not(:first-of-type) {
    padding-left: 0;
  }

  .footer-privacy {
    margin-top: 15px;
    text-align: center;
  }

  .footer-privacy span {
    display: block;
    margin-top: 5px;
  }

  .footer-privacy span a {
    text-decoration: underline;
  }

  footer nav {
    display: none;
  }


  /* オープニング */
  .opening-catch p:first-of-type {
    font-size: 180%;
  }

  .opening-catch p:last-of-type {
    font-size: 110%;
  }

  .opening-catch p br {
    display: inline;
  }

  .opening-logo img {
    width: 50%;
    max-width: 240px;
  }


  /* TOPページ */
  .catch01 {
    font-size: 220%;
  }

  .catch01 br {
    display: inline;
  }

  .catch02 {
    font-size: 130%;
  }

  .top-full02 {
    padding: 80px 0 100px;
  }

  .top-full02 h2 {
    font-size: 200%;
  }

  .top-full02 h2 br {
    display: inline;
  }

  .top-full02 h2 span {
    font-size: 70%;
  }

  .top-full02 .intoro01 {
    width: 90%;
  }

  .top-full02 .link-banner img {
    width: 90%;
    max-width: 780px;
  }

  .top-inner {
    width: 95%;
  }

  .top-full03 {
    padding: 80px 0 20px;
  }

  .top-full03 h2::after {
    width: 100%;
  }

  .top-full03 h2 span {
    line-height: 1.2;
  }

  .top-flex01 {
    display: block;
  }

  .top-flex01 li:first-of-type img {
    max-width: 260px;
  }

  .top-flex01 li:first-of-type .service-caption {
    width: 90%;
    margin-bottom: 30px;
  }

  .top-flex01 li:last-of-type {
    width: 90%;
    margin: 0 auto;
  }

  .service-item img {
    width: 90%;
  }

  .service-item h3 {
    width: 90%;
    margin: 0 auto 15px;
    line-height: 1.2;
  }

  .top-flex02 {
    display: block;
    justify-content: space-between;
  }

  .top-flex02 li {
    width: 80%;
    margin: 0 auto 50px;
  }

  .top-flex02 li:last-of-type {
    margin: 0 auto;
  }

  .top-full04 {
    padding: 50px 0 80px;
  }
  
  .top-full04 p.copyright {
    margin-top: 50px;
    color: #000;
    font-size: 90%;
    position: relative;
  }


  /* 下層ページ共通事項 */
  .page-title {
    height: 400px;
  }

  .page-title h2 {
    font-size: 250%;
    left: 15px;
  }

  .page-title h2 span {
    padding-left: 1em;
    font-size: 50%;
  }
  
  .sub-contents {
    width: 92%;
    padding: 50px 0;
  }


  /* 事業内容ページ */
  .service-list div {
    display: block;
  }

  .service-list div dt {
    margin-bottom: 20px;
  }

  .service-list div dt p {
    padding: 0;
  }

  .service-list div dt p.detail-link {
    width: 100%;
  }

  .service-list div dd {
    margin-bottom: 50px;
  }

  /* 生産者専用ホームページ制作サービスページ */
  .page-title.producers {
    background-position: 58% center;
  }

  .pd-concept {
    padding: 50px 10px;
  }

  .pd-concept h2,
  .pd-concept p {
    text-align: left;
  }

  .pd-flex {
    width: 92%;
    margin: 0 auto;
    display: block;
  }

  .pd-flex p:last-of-type {
    width: 90%;
    max-width: 550px;
    margin: 15px auto 0;
  }

  .pd-service3 {
    display: block;
  }

  .pd-service3 div.service01,
  .pd-service3 div.service02 {
    margin-bottom: 70px;
  }

  .step-flow li {
    display: block;
  }

  .step-flow li .step-label {
    display: block;
    padding: 10px 0;
    text-align: center;
  }

  .step-flow li .step-label span {
    display: inline;
  }

  .step-flow li .step-label span:last-of-type {
    font-size: 200%;
    font-weight: 700;
  }

  .faq-list div dt,
  .faq-list div dd {
    display: block;
    padding-left: 30px;
  }

  .faq-list div dt::before,
  .faq-list div dd::before {
    margin-left: -30px;
  }

  /* 組合案内ページ */
  .greeting-list {
    display: block;
  }

  .greeting-list li:first-of-type {
    padding: 0;
    margin: 0 0 30px;
  }

  .outline-list {
    display: block;
  }

  .outline-list li table {
    margin-bottom: 30px;
  }


  /* お問い合わせページ */
  .contact-form dl div {
    display: block;
  }


  /* 個人情報保護方針 */
  .policy-contents ol {
    padding: 0 50px;
  }

  .policy-contents .contents-box {
    width: 100%;
  }


  /* スマホ用ハンバーガー */
	#btn-burger-moba {
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 160;
		background: #fff;
		border: 1px solid #1357D7;
		cursor: pointer;
		border-radius: 50%;
		width: 50px;
		height: 50px;
	}

	#btn-burger-moba p {
		position: relative;
	}

	#btn-burger-moba span {
		display: inline-block;
		transition: all 400ms;/*アニメーションの設定*/
		position: absolute;
		left: 11px;
		height: 2px;
		border-radius: 5px;
		background: #1357D7;
		width: 55%;
	}

	#btn-burger-moba span:nth-of-type(1) {
		top: 16px;
	}

	#btn-burger-moba span:nth-of-type(2) {
		top: 24px;
	}

	#btn-burger-moba span:nth-of-type(3) {
		top: 32px;
	}

	#btn-burger-moba.active span:nth-of-type(1) {
		transform: translateX(-1px) translateY(8px) rotate(-45deg);
		width: 60%;
	}

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

	#btn-burger-moba.active span:nth-of-type(3) {
		transform: translateX(-1px) translateY(-8px) rotate(45deg);
		width: 60%;
	}

  #drawer-nav-moba.show {
		transform: translateX(-100%);
	}
}