@charset "UTF-8";
@import url(../css/destyle.css);
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'EB Garamond', 'Noto Serif JP', serif;
  color: #000;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
  }
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

li {
  list-style: none;
}

.wrapper {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 47px;
  }
}

.mv__title {
  color: #fff;
  font-size: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 40px;
  }
}

.mv__title .ja {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .mv__title .ja {
    font-size: 14px;
  }
}

.mv__title .en {
  letter-spacing: 10px;
}

@media screen and (max-width: 768px) {
  .mv__title .en {
    letter-spacing: 6px;
  }
}

.pankuzu {
  font-size: 14px;
  background-color: #F5F5F5;
}

@media screen and (max-width: 768px) {
  .pankuzu {
    font-size: 10px;
  }
}

.pankuzu ul {
  display: flex;
  padding: 16px 0 16px 40px;
}

.pankuzu ul li a::after {
  content: '―';
  padding: 0 10px;
}

.br__md {
  display: none;
}

@media screen and (max-width: 768px) {
  .br__md {
    display: block;
  }
}

/* -----------------------スクロール----------------------- */
.fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s,visibility 1s, transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* -----------------------スクロール----------------------- */
.header {
  position: relative;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  padding: 40px 40px 0;
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding: 20px 20px;
  }
}

@media screen and (max-width: 768px) {
  .header__inner .header__left {
    z-index: 999;
  }
}

@media screen and (max-width: 768px) {
  .header__inner .header__nav {
    display: none;
  }
  .header__inner .header__nav.active {
    display: block;
  }
}

.header__inner .header__nav .header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .header__inner .header__nav .header__menu {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100vh;
    z-index: 1;
    transition: opacity .6s ease, visibility .6s ease;
    justify-content: flex-start;
    padding-top: 15rem;
  }
}

.header__inner .header__nav .header__menu .header__menu-item {
  margin-right: 60px;
}

.header__inner .header__nav .header__menu .header__menu-item:nth-child(2) {
  margin-right: 85px;
}

@media screen and (max-width: 768px) {
  .header__inner .header__nav .header__menu .header__menu-item:nth-child(2) {
    margin-right: 0;
  }
}

.header__inner .header__nav .header__menu .header__menu-item:nth-child(3) {
  margin-right: 75px;
}

@media screen and (max-width: 768px) {
  .header__inner .header__nav .header__menu .header__menu-item:nth-child(3) {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .header__inner .header__nav .header__menu .header__menu-item {
    font-size: 18px;
    margin-right: 0;
    margin-bottom: 61px;
  }
}

.header__inner .header__nav .header__menu .header__menu-item:last-child {
  margin-right: 0;
}

.header__inner .header__nav .header__menu .header__menu-item a {
  position: relative;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: opacity .5s;
  padding: 10px 60px 10px 0;
}

@media screen and (max-width: 768px) {
  .header__inner .header__nav .header__menu .header__menu-item a {
    color: #000;
  }
}

.header__inner .header__nav .header__menu .header__menu-item a .normal,
.header__inner .header__nav .header__menu .header__menu-item a .hover {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .5s;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 1.6px;
}

.header__inner .header__nav .header__menu .header__menu-item a .hover {
  opacity: 0;
}

.header__inner .header__nav .header__menu .header__menu-item a:hover .normal {
  opacity: 0;
}

.header__inner .header__nav .header__menu .header__menu-item a:hover .hover {
  opacity: 1;
}

.header__inner .header__nav .header__menu .contact a {
  display: inline-block;
  background: #000;
  border: 1px solid #000;
  padding: 15px 70px;
  transition: opacity .1s;
}

@media screen and (max-width: 768px) {
  .header__inner .header__nav .header__menu .contact a {
    color: #fff;
  }
}

.header__inner .header__nav .header__menu .contact a:hover {
  background: #fff;
  color: #000;
}

.header__inner .header__nav .header__menu .current a {
  position: relative;
}

.header__inner .header__nav .header__menu .current a::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 40px;
  height: 1px;
  transform: translate(-50%);
  background: #fff;
}

.header-fixed {
  background: rgba(255, 255, 255, 0.9);
  position: fixed !important;
  width: 100%;
  height: 100px;
  z-index: 999;
  animation-name: fade;
  animation-duration: .3s;
}

.header-fixed .header__inner {
  padding: 10px 60px;
}

@media screen and (max-width: 768px) {
  .header-fixed .header__inner {
    padding: 20px 20px;
  }
}

.header-fixed .header__inner .header__left {
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .header-fixed .header__inner .header__left {
    padding-top: 0;
  }
  .header-fixed .header__inner .header__left .header__logo img {
    width: 60px;
    height: 60px;
  }
}

.header-fixed .header__inner .header__right .hamburger {
  padding-top: 20px;
}

.header-fixed .header__inner .header__right .hamburger span {
  background: #000;
}

.header-fixed .header__inner .header__right .header__nav {
  padding-top: 26px;
}

.header-fixed .header__inner .header__right .header__nav .header__menu .header__menu-item a {
  color: #000;
}

.header-fixed .header__inner .header__right .header__nav .header__menu .contact a {
  color: #fff;
}

.header-fixed .header__inner .header__right .header__nav .header__menu .contact a:hover {
  background: #fff;
  color: #000;
}

.header-fixed .header__inner .header__right .header__nav .header__menu .current a::before {
  background: #000;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hamburger {
  display: none;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    width: 40px;
    height: 100%;
    padding-top: 15px;
  }
  .hamburger span {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }
  .hamburger span:nth-child(3) {
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .hamburger.active span {
    z-index: 999;
    background: #000;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
  }
}

.footer {
  margin: 60px 0;
}

@media screen and (max-width: 1200px) {
  .footer .footer__inner {
    padding: 0 50px;
  }
}

@media screen and (max-width: 768px) {
  .footer .footer__inner {
    padding: 0;
  }
}

.footer .footer__inner .footer__nav .footer__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}

@media screen and (max-width: 768px) {
  .footer .footer__inner .footer__nav .footer__menu {
    display: block;
    font-size: 14px;
  }
}

.footer .footer__inner .footer__nav .footer__menu .footer__menu-item {
  text-align: center;
  padding-right: 50px;
  width: calc(100% / 5);
  letter-spacing: 1.6px;
}

@media screen and (max-width: 768px) {
  .footer .footer__inner .footer__nav .footer__menu .footer__menu-item {
    width: 100%;
    padding-right: 0;
    padding-bottom: 26px;
  }
}

.footer .footer__inner .footer__nav .footer__menu .footer__menu-item:last-child {
  padding-right: 0;
}

.footer .footer__inner .footer__nav .footer__menu .footer__menu-item a {
  color: #000;
}

.footer .footer__inner .footer__nav .footer__menu .footer__menu-item a .ja {
  display: inline-block;
  font-size: 14px;
  padding-top: 12px;
  color: #777;
}

@media screen and (max-width: 768px) {
  .footer .footer__inner .footer__nav .footer__menu .footer__menu-item a .ja {
    display: none;
  }
}

.footer .footer__inner .footer__nav .footer__menu .footer__menu-item a:hover {
  opacity: 0.5;
}

.footer .footer__inner .footer__text-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 159px;
}

@media screen and (max-width: 768px) {
  .footer .footer__inner .footer__text-area {
    flex-direction: column;
    margin-top: 71px;
  }
}

.footer .footer__inner .footer__text-area .logo_text {
  width: 33.33%;
}

@media screen and (max-width: 768px) {
  .footer .footer__inner .footer__text-area .logo_text {
    width: 100%;
    order: 2;
    margin: 38px 0;
  }
}

.footer .footer__inner .footer__text-area .footer__logo {
  width: 33.33%;
}

@media screen and (max-width: 768px) {
  .footer .footer__inner .footer__text-area .footer__logo {
    width: 100%;
    order: 1;
  }
}

.footer .footer__inner .footer__text-area .footer__copyright {
  font-size: 10px;
  width: 33.33%;
}

@media screen and (max-width: 768px) {
  .footer .footer__inner .footer__text-area .footer__copyright {
    width: 100%;
    order: 3;
  }
}

@media screen and (max-width: 768px) {
  .mv-top .header__inner {
    padding-bottom: 82px;
  }
}

.mv-top__text-area {
  margin: 0 auto;
  width: 650px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .mv-top__text-area {
    max-width: 320px;
  }
}

.mv-top_products {
  margin: 0 auto;
  max-width: 650px;
  height: auto;
  position: relative;
  top: 68px;
}

@media screen and (max-width: 768px) {
  .mv-top_products {
    max-width: 260px;
  }
}

.slide__fixed {
  position: absolute;
  margin: 0 auto;
  max-width: 650px;
  height: auto;
  bottom: -67px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .slide__fixed {
    max-width: 260px;
    left: 29px;
  }
}

.section .section__container .section__title {
  max-width: 467px;
  margin: 0 auto;
}

.section .section__container .section__title img {
  height: 118px;
}

@media screen and (max-width: 768px) {
  .section .section__container .section__title img {
    height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .section .section__container .section__title {
    max-width: 260px;
  }
}

.section .section__container .section__text {
  line-height: 2;
}

.story {
  margin-top: 12em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .story {
    margin-top: 10em;
  }
}

.story .story__text {
  padding: 77px 0 18%;
  line-height: 3.75;
}

@media screen and (max-width: 768px) {
  .story .story__text {
    line-height: 2.5;
    max-width: 280px;
    text-align: left;
    margin: 0 auto;
    padding: 41px 0 13%;
  }
}

.story .story__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.story .story__bg img {
  width: 100vw;
}

.heritage {
  padding-top: 112px;
  background: url(../img/top/heritage_bg.png);
  position: relative;
}

@media screen and (max-width: 768px) {
  .heritage {
    padding-top: 89px;
  }
}

.heritage .heritage__text {
  margin-top: 44px;
}

@media screen and (max-width: 768px) {
  .heritage .heritage__text {
    margin-top: 41px;
    margin-bottom: 57px;
    line-height: 2.5;
    max-width: 280px;
    text-align: left;
    margin: 41px auto 0;
  }
}

.heritage .heritage__img-list {
  margin-top: 55px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .heritage .heritage__img-list {
    display: block;
  }
}

.heritage .heritage__img-list .heritage__img-item:first-child {
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .heritage .heritage__img-list .heritage__img-item:first-child {
    padding-right: 0;
    padding-bottom: 43px;
  }
}

.heritage .heritage__img-list .heritage__img-item img {
  max-width: 315px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .heritage .heritage__img-list .heritage__img-item img {
    max-width: 290px;
  }
}

.heritage .heritage__img-list .heritage__img-text {
  padding-top: 22px;
}

.heritage__bg img {
  width: 100%;
  max-height: 300px;
  height: auto;
  object-fit: cover;
}

.products-blur {
  backdrop-filter: blur(50px);
}

.products {
  background: url(../img/top/mv01_bg.png) no-repeat center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  .products {
    background: url(../img/top/sp_mv01_bg.png) no-repeat center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 18px;
  }
}

.products .products__inner {
  padding: 60px 100px;
  max-width: 1480px;
  height: auto;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}

@media screen and (max-width: 768px) {
  .products .products__inner {
    padding: 98px 30px 60px;
  }
}

.products .products__inner .products__title-area {
  display: flex;
  column-gap: 90px;
}

@media screen and (max-width: 768px) {
  .products .products__inner .products__title-area {
    display: block;
  }
}

.products .products__inner .products__title-area .products__title {
  width: 50%;
}

.products .products__inner .products__title-area .products__title img {
  height: auto;
}

@media screen and (max-width: 768px) {
  .products .products__inner .products__title-area .products__title img {
    height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .products .products__inner .products__title-area .products__title {
    width: 100%;
  }
}

.products .products__inner .products__title-area .products__text {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .products .products__inner .products__title-area .products__text {
    width: 100%;
    margin-top: 40px;
  }
}

.products .products__inner .products__img-list {
  margin-top: 37px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .products .products__inner .products__img-list {
    display: block;
  }
}

.products .products__inner .products__img-list .products__img-item {
  width: calc(100%/3);
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .products .products__inner .products__img-list .products__img-item {
    width: 100%;
    text-align: center;
    padding-top: 43px;
    padding-right: 0;
  }
}

.products .products__inner .products__img-list .products__img-item:last-child {
  padding-right: 0;
}

.products .products__inner .products__img-list .products__img-item img {
  width: auto;
  height: 250px;
  object-fit: contain;
}

.products .products__inner .products__img-list .products__img-text {
  font-size: 18px;
  padding-top: 10px;
}

.products .products__btn {
  max-width: 492px;
  height: auto;
  margin: 80px auto 0 auto;
}

@media screen and (max-width: 768px) {
  .products .products__btn {
    max-width: 250px;
  }
}

.products .products__btn a {
  padding: 16px;
  display: block;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  text-align: center;
  transition: opacity .3s;
}

.products .products__btn a:hover {
  border: 1px solid #000;
  background: #fff;
  color: #000;
}

.products .leaf {
  position: absolute;
  top: 3rem;
  left: -3rem;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .products .leaf {
    top: 0;
    left: -1rem;
  }
}

.products .leaf img {
  max-width: 300px;
}

@media screen and (max-width: 576px) {
  .products .leaf img {
    max-width: 135px;
  }
}

.mv-top__text-area {
  margin: 0 auto;
  text-align: center;
  color: #fff;
  line-height: 1.25;
}

.mv-top__text-area .mv-top__text-area__logo img {
  width: 140px;
}

@media screen and (max-width: 768px) {
  .mv-top__text-area .mv-top__text-area__logo img {
    width: 98px;
  }
}

.mv-top__text-area .mv-top__text-area__ja {
  font-size: 46px;
  padding: 60px 0 10px;
}

@media screen and (max-width: 768px) {
  .mv-top__text-area .mv-top__text-area__ja {
    font-size: 22px;
    padding: 43px 0 10px;
  }
}

.mv-top__text-area .mv-top__text-area__en {
  letter-spacing: 1.6px;
}

@media screen and (max-width: 768px) {
  .mv-top__text-area .mv-top__text-area__en {
    font-size: 11px;
  }
}

.scrolldown {
  position: absolute;
  right: 40px;
  bottom: 24px;
}

@media screen and (max-width: 768px) {
  .scrolldown {
    display: none;
  }
}

.scrolldown span {
  writing-mode: vertical-rl;
  color: #fff;
  letter-spacing: 5px;
}

.scrolldown span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 1px;
  height: 112px;
  background: #fff;
  animation: scrollanimation 1.8s linear infinite;
  opacity: 0;
}

@keyframes scrollanimation {
  0% {
    height: 0%;
    opacity: 1;
  }
  50% {
    height: 50%;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}

.slide__item {
  padding-bottom: 51rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media screen and (max-width: 768px) {
  .slide__item {
    padding-bottom: 30rem;
  }
}

.slide__bg01 {
  background-image: url("../img/top/mv01_bg.jpg");
}

@media screen and (max-width: 768px) {
  .slide__bg01 {
    background-image: url("../img/top/sp_mv01_bg.jpg");
  }
}

.slide__bg02 {
  background-image: url("../img/top/mv02_bg.jpg");
}

@media screen and (max-width: 768px) {
  .slide__bg02 {
    background-image: url("../img/top/sp_mv02_bg.jpg");
  }
}

.mv-top {
  position: relative;
}

.mv-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding-top: 148px;
}

@media screen and (max-width: 768px) {
  .mv-item {
    padding-top: 100px;
  }
}

.top .header {
  position: fixed;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.product .mv {
  background: url("../img/product/mv_bg.png") no-repeat;
  background-size: cover;
  position: relative;
  height: 380px;
}

@media screen and (max-width: 768px) {
  .product .mv {
    background: url("../img/product/sp_mv_bg.png") no-repeat;
    background-size: cover;
    height: 264px;
  }
}

.info {
  margin-top: 87px;
}

.info .section__title {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .info .section__title {
    font-size: 20px;
  }
}

.info .info__container {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .info .info__container {
    flex-wrap: wrap;
  }
}

.info .info__container .info__img {
  width: 58%;
  max-width: 410px;
}

@media screen and (max-width: 768px) {
  .info .info__container .info__img {
    width: 100%;
    order: 1;
  }
}

.info .info__container .info__img:nth-child(even) {
  margin-left: 120px;
}

@media screen and (max-width: 768px) {
  .info .info__container .info__img:nth-child(even) {
    margin-left: 0;
  }
}

.info .info__container .info__img:nth-child(odd) {
  margin-right: 120px;
}

@media screen and (max-width: 768px) {
  .info .info__container .info__img:nth-child(odd) {
    margin-right: 0;
  }
}

.info .info__container .info__text-area {
  width: 38%;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .info .info__container .info__text-area {
    width: 100%;
    margin-top: 27px;
    order: 2;
  }
}

.info .info__container .info__text-area .info__title {
  line-height: 32px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .info .info__container .info__text-area .info__title {
    line-height: 24px;
    text-align: center;
  }
}

.info .info__container .info__text-area .info__title .big {
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .info .info__container .info__text-area .info__title .big {
    font-size: 18px;
  }
}

.info .info__container .info__text-area .info__title .small {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .info .info__container .info__text-area .info__title .small {
    font-size: 14px;
    margin-top: 30px;
  }
}

.info .info__container .info__text-area .info__text {
  margin-top: 50px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .info .info__container .info__text-area .info__text {
    margin-top: 30px;
  }
}

.info .info__container .info__text-area .info__notes {
  color: #777;
  font-size: 14px;
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 768px) {
  .info .info__container .info__text-area .info__notes {
    font-size: 12px;
  }
}

.goods {
  background: url("../img/product/goods_bg.png") no-repeat;
  background-size: cover;
  margin-top: 131px;
}

@media screen and (max-width: 768px) {
  .goods {
    background: url("../img/product/sp_goods_bg.png") no-repeat;
    background-size: cover;
    margin-top: 63px;
  }
}

.goods .goods__title {
  padding-top: 120px;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  .goods .goods__title {
    padding-top: 90px;
    line-height: 20px;
  }
}

.goods .goods__title .goods__name {
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .goods .goods__title .goods__name {
    font-size: 18px;
  }
}

.goods .goods__title .goods__name .sub {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .goods .goods__title .goods__name .sub {
    font-size: 12px;
  }
}

.goods .goods__area {
  display: flex;
  justify-content: center;
  margin-top: 53px;
}

@media screen and (max-width: 768px) {
  .goods .goods__area {
    flex-direction: column;
  }
}

.goods .goods__area .goods__item:first-child {
  margin-right: 60px;
}

@media screen and (max-width: 768px) {
  .goods .goods__area .goods__item:first-child {
    margin-right: 0;
    margin-bottom: 90px;
  }
}

.goods .goods__area .goods__item .goods__item-img {
  width: 100%;
}

.goods .goods__area .goods__item .goods__item-img img {
  max-width: 297px;
}

.goods .goods__area .goods__item .goods__text-area {
  text-align: left;
  margin-top: 34px;
  max-width: 297px;
  margin: 0 auto;
}

.goods .goods__area .goods__item .goods__text-area .goods__item-title {
  padding-top: 30px;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .goods .goods__area .goods__item .goods__text-area .goods__item-title {
    text-align: center;
  }
}

.goods .goods__area .goods__item .goods__text-area .goods__item-table {
  margin-top: 31px;
  font-size: 14px;
}

.goods .goods__area .goods__item .goods__text-area .goods__item-table tr {
  width: 100%;
}

.goods .goods__area .goods__item .goods__text-area .goods__item-table tr th {
  font-weight: normal;
  line-height: 22px;
  width: 20%;
}

.goods .goods__area .goods__item .goods__text-area .goods__item-table tr td {
  line-height: 22px;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .goods .goods__area .goods__item .goods__text-area .goods__item-table {
    margin-top: 20px;
  }
}

.goods__btn {
  margin: 63px auto 0;
  max-width: 275px;
}

@media screen and (max-width: 768px) {
  .goods__btn {
    margin-bottom: 36px;
  }
}

.goods__btn a {
  padding: 10px 50px;
  display: block;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  text-align: center;
  transition: opacity .3s;
}

.goods__btn a:hover {
  background: #fff;
  color: #000;
}

.company .mv {
  background: url("../img/company/mv_bg.png") no-repeat;
  background-size: cover;
  position: relative;
  height: 380px;
}

@media screen and (max-width: 768px) {
  .company .mv {
    background: url("../img/company/sp_mv_bg.png") no-repeat;
    background-size: cover;
    height: 264px;
  }
}

.company .story {
  margin-top: 80px;
}

.company .section__title {
  padding-top: 112px;
}

@media screen and (max-width: 768px) {
  .company .section__title {
    padding-top: 80px;
  }
}

.philosophy__text {
  padding: 77px 0 0;
  line-height: 3.75;
}

@media screen and (max-width: 768px) {
  .philosophy__text {
    line-height: 2.5;
    max-width: 280px;
    text-align: left;
    margin: 0 auto;
    padding: 40px 0 0;
  }
}

.message {
  background: url(../img/company/message_bg.png) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .message {
    background: url(../img/company/sp_message_bg.png) no-repeat;
    background-size: cover;
  }
}

.message .message__title {
  padding-top: 100px;
}

.message .message__container {
  display: flex;
  justify-content: center;
  padding: 73px 0 144px;
}

@media screen and (max-width: 768px) {
  .message .message__container {
    flex-direction: column;
    padding: 40px 0 93px;
  }
}

.message .message__container .message__img {
  max-width: 315px;
  margin-right: 60px;
}

@media screen and (max-width: 768px) {
  .message .message__container .message__img {
    order: 2;
    margin: 65px auto 0;
    max-width: 178px;
  }
}

.message .message__container .message__text-area {
  max-width: 551px;
  text-align: left;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .message .message__container .message__text-area {
    order: 1;
    margin: 0 auto;
  }
}

.message .message__container .message__text-area .message__text {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .message .message__container .message__text-area .message__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .message .message__container .message__text-area .message__company {
    font-size: 14px;
  }
}

.message .message__container .message__text-area .message__name {
  font-size: 26px;
}

@media screen and (max-width: 768px) {
  .message .message__container .message__text-area .message__name {
    font-size: 20px;
  }
}

.outline__table table {
  margin: 71px auto 54px;
  width: 670px;
}

@media screen and (max-width: 768px) {
  .outline__table table {
    width: 316px;
  }
}

.outline__table table tr {
  text-align: left;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .outline__table table tr {
    border-top: 1px solid #d9d9d9;
    font-size: 16px;
  }
  .outline__table table tr:last-child {
    border-bottom: 1px solid #d9d9d9;
  }
}

.outline__table table tr th {
  padding: 30px 0;
  width: 30%;
  border-top: 1px solid #d9d9d9;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .outline__table table tr th {
    width: 100%;
    border-top: none;
    display: block;
    padding: 30px 0 0;
  }
}

.outline__table table tr th:last-of-type {
  border-bottom: 1px solid #d9d9d9;
}

@media screen and (max-width: 768px) {
  .outline__table table tr th:last-of-type {
    border-bottom: none;
  }
}

.outline__table table tr td {
  padding: 30px 0;
  width: 70%;
  border-top: 1px solid #d9d9d9;
}

@media screen and (max-width: 768px) {
  .outline__table table tr td {
    width: 100%;
    border-top: none;
    display: block;
    padding: 0 0 30px 1em;
  }
}

.outline__table table tr td:last-of-type {
  border-bottom: 1px solid #d9d9d9;
}

@media screen and (max-width: 768px) {
  .outline__table table tr td:last-of-type {
    border-bottom: none;
  }
}

.page-link {
  margin-top: 52px;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .page-link {
    margin-top: 41px;
    font-size: 18px;
  }
}

.page-link ul {
  display: flex;
  justify-content: center;
}

.page-link ul li {
  padding: 0 60px;
  border-right: 1px solid #d9d9d9;
}

.page-link ul li:last-child {
  border-right: 0;
}

@media screen and (max-width: 768px) {
  .page-link ul li {
    padding: 0 20px;
  }
}

.page-link ul li a {
  position: relative;
}

.page-link ul li a:hover {
  color: #8BC34A;
  border-bottom: 1px solid #8BC34A;
}

.page-link ul li a:hover::after {
  border-color: #8BC34A;
}

.page-link ul li a::after {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: -20px;
}

@media screen and (max-width: 768px) {
  .page-link ul li a::after {
    width: 4px;
    height: 4px;
    margin-top: -2px;
    right: -10px;
  }
}

.privacy .mv {
  background: url("../img/product/mv_bg.png") no-repeat;
  background-size: cover;
  position: relative;
  height: 380px;
}

@media screen and (max-width: 768px) {
  .privacy .mv {
    background: url("../img/product/sp_mv_bg.png") no-repeat;
    background-size: cover;
    height: 264px;
  }
}

@media screen and (max-width: 768px) {
  .privacy .mv__title {
    font-size: 28px;
  }
}

.privacy__text-area {
  margin: 102px 0 80px;
  text-align: left;
  line-height: 1.625;
}

@media screen and (max-width: 768px) {
  .privacy__text-area {
    margin: 50px 0 43px;
  }
}

.privacy__text-area .date {
  margin-bottom: 30px;
}

.privacy__text-area .p-title {
  margin: 25px 0;
}

.contact .mv {
  background: url("../img/company/mv_bg.png") no-repeat;
  background-size: cover;
  position: relative;
  height: 380px;
}

@media screen and (max-width: 768px) {
  .contact .mv {
    background: url("../img/company/sp_mv_bg.png") no-repeat;
    background-size: cover;
    height: 264px;
  }
}

.consent {
  margin: 100px 0;
}

.consent .consent__title {
  font-size: 20px;
}

.consent .consent__text-area {
  text-align: left;
  line-height: 1.625;
  background: #F5F5F5;
  max-width: 670px;
  max-height: 247px;
  margin: 31px auto;
  padding: 32px 49px 0 49px;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  .consent .consent__text-area {
    max-width: 280px;
    max-height: 240px;
    padding: 23px 20px 0 20px;
  }
}

.consent .consent__text-area .consent__text {
  padding-bottom: 32px;
}

.consent .consent__link a {
  border-bottom: 1px solid #000;
}

.consent .consent__link a:hover {
  opacity: 0.7;
}

/* ----------------------------------------------------------
    フォーム
------------------------------------------------------------- */
.txt_explain {
  text-align: right;
  margin-bottom: 33px;
}

@media screen and (max-width: 768px) {
  .txt_explain {
    text-align: center;
    margin-top: 33px;
  }
}

.form-area {
  margin: 100px auto;
  text-align: center;
  max-width: 670px;
}

@media screen and (max-width: 768px) {
  .form-area {
    margin: 0 auto;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .table {
    margin: 0 auto;
  }
}

.red {
  color: red;
}

.form-area th {
  font-weight: normal;
  padding-right: 29px;
  padding-top: 20px;
  width: auto;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .form-area th {
    display: block;
    width: 100%;
  }
}

.form-area td {
  font-weight: normal;
  text-align: left;
  padding-top: 20px;
  width: auto;
}

@media screen and (max-width: 768px) {
  .form-area td {
    width: 100% !important;
    display: block;
  }
}

input, select, textarea {
  outline: 1px solid #777;
  outline-color: #777;
}

input[name="item_mail_1"] {
  width: 492px;
  height: 30px;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  input[name="item_mail_1"] {
    width: 280px;
  }
}

input[name="item_tel"] {
  width: 403px;
  height: 30px;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  input[name="item_tel"] {
    width: 280px;
  }
}

input[name="item_name_1"] {
  width: 200px !important;
  height: 30px;
  margin-right: 10px;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  input[name="item_name_1"] {
    width: 280px !important;
    margin-bottom: 15px;
  }
}

input[name="item_name_2"] {
  width: 200px !important;
  height: 30px;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  input[name="item_name_2"] {
    width: 280px !important;
  }
}

select[name="item_sselect01"] {
  width: 301px;
  height: 30px;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

@media screen and (max-width: 768px) {
  select[name="item_sselect01"] {
    width: 280px;
  }
}

textarea[name="item_contents"] {
  width: 492px;
}

@media screen and (max-width: 768px) {
  textarea[name="item_contents"] {
    width: 280px;
  }
}

.button_box {
  margin: 63px auto 100px;
  text-align: center;
  width: 312px;
}

@media screen and (max-width: 768px) {
  .button_box {
    width: 280px;
  }
}

.button_box input {
  padding: 10px 50px;
  display: block;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  text-align: center;
  transition: opacity 0.3s;
  width: 312px;
  margin-bottom: 20px;
}

.button_box input:hover {
  background: #fff;
  color: #000;
}

@media screen and (max-width: 768px) {
  .button_box input {
    width: 280px;
    font-size: 18px;
  }
}

.button_box input:hover {
  background: #fff;
  color: #000;
}

.completion {
  text-align: center;
  font-size: 24px;
  margin: 200px 0;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .completion {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .check-area {
    text-align: left;
  }
}

.check-area .txt_explain {
  text-align: center;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .check-area .txt_explain {
    text-align: left;
  }
}

.check-area .table {
  display: flex;
  justify-content: center;
  min-width: 100%;
  font-size: 18px;
}

.error ul li {
  padding-bottom: 20px;
  text-align: left;
}

/* ----------------------------------------------------------
    フォーム
------------------------------------------------------------- */
.error .mv {
  background: url("../img/company/mv_bg.png") no-repeat;
  background-size: cover;
  position: relative;
  height: 380px;
}

@media screen and (max-width: 768px) {
  .error .mv {
    background: url("../img/company/sp_mv_bg.png") no-repeat;
    background-size: cover;
    height: 264px;
  }
}

.error__text-area {
  margin: 80px 0 40px;
}

.error__text-area .error-number {
  font-size: 90px;
  color: #777777;
}

@media screen and (max-width: 768px) {
  .error__text-area .error-number {
    font-size: 60px;
  }
}

.error__text-area .error-title {
  font-size: 40px;
  margin: 0 0 22px;
}

@media screen and (max-width: 768px) {
  .error__text-area .error-title {
    font-size: 22px;
  }
}

.error__text-area .error-text {
  font-size: 20px;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .error__text-area .error-text {
    font-size: 16px;
    text-align: left;
  }
}

.no-br__md {
  display: block;
}

@media screen and (max-width: 768px) {
  .no-br__md {
    display: none;
  }
}
