@charset "utf-8";

.sideLogo {
  width: 70px;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1350;
}

@media screen and (min-width: 900px){
  .sideLogo {
    margin: 0 auto 30px;
    max-width: 316px;
    width: auto;
    position: static;
  }
}



/*
  全体
========================================== */


@media screen and (max-width: 899.9px){
  .header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    /* z-index: 1350; */
    height: 80px;
    background: url(../../images/main/common/bg_pattern.png);
  }

  #contents_main {
    padding-top: 80px;
  }

}

@media screen and (max-width: 899.9px){
  .drawer {
    position: fixed;
    z-index: 1300;
    top: -50px;
    right: 0;
    bottom: -50px;
    left: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 150px 30px 110px;
    transition: .3s;
  }  

  #g_navi:not(.is-open) .drawer {
    opacity: 0;
    pointer-events: none;
  }
}

@media screen and (min-width: 900px){
  .drawer {
    margin: 0 auto;
    width: fit-content;
  }

  .drawer__inner {
    text-align: center;
  }

  .drawer__text {
    margin: 0 auto;
    display: inline-block;
    text-align: left;
  }
}

/*
  オーバーレイ
========================================== */

.navOverlay {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    url(../../images/main/common/bg_menu_sp.png);
  transition: .3s;
  pointer-events: none;
}



#g_navi:not(.is-open) .navOverlay {
  opacity: 0;
}

@media screen and (min-width: 900px){
  .navOverlay {
    display: none;
  }
}

/*
  ナビ
========================================== */

.globalNavi {
  color: #fff;
  line-height: 1;
  font-size: 1.8rem;
}

@media screen and (min-width: 900px){
  .globalNavi {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: .05em;
    font-family: YakuHanJPs, "Roboto", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  }
}

.globalNavi>ul {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 900px){
  .globalNavi>ul {
    display: block;
    margin-bottom: 30px;
  }
}

.globalNavi li {
  width: 50%;
  margin: 0 0 .5em;
}

@media screen and (min-width: 900px){
  .globalNavi li {
    width: auto;
  }
}

.globalNavi>ul>li>span,
.globalNavi a {
  color: inherit;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 1em 1em 1em 0;
  font-weight: 700;
  font-family: YakuHanJPs, "Roboto", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

@media screen and (min-width: 900px){
  .globalNavi>ul>li>span,
  .globalNavi a {
    padding: .4em 0 .4em 0;
  }
}

.globalNavi>ul>li>span {
  padding-left: .2em;
  opacity: .2;
}

.globalNavi a span {
  display: inline-block;
  position: relative;
  padding: 0 .1em .1em .2em;
}

.globalNavi a.crt span {
  background: #fff;
}


.globalNavi a.crt{
  color: #0a1824;
}



/*
  メニューアイコン
========================================== */

.menuButton {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 1400;
  width: 60px;
  height: 60px;
  line-height: 1;
}

@media screen and (min-width: 900px){
  .menuButton {
    display: none;
  }
}

.menuIcon {
  position: relative;
  width: 40px;
  height: 40px;
  margin: auto;
  padding: 10px;
}

.menuIcon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #916D24;
  transform: rotate(45deg);
  background: rgba(255, 235, 193, .25);
}

.menuIcon__line {
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  margin: auto;
  width: 60%;
  height: 2px;
  background: #DCAB47;
  transition: .3s;
}

.menuIcon__line:nth-child(1) {
  top: 30%;
}

.menuIcon__line:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.menuIcon__line:nth-child(3) {
  bottom: 30%;
}

#g_navi.is-open .menuIcon::before {
  /* background: #cbd4d9; */
}

#g_navi.is-open .menuIcon__line {
  /* background-color: #0a1824; */
}

#g_navi.is-open .menuIcon__line:nth-child(1) {
  transform: rotate(45deg);
  top: calc(50% - .5px);
}

#g_navi.is-open .menuIcon__line:nth-child(2) {
  transform:  scale(0);

}

#g_navi.is-open .menuIcon__line:nth-child(3) {
  bottom: calc(50% - .5px);
  transform: rotate(-45deg);
}


/*
  lang switch
========================================== */

.langSwitchList {
  display: flex;
  margin: 0 0 40px;
}

@media screen and (min-width: 900px){
  .langSwitchList {
    /* margin-left: 5rem; */
  }
}

.langSwitchList button {
  white-space: nowrap;
  padding: .4em 1em .5em .8em;
  display: inline-flex;
  transition: .3s;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .06em;
  align-items: center;
  color: #fff;
  background: #011E30;
  line-height: 1;
}

@media screen and (min-width: 900px){
  .langSwitchList button {
    font-size: 1.4rem;
    padding: .25em .7em .3em .7em;
  }
}

.langSwitchIcon {
  margin: 0 1em 0 0;
}

@media screen and (min-width: 900px){
  .langSwitchIcon {
    margin-right: .7em;
  }
}

body:not(#layout4) .langSwitchList>li>button.is-disable {
  opacity: .5;
  pointer-events: none;
  position: relative;
  overflow: hidden;
}

body:not(#layout4) .langSwitchList>li>button.is-disable::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 2px;
  margin: auto;
  background: #bac7e2;
  transform: rotate(-10deg);
}

.langSwitchList button:hover {
  opacity: .6;
}

.langSwitchList button.is-crt{
  display: none;
}

/*
  banner
========================================== */

#bnu_003_t {
  max-width: 223px;
  margin: 0 auto 40px;
}

#bnu_003_t p {
  margin: 0 0 10px;
}

/*
  share
========================================== */

.drawer__share {
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: .05em;
}

@media screen and (min-width: 900px){
  .drawer__share {
    display: none;
  }
}

.footerShare__head {
  font-size: 1.4rem;
}

.socialList {
  display: flex;
  margin: 10px 0;
}

.drawer__share .socialList {
  justify-content: center;
}

.drawer__share .socialList>li {
  margin: 0 12px;
}

.footerShare .socialList {
  margin: 0 0 40px 0;
  margin-left: -13px;
}

.footerShare .socialList>li {
  margin: 0 10px 0 0;
}

#bnu_001_t {
  text-align: center;
}