@charset "utf-8";

/*
茶色：#40220f
オレンジ：#f1ad39
ボタンの影：#b57405（一律4px）
*/

/* ----------------
  Reset
  Layout (Common)
    ├ Header
    ├ Global Navigation
    ├ Container
    ├ Footer
    ├ Page Top
    └ Copyright
  Layout (Second)
    ├ MainVisual & Title（for TypeA）
    ├ MainVisual & Title（for TypeB）
    ├ Contents (typeB)
    ├ Grid Layout (1column)
    ├ Grid Layout (2column)
    ├ Section
    └ Page Navi
  Component
    ├ Button
    ├ Link
    ├ Heading
    ├ Table
    ├ Accordion
    └ Animation Effect
  Utilities
    ├ Margin
    ├ Align
    ├ Font Size
    ├ Float
    └ Display
---------------- */

/*
=======================================
	Reset CSS
=======================================
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, main, menu, nav, section, summary,
time, mark, audio, video{
	margin:0;
	padding:0;
}

article,aside,details,figcaption,figure,
footer,header,main,menu,nav,section{
	display:block;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html{
  overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}

body{
  overflow-x: hidden;
  color: #40220f;
	font-size: 1.6em;
	font-family:'Noto Sans JP', sans-serif;
	line-height: 2.375;
}

img{
	border:0;
	max-width:100%;
	height:auto;
}

ul,ol{list-style-type:none;}

table {
	border-collapse: collapse; 
	border-spacing: 0;
}

img, input, select, textarea { 
	vertical-align: middle;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  cursor: pointer;
}

span, small, strong, em {
	color: inherit;
}

a{
	color: inherit;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}


/*
=========================================
 Layout (Common)
=========================================
*/

/*Header
---------------*/
.l_header-wrap {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
 .l_header-wrap {
    background: rgba(255,255,255,0.7);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
 }
 .p_home .l_header-wrap {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
 }
 .is_scroll .l_header-wrap {
    height: 120px;
    background: rgba(255,255,255,0.7);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
  }
}

.l_header-inr {}
@media screen and (min-width: 769px) {
  .l_header-inr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.l_header {
  position: relative;
  z-index: 1;
  height: 94px;
  padding: 20px 0;
  background-color: rgba(255,255,255,0.7);
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  text-align: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.p_home .l_header {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.p_home.is_scroll .l_header {
   background: rgba(255,255,255,0.7);
   -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
   box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
@media screen and (min-width: 769px) {
  .l_header {
    height: 120px;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-align: left;
  }
  .p_home.is_scroll .l_header {
     background: none;
     -webkit-box-shadow: none;
     box-shadow: none;
  }
}

.l_header-logo {
  position: relative;
  z-index: 10;
  height: 55px;
  line-height: 1;
}
.l_header-logo img {
  height: 100%;
}
@media screen and (min-width: 769px) {
  .l_header-logo {
    height: 75px;
  }
}


/*SPメニューボタン*/
.l_header-btn {
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 10;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f1ad39 url(../img/btn_menu_open.svg) center center no-repeat;
  background-size: 45px 45px;
  -webkit-box-shadow: 0 4px 0 #b57405;
  box-shadow: 0 4px 0 #b57405;
}
.l_header-btn.is_open {
  background-image: url(../img/btn_menu_close.svg);
}

.l_header-btn:active,
.l_header-btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
}
@media screen and (min-width: 769px) {
  .l_header-btn {
    display: none;
  }
}

/*Global Navigation
---------------*/
.l_gnav-list a {
  font-family: "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN W6", HiraMinProN-W6, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.l_gnav-list li.shop a {
  font-family:'Noto Sans JP', sans-serif;
}
.l_gnav-list li.shop a:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: url(../img/ico_cart.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .l_gnav {
    position: absolute;
    left: 0;
    top: -300px;
    z-index: -1;
    width: 100%;
    text-align: left;
    line-height: 1;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    -o-transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  }
  .l_gnav.is_open {
    top: 0;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .l_gnav:before {
    content: "";
    display: block;
    width: 100%;
    height: 94px;
    background: rgba(64,34,15,0.8);
  }
  .l_gnav-list li {
    padding: 0 14%;
    background: rgba(64,34,15,0.8);
  }
  .l_gnav-list a {
    display: block;
    padding: 20px 0;
    color: #F1AD39;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    font-size: 2.0rem;
  }
  .l_gnav-list li:nth-child(1) a {
    padding-top: 40px;
  }
  .l_gnav-list li:nth-child(5) a {
    padding-bottom: 40px;
  }
  /*オンラインショップ*/
  .l_gnav-list li.shop {
    background: rgba(241,173,57,0.8);
  }
  .l_gnav-list li.shop a {
    color: #40220F;
  }
}
@media screen and (min-width: 769px) {
  .l_gnav {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 845px;
    margin: 0 auto;
  }
  .l_gnav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .l_gnav-list a {
    position: relative;
    display: inline-block;
    padding: 5px 3px;
    text-decoration: none;
    font-weight: bold;
  }
  .l_gnav-list li:not(.shop) a:before {
      content: "";
      display: block;
      position: absolute;
      width: 100%;
      height: 5px;
      top: 50%;
      left: 0;
      margin-top: 15px;
      background-color: #F1AD39;
      -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
      transform: scaleX(0);
      -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
      transform-origin: right top;
      -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.37,.16,0.12,1);
      transition: -webkit-transform 0.6s cubic-bezier(0.37,.16,0.12,1);
      -o-transition: transform 0.6s cubic-bezier(0.37,.16,0.12,1);
      transition: transform 0.6s cubic-bezier(0.37,.16,0.12,1);
      transition: transform 0.6s cubic-bezier(0.37,.16,0.12,1), -webkit-transform 0.6s cubic-bezier(0.37,.16,0.12,1)
  }
  .l_gnav-list li:not(.shop) a:hover:before,
  .l_gnav-list li.is_active a:before {
      -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
      transform: scaleX(1);
      -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
      transform-origin: left top;
      -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.37,.16,0.12,1);
      transition: -webkit-transform 0.3s cubic-bezier(0.37,.16,0.12,1);
      -o-transition: transform 0.3s cubic-bezier(0.37,.16,0.12,1);
      transition: transform 0.3s cubic-bezier(0.37,.16,0.12,1);
      transition: transform 0.3s cubic-bezier(0.37,.16,0.12,1), -webkit-transform 0.3s cubic-bezier(0.37,.16,0.12,1)
  }

  .l_gnav-list li.shop a {
    padding: 5px 20px;
    border-radius: 50px;
    background: #F1AD39;
    -webkit-box-shadow: 0 4px 0 #b57405;
    box-shadow: 0 4px 0 #b57405;
  }
  .l_gnav-list li.shop a:hover {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

/*Container
---------------*/
.l_container {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 6.6%;
}
.l_container-wide {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6.6%;
}
@media screen and (min-width: 376px) {
  .l_container {
    padding: 0 25px;
  }
  .l_container-wide {
    padding: 0 25px;
  }
}


/*Footer
---------------*/
.l_footer {
  margin: 60px 0 0;
  padding: 35px 0 20px;
  background: #f1ad39;
}
.l_footer .l_container {
  position: relative;
}
.l_footer .l_container:before {
  position: absolute;
  top: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 128px;
  height: 50px;
  background: url(../img/ill_dog01.png) center center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .l_footer {
    padding: 50px 0;
  }
  .l_footer .l_container:before {
    width: 240px;
    height: 100px;
    top: -100px;
    left: auto;
    right: 30px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .l_footer .l_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
/*ロゴ*/
.l_footer-logo {
  text-align: center;
}
.l_footer-logo img {
  width: 100px;
  height: 100px;
}
/*リンク*/
.l_footer-data ul {
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}
.l_footer-data li {
  display: inline-block;
  margin: 0 10px;
}
/*TEL・FAX・E-mail*/
.l_footer-data dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 300px;
  margin: 0 auto 30px;
  font-size: 13px;
  font-size: 1.3rem;
}
.l_footer-data dt {
  width: 90px;
  margin: 0 10px 10px 0;
  background: #fff;
  text-align: center;
}
.l_footer-data dd {
  margin: 0 0 10px 0;
  width: calc(100% - 100px);
  line-height: 1.2;
}
.l_footer-data dd .tel {
  display: block;
  font-size: 1.53em;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .l_footer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l_footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
  }
  .l_footer-logo img {
    width: 130px;
    height: 130px;
  }
  .l_footer-data ul {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .l_footer-data dl {
    max-width: 320px;
    margin: 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*フォーム*/
.l_footer-contact {
  margin-left: -25px;
  margin-right: -25px;
  padding: 20px;
  background: #fff;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l_footer-contact {
    width: 40%;
    max-width: 355px;
    margin: 0;
  }
  .l_footer-contact .c_btn.c_btn-contact {
    min-width: 0;
    width: 100%;
  }
}


/*Page Top
---------------*/
.l_page-top {
}
.l_page-top a {
  overflow: hidden;
  display: block;
  width: 67px;
  height: 0;
  margin: 0 auto;
  padding-top: 63px;
  border: 2px solid #f1ad39;
  border-radius: 50%;
  background: #fff url(../img/ico_top.svg) center center no-repeat;
  background-size: 40px 40px;
  -webkit-box-shadow: 0 4px 0 #f1ad39;
  box-shadow: 0 4px 0 #f1ad39;
}
.l_page-top a:hover {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media screen and (min-width: 769px) {
  .l_page-top a {
    width: 80px;
    padding-top: 76px;
  }
}

/*Copyright
---------------*/
.l_copyright {
  background: #b57405;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
}


/*
=========================================
 Layout (Second)
=========================================
*/
/*MainVisual & Title（for TypeA）
---------------*/
.l_typeA .l_mv {
  padding: 127px 20px 57px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.l_typeA .l_mv-inr {
  max-width: 645px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(255,255,255,0.8);
}
.l_typeA .l_mv-inr p {
  margin: 0 10px;
}

@media screen and (min-width: 769px) {
  .l_typeA .l_mv {
    padding: 230px 20px 57px;
  }
  .l_typeA .l_mv-inr {
    padding: 30px 60px;
  }
}
/*MainVisual & Title（for TypeB）
---------------*/
.l_typeB .l_mv {
/*
  position: relative;
  padding-top: 138.66%;
*/
  height: 460px;
  padding-top: 255px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.l_typeB .l_mv-ttl {
/*
  position: absolute;
  left: 0;
  top: 127px;
*/
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  padding: 10px 20px;
  background: rgba(255,255,255,0.8);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

@media screen and (min-width: 769px) {
  .l_typeB .l_mv-inr02 {
    max-width: 1100px;
    margin: 0 auto;
  }
  .l_typeB .l_mv-ttl {
    padding: 10px;
    font-size: 32px;
    font-size: 3.2rem;
  }
}

/*Contents (typeB)
---------------*/
.l_typeB {
  background: #faf8f3;
}
.l_typeB .l_contents {
  padding: 30px 20px;
}
.l_typeB .l_contents-inr {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .l_typeB .l_contents {
    padding: 40px 20px;
  }
  .l_typeB .l_contents-inr {
    padding: 50px 9%;
  }
}
@media screen and (min-width: 1100px) {
  .l_typeB .l_contents {
    padding: 40px 0;
  }
}


/*Grid Layout (1column)
---------------*/
.l_grid-wide {
  margin: 20px 0;
}
.l_grid-wide._normal ._txt {
  margin-bottom: 20px;
}
.l_grid-wide._reverse ._ph {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .l_grid-wide {
    margin: 50px 0;
  }
}


/*Grid Layout (2column)
---------------*/
/*原則として画像→テキストの順でマークアップを前提*/
.l_grid-half {
  margin: 20px 0;
}
.l_grid-half .l_grid-col._ph {
  text-align: center;
}
.l_grid-half ._txt+._ph,
.l_grid-half ._ph+._txt {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .l_grid-half {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 50px 0;
  }
  .l_grid-half._normal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .l_grid-half._reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .l_grid-half .l_grid-col {
    width: 50%;
  }
  .l_grid-half ._txt+._ph,
  .l_grid-half ._ph+._txt {
    margin-top: 0;
  }
  /*ノーマル配置*/
  .l_grid-half._normal ._ph {
    margin-right: 4%;
  }
  /*リバース配置*/
  .l_grid-half._reverse ._ph {
    margin-left: 4%;
  }
  /*ノーマル配置＋テキスト左*/
  .l_grid-half._normal ._txt+._ph {
    margin-left: 4%;
    margin-right: 0;
  }
}

/*Section
---------------*/
.l_sec {
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .l_sec {
    margin-bottom: 100px;
  }
}


/*Page Navi
---------------*/
.l_page-nav {
  max-width: 1100px;
  margin: 0 auto 30px;
  text-align: center;
}
.l_page-nav li {
  margin-bottom: 20px;
}
.l_page-nav a {
  display: block;
  padding: 65px 20px;
  background-color: #ffe7bf;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-decoration: none;
}
.l_page-nav a:hover {
  opacity: 0.8;
}
.l_page-nav span {
  display: block;
  max-width: 280px;
  margin: 0 auto;
  background: #fff;
  font-size: 26px;
  font-size: 2.6rem;
}
.l_page-nav .story a {
  background-image: url(../img/bg_nav01.jpg);
}
.l_page-nav .product a {
  background-image: url(../img/bg_nav02.jpg);
}
.l_page-nav .subscriptions a {
  background-image: url(../img/bg_nav03.jpg);
}
.l_page-nav .faq a {
  background-image: url(../img/bg_nav04.jpg);
}

@media screen and (min-width: 769px) {
  .l_page-nav  {
    margin: 0 20px 50px;
  }
  .l_page-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .l_page-nav li {
    width: 48.636%;
  }
}
@media screen and (min-width: 1100px) {
  .l_page-nav {
    margin: 0 auto;
  }
}


/*
==========================================
 Component
==========================================
*/


/*Button
---------------*/

/*ボタン効果*/
.c_btn {
  -webkit-box-shadow: 0 4px 0 #b57405;
  box-shadow: 0 4px 0 #b57405;
}
.c_btn:hover {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*ボタンbase*/
a[class*="c_btn-"]{
  position: relative;
  display: inline-block;
  min-width: 240px;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  line-height: 1.2;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
a[class*="c_btn-"]:after {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0,-50%) rotate(45deg);
  -ms-transform: translate(0,-50%) rotate(45deg);
  transform: translate(0,-50%) rotate(45deg);
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-left: 10px;
}
@media screen and (min-width: 769px) {
  a[class*="c_btn-"] {
    padding: 15px 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/*黄色ボタン*/
.c_btn-normal {
  background: #f1ad39;
  color: #40220f;
}
.c_btn-normal:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/*反転ボタン*/
.c_btn-reverse {
  background: #fff;
  color: inherit;
}
.c_btn-reverse:after {
  border-top: 2px solid #f1ad39;
  border-right: 2px solid #f1ad39;
}

/*茶色ボタン*/
.c_btn-dark {
  background: #40220f;
  color: #ffffff;
}
.c_btn-dark:after {
  border-top: 2px solid #f1ad39;
  border-right: 2px solid #f1ad39;
}
/*相談フォーム*/
.c_btn.c_btn-contact {
  min-width: 300px;
  padding: 20px 20px 15px 20px;
  background: #9e0c32;
  color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 4px 0 #540004;
  box-shadow: 0 4px 0 #540004;
}
.c_btn.c_btn-contact:hover {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.c_btn.c_btn-contact:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 35px;
  margin: -5px 10px 0 0;
  background: url(../img/ico_bubble.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}

/*Link
---------------*/
.c_link-arw_01 {
  position: relative;
  display: inline-block;
  padding-left: 1.5em;
  color: #f1ad39;
}
.c_link-arw_01:before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5em;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
}
.c_link-arw_01:hover {
  color: #40220f;
}

/*Heading
---------------*/
.c_ttl_01 {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #d1c0a5;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 36px;
  font-size: 3.6rem;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif,'Noto Sans JP', sans-serif;
}

/*下層大見出し*/
.c_ttl_02 {
  padding: 0 20px;
  background: #f1ad39;
  text-align: center;
}
.c_ttl_02 .ttl {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1000px;
  padding: 20px 0;
  line-height: 1;
  vertical-align: top;
  letter-spacing: 0.1em;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif,'Noto Sans JP', sans-serif;
}
.c_ttl_02._odd .ttl:before {
  content: "";
  display: block;
  width: 60px;
  height: 40px;
  margin: -10px auto 10px;
  background: url(../img/ico_dog03.svg) no-repeat;
  background-size: contain;
}
.c_ttl_02._even .ttl:before {
  content: "";
  display: block;
  width: 60px;
  height: 40px;
  margin: -10px auto 10px;
  background: url(../img/ico_dog04.svg) no-repeat;
  background-size: contain;
}

@media screen and (min-width: 769px) {
  .c_ttl_02 .ttl {
    padding: 30px 0;
    font-size: 36px;
    font-size: 3.6rem;
  }
  .c_ttl_02._odd .ttl:before {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    width: 95px;
    height: 60px;
    margin: 0;
  }
  .c_ttl_02._even .ttl:before {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    width: 120px;
    height: 90px;
    margin: 0;
  }
}

/*下層小見出し*/
.c_ttl_03 {
  padding: 20px;
  background: #ffe7bf;
  text-align: center;
}
.c_ttl_03 .ttl {
  display: inline-block;
  padding-bottom: 0.5em;
  border-bottom: 4px solid #fff;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .c_ttl_03 {
    padding: 20px 20px 25px;
  }
  .c_ttl_03 .ttl {
    padding-bottom: 0.2em;
    font-size: 26px;
    font-size: 2.6rem;
  }
}

/*下層小見出し*/
.c_ttl_04 {
  position: relative;
  margin-bottom: 15px;
  padding-left: 1.5em;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.c_ttl_04:before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.5em;
  background: url(../img/ico_dog02.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}

/*Table
---------------*/
.c_table_01 {
  width: 100%;
}
.c_table_01 th {
  padding: 10px 15px;
  border-bottom: 2px solid #fff;
  background: #faf8f3;
  text-align: left;
  vertical-align: top;
}
.c_table_01 td {
  padding: 10px 15px;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .c_table_01,
  .c_table_01 tbody,
  .c_table_01 tr,
  .c_table_01 th,
  .c_table_01 td {
    display: block;
  }
}

/*Accordion
---------------*/
.c_acr-btn {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  margin: 1.5em 0;
  padding: 15px 50px 15px 20px;
  background: #ffe7bf;
  color: inherit;
  font-size: inherit;
  text-align: left;
  cursor: pointer;
}
.c_acr-btn:before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-right: 2px solid #f1ad39;
  border-bottom: 2px solid #f1ad39;
  -webkit-transform: translate(0,-50%) rotate(45deg);
  -ms-transform: translate(0,-50%) rotate(45deg);
  transform: translate(0,-50%) rotate(45deg);
}
.c_acr-btn.is_open:before {
  -webkit-transform: translate(0,-30%) rotate(-135deg);
  -ms-transform: translate(0,-30%) rotate(-135deg);
  transform: translate(0,-30%) rotate(-135deg);
}

.c_acr-panel {
  display: none;
}

/*Animation Effect
---------------*/
.js_effect {
  opacity: 0;
}
.js_effect.aniOn {
  -webkit-animation: slideInUp 0.8s ease 0s 1 forwards;
  animation: slideInUp 0.8s ease 0s 1 forwards;
}
@-webkit-keyframes slideInUp {
	from {
		visibility: visible;
		opacity: 0;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	to {
		visibility: visible;
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInUp {
	from {
		visibility: visible;
		opacity: 0;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	to {
		visibility: visible;
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@-webkit-keyframes slideInDown {
	from {
		visibility: visible;
		opacity: 0;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: visible;
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
}
@keyframes slideInDown {
	from {
		visibility: visible;
		opacity: 0;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: visible;
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
}

.a_fade {
  -webkit-animation: fadeIn 4s ease 0s 1 normal;
  animation: fadeIn 4s ease 0s 1 normal;
}
@-webkit-keyframes fadeIn {
	from {
		visibility: visible;
		opacity: 0;
	}
	to {
		visibility: visible;
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		visibility: visible;
		opacity: 0;
	}
	to {
		visibility: visible;
		opacity: 1;
	}
}

/*
==========================================
	Utilities
==========================================
*/

/* Margin
---------------------------------*/
.u_mb0{ margin-bottom: 0 !important;}
.u_mb5{ margin-bottom: 5px !important;}
.u_mb10{ margin-bottom: 10px !important;}
.u_mb15{ margin-bottom: 15px !important;}
.u_mb20{ margin-bottom: 20px !important;}
.u_mb25{ margin-bottom: 25px !important;}
.u_mb30{ margin-bottom: 30px !important;}
.u_mb35{ margin-bottom: 35px !important;}
.u_mb40{ margin-bottom: 40px !important;}
.u_mb45{ margin-bottom: 45px !important;}
.u_mb50{ margin-bottom: 50px !important;}

/* Align
---------------------------------*/
.u_ta-l{ text-align: left; }
.u_ta-r{ text-align: right; }
.u_ta-c{ text-align: center; }

/* Font Size
---------------------------------*/
.u_fz-s { font-size: 70%; }

/* Float
---------------------------------*/
.u_fl{ float:left; }
.u_fr{ float:right; }
.u_fl-img{ float: left; margin-right: 15px; margin-bottom: 15px;}
.u_fr-img{ float: right; margin-left: 15px; margin-bottom: 15px;}
.u_clear{ clear:both; }

/* clearfix */
.u_cf:after {
	content: ""; 
	display: block; 
	clear: both; 
}

/* Display
---------------------------------*/
.u_sp {display: block;}
.u_pc {display: none;}

/*SP*/
@media screen and (min-width:769px){
	.u_sp {display: none;}
	.u_pc {display: block;}	
}


