@charset "UTF-8";
/**
 * *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-*
 *
 *  葱王
 *
 * *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-* *-*
**/

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700,900');
@import url('https://fonts.googleapis.com/earlyaccess/notosansjp.css');

@font-face {
  src: url('fonts/NotoSerifCJKjp-Regular-subset.eot');
  src: url('fonts/NotoSerifCJKjp-Regular-subset.woff') format("woff"),
       url('fonts/NotoSerifCJKjp-Regular-subset.ttf') format("truetype");
  font-family: NotoSerif-Regular;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  src: url('fonts/NotoSerifCJKjp-Medium-subset.eot');
  src: url('fonts/NotoSerifCJKjp-Medium-subset.woff') format("woff"),
       url('fonts/NotoSerifCJKjp-Medium-subset.ttf') format("truetype");
  font-family: NotoSerif-Medium;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  src: url('fonts/NotoSerifCJKjp-Light-subset.eot');
  src: url('fonts/NotoSerifCJKjp-Light-subset.woff') format("woff"),
       url('fonts/NotoSerifCJKjp-Light-subset.ttf') format("truetype");
  font-family: NotoSerif-Light;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "FontAwesome";
  src: url('fonts/fontawesome-webfont.eot');
  src: url('fonts/fontawesome-webfont.woff2') format('woff2'),
       url('fonts/fontawesome-webfont.woff') format('woff'),
       url('fonts/fontawesome-webfont.ttf') format('truetype'),
       url('fonts/fontawesome-webfont.svg#FontAwesome') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* ---------------------------------------------------------------------------
//  all
--------------------------------------------------------------------------- */
html { overflow-y: scroll; }

body {
  font-family: 'NotoSerif-Medium', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #111;
  line-height: 2.2;
  letter-spacing: 0.1em;
  background: #FFF;
}

a { transition: .3s; color: #111; }
a:hover { opacity: 0.7; }

.wrap { min-width: 1000px; height: 100%; margin: 0 auto; }
.inner { margin: 0 auto; }
ul.default li {
  text-indent: -1em;
  padding-left: 1em;
}
ol.default { counter-reset: li; }
ol.default > li { text-indent: -1.2em; padding-left: 1.2em; }
ol.default > li:before {
  content: counter(li) ".";
  counter-increment: li;
  padding-right: 5px;
}
img.ImgBlock { display: block; }
img.fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
}
.kome-red {
  color: #F32033;
  font-size: 12px;
}

/* ---------------------------------------------------------------------------
//  header
--------------------------------------------------------------------------- */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 22px 0 26px;
  z-index: 100;
}
header .inner {
  max-width: 1100px;
  min-width: 960px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
}
.head-bg {
  background: rgba(255,255,255,0.8);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 101px;
  z-index: 99;
  box-shadow: -1px 0 2px 2px rgba(0,0,0,0.1);
}

/* ---------------------------------------------------------------------------
//  nav
--------------------------------------------------------------------------- */
nav > ul {
  margin-top: 10px;
}
nav > ul > li {
  display: inline-block;
  font-size: 14px;
  font-family: 'NotoSerif-Regular', sans-serif;
  margin-left: 30px;
}
nav > ul > li:first-child {
  margin-left: 0;
}
nav > ul > li.active {
  border-bottom: 1px solid #333;
}

.news nav ul.shadow li,
.single nav ul.shadow li,
.concept nav ul.shadow li,
.feature nav ul.shadow li {
  text-shadow: 1px 0px 5px rgba(255,255,255,0.8),
               -1px 0px 5px rgba(255,255,255,0.8),
               0px 1px 5px rgba(255,255,255,0.8),
               0px -1px 5px rgba(255,255,255,0.8);
}
.pp nav ul.shadow li,
.recipe nav ul.shadow li {
  text-shadow: 1px 0px 5px rgba(0,0,0,0.8),
               -1px 0px 5px rgba(0,0,0,0.8),
               0px 1px 5px rgba(0,0,0,0.8),
               0px -1px 5px rgba(0,0,0,0.8);
}

nav ul.white li a { color: #FFF; }
nav ul.white li.active { border-bottom: 1px solid #FFF; }

nav .sub {
  visibility: hidden;
  opacity: 0;
  z-index: 998;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px;
  transition: 0.5s;
  pointer-events: none;
}
nav .drop {
  position: relative;
}
nav .drop > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(135deg);
  margin-left: 10px;
  vertical-align: 2px;
}
nav ul.white.shadow .drop > a::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
nav ul.white .drop > a::after {
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
nav .drop:hover .sub {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
  pointer-events: auto;
}


/* ---------------------------------------------------------------------------
//  footer
--------------------------------------------------------------------------- */
footer {
  width: 100%;
  background: #FFF;
}
footer .inner {
  width: 982px;
  margin: 0 auto;
  padding: 45px 0;
  display: flex;
  justify-content: space-between;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
}
footer .inner .name { width: 45%; }
footer .inner .info { width: 45%; }
footer .inner .info .menu { font-weight: 350; margin-top: 50px; }
footer .inner .info .menu li { display: inline-block; }
footer .inner .info .menu li::after {
  content: "|";
  padding: 1.5em;
}
footer .inner .info .menu li:last-child::after { content: none; }

footer .copyright {
  background: #053609;
  padding: 30px;
  text-align: center;
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 350;
  font-size: 10px;
}
footer .inner .name .partner-btn {
  display: inline-block;
  background: #053609;
  color: #fff;
  padding: 2px 20px;
  border-radius: 2px;
  margin: 10px 0;
}


/* ---------------------------------------------------------------------------
//  aside
--------------------------------------------------------------------------- */
aside {
  background: #FFF;
  color: #FFF;
  display: flex;
  justify-content: space-between;
}
aside a {
  display: block;
  color: #FFF;
}
aside h1 {
  font-family: 'NotoSerif-Regular', sans-serif;
  font-size: 34px;
  padding-left: 0.1em;
}
aside h1 + p {
  font-size: 13px;
  padding-left: 0.1em;
}
aside .brandstory {
  width: 50%;
  background: url(../img/aside_brandstory.jpg) center center / cover no-repeat;
  height: 340px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 0px 5px rgba(0,0,0,0.5),
               -1px 0px 5px rgba(0,0,0,0.5),
               0px 1px 5px rgba(0,0,0,0.5),
               0px -1px 5px rgba(0,0,0,0.5);
}
aside .action {
  width: 50%;
  background: url(../img/aside_action.jpg) center center / cover no-repeat;
  height: 340px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 0px 5px rgba(0,0,0,0.5),
               -1px 0px 5px rgba(0,0,0,0.5),
               0px 1px 5px rgba(0,0,0,0.5),
               0px -1px 5px rgba(0,0,0,0.5);
}

/* ---------------------------------------------------------------------------
//  top
--------------------------------------------------------------------------- */
.horacio {
  position: fixed;
  bottom: 40px;
  right: 50px;
  z-index: 10;
}

#top_movie {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  margin: 0 auto;
  width: 100%;
  height: 830px;
  z-index: -3;
}
#top_movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: -2;
}
#logo {
  position: fixed;
  top: 0;
  left: calc(50% - 350px);
  width: 700px;
  z-index: -1;
}
#topfade {
  margin: 0 auto;
  width: 700px;
  height: 830px;
  overflow: hidden;
  position: relative;
}

#topfade img {
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
}
#topfade02 { z-index: 50; }
#topfade03 { z-index: 49; }

#top_main {
  background: #FFF;
  margin-top: 840px;
  position: relative;
  z-index: 1;
}
#top_main .negi {
  position: absolute;
  top: -150px;
  left: calc(50% - 200px);
  z-index: 2;
}
#top_main .concept1 {
  padding-top: 160px;
  position: relative;
}
#top_main .concept1 .photo {
  width: 75%;
  height: 465px;
  background: url(../img/top_p01.jpg) center center / cover no-repeat;
}
#top_main .concept1 .heart {
  position: absolute;
  left: calc(75% - 138px);
  top: 300px;
  background: url(../img/top_h01.jpg) center center / 275px no-repeat;
  width: 275px;
  height: 380px;
}
#top_main .concept1 .heart .object {
  position: absolute;
  top: 0;
  left: 0;
}
#top_main .concept1 p {
  padding: 260px 0 0 40px;
  letter-spacing: 0;
}

#top_main .concept2 {
  padding-top: 140px;
  position: relative;
}
#top_main .concept2 .photo {
  width: 75%;
  height: 550px;
  background: url(../img/top_p02.jpg) center center / cover no-repeat;
  margin-left: auto;
}
#top_main .concept2 .heart {
  position: absolute;
  right: calc(75% - 138px);
  top: 350px;
  background: url(../img/top_h02.jpg) center center / 275px no-repeat;
  width: 275px;
  height: 380px;
}
#top_main .concept2 .heart .object {
  position: absolute;
  top: 0;
  left: 0;
}
#top_main .concept2 p {
  padding: 280px 0 0 60px;
  letter-spacing: 0;
}

#top_main .concept3 {
  padding-top: 140px;
  position: relative;
}
#top_main .concept3 .photo {
  width: 75%;
  height: 465px;
  background: url(../img/top_p03.jpg) center center / cover no-repeat;
}
#top_main .concept3 .heart {
  position: absolute;
  left: calc(75% - 138px);
  top: 140px;
  background: url(../img/top_h03.jpg) center center / 324px no-repeat;
  width: 324px;
  height: 315px;
}
#top_main .concept3 .heart .object {
  position: absolute;
  top: 0;
  left: 25px;
}
#top_main .concept3 p {
  padding: 210px 0 0 50px;
  letter-spacing: 0;
}

#top_main .toptext {
  padding: 130px 0 110px;
  text-align: center;
}
#top_main .toptext h1 {
  background: url(../img/negi_circle.png) center center no-repeat;
  height: 300px;
  text-align: center;
  padding-left: 0.1em;
  font-size: 45px;
  line-height: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#top_main .toptext .image {
  padding: 40px 0 50px;
}

#top_main .toptext h2 {
  padding-left: 0.2em;
  font-size: 55px;
  color: #185313;
  margin-top: 90px;
  letter-spacing: 0.2em;
}
#top_main .toptext ul {
  width: 960px;
  margin: 80px auto 0;
  display: flex;
  justify-content: space-between;
}
#top_main .toptext ul li a {
  position: relative;
  display: block;
}
#top_main .toptext h3 {
  font-size: 24px;
  padding-left: 0.1em;
  margin-top: 10px;
}
#top_main .toptext p {
  padding-left: 0.1em;
}
#top_main .toptext ul li a:after {
  content: "";
  display: block;
  width: 221px;
  height: 221px;
  position: absolute;
  top: 0;
  left: calc(50% - 111px);
}
#top_main .toptext ul li:nth-child(1) a:after { background: url(../img/toptext_concept_f.png) center center no-repeat; }
#top_main .toptext ul li:nth-child(2) a:after { background: url(../img/toptext_feature_f.png) center center no-repeat; }
#top_main .toptext ul li:nth-child(3) a:after { background: url(../img/toptext_action_f.png) center center no-repeat; }

#top_main .toptext ul li a:hover:after {
  animation: rotate-anime 3s linear infinite;
}
@keyframes rotate-anime {
  0%  { transform: rotate(0); }
  100%  { transform: rotate(360deg); }
}


#top_main .brandstory {
  background: url(../img/brandstory.jpg) center center / cover no-repeat;
  height: 560px;
  color: #FFF;
  text-align: center;
  padding-left: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top_main .brandstory h1 {
  font-family: 'NotoSerif-Regular', sans-serif;
  font-size: 40px;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
}

#top_main .brandstory a {
  display: block;
  color: #FFF;
}

#top_main .bigbnr {
  text-align: center;
}
#top_main .bigbnr a {
  display: inline-block;
}

#top_main .bigbnr h1 {
  font-family: 'NotoSerif-Regular', sans-serif;
  font-size: 40px;
  padding-left: 0.1em;
  margin-top: -50px;
}

#top_main .bigbnr .action {
  margin-top: 210px;
  position: relative;
}
#top_main .bigbnr .action .object {
  position: absolute;
  top: -130px;
  left: calc(50% + 230px);
}
#top_main .bigbnr .recipe {
  margin-top: 120px;
  padding-bottom: 155px;
  position: relative;
}
#top_main .bigbnr .recipe .object {
  position: absolute;
  bottom: 0;
  right: calc(50% + 300px);
}

#top_main .bigbnr .movie {
  margin-top: 120px;
  position: relative;
}
#top_main .bigbnr .movie .object {
  position: absolute;
  top: -130px;
  left: calc(50% + 230px);
}

#top_main .bigbnr .movies {
  width: 982px;
  margin: 40px auto 0; 
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
#top_main .bigbnr .movies > div {
  width: calc((100% - 40px * 1) / 2);
}
#top_main .bigbnr .movies .youtube {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  position: relative;
}
#top_main .bigbnr .movies .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#top_news {
  background: #f5f7ea;
  padding: 70px 0;
}
#top_news h1 {
  background: url(../img/negi2.png) center bottom no-repeat;
  font-size: 25px;
  text-align: center;
  padding-left: 0.1em;
  padding-bottom: 40px;
}
.news_list {
  background: #FFF;
  width: 982px;
  margin: 20px auto 0;
  padding: 40px 40px 10px;
}
#TOP.news .news_list { padding: 40px; }

.news_list dl {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
}
.news_list dl dt {
  width: 100px;
  float: left;
  clear: left;
}
.news_list dl dd { padding-left: 100px; }

.news_list dl + .more {
  display: table;
  margin: 10px auto 0;
  font-size: 13px;
  text-align: center;
  padding-left: 0.1em;
}

/* ---------------------------------------------------------------------------
//  common
--------------------------------------------------------------------------- */
section {
  padding: 130px 0;
}

#pageimage {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  margin: 0 auto;
  width: 100%;
  height: 390px;
  z-index: -1;
}
#TOP.concept #pageimage { background: url(../img/concept_image.jpg) center center / cover no-repeat; }
#TOP.company #pageimage { background: url(../img/company_image.jpg) center center / cover no-repeat; }
#TOP.recipe #pageimage { background: url(../img/recipe_image.jpg) center center / cover no-repeat; }
#TOP.farm #pageimage { background: url(../img/farm_image.jpg) center center / cover no-repeat; }
#TOP.story #pageimage { background: url(../img/story_image.jpg) center center / cover no-repeat; }
#TOP.story.action #pageimage { background: url("../img/action.png") center center / cover no-repeat; }
#TOP.feature #pageimage { background: url(../img/feature_image.jpg) center center / cover no-repeat; }
#TOP.under #pageimage { background: url(../img/under_image.jpg) center center / cover no-repeat; }
#TOP.news #pageimage { background: url(../img/news_image.jpg) center center / cover no-repeat; }
#TOP.single #pageimage { background: url(../img/single_image.jpg) center center / cover no-repeat; }
#TOP.contact #pageimage { background: url(../img/contact_image.jpg) center center / cover no-repeat; }
#TOP.pp #pageimage { background: url(../img/pp_image.jpg) center center / cover no-repeat; }

main {
  background: #FFF;
  margin-top: 390px;
  width: 100%;
}

.pagetitle { padding: 140px 0 90px; }
.pagetitle h1 {
  background: url(../img/icon_title.png) center top / 20px no-repeat;
  font-family: 'NotoSerif-Regular', sans-serif;
  font-size: 56px;
  letter-spacing: 0.2em;
  text-align: center;
  padding-left: 0.2em;
  padding-top: 8px;
}
.farm .pagetitle h1,
.feature .pagetitle h1 {
  font-size: 45px;
  padding-top: 10px;
}

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

/* ---------------------------------------------------------------------------
//  page
--------------------------------------------------------------------------- */
.under .under1 { text-align: center; }

#sec-green { background: #f5f7ea; }

.concept .concept1 h1 {
  text-align: center;
  padding-left: 0.1em;
  font-size: 40px;
  color: #185313;
}
.concept .concept1 h1 br { display: none; }

.concept .concept1 h1 + p {
  text-align: center;
  padding-left: 0.1em;
  margin-top: 30px;
}
.concept .concept1 h2 {
  text-align: center;
  padding-left: 0.1em;
  font-size: 24px;
  color: #185313;
  line-height: 1.8;
  margin-top: 130px;
  margin-bottom: 40px;
}
.concept .concept1 .center {
  text-align: center;
}

.concept .concept2 {
  text-align: center;
  padding: 210px 0;
  position: relative;
  overflow: hidden;
}
.concept .concept2 h1 {
  font-size: 24px;
  margin-bottom: 50px;
  position: relative;
}
.concept .concept2 h1::after {
  content: "";
  position: absolute;
  width: 60px;
  left: calc(50% - 30px);
  bottom: -20px;
  border-bottom: 1px solid #828282;
}
.concept .concept2 .heart1 h1 span { color: #195414; }
.concept .concept2 .heart2 h1 span { color: #cd605e; }
.concept .concept2 .heart3 h1 span { color: #de8926; }
.concept .concept2 .heart3 h1 br { display: none; }

.concept .concept2 .heart1 {
  background: url(../img/concept1.png) center top / 142px no-repeat;
  padding-top: 190px;
  position: relative;
}
.concept .concept2 .heart1 .parts {
  position: absolute;
  top: 0;
  left: calc(50% - 71px);
}
.concept .concept2 .heart2 {
  background: url(../img/concept2.png) center top / 142px no-repeat;
  padding-top: 190px;
  position: relative;
  margin-top: 200px;
}
.concept .concept2 .heart2 .parts {
  position: absolute;
  top: 0;
  left: calc(50% - 71px);
}
.concept .concept2 .heart3 {
  background: url(../img/concept3.png) center top / 142px no-repeat;
  padding-top: 190px;
  position: relative;
  margin-top: 200px;
}
.concept .concept2 .heart3 .parts {
  position: absolute;
  top: 0;
  left: calc(50% - 71px);
}

.concept .object { position: absolute; }
.concept .object.circle1 { top: 260px; left: calc(50% + 290px); }
.concept .object.circle2 { top: 360px; left: calc(50% - 580px); }
.concept .object.circle3 { top: 640px; left: calc(50% - 460px); }
.concept .object.circle4 { top: 1000px; left: calc(50% + 380px); }
.concept .object.circle5 { top: 1220px; left: calc(50% + 230px); }
.concept .object.circle6 { top: 1550px; left: calc(50% - 530px); }
.concept .object.circle7 { top: 1700px; left: calc(50% + 280px); }


/* --------------------------------------------------------------------------- */

.company .company1 .inner {
  width: 700px;
  margin: 0 auto;
}
.company .company1 .content {
  width: 475px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
}

.company .company1 h1 {
  font-size: 24px;
  line-height: 1.6;
  color: #185313;
  width: 225px;
  position: relative;
}
.company .company1 h1::after {
  content: "";
  border-right: 1px solid #185313;
  height: 24px;
  position: absolute;
  top: 8px;
  right: 60px;
}

.company .company1 ul li {
  margin-top: 25px;
  background: #185313;
  border-radius: 3px;
  padding: 20px 25px;
  color: #FFF;
}

.company .company1 dl dt {
  width: 88px;
  float: left;
  clear: left;
}
.company .company1 dl dd {
  padding-left: 88px;
}
.company .company1 .about {
  margin-top: 120px;
}

/* --------------------------------------------------------------------------- */

.recipe .recipe1 .inner,
.recipe .recipe2 .inner {
  width: 980px;
  margin: 0 auto;
}

.recipe .recipe1 .inner { position: relative; }

.recipe .recipe1 h1 {
  font-size: 40px;
  line-height: 1.6;
  color: #185313;
}
.recipe .recipe1 .negi1 {
  position: absolute;
  top: -205px;
  right: -100px;
}
.recipe .recipe1 .negi2 {
  position: absolute;
  bottom: -130px;
  right: 60px;
}

.recipe .recipe2 .inner {
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse nowrap;
}
.recipe .recipe2 .image {
  margin-right: 45px;
}
.recipe .recipe2 .text p {
  line-height: 2.5;
}


.recipe .recipe-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  border-top: 1px solid #000;
}
.recipe .recipe-note h1 {
  font-family: 'NotoSerif-Medium', sans-serif;
  color: #185313;
  font-size: 24px;
}
.recipe .recipe-note h1::before {
  content: "";
  background: url(../img/icon_title.png) center center / cover no-repeat;
  display: inline-block;
  width: 20px;
  height: 24px;
  position: relative;
  top: 2px;
  left: 0;
  margin-right: 10px;
}
.recipe .recipe-note h2 {
  color: #185313;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 10px;
}
.recipe .recipe-note h3 {
  color: #000;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 25px;
}
.recipe .recipe-note dl dt {
  width: 120px;
  float: left;
  clear: left;
}
.recipe .recipe-note dl dd {
  padding-left: 120px;
}
.recipe .recipe-note ul li {
  margin-bottom: 5px;
  letter-spacing: 0;
}


.recipe .recipe3 .inner,
.recipe .recipe5 .inner {
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
}
.recipe .recipe3 .text,
.recipe .recipe5 .text {
  width: 490px;
  margin-right: auto;
  margin-left: 60px;
  padding: 0 35px;
}
.recipe .recipe3 .image {
  width: calc(50% - 60px);
  height: 574px;
  background: url(../img/recipe-p01.jpg) center center / cover no-repeat;
}
.recipe .recipe5 .image {
  width: calc(50% - 60px);
  height: 574px;
  background: url(../img/recipe-p03.jpg) center center / cover no-repeat;
}


.recipe .recipe4 .inner {
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse nowrap;
}
.recipe .recipe4 .text {
  width: 490px;
  margin-right: 60px;
  margin-left: auto;
  padding: 0 35px;
}
.recipe .recipe4 .image {
  width: calc(50% - 60px);
  height: 574px;
  background: url(../img/recipe-p02.jpg) center center / cover no-repeat;
}

/* --------------------------------------------------------------------------- */

section.farm-note {
  padding: 0 0 150px;
}
.farm .farm-note .inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
}
.farm .farm-note .image .inner {
  height: 558px;
}

.farm .farm1 h1 {
  text-align: center;
  padding-left: 0.1em;
  font-size: 40px;
  color: #185313;
}
.farm .farm1 h1 + p {
  text-align: center;
  padding-left: 0.1em;
  margin-top: 30px;
}

.farm .farm-note h1 {
  font-family: 'NotoSerif-Light', sans-serif;
  font-size: 31px;
  line-height: 1.6;
  font-weight: normal;
  position: absolute;
  bottom: 20px;
  left: 35px;
}

.farm .farm2 h1 { color: #FFF; }
.farm .farm2 .image {
  background: url(../img/farm-p10.jpg) center center / cover no-repeat;
  height: 558px;
}
.farm .farm3 h1 {
  text-shadow: 1px 0px 5px rgba(255,255,255,0.8),
               -1px 0px 5px rgba(255,255,255,0.8),
               0px 1px 5px rgba(255,255,255,0.8),
               0px -1px 5px rgba(255,255,255,0.8);
}
.farm .farm3 .image {
  background: url(../img/farm-p20.jpg) center center / cover no-repeat;
  height: 558px;
}
.farm .farm4 h1 { color: #FFF; }
.farm .farm4 .image {
  background: url(../img/farm-p30.jpg) center center / cover no-repeat;
  height: 558px;
}


.farm .farm-note .farm-content {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
  padding: 0 35px;
}

.farm .farm-note .text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  width: 455px;
  padding-right: 40px;
}
.farm .farm-note .photo {
  width: 455px;
  padding-left: 40px;
}
.farm .farm-note .photo div {
  width: 46%;
  display: inline-block;
}
.farm .farm-note .photo div:first-child { margin-right: 8%; }


/* --------------------------------------------------------------------------- */

section.story2.ep2,
section.story4.ep4 {
  padding: 0 0 130px;
}
section.story3 {
  padding: 0;
}

.story .story1 h1 {
  text-align: center;
  padding-left: 0.1em;
  line-height: 1.8;
  font-size: 40px;
  color: #185313;
}
.story .story1 h1 + p {
  text-align: center;
  padding-left: 0.1em;
  margin-top: 30px;
}

.story .story2 .inner {
  width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
  padding: 0 35px;
}
.story .story4 .inner {
  width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse nowrap;
  padding: 0 35px;
}
.story .story2 .text {
  width: 490px;
  margin-left: 60px;
}
.story .story2 .photo {
  width: 490px;
  margin-right: 60px;
  margin-top: 48px;
}
.story .story4 .text {
  width: 490px;
  margin-right: 60px;
}
.story .story4 .photo {
  width: 490px;
  margin-left: 60px;
  margin-top: 48px;
}
.story .story2 .text .ep,
.story .story4 .text .ep {
  font-family: 'NotoSerif-Regular', sans-serif;
  font-size: 12px;
  margin-bottom: 10px;
}
.story .story2 .text h1,
.story .story4 .text h1 {
  font-size: 24px;
  color: #185313;
  line-height: 1.8;
  margin-bottom: 30px;
}
.story .story2 .text p,
.story .story4 .text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
}

.story .story3 .photo {
  background: url(../img/story-photo.jpg) center center / cover no-repeat;
  height: 558px;
}

/* --------------------------------------------------------------------------- */

.feature section {
  padding: 0 0 130px;
}

.feature .feature-left .inner {
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse nowrap;
  align-items: center;
}
.feature .feature-right .inner {
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
  align-items: center;
}
.feature .feature-left .image,
.feature .feature-right .image {
  width: calc(50% + 60px);
  height: 494px;
}
.feature .feature-left .text {
  width: 430px;
  padding-left: 60px;
  margin-right: auto;
}
.feature .feature-right .text {
  width: 430px;
  padding-right: 60px;
  margin-left: auto;
}
.feature .feature-left .text p,
.feature .feature-right .text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
}

.feature .feature-left .text h1,
.feature .feature-right .text h1 {
  background: url(../img/negi_circle.png) center center / cover no-repeat;
  width: 210px;
  height: 210px;
  text-align: center;
  letter-spacing: 0;
  font-size: 24px;
  color: #185313;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
}

.feature .feature1 .image { background: url(../img/feature-p01.jpg) center center / cover no-repeat; }
.feature .feature3 .image { background: url(../img/feature-p03.jpg) center center / cover no-repeat; }
.feature .feature4 .image { background: url(../img/feature-p04.jpg) center center / cover no-repeat; }
.feature .feature5 .image { background: url(../img/feature-p05.jpg) center center / cover no-repeat; }

.feature .feature2 .image {
  border-top: 1px solid #185313;
  border-bottom: 1px solid #185313;
}
.feature .feature2 h2 {
  font-size: 24px;
  color: #185313;
  margin-top: 8px;
}

/* --------------------------------------------------------------------------- */

.pp .pp1 .inner {
  width: 700px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
}
.pp .pp1 h1 {
  font-size: 13px;
  color: #185313;
  font-weight: 700;
  margin-top: 40px;
}

.single .single1 .inner {
  width: 700px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
}
section.single1 {
  padding: 60px 0;
}
.single .single1 h1 {
  font-size: 24px;
  color: #185313;
  font-weight: 700;
  margin-top: 10px;
}
.news-backbtn {
  width: 700px;
  margin: 0 auto;
  padding: 60px 0 130px;
}
.news-backbtn ul li a {
  display: block;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 12px;
  color: #FFF;
}
.news-backbtn ul li.back1 a { background: #bc6260; float: left; }
.news-backbtn ul li.back2 a { background: #185313; float: right; }

.contact .contact1 .inner {
  width: 980px;
  margin: 0 auto;
}
.contact .contact1 h1 {
  text-align: center;
  padding-left: 0.1em;
  font-size: 28px;
  color: #185313;
}
.contact .contact1 h1 + p {
  text-align: center;
  padding-left: 0.1em;
  margin-top: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
}

.contact .contact2 .inner {
  width: 700px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
}
.mailform dl dt {
  width: 160px;
  float: left;
  clear: left;
  padding-top: 5px;
  color: #185313;
}
.mailform dl dd {
  padding: 0 0 0 180px;
  margin-bottom: 30px;
}
.mailform input[type="text"],
.mailform input[type="email"],
.mailform input[type="tel"] {
  font-family: 'Noto Sans JP';
  font-size: 13px;
  padding: 6px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #185313;
}
.mailform input.postal { width: 150px; }

.mailform textarea {
  font-family: 'Noto Sans JP';
  font-size: 13px;
  padding: 6px;
  width: 100%;
  height: 250px;
  box-sizing: border-box;
  border: 1px solid #185313;
}

.mailform .button {
  margin: 60px 0 0;
  text-align: center;
}

.mailform input[type="submit"] {
  font-family: 'Noto Sans JP';
  background: #bc6260;
  border: none;
  padding: 20px 0;
  width: 300px;
  font-size: 16px;
  color: #FFF;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
}
.mailform input[type="submit"]:hover { opacity: 0.7; }
.mailform input[type="submit"]:active { opacity: 0.7; top: 1px; }

/* --------------------------------------------------------------------------- */

#loading {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFF;
  z-index: 1000;
}
#loading-inner {
  display: none;
  position: fixed;
  left: calc(50% - 59px);
  top: calc(50% - 59px);
  width: 118px;
  height: 118px;
  text-align: center;
  line-height: 4;
  z-index: 1002;
}
#loading-inner:after {
  content: "";
  background: url(../img/loading-negi.png) center center no-repeat;
  display: block;
  width: 118px;
  height: 118px;
  position: absolute;
  top: 0;
  left: calc(50% - 59px);
  animation: rotate-anime 3s linear infinite;
}

/* --------------------------------------------------------------------------- */

aside .feature {
	width: 50%;
    background: url("../img/aside_feature.png") center center / cover no-repeat;
    height: 340px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 0px 5px rgba(0,0,0,0.5), -1px 0px 5px rgba(0,0,0,0.5), 0px 1px 5px rgba(0,0,0,0.5), 0px -1px 5px rgba(0,0,0,0.5);
}

aside .farm {
	width: 50%;
    background: url("../img/aside_farm.png") center center / cover no-repeat;
    height: 340px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 0px 5px rgba(0,0,0,0.5), -1px 0px 5px rgba(0,0,0,0.5), 0px 1px 5px rgba(0,0,0,0.5), 0px -1px 5px rgba(0,0,0,0.5);
}




/*add200807*/
.border-none{
  border:none;
  border-top: none!important;
}
.recipe-contents {
  
  font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-top: 1px solid #000;
  text-align: center;
  color: #141414;
}
.recipe-contents .inner{
  flex-flow: wrap!important;
  flex-wrap: wrap!important;
  width: 100%;
}
.recipe-contents .inner:first-of-type{
  margin-bottom: 120px;
}
.recipe3 h1{
  font-size: 32px;
  width: 100%;
  margin-bottom: 35px;
}
.recipe3 h2{
  font-size: 14px;
  font-weight: normal;
  margin: 0 auto 80px auto;
  width: 100%;
}
.recipe3 h2 span{
  position: relative;
  display: inline-block;
  padding: 0 55px;
}

.recipe3 h2 span:before, .recipe3 h2 span:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}

.recipe3 h2 span:before {
  left:0;
}
.recipe3 h2 span:after {
  right: 0;
}
.recipe-contents .box-wrap{
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  margin: auto;
  max-width: 1600px;
}
.recipe-contents .box-wrap .box{
  width: 32%;
}
.recipe-contents .box-wrap .box .img-wrap{
  margin-bottom: 30px;
}
.recipe-contents .box-wrap .box img{
  max-width: 100%;
  height: auto;
}
.recipe-contents .box-wrap .box h3{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.recipe-contents .box-wrap .box p{
  font-weight: normal;
}


.recipe-archive {
  font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-top: 1px solid #000;
  text-align: center;
  color: #141414;
  padding: 0 0 120px 0;
  border-top: none;
}

.recipe-archive .inner{
  flex-flow: wrap!important;
  flex-wrap: wrap!important;
  width: 980px;
    margin: 0 auto;
  
}
.recipe-archive .archive-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: auto;
}
.recipe-archive .archive-box .recipe-link{
  width: calc(25% - 20px);
  margin: 10px;
  margin-bottom: 20px;
}
.recipe-archive .archive-box .img-wrap{
}
.recipe-archive .archive-box img{
  max-width: 100%;
  height: auto;
}
.recipe-archive .archive-box p{
  font-weight: normal;
}
.bnr-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
}
.bnr-links img{
  max-width: 100%;
  height: auto;
}
.bnr-links .bnr-link{
  width: 45%;
  text-align: center;
}
.bnr-links .bnr-link{
  display: block;
}


.single-recipe{
  width: 980px;
  margin: auto;
  text-align: left;
}
.single-recipe .col-2 {
  border-bottom: solid 1px;
}
.single-recipe .col-2:last-of-type{
  border-bottom: none;
}
.single-recipe .col-2 .wp-block-column{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  display: block;
}
.single-recipe .col-2 .wp-block-column p{
  margin-bottom: 10px
}
.single-recipe .col-2 .wp-block-column .wp-block-image{
  margin-top: auto;
}

.bg-gray{
background: #FAF9F3;
}

.link-btn{
  font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-top: 1px solid #000;
  text-align: center;
  color: #141414;
}
.link-btn h1{
  font-size: 24px;
  width: 100%;
  margin-bottom: 10px;
}
.link-btn h2{
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.link-btn a{
  padding:  20px 40px;
  border: solid #053709;
  background: #f7f7f7;
  font-size: 18px;
  color: #053709;
  max-width: 500px;
  width: 100%;
}

.pb-none{
  padding-bottom: 0px;
}

.season-link{
	display: flex;
	gap:20px;
	width: 100%;
	padding: 0 10px 60px;;
}
.season-link a{
	width: calc((100% - 60px) / 4);
	height: 50px;
	font-size: 16px;
	border: solid 1px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.season-link a.spring{
	color: #03963C;
}
.season-link a.summer{
	color: #DE7961;
}
.season-link a.autumn{
	color: #C6865E;
}
.season-link a.winter{
	color: #618EB5;
}
.season-link a.active{
	pointer-events: none;
}
.season-link a.spring.active,.season-link a.spring:hover{
	background: #03963C;
	color: #fff;
	border: solid 1px #03963C;
}
.season-link a.summer.active,.season-link a.summer:hover{
	background: #DE7961;
	color: #fff;
	border: solid 1px #DE7961;
}
.season-link a.autumn.active,.season-link a.autumn:hover{
	background: #C6865E;
	color: #fff;
	border: solid 1px #C6865E;
}
.season-link a.winter.active,.season-link a.winter:hover{
	background: #618EB5;
	color: #fff;
	border: solid 1px #618EB5;
}


/* 2026.07 */
#TOP.products #pageimage { background: url(../img/products_image.jpg) center center / cover no-repeat; }
#TOP.patent #pageimage { background: url(../img/patent_image.jpg) center center / cover no-repeat; }
#TOP.glutathione #pageimage { background: url(../img/glutathione_image.jpg) center center / cover no-repeat; }
#TOP.partner #pageimage { background: url(../img/products_image.jpg) center center / cover no-repeat; }

.products .products1 .inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
}
.products .products1 h1 {
  text-align: center;
  line-height: 1.8;
  font-size: 40px;
  font-weight: 500;
  color: #185313;
}
.products .products1 .image1 {
  width: 260px;
  position: absolute;
  left: -85px;
  top: -195px;
}
.products .products1 .image2 {
  width: 268px;
  position: absolute;
  right: -85px;
  bottom: -195px;
}

.products .products2 .inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.products .products2 .btn {
  width: 290px;
  border: 1px solid #185313;
  border-radius: 2px;
  padding: 12px 12px 12px 35px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #185313;
  position: relative;
}
.products .products2 .btn::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  right: 12px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #185313;
  border-right: 2px solid #185313;
  transform: rotate(135deg);
}
.products .products2 .btn1::before {
  content: "";
  display: block;
  background: url(../img/products2-btn1.png) center center / contain no-repeat;
  width: 52px;
  height: 74px;
  position: absolute;
  top: -15px;
  left: 20px;
}
.products .products2 .btn2::before {
  content: "";
  display: block;
  background: url(../img/products2-btn2.png) center center / contain no-repeat;
  width: 91px;
  height: 70px;
  position: absolute;
  top: -15px;
  left: -50px;
}
.products .products2 .btn3::before {
  content: "";
  display: block;
  background: url(../img/products2-btn3.png) center center / contain no-repeat;
  width: 73px;
  height: 66px;
  position: absolute;
  top: -15px;
  left: -20px;
}

.products .products3 {
  padding-bottom: 20px;
}
.products .products3 .inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.products .products3 .photo {
  width: 460px;
}
.products .products3 .text {
  flex: 1;
}
.products .products3 .text h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  color: #185313;
  margin-bottom: 15px;
}
.products .products3 .text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.products .products3 .text p + p {
  margin-top: 18px;
}
.products .products3 .text .gram {
  margin-top: 18px;
  display: flex;
  gap: 5px;
}
.products .products3 .text .gram li {
  width: 73px;
  border: 1px solid #185313;
  border-radius: 100px;
  padding: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: #185313;
}

.products4 .bnr {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 758px;
  height: 150px;
  border: 1px solid #185313;
  background: #F5F7EA;
  position: relative;
}
.products4 .bnr p {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  color: #185313;
}
.products4 .bnr p span {
  display: inline-block;
  background: #185313;
  border-radius: 100px;
  padding: 0 1em;
  color: #fff;
  margin-right: 5px;
}
.products4 .bnr .image1 {
  width: 132px;
  position: absolute;
  left: -40px;
  top: -20px;
}
.products4 .bnr .image2 {
  width: 159px;
  position: absolute;
  right: -45px;
  bottom: -55px;
}

/* --------------------------------------------------------------------------- */

.patent .patent1 .inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
}
.patent .patent1 h1 {
  text-align: center;
  padding-left: 0.1em;
  line-height: 1.8;
  font-size: 40px;
  font-weight: 500;
  color: #185313;
}
.patent .patent1 .image {
  width: 600px;
  margin: 40px auto 0;
}

.patent .patent2:not(:last-child) {
  padding-bottom: 20px;
}
.patent .patent2 .inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 90px;
}
.patent .patent2 .photo {
  width: 410px;
}
.patent .patent2 .text {
  flex: 1;
}
.patent .patent2 .text .image {
  margin-top: 40px;
}
.patent .patent2 .text h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  color: #185313;
  margin-bottom: 15px;
}
.patent .patent2 .text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
}

/* --------------------------------------------------------------------------- */

.glutathione .glutathione1 .inner {
  width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
}
.glutathione .glutathione1 h1 {
  line-height: 1.8;
  font-size: 40px;
  font-weight: 500;
  color: #185313;
  flex: 1;
}
.glutathione .glutathione1 .image {
  width: 100px;
}

.glutathione .glutathione2.pb20 {
  padding-bottom: 20px;
}
.glutathione .glutathione2 .inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 90px;
}
.glutathione .glutathione2 .photo {
  width: 410px;
}
.glutathione .glutathione2 .text {
  flex: 1;
}
.glutathione .glutathione2 .text .image {
  margin-top: 40px;
}
.glutathione .glutathione2 .text h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  color: #185313;
  margin-bottom: 15px;
}
.glutathione .glutathione2 .text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.glutathione .glutathione3 {
  padding-bottom: 0;
  background: url(../img/glutathione4-bg.jpg) center center / cover no-repeat;
  padding: 80px 0;
}
.glutathione .glutathione3 h2 {
  text-align: center;
  line-height: 2.2;
  font-size: 26px;
  font-weight: 500;
  color: #185313;
}

/* --------------------------------------------------------------------------- */

.partner .partner1 {
  padding: 70px 0;
}
.partner .partner1 h1 {
  text-align: center;
  line-height: 1.8;
  font-size: 40px;
  font-weight: 500;
  color: #185313;
}

.partner .partner2 {
  padding-bottom: 20px;
}
.partner .partner2 .inner {
  width: 980px;
  margin: 0 auto;
}
.partner .partner2 h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  color: #185313;
  margin-bottom: 15px;
}
.partner .partner2 p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.partner .partner2 .btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
.partner .partner2 .btns .btn {
  width: 470px;
  border: 1px solid #185313;
  border-radius: 2px;
  padding: 14px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #185313;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.partner .partner2 .btns .btn.tel::before {
  content: "";
  width: 16px;
  height: 22px;
  background: url(../img/icon-tel.png) center center / contain no-repeat;
}
.partner .partner2 .btns .btn.mail::before {
  content: "";
  width: 33px;
  height: 24px;
  background: url(../img/icon-mail.png) center center / contain no-repeat;
}

.partner .partner3 .inner {
  width: 980px;
  margin: 0 auto;
}
.partner .partner3 .pdf_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px 40px;
}
.partner .partner3 .pdf_item {
  width: 300px;
  font-family: 'Noto Sans JP', sans-serif;
}
.partner .partner3 .pdf_item .image {
  border: 1px solid #185313;
  border-radius: 2px;
  padding: 15px;
  margin-bottom: 10px;
}
.partner .partner3 .pdf_item h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #185313;
}
.partner .partner3 .pdf_item p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
.partner .partner3 .pdf_item .dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 145px;
  background: #185313;
  padding: 8px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}
.partner .partner3 .pdf_item .dl-btn::before {
  content: "";
  width: 15px;
  height: 11px;
  background: url(../img/icon-dl.png) center center / contain no-repeat;
}

.partner .password_form {
  padding: 300px 0;
  max-width: 980px;
  margin: 0 auto;
}