@charset "UTF-8";

@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Andada+Pro:wght@600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@500&display=swap);

/* ===================================================================
CSS information
File Name  : style.css
=================================================================== */

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #F5E8D9;
  color: #333;
  font-family: 'Noto Serif JP', "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN W3", 'Noto Serif JP', serif;
  font-weight:400;
  font-size: 20px;
  font-size: 2rem;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
  @media screen and (max-width: 1220px) {
    /*html {
      font-size: 54.5%;
    }*/
  }
  @media screen and (max-width: 767px) {
    /*html {
      font-size: 62.5%;
    }*/
    body {
      font-size: 3.68vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.2s ease-in-out 0s;
}
a:link {
  color: #F5B011;
}
a:visited {
  color: #F5B011;
}
a:hover {
  text-decoration: none;
  color: #F5B011;
}
a:active {
  color: #F5B011;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  /*font-size: 0;*/
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
}

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo;
}
.ff01 {
  font-family: 'Andada Pro', serif;
}
.ff02 {
  font-family: 'Kiwi Maru', serif;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 767px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

.inline {
  display:inline;
}
.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.block {
  display:block;
}
.flex {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
}
/* 横逆順 */
.fx_r_reverse {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
/* 縦逆順 */
.fx_c_reverse {
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
/*アイテム折返し*/
.fx_wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 等間隔に配置 */
.fx_between {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
/* センターに配置 */
.fx_center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
/* 右側に配置 */
.fx_end {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
}
/*上下中央寄せ*/
.fx_all_center {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.table_cell {
  display: table-cell;
  vertical-align: middle;
}
.fr {
  float: right;
}
.fl {
  float: left;
}
.tC {
  text-align: center;
}
.tR {
  text-align: right;
}
.pc_none {
  display:none;
}
.clearfix:after {
  content: ""; 
  display: block; 
  clear: both;
}
.alpha:hover {
  opacity: 0.7;
}
.no_alpha {
  opacity: 1!important;
}

@media screen and (max-width: 767px) {
  .pc_none {
    display:block;
  }
  .sp_none {
    display:none;
  }
  .fl,.fr {
    box-sizing:border-box;
    width:100%!important;
    float:none!important;
  }
  .sp_block {
    -webkit-display: block;
    -moz-display: block;
    -ms-display: block;
    -o-display: block;
    display: block;
  }
}

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  overflow:hidden;
  margin: 0 auto;
}
#contents {
  line-height: 1.8;
  padding-bottom: 250px;
}
#contents a:hover img{
  opacity: 0.70;
}
.wrapper {
  position: relative;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}
.inner {
  position: relative;
  max-width: 1340px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
  @media screen and (max-width: 1380px) {
    .wrapper {
      max-width: 90%;
    }
    .inner {
      max-width: 90%;
      padding-left: 0;
      padding-right: 0;
    }
  }
  @media screen and (max-width: 767px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    #contents {
      padding-bottom: 17.89vw;
    }
    .wrapper, .inner {
      min-width:100%;
      max-width:100%;
      width:100%;
    }
    .inner {
      padding-left: 5.26vw;
      padding-right: 5.26vw;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 183px;
}
.hd_inner {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  height: 100%;
}
#header .logo {
  position: absolute;
  left: 20px;
  top: 58px;
  display:inline-block;
}
  @media screen and (max-width: 767px) {
    #header {
      height: 16vw;
    }
    .hd_inner {
      max-width: 100%;
      padding: 0 5.26vw;
    }
    #header .logo {
      left: 5.26vw;
      top: 3.33vw;
    }
    #header .logo img {
      width: 22.89vw;
    }
  }

.site_copy {
  position: absolute;
  right: 140px;
  bottom: 40px;
  font-size: 2.6rem;
  font-weight: 700;
}
.site_copy::before {
  position: absolute;
  right: 32px;
  top: -30px;
  content: "";
  width: 88px;
  height: 29px;
  background: url("../img/common/hd_kobashiri.svg") center center no-repeat;
  background-size: 88px 29px;
}
.site_copy small {
  font-size: 2.2rem;
}
.hd_tel {
  position: absolute;
  left: 250px;
  bottom: 40px;
  font-weight: 600;
  line-height: 1.4;
}
.hd_tel span {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  margin-left: 5px;
  background: url("../img/common/ico/ico_tel01.svg") left center no-repeat;
  background-size: 20px 16px;
}
  @media screen and (max-width: 900px) {
    .site_copy {
      display: none;
    }
  }

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#footer {
  background: #E9DDC0;
  text-align: center;
  line-height: 1.8;
}
#footer .inner {
  padding: 30px 0;
}
#footer h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}
#footer p {
  font-size: 1.8rem;
  margin-bottom: 25px;
}
.ft_sns li {
  margin: 0 35px;
}
.ft_sns li a img {
  transition: all 0.2s ease-in-out 0s;
}
.ft_sns li a:hover img {
  transform: scale(1.1);
}
.copyright {
  display: block;
  color: #fff;
  background: #282653;
  font-size: 2rem;
  padding: 20px 0;
}
  @media screen and (max-width: 767px) {
    #footer {
      padding: 0 5.26vw 19.33vw;
    }
    #footer .inner {
      padding: 5vw 0;
    }
    #footer h2 {
      font-size: 3.68vw;
      margin-bottom: 2vw;
    }
    #footer p {
      font-size: 3.15vw;
      text-align: left;
      margin-bottom: 2.33vw;
    }
    .ft_sns li {
      margin: 0 2vw;
    }
    .ft_sns li a img {
      width: 9.21vw;
      height: auto;
    }
    .copyright {
      display: none;
    }
    #ft_nav {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      background: #FAF3EA;
      z-index: 100;
      text-align: center;
      padding: 2.66vw 1.66vw 1.66vw;
    }
    #ft_nav h3 img {
      width: 37.84vw;
      height: auto;
    }
    #ft_nav li {
      width: 49%;
    }
    #ft_nav li img {
      width: 100%;
      height: auto;
    }
  }

/*----------------------------------------------------
  共通タイトル
--------------------------------------------------- */
#lowerVisual {
  width: 100%;
  height: 407px;
}
.page_ttl {
  width: 716px;
  background: rgba(255,255,255,0.85);
  text-align: center;
  border-radius: 20px;
  padding: 10px 10px 13px;
}
.page_ttl strong {
  font-size: 5rem;
  display: block;
  color: #602A06;
}
.page_ttl small {
  font-size: 1.8rem;
}
  @media screen and (max-width: 767px) {
    #lowerVisual {
      height: 36.31vw;
    }
    .page_ttl {
      width: 66.31vw;
      border-radius: 10px;
      padding: 2.33vw 2vw;
      line-height: 1.3;
    }
    .page_ttl strong {
      font-size: 5.26vw;
    }
    .page_ttl small {
      font-size: 2.1vw;
    }
  }

.main_company {
  background: url("../img/main/main_company.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_company {
      background: url("../img/main/main_company_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_news {
  background: url("../img/main/main_news.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_news {
      background: url("../img/main/main_news_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_menu {
  background: url("../img/main/main_menu.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_menu {
      background: url("../img/main/main_menu_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.ttl_deco {
  font-size: 1.8rem;
  color: #602A06;
  display: inline-block;
  font-weight: 700;
  font-family: 'Andada Pro', serif;
  padding-bottom: 8px;
  background: url("../img/common/border_slash.svg") center bottom no-repeat;
  background-size: 59px 10px;
}
  @media screen and (max-width: 767px) {
    .ttl_deco {
      font-size: 2.1vw;
      padding-bottom: 1.66vw;
      background-size: 6.26vw 1.21vw;
    }
  }

.sub_ttl01 {
  position: relative;
  text-align: center;
  margin-bottom: 70px;
  z-index: 5;
}
.sub_ttl01 strong {
  display: block;
  font-size: 5rem;
  color: #602A06;
}
  @media screen and (max-width: 767px) {
    .sub_ttl01 {
      margin-bottom: 5.26vw;
    }
    .sub_ttl01 strong {
      font-size: 6.31vw;
    }
  }

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.txt_link a {
  text-decoration: none;
  color: #333;
  display: inline-block;
  padding-left: 22px;
  background: url("../img/common/ico/ico_arrow01.svg") 0 10px no-repeat;
}
.txt_link a:hover {
  text-decoration: underline;
}
  @media screen and (max-width: 767px) {
    .txt_link a {
      padding-left: 5vw;
      background: url("../img/common/ico/ico_arrow01.svg") 0 1.84vw no-repeat;
      background-size: 3.33vw auto;
    }
  }

.pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 100;
  display:none;
}
.pagetop a:hover {
  opacity: 0.8;
}
  @media screen and (max-width: 767px) {
    .pagetop {
      right: 2vw;
      bottom: 22.33vw;
    }
    .pagetop img {
      width: 11.05vw;
      height: auto;
    }
  }

.btn01 {
  position: relative;
  z-index: 5;
}
.btn01 a {
  box-sizing: border-box;
  position: relative;
  bottom: 0;
  display: block;
  width: 360px;
  padding: 12px 10px;
  margin: 0 auto;
  text-align: center;
  background: #b1ad7e;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 3px;
  overflow: hidden;
  box-shadow:0 4px 0 0 #d4d3c9;
}
.btn01 a:hover {
  box-shadow:0 0 0 0 #d4d3c9;
}
.btn01 a::before {
  position: absolute;
  left: -100%;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #C5C29E;
  opacity: 0;
  transition: all 0.2s ease-in-out 0s;
}
.btn01 a:hover::before {
  opacity: 1;
  left: 0;
}
.btn01 a i {
  margin-right: 10px;
}
.btn01 a span {
  position: relative;
  z-index: 10;
}
  @media screen and (max-width: 767px) {
    .btn01 {
      position: relative;
      z-index: 5;
    }
    .btn01 a {
      width: 100%;
      padding:9px;
      font-size: 1.6rem;
      box-shadow:0 3px 0 0 #d4d3c9;
    }
  }


/*----------------------------------------------------
  ハンバーガーメニュー
--------------------------------------------------- */

/*transition*/
.trs {
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -ms-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
}
/*trp*/
.trp {
  -webkit-transition: opacity .1s ease;
  -moz-transition: opacity .1s ease;
  -ms-transition: opacity .1s ease;
  -o-transition: opacity .1s ease;
  transition: opacity .1s ease;
  opacity: 1;
  filter: alpha(opacity=100);
}
.trp:hover {
  opacity: .6;
  filter: alpha(opacity=60);
}
/* trs-dr */
.trs-dr02 {
  -webkit-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -ms-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s;
}
.trs-dr03 {
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
  -ms-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
}
.trs-dr05 {
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -ms-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}
.trs-dr06 {
  -webkit-transition-duration: .6s;
  -moz-transition-duration: .6s;
  -ms-transition-duration: .6s;
  -o-transition-duration: .6s;
  transition-duration: .6s;
}
.trs-dr08 {
  -webkit-transition-duration: .8s;
  -moz-transition-duration: .8s;
  -ms-transition-duration: .8s;
  -o-transition-duration: .8s;
  transition-duration: .8s;
}
.trs-dr12 {
  -webkit-transition-duration: 1.2s;
  -moz-transition-duration: 1.2s;
  -ms-transition-duration: 1.2s;
  -o-transition-duration: 1.2s;
  transition-duration: 1.2s;
}
/* trs-tf */
.trs-tfCb {
  -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  transition-timing-function: cubic-bezier(0, .96, .4, .99);
}

.menuTrigger {
  position: absolute;
  z-index: 50;
  top: 88px;
  right: 20px;
  display: block;
  width: 84px;
  height: 58px;
  cursor: pointer;
}
.menuIcon_line {
  position: absolute;
  left: 0;
  width: 84px;
  height: 3px;
  background: #602A06;
}
.menuIcon_line:nth-of-type(1) {
  top: 0;
}
.menuIcon_line:nth-of-type(2) {
  top: calc(50% - 1px);
}
.menuIcon_line:nth-of-type(3) {
  top: calc(100% - 3px);
}
  @media screen and (max-width: 767px) {
    .menuTrigger {
      position: fixed!important;
      top: 1.66vw!important;
      right: 3.5vw!important;
      width: 10vw!important;
      height: 9vw!important;
    }
    .menuIcon_line {
      width: 6.84vw!important;
      left: 1.5vw!important;
    }
    .menuIcon_line:nth-of-type(1) {
      top: 7px!important;
    }
    .menuIcon_line:nth-of-type(2) {
      top: calc(50% - 1px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(100% - 11px)!important;
    }
  }
  @media screen and (max-width: 500px) {
    .menuTrigger {
      width: 40px!important;
      height: 36px!important;
    }
    .menuIcon_line {
      width: 30px!important;
      left: 5px!important;
    }
    .menuIcon_line:nth-of-type(1) {
      top: 8px!important;
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(100% - 10px)!important;
    }
  }

/* fix */
.menuTrigger.hb_fix {
  z-index: 200;
  position: fixed;
  height: 74px;
  top: 30px;
  right: 30px;
  background: #602A06;
}
.menuTrigger.hb_fix .menuIcon_line {
  left: 5px;
  width: 74px;
}
.menuTrigger.hb_fix .menuIcon_line:nth-of-type(1) {
  top: 13px;
}
.menuTrigger.hb_fix .menuIcon_line:nth-of-type(3) {
  top: calc(100% - 15px);
}
.menuTrigger.hb_fix .menuIcon_line {
  background: #fff;
}

/* open */
.menuTrigger.open {
  z-index: 200;
  position: fixed;
  top: 40px;
  right: 40px;
  background: none!important;
}
.menuTrigger.open .menuIcon_line {
  background: #fff;
  left: 0!important;
  width: 84px!important;
}
.menuTrigger.open .menuIcon_line:nth-of-type(1) {
  top: 31px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menuTrigger.open .menuIcon_line:nth-of-type(2) {
  opacity: 0;
}
.menuTrigger.open .menuIcon_line:nth-of-type(3) {
  top: 31px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
  @media screen and (max-width: 767px) {
    .menuTrigger.open .menuIcon_line {
      width: 6.84vw!important;
      left: 1.5vw!important;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(1) {
      top: 4.7vw!important;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(3) {
      top: 4.7vw!important;
    }
  }
  @media screen and (max-width: 500px) {
    .menuTrigger.open .menuIcon_line {
      width: 30px!important;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(1) {
      top: 18px!important;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(3) {
      top: 18px!important;
    }
  }

#hbNav {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: rgba(96,42,6,0.95);
  z-index: 150;
  overflow-y: visible;
  overflow-x: hidden;
  -webkit-overflow-scrolling: auto;
  overflow-scrolling: auto;
}
.hb_inner {
  box-sizing: border-box;
  display: table;
  width: 100%;
  height: 100%;
  padding: 80px 20px 50px 20px;
}
.hb_inner a {
  display: block;
  color: #fff;
  text-decoration: none;
  text-align: center;
}
.hb_menu {
  width: 800px;
  padding: 0 30px;
  margin: 0 auto 35px;
}
.hb_menu li {
  line-height: 1.5;
  border-bottom: dotted 1px rgba(255,255,255,0.5);
}
.hb_menu li a {
  padding: 15px;
}
.hb_menu li a:hover {
  background: rgba(255,255,255,0.15);
}
.hb_sns {
  margin-bottom: 30px;
}
.hb_sns li {
  margin: 0 10px;
}
.hb_sns li a:hover {
  filter: brightness(1.2);
}
.hb_tel {
  text-align: center;
  color: #fff;
  line-height: 1.6;
}
.hb_tel a {
  display: inline-block;
}
  @media screen and (max-width: 767px) {
    .hb_inner {
      padding: 12vw 8vw 5vw;
    }
    .hb_menu {
      width: 100%;
      padding: 0;
      font-size: 4.4vw;
      margin: 0 auto 8vw;
    }
    .hb_menu li a {
      padding: 3.5vw;
    }
    .hb_sns {
      margin-bottom: 8vw;
    }
    .hb_sns li {
      margin: 0 3vw;
    }
    .hb_sns li img {
      width: 10vw;
      height: auto;
    }
    .hb_tel {
      font-size: 4.26vw;
      line-height: 1.8;
    }
  }

/*----------------------------------------------------
  トップページ index
--------------------------------------------------- */
#mainVisual {
  position: relative;
  max-width: 90%;
  margin: 0 auto 100px;
}
.mv_inner {
  position: relative;
  width: 100%;
}
.main_slider {
  opacity: 0;
  transition: opacity .3s linear;
}
.main_slider.slick-initialized{
  opacity: 1;
}
#mainVisual figure img {
  width: 100%;
  height: auto;
}
  @media screen and (max-width: 767px) {
    #mainVisual {
      max-width: 100%;
      padding: 0 5.26vw;
      margin: 0 auto 11.63vw;
    }
    #mainVisual figure {
      position: relative;
      top: -1vw;
    }
  }

/*トップのんちゃんNEWS*/
#index_news {
  margin-bottom: 50px;
}
.index_news_box {
  position: relative;
  border: solid 5px #806736;
  border-radius: 20px;
  background: #fff;
  min-height: 260px;
  padding: 65px 5.7% 50px 27.5%;
}
.index_news_box h2 {
  position: absolute;
  left: 5.7%;
  top: 80px;
  font-size: 4rem;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
  color: #602A06;
}
.index_news_box h2::before {
  position: absolute;
  left: 15px;
  top: 0;
  content: "";
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #F8CB62;
}
.index_news_box h2 span {
  display: inline-block;
  position: relative;
  z-index: 5;
  background: url("../img/common/border_slash.svg") center bottom no-repeat;
  background-size: 59px 10px;
  padding-bottom: 15px;
}
.index_news_box ul {
  padding-bottom: 5px;
}
.index_news_box li {
  margin-bottom: 35px;
}
.index_news_box li a {
  color: #333;
  text-decoration: none;
  line-height: 1.3;
}
.index_news_box li a:hover {
  color: #806736;
}
.index_news_box li a:hover h3 {
  text-decoration: underline;
}
.index_news_box li time {
  display: inline-block;
  white-space: nowrap;
  margin-right: 0.4em;
}
.cat_box {
  min-width: 90px;
  padding-right: 5px;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.cat_box span {
  display: inline-block;
  background: #806736;
  color: #fff;
  min-width: 75px;
  padding: 2px 5px;
  line-height: 1.5;
  text-align: center;
}
.index_news_box li h3 {
  font-weight: 400;
  line-height: 1.3;
}
  @media screen and (max-width: 1080px) {
    .index_news_box {
      padding: 55px 4.5% 40px 30%;
    }
    .index_news_box h2 {
      left: 3.5%;
      top: 80px;
      font-size: 3.6rem;
    }
    .index_news_box h2::before {
      left: 15px;
      width: 80px;
      height: 80px;
    }
    .index_news_box li a {
    -webkit-display: block;
    -moz-display: block;
    -ms-display: block;
    -o-display: block;
    display: block;
    }
    .index_news_box li time {
      width: auto;
      white-space: nowrap;
      margin-right: 10px;
    }
    .cat_box {
      display: inline-block;
      width: auto!important;
      vertical-align: bottom;
    }
    .index_news_box li h3 {
      margin-top: 5px;
    }
  }
  @media screen and (max-width: 767px) {
    #index_news {
      margin-bottom: 0;
    }
    .index_news_box {
      border: solid 3px #806736;
      min-height: auto;
      padding: 7.5vw 8vw 6vw 8vw;
    }
    .index_news_box h2 {
      position: relative;
      left: auto;
      top: auto;
      font-size: 5.26vw;
      margin-bottom: 8vw;
    }
    .index_news_box h2::before {
      display: none;
    }
    .index_news_box h2 span {
      background-size: 15.26vw 2.36vw;
      padding-bottom: 3.73vw;
    }
    .index_news_box ul {
      padding-bottom: 0;
    }
    .index_news_box li {
      margin-bottom: 6.66vw;
    }
    .index_news_box li time {
      width: auto;
      white-space: nowrap;
      margin-right: 3vw;
    }
    .cat_box {
      display: inline-block;
      width: auto!important;
      font-size: 2.63vw!important;
      vertical-align: bottom;
    }
    .cat_box span {
      min-width: 14vw;
      padding: 0.33vw;
      line-height: 1.4;
      text-align: center;
    }
    .index_news_box li h3 {
      margin-top: 1.2vw;
      width: 100%;
    }
  }

/*トップ共通*/
.index_gallery {
  position: relative;
  z-index: 5;
}
.index_gallery_box {
  position: relative;
  width: 47.5%;
  padding-top: 48px;
}
.index_gallery_ttl {
  position: absolute;
}
.index_gallery_ttl h2 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1.1;
}
.index_gallery_ttl span {
  display: block;
  text-align: center;
  font-size: 5rem;
  color: #602A06;
  letter-spacing: 0.8rem;
}
.index_gallery_txt h3 {
  margin-bottom: 8px;
}
.index_gallery_txt h3 strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1.6;
  margin-top: 15px;
}
.index_gallery figure {
  width: 50%;
}
.index_gallery figure img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
  @media screen and (max-width: 767px) {
    .index_gallery_box {
      width: 100%;
      padding-top: 2.66vw;
    }
    .index_gallery_ttl span {
      font-size: 9.21vw;
      letter-spacing: 1.2vw;
    }
    .index_gallery_txt {
      margin-bottom: 6.66vw;
    }
    .index_gallery_txt h3 {
      margin-bottom: 1.33vw;
    }
    .index_gallery_txt h3 strong {
      font-size: 4.21vw;
      margin-top: 2vw;
    }
    .index_gallery figure {
      width: 100%;
    }
    .index_gallery figure img {
      border-radius: 15px;
    }
  }

/*ごあいさつ*/
#index_about {
  position: relative;
  padding-top: 100px;
}
#index_about::before {
  position: absolute;
  left: -95px;
  top: 45px;
  content: "";
  width: 394px;
  height: 362px;
  background: url("../img/index/fig_tori.png") center center no-repeat;
  background-size: 394px 362px;
}
#index_about .index_gallery_ttl {
  top: 28px; 
  left: -5px;
}
#index_about .index_gallery_box {
  padding-left: 77px;
}
  @media screen and (max-width: 767px) {
    #index_about {
      padding-top: 18.42vw;
    }
    #index_about::before {
      position: absolute;
      left: 46.5vw;
      top: 10.52vw;
      width: 48.05vw;
      height: 44.20vw;
      background-size: 48.05vw 44.20vw;
    }
    #index_about .index_gallery_ttl {
      top: 0; 
      left: -1vw;
    }
    #index_about .index_gallery_box {
      padding-left: 11.66vw;
    }
  }

/*こだわり*/
#index_quolity {
  position: relative;
  padding: 100px 0;
}
#index_quolity::before {
  position: absolute;
  right: -90px;
  top: 18px;
  content: "";
  width: 394px;
  height: 305px;
  background: url("../img/index/fig_yakitori.png") center center no-repeat;
  background-size: 394px 305px;
}
#index_quolity .index_gallery_ttl {
  top: 15px; 
  right: -5px;
  width: 110px;
}
#index_quolity .index_gallery_box {
  padding-right: 120px;
}
  @media screen and (max-width: 767px) {
    #index_quolity {
      padding: 15.78vw 0 9.33vw;
    }
    #index_quolity::before {
      right: 45vw;
      top: 3.73vw;
      width: 48.68vw;
      height: 37.72vw;
      background-size: 48.68vw 37.72vw;
    }
    #index_quolity .index_gallery_ttl {
      top: 0; 
      right: -1vw;
      width: 20.33vw;
    }
    #index_quolity .index_gallery_box {
      padding-right: 20vw;
    }
  }

div.vid_contents {
  width: 100%;/*背景色を横幅いっぱいに広げる*/
  text-align: center;
  margin: auto;
}
video.vid_main {
  width: 100%;
  max-width: 920px;/*PC版での最大幅*/
  border-radius: 30px;
  overflow: hidden;
}
  @media screen and (max-width: 767px) {
    video.vid_main {
      border-radius: 15px;
    }
  }

/*こだわりギャラリー*/
#index_commit {
  padding-bottom: 100px;
}
.commit_box {
  width: 48%;
  margin-bottom: 90px;
}
.commit_box h3 {
  text-align: center;
  font-size: 3.5rem;
  color: #602A06;
  margin-bottom: 30px;
  padding-bottom: 10px;
  background: url("../img/common/border_slash.svg") center bottom no-repeat;
  background-size: 59px 10px;
}
.commit_box figure {
  margin-bottom: 22px;
}
.commit_box figure img {
  border-radius: 30px;
}
.commit_txt {
  padding: 0 2.6%;
}
  @media screen and (max-width: 767px) {
    #index_commit {
      padding-bottom: 8vw;
    }
    .commit_box {
      width: 100%;
      margin-bottom: 9.33vw;
    }
    .commit_box h3 {
      font-size: 6.31vw;
      margin-bottom: 5vw;
      padding-bottom: 1.33vw;
      background-size: 6.26vw 1.21vw;
    }
    .commit_box figure {
      margin-bottom: 4vw;
    }
    .commit_box figure img {
      border-radius: 15px;
    }
    .commit_txt {
      padding: 0 1vw;
    }
  }

/*メニューバナー*/
.index_menu {
  position: relative;
  margin-bottom: 160px;
}
.index_menu::before {
  position: absolute;
  right: -100px;
  bottom: -380px;
  content: "";
  width: 262px;
  height: 460px;
  background: url("../img/index/fig_sake.png") center center no-repeat;
  background-size: 262px 460px;
}
.index_menu a {
  position: relative;
  z-index: 5;
  background: url("../img/index/index_menu_bg.jpg") center center no-repeat;
  background-size: cover;
  border-radius: 30px;
  height: 500px;
  text-decoration: none;
  color: #602A06;
}
.index_menu a:hover {
  opacity: 0.8;
}
.index_menu a::before {
  position: absolute;
  left: 33px;
  top: 33px;
  content: "";
  width: calc(100% - 66px);
  height: calc(100% - 66px);
  background: rgba(255,255,255,0.5);
  border-radius: 30px;
}
.index_menu a span {
  position: relative;
  z-index: 5;
  display: block;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background: url("../img/common/ico/ico_arrow02.svg") center 93% no-repeat rgba(255,255,255,0.85);
  background-size: 23px 23px;
  font-size: 5rem;
  letter-spacing: 1.2rem;
  padding: 18px 5px 50px;
  border-bottom: solid 10px #F5B011;
}
  @media screen and (max-width: 767px) {
    .index_menu {
      margin: 0 -5.26vw 19.73vw -5.26vw;
    }
    .index_menu::before {
      bottom: -40vw;
      width: 21.66vw;
      height: 38.1vw;
      background-size: 21.66vw 38.1vw;
    }
    .index_menu a {
      background: url("../img/index/index_menu_bg_sp.jpg") center center no-repeat;
      background-size: cover;
      border-radius: 0;
      height: 55.78vw;
    }
    .index_menu a::before {
      left: 5.26vw;
      top: 5.26vw;
      width: calc(100% - 10.52vw);
      height: calc(100% - 10.52vw);
      background: rgba(255,255,255,0.5);
      border-radius: 15px;
    }
    .index_menu a span {
      background-size: 2.89vw 2.89vw;
      font-size: 5.78vw;
      letter-spacing: 1.2vw;
      padding: 1.66vw 0.8vw 5vw;
      border-bottom: solid 1.33vw #F5B011;
    }
  }

/*トップインスタ*/
#index_insta {
  margin-bottom: 150px;
}
  @media screen and (max-width: 767px) {
    #index_insta {
      margin-bottom: 0;
    }
  }

/*店舗情報*/
#information {
  position: relative;
}
#information::before {
  position: absolute;
  left: -120px;
  top: -140px;
  content: "";
  width: 470px;
  height: 324px;
  background: url("../img/index/fig_nabe.png") center center no-repeat;
  background-size: 470px 324px;
}
.info_box {
  width: 48%;
  background: #fff;
  border-radius: 30px;
  border: solid 3px #806736;
  padding: 3.2%;
}
.info_txt {
  margin-bottom: 18px;
}
.info_txt h3 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 32px;
}
.info_txt dt {
  white-space: nowrap;
}
.info_txt dd {
  padding-right: 20px;
}
.info_map iframe {
  width: 100%;
  height: 365px;
}
  @media screen and (max-width: 767px) {
    #information {
      padding-top: 18.94vw;
    }
    #information::before {
      position: absolute;
      left: -5vw;
      top: 0;
      content: "";
      width: 55.03vw;
      height: 37.85vw;
      background-size: 55.03vw 37.85vw;
    }
    .info_box {
      width: 100%;
      border-radius: 15px;
      border: solid 3px #806736;
      padding: 6vw 5vw;
      margin-bottom: 7vw;
    }
    .info_box:last-child {
      margin-bottom: 0;
    }
    .info_txt {
      margin-bottom: 4vw;
      font-size: 3.68vw;
      line-height: 1.9;
    }
    .info_txt h3 {
      font-size: 4.73vw;
      margin-bottom: 3vw;
    }
    .info_txt dd {
      padding-right: 4vw;
    }
    .info_map iframe {
      width: 100%;
      height: 55vw;
    }
  }

/*----------------------------------------------------
  会社概要 company
--------------------------------------------------- */
#company {
  padding-top: 150px;
}
#company_info {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 100px 50px;
}
#company_info::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 10px;
  background: url("../img/common/border_slash.svg") center top repeat-x;
  background-size: 59px 10px;
}
#company_info::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 10px;
  background: url("../img/common/border_slash.svg") center bottom repeat-x;
  background-size: 59px 10px;
}
#company_info table {
  width: 700px;
  margin: 0 auto 68px;
}
#company_info th {
  width: 180px;
  border-bottom: solid 1px #806736;
  font-weight: 400;
  text-align: left;
  padding: 7px 10px;
}
#company_info td {
  border-bottom: solid 1px #806736;
  padding: 7px 10px;
}
  @media screen and (max-width: 767px) {
    #company {
      padding-top: 14.47vw;
    }
    #company_info {
      position: relative;
      max-width: 100%;
      padding: 9.21vw 9.21vw 16vw;
    }
    #company_info::before {
      height: 1.21vw;
      background: url("../img/common/border_slash.svg") center top repeat-x;
      background-size: 6.26vw 1.21vw;
    }
    #company_info::after {
      height: 1.21vw;
      background: url("../img/common/border_slash.svg") center bottom repeat-x;
      background-size: 6.26vw 1.21vw;
    }
    #company_info table,
    #company_info tbody,
    #company_info tr,
    #company_info th,
    #company_info td {
      display: block;
      width: 100%;
    }
    #company_info table {
      margin: 0 auto 10.52vw;
      line-height: 1.6;
    }
    #company_info th {
      border-bottom: none;
      padding: 2.33vw 0 0 0;
    }
    #company_info td {
      padding: 0 0 2.33vw;
    }
    #company_info figure img {
      width: 55.78vw;
      height: auto;
    }
  }

/*----------------------------------------------------
  メニュー menu
--------------------------------------------------- */

/*タブ機能*/
.panel {
  position: relative;
  opacity: 0;
  height: 0;
  z-index: -5;
}
.panel.is-show {
  opacity: 1;
  height: auto;
  z-index: 5;
}
.panel > div {
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}
.panel.is-show > div {
  opacity: 1;
}
  @media screen and (max-width: 767px) {
    .tab-panel {
      padding-bottom: 0;
    }
  }

.menu_lead {
  padding: 60px 0 100px;
  font-size: 2.5rem;
  line-height: 2;
}
#menu_list li {
  position: relative;
  width: 23.5%;
  cursor: pointer;
  padding-bottom: 60px;
}
#menu_list li.resp-tab-active::after {
  position: absolute;
  left: calc(50% - 33px);
  bottom: 0;
  content: "";
  width: 66px;
  height: 44px;
  border-style: solid;
  border-width: 0 33px 44px 33px;
  border-color: transparent transparent #ffffff transparent;
}
#menu_list li img {
  width: 100%;
  height: auto;
}
#menu_list li img:hover {
  opacity: 0.7;
}
.panel-group {
  border-radius: 20px;
  background: #fff;
  padding: 60px 4%;
}
.menu_box li {
  width: 49.3%;
  padding: 0 13px;
  margin-bottom: 50px;
}
.menu_box li img {
  width: 100%;
  height: auto;
  float: none!important;
}
  @media screen and (max-width: 767px) {
    .menu_lead {
      padding: 7vw 0 10.33vw;
      font-size: 3.68vw;
      line-height: 1.8;
      text-align: left;
    }
    #menu_list {
      position: relative;
      padding-bottom: 5vw;
    }
    #menu_list li {
      position: static;
      width: 100%;
      padding-bottom: 2.66vw;
    }
    #menu_list li.resp-tab-active::after {
      display: none;
    }
    .panel-group {
      position: relative;
      border-radius: 10px;
      padding: 4.4vw;
      margin: 8vw 0;
    }
    .panel-group::after {
      position: absolute;
      top: -5vw;
      content: "";
      border-style: solid;
      border-color: transparent transparent #ffffff transparent;
      left: calc(50% - 3.8vw);
      width: 7.6vw;
      height: 5vw;
      border-width: 0 3.8vw 5vw 3.8vw;
    }
    .panel-group:last-child {
      margin-bottom: 0;
    }
    .menu_box li {
      width: 100%;
      padding: 0;
      margin-bottom: 4.4vw;
    }
  }


.resp-accordion {
  cursor: pointer;
  display: none;
}
.resp-tab-content {
  display: none;
}
.resp-content-active, .resp-accordion-active {
  display: block;
}

/*-----------Accordion styles-----------*/
.resp-easy-accordion  h2.resp-accordion {
  display: block;
}
.resp-jfit {
  width: 100%;
  margin: 0px;
}
.resp-tab-content-active {
  display: block;
}
  @media screen and (max-width: 767px) {
    .resp-tabs-list {
      display: none;
    }
    .resp-accordion {
      display: block;
      margin-bottom: 2.66vw;
    }
    .resp-vtabs .resp-tabs-container {
      border: none;
      float: none;
      width: 100%;
      min-height: initial;
      clear: none;
    }
    .resp-accordion-closed {
      display:none !important;
    }
  }

/*----------------------------------------------------
  お知らせ news
--------------------------------------------------- */
#main {
  width: 68.5%;
}
#side {
  width: 26%;
}
.side_menu {
  padding-bottom: 40px;
}
.side_menu:last-child {
  padding-bottom: 0;
}
.side_menu h3 {
  font-size: 1.6rem;
  padding: 0 10px 5px;
  margin-bottom: 5px;
  border-bottom: solid 3px #806736;
}
.side_menu li {
  padding: 0 10px 2px;
}
.side_menu li a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 1.6rem;
  padding-right: 12px;
  background: url("../img/common/ico/ico_arrow03.svg") right center no-repeat;
  background-size: 4px 7px;
}
.side_menu li a:hover {
  color: #806736;
  text-decoration: underline;
}
  @media screen and (max-width: 900px) {
    .news_wrap {
      -webkit-display: block;
      -moz-display: block;
      -ms-display: block;
      -o-display: block;
      display: block;
    }
    #main {
      width: 100%;
      padding-bottom: 40px;
    }
    #side {
      width: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    #main {
      padding-bottom: 13.33vw;
    }
    #side {
      width: 100%;
    }
    .side_menu {
      padding-bottom: 10.66vw;
    }
    .side_menu h3 {
      font-size: 4vw;
      padding: 0 2.66vw 1.33vw;
      margin-bottom: 2.66vw;
    }
    .side_menu li {
      padding: 0 2.66vw 1.33vw;
    }
    .side_menu li a {
      font-size: 3.46vw;
      padding-right: 3vw;
      background-size: 1.33vw auto;
    }
  }

#news {
  padding-top: 100px;
}
  @media screen and (max-width: 767px) {
    #news {
      padding-top: 15.26vw
    }
  }

/*一覧*/
.news_archive_box {
  background: #fff;
  border-radius: 20px;
  padding: 70px 7%;
}
.news_archive_box ul {
  padding-bottom: 5px;
}
.news_archive_box li {
  margin-bottom: 25px;
}
.news_archive_box li:last-child {
  margin-bottom: 0;
}
.news_archive_box li a {
  color: #333;
  text-decoration: none;
  line-height: 1.3;
}
.news_archive_box li a:hover {
  color: #806736;
}
.news_archive_box li a:hover h3 {
  text-decoration: underline;
}
.news_archive_box li time {
  display: inline-block;
  width: 162px;
  white-space: normal;
  padding-right: 5px;
}
.news_archive_box .cat_box {
  width: 13.5%;
  min-width: 105px;
  font-size: 1.6rem;
}
.news_archive_box li h3 {
  font-weight: 400;
  width: 65%;
  line-height: 1.3;
}
  @media screen and (max-width: 1380px) {
    .news_archive_box {
      font-size: 1.8rem;
    }
  }
  @media screen and (max-width: 767px) {
    .news_archive_box {
      font-size: 3.68vw;
      border-radius: 10px;
      padding: 8vw 7vw;
    }
    .news_archive_box ul {
      padding-bottom: 0;
    }
    .news_archive_box li {
      margin-bottom: 5.33vw;
    }
    .news_archive_box li time {
      width: auto;
      padding-right: 0;
      margin-right: 3vw;
      font-size: 3.15vw;
    }
    .cat_box span {
      min-width: 14vw;
      padding: 0.33vw;
      line-height: 1.4;
      text-align: center;
    }
    .news_archive_box li h3 {
      margin-top: 1.2vw;
      width: 100%;
    }
  }

/*詳細*/
.news_single_box {
  background: #fff;
  border-radius: 20px;
  padding: 55px 7%;
}
.single_info {
  margin-bottom: 12px;
}
.single_info time {
  display: inline-block;
}
.single_info .cat_box {
  display: inline-block;
  margin-left: 15px;
}
.single_ttl {
  font-size: 3rem;
  margin-bottom: 32px;
}
  @media screen and (max-width: 767px) {
    .news_single_box {
      font-size: 3.68vw;
      border-radius: 10px;
      padding: 8vw 7vw;
    }
    .single_info {
      margin-bottom: 12px;
    }
    .single_info time {
      font-size: 3.15vw;
      vertical-align: middle;
    }
    .single_info .cat_box {
      margin-left: 2.13vw;
      vertical-align: middle;
    }
    .single_ttl {
      font-size: 4.21vw;
      margin-bottom: 5vw;
    }
  }

/*----------------------------------------------------
  共通WP
--------------------------------------------------- */
/* img */
.aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.alignright { float: right; }
.alignleft { float: left; }
img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}

/*投稿詳細用*/
.entry-content {
  font-size: 1.8rem;
}
.entry-content:after {
  content: ""; 
  display: block; 
  clear: both;
}
  @media screen and (max-width: 767px) {
    .entry-content {
      font-size: 3.68vw;
    }
  }

.entry-content h1 {
  font-size: 2.4rem;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: solid 3px #806736;
}
  @media screen and (max-width: 767px) {
    .entry-content h1 {
      font-size: 4.21vw;
      padding-bottom: 2vw;
      margin-bottom: 3vw;
    }
  }

.entry-content h2 {
  font-size: 2.2rem;
  padding: 10px 15px;
  background: #806736;
  color: #fff;
  margin-bottom: 20px;
}
  @media screen and (max-width: 767px) {
    .entry-content h2 {
      font-size: 4.21vw;
      padding: 2vw 3vw;
      margin-bottom: 3vw;
    }
  }

.entry-content h3 {
  color: #602A06;
  font-size: 2.2rem;
  margin-bottom: 12px;
}
  @media screen and (max-width: 767px) {
    .entry-content h3 {
      font-size: 4vw;
      margin-bottom: 3vw;
    }
  }

.entry-content h4 {
  font-size: 2.1rem;
  margin-bottom: 15px;
}
  @media screen and (max-width: 767px) {
    .entry-content h4 {
      font-size: 3.8vw;
      margin-bottom: 3vw;
    }
  }

.entry-content h5 {
  font-size: 2rem;
  margin-bottom: 15px;
}
  @media screen and (max-width: 767px) {
    .entry-content h5 {
      font-size: 3.8vw;
      margin-bottom: 3vw;
    }
  }

.entry-content h6 {
  font-size: 1.9rem;
  margin-bottom: 15px;
}
  @media screen and (max-width: 767px) {
    .entry-content h6 {
      font-size: 3.8vw;
      margin-bottom: 3vw;
    }
  }

.entry-content p {
  margin-bottom:30px;
}
  @media screen and (max-width: 767px) {
    .entry-content p {
      margin-bottom: 6vw;
    }
  }

.entry-content img {
  margin-bottom:30px;
}
  @media screen and (max-width: 767px) {
    .entry-content img {
      margin-bottom: 6vw;
    }
  }

.entry-content ul {
  margin-bottom: 30px;
  padding-left: 20px;
}
.entry-content ul li {
  list-style-type: disc;
}
.entry-content ul li ul {
  margin-bottom: 10px;
  font-size: 93%;
}
.entry-content ul li ul li {
  list-style-type:circle;
}
  @media screen and (max-width: 767px) {
    .entry-content ul {
      margin-bottom: 5vw;
      padding-left: 5.4vw;
    }
    .entry-content ul li ul {
      margin-bottom: 2vw;
    }
  }

.entry-content ol {
  counter-reset: section;
  margin-bottom: 30px;
}
.entry-content ol li {
  list-style: none;
}
.entry-content ol > li:before {
  content : counters(section, '-') '. ';
  counter-increment : section;
}
.entry-content ol li ol {
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 93%;
}
  @media screen and (max-width: 767px) {
    .entry-content ol {
      margin-bottom: 5vw;
    }
    .entry-content ol li ol {
      padding-left: 5.4vw;
      margin-bottom: 2vw;
    }
  }

.entry-content table {
  width:100%;
  margin:0 0 35px 0;
}
.entry-content th {
  text-align: left;
  padding:7px 10px;
  border:solid 1px #eee;
}
.entry-content td {
  padding:7px 10px;
  border:solid 1px #eee;
}
  @media screen and (max-width: 767px) {
    .entry-content table {
      margin:0 0 6vw 0;
      font-size: 93%;
    }
    .entry-content th {
      padding:2vw;
    }
    .entry-content td {
      padding:2vw;
    }
  }

.entry-content table img {
  margin-bottom: 0;
}

.entry-content blockquote {
  position: relative;
  border: solid 4px #d7d7d7;
  padding: 20px 20px 20px 55px;
  margin-bottom: 35px;
}
.entry-content blockquote::before {
  position: absolute;
  left: 18px;
  top: 20px;
  content: "“";
  line-height: 1;
  font-size: 6rem;
  color: #d7d7d7;
}
  @media screen and (max-width: 767px) {
    .entry-content blockquote {
      border: solid 3px #d7d7d7;
      padding: 4vw 3.33vw 4vw 9.33vw;
      margin-bottom: 6vw;
    }
    .entry-content blockquote::before {
      left: 2vw;
      top: 4vw;
      font-size: 12.33vw;
    }
  }

.entry-content u {
  text-decoration: underline;
}

.entry-content .wp-caption {
  width: 100%!important;
}
.entry-content .wp-caption img {
  margin-bottom: 5px;
}
.entry-content .wp-caption p {
  font-size: 90%;
  color: #757575;
  font-style: italic;
}

/*ページ分割ナビ*/
.wp-pagenavi {
  padding: 50px 0 0 0;
  text-align: center;
  overflow: hidden;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  width: 42px;
  line-height: 40px;
  background: #fff;
  border: 1px solid #282653;
  color: #282653;
  margin: 0 3px 10px 3px;
  text-decoration: none;
  font-size: 1.8rem;
}
.wp-pagenavi span {
  background: #282653;
  color: #fff;
}
.wp-pagenavi a:hover {
  background: #282653;
  color: #fff;
  border: 1px solid #282653;
}
.wp-pagenavi .first, .wp-pagenavi .last {
  line-height: 1;
  width: auto;
  border: none;
  background: none;
}
.wp-pagenavi .first:hover, .wp-pagenavi .last:hover {
  border: none;
  color: #333;
  background: none;
  text-decoration: underline;
}
.wp-pagenavi .extend {
  line-height: 1;
  width: auto;
  border: none;
  color: #333;
  background: none;
}
  @media screen and (max-width: 767px) {
    .wp-pagenavi {
      padding: 8vw 0 0 0;
    }
    .wp-pagenavi a, .wp-pagenavi span {
      width: 7vw;
      line-height: 7vw;
      margin: 0 0.5vw 2vw;
      font-size: 3.73vw;
    }
  }

/*記事詳細ナビ*/
.wp-detailnavi {
  position: relative;
  margin-top: 30px;
  text-align: center;
  height: 30px;
}
.wp-detailnavi a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-size: 1.6rem;
}
.wp-detailnavi a:hover {
  text-decoration: underline;
  color: #806736;
}
.prev_link {
  position: absolute;
  left: 12%;
  bottom: 0;
}
.next_link {
  position: absolute;
  right: 12%;
  bottom: 0;
}
.prev_link a {
  background: url("../img/common/ico/ico_prev.svg") left center no-repeat;
  background-size: 7px 12px;
  padding-left: 12px;
}
.next_link a {
  background: url("../img/common/ico/ico_next.svg") right center no-repeat;
  background-size: 7px 12px;
  padding-right: 12px;
}
  @media screen and (max-width: 767px) {
    .wp-detailnavi {
      margin-top: 7vw;
      height: 7vw;
    }
    .wp-detailnavi a {
      font-size: 3.15vw;
    }
    .prev_link {
      left: 2vw;
    }
    .next_link {
      right: 2vw;
    }
    .prev_link a {
      background-size: 1.66vw auto;
      padding-left: 3vw;
    }
    .next_link a {
      background-size: 1.66vw auto;
      padding-right: 3vw;
    }
  }
