@charset "UTF-8";
/** 画像アセット 記述方法 */
/* #############################################################

[ プロジェクト ] 固有スタイルを定義

############################################################# */
/* ==========================================================================
	Project Layout
=========================================================================== */
/** -------------------------------- **
	Header
*** ----------------------------------------------------------------- ***/
.p-header {
  -webkit-transition: all .6s ease;
  z-index: 10;
  position: fixed;
  width: 100%;
  min-width: 100%;
  background: #fff;
  transition: all .6s ease;
}

.p-header-inner {
  position: relative;
  width: 1200px;
  margin: auto;
}

.p-header.is-fixed {
  -webkit-transition: all .6s ease;
  position: fixed;
  top: 0;
  left: 0;
  transition: all .6s ease;
}

.p-logo {
  margin-bottom: 0;
  padding: 0;
  text-align: center;
}

.p-logo img {
  width: 484px;
  height: auto;
}

.p-free-shipping {
  margin-bottom: 0;
  padding: 4.7% 0 0;
  text-align: center;
}

.p-free-shipping span {
  display: inline-block;
  padding: 5px 10px 8px;
  background: #f00;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
}

@media print, screen and (max-width: 75em) {
  .p-header-inner {
    width: 100%;
  }
  .p-logo {
    margin-left: 2.5%;
    padding: 10px 0 0;
    text-align: left;
  }
  .p-free-shipping {
    margin-left: 4%;
    padding: 2% 0 0;
    text-align: left;
  }
  .p-free-shipping span {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 42.5em) {
  .p-logo {
    padding: 0;
    line-height: 1.5;
  }
  .p-logo img {
    width: 70%;
  }
  .p-header {
    top: 0;
  }
  .p-free-shipping span {
    padding: 3px 5px 5px;
    font-size: 1rem;
    line-height: 1;
  }
}

/* p-header-shopnav-wrap
--------------------------------------------- */
.p-header-shopnav-wrap a {
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
}

.p-header-shopnav {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: flex-end;
}

.p-header-shopnav-btn {
  display: inline-block;
  position: relative;
  margin: 0 4%;
}

.p-header-shopnav-btn:first-child::after, .p-header-shopnav-btn:nth-child(2)::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #707070;
  content: "";
}

.p-header-shopnav-btn .more-btn {
  display: block;
  margin: 0 -20%;
  color: #75C126;
  white-space: nowrap;
}

.p-header-shopnav-btn .more-btn:hover {
  color: #107B40;
}

.p-header-shopnav-btn:last-child .more-btn {
  margin: 0 -26%;
  padding: 8%;
  border: 1px solid #75C126;
  background: #75C126;
  color: #fff;
  text-align: center;
}

.p-header-shopnav-btn:last-child .more-btn:hover {
  background: #fff;
  color: #75C126;
}

.p-header-login-btn {
  position: absolute;
  top: 40%;
  right: 0;
  width: 185px;
  margin-right: -1%;
  text-align: center;
}

.p-header-login-btn .p-login-btn {
  display: block;
  padding: 4%;
  border: 1px solid #957B35;
  background: #957B35;
}

.p-header-login-btn .p-login-btn:hover {
  background: #fff;
  color: #957B35;
}

/** -------------------------------- **
	Global Navigation
*** ----------------------------------------------------------------- ***/
.p-global-nav-wrap {
  -webkit-transition: all .3s;
  position: relative;
  top: -100%;
  width: 100%;
  margin: 2% auto 0;
  padding-bottom: 10px;
  background: #fff;
  transition: all .3s;
}

.p-global-nav-inner {
  /*max-width: 944px;*/
  width: 80%;
  margin: 0 auto;
}

.p-global-nav-lists {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: inline-block;
  justify-content: center;
  width: 100%;
  height: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-global-nav-link {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-line-pack: center;
  display: inline-block;
  position: relative;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  margin: 0 2.6%;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2rem;
  line-height: 1.5;
  text-align: center;
}

.p-global-nav-link:first-child {
  margin-left: 0;
}

.p-global-nav-link:last-child {
  margin-right: 0;
}

.p-global-nav-link .p-global-nav-eng {
  display: block;
  width: 100%;
  color: #75C126;
  font-size: .625rem;
  letter-spacing: normal;
}

@-webkit-keyframes spMenuOpen {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes spMenuOpen {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes spMenuClose {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes spMenuClose {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

/* ハンバーガーメニュー */
@media print, screen and (max-width: 75em) {
  .p-global-hamburger {
    -webkit-transition: all .3s;
    display: block;
    z-index: 5;
    position: absolute;
    top: 22px;
    right: 4%;
    width: 88px;
    height: 56px;
    transition: all .3s;
  }
  .p-global-hamburger span {
    -webkit-transition: all .3s;
    -webkit-box-sizing: border-box;
    -webkit-transform: translateX(-50%);
    box-sizing: border-box;
    display: inline-block;
    position: absolute;
    left: 50%;
    width: 50%;
    height: 2px;
    transform: translateX(-50%);
    background: #707070;
    transition: all .3s;
  }
  .p-global-hamburger span:nth-of-type(1) {
    top: 20%;
  }
  .p-global-hamburger span:nth-of-type(2) {
    top: 47%;
  }
  .p-global-hamburger span:nth-of-type(3) {
    bottom: 22%;
  }
  .p-global-hamburger.active {
    position: fixed;
    top: 1%;
  }
  .p-global-hamburger.active span {
    height: 2px;
    background: #222;
  }
  .p-global-hamburger.active span:nth-of-type(1) {
    -webkit-transform: translate3d(16px, 14px, 0) rotate(30deg);
    left: 0;
    width: 50%;
    transform: translate3d(16px, 14px, 0) rotate(30deg);
  }
  .p-global-hamburger.active span:nth-of-type(2) {
    left: 200%;
  }
  .p-global-hamburger.active span:nth-of-type(3) {
    -webkit-transform: translate3d(16px, -17px, 0) rotate(-30deg);
    left: 0;
    width: 50%;
    transform: translate3d(16px, -17px, 0) rotate(-30deg);
  }
  /* p-global-nav */
  .p-global-nav-wrap {
    position: static;
  }
  .p-global-nav-inner {
    display: none;
    z-index: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: #F4FAEE url("/ad-inaho/wp-content/themes/inaho/assets/images/common/bg-nav_sp.png") no-repeat left top;
    background-size: 20%;
  }
  .p-global-nav-inner.open {
    -webkit-animation: spMenuOpen .3s forwards;
    display: block;
    animation: spMenuOpen .3s forwards;
  }
  .p-global-nav-inner.close {
    -webkit-animation: spMenuClose .3s forwards;
    display: block;
    animation: spMenuClose .3s forwards;
  }
  .p-global-nav-lists {
    -ms-flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    flex-wrap: wrap;
    justify-content: center;
    height: 79%;
    padding: 190px 0 0;
  }
  .p-global-nav-link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: block;
    align-items: center;
    padding: .8rem 0;
    font-size: 1.125rem;
    letter-spacing: .2rem;
    line-height: 1.5;
  }
  .p-global-nav-link:not(:first-child) {
    border-top: 1px solid #707070;
  }
  .p-global-nav-link:first-child, .p-global-nav-link:last-child {
    margin: 0 2.6%;
  }
  .p-global-nav-link:first-child {
    padding-top: 0;
  }
  .p-global-nav-link .p-global-nav-eng {
    width: auto;
    font-size: .8125rem;
  }
}

@media print, screen and (max-width: 75em) {
  .p-global-hamburger {
    top: 10%;
    right: 0;
  }
  .p-global-subnav-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
  }
  .p-global-subnav-lists_item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    font-size: 1.25rem;
    text-align: center;
  }
  .p-global-subnav-lists_item:first-child {
    background: #107b40;
  }
  .p-global-subnav-lists_item:last-child {
    background: #957b35;
    line-height: 1.3;
  }
  .p-global-subnav-lists_link {
    display: block;
    width: 100%;
    padding: 10px 0;
    color: #fff;
  }
  .p-global-subnav-lists_link:hover {
    color: #fff;
  }
  .p-global-subnav-contact {
    margin-bottom: 0;
    background: #75c126;
    font-size: 1.25rem;
    text-align: center;
  }
  .p-global-subnav-contact_link {
    display: block;
    width: 100%;
    padding: 15px 0;
    color: #fff;
  }
  .p-global-subnav-contact_link:hover {
    color: #fff;
  }
}

@media screen and (max-width: 42.5em) {
  .p-global-nav-lists {
    height: 65%;
    margin-bottom: 20px;
    padding: 60px 0 0;
  }
  .p-global-nav-wrap {
    margin: 0 auto;
  }
  .p-global-nav-link {
    padding: .5rem 0;
    font-size: 1rem;
  }
  .p-global-subnav {
    margin-top: 30px;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 375px) {
  .p-global-subnav {
    margin-top: 0;
  }
}

@media screen and (max-width: 320px) {
  .p-global-nav-lists {
    margin-bottom: 130px;
  }
}

/** -------------------------------- **
	Footer
*** ----------------------------------------------------------------- ***/
@media screen and (max-width: 42.5em) {
  .p-footer-wrap {
    padding-bottom: 80px;
  }
}

/* Footer nav
--------------------------------------------- */
.p-home-guide_items {
  -ms-flex-preferred-size: 24%;
  flex-basis: 24%;
  max-width: 24%;
  height: 220px;
  margin: auto;
  border: 1px solid #D6D6D6;
}

.p-home-guide_items:first-child {
  margin-left: 0;
}

.p-home-guide_items:last-child {
  margin-right: 0;
}

.p-home-guide_ttl {
  display: block;
  margin-top: 10%;
  font-weight: 700;
  text-align: center;
}

.p-home-guide_ttl::before {
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
  content: "";
}

.p-home-guide_txt {
  margin: 10% 3% 0;
  font-size: .937rem;
}

/* 個別調整 */
.p-home-guide_cart .p-home-guide_ttl::before {
  width: 44px;
  height: 43px;
  background: url("/ad-inaho/wp-content/themes/inaho/assets/images/common/icon_cart.svg") no-repeat;
}

.p-home-guide_payment .p-home-guide_ttl::before {
  width: 31px;
  height: 46px;
  background: url("/ad-inaho/wp-content/themes/inaho/assets/images/common/icon_payment.svg") no-repeat;
}

.p-home-guide_truck .p-home-guide_ttl::before {
  width: 48px;
  height: 26px;
  background: url("/ad-inaho/wp-content/themes/inaho/assets/images/common/icon_truck.svg") no-repeat;
}

.p-home-guide_truck .p-home-guide_txt {
  margin-top: 15%;
}

.p-home-guide_repayment .p-home-guide_ttl::before {
  width: 37px;
  height: 40px;
  background: url("/ad-inaho/wp-content/themes/inaho/assets/images/common/icon_repayment.svg") no-repeat;
}

#delivery {
  margin-top: -240px;
  padding-top: 240px;
}

@media screen and (max-width: 42.5em) {
  #delivery {
    margin-top: -81px;
    padding-top: 81px;
  }
}

@media print, screen and (max-width: 75em) {
  .p-home-guide_items {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    max-width: 45%;
    height: auto;
    margin: 2% auto;
  }
  .p-home-guide_items:first-child, .p-home-guide_items:last-child {
    margin: 2% auto;
  }
  .p-home-guide_ttl {
    margin-top: 2%;
    font-size: 1.25rem;
  }
  .p-home-guide_txt {
    margin: 2% 6% 0;
    font-size: 1rem;
    text-align: center;
  }
}

@media screen and (max-width: 42.5em) {
  .p-home-guide_ttl {
    margin-top: 2%;
    font-size: 1rem;
  }
  .p-home-guide_txt {
    margin: 2% 6% 0;
    font-size: .875rem;
    text-align: center;
  }
  .p-home-guide_items {
    -ms-flex-preferred-size: 98%;
    flex-basis: 98%;
    max-width: 98%;
  }
  /* 個別調整 */
  .p-home-guide_cart .p-home-guide_ttl::before {
    margin-right: -.5rem;
    background-size: 80%;
  }
  .p-home-guide_payment .p-home-guide_ttl::before {
    margin-right: .2rem;
    background-size: 86%;
  }
  .p-home-guide_truck .p-home-guide_ttl::before {
    margin-right: .8rem;
  }
  .p-home-guide_truck .p-home-guide_txt {
    margin-top: 4%;
  }
  .p-home-guide_repayment .p-home-guide_ttl::before {
    margin-right: .5rem;
    background-size: 90%;
  }
}

/* Footer cotact
--------------------------------------------- */
.p-home-contact_tel,
.p-home-contact_mail a {
  padding: 4% 8%;
  text-align: center;
}

.p-home-contact_tel {
  height: 150px;
  margin-right: 1%;
  border: 1px solid #707070;
}

.p-home-contact_tel-ttl {
  font-size: 1.125rem;
  font-weight: 500;
}

.p-home-contact_tel-txt {
  display: inline-block;
  font-size: .875rem;
  text-align: left;
  vertical-align: text-bottom;
}

.p-home-contact_tel-txt span {
  font-size: 1.875rem;
  font-weight: 900;
}

.p-home-contact_tel-txt span::before {
  display: inline-block;
  position: relative;
  top: 10px;
  width: 74px;
  height: 42px;
  background: url("/ad-inaho/wp-content/themes/inaho/assets/images/common/icon_free_dial.svg") no-repeat;
  content: "";
}

.p-home-contact_mail-ttl {
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-home-contact_mail-img {
  width: 52px;
  margin: auto;
}

.p-home-contact_mail a {
  display: block;
  height: 150px;
  margin-left: 1%;
  border: 1px solid #75C126;
  background: #75C126;
  color: #fff;
}

.p-home-contact_mail a:hover {
  background: #fff;
  color: #75C126;
}

@media print, screen and (max-width: 75em) {
  .p-home-contact .c-grid-col1--sp {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    margin: 2% auto;
  }
  .p-home-contact_tel, .p-home-contact_mail {
    height: 100%;
    margin: 0;
  }
  .p-home-contact_tel-ttl, .p-home-contact_mail-ttl {
    font-size: 1.25rem;
  }
  .p-home-contact_tel-txt {
    margin: 0;
    font-size: 1.125rem;
  }
  .p-home-contact_tel-txt span {
    display: block;
    font-size: 1.75rem;
  }
  .p-home-contact_tel-txt span::before {
    position: relative;
    top: 5px;
  }
  .p-home-contact_mail-img {
    width: 60px;
    margin-top: 7%;
  }
  .p-home-contact_mail a {
    height: 100%;
  }
  .p-home-contact_mail a:active {
    background: #75C126;
  }
}

@media screen and (max-width: 42.5em) {
  .p-home-contact .c-grid-col1--sp {
    -ms-flex-preferred-size: 98%;
    flex-basis: 98%;
    max-width: 98%;
  }
  .p-home-contact_tel-ttl, .p-home-contact_mail-ttl {
    font-size: 1.25rem;
  }
  .p-home-contact_tel-txt {
    font-size: .875rem;
  }
  .p-home-contact_tel-txt span {
    font-size: 1.625rem;
  }
  .p-home-contact_tel-txt span::before {
    background-size: 80%;
    vertical-align: text-bottom;
  }
  .p-home-contact_mail-img {
    width: 50px;
    margin-bottom: 8px;
  }
}

/* Footer info
--------------------------------------------- */
.p-footer-info {
  margin: 6% auto 4%;
  text-align: center;
}

.p-footer-info-logo {
  width: 194px;
  height: 57px;
  margin: auto auto 2rem;
}

.p-footer-info p,
.p-footer-info address {
  margin: 0 0 .5rem;
  font-size: .937rem;
}

@media print, screen and (max-width: 75em) {
  .p-footer-info-logo {
    width: 30%;
    height: auto;
    margin-bottom: 3rem;
  }
  .p-footer-info p {
    margin-bottom: 0;
    font-size: 1.25rem;
  }
  .p-footer-info address {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

@media screen and (max-width: 42.5em) {
  .p-footer-info {
    margin-top: 14%;
  }
  .p-footer-info-logo {
    width: 50%;
    margin-bottom: 2rem;
  }
  .p-footer-info p,
  .p-footer-info address {
    margin: 0 0 .5rem;
    font-size: .937rem;
  }
  .p-footer-info address {
    line-height: 1.5rem;
  }
}

/* Footer subnav
--------------------------------------------- */
.p-footer-subnav-lists {
  margin: auto;
  padding: 0;
  font-size: .75rem;
  list-style-type: none;
}

.p-footer-subnav-items {
  display: inline-block;
  padding: 0 1rem;
  border-right: 1px solid #222;
}

.p-footer-subnav-items:last-child {
  border-right: none;
}

@media print, screen and (max-width: 75em) {
  .p-footer-subnav-lists {
    width: 50%;
    font-size: 1.25rem;
  }
  .p-footer-subnav-items:nth-child(2) {
    border-right: none;
  }
}

@media screen and (max-width: 42.5em) {
  .p-footer-subnav-lists {
    width: 100%;
    font-size: .937rem;
  }
}

/* Footer copyright
--------------------------------------------- */
.p-footer_copyright {
  margin: 4% auto 1%;
  color: #909090;
  font-size: .75rem;
}

@media print, screen and (max-width: 75em) {
  .p-footer_copyright {
    margin-bottom: 200px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 42.5em) {
  .p-footer_copyright {
    margin-bottom: 10px;
    font-size: .937rem;
  }
}

/** -------------------------------- **
	Wrapper
*** ----------------------------------------------------------------- ***/
.l-main_wrap {
  margin-top: -232px;
  padding-top: 464px;
}

.l-main_section {
  max-width: 1400px;
  margin: 0 auto 160px;
}

.l-main_conts--large {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.l-main_conts--medium {
  max-width: 1160px;
  margin: 0 auto 2rem;
}

.l-main_conts--medium2 {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.l-main_conts--small {
  max-width: 388px;
  margin: 0 auto 2rem;
}

@media print, screen and (max-width: 75em) {
  .l-main_wrap {
    margin-top: -120px;
    padding-top: 260px;
  }
  .l-main_section {
    margin: 0 auto;
  }
  .l-main_conts--large, .l-main_conts--medium, .l-main_conts--medium2 {
    max-width: 87%;
    margin: 0 auto 2rem;
  }
  .l-main_conts--small {
    max-width: 388px;
    margin: 0 auto 2rem;
  }
}

@media screen and (max-width: 42.5em) {
  .l-main_wrap {
    margin-top: -20%;
    padding-top: 20%;
  }
}

/** -------------------------------- **
	page top
*** ----------------------------------------------------------------- ***/
#page_top {
  position: fixed;
  right: 6.5%;
  bottom: 30px;
}

#page_top img {
  width: 77px;
  height: 77px;
}

@media print, screen and (max-width: 75em) {
  #page_top {
    bottom: 200px;
  }
}

@media screen and (max-width: 42.5em) {
  #page_top {
    bottom: 15%;
    width: 12%;
  }
}

/* ==========================================================================
	Project Original
=========================================================================== */
/** -------------------------------- **
	post
*** ----------------------------------------------------------------- ***/
/* Archive List
--------------------------------------------- */
/* Post Detail
--------------------------------------------- */
.single-posts pre {
  display: block;
}

.single-posts strong {
  font-weight: bold;
}

.single-posts em {
  font-style: italic;
}

.single-posts ul {
  list-style: outside disc;
}

.single-posts ol {
  list-style: outside decimal;
}

.single-posts li {
  margin-bottom: .6rem;
}

.single-posts blockquote {
  display: block;
  margin: 1em 40px;
}

.single-posts a {
  color: #14639a;
  text-decoration: underline;
}

.single-posts del {
  text-decoration: line-through;
}

.single-posts hr {
  display: block;
  border: none;
  border-top: #14639a 1px solid;
}

.single-posts .alignright {
  margin-bottom: 1em;
  margin-left: 1em;
  float: right;
}

.single-posts .alignleft {
  margin-right: 1em;
  margin-bottom: 1em;
  float: left;
}

.single-posts .aligncenter {
  display: block;
  margin-right: auto;
  margin-bottom: 1em;
  margin-left: auto;
}

.single-posts table {
  width: 100%;
  table-layout: fixed;
}

.single-posts table th,
.single-posts table td {
  padding: 8px 5px;
  font-size: 1rem;
  font-weight: 350;
}

.single-posts table th {
  width: 50%;
}

.single-posts table tr:not(:first-child) {
  border-top: 1px solid #707070;
}

.single-posts dl {
  margin: 1.5rem 0;
}

/** -------------------------------- **
	Top Page
*** ----------------------------------------------------------------- ***/
/* main-slide
--------------------------------------------- */
.top-slide-wrap {
  z-index: 2;
  position: relative;
}

.main-slide {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-slide .slide {
  margin: 0;
  vertical-align: baseline;
}

@media print, screen and (max-width: 75em) {
  .top-slide-wrap {
    margin: 0 auto;
  }
}

@media screen and (max-width: 42.5em) {
  .top-slide-wrap {
    margin: 70px auto 0;
  }
}

/* products lists（商品一覧）
--------------------------------------------- */
.p-products_wrap {
  margin: 60px auto;
}

.p-products-lists {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-products-items {
  -ms-flex-preferred-size: 31%;
  position: relative;
  flex-basis: 31%;
  max-width: 31%;
  height: 406px;
  margin: 4% 1.4%;
  border: 1px solid #707070;
}

.p-products-items dd,
.p-products-items .p-products-more {
  font-weight: 700;
  text-align: center;
}

.p-products-items .p-products-more02 .p-products-more-link {
  top: 53px;
}

.p-products-items_inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 86%;
  margin: 5% auto;
}

.p-products-items:nth-child(3n) {
  margin-right: 0;
}

.p-products-name {
  position: relative;
  margin-top: 4%;
  padding-top: 4%;
  font-size: 1.25rem;
  line-height: 2rem;
}

.p-products-name span {
  display: block;
  font-size: 1rem;
}

.p-products-name::after, .p-products-name::before {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #707070;
  content: "";
}

.p-products-name::after {
  display: none;
}

.p-products-price {
  color: #107B40;
  font-size: 1.5rem;
}

.p-products-unit-price {
  margin-left: 5px;
  color: #000;
  font-size: 1rem;
}

.p-products-more {
  display: block;
}

.p-products-more-link {
  display: block;
  display: inline-block;
  z-index: 0;
  position: relative;
  width: 68%;
  margin: 0 auto auto;
  padding: 4%;
  border: 1px solid #75C126;
  background: #75C126;
  color: #fff;
  font-size: 1.187rem;
}

.p-products-more-link:before {
  -webkit-transition: .4s ease 0s;
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  content: "";
  transition: .4s ease 0s;
}

.p-products-more-link:hover {
  color: #75C126;
}

.p-products-more-link:hover:before {
  width: 100%;
}

.p-products-items--single {
  padding-top: 4%;
}

.p-products-items--single .p-products-items_inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.p-products-items--single .p-products-img {
  -ms-flex-preferred-size: 24%;
  flex-basis: 24%;
  max-width: 24%;
}

.p-products-items--single_txt {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
  max-width: 70%;
  margin-left: auto;
}

.p-products-items--single_txt .p-products-name::after {
  display: block;
}

.p-products-items--single_txt .p-products-name::before {
  display: none;
}

.p-products-items--single_more {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.p-products-items--single_more .p-products-more-link {
  display: inline-block;
  z-index: 0;
  position: relative;
  margin: 10% auto auto;
  border: 1px solid #107B40;
  background: #107B40;
}

.p-products-items--single_more .p-products-more-link:before {
  -webkit-transition: .4s ease 0s;
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  content: "";
  transition: .4s ease 0s;
}

.p-products-items--single_more .p-products-more-link:hover {
  color: #107B40;
}

.p-products-items--single_more .p-products-more-link:hover:before {
  width: 100%;
}

.p-products-items--single_more .p-products-more-link {
  top: -15px;
}

.p-products-items--single02_more .p-products-more-link {
  border: 1px solid #75C126;
  background: #75C126;
}

.p-products-items--single02_more .p-products-more-link:hover {
  color: #75C126;
}

.p-products-more-link02 {
  top: 22px;
}

.p-products-noni_wrap .p-products-items:nth-child(1) .p-products-more-link {
  top: 5px;
}

.p-products-noni_wrap .p-products-items:nth-child(4) .p-products-more-link, .p-products-noni_wrap .p-products-items:nth-child(7) .p-products-more-link {
  top: 7px;
}

@media screen and (max-width: 80em) {
  .p-products-more-link {
    top: 22px;
  }
  .p-products-more-link02 {
    top: 28px;
  }
  .p-products-items--single_more .p-products-more-link {
    top: 20px;
  }
  .p-products-noni_wrap .p-products-items:nth-child(1) .p-products-more-link {
    top: 40px;
  }
  .p-products-noni_wrap .p-products-items:nth-child(4) .p-products-more-link, .p-products-noni_wrap .p-products-items:nth-child(7) .p-products-more-link {
    top: 25px;
  }
  .p-products-items--single02 .p-products-more-link03 {
    top: 55px;
  }
}

.products.p-products-items {
  -webkit-transition: all .3s;
  display: block;
  cursor: pointer;
  transition: all .3s;
}

.products.p-products-items:hover {
  -webkit-transition: all .3s;
  background: #eff9e4;
  transition: all .3s;
}

.p-products-items-link:hover img {
  opacity: 1;
}

@media print, screen and (max-width: 75em) {
  .p-products-items {
    -ms-flex-preferred-size: 46.6%;
    flex-basis: 46.6%;
    max-width: 46.6%;
    height: 340px;
  }
  .p-products-items:nth-child(odd) {
    margin-left: 2%;
  }
  .p-products-items:nth-child(even) {
    margin-right: 2%;
  }
  .p-products-items dd {
    margin-bottom: 0;
  }
  .p-products-items_inner {
    margin-bottom: 6%;
  }
  .p-products-items:nth-child(3n) {
    margin-right: 1.5%;
  }
  .p-products-items:nth-child(2n) {
    margin-right: 0;
  }
  .p-products-items .p-products-more02 .p-products-more-link {
    top: 42px;
  }
  .p-products-name::before {
    margin-top: -2%;
  }
  .p-products-name span {
    margin: .5rem 0 0;
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
  .p-products-more {
    font-size: 1.625rem;
  }
  .p-products-more-link {
    top: 0;
  }
  .p-products-price .u-sp {
    display: none !important;
  }
  .p-products-unit-price {
    font-size: .8125rem;
  }
  .p-products-items--single .p-products-items_inner {
    margin-bottom: 18%;
  }
  .p-products-items--single .p-products-name span {
    margin-bottom: 1rem;
  }
  .p-products-items--single .p-products-more-link {
    width: 76%;
    margin-bottom: 10%;
  }
  .p-products-items--single_more .p-products-more-link {
    top: -30px;
  }
  .p-products-noni_wrap .p-products-items:nth-child(1) .p-products-more-link {
    top: -12px;
  }
  .p-products-noni_wrap .p-products-items:nth-child(4) .p-products-more-link, .p-products-noni_wrap .p-products-items:nth-child(7) .p-products-more-link {
    top: 2px;
  }
  .p-products-noni_wrap .p-products-items:nth-child(8) .p-products-more-link, .p-products-noni_wrap .p-products-items:nth-child(9) .p-products-more-link {
    top: 3px;
  }
  .p-products-more-link02 {
    top: 0;
  }
  /*.p-products-items--single_more .p-products-more-link::before {
		background: transparent;
	}*/
  .p-products-lists03-items .p-products-more-link {
    top: -2px !important;
  }
  .p-products-lists04-items .p-products-more-link {
    top: -4px !important;
  }
  .p-products-lists05-items .p-products-more-link {
    top: -18px !important;
  }
}

@media screen and (max-width: 42.5em) {
  .p-products_wrap {
    margin-top: 30px;
  }
  .p-products-items {
    height: 250px;
  }
  .p-products-items dd {
    font-size: .8125rem;
    line-height: 1.2rem;
  }
  .p-products-items_inner {
    height: 186px;
  }
  .p-products-items .p-products-more02 .p-products-more-link {
    top: -12px;
  }
  .p-products-name span {
    font-size: .75rem;
    line-height: .875rem;
  }
  .p-products-more-link {
    font-size: .75rem;
  }
  .p-products-price .u-sp {
    display: block !important;
  }
  .p-products-unit-price {
    font-size: .6875rem;
  }
  .p-products-items--single .p-products-items_inner {
    height: 160px;
    margin-bottom: 14%;
  }
  .p-products-items--single .p-products-more-link {
    width: 84%;
    margin: 0 auto;
  }
  .p-products-items--single_txt .p-products-name::after {
    bottom: -10%;
  }
  .p-products-more-link {
    top: 12px;
  }
  .p-products-more-link02 {
    top: -8px;
  }
  .p-products-items--single_more .p-products-more-link {
    top: -10px;
  }
  .p-products-noni_wrap .p-products-items:nth-child(8) .p-products-more-link, .p-products-noni_wrap .p-products-items:nth-child(9) .p-products-more-link {
    top: -10px;
  }
  .p-products-noni_wrap .p-products-items:nth-child(4) .p-products-more-link, .p-products-noni_wrap .p-products-items:nth-child(7) .p-products-more-link {
    top: 10px;
  }
  .p-products-items--single02 .p-products-more-link03 {
    top: -8px;
  }
  .p-products-lists03-items .p-products-more-link {
    top: 12px !important;
  }
  .p-products-lists04-items .p-products-more-link {
    top: 12px !important;
  }
  .p-products-lists05-items .p-products-more-link {
    top: -5px !important;
  }
}

@media screen and (max-width: 375px) {
  .p-products-items {
    height: 220px;
  }
  .p-products-more-link {
    top: -10px;
  }
  .p-products-more-link.p-products-more-link-index {
    top: -12px;
  }
  .p-products-more-link02 {
    top: -8px;
  }
  .p-products-noni_wrap .p-products-items:nth-child(4) .p-products-more-link, .p-products-noni_wrap .p-products-items:nth-child(7) .p-products-more-link {
    top: -11px;
  }
  .p-products-lists03-items .p-products-more-link {
    top: -10px !important;
  }
  .p-products-lists04-items .p-products-more-link {
    top: -10px !important;
  }
  .p-products-lists05-items .p-products-more-link {
    top: -8px !important;
  }
}

@media screen and (max-width: 320px) {
  .p-products-more-link {
    top: -14px;
  }
  .p-products-noni_wrap .p-products-items:nth-child(8) .p-products-more-link, .p-products-noni_wrap .p-products-items:nth-child(9) .p-products-more-link {
    top: -13px;
  }
  .p-products-noni_wrap .p-products-items .p-products-more02 .p-products-more-link {
    top: -16px;
  }
}

/* concept（コンセプト）
--------------------------------------------- */
.p-concept-ttl {
  font-size: 1.5rem;
}

.p-concept-txt {
  font-size: .875rem;
  line-height: 2.25rem;
}

.p-concept-txt_wrap {
  -ms-flex-preferred-size: 36%;
  flex-basis: 36%;
  max-block-size: 36%;
}

.p-concept-img_wrap {
  -ms-flex-preferred-size: 64%;
  flex-basis: 64%;
  max-width: 64%;
  padding-left: 1%;
}

.p-home-subnav_link {
  display: block;
  position: relative;
  width: 285px;
  height: 160px;
  text-align: center;
}

.p-home-subnav_txt {
  -webkit-transform: translateY(-50%) translateX(-50%);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}

/* 個別設定 */
/* 稲穂のこだわり */
.p-home-subnav_commitment .p-home-subnav_link {
  background: #107B40 url("/ad-inaho/wp-content/themes/inaho/assets/images/home/home_nav_01.png");
  background-size: cover;
}

.p-home-subnav_commitment .p-home-subnav_link:hover {
  background: #07572B;
}

.p-home-subnav_commitment .p-home-subnav_txt {
  -webkit-transform: translateY(-50%) translateX(-34%);
  left: 40%;
  transform: translateY(-50%) translateX(-34%);
}

.p-home-subnav_commitment .p-home-subnav_txt-icon {
  display: inline-block;
  width: 2rem;
  margin-right: 1rem;
  vertical-align: text-bottom;
}

/* Q&A */
.p-home-subnav_howto .p-home-subnav_link {
  background: #56CC8B url("/ad-inaho/wp-content/themes/inaho/assets/images/home/home_nav_02.png");
  background-size: cover;
}

.p-home-subnav_howto .p-home-subnav_link:hover {
  background: #3BAA6D;
}

.p-home-subnav_howto .p-home-subnav_txt::before {
  -webkit-transform: translateY(-50%) translateX(-50%);
  display: block;
  position: absolute;
  top: 80%;
  left: 54%;
  width: 100px;
  height: 70px;
  margin: auto;
  transform: translateY(-50%) translateX(-50%);
  background: url("/ad-inaho/wp-content/themes/inaho/assets/images/common/icon_comment.svg") no-repeat;
  content: "";
}

/* お客様の声 */
.p-home-subnav_voice .p-home-subnav_link {
  background: #75C126 url("/ad-inaho/wp-content/themes/inaho/assets/images/home/home_nav_03.png");
  background-size: cover;
}

.p-home-subnav_voice .p-home-subnav_link:hover {
  background: #52960B;
}

.p-home-subnav_voice .p-home-subnav_txt {
  -webkit-transform: translateY(-50%) translateX(-34%);
  left: 40%;
  transform: translateY(-50%) translateX(-34%);
}

.p-home-subnav_voice .p-home-subnav_txt-icon {
  display: inline-block;
  width: 3rem;
  margin-right: 1rem;
  vertical-align: middle;
}

/* ノニジュースの飲み方 */
.p-home-subnav_question .p-home-subnav_link {
  background: #A36E91 url("/ad-inaho/wp-content/themes/inaho/assets/images/home/home_nav_04.png");
  background-size: cover;
}

.p-home-subnav_question .p-home-subnav_link:hover {
  background: #804D6E;
}

.p-home-subnav_question .p-home-subnav_txt {
  -webkit-transform: translateY(-50%) translateX(-30%);
  left: 40%;
  transform: translateY(-50%) translateX(-30%);
}

@media print, screen and (max-width: 75em) {
  .p-concept .c-section-ttl-sub {
    margin: 0;
  }
  .p-concept-ttl {
    margin: 6% 0;
    font-size: 2.125rem;
    font-weight: 500;
  }
  .p-concept-txt {
    margin: 6% 0;
    font-size: 1.562rem;
    line-height: inherit;
  }
  .p-concept-txt_wrap {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
  }
  .p-concept-img_wrap {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .p-home-subnav_items {
    margin: 2% auto;
  }
  .p-home-subnav_items:nth-child(odd) {
    padding-left: 0;
  }
  .p-home-subnav_items:nth-child(even) {
    padding-right: 0;
  }
  .p-home-subnav_link {
    width: 100%;
    height: 176px;
  }
}

@media screen and (max-width: 42.5em) {
  .p-concept-ttl {
    font-size: 1.25rem;
  }
  .p-concept-txt {
    font-size: .8125rem;
  }
  .p-home-subnav_items {
    margin: 2% auto;
  }
  .p-home-subnav_link {
    height: 90px;
  }
  .p-home-subnav_txt {
    font-size: 1rem;
  }
  /* 個別設定 */
  /* 稲穂のこだわり */
  .p-home-subnav_commitment .p-home-subnav_txt {
    left: 43%;
  }
  .p-home-subnav_commitment .p-home-subnav_txt-icon {
    width: 1.5rem;
    margin-right: .5rem;
  }
  /* Q&A */
  .p-home-subnav_howto .p-home-subnav_txt::before {
    top: 96%;
    left: 80%;
    background-size: 80%;
  }
  /* お客様の声 */
  .p-home-subnav_voice .p-home-subnav_txt {
    -webkit-transform: translateY(-50%) translateX(-12%);
    left: 20%;
    transform: translateY(-50%) translateX(-12%);
  }
  .p-home-subnav_voice .p-home-subnav_txt-icon {
    width: 2.5rem;
    margin-right: .5rem;
  }
}

/* news（お知らせ）
--------------------------------------------- */
.p-home-news_wrap {
  margin: 100px 0 0;
  /*height: 690px;*/
  padding-top: 0;
  background: url("/ad-inaho/wp-content/themes/inaho/assets/images/home/home_news_01_pc.jpg") no-repeat bottom center;
  background-size: cover;
}

.p-news-contents {
  padding: 1% 0 4%;
}

.p-news-list {
  max-width: 840px;
  margin: 40px auto 0;
  padding: 4%;
  background: rgba(255, 255, 255, 0.8);
}

.p-news-list_item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1em 1em 1.6em 80px;
  border-bottom: .5px solid #222;
  font-size: .875rem;
  letter-spacing: calc((50 / 1000)*1em);
}

.p-news-list_item dt {
  font-weight: 500;
}

.p-news-list_item dd {
  margin: 0 0 0 6%;
  border-bottom: 1px solid #222;
  line-height: 1rem;
}

.p-news-list_item:last-child {
  border-bottom: none;
}

.p-news_btn {
  display: block;
  margin-top: -2%;
}

.p-news_btn-link {
  display: block;
  width: 24%;
  margin: 0 auto auto;
  padding: 1%;
  border: 1px solid #75C126;
  border-radius: 5px;
  background: #75C126;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.p-news_btn-link:hover {
  background: #fff;
  color: #75C126;
}

@media print, screen and (max-width: 75em) {
  .p-home-news_wrap {
    height: 786px;
    margin-top: 4%;
    background: url("/ad-inaho/wp-content/themes/inaho/assets/images/home/home_news_01_sp.jpg") no-repeat bottom center;
  }
  .p-news-list_item {
    padding-left: 40px;
    font-size: 1.5rem;
  }
  .p-news-list_item dd {
    line-height: 1.5rem;
  }
  .p-news_btn {
    margin-top: -5%;
  }
  .p-news_btn-link {
    width: 52%;
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 42.5em) {
  .p-home-news_wrap {
    height: auto;
    padding: 0 0 4%;
  }
  .p-home-news_wrap .c-section-ttl-wrap {
    margin-top: 7%;
  }
  .p-news-list {
    margin-top: 4%;
  }
  .p-news-list_item {
    padding-left: 40px;
    font-size: 1rem;
  }
  .p-news-list_item dd {
    line-height: 1rem;
  }
  .p-news_btn {
    margin-top: -5%;
  }
  .p-news_btn-link {
    width: 52%;
    font-size: 1rem;
  }
}

/** -------------------------------- **
	Low Page
*** ----------------------------------------------------------------- ***/
/* products
--------------------------------------------- */
.p-products-noni_wrap .p-products-img {
  width: 74%;
  margin: auto;
}

.p-products-noni_wrap .p-products-items--single {
  padding-top: 5%;
}

.p-products-other_wrap {
  margin: 6% auto;
}

.p-products-other_wrap .p-products-lists {
  margin-top: 2%;
}

/* products-detail */
.p-products-detail_inner {
  margin: 80px 0 200px;
  padding: 8% 10% 4%;
  background: #F8F5F5;
}

.p-products-detail_img {
  -ms-flex-preferred-size: 44%;
  flex-basis: 44%;
  max-width: 44%;
  margin-right: auto;
}

.p-products-detail_txt-wrap {
  -ms-flex-preferred-size: 45%;
  flex-basis: 45%;
  max-width: 45%;
}

.p-products-detail_txt-num {
  margin-bottom: 3px;
  font-size: 1.125rem;
}

.p-products-detail_txt-name, .p-products-detail_txt-price {
  font-size: 2.187rem;
  font-weight: 700;
}

.p-products-detail_txt-name {
  margin-bottom: 13px;
  line-height: 1.5;
}

.p-products-detail_txt-eng {
  display: block;
  font-size: 1.437rem;
}

.p-products-detail_txt-price {
  margin-right: 20px;
  color: #107B40;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
}

.p-products-detail_txt-price span {
  font-size: 1.625rem;
}

.p-products-detail_buy-btn a {
  border: 1px solid #FF741D;
  background: #FF741D;
  color: #fff;
}

.p-products-detail_sentence {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  font-size: 1.125rem;
}

.product_init_num {
  width: 60px;
  padding: 0;
  line-height: 1;
}

.product_addcart_btn {
  -webkit-transition: all 0.2s ease-in-out;
  width: 60%;
  padding: .5em 0;
  padding-left: 0px;
  padding-left: 30px;
  float: none;
  border: none;
  border-radius: 0;
  background: #ff741d url("/ad-inaho/wp-content/themes/inaho/assets/images/common/icon_cart_02.svg") left 20px center no-repeat;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.product_addcart_btn:hover {
  -webkit-transition: all 0.2s ease-in-out;
  opacity: .7;
  transition: all 0.2s ease-in-out;
}

.product_cart_btn {
  color: #fff;
  font-size: 1.125rem;
}

.p-products-detail_sentence {
  margin-top: 20px;
  font-size: 1rem;
}

@media print, screen and (max-width: 75em) {
  .product_addcart_btn {
    width: 80%;
  }
}

@media screen and (max-width: 42.5em) {
  .p-products-detail_inner {
    display: block;
    margin: 80px 0 50px;
  }
  .p-products-detail_img {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .p-products-detail_txt-wrap {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .p-products-detail_txt-name, .p-products-detail_txt-price {
    font-size: 1.5rem;
  }
  .product_addcart_btn {
    width: 100%;
  }
  .products-detail-tbl td {
    vertical-align: middle;
  }
  .num-ctrl {
    position: relative;
    top: -8px;
  }
}

/* about us
--------------------------------------------- */
/* about us
--------------------------------------------- */
/* about us
--------------------------------------------- */
/* about us
--------------------------------------------- */
.p-about-conts04-lists li {
  position: relative;
  font-size: .875rem;
  list-style: none;
}

.p-about-conts04-lists li::after {
  display: block;
  position: absolute;
  top: .9em;
  left: -.6em;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #222;
  content: '';
}

.p-about-conts04-lists .p-lists_blackdot::after {
  top: .6em;
  left: -.8em;
  width: 10px;
  height: 10px;
}

.p-about-conts04-lists .p-lists_whitedot::after {
  top: .6em;
  left: -.8em;
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  background-color: #fff;
}

.tabs-list {
  margin-bottom: 1rem;
  padding: 2vw;
}

.tabs-list li {
  padding-right: 1%;
  padding-left: 1%;
}

.tabs-list a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .7rem .5rem;
  border: 1px solid #00aaeb;
  border-radius: 5px;
  background: #00aaeb;
  color: #fff;
  font-size: calc((13 * 100 / 375) * 1vw);
}

.tabs-list a.ac {
  background: #fff;
  color: #00aaeb;
}

.tabs-conts {
  display: none;
}

.tabs-conts.open {
  display: block;
}

.p-voice_wrap .c-grid--mgn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 1200px;
  /*height: 2000px;*/
  height: 100% !important;
  margin: 0 auto;
}

/* Accordion */
.question-group-conts {
  margin: 4% auto;
}

.p-question_wrap .requirements-box {
  max-width: 1100px;
  margin: 25px auto 0;
}

.p-question_wrap .requirements-box .c-page-link {
  margin-left: 10px;
  text-decoration: underline;
}

.question-group-headline {
  position: relative;
  width: 100%;
  margin: auto;
  margin-bottom: 10px;
  padding: 1% 0 .3%;
  border-bottom: 2px dashed #107b40;
  color: #107b40;
  font-size: 1.25rem;
  cursor: pointer;
}

.question-group-headline:after {
  -webkit-transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(135deg);
  display: block;
  position: absolute;
  top: 38%;
  right: 25px;
  width: 13px;
  height: 13px;
  transform: rotate(135deg);
  border-top: solid 2px #107b40;
  border-right: solid 2px #107b40;
  content: "";
  transition: all 0.2s ease-in-out;
}

.question-group-headline.acd-hd-open:after {
  -webkit-transform: rotate(-45deg);
  top: 45%;
  transform: rotate(-45deg);
}

.question-group-arr {
  -webkit-transition: all .3s ease-in-out;
  -webkit-transform: translateY(-120%);
  position: absolute;
  right: 2%;
  bottom: -90%;
  transform: translateY(-120%);
  color: #32B4F0;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all .3s ease-in-out;
}

.question-group-arr::after {
  -webkit-transform: rotate(0deg);
  -webkit-transition: all .3s ease-in-out;
  display: inline-block;
  width: 26px;
  height: 40px;
  margin-left: 2rem;
  transform: rotate(0deg);
  background: url("/adcms/wp-content/themes/nds-naha/images/icon-arr.svg") center no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
  transition: all .3s ease-in-out;
}

.acd-body-open .question-group-arr::after,
.acd-hd-open .question-group-arr::after {
  -webkit-transform: rotate(-180deg);
  -webkit-transition: all .3s ease-in-out;
  transform: rotate(-180deg);
  transition: all .3s ease-in-out;
}

/* #question-01 */
#question-01 .p-question-time th,
#question-01 .p-question-time td {
  padding: 1% .5%;
}

#question-01 .p-question-name {
  font-size: 1.125rem;
}

.p-about-conts04_wrap #ingredient {
  margin-top: -230px;
  padding-top: 230px;
}

.p-about-conts02_wrap p {
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .question-group-arr {
    position: static;
    right: 0;
    bottom: 0;
  }
  .question-group-arr::after {
    margin-left: 1rem;
  }
}

@media print, screen and (max-width: 75em) {
  .question-group-headline {
    font-size: 1.125rem;
  }
  .p-about-conts04_wrap #ingredient {
    margin-top: -117px;
    padding-top: 117px;
  }
}

@media screen and (max-width: 42.5em) {
  .question-group-headline {
    font-size: 1rem;
  }
  .question-group-headline::after {
    right: 0;
  }
  .p-about-conts04_wrap #ingredient {
    margin-top: -75px;
    padding-top: 75px;
  }
}

/*201217追記*/
.p-about_wrap .c-conts-ttl-txt {
  margin: 30px 0 35px;
  color: #107b40;
}

.p-about-conts_img {
  max-width: 710px;
  margin: 50px auto 80px;
}

.p-about-conts03_wrap .c-conts-ttl-wrap {
  margin: 100px auto 10px;
}

.p-about-conts03_wrapinner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.p-about-conts03_txt {
  -ms-flex-preferred-size: 56.25%;
  flex-basis: 56.25%;
  width: 56.25%;
  margin-right: auto;
}

.p-about-conts03_img {
  -ms-flex-preferred-size: 38.3%;
  flex-basis: 38.3%;
  width: 38.3%;
}

.p-about-conts04_inner {
  margin-bottom: 110px;
  padding: 2.5% 1%;
  border: 1px solid #222;
}

@media print, screen and (max-width: 75em) {
  .p-about-conts03_wrap .c-conts-ttl-wrap {
    margin: 50px auto 10px;
  }
}

@media screen and (max-width: 42.5em) {
  .p-about-conts_img {
    margin: 30px auto 40px;
  }
  .p-about_wrap .c-conts-ttl-txt {
    margin: 30px 0 20px;
  }
  .p-about-conts03_wrap .c-conts-ttl-wrap {
    margin: 0px auto 10px;
  }
  .p-about-conts03_wrapinner {
    display: block;
    margin: 0 auto;
  }
  .p-about-conts03_txt {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-about-conts03_img {
    width: 100%;
  }
}

/* commitment
--------------------------------------------- */
.p-commitment_wrap .tabs-list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.p-commitment_wrap .tabs-list a {
  border: none;
  border-radius: 0;
  background: #107b40;
  color: #fff;
  font-size: 1.375rem;
  opacity: .75;
}

.p-commitment_wrap .tabs-list a.ac {
  background: #107b40;
  opacity: 1;
}

.p-commitment_wrap .tabs-list a:hover {
  background: #107b40;
  opacity: 1;
}

.p-commitment_wrap .tabs-list .c-grid-items:nth-child(3) a {
  background: #8b8b8b;
  pointer-events: none;
}

.p-commitment_wrap .c-conts-ttl-txt {
  margin-bottom: 30px;
  color: #107b40;
}

.p-7-commitments_img {
  max-width: 768px;
  margin: 0 auto 70px;
}

.p-7-commitments-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  margin: 110px auto 200px;
}

.p-7-commitments-point_wrap {
  -ms-flex-preferred-size: 46.6%;
  flex-basis: 46.6%;
  width: 46.6%;
  margin: 0 5.3% 6% 0;
  padding: 2%;
  border: 1px solid #707070;
}

.p-7-commitments-point_wrap:nth-child(2n) {
  position: relative;
  top: 150px;
  margin-right: 0;
}

.p-7-commitments-point_wrap:last-child {
  border: none;
}

.p-7-commitments-point_img {
  max-width: 422px;
  margin: 0 auto;
}

.p-7-commitments_num {
  width: 70px;
  height: 70px;
  margin: -60px auto 10px;
  background: #75c126;
  color: #fff;
  font-size: 2.5rem;
  line-height: 70px;
  text-align: center;
}

.p-7-commitments_ttl {
  text-align: center;
}

.p-7-commitments_txt {
  font-size: .875rem;
}

@media print, screen and (max-width: 75em) {
  .p-commitment_wrap .tabs-list {
    margin: 20px auto 30px;
  }
  .p-commitment_wrap .tabs-list a {
    font-size: 1.25rem;
  }
  .p-commitment_wrap .c-grid-col2--sp {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    max-width: 30%;
  }
  .p-7-commitments-point_wrap {
    margin: 0 5.3% 16% 0;
  }
}

@media screen and (max-width: 42.5em) {
  .p-commitment_wrap .c-grid-col2--sp {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
    max-width: 48%;
    margin-bottom: 6%;
  }
  .p-commitment_wrap .tabs-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 30px auto;
  }
  .p-commitment_wrap .tabs-list a {
    font-size: 1rem;
  }
  .p-7-commitments-point {
    display: block;
    margin: 110px auto 100px;
  }
  .p-7-commitments-point_wrap {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
    margin: 0 5.3% 30% 0;
  }
  .p-7-commitments-point_wrap:nth-child(2n) {
    position: static;
    margin-right: 0;
  }
}

/* howto
--------------------------------------------- */
.p-howto_wrap .c-conts-ttl-txt {
  margin: 30px 0 35px;
  color: #107b40;
}

.p-howto-conts02_wrap .c-conts-ttl-txt {
  margin-top: 90px;
}

.p-howto-conts03_wrap .c-conts-ttl-txt {
  margin-top: 130px;
}

.p-howto-conts03_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 962px;
  margin: 0 auto 10px;
}

.p-howto-conts03_items {
  -ms-flex-preferred-size: 47.9%;
  flex-basis: 47.9%;
  width: 47.9%;
  margin: 0 4.1% 2% 0;
  padding: 1% 3.3%;
  border-radius: 21px;
  background: #75c126;
  color: #fff;
  font-size: 1.125rem;
}

.p-howto-conts03_items:nth-child(2n) {
  margin-right: 0;
}

.p-howto-conts03_text {
  margin-bottom: 100px;
  text-align: center;
}

.p-howto-conts04_wrap {
  margin-bottom: 200px;
}

.p-howto-conts04_wrap .c-conts-ttl-wrap {
  margin: 0 auto;
}

.p-howto-conts04_txt-wrapinner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.p-howto-conts04_txt-wrap {
  -ms-flex-preferred-size: 63.9%;
  flex-basis: 63.9%;
  width: 63.9%;
  margin-right: auto;
}

.p-howto-conts04_img {
  -ms-flex-preferred-size: 29%;
  flex-basis: 29%;
  width: 29%;
}

.p-howto-conts04_img02 {
  display: block;
  width: 26.1%;
  margin: 80px auto 0;
}

.p-howto-conts04_lists {
  padding-left: 17px;
  list-style: square;
}

@media print, screen and (max-width: 75em) {
  .p-howto-conts02_wrap {
    margin-top: 45px;
  }
  .p-howto-conts03_wrap .c-conts-ttl-txt {
    margin-top: 60px;
  }
  .p-howto-conts03_items {
    font-size: 1rem;
  }
  .p-howto-conts03_text {
    margin-bottom: 50px;
    font-size: .875rem;
  }
  .p-howto-conts04_wrap {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 42.5em) {
  .p-howto-conts02_wrap .c-conts-ttl-txt {
    margin-top: 40px;
  }
  .p-howto-conts03_items {
    font-size: .875rem;
  }
  .p-howto-conts03_text {
    margin-bottom: 30px;
  }
  .p-howto-conts04_txt-wrapinner {
    display: block;
  }
  .p-howto-conts04_txt-wrap {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-howto-conts04_img {
    width: 100%;
  }
}

/* news 一覧
--------------------------------------------- */
.sec-page .p-home-news_wrap {
  max-width: 1000px;
  margin: 50px auto 30px;
  background: #f5fbee none;
}

.sec-page .p-news-list {
  max-width: 740px;
  margin: 40px auto 0;
  padding: 0;
  background: #f5fbee;
}

.sec-page .p-news-list_item:last-child {
  border-bottom: .5px solid #222;
}

.sec-page .c-pager-lists {
  margin-bottom: 100px;
}

.sec-page .c-pager-lists li a {
  border: none;
  font-size: 1.125rem;
}

.sec-page .c-pager-lists li a:hover {
  border: none;
  background: none;
  color: #75C126;
}

@media print, screen and (max-width: 75em) {
  .p-news-list_item {
    font-size: 1.125rem;
  }
  .sec-page .p-home-news_wrap {
    height: 100%;
  }
  .p-news-contents {
    padding: 1% 0 10%;
  }
}

@media screen and (max-width: 42.5em) {
  .p-news-list_item {
    padding-left: 5px;
    font-size: .8125rem;
  }
  .p-news-contents {
    padding: 1% 0;
  }
  .sec-page .c-pager-lists {
    margin-bottom: 50px;
  }
  .sec-page .c-pager-lists li a {
    font-size: 1rem;
  }
}

/* news 詳細
--------------------------------------------- */
.p-news-detail_ttl {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 50px auto;
  padding: 1% 5%;
  background: #f5fbee;
}

.p-news-detail_ttl_txt {
  margin-bottom: 0;
  color: #107b40;
  font-size: 1.25rem;
}

.p-news-detail-data {
  margin: 0 15% 0 0;
}

.p-news-detail_conts {
  max-width: 840px;
  margin: 0 auto 100px;
}

@media screen and (max-width: 42.5em) {
  .p-news-detail_ttl {
    display: block;
    margin: 50px auto 30px;
    padding: 1% 5% 2%;
  }
  .p-news-detail_ttl_txt {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* company
--------------------------------------------- */
.p-company-conts01_table {
  max-width: 885px;
  margin: 0 auto 80px;
}

.p-company-conts01_table th {
  width: 35%;
  padding: 1% 2.5%;
  border-right: none;
  border-bottom: 1px solid #707070;
  vertical-align: middle;
}

.p-company-conts01_table td {
  padding: 1% 2.5%;
  border-bottom: 1px solid #707070;
}

.p-company-conts02_wrap .c-conts-ttl-txt {
  margin-bottom: 60px;
  color: #107b40;
  font-size: 1.375rem;
}

.p-company-conts02_wrap iframe {
  display: block;
  width: 888px;
  height: 405px;
  margin: 0 auto;
}

.p-company-conts03_wrap .c-conts-ttl-txt {
  margin: 100px 0 10px;
  color: #107b40;
  font-size: 1.375rem;
}

.p-company-conts03_wrap p {
  line-height: 2.2;
}

.p-company-conts04_wrap .c-conts-ttl-txt {
  margin: 100px 0 10px;
  color: #107b40;
  font-size: 1.375rem;
}

.p-company-conts04_wrap p {
  line-height: 2.2;
}

.p-company-conts04_inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: -50px;
}

.p-company-conts04_txt {
  -ms-flex-preferred-size: 74%;
  flex-basis: 74%;
  width: 74%;
  margin-top: 60px;
  margin-right: 5.4%;
}

.p-company-conts04_img {
  -ms-flex-preferred-size: 17%;
  flex-basis: 17%;
  width: 17%;
}

.p-company-conts05_wrap {
  margin-bottom: 100px;
}

.p-company-conts05_wrap .c-conts-ttl-txt {
  margin: 100px 0 10px;
  color: #107b40;
  font-size: 1.375rem;
}

.p-company-conts05_wrap p {
  line-height: 2.2;
}

.p-company_wrap {
  margin-top: 40px;
}

.company-message {
  position: relative;
  top: 20px;
}

@media print, screen and (max-width: 75em) {
  .p-company-conts04_inner {
    margin-top: 0px;
  }
  .p-company-conts04_txt {
    -ms-flex-preferred-size: 70.5%;
    flex-basis: 70.5%;
    width: 70.5%;
  }
  .p-company-conts04_img {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    width: 20%;
  }
}

@media screen and (max-width: 42.5em) {
  .p-company-conts01_table {
    margin: 0 auto 40px;
  }
  .p-company-conts02_wrap .c-conts-ttl-txt {
    margin-bottom: 35px;
  }
  .p-company-conts03_wrap .c-conts-ttl-txt {
    margin: 50px 0 10px;
  }
  .p-company-conts04_wrap .c-conts-ttl-txt {
    margin: 50px 0 10px;
  }
  .p-company-conts04_inner {
    display: block;
  }
  .p-company-conts04_txt {
    width: 100%;
  }
  .p-company-conts04_img {
    width: 50%;
    margin: 40px auto 0;
  }
  .p-company-conts05_wrap .c-conts-ttl-txt {
    margin: 60px 0 10px;
  }
}

/* voice
--------------------------------------------- */
.p-voice_wrap {
  margin: 50px auto 150px;
}

.p-voice_wrap .c-grid-col3--pc {
  -ms-flex-preferred-size: 27.8%;
  -webkit-box-shadow: 7px 7px 5px rgba(163, 163, 163, 0.6);
  position: relative;
  flex-basis: 27.8%;
  width: 27.8%;
  margin: 0 4% 6% 0;
  padding: 0 0.9em 0.6em;
  border-radius: 12px;
  background: #e9f5dd;
  box-shadow: 7px 7px 5px rgba(163, 163, 163, 0.6);
  color: #222;
  font-size: .875rem;
  /*&::before {
				box-shadow: none;
			}
			&::after {
				background: #e9f5dd;
				box-shadow: 7px 7px 5px rgba(163, 163, 163, 0.6);
			}*/
}

.p-voice_wrap .c-grid-col3--pc:nth-child(3n) {
  margin-right: 0;
}

.p-voice_wrap .c-grid-col3--pc:nth-child(1) {
  /*height: 140px;*/
}

.p-voice_wrap .c-grid-col3--pc:nth-child(1)::before {
  -webkit-filter: drop-shadow(7px 7px 5px rgba(163, 163, 163, 0.6));
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -20px;
  left: 70%;
  margin-left: -10px;
  border-width: 20px 0 0 20px;
  border-style: solid;
  border-color: #e9f5dd transparent;
  content: '';
  filter: drop-shadow(7px 7px 5px rgba(163, 163, 163, 0.6));
}

.p-voice_wrap .c-grid-col3--pc:nth-child(2) {
  /*height: 255px;*/
}

.p-voice_wrap .c-grid-col3--pc:nth-child(2)::before {
  -webkit-filter: drop-shadow(7px 7px 5px rgba(163, 163, 163, 0.6));
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -20px;
  left: 60%;
  margin-left: -10px;
  border-width: 20px 20px 0 0;
  border-style: solid;
  border-color: #e9f5dd transparent;
  content: '';
  filter: drop-shadow(7px 7px 5px rgba(163, 163, 163, 0.6));
}

.p-voice_wrap .c-grid-col3--pc:nth-child(3) {
  /*height: 160px;*/
}

.p-voice_wrap .c-grid-col3--pc:nth-child(3)::before {
  -webkit-filter: drop-shadow(7px 7px 5px rgba(163, 163, 163, 0.6));
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -20px;
  left: 40%;
  margin-left: -10px;
  border-width: 20px 20px 0 0;
  border-style: solid;
  border-color: #e9f5dd transparent;
  content: '';
  filter: drop-shadow(7px 7px 5px rgba(163, 163, 163, 0.6));
}

.p-voice_wrap .c-grid-col3--pc:nth-child(4) {
  /*height: 270px;
				margin-top: -64px;*/
}

.p-voice_wrap .c-grid-col3--pc:nth-child(4)::before {
  -webkit-filter: drop-shadow(7px 7px 5px rgba(163, 163, 163, 0.6));
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -20px;
  left: 30%;
  margin-left: -10px;
  border-width: 20px 0 0 20px;
  border-style: solid;
  border-color: #e9f5dd transparent;
  content: '';
  filter: drop-shadow(7px 7px 5px rgba(163, 163, 163, 0.6));
}

.p-voice_wrap .c-grid-col3--pc:nth-child(5) {
  /*height: 195px;
				margin-top: 10px;*/
}

.p-voice_wrap .c-grid-col3--pc:nth-child(5)::before {
  -webkit-filter: drop-shadow(7px 7px 5px rgba(163, 163, 163, 0.6));
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -20px;
  left: 40%;
  margin-left: -10px;
  border-width: 20px 0 0 20px;
  border-style: solid;
  border-color: #e9f5dd transparent;
  content: '';
  filter: drop-shadow(7px 7px 5px rgba(163, 163, 163, 0.6));
}

.p-voice_wrap .c-grid-col3--pc:nth-child(6) {
  /*height: 220px;
				margin-top: -17px;*/
}

.p-voice_wrap .c-grid-col3--pc:nth-child(6)::before {
  -webkit-filter: drop-shadow(7px 7px 5px rgba(163, 163, 163, 0.6));
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -20px;
  left: 70%;
  margin-left: -10px;
  border-width: 20px 20px 0 0;
  border-style: solid;
  border-color: #e9f5dd transparent;
  content: '';
  filter: drop-shadow(7px 7px 5px rgba(163, 163, 163, 0.6));
}

.p-voice_wrap .c-grid--mgn {
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
  -ms-flex-direction: initial;
  flex-direction: initial;
  height: 0;
}

.p-voice_wrap .voice-list_title {
  font-weight: 400;
  text-align: center;
}

.p-voice_wrap .voice-list_title span {
  display: inline-block;
  position: relative;
  top: -17px;
  padding: 3px 10px 3px 32px;
  border-radius: 20px;
  background: #107b40 url("/ad-inaho/wp-content/themes/inaho/assets/images/voice/voice-icon.png") no-repeat left 14px center;
  color: #fff;
  font-size: .8125rem;
}

.p-voice_wrap .voice-list_data {
  font-weight: normal;
  line-height: 2;
}

.p-voice_annotation {
  margin-top: 20px;
  font-size: .875rem;
}

@media print, screen and (max-width: 75em) {
  .p-voice_wrap {
    margin: 50px auto 80px;
  }
  .p-voice_wrap .c-grid-col3--pc {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    width: 30%;
    margin-bottom: 60px;
  }
  .p-voice_wrap .c-grid-col3--pc:nth-child(1) {
    height: 100%;
  }
  .p-voice_wrap .c-grid-col3--pc:nth-child(2) {
    height: 100%;
  }
  .p-voice_wrap .c-grid-col3--pc:nth-child(3) {
    height: 100%;
  }
  .p-voice_wrap .c-grid-col3--pc:nth-child(4) {
    height: 100%;
    margin-top: 0;
  }
  .p-voice_wrap .c-grid-col3--pc:nth-child(5) {
    height: 100%;
    margin-top: 0;
  }
  .p-voice_wrap .c-grid-col3--pc:nth-child(6) {
    height: 100%;
    margin-top: 0;
  }
}

@media screen and (max-width: 42.5em) {
  .p-voice_wrap {
    margin: 80px auto 50px;
  }
  .p-voice_wrap .c-grid--mgn {
    display: block;
  }
  .p-voice_wrap .c-grid-col3--pc {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 100px;
  }
}

/* contact
--------------------------------------------- */
.p-contact_wrap {
  margin: 4% auto 8%;
}

.p-form_inner {
  border: 1px solid #707070;
}

.p-form_required {
  display: inline-block;
  margin-left: 1%;
  padding: 0 1%;
  background: #E3344F;
  color: #fff;
  font-size: .812rem;
}

.p-form_items {
  width: 94%;
  margin: auto auto 1.5rem;
}

.p-form_items dt {
  margin-bottom: .5rem;
  font-weight: 500;
}

.p-form_items:first-child {
  margin-top: 2%;
}

.p-form-name {
  width: 40%;
}

.p-form-mail, .p-form-subject {
  width: 60%;
}

.p-form-detail {
  width: 80%;
}

/*.p-form-btn-wrap {
  margin: 4% auto 2.5%;
	text-align: center;
	.form-btn_return,
	.form-btn_submit {
		display: inline-block;
		width: auto;
		cursor: pointer;
		.form-btn {
			display: block;
			padding: 4% 24%;
			color: $color-white;
			border-radius: 25px;
			font-weight: 700;
		}
	}
	.form-btn_return {
		margin-right: 4%;
		.form-btn {
			padding: 4% 36%;
			border: 1px solid #767676;
			background: #767676;
		}
	}
	.form-btn_submit .form-btn {
		border: 1px solid $color-green;
		background: $color-green;
	}
}*/
.mw_wp_form {
  border: 1px solid #707070;
}

.form-btn_submit {
  -webkit-transition: all 0.3s;
  width: 168px;
  padding: 10px 0;
  border: none;
  border-radius: 33px;
  background: #75C126;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

.form-btn_submit:hover {
  -webkit-transition: all 0.3s;
  filter: alpha(opacity=70);
  opacity: 0.7;
  transition: all 0.3s;
}

.form-btn_submit:focus {
  width: 168px;
  padding: 10px 0;
  border: none;
  border-radius: 33px;
  outline: 0;
  background: #75C126;
  color: #fff;
  cursor: pointer;
}

.form-btn_return {
  -webkit-transition: all 0.3s;
  width: 76px;
  padding: 3px 0;
  border: none;
  border-radius: 18px;
  background: #767676;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

.form-btn_return:hover {
  -webkit-transition: all 0.3s;
  filter: alpha(opacity=70);
  opacity: 0.7;
  transition: all 0.3s;
}

.form-btn_return:focus {
  width: 76px;
  padding: 3px 0;
  border: none;
  border-radius: 18px;
  outline: 0;
  background: #767676;
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 42.5em) {
  .p-contact_wrap {
    margin: 10% auto 8%;
  }
  .p-form-name, .p-form-mail, .p-form-subject, .p-form-detail {
    width: 100%;
  }
}

/* scta
--------------------------------------------- */
.p-scta_wrap {
  margin: 50px auto 100px;
}

@media screen and (max-width: 42.5em) {
  .p-scta_wrap {
    margin: 100px auto 50px;
  }
}

/* privacy policy
--------------------------------------------- */
.p-privacy-policy_wrap {
  margin: 50px auto 100px;
}

@media screen and (max-width: 42.5em) {
  .p-privacy-policy_wrap {
    margin: 100px auto 50px;
  }
}
