#globalheader #gh-container{
  position: relative;
  height: 72px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding-left:0;
  width: 100%;
  overflow-x: hidden;
}

#gh-logo{
  width: 80px;
  margin-left:12px;
}

#gh-logo a{
  display:block;
}
#gh-logo img {
  width: 100%;
}
#gh-sns-nav{
  margin-left: auto;
}

#gh-nav{
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
}
#gh-nav .hamburger {
  left: 0px;
  top: 0px;
  width:27px; /* クリックしやすいようにちゃんと幅を指定する */
  height:18px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 300;
  position:relative;
}
#gh-nav .hamburger__line {
  position: absolute;
  left:0;
  width:100%;
  height: 3px;
  background-color: #7A7A7A;
  transition: all .6s;
  border-radius:6px;
}
#gh-nav .hamburger__line--1 {
  top:0;
}
#gh-nav .hamburger__line--2 {
  top:8px;
}
#gh-nav .hamburger__line--3 {
  top:16px;
}
#globalnav{
  display:none;
}
/* 表示された時用のCSS */
#gh-nav.open{
  background:#f44336;
}
#gh-nav.open #globalnav {
  display:block;
}
#gh-nav.open .hamburger{
  transition: all .6s;
}
#gh-nav.open .hamburger__line--1 {
  transform: rotate(45deg);
  top:6px;
  left:0;
  background: #fff;
}
#gh-nav.open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
#gh-nav.open .hamburger__line--3 {
  transform: rotate(-45deg);
  top:6px;
  left:0;
  background: #fff;
}
#gh-nav.open #globalnav {
  position: fixed;
  left:0; /* これで隠れる */
  padding-top: 40px;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  transition: all .6s;
}
.navigation {
  position: fixed;
  z-index: 7001;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  background: #f44336
}

.navigation--active {
  left: 0
}

@media screen and (min-width: 640px) {
  .navigation {
    width: 256px;
    background: transparent;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease
  }
  .navigation--fixed .navigation__inner {
    top: 40px
  }
}

@media screen and (min-width: 1280px) {
  .navigation {
    left: 0;
    background: #f44336
  }
  .navigation--active {
    left: -100%
  }
}

.navigation--select {
  width: 100%
}

@media screen and (min-width: 640px) {
  .navigation--select {
    width: 360px
  }
}

.navigation__inner {
  top: 48px
}

@media screen and (min-width: 640px) {
  .navigation__inner {
    background: #f44336;
    top: 72px
  }
}

.navigation__trigger01 {
  display: block;
  padding: 0 0 0 15px;
  color: #fff;
  position: relative
}

.navigation__trigger01:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -6px
}

.navigation__trigger01.navigation--selected:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-top: -3px
}

@media screen and (min-width: 640px) {
  .navigation__trigger01 {
    padding: 0
  }
}

.navigation__trigger02 {
  display: block;
  padding: 0 0 0 24px;
  color: #fff;
  position: relative
}

.navigation__trigger02:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -6px
}

@media screen and (min-width: 640px) {
  .navigation__trigger02 {
    padding: 0 0 0 23px
  }
}

.navigation--external:after {
  width: 12px;
  height: 10px;
  border: none;
  background: url(../img/ico_external_02.png) no-repeat;
  background-size: 12px 10px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  margin-top: -6px;
  right: 4px
}

@media screen and (min-width: 640px) {
  .navigation--external:after {
    width: 14px;
    height: 12px;
    background-size: 14px 12px;
    margin-top: -7px
  }
}

.navigation--link:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -4px
}

.navigation--back:before {
  right: 22px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -4px;
  left: 23px
}

@media screen and (min-width: 640px) {
  .navigation--back:before {
    left: 35px
  }
}

.menu {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden
}

.menulist {
  padding: 0;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  font-size:15px;
}

.menulist__header {
  color: #fff;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1)
}

.menulist__item__title {
  color: #fff;
  display: block;
  width: 100%;
  padding: 0 5px 0 5px;
  box-sizing: border-box
}
.menulist__item__title:hover,
.menulist__item__title:active,
.menulist__item__title:focus{
  color: #fff;
  opacity:.75;
}

@media screen and (min-width: 640px) {
  .menulist__item__title {
    padding: 0 15px 0 15px
  }
}

.menulist__item__title__inner {
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 25px
}

.menulist__item__title__inner--layer05 {
  text-indent: 1em
}

.menulist__item_title--label {
  cursor: default;
  font-size: 11px;
  font-weight: bold
}

.menulist__item_title--label .menulist__item__txt {
  color: #999 !important
}

@media screen and (min-width: 640px) {
  .menulist__item_title--label {
    font-size: 12px
  }
}

.menulist__item__txt {
  width: 100%;
  padding: 10px 5px;
  box-sizing: border-box;
  display: block;
  white-space: nowrap;
  overflow: hidden
}

@media screen and (min-width: 640px) {
  .menulist__item__txt {
    padding: 10px 15px
  }
}

@media screen and (max-height: 460px) {
  .menulist__item__txt {
    padding: 8px 15px
  }
}

.menuitem {
  list-style: none;
  cursor: pointer
}

.menuitem__header {
  color: #fff;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #dd3326
}

.menuitem__title {
  color: #fff;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0 5px 0 5px
}

@media screen and (min-width: 640px) {
  .menuitem__title {
    padding: 0 15px 0 15px
  }
}

.menuitem__title__inner {
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 25px
}

.menuitem__txt {
  width: 100%;
  padding: 10px 5px;
  box-sizing: border-box;
  display: block;
  white-space: nowrap;
  overflow: hidden
}

@media screen and (min-width: 640px) {
  .menuitem__txt {
    padding: 10px 15px
  }
}

@media screen and (max-height: 460px) {
  .menuitem__txt {
    padding: 8px 15px
  }
}

.menulist__container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translateX(100%)
}

.menulist--layer3 .menulist__container {
  position: relative;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translateX(0)
}

.menulist--layer1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translateX(0);
  -webkit-overflow-scrolling: touch
}

.menulist--layer1 .menuitem__title__inner, .menulist--layer1 .menulist__item__title__inner {
  padding-right: 25px
}

.menulist--layer2, .menulist--layer3 {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-overflow-scrolling: touch;
  font-weight: normal
}

.menulist--layer2 {
  background: #dd3326
}

.menulist--layer3 {
  background: #c2190d;
  height: 86.3%;
  height: calc(100% - 91px)
}

@media screen and (min-width: 640px) {
  .menulist--layer3 {
    height: 78.4%;
    height: calc(100% - 115px)
  }
}

.menulist--layer4 {
  background: #fff;
  -webkit-overflow-scrolling: touch;
  font-weight: normal
}

.menulist--layer4 .menuitem__titile, .menulist--layer4 .menulist__item__titile, .menulist--layer4 .menulist__item__txt, .menulist--layer4 .menuitem__txt {
  color: #000
}

.menu.layer1 .menulist--layer1 {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translateX(0)
}

.menu.layer2 .menulist--layer1 {
  transform: translate3d(-100%, 0, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translateX(-100%)
}

.menu.layer2 .menulist--layer1 .menulist__header {
  padding-left: 47px
}

@media screen and (min-width: 640px) {
  .menu.layer2 .menulist--layer1 .menulist__header {
    padding-left: 58px;
    white-space: nowrap
  }
}

.menu.layer2 .menulist--layer2 {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translateX(0);
  height: 86.3%;
  height: calc(100% - 91px);
  overflow: hidden;
  overflow-y: auto
}

.menu.layer2 .menulist--layer2 .menuitem__title__inner, .menu.layer2 .menulist--layer2 .menulist__item__title__inner {
  padding-left: 43px;
  padding-right: 25px
}

.menu.layer2 .menulist--layer2 .menuitem__txt, .menu.layer2 .menulist--layer2 .menulist__item__txt {
  padding-left: 0px
}

.menu.layer2 .menulist--layer2 .menulist--layer3 .menuitem.opened .menulist--layer4 {
  display: none
}

@media screen and (min-width: 640px) {
  .menu.layer2 .menulist--layer2 {
    height: 75%;
    height: calc(100% - 115px)
  }
  .menu.layer2 .menulist--layer2 .menuitem__title__inner, .menu.layer2 .menulist--layer2 .menulist__item__title__inner {
    padding-left: 43px;
    padding-right: 25px
  }
  .menu.layer2 .menulist--layer2 .menuitem__txt, .menu.layer2 .menulist--layer2 .menulist__item__txt {
    padding-left: 0px
  }
}

.menu.layer3 .menulist--layer1 {
  transform: translate3d(-100%, 0, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translateX(-100%)
}

.menu.layer3 .menulist--layer1 .menulist__header {
  padding-left: 47px
}

@media screen and (min-width: 640px) {
  .menu.layer3 .menulist--layer1 .menulist__header {
    padding-left: 58px;
    white-space: nowrap
  }
}

.menu.layer3 .menulist--layer2 {
  transform: translate3d(-100%, 0, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translateX(-100%)
}

.menu.layer3 .menulist--layer2 .menulist__header {
  padding-left: 60px;
  background: #dd3326;
  font-weight: bold
}

.menu.layer3 .menulist--layer2 .menulist__header__title {
  padding-left: 0
}

.menu.layer3 .menulist--layer2 .navigation--back:before {
  left: 40px
}

@media screen and (min-width: 640px) {
  .menu.layer3 .menulist--layer2 .menulist__header {
    padding-left: 66px;
    padding-right: 40px
  }
  .menu.layer3 .menulist--layer2 .menulist__header__title {
    padding-left: 0;
    display: block;
    white-space: nowrap;
    overflow: hidden
  }
  .menu.layer3 .menulist--layer2 .navigation--back:before {
    left: 45px
  }
}

.menu.layer3 .menulist--layer3 {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translateX(0);
  height: 80%;
  height: calc(100% - 134px);
  overflow: hidden;
  overflow-y: auto
}

.menu.layer3 .menulist--layer3 .menuitem__title__inner, .menu.layer3 .menulist--layer3 .menulist__item__title__inner {
  padding-left: 0px;
  padding-right: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 70px
}

.menu.layer3 .menulist--layer3 .menuitem__txt, .menu.layer3 .menulist--layer3 .menulist__item__txt {
  padding-left: 0
}

@media screen and (min-width: 640px) {
  .menu.layer3 .menulist--layer3 {
    height: 75.7%;
    height: calc(100% - 158px)
  }
  .menu.layer3 .menulist--layer3 .menuitem__title__inner, .menu.layer3 .menulist--layer3 .menulist__item__title__inner {
    padding-left: 0px;
    padding-right: 25px;
    margin-left: 0px
  }
  .menu.layer3 .menulist--layer3 .menuitem__txt, .menu.layer3 .menulist--layer3 .menulist__item__txt {
    padding-left: 70px
  }
}

.menuitem .menulist__container {
  display: none
}

.menuitem.opened>.menulist__container {
  display: block
}

.menulist--layer4 {
  display: none
}

.menulist--layer3 .menuitem.opened .menulist--layer4 {
  display: block
}

@media screen and (min-width: 640px) {
  .navigation--fixed .menulist--layer3 {
    height: 89.5%;
    height: calc(100% - 43px)
  }
}

@media screen and (min-width: 640px) {
  .navigation--fixed .menu.layer2 .menulist--layer2 {
    height: 89.5%;
    height: calc(100% - 43px)
  }
}

@media screen and (min-width: 640px) {
  .navigation--fixed .menu.layer3 .menulist--layer3 {
    height: 86%;
    height: calc(100% - 86px)
  }
}

@media screen and (max-width: 767px) {
  .menu.layer1 .menulist--layer1 {
    height: calc(100% - 72px);
    position: relative;
    overflow-y: auto
  }
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
  .menulist__header {
    z-index: 1
  }
  .menu.layer1 .menulist--layer2, .menu.layer1 .menulist--layer3, .menu.layer1 .menulist--layer4 {
    display: none
  }
  .menu.layer2 .menulist--layer1, .menu.layer3 .menulist--layer1, .menu.layer4 .menulist--layer1 {
    height: 100%;
    position: absolute;
    overflow-y: visible;
    overflow-x: visible
  }
  .menu.layer2 .menulist--layer2 {
    height: 71.5%;
    height: calc(100% - 91px)
  }
  .menu.layer3 .menulist--layer3 {
    height: 58.1%;
    height: calc(100% - 134px)
  }
  .navigation--fixed .menu.layer1 .menulist--layer1, .navigation--fixed .menulist--layer1 {
    height: 85%;
    height: calc(100% - 40px)
  }
  .navigation--fixed .menulist--layer3 {
    height: 71.5%;
    height: calc(100% - 83px)
  }
  .navigation--fixed .menu.layer2 .menulist--layer2 {
    height: 71.5%;
    height: calc(100% - 83px)
  }
  .navigation--fixed .menu.layer3 .menulist--layer3 {
    height: 58.1%;
    height: calc(100% - 124px)
  }
}

.menu.andoroid-v4 .menulist, .menu.andoroid-v4 .menuitem {
  -webkit-tap-highlight-color: transparent
}

.menu.andoroid-v4 .menulist {
  padding: 0;
  transition: none;
  -webkit-transition: none
}

.menu.andoroid-v4 .menulist__container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  left: 100%;
  left: 0
}

.menu.andoroid-v4 .menulist--layer3 .menulist__container {
  position: relative;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  left: 0
}

.menu.andoroid-v4 .menulist--layer1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  left: 0;
  -webkit-overflow-scrolling: touch
}

.menu.andoroid-v4 .menulist--layer2, .menu.andoroid-v4 .menulist--layer3 {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-overflow-scrolling: touch;
  font-weight: normal
}

.menu.andoroid-v4 .menulist--layer2 {
  background: #dd3326
}

.menu.andoroid-v4 .menulist--layer3 {
  background: #c2190d;
  height: 84.5%;
  height: calc(100% - 91px)
}

.menu.andoroid-v4 .menulist--layer4 {
  background: #fff;
  -webkit-overflow-scrolling: touch;
  font-weight: normal
}

.menu.andoroid-v4 .menulist--layer4 .menuitem__titile, .menu.andoroid-v4 .menulist--layer4 .menulist__item__titile, .menu.andoroid-v4 .menulist--layer4 .menulist__item__txt, .menu.andoroid-v4 .menulist--layer4 .menuitem__txt {
  color: #000
}

.menu.andoroid-v4 .menuitem .menulist__container {
  display: none
}

.menu.andoroid-v4 .menuitem.opened>.menulist__container {
  display: block
}

.menu.andoroid-v4 .menulist--layer4 {
  display: none
}

.menu.andoroid-v4 .menulist--layer3 .menuitem.opened .menulist--layer4 {
  display: block
}

.navigation--fixed .menu.andoroid-v4 .menulist--layer3 {
  height: 85.6%;
  height: calc(100% - 83px)
}

.navigation--fixed .menu.layer2.andoroid-v4 .menulist--layer2 {
  height: 85.6%;
  height: calc(100% - 83px)
}

.navigation--fixed .menu.layer3.andoroid-v4 .menulist--layer3 {
  height: 78.2%;
  height: calc(100% - 126px)
}

.menu.layer1.andoroid-v4 .menulist--layer1 {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  left: 0
}

.menu.layer1.andoroid-v4 .menulist--layer1 .menulist__container {
  display: none
}

.menu.layer2.andoroid-v4 .menulist--layer1 {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  left: -100%;
  left: 0;
  height: 100%
}

.menu.layer2.andoroid-v4 .menulist--layer1 .menulist__header {
  padding-left: 47px;
  background: #f44336
}

.menu.layer2.andoroid-v4 .menulist--layer1 .menulist__item, .menu.layer2.andoroid-v4 .menulist--layer1 .menuitem {
  display: none
}

.menu.layer2.andoroid-v4 .menulist--layer1 .menuitem.opened {
  display: block
}

.menu.layer2.andoroid-v4 .menulist--layer2 {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  left: 0;
  height: 85.6%;
  height: calc(100% - 91px);
  overflow: hidden;
  overflow-y: auto
}

.menu.layer2.andoroid-v4 .menulist--layer2 .menuitem__title__inner, .menu.layer2.andoroid-v4 .menulist--layer2 .menulist__item__title__inner {
  padding-left: 43px
}

.menu.layer2.andoroid-v4 .menulist--layer2 .menuitem__txt, .menu.layer2.andoroid-v4 .menulist--layer2 .menulist__item__txt {
  padding-left: 0px
}

.menu.layer2.andoroid-v4 .menulist--layer2 .menulist--layer3 .menuitem.opened .menulist--layer4 {
  display: none
}

.menu.layer2.andoroid-v4 .menulist--layer2 .menulist__item, .menu.layer2.andoroid-v4 .menulist--layer2 .menuitem {
  display: block
}

.menu.layer2.andoroid-v4 .menulist--layer2 .menuitem.opened>.menulist__container {
  display: none
}

.menu.layer2.andoroid-v4 .menulist--layer3 .menulist__item, .menu.layer2.andoroid-v4 .menulist--layer3 .menuitem {
  display: none
}

.menu.layer2.andoroid-v4 .menulist--layer3 .menuitem.opened {
  display: block
}

.menu.layer3.andoroid-v4 .menulist--layer1 {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  left: -100%;
  left: 0
}

.menu.layer3.andoroid-v4 .menulist--layer1 .menulist__header {
  padding-left: 47px;
  background: #f44336
}

.menu.layer3.andoroid-v4 .menulist--layer1 .menulist__item, .menu.layer3.andoroid-v4 .menulist--layer1 .menuitem {
  display: none
}

.menu.layer3.andoroid-v4 .menulist--layer1 .menuitem.opened {
  display: block
}

.menu.layer3.andoroid-v4 .menulist--layer2 {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  left: -100%;
  left: 0
}

.menu.layer3.andoroid-v4 .menulist--layer2 .menulist__header {
  padding-left: 60px;
  background: #dd3326;
  font-weight: bold
}

.menu.layer3.andoroid-v4 .menulist--layer2 .menulist__header__title {
  padding-left: 0
}

.menu.layer3.andoroid-v4 .menulist--layer2 .navigation--back:before {
  left: 40px
}

.menu.layer3.andoroid-v4 .menulist--layer2 .menulist__item, .menu.layer3.andoroid-v4 .menulist--layer2 .menuitem {
  display: none
}

.menu.layer3.andoroid-v4 .menulist--layer2 .menuitem.opened {
  display: block
}

@media screen and (min-width: 640px) {
  .menu.layer3.andoroid-v4 .menulist--layer2 .menulist__header {
    padding-left: 66px
  }
  .menu.layer3.andoroid-v4 .menulist--layer2 .menulist__header__title {
    padding-left: 0
  }
  .menu.layer3.andoroid-v4 .menulist--layer2 .navigation--back:before {
    left: 45px
  }
}

.menu.layer3.andoroid-v4 .menulist--layer3 {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  left: 0;
  height: 73%;
  height: calc(100% - 134px);
  overflow: hidden;
  overflow-y: auto
}

.menu.layer3.andoroid-v4 .menulist--layer3 .menuitem__title__inner, .menu.layer3.andoroid-v4 .menulist--layer3 .menulist__item__title__inner {
  padding-left: 0px;
  padding-right: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 70px
}

.menu.layer3.andoroid-v4 .menulist--layer3 .menuitem__txt, .menu.layer3.andoroid-v4 .menulist--layer3 .menulist__item__txt {
  padding-left: 0
}

.menu.layer3.andoroid-v4 .menulist--layer3 .menulist__item, .menu.layer3.andoroid-v4 .menulist--layer3 .menuitem {
  display: block
}

@media only screen and (orientation: landscape) {
  .menu.layer1.andoroid-v4 .menulist--layer1, .menu.andoroid-v4 .menulist--layer1 {
    height: 88%;
    height: calc(100% - 72px)
  }
  .menu.layer2.andoroid-v4 .menulist--layer1, .menu.layer3.andoroid-v4 .menulist--layer1, .menu.layer4.andoroid-v4 .menulist--layer1 {
    height: 100%
  }
  .menu.layer2.andoroid-v4 .menulist--layer2 {
    height: 69%;
    height: calc(100% - 115px)
  }
  .menu.layer3.andoroid-v4 .menulist--layer3 {
    height: 50%;
    height: calc(100% - 158px)
  }
  .navigation--fixed .menu.layer1.andoroid-v4 .menulist--layer1, .navigation--fixed .menulist--layer1 {
    height: 87.2%;
    height: calc(100% - 40px)
  }
  .navigation--fixed .menu.andoroid-v4 .menulist--layer3 {
    height: 75.6%;
    height: calc(100% - 83px)
  }
  .navigation--fixed .menu.layer2.andoroid-v4 .menulist--layer2 {
    height: 75.6%;
    height: calc(100% - 83px)
  }
  .navigation--fixed .menu.layer3.andoroid-v4 .menulist--layer3 {
    height: 64%;
    height: calc(100% - 126px)
  }
}

.android .menu.layer1 {
  height: calc(100% - 50px)
}

@media screen and (max-width: 767px) {
  .android .menu.layer1 .menulist--layer1 {
    height: 100%
  }
}

.ios .menu.layer1 {
  height: calc(100% - 60px)
}

.no-scroll {
  overflow: hidden;
  height: 100%
}

html.no-scroll body, html.no-scroll .container {
  overflow: hidden;
  height: 100%
}

.pc {
  display: none
}

@media screen and (min-width: 640px) {
  .pc {
    display: block
  }
}

.sp {
  display: block
}

@media screen and (min-width: 640px) {
  .sp {
    display: none
  }
}

.multitype {
  display: none
}

@media screen and (min-width: 640px) {
  .multitype {
    display: block
  }
}

@media screen and (min-width: 768px) {
  .multitype {
    display: none
  }
}

.twitter-link {
  vertical-align: text-bottom
}

@media screen and (max-width: 640px) {
  .twitter-link img {
    height: 20px
  }
}

.jumbotron-wrapper {
  background-color: #fff;
  padding-bottom: 36px
}

@media screen and (min-width: 640px) {
  .jumbotron-wrapper {
    padding-bottom: 50px
  }
}

.jumbotron-wrapper .slick-list {
  box-shadow: 4px 0 0 rgba(0, 0, 0, 0.08), -4px 0 0 rgba(0, 0, 0, 0.08)
}

.jumbotron-wrapper--one {
  padding-bottom: 0
}

.jumbotron-wrapper--top {
  overflow: hidden
}

.jumbotron-wrapper--top .jumbotron {
  position: relative
}

.jumbotron-wrapper--top .jumbotron .slick-list {
  overflow: visible
}

.jumbotron-wrapper--top .jumbotron .slick-slide {
  position: relative
}

.jumbotron-wrapper--top .jumbotron .slick-slide img {
  z-index: 10;
  opacity: 0.4;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  position: relative
}

@media screen and (max-width: 1024px) {
  .jumbotron-wrapper--top .jumbotron .slick-slide img {
    opacity: 1
  }
}

.jumbotron-wrapper--top .jumbotron .slick-slide:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1
}

@media screen and (max-width: 1024px) {
  .jumbotron-wrapper--top .jumbotron .slick-slide:before {
    content: none
  }
}

.jumbotron-wrapper--top .jumbotron .slick-current img, .jumbotron-wrapper--top .jumbotron .slick-current-clone-animate img {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease
}

.noscroll {
  overflow: hidden
}

.johnnys {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.modalBackdrop {
  display: none;
  position: fixed;
  z-index: 10000;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #faf3f0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}

.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}

.modal__inner {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch
}

.modal__content {
  padding: 40px 0
}

.modal__content02 {
  padding-top: 40px
}

@media screen and (min-width: 640px) {
  .modal__content {
    width: 640px;
    margin: 0 auto;
    padding-top: 90px
  }
  .modal__content02 {
    width: 640px;
    margin: 0 auto;
    padding-top: 90px
  }
}

@media screen and (min-width: 960px) {
  .modal__content02 {
    width: 960px
  }
}

@media screen and (min-width: 1280px) {
  .modal__content02 {
    width: 1280px
  }
}

.modalBackdrop2 {
  display: none;
  position: fixed;
  z-index: 10000;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #faf3f0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}

.modal2 {
  display: none;
  position: fixed;
  overflow-y: scroll;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}

.modalClose, .modalClose2 {
  display: none;
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 10002
}

.modalClose__image, .modalClose2__image {
  width: 18px
}

@media screen and (min-width: 640px) {
  .modalClose, .modalClose2 {
    display: none;
    top: 48px;
    right: 48px;
    cursor: pointer
  }
  .modalClose__image, .modalClose2__image {
    width: 36px
  }
}

@media screen and (min-width: 1280px) {
  .local-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #909090;
    background-color: rgba(0, 0, 0, 0.5)
  }
  .local-nav__list:before, .local-nav__list:after {
    content: '';
    display: table
  }
  .local-nav__list:after {
    clear: both
  }
  .local-nav__item {
    float: left;
    color: #fff
  }
  .local-nav__trigger {
    display: block;
    padding: 20px 25px;
    color: #fff
  }
}

.bottom-nav {
  margin-top: 40px;
  background-color: #fff
}

.bottom-nav__list {
  margin: 0 16px
}

.bottom-nav__item {
  border-bottom: 1px solid #e5e5e5
}

.bottom-nav__item:last-child {
  border-bottom: none
}

.bottom-nav__trigger {
  display: block;
  padding: 12px 10px 12px 0;
  position: relative
}

.bottom-nav__trigger:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 4px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -4px
}

@media screen and (min-width: 640px) {
  .bottom-nav {
    display: none
  }
}



#gf-goback{
  padding:36px 0;
  display:flex;
  align-items:center;
  justify-content:center;
}
#gf-goback .btn-default-ghost{
  display:flex;
  align-items:center;
  width:300px;
  border-radius:40px;
  padding:18px 60px;
  font-size:18px;
  font-weight:bold;
  justify-content:center;
}
#gf-sitemap{
  background: #F0F0F0;
  padding:48px 0;
}
#gf-sitemap a{
  color:#333;
  line-height:2.6;
  font-size:14px;
}
#gf-sitemap .head{
  border-bottom:1px solid #ddd;
  padding-bottom:18px;
  margin-bottom:18px;
}
#gf-sitemap .head h5{
  font-size:18px;
}
#gf-sns-nav{
  text-align:center;
  padding:36px 0;
}
#gf-sns-nav .sns-icons{
  justify-content:center;
}
#gf-sns-nav .sns-icons .sns-icon{
  font-size:24px;
}
#gf-sns-nav .sns-icons .sup {
  font-size: 14px;
  margin-right: 0px;
  width: 100%;
  margin-bottom: 30px;
  color: gray;
}
#gf-legal{
  font-size:12px;
  color:#666;
  text-align:center;
  padding-bottom:36px;
}
#gf-legal a{
  color:#333;
}
#gf-legal ul{
  margin-bottom:18px;
  line-height:1;
}
#gf-legal ul li {
  display: inline-block;
  padding: 0 8px;
  margin: 8px 0;
}
#gf-legal ul li:not(:last-child){
  border-right:1px solid #e7e7e7;
}
