@charset "UTF-8";

/*¡¡¥Ï¥ó¥Ð©`¥¬©`¥Ü¥¿¥ó¡¡*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 99999;
  right : 12px;
  top   : 8px;
  width: 54px;
  height: 54px;
  cursor: pointer;
  text-align: center;
  background: #eb851b;
  padding:0 10px;
  border-radius:.3em;
  color:#fff;
}
@media screen and (min-width: 961px) {
  .hamburger{
    display:none;
  }
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 11px;
  background :#fff;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition   : 0.5s ease-in-out;
  transition        : 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
.hamburger small {
  display : block;
  position: absolute;
  top: 36px;
  color :#fff;
  font-size:10px;
  width:100%;
  left: 0;
}

.hamburger small:after {
  content:"MENU";
}
.hamburger.active small:after {
  content:"CLOSE";
}

.hamburger:hover {
  background : #eb851b;
}

/* ¥Ê¥Óé_¤¤¤Æ¤ë•r¤Î¥Ü¥¿¥ó */
.hamburger.active {
  background : #eb851b;
}
.hamburger.active span {
  background : #fff;
}
.hamburger.active span:nth-child(1) {
  top : 20px;
  left: 11px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position:fixed;
  z-index:9999;
  top :0;
  right:0;
  transform:translateX(100%);
  transition:all 0.3s;
_width:90%;
  width:100%;
  max-width:540px;
}

nav.globalMenuSp ul {
  margin:0 auto;
  padding:0;
  width:100%;
}
nav.globalMenuSp ul li {
  list-style-type:none;
  padding:0;
  width:100%;
}

/* ÏÂŒÓ¥Ú©`¥¸ ¥¢¥³©`¥Ç¥£¥ª¥ó */
nav.globalMenuSp ul span:after {
  position: absolute;
  right: 0;
  top: .5em;
  content: "\f107";
  display: inline-block;
  float: right;
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: 600;
  line-height: 40px;
  color: #ff7b70;
  text-align: center;
  width: 2em;
  margin: 0 .4em;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
nav.globalMenuSp ul span.open:after{
  transform: rotate(180deg);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
nav.globalMenuSp ul li {
  list-style: none;
  margin: 0;
  clear: both;
}
nav.globalMenuSp ul li {
  position: relative;
  display: block;
_border-top: 1px solid rgba(0,0,0,.1);
}
nav.globalMenuSp ul ul {
  list-style: none;
  margin: .5em auto 1em;
  padding: 0 0 1em;
}
nav.globalMenuSp ul ul li {
  border-top: none;
  border:none !important;
}
nav.globalMenuSp ul ul li a {
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.8em;
}
nav.globalMenuSp ul ul li a:before {
  display: inline-block;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #ff7b70;
  margin: 0 .4em 0 .8em;
}

/* ¤³¤Î¥¯¥é¥¹¤ò¡¢jQuery¤Ç¸¶Óë?Ï÷³ý¤¹¤ë */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

/* .globalMenuSp */
.globalMenuSp {
  position:fixed;
  top:0;
  right:-90%;
  width:90%;
  height:100%;
  overflow-x:hidden;
  overflow-y:scroll;
  -webkit-overflow-scrolling:touch;
  -webkit-transition:all .1s;
  -moz-transition:all .1s;
  -o-transition:all .1s;
  transition:all .1s;
  background:#f0f0f0;
  color:#101010;
  z-index:9999;
  padding-top:64px;
}
.globalMenuSp.open {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.lte-ie9 #wrap.open { right: 100%;}
.lte-ie9 #wrap.open { right: 0;}
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #fff;
  line-height: 1;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
}
.drawer-close:hover,.drawer-close:hover i {
    color: #ffcc00;
    transition: all 0.5s ease;
    zoom: 1;
}
.globalMenuSp .drawer-close {
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.globalMenuSp.open .drawer-close {
  opacity: 1;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.globalMenuSp .drawer-close i {
    font-size: 3.2rem;
}
.globalMenuSp.open .drawer-close i {
  transform: rotate(180deg);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.globalMenuSp .bnr_wrap ul li {
  flex: 0 0 97%;
  flex-basis: 97%;
  max-width: 420px;
  margin: 1.5% auto;
}
.globalMenuSp .bnr_wrap ul li a {
  height: 85px;
}
.globalMenuSp .bnr_wrap ul li.site_top a {
  display: block;
  font-weight: 500;
  font-size: 90%;
  color: #fff;
  text-align: center;
  padding: .8em;
  border: 1px solid #1e3f08;
  background: #fff;
  border-radius: .3em;
  height: auto;
  max-width: 240px;
}
.globalMenuSp .bnr_wrap ul li.site_top a:hover {
  color: #101010;
  background: #ffcc00;
  border-color: #ffcc00;
}
.globalMenuSp .bnr_wrap ul li.phone small {
  font-size: 1rem;
  padding-top: 1em;
}
.globalMenuSp .bnr_wrap ul li.club a {
  font-size: 1.4rem;
}
.globalMenuSp .bnr_wrap ul li.club a small {
  font-size: 1rem;
}
.globalMenuSp .bnr_wrap ul li.club a strong {
  line-height: 1em;
}
.globalMenuSp .bnr_wrap ul li.club a small img {
  top: 3.2em;
  left: 1.5em;
  width: 48px;
  height: 42px;
}
.globalMenuSp .bnr_wrap ul li.contact a strong {
  font-size: 2.4rem;
  line-height: 1.4em;
}
.globalMenuSp .bnr_wrap ul li.contact a small {
  padding-top: 1em;
}
nav.globalMenuSp a {
  display: block;
  font-size: 1.8rem;
  color: #101010;
  line-height: 42px;
  text-decoration: none;
  padding: .3em 1.2em;
}
nav.globalMenuSp a:hover {
  color: #101010;
  background: #ffcc00;
}

nav.globalMenuSp ul {
  list-style: none;
  margin: 0 auto;
  padding: 1em 0;
}

nav.globalMenuSp ul li i {
  display:inline-block;
  vertical-align:middle;
_background:#fff;
  border-radius:100%;
  width: 2em;
  height: 2em;
  padding: 0.5em;
  line-height: 1;
  color: #000;
  text-align: center;
  margin-right: 0.3em;
}
nav.globalMenuSp ul li a.facebook i {
  color:#1877f2;
}
nav.globalMenuSp ul li a.instagram i {
  color:#f13f79;
}
nav.globalMenuSp ul li a.twitter i {
  color:#55acee;
}
nav.globalMenuSp ul li a.youtube i {
  color:#de251e;
}
nav.globalMenuSp ul li a.line i {
  color:#00b900;
}

nav.globalMenuSp ul li {
  list-style: none;
  margin: 0;
  clear: both;
}
nav.globalMenuSp ul li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(0,0,0,.1);
}
nav.globalMenuSp ul li:last-child {
  border-bottom: 1px solid rgba(0,0,0,.1);
}
nav.globalMenuSp ul ul {
  list-style: none;
  margin: .5em auto 1em;
  padding: 0 0 1em;
}
nav.globalMenuSp ul ul li {
  border-top: none;
}
nav.globalMenuSp ul ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1.8em;
}
nav.globalMenuSp ul ul li a:before {
  display: inline-block;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #ff7b70;
  margin: 0 .4em 0 .8em;
}
.globalMenuSp footer {
  background: none;
}
.globalMenuSp footer a {
  padding-left: .5em;
  line-height: 1.4em;
}

.globalMenuSp .accordion span{
  cursor: pointer;
  margin: 0;
}
.globalMenuSp .accordion span.new{
  margin-left: .5em;
}
.globalMenuSp .accordion ul{
  display:none;
  margin: 0;
}

.globalMenuSp ul + a {
  line-height: 1.4em;
  padding: 0;
}
.globalMenuSp ul + a small {
  display: table;
  margin: 0 auto;
  text-align: center;
}
.globalMenuSp ul + a small:after {
  display: block;
  font-family: "Font Awesome 5 Free";
  font-size: 150%;
  font-weight: 900;
  content: "\f35a";
  margin-top: .3em;
}
.globalMenuSp ul + a small img {
  width: 80px;
  margin: 0 auto .5em;
}

.globalMenuSp footer {
  margin-top: 2em;
}
.globalMenuSp footer ul {
  padding: 0 0;
  margin-bottom: 2em;
}
.globalMenuSp footer nav.footer_nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-top: 1px solid rgba(0,0,0,.1);
}
.globalMenuSp footer nav.footer_nav ul li {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  flex-grow: 0;
  flex-shrink: 0;
  flex: 0 0 50%;
  flex-basis: 50%;
  max-width: 50%;
  text-align: center;
  padding: 0;
  border-top: none;
  border-bottom: 1px solid rgba(0,0,0,.1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.globalMenuSp footer nav.footer_nav ul li:nth-child(odd) {
  border-right: 1px solid rgba(0,0,0,.1);
}
.globalMenuSp footer nav.footer_nav ul li:hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.globalMenuSp footer nav.footer_nav ul li a {
  display: block;
  padding: 1.5em .2em;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .globalMenuSp footer nav.footer_nav ul li a {
    font-size: 1.5rem;
  }
}

nav.globalMenuSp .item_list ul li a {
  padding:0 0;
}

ul.footer_link {
_position: absolute;
_bottom: -100px;
  text-align: center;
  display:flex;
  flex-wrap:wrap;
  list-style-type:none;
  padding-bottom:0 !important;
}
ul.footer_link li {
  flex:0 0 50%;
  flex-basis:50%;
  max-width:50%;
  box-sizing: border-box;
  -webkit-box-sizing : border-box ;
  -moz-box-sizing : border-box ;
  flex-grow:0;
  flex-shrink:0;
  border-top:1px solid rgba(0,0,0,.1);
_border-bottom:1px solid rgba(0,0,0,.1);
}
/*
ul.footer_link li:first-child {
  flex:0 0 100%;
  flex-basis:100%;
  max-width:100%;
  border-bottom:none;
}
ul.footer_link li:last-child {
  border-left:1px solid rgba(0,0,0,.1);
}
*/
ul.footer_link li:nth-child(even) {
  border-left:1px solid rgba(0,0,0,.1);
}
ul.footer_link li a {
  color:#fff;
  background:#ff7b70;
}
ul.footer_link li a:hover {
  color:#101010;
  background:#ffcc00;
}
