@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Lora:400,700&display=swap");
/**以下レスポンシブグリッド用**/
/*----------------------------------------------------
	#contents
----------------------------------------------------*/
.l-contents {
  word-break: normal;
  word-wrap: break-word; }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
@-webkit-keyframes menuAnim-top {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg); }
  50% {
    -webkit-transform: translateY(10px) rotate(0deg);
    transform: translateY(10px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); } }
@keyframes menuAnim-top {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg); }
  50% {
    -webkit-transform: translateY(10px) rotate(0deg);
    transform: translateY(10px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); } }

@-webkit-keyframes menuAnim-bottom {
  0% {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg); }
  50% {
    -webkit-transform: translateY(-10px) rotate(0deg);
    transform: translateY(-10px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); } }

@keyframes menuAnim-bottom {
  0% {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg); }
  50% {
    -webkit-transform: translateY(-10px) rotate(0deg);
    transform: translateY(-10px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); } }

@-webkit-keyframes menuAnim-top-close {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(10px) rotate(0deg);
    transform: translateY(10px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg); } }

@keyframes menuAnim-top-close {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(10px) rotate(0deg);
    transform: translateY(10px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg); } }

@-webkit-keyframes menuAnim-bottom-close {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(-10px) rotate(0deg);
    transform: translateY(-10px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg); } }

@keyframes menuAnim-bottom-close {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(-10px) rotate(0deg);
    transform: translateY(-10px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg); } }

.l-header {
  width: 100%;
  padding: 20px 0;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100; }
  .l-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .l-header__logo a {
    -webkit-transition: all .3s ease;
    transition: all .3s ease; }
    .l-header__logo a.is-hover {
      opacity: 0.8; }
  .l-header__navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .l-header__navi ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .l-header__navi ul li a {
        display: block;
        color: #111;
        font-family: dnp-shuei-4go-std, sans-serif;
        padding: 5px 10px;
        position: relative;
        -webkit-transition: all .5s ease;
        transition: all .5s ease; }
        .l-header__navi ul li a::before {
          content: '';
          display: block;
          width: 0%;
          height: 1px;
          background-color: #a5161e;
          position: absolute;
          bottom: 0px;
          left: 50%;
          -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
          -webkit-transition: all .5s ease;
          transition: all .5s ease; }
        .l-header__navi ul li a.is-hover {
          color: #a5161e; }
          .l-header__navi ul li a.is-hover::before {
            width: 90%; }
  .l-header__tel {
    font-family: "Lora", serif;
    font-size: 1.6rem;
    color: #a5161e;
    margin-left: 20px; 
}
    .l-header__tel .num {
      font-size: 2.5rem;
      font-weight: bold; }
  .l-header .hamburger {
    width: 60px;
    height: 50px;
    cursor: pointer;
    position: relative; }
    .l-header .hamburger::before {
      content: '';
      display: block;
      height: 2px;
      width: 50%;
      position: absolute;
      top: 32%;
      left: calc(50% - (30px / 2));
      background-color: #a5161e;
      -webkit-animation: menuAnim-top .5s forwards;
      animation: menuAnim-top .5s forwards; }
    .l-header .hamburger::after {
      content: '';
      display: block;
      height: 2px;
      width: 50%;
      position: absolute;
      bottom: 25%;
      left: calc(50% - (30px / 2));
      background-color: #a5161e;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      -webkit-animation: menuAnim-bottom .5s forwards;
      animation: menuAnim-bottom .5s forwards; }
    .l-header .hamburger span {
      height: 2px;
      width: 50%;
      position: absolute;
      top: 51%;
      left: calc(50% - (30px / 2));
      background-color: #a5161e;
      opacity: 1;
      -webkit-transition: all .3s ease .3s;
      transition: all .3s ease .3s; }
      .l-header .hamburger span.hidden {
        opacity: 0; }
    .l-header .hamburger.is-act::before {
      -webkit-animation: menuAnim-top-close .5s forwards;
      animation: menuAnim-top-close .5s forwards; }
    .l-header .hamburger.is-act::after {
      -webkit-animation: menuAnim-bottom-close .5s forwards;
      animation: menuAnim-bottom-close .5s forwards; }

@media screen and (max-width:1212px) {
.l-header__navi ul li a {padding: 5px 10px;}
}
/*----------------------------------------------------
	#Gナビ
----------------------------------------------------*/
.l-gnavi {
  width: 100%; }
  .l-gnavi ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .l-gnavi ul li {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1; }

/*----------------------------------------------------
	#main
----------------------------------------------------*/
.l-main {
  line-height: 180%; }
  .l-main table, .l-main ol, .l-main ul, .l-main dl, .l-main blockquote, .l-main pre, .l-main p {
    margin-bottom: 20px; }

/*-----------------------------------------------------
	フッター
-----------------------------------------------------*/
.l-footer__info {
  background: url(../img/bg/bg_paper@2x.jpg);
  background-attachment: fixed;
  background-size: 100%;
  padding: 60px 0;
  text-align: center; }
  .l-footer__info .logo {
    margin-bottom: 15px; }
  .l-footer__info address {
    font-style: normal;
    font-size: 1.3rem; }
  .l-footer__info .tel {
    font-size: 1.3rem;
    margin-bottom: 0; }

.l-footer__bottom {
  width: 100%;
  background: #a5161e;
  padding: 20px 0;
  color: #fff;
  position: relative; }

.l-footer__copyright {
  text-align: right;
  font-family: dnp-shuei-4go-std, sans-serif; }

/* スマホ
-------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .l-header {
    padding: 15px 0; }
    .l-header__logo {
      width: 55vw; }
    .l-header__navi {
      display: none;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      position: absolute;
      left: 0;
      top: 0;
      background-color: #fff;
      z-index: 100;
      width: 100%; }
      .l-header__navi ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
        .l-header__navi ul li {
          width: 95%; }
          .l-header__navi ul li a {
            padding: 15px;
            border-bottom: 1px solid #a5161e; }
            .l-header__navi ul li a::before {
              display: none; }
            .l-header__navi ul li a::after {
              content: '\f054';
              font-family: "Font Awesome 5 Pro";
              font-weight: normal;
              display: inline-block;
              position: absolute;
              top: 50%;
              right: 15px;
              -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
              color: #a5161e; }
    .l-header__tel {
      text-align: center;
      margin: 20px 0; }
      .l-header__tel a {
        color: #a5161e; }
  .l-footer__copyright {
    font-size: 1.2rem; }
  .l-footer__info {
    padding: 40px 0; }
    .l-footer__info address {
      margin-bottom: 10px; }
    .l-footer__info .tel a {
      color: #a5161e; }
    .l-footer__info .tel .num {
      font-size: 1.8rem; } }

@media only screen and (min-width: 768px) and (max-width: 1299px) {
  .l-header__navi ul li a {
    font-size: 1.4rem; } }

.c-btn01 a {
  display: block;
  border: 1px solid #a5161e;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 0 15px;
  height: 250px;
  color: #a5161e;
  text-align: center;
  position: relative;
  -webkit-transition: all .5s ease;
  transition: all .5s ease; }
  .c-btn01 a::before {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background-color: #a5161e;
    position: absolute;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease; }
  .c-btn01 a.is-hover {
    color: #fff;
    background-color: #a5161e; }
    .c-btn01 a.is-hover::before {
      top: -10px;
      background-color: #fff; }
  @media all and (-ms-high-contrast: none) {
    .c-btn01 a::before {
      left: 84%; } }

.c-btn02 a {
  display: block;
  border: 1px solid #a5161e;
  color: #a5161e;
  text-align: center;
  padding: 15px 0;
  width: 250px;
  position: relative;
  -webkit-transition: all .5s ease;
  transition: all .5s ease; }
  .c-btn02 a::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: #a5161e;
    position: absolute;
    top: 50%;
    left: -20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease; }
  .c-btn02 a.is-hover {
    background-color: #a5161e;
    color: #fff; }
    .c-btn02 a.is-hover::before {
      left: -10px;
      background-color: #fff; }

.c-btn02.-center a {
  margin: 0 auto; }

.c-btn02.-wide a {
  width: 480px; }

.c-submit_btn {
  background-color: #a5161e;
  color: #fff;
  border: 1px solid #a5161e;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 180px;
  padding: 10px; }
  .c-submit_btn.is-hover {
    background-color: #fff;
    color: #a5161e; }
  .c-submit_btn.-reverse {
    color: #a5161e;
    background-color: #fff; }
    .c-submit_btn.-reverse.is-hover {
      background-color: #a5161e;
      color: #fff; }

.c-ttl01 {
  font-size: 2.6rem;
  font-weight: normal;
  font-family: dnp-shuei-4go-std, sans-serif;
  color: #a5161e;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: left;
  display: inline-block;
  font-weight: normal; }
  .c-ttl01.-center {
    margin: auto; }
  .c-ttl01.anim_elm {
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease; }
    .c-ttl01.anim_elm.is-act {
      opacity: 1; }

.c-ttl02 {
  font-size: 2.8rem;
  font-weight: normal;
  font-family: dnp-shuei-4go-std, sans-serif;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: normal; }

.c-ttl03 {
  font-family: dnp-shuei-4go-std, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: normal; }
  .c-ttl03::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: #a5161e;
    margin-top: 10px; }

.c-ttl04 {
  font-family: dnp-shuei-4go-std, sans-serif;
  font-weight: normal;
  font-size: 3rem;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 30px; }
  .c-ttl04::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    margin: 10px auto 0;
    background-color: #a5161e; }

.c-crumbs {
  color: #444;
  margin: 10px 0;
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%; }
  .c-crumbs li {
    display: inline; }
    .c-crumbs li::before {
      content: '-';
      display: inline-block;
      margin: 0 5px; }
    .c-crumbs li a {
      color: #a5161e; }
    .c-crumbs li.home {
      font-family: "Lora", serif; }
      .c-crumbs li.home::before {
        content: none; }

.c-page_link {
  padding-top: 80px;
  margin-top: -80px; }

.c-pagetop {
  z-index: 10000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
  .c-pagetop a i {
    color: #fff;
    font-size: 2.8rem; }

/*----------------------------------------------------
  送信確認ボタン
--------------------------------------------------- */
.c-btnArea {
  text-align: center;
  margin-bottom: 40px;
  overflow: hidden; }
  .c-btnArea input {
    margin: 0 20px; }

input[name="submitConfirm"] {
  background: #a5161e;
  color: #FFF;
  padding: 0;
  width: 185px;
  height: 45px;
  border: none;
  display: block;
  margin: 20px auto;
  cursor: pointer; }
  input[name="submitConfirm"]:hover {
    opacity: .8;
    filter: alpha(opacity=80); }

/*----------------------------------------------------
  戻るボタン
--------------------------------------------------- */
input[name="submitBack"] {
  background: #ddd;
  padding: 0;
  height: 45px;
  border: none;
  cursor: pointer;
  float: left;
  margin: 1%;
  width: 48%; }
  input[name="submitBack"]:hover {
    opacity: .8;
    filter: alpha(opacity=80); }

/*----------------------------------------------------
  送信ボタン
--------------------------------------------------- */
input[name="submitSubmit"] {
  background: #a5161e;
  color: #FFF;
  height: 45px;
  border: none;
  cursor: pointer;
  float: left;
  margin: 1%;
  width: 48%; }
  input[name="submitSubmit"]:hover {
    opacity: .8;
    filter: alpha(opacity=80); }

/*----------------------------------------------------
  完了画面のトップへ戻るボタン
--------------------------------------------------- */
.return_top {
  background: #a5161e;
  color: #FFF !important;
  padding: 0;
  width: 185px;
  height: 45px;
  line-height: 45px;
  border: none;
  display: block;
  margin: 20px auto; }
  .return_top:hover {
    opacity: .8;
    filter: alpha(opacity=80); }

/*----------------------------------------------------
  必須
--------------------------------------------------- */
.require {
  margin-left: 10px;
  background-color: #C33;
  padding: 3px 4px;
  color: #fafafa;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin: 0px 0px 0px 10px;
  line-height: 1;
  border-radius: 3px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif; }

@media only screen and (max-width: 767px) {
  .c-btn01 a {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    padding: 15px;
    height: auto;
    width: 100%; }
    .c-btn01 a::before {
      content: '';
      width: 40px;
      height: 1px;
      top: 50%;
      left: -20px;
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%); }
  .c-btn02 a::before {
    left: -10px; }
  .c-btn02.-wide a {
    width: 100%; }
  .c-ttl01 {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 7vw; }
  .c-ttl02 {
    font-size: 5.8vw;
    margin-bottom: 20px; }
  .c-ttl03 {
    font-size: 5.2vw; }
  .c-ttl04 {
    font-size: 7vw;
    line-height: 1.5; }
  .c-pagetop::before {
    font-size: 2.4rem; }
  .c-crumbs {
    white-space: nowrap;
    font-size: 1.2rem;
    top: 0; }
  /* スクロールバーの装飾 */
  .c-crumbs::-webkit-scrollbar {
    height: 10px; }
  .c-crumbs::-webkit-scrollbar-track {
    background-color: #FFF; }
  .c-crumbs::-webkit-scrollbar-thumb {
    background-color: rgba(238, 238, 238, 0.8); } }

/*----------------------------------------------------
	pagesに入れるまでもないページのスタイル
----------------------------------------------------*/
@-webkit-keyframes loading_logo_anim {
  0% {
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0); }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0); }
  100% {
    opacity: 0;
    -webkit-filter: blur(50px);
    filter: blur(50px); } }
@keyframes loading_logo_anim {
  0% {
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0); }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0); }
  100% {
    opacity: 0;
    -webkit-filter: blur(50px);
    filter: blur(50px); } }

.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 101;
  -webkit-transition: all 3s ease;
  transition: all 3s ease; }
  .loading .cls-1 {
    fill: #a5171e; }
  .loading .cls-2 {
    fill: #f6ab00; }
  .loading_logo {
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0; }
    .loading_logo.is-act {
      -webkit-animation: loading_logo_anim 4s ease-in-out forwards;
      animation: loading_logo_anim 4s ease-in-out forwards; }
  .loading.is-act {
    opacity: 0; }

.p-kv_lower {
  position: relative;
  margin-top: 88px; }
  .p-kv_lower::before {
    content: '';
    display: block;
    width: 100%;
    height: 140px;
    background: url(../img/bg/bg_paper@2x.jpg);
    background-attachment: fixed;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; }
  .p-kv_lower__inner {
    position: relative;
    height: 400px;
    margin: 0 50px;
    background-size: cover; }
    .p-kv_lower__inner.-health {
      background-image: url(../../img/main/main_health@2x.jpg); }
    .p-kv_lower__inner.-original {
      background-image: url(../../img/main/main_original@2x.jpg); }
.p-kv_lower__inner.-food {
      background-image: url(../../img/main/main_food.jpg); }
.p-kv_lower__inner.-oem {
      background-image: url(../../img/main/main_oem.jpg); }
    .p-kv_lower__inner.-contact {
      background-image: url(../../img/main/main_contact@2x.jpg);
      background-position: center; }
    .p-kv_lower__inner.-privacy {
      background-image: url(../../img/main/main_privacy@2x.jpg); }
    .p-kv_lower__inner.-notfound {
      background-image: url(../../img/main/main_404@2x.jpg); }
      background-image: url(../../img/main/main_404@2x.jpg); }

    @media only screen and (max-width: 1200px) {
      .p-kv_lower__inner {
        margin: 0; } }
  .p-kv_lower__ttl {
    position: absolute;
    bottom: -30px;
    right: 195px;
    background-color: #a5161e;
    color: #fff;
    font-family: dnp-shuei-4go-std, sans-serif;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 0.2em;
    width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 30px; }

/* プライバシーポリシー */
.p-privacy {
  padding: 40px 0; }
  .p-privacy ol {
    padding-left: 25px; }

/* 404 notfound */
.p-notfound .body {
  padding: 0 30px 30px; }

@media only screen and (max-width: 767px) {
  .loading_logo {
    top: 40%;
    width: 250px; }
  .p-kv_lower {
    margin-top: 80px; }
    .p-kv_lower__inner {
      margin: 0;
      height: 300px; }
      .p-kv_lower__inner.-health {
        background-size: cover;
        background-position: 30% center; }
      .p-kv_lower__inner.-original {
        background-size: cover;
        background-position: center bottom; }
    .p-kv_lower__ttl {
      right: 20px;
      font-size: 5.5vw;
      width: 80px; } }

/* トップページ */
.p-kv {
  position: relative;
  margin-top: 88px; }
  .p-kv::before {
    content: '';
    display: block;
    width: 100%;
    height: 350px;
    background: url(../img/bg/bg_paper@2x.jpg);
    background-attachment: fixed;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; }
  .p-kv__inner {
    position: relative;
    margin: 0 50px;
    height: calc(100vh - 150px);
    min-height: 620px;
    overflow: hidden; }
    @media only screen and (max-width: 1200px) {
      .p-kv__inner {
        margin: 0; } }
  .p-kv__copy {
    position: absolute;
    top: 40px;
    right: 50px;
    background-color: #a5161e;
    padding: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
    z-index: 2;
    width: 270px; }
    .p-kv__copy.is-act {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0); }
    .p-kv__copy span {
      display: inline-block;
      white-space: nowrap;
      -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      font-family: dnp-shuei-4go-std, sans-serif;
      color: #fff;
      font-size: 3rem;
      font-weight: normal;
      letter-spacing: 0.25em;
      line-height: 1;
      padding-left: 30px;
      padding-right: 10px;
      position: relative;
      -webkit-filter: blur(10px);
      filter: blur(10px);
      opacity: 0;
      -webkit-transform: translateY(10px);
      transform: translateY(10px);
      -webkit-transition: all 1s ease;
      transition: all 1s ease; }
      .p-kv__copy span::before {
        content: '';
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 1px;
        height: 0%;
        background-color: #fff;
        -webkit-transition: all .7s ease;
        transition: all .7s ease;
        -webkit-transition-delay: .5s;
        transition-delay: .5s; }
      .p-kv__copy span:last-child {
        padding-left: 0; }
      .p-kv__copy span:nth-child(1) {
        margin-top: 0px; }
      .p-kv__copy span:nth-child(2) {
        margin-top: 35px; }
      .p-kv__copy span:nth-child(3) {
        margin-top: 70px; }
      .p-kv__copy span.is-act {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
        -webkit-transform: translateY(0);
        transform: translateY(0); }
        .p-kv__copy span.is-act::before {
          height: 100%; }
  .p-kv__slider {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    .p-kv__slider .swiper-slide {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center; }
      .p-kv__slider .swiper-slide.-no01 {
        background-image: url(../../img/main/slide_bg_01@2x.jpg); }
      .p-kv__slider .swiper-slide.-no02 {
        background-image: url(../../img/main/slide_bg_02@2x.jpg); }
      .p-kv__slider .swiper-slide.-no03 {
        background-image: url(../../img/main/slide_bg_03@2x.jpg); }
      .p-kv__slider .swiper-slide.-no04 {
        background-image: url(../../img/main/slide_bg_04@2x.jpg); }
      .p-kv__slider .swiper-slide.-no05 {
        background-image: url(../../img/main/slide_bg_05@2x.jpg); }

.p-index section {
  margin-bottom: 0; }

.p-index .p-index_detailed {
  padding: 50px 0 100px;
  background: url(../img/bg/bg_paper@2x.jpg);
  background-attachment: fixed;
  background-size: 100%; }
  .p-index .p-index_detailed__top {
    position: relative;
    margin-bottom: 220px; }
  .p-index .p-index_detailed__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    font-family: dnp-shuei-4go-std, sans-serif;
    padding-right: 50px; }
  .p-index .p-index_detailed__ttl {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #a5161e;
    font-weight: normal;
    margin-left: 50px;
    font-size: 3rem;
    line-height: 1.6;
    letter-spacing: 0.1em; }
    .p-index .p-index_detailed__ttl.anim_elm {
      opacity: 0;
      -webkit-transition: all 1s ease;
      transition: all 1s ease; }
      .p-index .p-index_detailed__ttl.anim_elm.is-act {
        opacity: 1; }
  .p-index .p-index_detailed__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding-top: 50px; }
    .p-index .p-index_detailed__text p {
      -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      height: 460px;
      margin-left: 45px;
      margin-bottom: 0;
      letter-spacing: 0.1em;
      line-height: 2; }
      @media all and (-ms-high-contrast: none) {
        .p-index .p-index_detailed__text p {
          width: 2em; } }
      .p-index .p-index_detailed__text p.anim_elm {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-transition: all 1.5s ease;
        transition: all 1.5s ease; }
        .p-index .p-index_detailed__text p.anim_elm.is-act {
          opacity: 1;
          -webkit-transform: translateY(0);
          transform: translateY(0); }
  .p-index .p-index_detailed__img {
    position: absolute;
    top: 140px;
    left: 50px;
    overflow: hidden;
    width: 52%;
    min-width: 500px;
    height: 500px; }
    .p-index .p-index_detailed__img img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; }
      .p-index .p-index_detailed__img img.anim_elm {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-transition: all 2s ease;
        transition: all 2s ease; }
        .p-index .p-index_detailed__img img.anim_elm.is-act {
          opacity: 1;
          -webkit-transform: translateY(0);
          transform: translateY(0); }
  .p-index .p-index_detailed__gallery .inner {
    position: relative; }
    .p-index .p-index_detailed__gallery .inner.anim_elm {
      opacity: 0;
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
      -webkit-transition: all 1s ease;
      transition: all 1s ease; }
      .p-index .p-index_detailed__gallery .inner.anim_elm.is-act {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0); }
  .p-index .p-index_detailed__gallery .sub_pic {
    position: absolute;
    top: -70px;
    right: -40px;
    z-index: 2; }
  .p-index .p-index_detailed__gallery .main_pic {
    position: relative;
    z-index: 1; }
    .p-index .p-index_detailed__gallery .main_pic::before {
      content: '';
      display: block;
      width: 600px;
      height: 260px;
      background-color: #a5161e;
      position: absolute;
      left: -30px;
      bottom: -30px;
      z-index: -1; }

.p-index .p-index_hygiene {
  background: url(../../img/index/hygiene_bg@2x.jpg) no-repeat;
  background-size: cover;
  padding: 65px 0; }
  .p-index .p-index_hygiene__box {
    background-color: #fff;
    padding: 50px 75px;
    width: 475px;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
    .p-index .p-index_hygiene__box.anim_elm {
      opacity: 0;
      -webkit-transform: translateY(10px);
      transform: translateY(10px);
      -webkit-transition: all .8s ease;
      transition: all .8s ease; }
      .p-index .p-index_hygiene__box.anim_elm.is-act {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0); }
  .p-index .p-index_hygiene__ttl {
    font-size: 3.4rem;
    font-family: dnp-shuei-4go-std, sans-serif;
    font-weight: normal;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
    white-space: nowrap;
    margin-left: 50px; }
    .p-index .p-index_hygiene__ttl.anim_elm {
      opacity: 0;
      -webkit-transition: all 1s ease;
      transition: all 1s ease; }
      .p-index .p-index_hygiene__ttl.anim_elm.is-act {
        opacity: 1; }
  .p-index .p-index_hygiene__text {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-top: 50px;
    min-height: 290px; }
    .p-index .p-index_hygiene__text.anim_elm {
      opacity: 0;
      -webkit-transform: translateY(10px);
      transform: translateY(10px);
      -webkit-transition: all 1s ease;
      transition: all 1s ease; }
      .p-index .p-index_hygiene__text.anim_elm.is-act {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1; }
  .p-index .p-index_hygiene__btn {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-right: auto; }
    .p-index .p-index_hygiene__btn.anim_elm {
      opacity: 0;
      -webkit-transform: translateY(10px);
      transform: translateY(10px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease; }
      .p-index .p-index_hygiene__btn.anim_elm.is-act {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1; }

.p-index .p-index_other {
  padding: 100px 0;
  background: url(../img/bg/bg_paper@2x.jpg);
  background-attachment: fixed;
  background-size: 100%; }
  .p-index .p-index_other__block:not(:last-child) {
    margin-bottom: 80px; }
  .p-index .p-index_other__block .text {
    text-align: center; }
    .p-index .p-index_other__block .text h2 {
      margin-bottom: 30px; }
    .p-index .p-index_other__block .text p {
      margin-bottom: 30px; }
  .p-index .p-index_other__block .img {
    position: relative;
    z-index: 1; }
    .p-index .p-index_other__block .img::before {
      content: '';
      display: block;
      width: 380px;
      height: 250px;
      background-color: #a5161e;
      position: absolute;
      bottom: -30px;
      right: -30px;
      z-index: -1; }
    .p-index .p-index_other__block .img.-reverse::before {
      right: auto;
      left: -30px; }
    .p-index .p-index_other__block .img.anim_elm {
      -webkit-transition: all 1s ease;
      transition: all 1s ease;
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
      opacity: 0; }
      .p-index .p-index_other__block .img.anim_elm.is-act {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0); }
  .p-index .p-index_other__block p.anim_elm {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease; }
    .p-index .p-index_other__block p.anim_elm.is-act {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0); }

.p-index .p-index_greeting {
  background: url(../../img/index/greeting_bg@2x.jpg);
  background-size: cover;
  padding: 80px 0; }
  .p-index .p-index_greeting__textarea {
    color: #fff;
    font-family: dnp-shuei-4go-std, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
    .p-index .p-index_greeting__textarea .ttl {
      font-weight: normal;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
      width: 130px;
      min-height: 430px;
      margin: 0 30px 0 40px; }
      .p-index .p-index_greeting__textarea .ttl span {
        display: block;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-size: 3.4rem;
        letter-spacing: 0.2em; }
        .p-index .p-index_greeting__textarea .ttl span:not(:last-child) {
          padding-left: 20px; }
        .p-index .p-index_greeting__textarea .ttl span:nth-child(1) {
          margin-top: 0px; }
        .p-index .p-index_greeting__textarea .ttl span:nth-child(2) {
          margin-top: 45px; }
        .p-index .p-index_greeting__textarea .ttl span:nth-child(3) {
          margin-top: 90px; }
        .p-index .p-index_greeting__textarea .ttl span small {
          font-size: 1.4rem;
          letter-spacing: 0.2em; }
    .p-index .p-index_greeting__textarea .text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse; }
      .p-index .p-index_greeting__textarea .text p {
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        letter-spacing: 0.2em;
        line-height: 2; }
        .p-index .p-index_greeting__textarea .text p:not(:last-child) {
          margin-left: 40px; }
  .p-index .p-index_greeting__img {
    margin-right: -30px; }
  .p-index .p-index_greeting__profile {
    display: block;
    color: #fff;
    letter-spacing: 0.08em;
    margin-top: 10px; }

.p-index .p-index_overview {
  padding: 100px 0; }
  .p-index .p-index_overview__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
    align-self: center;
    margin-bottom: 40px; }
    .p-index .p-index_overview__list li .ttl {
      font-family: dnp-shuei-4go-std, sans-serif;
      width: 130px;
      padding: 0 30px; }

.p-index .p-index_gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
  .p-index .p-index_gallery__pic {
    width: 50%; }
    .p-index .p-index_gallery__pic img {
      width: 100%; }

@media only screen and (max-width: 767px) {
  .p-kv__inner {
    height: 70vh; }
  .p-kv__copy {
    padding: 20px;
    top: 40px;
    right: 20px;
    width: auto; }
    .p-kv__copy span {
      font-size: 5.6vw;
      padding-left: 15px; }
  .p-kv__slider .swiper-slide.-no01 {
    background-image: url(../../img/main/slide_bg_01_sp.jpg); }
  .p-kv__slider .swiper-slide.-no02 {
    background-image: url(../../img/main/slide_bg_02_sp.jpg); }
  .p-kv__slider .swiper-slide.-no03 {
    background-image: url(../../img/main/slide_bg_03_sp.jpg); }
  .p-kv__slider .swiper-slide.-no04 {
    background-image: url(../../img/main/slide_bg_04_sp.jpg); }
  .p-kv__slider .swiper-slide.-no05 {
    background-image: url(../../img/main/slide_bg_05_sp.jpg); }
  .p-index {
    font-size: 1.4rem; }
    .p-index .p-index_detailed__box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      padding-right: 0; }
    .p-index .p-index_detailed__ttl {
      font-size: 6.5vw;
      margin-left: 0px;
      -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb; }
    .p-index .p-index_detailed__text {
      padding-top: 20px;
      margin-bottom: 20px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      .p-index .p-index_detailed__text p {
        height: auto;
        margin-left: 0;
        margin-bottom: 10px;
        line-height: 1.7;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb; }
    .p-index .p-index_detailed__img {
      position: static;
      width: 100%;
      min-width: inherit;
      height: auto;
      padding: 0 15px; }
    .p-index .p-index_detailed__top {
      margin-bottom: 95px; }
    .p-index .p-index_detailed__gallery .sub_pic {
      width: 48%;
      right: -10px;
      top: -50px; }
    .p-index .p-index_detailed__gallery .main_pic {
      width: 95%; }
      .p-index .p-index_detailed__gallery .main_pic::before {
        width: 80%;
        height: 100px;
        left: -15px;
        bottom: -20px; }
    .p-index .p-index_hygiene {
      background-image: url(../../img/index/hygiene_bg_sp@2x.jpg);
      background-position: center bottom;
      padding: 45px 0 300px; }
      .p-index .p-index_hygiene__box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        padding: 30px 25px; }
      .p-index .p-index_hygiene__ttl {
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        margin-left: 0;
        margin-bottom: 20px;
        font-size: 6vw;
        letter-spacing: 0.2em; }
      .p-index .p-index_hygiene__text {
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        min-height: inherit;
        margin: 0 0 20px; }
      .p-index .p-index_hygiene__btn {
        -ms-flex-item-align: center;
        align-self: center;
        margin-right: 0;
        width: 100%; }
    .p-index .p-index_other__block .text {
      margin-bottom: 30px; }
      .p-index .p-index_other__block .text h2 {
        margin-bottom: 20px; }
      .p-index .p-index_other__block .text p {
        text-align: left;
        margin-bottom: 20px; }
    .p-index .p-index_other__block .img {
      width: 100%; }
      .p-index .p-index_other__block .img::before {
        width: 100%;
        height: 100%;
        bottom: -10px;
        right: -10px; }
      .p-index .p-index_other__block .img.-reverse::before {
        left: auto;
        right: -10px; }
    .p-index .p-index_greeting {
      padding: 60px 0; }
      .p-index .p-index_greeting__textarea {
        margin-bottom: 30px; }
        .p-index .p-index_greeting__textarea .ttl {
          width: 100%;
          min-height: inherit;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          margin: 0 0 20px; }
          .p-index .p-index_greeting__textarea .ttl span {
            -webkit-writing-mode: horizontal-tb;
            -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
            font-size: 7vw; }
            .p-index .p-index_greeting__textarea .ttl span:not(:last-child) {
              padding-left: 0; }
            .p-index .p-index_greeting__textarea .ttl span:nth-child(1) {
              margin-top: 10px; }
            .p-index .p-index_greeting__textarea .ttl span:nth-child(2) {
              margin-top: 10px; }
            .p-index .p-index_greeting__textarea .ttl span:nth-child(3) {
              margin-top: 10px; }
            .p-index .p-index_greeting__textarea .ttl span small {
              font-size: 4vw; }
        .p-index .p-index_greeting__textarea .text {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; }
          .p-index .p-index_greeting__textarea .text p {
            -webkit-writing-mode: horizontal-tb;
            -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
            letter-spacing: 0.1em;
            margin-bottom: 15px; }
            .p-index .p-index_greeting__textarea .text p:not(:last-child) {
              margin-left: 0; }
      .p-index .p-index_greeting__img {
        text-align: center;
        margin-right: 0; }
      .p-index .p-index_greeting__profile {
        text-align: center;
        line-height: 1; }
    .p-index .p-index_overview {
      padding: 60px 0 30px; }
      .p-index .p-index_overview iframe {
        height: 280px; }
      .p-index .p-index_overview__list li {
        margin-bottom: 0px;
        border-bottom: 1px solid #eee; }
        .p-index .p-index_overview__list li .ttl {
          min-width: 110px;
          max-width: 110px;
          padding: 10px 15px; }
        .p-index .p-index_overview__list li p {
          padding: 10px 15px; }
    .p-index .p-index_gallery {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .p-index .p-index_gallery__pic {
        width: 100%; }
    .p-index .p-index_info {
      padding: 30px 0; } }

/* トップページ */
.p-health .p-health_map {
  padding: 80px 0;
  background: url(../img/bg/bg_paper@2x.jpg);
  background-attachment: fixed;
  background-size: 100%;
  margin-bottom: 0; }
  .p-health .p-health_map__head {
    margin-bottom: 80px; }
    .p-health .p-health_map__head .text {
      text-align: center; }
  .p-health .p-health_map__body {
    background-color: #fff;
    padding: 45px; }
    .p-health .p-health_map__body figure {
      margin-bottom: 30px; }
    .p-health .p-health_map__body .note {
      border: 1px solid #ccc;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      padding: 25px; }
      .p-health .p-health_map__body .note dt {
        font-weight: bold;
        min-width: 150px;
        max-width: 150px; }
        .p-health .p-health_map__body .note dt::before {
          content: '';
          display: inline-block;
          width: 10px;
          height: 10px;
          margin-right: 5px;
          background-color: #f6ab00; }

.p-health .p-halth_facility {
  padding: 90px 0;
  margin-bottom: 0; }
  .p-health .p-halth_facility__point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 60px; }
    .p-health .p-halth_facility__point .item {
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background-color: #a5161e;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin: 0 10px; }
      .p-health .p-halth_facility__point .item .in {
        color: #fff;
        font-family: dnp-shuei-4go-std, sans-serif;
        text-align: center;
        font-size: 2rem; }
  .p-health .p-halth_facility__list .text {
    text-align: center;
    padding: 25px; }
    .p-health .p-halth_facility__list .text .ttl {
      font-size: 2rem;
      font-weight: normal;
      font-family: dnp-shuei-4go-std, sans-serif;
      margin-bottom: 10px; }
  .p-health .p-halth_facility__check {
    background-color: #f5f5f5;
    padding: 35px; }
    .p-health .p-halth_facility__check ul {
      margin-bottom: 0; }
    .p-health .p-halth_facility__check li {
      border-bottom: 1px dotted #ccc;
      padding: 30px 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
      .p-health .p-halth_facility__check li:first-child {
        padding-top: 0; }
      .p-health .p-halth_facility__check li::before {
        content: '\f00c';
        font-family: "Font Awesome 5 Pro";
        color: #a5161e;
        font-size: 2.2rem;
        text-align: center;
        min-width: 30px;
        max-width: 30px;
        height: 30px;
        background-color: #fff;
        border: 1px solid #ccc;
        margin-right: 10px; }

@media only screen and (max-width: 767px) {
  .p-health .p-health_map {
    padding: 50px 0; }
    .p-health .p-health_map__head {
      margin-bottom: 50px; }
      .p-health .p-health_map__head .text {
        text-align: left; }
    .p-health .p-health_map__body {
      padding: 20px 15px; }
      .p-health .p-health_map__body .note {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 0;
        padding: 15px; }
        .p-health .p-health_map__body .note dt {
          margin-bottom: 10px;
          max-width: inherit;
          min-width: inherit; }
          .p-health .p-health_map__body .note dt::before {
            margin-right: 5px; }
        .p-health .p-health_map__body .note dd {
          font-size: 1.4rem;
          line-height: 1.5; }
  .p-health .p-halth_facility {
    padding: 50px 0; }
    .p-health .p-halth_facility__point {
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      align-items: stretch;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-bottom: 40px; }
      .p-health .p-halth_facility__point .item {
        width: 32%;
        height: auto;
        border-radius: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px 5px;
        text-align: center;
        margin: 0; }
        .p-health .p-halth_facility__point .item .in {
          font-size: 4vw;
          line-height: 1.6; }
    .p-health .p-halth_facility__list .text {
      padding: 10px 0; }
      .p-health .p-halth_facility__list .text .ttl {
        font-size: 4vw;
        margin-bottom: 0; }
      .p-health .p-halth_facility__list .text p {
        font-size: 1.2rem;
        line-height: 1.7;
        text-align: left; }
    .p-health .p-halth_facility__check {
      padding: 20px 15px; }
      .p-health .p-halth_facility__check li {
        padding: 15px 0;
        letter-spacing: 1.7; }
        .p-health .p-halth_facility__check li::before {
          min-width: 20px;
          max-width: 20px;
          height: 20px;
          font-size: 1.6rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; } }

/* オリジナル商品 */
.p-original .p-original_hero {
  margin-bottom: 0;
  padding: 90px 0 200px; }
  .p-original .p-original_hero__ttl {
    font-family: dnp-shuei-4go-std, sans-serif;
    font-size: 2.6rem;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
    line-height: 1.6;
    display: inline-block;
    font-weight: normal; }
  .p-original .p-original_hero__body {
    padding-top: 40px;
    position: relative; }
    .p-original .p-original_hero__body .textbox {
      background-color: #a5161e;
      color: #fff;
      position: absolute;
      bottom: -100px;
      left: 0;
      padding: 50px;
      width: 540px; }
      .p-original .p-original_hero__body .textbox .ttl {
        font-family: dnp-shuei-4go-std, sans-serif;
        font-size: 2rem;
        margin-bottom: 20px; }
    .p-original .p-original_hero__body .img {
      margin-left: 100px; }

.p-original .p-original_feature {
  padding: 80px 0;
  margin-bottom: 0;
  background: url(../img/bg/bg_paper@2x.jpg);
  background-attachment: fixed;
  background-size: 100%; }
  .p-original .p-original_feature__block {
    margin-bottom: 60px; }
    .p-original .p-original_feature__block .img {
      text-align: right; }
      .p-original .p-original_feature__block .img.-reverse {
        text-align: left; }
  .p-original .p-original_feature__menu {
    border: 1px solid #a5161e;
    background-color: #fff;
    position: relative; }
    .p-original .p-original_feature__menu .ttl {
      font-size: 1.6rem;
      font-weight: normal;
      font-family: dnp-shuei-4go-std, sans-serif;
      color: #fff;
      background-color: #a5161e;
      display: inline-block;
      padding: 5px 20px;
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
    .p-original .p-original_feature__menu .inner {
      padding: 80px 40px 40px; }
    .p-original .p-original_feature__menu .caption .top small {
      font-size: 1.6rem;
      display: block; }
    .p-original .p-original_feature__menu .caption .top .price {
      display: block; }
      .p-original .p-original_feature__menu .caption .top .price em {
        font-family: dnp-shuei-4go-std, sans-serif;
        font-size: 2.6rem;
        font-style: normal; }
    .p-original .p-original_feature__menu .menu_wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-left: 30px;
      margin-bottom: 50px; }
      .p-original .p-original_feature__menu .menu_wrap .menu_list {
        margin-right: 20px;
        margin-bottom: 0; }
        .p-original .p-original_feature__menu .menu_wrap .menu_list li::before {
          content: '-';
          color: #a5161e;
          margin-right: 10px; }
    .p-original .p-original_feature__menu .pdf_btn {
      margin-left: 30px; }
      .p-original .p-original_feature__menu .pdf_btn a {
        display: block;
        border: 1px solid #a5161e;
        width: 250px;
        color: #a5161e;
        text-align: center;
        padding: 10px;
        -webkit-transition: all .5s ease;
        transition: all .5s ease; }
        .p-original .p-original_feature__menu .pdf_btn a.is-hover {
          color: #fff;
          background-color: #a5161e; }

.p-original .p-original_product {
  background: url(../img/bg/bg_paper@2x.jpg);
  background-attachment: fixed;
  background-size: 100%;
  padding: 100px 0; }
  .p-original .p-original_product .lead_text {
    text-align: center;
    margin-bottom: 50px; }
  .p-original .p-original_product__block {
    background-color: #fff;
    text-align: center;
    margin-bottom: 20px;
    padding: 50px 0 30px; }
    .p-original .p-original_product__block .logo {
      margin-bottom: 10px; }
  .p-original .p-original_product__btn {
    margin-top: 60px; }
.p-original_food{
    max-width: 890px;
    width: 100%;
    margin:  0 auto;
    
}
@media only screen and (max-width: 767px) {
  .p-original .p-original_hero {
    padding: 80px 0 60px; }
    .p-original .p-original_hero__ttl {
      -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
      font-size: 5.2vw;
      display: block; }
    .p-original .p-original_hero .img {
      margin-left: 0;
      width: 100%; }
    .p-original .p-original_hero .textbox {
      position: static;
      width: 100%;
      padding: 20px; }
      .p-original .p-original_hero .textbox .ttl {
        font-size: 5vw;
        margin-bottom: 10px; }
  .p-original .p-original_feature {
    padding: 60px 0; }
    .p-original .p-original_feature__block {
      margin-bottom: 40px; }
    .p-original .p-original_feature__menu .ttl {
      width: 100%;
      text-align: center; }
    .p-original .p-original_feature__menu .inner {
      padding: 60px 15px 30px; }
    .p-original .p-original_feature__menu .img {
      margin-bottom: 20px; }
    .p-original .p-original_feature__menu .menu_wrap {
      margin-left: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-bottom: 20px; }
      .p-original .p-original_feature__menu .menu_wrap .menu_list {
        margin: 0 5px; }
        .p-original .p-original_feature__menu .menu_wrap .menu_list li {
          font-size: 1.2rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          line-height: 1;
          margin-bottom: 10px; }
    .p-original .p-original_feature__menu .pdf_btn {
      margin-left: 0; }
      .p-original .p-original_feature__menu .pdf_btn a {
        width: 100%; }
  .p-original .p-original_product {
    padding: 60px 0; }
    .p-original .p-original_product .lead_text {
      text-align: left; }
    .p-original .p-original_product__block {
      padding: 30px 10px; }
      .p-original .p-original_product__block .logo {
        margin-bottom: 20px; }
      .p-original .p-original_product__block .product_img {
        width: 90%;
        margin: 0 auto; } 
}
@media only screen and (max-width: 480px) {
    .original-br{display: none;}
}

/* 仕出し料理 */
.food-section{
    margin-bottom: 0!important;
}
.food-subttl{
    font-family: dnp-shuei-4go-std, sans-serif;
    font-weight: normal;
    text-align: center;
     font-size: 2rem;
}
.food-read-p{
    max-width: 800px;
    margin: 0 auto 60px;
}
.food-h3{
    font-family: dnp-shuei-4go-std, sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    padding: 0.25em 0.5em;/*上下 左右の余白*/
    background: transparent;/*背景透明に*/
    border-left: solid 8px #7e0606;/*左線*/
    margin-left: 20px;
}
.food-list-con{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    margin: 30px 0px;
}
.food-list-panel{
    max-width: 300px;
    margin-bottom: 30px;
    width: 32%;
}
.food-list-panel img{
    width: 100%;
}
.food-price{
    display: flex;
    margin-top: 10px;
}
.food-list-panel h4{
    font-size: 20px;
    margin-top: 10px;
}
.food-price p{
    margin: 10px 0 0 0!important;
}
.f-10{
    font-size: 10px;
}
.f-12{
    font-size: 12px;
}
.mt-10{
    margin-top: -5px;
}
.mt-20{
    margin-top: -20px;
}
.ml-10{
    margin-left: 10px;
}
.food-list-panel p{
    font-weight: bold;
    line-height: 20px;
}
.food-menu{
    font-size: 10px;
    line-height: 14px!important;
    margin: -15px 0 0 0px;
}
.food-list-panel ul{
    font-size: 10px;
    line-height: 16px;
    margin: -15px 0 0 5px;
}
.food-attention{
    padding: 0.25em 0.5em;/*上下 左右の余白*/
    background: transparent;/*背景透明に*/
    border-left: solid 8px #7e0606;/*左線*/
    margin-left: 20px;
}
.food-attention dl{
    font-family: dnp-shuei-4go-std, sans-serif;
    display: flex;
    margin-bottom: 5px!important;
}
.food-order{
    margin: 30px 0 50px;
    text-align: center;
}
.food-order h4{
    font-family: dnp-shuei-4go-std, sans-serif;
    color: #7e0606;
    font-size: 30px;
}
.fax-bna{
    background-color: #7e0606;
    width: 90%;
    border-radius: 5px;
    padding: 20px 0;
    margin: 30px auto 0;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

.fax-bna a{
    text-decoration: none;
    display: block;
    font-weight: bold;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
}
.food-order p{
    color: #000000;
    font-size: 14px;
    margin-top: 10px;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.food-h3-sub-p{
    margin: 5px 0 0 40px;
    font-family: dnp-shuei-4go-std, sans-serif;
}
.delivery-area-con{
    display: flex;
    justify-content: space-between;
}
.delivery-area-text{
    width: 60%;
    font-family: dnp-shuei-4go-std, sans-serif;
}
.delivery-area-img{
    width: 40%;
}
.delivery-area-img img{
    max-width: 380px;
    width: 100%;
}
.delivery-area-list{
    margin: 10px 0 0 40px;
    font-size: 20px;
}
.delivery-area-list ul{
    list-style-type: disc;
    margin: -20px 0 0 25px;
}
.d-red{
    color: #7e0606;
}
.price-area dl{
    display: flex;
    line-height: 22px;
    font-size: 16px;
    margin: 0 0 5px 20px;
    padding: 15px 0 10px 10px;
    background-color: #ffffff;
}
.price-area dl:nth-child(even){
    background-color: #efefef;
}
.price-area dt{
    width: 15%;
    text-align: left;
    font-weight: 600;
}
.price-area dd{
    width: 80%;
    line-height: 24px;
}

/*季節懐石*/
.season-food{
    margin:30px 0  60px 0;
    display: flex;
}
.season-food-img{
    max-width: 705px;
    width: 70%;
}
.season-food-img img{
    width: 100%;
}
.season-food-text{
    margin:30px 0 0 40px;
    font-family: dnp-shuei-4go-std, sans-serif;
}
.season-food-title{
    font-size: 24px;
    margin-left: 20px;
}
.food-order-no{
    font-weight: bold;
    font-size: 20px;
    margin: -10px 0 0 40px; 
 } 
.season-food-menu{
    margin-left: 30px;
    font-size: 14px;
    line-height: 22px;
}
.season-food-menu-title{
    font-size: 18px;
    margin-bottom: 20px!important;
}
.season-food-menu dl{
    display: flex;
    margin-bottom: 2px;
}
.season-food-menu dt{
    width: 28%;
}
.season-food-menu p{
    margin-bottom: 5px;
}
@media screen and (max-width:1000px) {
    .price-area dl{
        margin: 0 0 0 0;
        display:block;
        border-bottom: 1px dotted #2a2a2a;
        background-color:#efefef;
        padding: 15px 0 10px 0px;
    }
    .price-area dt{
        width: 100%;
        margin-bottom: 10px;
    }
    .price-area dd{
        width: 100%;
        padding-left: 10px;
        margin-bottom: 10px;
    }  
}

@media screen and (max-width:800px) {
        .food-list-panel{width: 49%;}
}
@media screen and (min-width:768px) {
    .season-food-title-br{display: none;}
}
@media screen and (max-width:767px) {
      .delivery-area-con{display: block;}
      .delivery-area-text{width: 100%;}
      .delivery-area-img{
          width: 100%;
          margin: 20px 0;
          text-align: center;
    }
    .food-t-r{margin-left: 10px;}
    .season-food{display: block;}
    .season-food-img{width: 100%;}
    .no-br{display: none;}
    .season-food-text{
    margin:20px 0 0 40px;}
    .season-food-title-br{display: block;}
    .season-food-title{margin-left: 0;}
    .season-food-menu{
        margin-left: 0px;
        margin-top: 20px;
    }
  }   
@media screen and (min-width:651px) {
    .food-br{display: block;}
}

@media screen and (max-width:650px) {
     .food-br{display: none;}
    .food-subttl{line-height: 30px;}
}
@media screen and (max-width:600px) {
    .food-list-panel h4{
        font-size: 14px;
        line-height: 20px;
    }
    .food-price{display: block;}
    .food-price p{
        text-align: right;
        margin-top: -5px!important;
    }
    .food-h3{margin-left: 0;}
    .food-attention{margin-left: 0;}
    .season-food-text{margin: 20px 0 0 0;}
    .food-order-no{
        margin: -10px 0 0 0;
        font-size: 14px;
    }
}
@media screen and (max-width:500px) {
    .food-order h4{font-size: 16px;}
    .fax-bna{
        width: 100%;
        margin: 0 auto;
    }
    .fax-bna a{font-size: 22px;}
    .food-h3-sub-p{margin: 5px 0 0 10px;}
    .delivery-area-list{margin: 5px 0 0 10px;}
    .delivery-area-list{font-size: 18px;}
    .sp-foodh4{line-height: 20px!important;}
    .season-food-text-up p{font-size: 13px;}
}

/*トップ新着情報*/
a.anchor{
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}
.nowrap{
    white-space: nowrap;
}
.what-news{
    font-family: dnp-shuei-4go-std, sans-serif;
    display: flex;
    border:1px solid #a5161e;
    padding: 20px 30px 20px 0;
    width: 90%;
    margin: 0 auto 30px
}
.what-news table,
.what-news td{
    border:none;
}
.what-news table{
    margin-bottom: 0!important;
}
.what-news-title{
    color: #a5161e;
    min-width:15%;
    border-right: 1px solid #a5161e!important;
    vertical-align: middle;
    text-align: center;
}
.what-news-con{
    padding: 10px 0;
}
.what-news-con dl{
    margin-left: 50px;
    display: flex;
}
.what-news-con dl:last-child{
    margin-bottom: 0;
}
.what-news-con dt{
    min-width: 30%;
}
.what-news-con a{
    color: blue;
    text-decoration: underline;
}

@media screen and (max-width:767px) {
    .what-news{
        width: 100%;
        padding: 20px 20px 20px 0;
    }
    .what-news-con{width:100%;}
    .what-news-con dt{width: 100%;}
    .what-news-con dl{
        margin-left: 20px;
        display: block;
    }
}

/*OEM*/
h3.oem-h3{
    color: #ffffff;
    background-color: #a5161e;
    font-size: 22px;
    text-align: center;
    padding: 10px;
    width: 60%;
    margin: 20px auto 30px;
}
.oem-checklist {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.oem-checklist li{
    background-image:url("../../img/oem/check-icon.png");
    background-repeat: no-repeat;
    background-position:left 0 top 5px;
    padding-left: 30px;
    line-height: 36px;
}
.oem-checklist li::marker{
    margin-top: 5px;
}
.oem-arrow{
    width: 25%;
    margin: 30px auto 10px;
}
.oem-arrow img{
    width: 100%;
}
.oem-message{
    text-align: center;
}
.oem-message h4{
    color: #a5161e;
    font-size: 22px;
    margin: 20px 0;
}
.oem-red{
    color: #a5161e;
}
a.oem-link{
    color: #191afa!important;
    text-decoration: underline;
}
.under-line{
    text-decoration: underline;
}
h4.oem-h4{
    font-size:22px;
    text-align: center;
}
.oem-tsuyomi{
    display: flex;
    justify-content:center;
    width: 80%;
    margin: 0 auto 50px;
}
.oem-tsuyomi-img{
    width: 45%;
    margin-right: 30px;
}
.oem-tsuyomi-con{
    width: 40%;
    text-align: left;
}
.oem-tsuyomi-title{
    border-bottom: 1px solid #a5161e;
    margin-bottom: 5px;
    width: 90%;
}
.oem-tsuyomi-title h5{
    color: #a5161e;
    font-size: 20px;
}
.oem-tsuyomi-con p{
    font-weight: normal;
    font-size: 14px;
}
.oem-characteristic{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
 }
.oem-characteristic-title{
    text-align: center;
}
.oem-characteristic-title p{
    font-size: 20px;
    font-weight: bold;
    color: #a5161e;
    text-decoration: underline;
    margin-bottom: 10px;
}
.oem-characteristic-title h4{
    font-size: 18px;
    margin-bottom: 10px;
}
.oem-characteristic-con{
    width: 45%;
    margin-bottom: 20px;
}
.oem-characteristic-img{
    width: 70%;
    margin: 0 auto 10px;
}
.oem-characteristic-text{
    width: 95%;
    margin: 0 auto;
    font-size: 14px;
}
.oem-item-img{
    width: 70%;
    margin: 10px auto 50px;
}
.oem-contact-text{
    text-align: center;
}
.oem-contact-text p{
    margin: 20px 0 10px;
}
.oem-contact-bar{
    background-color: #a5161e;
    padding: 10px 30px;
    width: 40%;
    margin: 10px auto 20px;
    text-align: center;
}
.oem-contact-bar img{
    margin-right: 15px;
}
.oem-contact-bar a{
    color: #ffffff;
    font-size: 24px;
}
.ls-10{
    letter-spacing: 10px;
}
@media (max-width: 767px){
    h3.oem-h3{width: 100%;}
    .oem-arrow{
        width: 50%;
        margin: 10px auto 10px;
    }
    .oem-checklist ul{margin-bottom: 0;}
    .oem-message h4{font-size: 18px;}
    .oem-tsuyomi{
        display: block;
        width: 100%;
    }
    .oem-tsuyomi-img{width: 100%;}
    .oem-tsuyomi-title{width: 100%;}
    h4.oem-h4{font-size: 18px;}
    .oem-tsuyomi-title h5{font-size: 16px;}
    .oem-characteristic{width: 100%;}
    .oem-characteristic-title h4{font-size: 16px;}
    .oem-tsuyomi-con{
        width: 100%;
        margin-top: 10px;
    }
    .oem-characteristic-con{width: 100%;}
    .oem-characteristic-text{width: 100%;}
    .oem-contact-bar{width: 80%;}
}
@media screen and (min-width:550px) {
    a[href^="tel:"] {pointer-events: none;}
}
@media (max-width: 510px){
    .oem-contact-bar{
        width: 100%;
        padding: 10px;
    }
    .oem-contact-bar a{
        font-size: 20px;
        line-height: 32px;
    }
}
@media (max-width: 500px){
    .oem-characteristic-img{width: 100%;}
    .oem-item-img{width: 100%;}
    h3.oem-h3{font-size: 18px;}
}
@media (max-width: 460px){
    .oem-checklist li{
        line-height: 31px;
        margin-bottom: 10px;
    }
    h4.oem-h4{font-size: 16px;}
}
@media (max-width: 385px){
    .oem-checklist li{line-height: 24px;}
    .line-height-30{line-height: 30px!important;}
}

/* お問い合わせフォーム */
.p-contact {
  padding: 80px 0;
  /*-------------------------------------
	    お電話でのお問い合わせ
	--------------------------------------*/
  /*-------------------------------------
	    フォームダイアログ
	--------------------------------------*/
  /*-------------------------------------
	    フォーム入力部
	--------------------------------------*/
  /*-------------------------------------
	    メールが届かない方へ
	--------------------------------------*/
  /*-------------------------------------
	   エラーメッセージ
	--------------------------------------*/ }
  .p-contact .contactTel {
    max-width: 898px;
    outline: solid 1px #ddd;
    border: 9px solid #a5161e;
    margin: 30px auto;
    padding: 20px;
    text-align: center; }
    .p-contact .contactTel p {
      margin: 0; }
    .p-contact .contactTel .number {
      font-size: 2.4rem;
      font-weight: bold;
      margin: 15px 0; }
      .p-contact .contactTel .number a {
        color: #a5161e; }
  .p-contact .mw_wp_form_confirm .contactTel {
    display: none; }
  .p-contact .contactInput, .p-contact .contactConfirm {
    max-width: 960px;
    margin: 20px auto; }
  .p-contact .contactComplete {
    max-width: 960px;
    margin: 20px auto; }
  .p-contact .contactForm {
    max-width: 900px;
    margin: 0 auto; }
    .p-contact .contactForm tr {
      border-bottom: 5px solid #fff; }
    .p-contact .contactForm th, .p-contact .contactForm td {
      border-style: none;
      padding: 10px;
      vertical-align: top; }
    .p-contact .contactForm th {
      text-align: left;
      background-color: #eee;
      padding: 10px;
      vertical-align: middle; }
    .p-contact .contactForm .require {
      margin-left: 10px;
      padding: 3px 4px;
      color: #fafafa;
      font-size: 9px;
      letter-spacing: 1px;
      margin: 0px 0px 0px 10px;
      line-height: 9px;
      border-radius: 3px;
      zoom: normal;
      background: #C9171E; }
  .p-contact .contactNotice {
    max-width: 920px;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 20px;
    margin: 20px auto; }
    .p-contact .contactNotice .ttl {
      background: #eee;
      color: #444;
      padding: 5px 20px;
      margin: -20px -20px 20px; }
    .p-contact .contactNotice p {
      margin: 0; }
  .p-contact .error_msg {
    color: #a5161e;
    margin-bottom: 10px; }

@media only screen and (max-width: 767px) {
  .p-contact .contactForm th, .p-contact .contactForm td {
    display: block; }
  .p-contact .contactForm td input {
    width: 100%; }
  .p-contact .contactForm td textarea {
    width: 100%; }
  .p-contact .contactForm td.zip input, .p-contact .contactForm td.tel input, .p-contact .contactForm td.radio input {
    width: auto; }
  .p-contact .contactForm input[type="radio"] {
    position: relative;
    -webkit-appearance: button;
    appearance: button;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    content: "";
    background-color: #FFFFFF;
    border: 1px solid #999999;
    border-radius: 24px;
    -webkit-box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.2);
    vertical-align: middle;
    cursor: pointer;
    padding: 5px; }
  .p-contact .contactForm input[type="radio"]:checked:after {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    content: "";
    width: 6px;
    height: 6px;
    background: #a5161e;
    border-radius: 12px; }
  .p-contact .contactForm input[type="checkbox"] {
    display: inline-block;
    position: relative;
    margin-right: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: button;
    appearance: button;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #999;
    vertical-align: middle;
    padding: 5px; }
  .p-contact .contactForm input[type="checkbox"]:checked::after {
    position: absolute;
    content: "";
    top: -3px;
    left: 3px;
    width: 8px;
    height: 14px;
    border-right: 4px solid #a5161e;
    border-bottom: 4px solid #a5161e;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); } }
