@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
  visibility: hidden;
}
html.wf-active, html.loading-delay {
  visibility: visible;
}
body {
  color: #222;
  background: #fff;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 1.6rem;
}

h2 {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(3.2rem, 2.2rem + 2vw, 4.2rem);
  letter-spacing: 0.04em;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
textarea {
  vertical-align: top;
}
input[type="button"], input[type="text"], input[type="submit"], input[type="image"], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
	border-width: inherit;
}
input[type="submit"] {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
@media (max-width:950px) {
  .br-pc {
    display: none;
  }
}
/* Inview */
.fadeIn {
  opacity: 0;
  transition: 1.5s;
}
.fadeIn.is-show {
  opacity: 1;
}
@media (max-width:950px) {
  .fadeIn_up {
    opacity: 0;
    transform: translate(0, 50%);
    transition: 2s;
  }
  .fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* header */
header {
  position: fixed;
  height: clamp(6.4rem, 4.8rem + 3.2vw, 8rem);
  z-index: 90;
  width: 100%;
  transition: .3s;
	background-color: rgba(255, 255, 255, 0.9);
}
.header {
  height: clamp(6.4rem, 4.8rem + 3.2vw, 8rem);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  max-width: 1280px;
  top: 0;
  left: 0;
  
  transition: .3s;
}
.header_small {
  height: clamp(4rem, 2rem + 4vw, 6rem);
}
.header-logo {
  margin-left: 25px;
  max-width: 140px;
  width: 8em;
}
.logo_small {
  width: 6em;
}
.header-nav_menu {
  display: flex;
  font-family: "futura-pt", sans-serif;
  font-size: 2.2rem;
  vertical-align: middle;
}
.header-nav_menu li {
  margin-right: 50px;
}
.header-nav_menu li:last-child {
  margin-right: 10px;
}
.header-nav_menu li a {
  color: #3a3a3a;
  position: relative;
  padding: 12px 0;
}
.header-nav_menu li a:hover {
  opacity: 0.5;
}
.header-nav_menu li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #3a3a3a;
  bottom: 1px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.header-nav_menu li a:hover::after {
  visibility: visible;
  bottom: 10px;
  opacity: 0.5;
}
.header-place {
  height: clamp(6.4rem, 4.8rem + 3.2vw, 8rem);
  display: block;
}
@media (max-width:599px) {
  .header {
    height: 54px;
  }
  .header-place {
    height: 54px;
  }
  .header_small {
    height: 40px;
  }
  .header-logo {
    width: 90px;
  }
  .logo_small {
    width: 70px;
  }
}
/* ハンバーガーbutton */
@media (max-width: 1024px) {
  .header-nav_menu {
    padding-top: 95px;
    display: block;
    flex-flow: column;
  }
  .header-nav_menu img {
    display: none;
  }
  #toggle {
    position: fixed;
    top: clamp(2.1rem, 1.513rem + 1.565vw, 3rem);
    right: 25px;
    transition: .3s;
  }
  #toggle-box {
    position: relative;
    width: 35px;
    height: 18px;
    cursor: pointer;
  }
  #toggle-box > span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: #707070;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
  }
  #toggle-box > span:nth-child(1) {
    top: 0;
  }
  #toggle-box > span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
  }
  #toggle-box > span:nth-child(3) {
    bottom: 0;
  }
  #toggle {
    z-index: 1000;
  }
  #main {
    position: relative;
    z-index: 990;
  }
  #nav-content {
    z-index: 900;
    overflow: auto;
    width: 60%;
    height: 100%;
    background: #FDFDFD;
    color: #555;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  #nav-content ul {
    list-style: none;
  }
  #nav-content li {
    margin-right: 0;
    border-bottom: solid 1px #d1cbb9;
  }
  #nav-content li:first-child {
    border-top: solid 1px #d1cbb9;
  }
  #nav-content li:hover {
    background: #d1cbb9;
  }
  #nav-content li a {
    display: block;
    color: #767674;
    text-decoration: none;
    margin: 0 0 0 20%;
    transition: opacity .6s ease;
    letter-spacing: 0.1rem;
    text-align: left;
    padding: 20px 0;
    transition: all .5s ease 0s;
  }
  #nav-content li a:hover {
    color: #fff;
    opacity: 1;
    transform: scale(1.1);
  }
  .is-open {
    overflow: hidden;
    z-index: 1000;
  }
  .is-open #toggle {
    top: 25px;
  }
  .is-open #toggle-box > span {
    background: #212121;
    width: 20px;
  }
  .is-open #toggle-box > span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translatey(-50%);
  }
  .is-open #toggle-box > span:nth-child(2) {
    width: 0;
  }
  .is-open #toggle-box > span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg) translatey(-50%);
  }
  .is-open #nav-content {
    z-index: 999;
    transform: translateX(0);
    box-shadow: 0px 3px 99px #1A1A1A29;
  }
  .overlay {
    background: black;
    height: 100vh;
  }
  .header-nav_menu li a:hover::after {
    visibility: hidden;
  }
}
/* top */
.top {
  background-image: url("../images/top/top-bg@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.top img {
  max-height: 330px;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  animation: fuwafuwa_1 5s ease 0s infinite;
}
@keyframes fuwafuwa_1 {
  0% {
    transform: translate(-50%, -42%);
  }
  50% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -42%);
  }
}
.top p {
  color: #4e6280;
  font-size: clamp(1.3rem, 0.8rem + 1vw, 1.8rem);
  font-family: "fot-cezanne-pron", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 2.1;
  letter-spacing: 0.2em;
  text-align: center;
}
@media (max-width:599px) {
  .top {
    height: 320px;
  }
  .top img {
    height: 68%;
  }
  .top p {
    letter-spacing: 0.08em;
  }
}
/* service */
.service {
  padding: clamp(6.4rem, 4.8rem + 3.2vw, 8rem) 0 90px;
  border-bottom: solid 1px #d1cbb9;
}
.service h2 {
  text-align: center;
  margin-bottom: 85px;
}
.service-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.service-flex_left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.service-flex_left img {
  width: clamp(10rem, 8rem + 4vw, 12rem);
  margin-bottom: 40px;
}
.service-flex_left p {
  font-size: 1.4rem;
  line-height: 1.7;
  width: 305px;
}
.service-flex_right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.service-flex_right p {
  line-height: 2.25;
  margin-bottom: 5%;
  font-size: clamp(1.4rem, 1.2rem + 0.4vw, 1.6rem);
}
.service-flex_right_frame {
  width: clamp(30rem, 25.5rem + 9vw, 34.5rem);
  background-image: url("../images/service/frame@2x.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.service-flex_right ul {
  margin: 50px 0 80px;
}
.service-flex_right_frame ul li {
  font-size: clamp(1.8rem, 1.4rem + 0.8vw, 2.2rem);
  width: 220px;
  margin: 0 auto;
  text-align: center;
  border-bottom: solid 1px #d1cbb9;
  line-height: 2.5;
  font-weight: 600;
}
.service-flex_right_frame ul li:last-child {
  border-bottom: none;
}
.service-flex_right span {
  letter-spacing: 0.02em;
}
@media (max-width:950px) {
  .service h2 {
    margin-bottom: clamp(3.8rem, 0.735rem + 8.174vw, 8.5rem);
  }
  .service-flex {
    flex-direction: column;
  }
  .service-flex_left, .service-flex_right {
    width: 100%;
  }
  .service-flex_left p, .service-flex_right p {
    width: 90%;
    max-width: 500px;
    padding-bottom: 5%;
  }
  .service-flex_left p {
    border-bottom: solid 1px #d1cbb9;
  }
  .service-flex_right p {
    padding-top: 30px;
    margin-bottom: 0;
    line-height: 1.7;
  }
  .service-flex_right span {
    font-size: 1.4rem;
  }
}
/* product */
.product {
  padding: clamp(6.4rem, 4.8rem + 3.2vw, 8rem) 0 90px;
  border-bottom: solid 1px #d1cbb9;
  text-align: center;
}
.product h2 {
  text-align: center;
  margin-bottom: 85px;
}
.product-flex {
  display: flex;
  max-width: 1000px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 70px;
  text-align: left;
}
.product-flex_left {
  width: 45%;
}
.product-flex_left img {
  width: 85%;
  margin-bottom: 15px;
}
.product-flex_left p {
  font-size: clamp(1rem, 0.8rem + 0.4vw, 1.2rem);
  line-height: 1.3;
}
.product-flex_right {
  width: 51%;
}
.product-flex_right h3 {
  font-size: clamp(1.8rem, 1.4rem + 0.8vw, 2.2rem);
  margin-bottom: 15px;
}
.product-flex_right p {
  line-height: 1.8;
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 1.2rem + 0.4vw, 1.6rem);
}
.nutrients-rawmaterials {
  border-top: solid 1px #ab935b;
}
.nutrients-rawmaterials h4 {
  padding: 25px 0 8px;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2rem + 0.4vw, 1.6rem);
}
.nutrients-rawmaterials p {
  font-size: 1.0rem;
  line-height: 1.4;
}
.product button {
  border: solid 1px #d1cbb9;
  padding: 30px 70px;
  line-height: 3rem;
  letter-spacing: 0.02em;
  position: relative;
  box-shadow: 0px 7px 10px -6px rgba(0, 0, 0, 0.2);
  color: #222;
}
.product button span {
  font-size: 2.2rem;
  font-weight: 600;
}
.arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 6px;
}
@keyframes arrow {
  100% {
    right: 23px;
  }
}
@media (min-width: 980px) {
  .product button:hover .arrow {
    animation: arrow 1s ease 0.5s infinite;
  
  }
}
@media (max-width:950px) {
  .product h2 {
    margin-bottom: clamp(3.8rem, 0.735rem + 8.174vw, 8.5rem);
  }
  .product-flex {
    flex-direction: column;
  }
  .product-flex_left, .product-flex_right {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .product-flex_left img {
    max-width: 500px;
    aspect-ratio: 6 / 4.5;
    object-fit: cover;
    object-position: bottom;
    width: 100%;
    margin: 0 auto;
    display: flex;
  }
  .product-flex_left p {
    max-width: 500px;
    width: 100%;
    margin: 5px auto 0;
    text-align: right;
  }
  .product-flex_right h3, .product-flex_right p {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
  }
  .product-flex_right h3 {
    padding-top: 15px;
  }
  .rusej-discription {
    padding: 15px 0 25px;
  }
  .product-flex_right h4 {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
  .nutrients-rawmaterials {
    margin: 0 auto;
    width: 100%;
    display: flex;
  }
  .nutrients-rawmaterials_width {
    margin: 0 auto;
    width: 90%;
  }
  .nutrients-rawmaterials p {
    width: 100%;
  }
}
@media (max-width:599px) {
  .product button {
    font-size: clamp(1.2rem, 0.53rem + 1.786vw, 1.6rem);
    padding: clamp(1rem, -2.348rem + 8.929vw, 3rem) clamp(3rem, -3.696rem + 17.857vw, 7rem);
  }
  .product button span {
    font-size: clamp(1.8rem, 1.13rem + 1.786vw, 2.2rem);
  }
}
/* media */
.media {
  padding: clamp(6.4rem, 4.8rem + 3.2vw, 8rem) 0 90px;
  border-bottom: solid 1px #d1cbb9;
}
.media h2 {
  text-align: center;
  margin-bottom: 85px;
}
.media-container {
  display: flex;
  justify-content: center;
  font-size: clamp(1.3rem, 1rem + 0.6vw, 1.6rem);
}
.media-info li {
  line-height: 2.5;
}
.media-info li div {
  display: flex;
}
.media-info li div time {
  width: clamp(9rem, 7rem + 4vw, 11rem);
  min-width: 90px;
}
.media-info li div p {
  padding-left: clamp(1.5rem, 0.3rem + 2.4vw, 2.7rem);
  border-left: solid 1px #d1cbb9;
}
.media-info a{
　text-decoration: none;
　color: #222;
}
.media-info a:hover{
　text-decoration: underline;
}
.media-info a:visited { color: #222 }

@media (max-width:950px) {
  .media {
    width: 100%;
    margin: 0 auto;
  }
  .media h2 {
    margin-bottom: clamp(3.8rem, 0.735rem + 8.174vw, 8.5rem);
  }
}
/* profile */
.profile {
  padding: clamp(6.4rem, 4.8rem + 3.2vw, 8rem) 0 90px;
  border-bottom: solid 1px #d1cbb9;
}
.profile h2 {
  text-align: center;
  margin-bottom: 85px;
}
.profile-table {
  max-width: 500px;
  text-align: left;
  margin: 0 auto;
  line-height: 2.25;
  font-size: clamp(1.4rem, 1.2rem + 0.4vw, 1.6rem);
}
.profile-table th {
  width: 130px;
}
.profile-table td a {
  color: #222;
}
.profile-table span {
  font-size: 1.4rem;
}
@media (max-width:950px) {
  .profile h2 {
    margin-bottom: clamp(3.8rem, 0.735rem + 8.174vw, 8.5rem);
  }
  .profile-table {
    width: 90%;
    line-height: 2;
  }
  .profile-table th, .profile-table td {
    width: 100%;
    display: block;
  }
}
/* contact */
.contact {
  padding: 75px 0 90px;
  border-bottom: solid 1px #d1cbb9;
  text-align: center;
}
.contact h2 {
  text-align: center;
  margin-bottom: 85px;
}
.contactform-checkbox {
  margin-bottom: clamp(2rem, -5.5rem + 20vw, 4.5rem);
}
.contactform-checkbox p {
  margin-bottom: 30px;
}
.contactform-checkbox ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactform-checkbox ul li {
  margin-right: 30px;
}
.contactform-checkbox ul li:last-child {
  margin-right: 0;
}
.contactform-checkbox ul li input[type="checkbox"] {
	margin-left: 0;
}

.contactform-checkbox ul li input[type="checkbox"]:checked + label {
  color: #93824c;
}
.contactform-input {
  max-width: 500px;
  margin: 0 auto 55px;
}
.contactform-input input, .contactform-input textarea {
  width: 90%;
  outline: solid 1px rgba(166, 149, 94, 0.5);
  margin-bottom: clamp(1.5rem, 0rem + 3vw, 3rem);
  line-height: 2.2;
}
.contactform-input textarea {
  margin-bottom: 0;
  line-height: 1.8;
}
.contactform-input input::placeholder {
  color: #888;
}
.contactform-input textarea::placeholder {
  color: #888;
}
.check-privacypolicy {
  margin-bottom: 25px;
}
.check-privacypolicy a {
  color: #5e4905;
  border-bottom: solid 1px #5e4905;
}
.check-privacypolicy a:hover {
  opacity: 0.5;
  cursor: pointer;
}
.submit-btn {
  position: relative;
  display: inline-block;
  box-shadow: 0px 7px 10px -6px rgba(0, 0, 0, 0.2);
}
@keyframes arrow2 {
  100% {
    left: 5px;
  }
}
.submit-btn input[type="submit"] {
  padding: 20px 80px;
  border: solid 1px #ab935b;
  color: #333;
  cursor: pointer;
}
.contact img {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 6px;
}
input[type="checkbox"] {
  accent-color: #93824c;
}
@media (min-width: 980px) {
  .submit-btn:hover .arrow2 {
    animation: arrow 1s ease 0.5s infinite;
  }
}
@media (max-width:950px) {
  .contact h2 {
    margin-bottom: clamp(3.8rem, 0.735rem + 8.174vw, 8.5rem);
  }
  .contactform-checkbox p {
    margin-bottom: clamp(2rem, 0.326rem + 4.464vw, 3rem);
  }
  .contactform-input {
    margin-bottom: clamp(3rem, -4.5rem + 20vw, 5.5rem);
  }
  .check-privacypolicy {
    margin-bottom: clamp(1.5rem, -1.5rem + 8vw, 2.5rem);
  }
}
/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10000; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}
.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  padding: 10px 30px;
  background-color: #fff;
  height: 80%;
  overflow: auto;
}
.modalContents {
  padding: 40px 0;
}
.modalContents h4 {
  font-size: 1.2em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.modalContents__content {
  margin-bottom: 20px;
  font-size: 1em;
  line-height: 1.5em;
}
.modalContents__content h5 {
  font-weight: 600;
  margin-bottom: 4px;
}
.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}
/* pagetop-btn_place */
.pagetop-btn_place {
  height: clamp(2rem, 1rem + 2vw, 3rem);
}
/* footer */
.footer {
  text-align: center;
  position: relative;
  margin: 0 auto;
}
.pagetop-btn {
  position: fixed;
  right: 3%;
  bottom: 20px;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0px 7px 10px -6px rgba(0, 0, 0, 0.2);
}
.pagetop-btn a {
  display: block;
}
.pagetop-img {
  width: clamp(3rem, 1.84rem + 3.094vw, 5.8rem);
  vertical-align: bottom;
}
.f-logo {
	margin: 0 auto;
}
.f-logo a {
	display: flex;
	flex-direction: column;
}
.f-logo_logo {
	margin: clamp(2rem, 1rem + 2vw, 3rem) auto;
	width: 30px;
	margin-bottom: clamp(1rem, 0.4rem + 1.6vw, 2rem);
}
.f-logo_name {
	margin: 0 auto;
	width: clamp(9rem, 6.3rem + 7.2vw, 13.5rem);
	margin-bottom: clamp(3rem, 1.55rem + 3.867vw, 6.5rem);
}
.footer div {
  margin-bottom: 30px;
}
.copyright span {
  font-size: 12px;
}