/* ============== ヘッダー ============== */
body{
  background: #fff;
  font-size: 16px;
}
img {
  width: 100%;
}
.site-logo img{
  height: 40px;
  width: auto;
  margin-top: 3px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .site-logo img{
    margin-top: 2px;
  }
}
.gnav__menu {
  display: flex;
}
.gnav__menu__item{
  margin: 10px 22px;
  text-align: center;
}
.gnav__menu__item a{
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #5f1e05;
}
.gnav__menu__item a .big {
  font-size: 24px;
}
.gnav__menu__item a .big2 {
  font-size: 32px;
  padding: 6px 0;
}
.gnav__menu__item a .gnav-sub {
  color: #dfdfdf;
  font-size: 12px;
}
.gnav__menu__item a:hover {
  color: #a28443;
  text-decoration: none;
}
.content{
    line-height: 1.6;
    margin: 0 auto;
    padding-top: 100px;
    width: 800px;
}
.content p{
    margin-bottom: 40px;
}
/* -------------- 下にスクロールで消えて上にスクロールで固定表示 -------------- */
.pc-header{
    background: rgba(255, 255, 255, .5);
    display: flex;
    justify-content: center;
    padding: 4px 20px;
    position: fixed;
    top: 0;
    transition: .5s;
    width: 100%;
    z-index: 9;
}
.pc-header.hide{
    top: -80px;
}
.site-header{
  background: rgba(255, 255, 255, .8);
  display: flex;
  padding: 6px 20px;
  position: absolute;
  justify-content: center;
  width: 100%;
  z-index: 99999;
}
.site-header.fixed{
    position: fixed;
    top: 0;
}
/* -------------- ハンバーガーメニューヘッダー -------------- */

.sp-header {
  background: rgba(255, 255, 255, .8);
  display: flex;
  padding: 6px 20px;
  position: fixed;
  justify-content: space-between;
  width: 100%;
  z-index: 99999;
  transition: .5s;
}
.header__inner {
  margin: 0;
  padding: 11px 15px;
  width: 100%;
}
.sp-header li {
  list-style-type: none;
  margin-top: 30px;
}
.sp-header a {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #717171;
}
.sp-header a:hover {
  text-decoration: none;
  color: #c9b386;
}
.sp-header a .gnav-sub {
  color: #c9b386c9;
  font-size: 12px;
}
.sideMenu {
  background-color: #fff;
  height: 100%;
  overflow-y: auto;
  padding: 60px 15px;
  position: fixed;
  right: -220px;
  transition: all 0.6s;
  top: 0;
  width: 220px;
  z-index: 200;
  text-align: center;
}

.hamburger {
  cursor: pointer;
  height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  z-index: 300;
}
.hamburger span {
  background-color: #717171;
  height: 3px;
  left: 11px;
  position: absolute;
  transition: all 0.6s;
  width: 30px;
}
.hamburger__lineTop {
  top: 20px;
}
.hamburger__lineCenter {
  top: 29px;
}
.hamburger__lineBottom {
  top: 38px;
}
.overlay {
  background-color: #000;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 100;
}
/* メニューが開いた時のCSS */
.nav-open .sideMenu {
  background-color: #fff;
  right: 0;
}
.nav-open .hamburger__lineTop {
  top: 26px;
  transform: rotate(45deg);
  background: #717171;
}
.nav-open .hamburger__lineCenter {
  left: 50%;
  width: 0;
}
.nav-open .hamburger__lineBottom {
  top: 26px;
  transform: rotate(-45deg);
  background: #717171;
}
.nav-open .overlay {
  opacity: 0.8;
  visibility: visible;
}
.pcnavi-cart {
  
}
.pcnavi-cart a {
  
}
.pcnavi-cart a:hover {
  
}
.spnavi-cart {
  margin-right: 60px;
  margin-top: 7px;
  width: 20px;
  height: 40px;
  position: relative;
  border-radius: 6px;
  position: relative;
}
.spnavi-cart a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #717171;
}
.spnavi-cart a:hover {
  color: #c9b386;
}

/* --------- カートボタン --------- */
@media screen and (max-width: 767px) {
  .incart-btn {
    width: 100%;
    margin-top: 20px;
    float: right;
    margin-left: 10px;
  }
  .incart-btn a {
    text-align: center;
    -webkit-transition: .3s ease all;
    -moz-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
    border-bottom: unset !important;
  }
  .incart-btn i:before {
    color: #717171;
    margin-right: 8px;
  }
  .incart-btn span {
    display: inline-block;
    color: #717171;
    font-size: 16px;
    font-weight: bold;
    vertical-align: middle;
    letter-spacing: 1px;
  }
  .incart-btn span {
    display: unset !important;
  }
  .incart-btn .total-quant {
    top: 3px !important;
    left: 16px !important;
  }
}
/* ============== フッター ============== */
.footer-area {
  border-top: solid 3px #999;
  padding-top: 40px;
  text-align: center;
  background: #fff;
}
.foot-left {
  
}
.foot-left img {
  width: 60%;
  text-align: center;
  margin: 20px auto;
}
.line-box {
  
}
.line-box a {
  
}
.line-box a:hover {
  
}
.line-box a img {
  width: 77%;
}
.foot-right {
  border: solid 2px #575757;
  height: 70%;
  position: relative;
  width: 94%;
  margin: 30px auto;
}
.foot-right .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}
.foot-right h3 {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}
.foot-ctaarea {
  display: flex;
  justify-content: space-around;
}
.foot-ctaarea li {
  
}
.foot-ctaarea li a {
  
}
.foot-ctaarea li a:hover {
  
}
.foot-ctaarea li a img {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .foot-right .info {
    position: unset;
    top: unset;
    left: unset;
    transform: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    width: 100%;
    padding: 30px 15px;
  }
  .foot-right h3 {
    font-size: 15px;
    line-height: 2;
  }
  .foot-ctaarea {
    display: block;
  }
  .foot-ctaarea li {
    margin: 20px 0;
  }
}


.bg-footer {
  width: 100%;
  height: auto;
  background: url(../img/common/footer-bg.jpg) no-repeat center/cover;
  overflow: hidden;
  z-index: -10;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  /* video */
  .bg-footer{
    min-width: 768px;
  }
}
.foot-cvbox {
  background: #fff85;
  padding: 30px;
  border-radius: 16px;
  width: 80%;
  margin: 40px auto;
  padding-top: 12px;
}
.footer-logo {
  width: 300px;
  margin: 0 auto;
}
.footer-logo a:hover {
  opacity: 0.6;
}
.foot-cvinfo {
  
}
.foot-cvtel {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .foot-cvtel {
    margin-bottom: 14px;
  }
}
.foot-cvtel h3 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: dotted 2px;
  padding-bottom: 4px;
}
.foot-cvtel a {
  font-size: 36px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 8px;
  text-shadow: 0 0 12px #575757;
}
.foot-cvmail {
  text-align: center;
}
.foot-cvmail h3 {
  font-size: 18px;
  margin-bottom: 28px;
  border-bottom: dotted 2px;
  padding-bottom: 4px;
}
.foot-cvmail a {
  font-size: 20px;
  font-weight: bold;
  padding: 8px 60px;
  border-radius: 6px;
  background: #1d91ba;
  box-shadow: 2px 2px 8px rgb(0 0 0 / 50%);
}
.foot-cvmail a:hover {
  opacity: 0.6;
  color: #ccc;
  background: #717171;
  text-decoration: none;
}
.foot-cvtime {
  text-align: center;
  margin-top: 10px;
  margin-bottom: -10px;
}
.foot-cvtime p {
  text-shadow: 0 0 12px #575757;
}
.foot-cvsns {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.foot-cvsns a {
  font-size: 20px;
  font-weight: bold;
  padding: 0 20px;
  text-shadow: 0 0 12px #fff;
}
.foot-banner {
  
}
.foot-banner img {
  
}
.footer-contact {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .foot-cvbox {
    width: 100%;
  }
  .foot-cvbox {
    padding: 30px 15px;
  }
  .foot-cvsns a {
    font-size: 18px;
  }
  .c-9 {
    color: #009deb !important;
  }
  .foot-cvtel a {
    font-size: 34px;
    color: #fff !important;
    text-decoration: none !important;
  }
  .foot-cvmail a {
    color: #fff !important;
  }
}
.fa-phone-volume {
  font-size: 30px;
}

.btn-shine {
  color: #FFF;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 45px;
  width: 200px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, 0.5);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}
.btn-shine:hover {
  border-color: #FFF;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
  outline-color: transparent;
  outline-offset: 12px;
  text-shadow: 2px 2px 3px #000;
  color: #fff;
  text-decoration: none;
}

.footer-nav {
  width: 75%;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: -30px;
}
.footer-nav ul {
  display: flex;
  justify-content: space-around;
}
.footer-nav ul li {

}
.footer-nav ul li a {
  color: #fff;
}
.footer-nav ul li a:hover {
  text-decoration: none;
  font-weight: bold;
  border-bottom: solid 2px #fff;
}
.copyright {
  background: #5f1e05;
  text-align: center;
}
.copyright p {
  color: #fff;
  font-size: 12px;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.copyright p a {
  color: #fff;
  font-size: 14px;
}
.foot-map {
  margin-bottom: -6px;
}


/* ============== サイト共通調整 ============== */
/*------------- スマホでテキスト改行 ------------*/
@media screen and (min-width: 768px){
.br-sp {display: none; }
}
/*------------- PCでテキスト改行 ------------*/
@media screen and (max-width: 767px){
.br-pc {display: none; }
}
/*------------ PC・SP 表示切替（990） -----------*/
@media screen and (max-width: 990px){
  .pc9 {
    display: none!important;
  }
}
@media screen and (min-width: 990px){
  .sp9 {
    display: none!important;
  }
}
/*------------ PC・SP 表示切替（768） -----------*/
@media screen and (max-width: 767px){
  .pc7 {
    display: none !important;
  }
}
@media screen and (min-width: 768px){
  .sp7 {
    display: none !important;
  }
}
/*------------ PC・SP 表示切替（600） -----------*/
@media screen and (max-width: 600px){
  .pc6 {
    display: none;
  }
}
@media screen and (min-width: 600px){
  .sp6 {
    display: none;
  }
}
/*------------ 余白調整 -----------*/
.top_10 {
  margin-top: 10px;
}
.top_30 {
  margin-top: 30px;
}
.top_50 {
  margin-top: 50px;
}
.top_80 {
  margin-top: 80px;
}
.top_120 {
  margin-top: 120px;
}
.center {
  text-align: center;
  margin: 0 auto;
}
/*------------ テキスト調整 -----------*/
.t-right {
  text-align: right;
}
.t-left {
  text-align: left;
}
.t-center {
  text-align: center;
}
/*------------ 画像角の調整 -----------*/
.r-radius12 {
  border-radius: 12px;
}

/*------------------ Slick Slider ------------------*/
.slider {
  width: 94%;
  margin: 30px auto;
}
.slider img {
  height: auto;
  width: 100%;
}
/*slick setting*/
.slick-prev:before,
.slick-next:before {
    color: #575757 !important;
}
.slick-prev:before {
  content: '◀' !important;
}
.slick-next:before {
  content: '▶' !important;
}
/*------------------ slide logo ------------------*/
.slide img {
  width: 70%;
  padding: 0 10px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .slide img {
    padding: 10px 0;
    width: 80%;
  }
}

/*-----------------------------------------------
サイドバー
-----------------------------------------------*/
.side-search {
  padding: 0 0.714286em;
  margin-bottom: 20px;
}
.side-cate {
  padding: 0 0.714286em;
  margin-bottom: 26px;
}
.side-tag {
  padding: 0 0.714286em;
  margin-bottom: 26px;
}
.widget_title {
  margin-bottom: 8px !important;
}
.category-list {
  
}
.category-list li {
  margin-bottom: 4px;
  margin-left: 8px;
}
.category-list li a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
.category-list li a:hover {
  opacity: .7;
}
.category-list li ul li a {
  color: #999;
}
.tag-list {
  
}
.tag-list li {
  margin-bottom: 4px;
}
.tag-list li a {
  color: #575757;
  text-decoration: none;
}
.tag-list li a:hover {
  opacity: .7;
}

/*-----------------------------------------------
トップページ各コンテンツ
-----------------------------------------------*/
.item {
  width: 100vw;
  margin: 0 5px;
}
.item img {
  width: 100%;
  height: auto;
}
#js-slide__nav {
  text-align: center;
}
#js-slide__nav__inner {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .item {
    width: 230vw;
  }
}
/*------------------ メインタイトル ------------------*/
.top_maintitle {
  position: relative;
}
.top_maintitle h2 {
  position: relative;
  text-align: center;
  font-size: 22px;
  padding-bottom: 12px;
  color: #575757;
  z-index: 1;
}
.top_maintitle h2 span {
  font-size: 14px;
  display: block;
  color: #717171;
  padding-bottom: 5px;
}
.top_maintitle p {
  position: absolute;
  top: 0;
  font-size: 100px !important;
  font-weight: bold;
  color: rgba(255, 193, 7, .08);
}
@media screen and (max-width: 767px) {
  .top_maintitle p {
    font-size: 40px !important;
  }
}
/*------------------ スクロール誘導 ------------------*/
.scroll {
  padding-top: 150px;
}
.scroll a {
  position: absolute;
  bottom: 0;
  left: 46%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
  padding-top: 60px;
  text-align: center;
  right: 48%;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}
.scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
.scroll a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*------------------ トップ動画 ------------------*/
.top {
  position: relative;
  overflow: hidden;
}
.top_kv{
  position: relative;
}
.hero {
  position: relative;
  height: 93vh;
}
.hero video {
  height: 93vh;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .hero {
    height: unset;
    padding-top: 64px;
  }
  .hero video {
    height: 50vh;
  }
}
.gnav__menu{
    display: flex;
}
.gnav__menu__item{
    margin-left: 20px;
}
.top_kv .top_musk {
  
}
.top_kv video {
  position: relative;
  top: 0;
  width: 100%;
}
.top_kv .top_copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(255, 255, 255, .4);
  width: 100%;
  height: 100%;
}
.top_kv .top_copy .top_center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}
.top_kv .top_copy .top_center img {
  width: 300px;
}
.top_kv .top_copy .main-copy{
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
  text-shadow: 0 0 6px #495057;
}
.top_kv .top_copy .sub-copy{
  color: #fff;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  line-height: 36px;
  text-shadow: 0 0 6px #495057;
}
@media screen and (min-width: 768px) {
  /* kv */
  .top_kv{
    min-width: 768px;
  }
  .top_kv .main-copy{
    font-size: 46px;
    margin-bottom: 20px;
  }
  .top_kv .sub-copy{
    font-size: 30px;
  }
  /* video */
  .top_mov{
    min-width: 768px;
  }
}
@media screen and (max-width: 1150px) {
  .top_kv .top_copy img {
    width: 160px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .top_kv .top_copy img {
    width: 240px;
    margin-top: 70px;
    margin-bottom: 20px;
  }
  .top_kv .top_copy .main-copy {
    font-size: 30px;
    line-height: 46px;
  }
  .top_kv .top_copy .sub-copy {
    font-size: 18px;
  }
  .footer-contact {
    margin-top: 22px;
    margin-bottom: 0;
  }
}

/*------------------ top_openセクション ------------------*/
.open-title {
  text-align: center;
  margin-bottom: 20px;
}
.open-title h3 {
  font-size: 77px;
    font-weight: bold;
    font-family: fantasy;
    transform: scaleX(2);
    letter-spacing: 2px;
  display: inline-block;
  background: linear-gradient(45deg, #05bcfe 13%, #9ddd58 50%, #ffcd05 75%, #ff0dd7 90%);
  background: -webkit-linear-gradient(45deg, #05bcfe 13%, #9ddd58 50%, #ffcd05 75%, #ff0dd7 90%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientEffect 2.5s infinite alternate;
  }
@keyframes gradientEffect {
from {background-position: left}
to {background-position: right}
}
@media screen and (max-width: 767px) {
  .open-title h3 {
    font-size: 54px;
  }
}

/*------------------ slide-areaセクション ------------------*/
.slide-area {
  margin-top: 60px;
  margin-bottom: 60px;
}
.img-slide {
  
}
.img-slide li {
  
}
.img-slide li img {
  
}
@media screen and (max-width: 767px) {
  .slide-area {
    margin-top: 10px;
  }
}

.top-title {
  font-size: 34px;
  font-family: impact;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
  transform: scaleX(1.2);
}
@media screen and (max-width: 767px) {
  .top-title {
    transform: scaleX(1);
  }
}
/*------------------ .top_aboutセクション ------------------*/
.top_about {
  margin-top: 60px;
}
.top_about img {
  
}
.top_about h3 {
  font-size: 30px;
  font-family: impact;
  margin-bottom: 16px;
  color: #000;
  text-align: center;
  transform: scaleX(1.2);
  line-height: 1;
  margin-top: 12px;
}
.top_about h3 span1 {
  color: #05bcfe;
}
.top_about h3 span2 {
  color: #9ddd58;
}
.top_about h3 span3 {
  color: #ffcd05;
}
.top_about h3 span4 {
  color: #ff0dd7;
}
.top_about p {
  line-height: 2;
  letter-spacing: 1px;
}
.about-area {
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .top_about h3 {
    transform: scaleX(1);
  }
  .about-area {
    padding: 10px 0;
  }
}

/*------------------ top_dreamセクション ------------------*/
.top_dream {
  margin-top: 100px;
}
.dream-flex {
  display: flex;
}
.dream-p1 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  background: #05bcfe;
  color: #fff;
  line-height: 1.6;
  padding: 60px 0;
  margin-bottom: 10px;
}
.dream-p2 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  background: #05bcfe;
  color: #fff;
  line-height: 1.6;
  padding: 20px 0;
  margin-top: 10px;
}
.dream-img1 {
  width: 35%;
  height: 200px;
  object-fit: cover;
  padding-right: 5px;
}
.dream-img2 {
  width: 65%;
  height: 200px;
  object-fit: cover;
  padding-left: 5px;
}
.dream-img3 {
  width: 65%;
  height: 280px;
  object-fit: cover;
  padding-right: 5px;
}
.dream-img4 {
  width: 35%;
  height: 280px;
  object-fit: cover;
  padding-left: 5px;
}
@media screen and (max-width: 767px) {
  .top_dream {
    margin-top: 60px;
  }
  .top_dream h3 {
    transform: scaleX(1);
  }
  .dream-p2 {
    padding: 20px 6px;
  }
}
.level-area {
  
}
.level-area h4 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 12px;
  font-family: sans-serif;
  color: #000;
}
.level-area p {
  line-height: 2;
}

/*------------------ top_featureセクション ------------------*/
.top_feature {
  margin-top: 100px;
  margin-bottom: 120px;
}
.feature-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.feature-flex li {
  width: 33%;
}
.feature-box {
  padding: 0 35px;
  padding-top: 10%;
  min-height: 320px;
}
.feature-box h3 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: sans-serif;
  color: #000;
}
.feature-box p {
  line-height: 2;
  color: #000;
}
.c-1 {
  background: #9ddd58;
}
.c-2 {
  background: #ffcd05;
}
.c-3 {
  background: #ff0dd7;
}
@media screen and (max-width: 767px) {
  .top_feature {
    margin-top: 60px;
  }
  .feature-flex {
    flex-wrap: wrap;
  }
  .feature-flex li {
    width: 100%;
  }
}
.feature-space1 {
  
}
.feature-space1 p {
  line-height: 1.6;
}
.feature-space1 h6 {
  text-align: right;
}
.feature-space2 {
  
}
.feature-space2 p {
  line-height: 1.6;
  text-align: right;
}
.feature-spaceflex {
  display: flex;
  margin: 10px 0;
}
.feature-spaceflex li {
  margin-left: 24px;
  list-style: disc;
}
@media screen and (max-width: 767px) {
  .feature-spaceflex {
    display: block;
  }
  .feature-spaceflex li {
    margin-bottom: 6px;
  }
  .feature-space1 h6 {
    font-size: 15px;
    margin-top: 6px;
  }
  .feature-space2 p {
    text-align: left;
  }
}

/*------------------ top_conceptセクション ------------------*/
.top_concept {
}
.concept-box {
  padding: 80px 0;
  text-align: center;
}
.concept-box h3 {
  position: relative;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.6;
}
.concept-box h3 span {
  display: block;
  margin-bottom: 8px;
  color: #5f1e05;
}
.concept-box p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .concept-box h3 {
    font-size: 23px;
  }
  .concept-box {
    margin-bottom: 60px;
  }
  .concept-box p {
    letter-spacing: -1px;
    margin-bottom: 8px;
    font-size: 15px;
  }
}
/*------------------ top_itemセクション ------------------*/
.top_item {
  margin-top: 160px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top_item {
    margin-top: 100px;
  }
}
.top-title0 {
  margin-top: 20px;
  text-align: center;
}
.top-title0 h3 {
  font-size: 24px;
  color: #5f1e05;
  position: relative;
  padding: 6px 10px;
}
.top-title0 h3 span {
  display: block;
  color: #717171;
  margin-bottom: 10px;
  font-size: 12px;
}
.top-title {
  margin-top: 20px;
  text-align: center;
  border-bottom: solid 1px #dee2e6;
}
.top-title h3 {
  font-size: 24px;
  color: #5f1e05;
  position: relative;
  padding: 6px 10px;
}
.top-title h3 span {
  display: block;
  color: #5f1e05;
  margin-bottom: 10px;
  font-size: 12px;
}
.top_itemlistbox {
  text-align: center;
  height: 100%;
  padding: 10px;
}
.top_itemlistbox img {
  height: 200px;
  width: auto;
  padding: 15px;
}
.top_itemlistbox img:hover {
  opacity: .8;
}
.top_itemlistbox a:hover {
  text-decoration: none;
}
.top_itemlistbox a h3 {
  color: #717171;
  font-size: 14px;
  letter-spacing: 0;
}
.top_itemlistbox a h3:hover {
  color: #a28443;
  text-decoration: none;
}
.top_itemlistbox p {
  margin: 8px 16px;
  font-size: 12px;
  letter-spacing: 0;
}
.item-box1 {
  padding-bottom: 10px;
}
.item-box1 img {
  width: 100%;
  height: auto;
}
.item-box1 h3 {
  font-size: 13px;
  font-weight: bold;
  margin: 14px 16px;
  color: #999;
  height: 80px;
  line-height: 1.6;
}
.item-box1 h3:hover {
  color: #a28443;
}
.item-box1 p {
  text-align: right;
  margin: 8px 16px;
  color: #fff;
}
.item-bannerlist {
  margin: 50px 0;
}
.item-bannerlist li {
  margin: 0 12px;
  margin-bottom: 12px;
}
.item-bannerlist li a {
  
}
.item-bannerlist li a:hover {
  text-decoration: none;
  opacity: .7;
}
.item-bannerlist li a img {
  
}

/*------------------ top_conceptセクション ------------------*/
.conceptarea {
  text-align: center;
}
.conceptarea h3 {
  font-size: 32px;
  font-weight: bold;
  color: #5f1e05;
  margin-bottom: 20px;
}
.conceptarea p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .conceptarea h3 {
    font-size: 26px;
  }
}

/*------------------ top_searchセクション ------------------*/
.top_search2 {
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: -10;
  padding-top: 80px;
  padding-bottom: 120px;
}
.top_search {
  width: 100%;
  height: auto;
  background: url(../img/index/search-bg.jpg) no-repeat center/cover;
  overflow: hidden;
  z-index: -10;
  padding: 120px 0;
}
.search-area {
  background: rgba(255, 255, 255, .6);
  padding: 80px 0;
}
.search_boxlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.search_boxlist li {
  width: 16%;
  margin-bottom: 40px;
}
.search_boxlist2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.search_boxlist2 .top_itemlistbox {
  width: 20%;
  margin-bottom: 30px;
}
.search_boxlist3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.search_boxlist3 .top_itemlistbox {
  width: 25%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .search_boxlist li {
    width: 50%;
  }
  .search_boxlist2 .top_itemlistbox {
    width: 50%;
  }
  .search_boxlist3 .top_itemlistbox {
    width: 50%;
    margin-bottom: 30px;
  }
}

.category-sort {
  display: flex;
  margin-bottom: 50px;
  border-bottom: dashed 1px #dee2e6;
  padding-bottom: 6px;
}
.category-sort h3 {
  font-size: 16px;
  margin-right: 12px;
  color: #5f1e05;
}
.category-sort .sort-list {
  display: flex;
  margin-top: -3px;
}
.sort-list li {
  margin: 0 12px;
}
.sort-list li a {
  color: #999;
  font-size: 14px;
}
.sort-list li a:hover {
  color: #a28443;
}
.category-spsort {
  margin-bottom: 50px;
  border-bottom: dashed 1px #dee2e6;
  padding-bottom: 6px;
  text-align: center;
}
.category-spsort h3 {
  font-size: 16px;
  margin-right: 12px;
}
.category-spsort select {
  margin-top: -11px;
  border: unset;
  font-size: 14px;
  color: #999;
}
.category-spsort select option[selected] {
  background-color: #fff !important;
  background: #fff !important;
}
.sort-title {
  background: #f8f9fa;
  padding: 8px 16px;
}
.sort-title a {
  
}
.sort-title a:hover {
  color: #a28443;
}
.sort-title a h3 {
  border-bottom: solid 1px;
  display: inline-block;
}

.search_box {
  text-align: center;
  padding: 10px;
}
.search_box a {
}
.search_box a:hover {
  text-decoration: none;
  opacity: .7;
}
.search_box a img {
  width: 30%;
  margin-bottom: 20px;
}
.search_box a h3 {
  font-size: 14px;
  color: #717171;
  letter-spacing: 1px;
}
.search-engine {
  text-align: center;
  margin-top: 40px;
}
.search-engine input[type="submit"] {
  background-color: #7f1e34;
  padding: 10px 40px;
  color: #fff;
  font-family: 'Font Awesome 5 Free';
}
.guide-title {
  text-align: center;
}
.guide-title h3 {
  font-size: 20px;
  position: relative;
  border-bottom: solid;
  padding-bottom: 12px;
}
.guide-title h3 span {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}
.guide-box {
  
}
.guide-box h3 {
  background: #717171;
  padding: 8px 12px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}
.guide-box p {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.guide-box img {
  
}


/*------------------ top_conceptセクション ------------------*/
.top_commit {
}
.top_commit img {
  max-width: 1000px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-right: 0;
  margin-left: auto;
  display: block;
}
.commit-box {
  padding: 80px 0;
  text-align: center;
}
.commit-box h3 {
  position: relative;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.6;
}
.commit-box h3 span {
  display: block;
  margin-bottom: 8px;
  color: #5f1e05;
}
.commit-box p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .commit-box h3 {
    font-size: 24px;
  }
  .commit-box {
    margin-bottom: 60px;
  }
  .commit-box p {
    font-size: 15px;
  }
}



/*------------------ 下層ヘッダー ------------------*/
.entry-header {
  position: relative;
}
.entry-header img {

}
.entry-header2 {
  position: relative;
  height: 360px;
  margin-top: 120px;
  margin-bottom: 60px;
}
.entry-header2 img {
  height: 100%;
  object-fit: cover;
}
.entry-header h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #717171;
  font-size: 26px;
  font-weight: normal;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .entry-header {
    padding-top: 64px;
  }
  .entry-header img {
    height: 240px;
    object-fit: cover;
  }
  .entry-header h2 {
    font-size: 28px;
    width: 90%;
    text-align: center;
  }
  .entry-header2 {
    margin-top: 0px;
    margin-bottom: -20px;
  }
  .entry-header2 img {
    padding-top: 60px;
  }
}
/*------------------ 投稿ページ（次、前の記事） ------------------*/
.prev_next {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.prev_next .prev {

}
.prev_next .next {

}
/*-----------------------------------------------
下層コンテンツ
-----------------------------------------------*/
.site-content {
  margin-top: 50px;
}
@media only screen and (max-width:767px) {
  .site-content {
    margin-top: 80px;
  }
}

.lower {
  margin-top: 60px;
  margin-bottom: 100px;
}
/*------------------ 見出し------------------*/
.lower h2 {
  font-size: 26px;
  position: relative;
  padding: 15px 0;
  text-align: center;
  color: #999;
  margin-bottom: 30px;
  font-weight: bold;
}
.lower h2 span {
  font-size: 16px;
  display: block;
  padding-top: 12px;
  margin-bottom: 8px;
  color: #932d43;
}
.lower h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 20px);
  width: 40px;
  height: 4px;
  content: '';
  border-radius: 3px;
  background: #999;
}
.lower2 h2 {
  font-size: 30px;
  font-size: 3rem;
  position: relative;
  padding: 15px 0;
  text-align: center;
  color: #575757;
  margin-bottom: 30px;
}
.lower2 h2 span {
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
  padding-top: 8px;
  color: #6c757d;
}
.lower2 h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #008f42;
}


/*-----------------------------------------------
FACILITY
-----------------------------------------------*/
.facility-area {
  
}
.facility-area p {
  text-align: center;
  line-height: 2;
}
.facility-lead {
  text-align: center;
  margin-bottom: 15px;
}
.facility-lead h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 15px;
  color: #000;
}
.facility-lead h3 span {
  display: block;
  font-size: 18px;
}
.facility-lead h4 {
  font-weight: bold;
  color: #000;
  line-height: 1.6;
}
.facility-lead p {
  text-align: center;
  line-height: 2;
}
.facility-space {
  
}
.facility-space p {
  line-height: 1.7;
}
.facility-space img {
  width: 100px;
}
.facility-box1 {
  text-align: center;
}
.facility-box1 img {
  width: 180px;
}
.facility-box1 h4 {
  line-height: 2;
  margin-top: 20px;
}
.facility-box {
  
}
.facility-box img {
  margin-bottom: 4px;
}
.facility-box p {
  text-align: center;
  font-size: 14px;
}
@media only screen and (max-width:767px) {
  .facility-area p {
    text-align: left;
  }
  .facility-lead p {
    text-align: left;
  }
  .facility-box1 h4 {
    text-align: left;
  }
}


/*-----------------------------------------------
COURSE & PRICE
-----------------------------------------------*/
.price-list {
  position: relative;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #0000, #05bcfe40);
  padding-top: 12px;
  padding-bottom: 6px;
  padding-left: 12px;
  padding-right: 12px;
}
.price-list h3 {
  font-size: 38px;
  font-family: fantasy;
  font-style: italic;
  color: #000;
}
.price-list h3 span {
  font-size: 16px;
  margin-left: 20px;
  font-family: sans-serif;
}
.price-list h4 {
  position: absolute;
  bottom: 6px;
  right: 20px;
  font-weight: bold;
  color: #000;
}
@media only screen and (max-width:767px) {
  .price-list h3 span {
    display: block;
    margin-top: 6px;
    margin-left: 0px;
  }
  .price-list h4 {
    position: unset;
    text-align: right;
    margin-top: 12px;
  }
}


/*-----------------------------------------------
ACCESS
-----------------------------------------------*/
.map-info {
  margin-bottom: 30px;
}
.map-info .center {
  
}
.map-info .center img {
  width: 40%;
  margin-bottom: 30px;
}
.map-info h3 {
  font-size: 18px;
  font-weight: bold;
}
.map-info h4 {
  line-height: 1.6;
  margin-bottom: 10px;
}
.map-info h5 {
  font-size: 18px;
  font-weight: bold;
  background: #000;
  color: #fff;
  padding: 12px 0;
  border-radius: 8px;
  margin-bottom: 12px;
}
.map-info a i {
  font-size: 54px;
}
.map-info a .fa-phone-volume {
  font-size: 56px;
}
.map-info a {
  font-size: 50px;
  font-weight: bold;
  font-family: fantasy;
  transform: scaleX(1);
  letter-spacing: 2px;
  display: inline-block;
  background: linear-gradient(45deg, #05bcfe 13%, #9ddd58 50%, #ffcd05 75%, #ff0dd7 90%);
  background: -webkit-linear-gradient(45deg, #05bcfe 13%, #9ddd58 50%, #ffcd05 75%, #ff0dd7 90%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientEffect 2.5s infinite alternate;
  line-height: 1;
  }
@keyframes gradientEffect {
from {background-position: left}
to {background-position: right}
}
.map-info a:hover {
  
}
.map-link {
  text-align: right;
  margin-top: 12px;
}
.map-link a {
  padding: 6px 24px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  border: solid 2px;
}
.map-link a:hover {
  text-decoration: none;
  background: #fff;
  color: #000;
}
@media only screen and (max-width:767px) {
  .map-info h5 {
    font-size: 16px;
  }
  .map-info a {
    font-size: 36px;
  }
  .map-info a .fa-phone-volume {
    font-size: 38px;
  }
  .map-info a i {
    font-size: 38px;
  }
}


/*-----------------------------------------------
会社概要
-----------------------------------------------*/
.greeting {
  
}
.greeting h3 {
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 2;
}
.greeting p {
  font-size: 16px;
  line-height: 1.6;
}
@media only screen and (max-width:767px) {
  .img-ceo {
    padding: 20px 100px;
  }
  .greeting p {
    font-size: 15px;
  }
}

/*------------------ 会社概要の表------------------*/
.com-about {
  margin-bottom: 60px;
}
.com-about table {
  border-collapse: collapse;
  width: 100%;
}
.com-about th,td {
  padding: 10px;
  line-height: 26px;
}
.com-about th {
  color: #717171;
  font-weight: normal;
  position: relative;
  z-index: 10;
  text-align: center;
  width: 30%;
  vertical-align: middle;
  font-size: 14px;
  border-bottom: solid 1px #717171;
}
.com-about td {
  padding: 22px 8px;
  vertical-align: middle;
  color: #717171;
  font-size: 14px;
  line-height: 2;
  padding-left: 40px;
}
.com-about tr {
  border-bottom: solid 1px #ccc;
}
@media only screen and (max-width:767px) {
  .com-about tr {
    display: grid;
    margin-bottom: 20px;
    border-bottom: unset;
  }
  .com-about th {
    width: 100%;
    background: #f8f9fa;
  }
  .com-about td {
    padding-left: unset;
    padding: 6px 12px;
    text-align: center;
    font-weight: bold;
  }
}

.access-area {
  
}
.access-map {
  
}
.access-info {
  background: #e9ecef;
  padding: 30px;
  border-radius: 15px;
  width: 98%;
  margin: 0 auto;
}
.access-info p {
  margin-bottom: 12px;
}
/*------------------ アクセス情報 ------------------*/
.com-accessmap {
  
}
.com-accessinfo {
  
}
.com-accessinfo h3 {
  font-size: 22px;
  margin-bottom: 20px;
  border-bottom: dashed 1px #008f42;
  padding-bottom: 5px;
}
.com-accessinfo p {
  line-height: 30px;
}
/*------------------ 沿革のステップ ------------------*/
.com-history {

}
.com-history .flow {
  position: relative;
}
.com-history .flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #dee2e6;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
}
.com-history .flow > li {
  position: relative;
}
.com-history .flow > li:not(:last-child) {
  margin-bottom: 36px;
}
.com-history .flow .com-right dl {
  padding-left: 50%;
  position: relative;
}
.com-history .flow .com-left dl {
  padding-right: 50%;
  position: relative;
  text-align: right;
}
.com-history .flow > li dl::before,
.com-history .flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}
.com-history .flow > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #6b90db;
  border-radius: 50%;
  left: 49.7%;
}
.com-history .flow .com-right dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 50%;
}
.com-history .flow .com-left dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  right: 50%;
}
.com-history .flow .com-right dl dt {
  font-size: 22px;
  font-weight: 600;
  color: rgb(107,144,219);
  margin-bottom: 1vh;
  margin-left: 60px;
}
.com-history .flow .com-right dl dd {
  margin-left: 60px;
}
.com-history .flow .com-left dl dt {
  font-size: 22px;
  font-weight: 600;
  color: rgb(107,144,219);
  margin-bottom: 1vh;
  margin-right: 60px;
}
.com-history .flow .com-left dl dd {
  margin-right: 60px;
}
@media only screen and (max-width:767px) {
  .com-history .flow::before {
    left: 3%;
  }
  .com-history .flow .com-right dl {
    padding-left: 0%;
  }
  .com-history .flow > li dl::before {
    left: 1.7%;
  }
  .com-history .flow .com-right dl::after {
    left: 3%;
  }
  .com-history .flow .com-left dl {
    padding-right: 0;
    text-align: left;
  }
  .com-history .flow .com-left dl::after {
    right: 83%;
  }
  .com-history .flow .com-left dl dt {
    margin-right: unset;
    margin-left: 60px;
  }
  .com-history .flow .com-left dl dd {
    margin-right: unset;
    margin-left: 60px;
  }
}

/*-----------------------------------------------
事業紹介ページ
-----------------------------------------------*/
.s-s {
  padding-bottom: 60px;
  margin-bottom: 80px;
}
.service-top {
  background: #717171;
  padding: 32px 16px;
  border-radius: 8px;
}
.service-top p {
  text-align: center;
  line-height: 2;
  font-size: 18px;
  color: #fff;
}

.top_menu {
  margin-top: 60px;
  margin-bottom: 120px;
}
.top_menu a {
}
.top_menu a:hover {
  opacity: .7;
}
.menu-box {
  position: relative;
}
.menu-box img {
  border-radius: 20px 0 20px 0;
}
.menu-box h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  background: #5f1e05;
  color: #fff;
  padding: 6px 0;
  font-weight: bold;
}




.menu-main {
  
}
.menu-main p {
  text-align: center;
  line-height: 2;
}


.product-main {
  text-align: center;
}
.product-main h3 {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
/*
  display: inline;
  background: linear-gradient(135deg, #ff8c00, rgb(225 120 237), #ff8c00);
  -webkit-background-clip: text;
*/
}
.product-main  p {
  margin-top: 12px;
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
}
.service-img {
  border-radius: 12px;
}
.service-box {
  
}
.service-box h3 {
  font-size: 24px;
  margin-bottom: 8px;
  border-bottom: dashed 2px #717171;
  padding-bottom: 6px;
}
.service-box h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #575757;
}
.service-box p {
  
}
.product-read {
  text-align: left;
  line-height: 28px;
  margin: 0 auto;
  margin-bottom: 16px;
}
.product-read span {
  font-size: 18px;
  font-weight: bold;
}
.product-subtitle {
  text-align: center;
}
.product-subtitle p {
  position: relative;
  margin-bottom: 0;
  margin-top: 12px;
}
.product-subtitle p:before,
.product-subtitle p:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 39%;
  height: 1px;
  background-color: #575757;
}
.product-subtitle p:before {
  left: 0;
}
.product-subtitle p:after {
  right: 0;
}
@media only screen and (max-width:767px) {
  .product-subtitle p:before,
  .product-subtitle p:after {
    width: 24%;
  }
  .product-read {
    width: 100%;
  }
	.product-title {
		width: 92%;
	}
}
.oem-m {
  margin-top: 80px;
}
.oem-m h2 {
  
}
.oem-m p {
  text-align: center;
  line-height: 30px;
}


/*-----------------------------------------------
記事一覧
-----------------------------------------------*/
.archive-list {
  margin-bottom: 40px;
}
.archive-list img {
  position: relative;
  height: auto;
  object-fit: cover;
  margin-bottom: 8px;
}
.archive-list h3 a {
  font-size: 14px;
  color: #999;
  margin: 6px 0;
}
.archive-list h3 a:hover {
  color: #a28443;
  text-decoration: none;
}
.archive-list p {
  position: absolute;
  top: 0;
  background: #000;
  color: #fff;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: bold;
}
.archive-list p a {
  color: #fff;
  font-weight: bold;
}

/*-----------------------------------------------
お問い合わせフォーム
-----------------------------------------------*/
.line-contact {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 200px;
}
.line-contact h3 {
  font-size: 20px;
  margin-bottom: 50px;
}
.line-contact a {
  
}
.line-contact a:hover {
  
}
.line-contact a img {
  width: 100px;
}


.cform tr {

}
.cform th {
	font-size: 14px;
	width: 25%; /*変なところで改行される場合はここの数字を変更します。*/
	border: solid 1px #d6d6d6;
	padding: 10px 0 10px 15px;
	font-weight: normal;
  background: #e9ecef;
  vertical-align: middle;
  color: #000;
}
.cform td {
	font-size: 14px;
	line-height: 150%;
	border: solid 1px #d6d6d6;
	padding: 10px 5px;
  background: #f8f9fa;
}
.cform {
	width: 80%;
	margin: auto;
}
.cform [type=submit] {
	display: inline-block;
	font-size: 20px;
	padding: 10px 30px;
	text-decoration: none;
	background: #ff8f00;
	color: #FFF;
	border-bottom: solid 4px #B17C00;
	border-radius: 3px;
}
.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
	width: 100%;
}
.required-srt {
	font-size: 8pt;
	padding: 5px;
	background: #ce0000;
	color: #fff;
	border-radius: 3px;
	margin-left: 0;
	vertical-align: middle;
}
.required-srt2 {
	font-size: 8pt;
	padding: 5px;
	background: #adb5bd;
	color: #fff;
	border-radius: 3px;
	margin-left: 0;
	vertical-align: middle;
}
@media only screen and (max-width:767px) {
  .cform {
    width: 100%;
  }
	.cform th,
	.cform td {
		width: 100%;
		display: block;
		border-top: none;
	}
}
.submit-btn input {
	background: #008f42;
	width: 60%;
	max-width: 550px;
	min-width: 220px;
	margin: 30px auto;
	display: block;
	border: 2px #008f42 solid;
	text-align: center;
	padding: 5px;
	color: #fff;
	transition: all 0.4s ease;
}
.submit-btn input:hover {
	background: #bd984d;
	color: #008f42;
  font-weight: bold;
}
/*------------------ ステップ（お問い合わせ）------------------*/
.stepBar {
  display: flex;
  max-width: 80%;
  position: relative;
  margin: 20px auto;
  text-align: center;
}
.stepBar li {
  font-size: 12px;
  list-style: none;
  position: relative;
  width: 33.333%;
}
.stepBar li:after {
  background: #e0e0e0;
  content: "";
  width: calc(100% - 24px);
  height: 4px;
  position: absolute;
  left: calc(-50% + 12px);
  top: 10px;
}
.stepBar li:first-child:after {
  display: none;
}
.stepBar li span {
  background: #e0e0e0;
  color: #ffffff;
  display: inline-block;
  height: 24px;
  margin-bottom: 5px;
  line-height: 24px;
  width: 24px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.stepBar .visited:after {
  background: #e0e0e0;
}
.stepBar .visited span {
  background: #717171;
  font-weight: bold;
  font-size: 14px;
}

/*------------ モーダルウィンドウ -----------*/
.md-btn {
  margin-top: 10px;
}
.md-btn_a {
  background: #f7f7f7;
  display: inline-flex;
  padding: 2px 80px;
  color: #575757;
  font-weight: 600;
  border-radius: 18px;
  border: solid 1px rgb(0 0 0 / 50%);
  font-size: 14px;
}
.md-btn_a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center
}
.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}
.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}
.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 80%;
  padding: 30px 30px 15px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}
.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  text-align: left;
  border: unset;
}
.modal-content h4 {
  font-size: 20px;
  font-weight: bold;
  border-bottom: dashed 1px rgb(0 0 0 / 50%);
  color: #575757;
  margin-bottom: 8px;
  padding-bottom: 3px;
}
.modal-content p {
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 18px;
}
.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}
.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}
.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}
/*------------------ ステップ ------------------*/
.mainflow {
  padding: 60px 0;
}
.flow-s {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  flex-wrap: wrap;
  justify-content: space-around;
}
.flow-s > li {
  -ms-flex-preferred-size: 29%;
  flex-basis: 17%;
  margin-bottom: 10px;
}
.flow-s > li .icon {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #717171;
  margin: 0 auto;
  display: block;
  border-radius: 15px;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  padding: 2px 0;
}
.flow-s > li .icon::before {
  content: "";
  border: solid transparent;
  border-width: 8px;
  border-top-color: #717171;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow-s > li dl {
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 10px;
  position: relative;
  height: 120px;
  background: #ececec;
  border-radius: 5px;
}
.flow-s > li:not(:last-child) dl::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid rgb(0 59 123 / 50%);
  border-right: 4px solid rgb(0 59 123 / 50%);
  position: absolute;
  top: calc(50% - 8px);
  left: 104%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.flow-s > li dl dt {
  font-size: 16px;
  font-weight: 600;
  color: rgb(0 31 64);
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-bottom: 1vh;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .flow-s {
    display: block;
  }
  .flow-s > li dl {
    height: 100px;
  }
  .flow-s > li:not(:last-child) dl::before {
    display: none;
  }
}

/*------------ ボタン -----------*/
.btn01 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.btn01 .btn-animation {
  display: inline-block;
  width: 240px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #717171;
  color: #717171;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 4px;
  position: relative;
}
.btn01 .btn-animation span {
  position: relative;
  z-index: 1;
  font-size: 12px;
}
.btn01 .btn-animation::before,
.btn01 .btn-animation::after {
  content: "";
  display: block;
  background-color: transparent;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.btn01 .btn-animation::before {
  left: 0;
}
.btn01 .btn-animation::after {
  right: 0;
}
.btn01 .btn-animation:hover:before,
.btn01 .btn-animation:hover:after {
  width: 0;
  background-color: #717171;
}
.btn01 .btn-animation:hover {
  color: #FFF;
  background: #717171;
}

.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background: #ffffff9c;
  border-radius: 10px;
  box-shadow: 2px 2px 6px #ccc;
}
.page-top img {
  width: 60px;
}
@media screen and (max-width: 767px) {
  .page-top {
    bottom: 45px;
    right: 8px;
  }
  .page-top img {
    width: 60px;
  }
}

.about-btn {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}
.about-btn a {
  background: #71717105;
  width: 180px;
  text-align: center;
  border-radius: 4px;
  padding: 4px 0;
  border: solid 1px #575757;
  color: #000;
}
.about-btn a:hover {
  text-decoration: none;
  background: #575757;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .about-btn a {
    width: 160px;
  }
  .about-btn {
    margin-top: 30px;
  }
}

/*-----------------------------------------------
商品を探す
-----------------------------------------------*/
.search-box {
  text-align: center;
}
.search-box a {
  
}
.search-box a img {
  width: 80%;
  margin-bottom: 12px;
}
.search-box a h3 {
  color: #717171;
  font-size: 20px;
  font-weight: bold;
}
.search-box a:hover {
  text-decoration: none;
  color: #fff;
  opacity: .7;
}

/*-----------------------------------------------
WEB予約
-----------------------------------------------*/
/*------------ カレンダー -----------*/
.calendar-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background: #e9ecef;
  padding: 6px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.calendar-caption {
  text-align: center;
  background: #dee2e6;
  font-size: 16px;
  padding: 6px;
  margin-bottom: 10px;
}
.monthly-calendar {
  position: relative;
  padding-top: 40px;
}
.monthly-calendar table {
  width: 100%;
}
.monthly-calendar table caption {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.monthly-calendar table thead {
  background: #ec6814;
  color: #fff;
}
.monthly-calendar table th {
  text-align: center;
  padding: 6px;
  border: solid 1px #ccc;
}
.monthly-calendar table td {
  text-align: center;
  padding: 6px;
  border: solid 1px #ccc;
}
.monthly-prev-next {
  display: flex;
  position: relative;
}
.monthly-prev {
  position: absolute;
  left: 0;
}
.monthly-next {
  position: absolute;
  right: 0;
}
.day-calendar {
  
}
.day-calendar h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: dashed 1px #ccc;
}
.day-calendar p {
  text-align: right;
  font-size: 14px;
}
.day-calendar table {
  width: 100%;
}
.day-calendar table tbody {
  
}
.day-calendar table tbody tr {
  
}
.day-calendar table tbody tr th {
  text-align: center;
  padding: 6px;
  border: solid 1px #ccc;
}
.day-calendar table tbody tr td {
  text-align: center;
  padding: 6px;
  border: solid 1px #ccc;
}
.day-calendar table tbody tr .day-left {
  
}
.day-calendar table tbody tr .day-right {
  
}
/*------------ 予約フォーム -----------*/
#booking-reservation-fieldset {
  font-size: 16px;
  font-weight: bold;
}
.booking-form-people-number-row {
  display: none;
}
.content-form {
  
}
.content-form table {
  width: 100%;
}
.content-form table th {
  width: 20%;
  border: solid 1px #ccc;
  padding: 8px;
  background: #dee2e6;
}
.content-form table td {
  border: solid 1px #ccc;
  padding: 8px;
  background: #fbfbfb;
}
.field-item {
  margin-right: 10px;
}

/* entry
--------------------------------------------------- */
.entry__btn {
    width: 100%;
    max-width: 579px;
    margin: auto;
    border: solid 2px #343434;
    border-radius: 4px;
}
.entry__btn a {
    display: block;
    padding: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #343434;
    text-align: center;
    transition: .5s;
}
.entry__btn a:hover {
    color: #fff;
    background: #343434;
}
.fix__facebook {
    position: fixed;
    z-index: 9999;
    bottom: 5px;
    right: 5px;
    width: 100%;
    max-width: 100px;
    background: #00b900;
    border-radius: 10px;
    transition: .5s;
}
.fix__facebook:hover { opacity: .7; }
.fix__facebook a {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    padding: 55px 0 15px;
    text-align: center;
    background: url(../img/common/line_ico.png) no-repeat top 18px center / 30px;
}
.fix__entry {
    position: fixed;
    z-index: 9999;
    bottom: 12px;
    right: 5px;
    width: 100%;
    max-width: 100px;
    background: #acacac;
    border-radius: 10px;
    transition: .5s;
}
.fix__entry:hover { opacity: .7; }
.fix__entry a {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    padding: 65px 0 12px;
    text-align: center;
    background: url(../img/common/entry_ico.png) no-repeat top 18px left 35px / 30px;
}
.fix__instagram {
    position: fixed;
    z-index: 9999;
    bottom: 100px;
    right: 5px;
    width: 100%;
    max-width: 100px;
    background: #CF2E92;
    border-radius: 10px 10px 10px 10px;
    transition: .5s;
}
.fix__instagram:hover { opacity: .7; }
.fix__instagram a {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    padding: 55px 0 15px;
    text-align: center;
    background: url(../img/common/instagram_ico.png) no-repeat top 18px center / 30px;
}


/*-----------------------------------------------
プライバシーポリシー
-----------------------------------------------*/
.p-policy {
  
}
.p-policy h3 {
  font-size: 22px;
  margin-bottom: 28px;
  position: relative;
  padding: 6px 0;
  border-bottom: 4px solid #666;
}
.p-policy h3::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 20%;
  height: 4px;
  content: '';
  background: #666666;
}
.p-policy h4 {
  font-size: 18px;
  margin-top: 26px;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: dashed 1px #666;
}
.p-policy p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 16px;
}
.p-policy ul {
  margin-top: 6px;
  margin-bottom: 10px;
}
.p-policy ul li {
  list-style: circle;
  margin-left: 22px;
  font-size: 14px;
  margin-bottom: 6px;
}
.p-policy ul li ol {
  margin-top: 6px;
  margin-bottom: 10px;
}
.p-policy ul li ol li {
  list-style: decimal-leading-zero;
  margin-left: 26px;
}
.p-policy ul li ol li ul {
  margin-top: 6px;
  margin-bottom: 10px;
}
.p-policy ul li ol li ul li {
  list-style: disc;
}
footer {
  padding: 0 !important;
}


/*-----------------------------------------------
商品ページ（SNSシェアボタン）
-----------------------------------------------*/
.item-sns {
  clear: both;
  margin-bottom: 30px;
  float: right;
}
.item-sns ul {
  display: flex;
}
.item-sns ul li {
  margin: 0px 4px;
}
.item-sns ul li p {
  position: relative;
  display: inline-block;
  padding: 3px 10px;
  color: #fff;
  font-size: 14px;
  background: #999;
  margin-right: 20px;
}
.item-sns ul li p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #999;
}
.item-sns ul li a {
  padding: 4px 12px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
}
.item-sns ul li a:hover {
  opacity: .6;
}
.share-tw {
  background: #999;
}
.share-fb {
  background: #999;
}
.share-ln {
  background: #999;
}
@media screen and (max-width: 767px) {
  .item-sns {
    margin-top: 30px;
  }
  .footer-box1::after {
    display: none;
  }
}



.lineup-box img {
  height: 220px;
  object-fit: contain;
  padding: 15px;
  margin-bottom: 6px;
}
.lineup-box a {
  text-decoration: none;
}
.lineup-box a h3 {
  font-size: 14px;
  color: #999;
  margin-bottom: 6px;
}
.lineup-box a h3:hover {
  color: #a28443;
  text-decoration: none;
}
.lineup-box a p {
  font-size: 13px;
  color: #999;
  text-decoration: none;
}

.item-name {
  margin-bottom: 1.42857em;
  padding-bottom: 0.357143em;
  border-bottom: 1px solid #ccc;
}
.itemcode {
  display: none;
}


.customer-info b {
  display: none;
}
#wc_ordercompletion .send a {
  background-color: #717171 !important;
  color: #fff !important;
}
#wc_cart .currency_code {
  display: none;
}
@media screen and (max-width: 767px) {
  #wc_cart #cart .upbutton {
    text-align: left !important;
    margin-bottom: 30px;
    font-size: 13px;
  }
  #wc_cart #cart .upbutton input {
    display: block !important;
    margin-left: auto !important;
  }
  .name_td {
    width: 100% !important;
    display: flex !important;
  }
  .customer_form td {
    display: grid !important;
  }
  .customer_form td input {
    width: 100% !important;
  }
  .customer_form input#search_zipcode {
    margin: 12px 0 !important;
  }
  .name_td span {
    margin-right: 10px;
  }
  .name_td input {
    margin-left: 0 !important;
  }
  #delivery_flag td {
    display: flex !important;
  }
  #delivery_flag #delivery_flag1 {
    width: unset !important;
    margin-right: 10px;
  }
  #delivery_flag #delivery_flag2 {
    width: unset !important;
    margin-right: 10px;
  }
  .payment_0 label {
    display: flex;
  }
  .payment_0 label input {
    width: unset !important;
    margin-right: 10px;
  }
  .payment_2 label {
    display: flex;
  }
  .payment_2 label input {
    width: unset !important;
    margin-right: 10px;
  }
}



.cart-sp {
  
}
.cart-sp table {
  margin-bottom: 50px;
}
.cart-sp table tbody {
  
}
.cart-sp table tbody tr {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  border-bottom: solid 1px #ddd;
  padding-bottom: 20px;
}
.cart-sp table tbody tr td {
  width: 100%;
}
.cart-sp table tbody tr .num {
  display: none;
}
.cart-sp table tbody tr .thumbnail {
  text-align: center;
  margin-bottom: 8px;
}
.cart-sp table tbody tr .thumbnail a img {
  height: 200px;
  width: auto;
  object-fit: cover;
}
.cart-sp table tbody tr .productname {
  margin-bottom: 12px;
  text-align: center;
  padding: 4px 12px;
}
.cart-sp table tbody tr .unitprice {
  text-align: right;
  padding-right: 12px;
}
.cart-sp table tbody tr .unitprice::before {
  content: "商品価格： ";
  color: #999;
  font-size: 14px;
}
.cart-sp table tbody tr .quantity {
  text-align: right;
  padding-right: 12px;
}
.cart-sp table tbody tr .quantity::before {
  content: "数量 ";
  color: #999;
  font-size: 14px;
}
.cart-sp table tbody tr .quantity input {
  width: 30%;
  padding: 4px 12px;
  font-size: 14px;
}
.cart-sp table tbody tr .subtotal {
  text-align: right;
  padding-right: 12px;
  margin-bottom: 12px;
  margin-top: 12px;
  font-size: 18px;
  font-weight: bold;
}
.cart-sp table tbody tr .subtotal::before {
  content: "小計： ";
  color: #999;
  font-size: 14px;
}
.cart-sp table tbody tr .stock {
  display: none;
}
.cart-sp table tbody tr .action {
  text-align: right !important;
  padding-right: 12px;
}
.cart-sp table tbody tr .action input {
  font-size: 14px;
  font-weight: normal;
  margin-left: auto;
  color: #fff;
  background: #999;
  padding: 3px 30px !important;
}
.cart-sp table tfoot {
  
}
.cart-sp table tfoot tr {
  display: flex;
  justify-content: space-around;
}
.cart-sp table tfoot tr th {
  width: 50%;
  text-align: center;
  padding: 12px 0;
}
.cart-sp table tfoot tr .aright {
  background: #999;
  color: #fff;
}
.cart-sp table tfoot tr .aright em {
  color: #fff;
}
.cart-sp table tfoot tr .amount {
  border: solid 1px;
}
.cart-sp .w50 {
  width: 50%;
  text-align: center;
  padding: 4px 0;
}
.cart-sp .bg-w {
  background: #fff !important;
  color: #999 !important;
  border: solid 1px #ddd !important;
}
.cart-sp .bd-ddd {
  border: solid 1px #ddd !important;
  background: #acacac !important;
}

.cl-wine {
  color: #5f1e05 !important;
}



/*-----------------------------------------------
ソートフォーム（並び替え）
-----------------------------------------------*/
.sort_form {
  text-align: right;
  margin-top: -40px;
  margin-bottom: 20px;
}
.sort_form select {
  border: unset;
  color: #999;
}