@charset "UTF-8";
/* /////////////////////////////////

  _common.scss

///////////////////////////////// */
/*---------------------------------
  Base
---------------------------------*/
body {
  min-width: 1200px;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.inner {
  width: 1200px;
  margin: 0 auto;
}

.container {
  padding-top: 20px;
}

.content {
  width: 960px;
  margin: 0 auto;
  background: #fff;
}

.mincho {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}

@media screen and (max-width: 768px) {
  body {
    min-width: auto;
  }

  .inner {
    width: 100%;
    padding: 0 15px;
  }
}
/*---------------------------------
  header
---------------------------------*/
#adminBox + .body header .searchMenu--box {
  transform: translateY(-200%);
}

.header {
  width: 100%;
  background: url(../images/common/bg_header.jpg) no-repeat center center/cover;
}
.header--logo {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
}
.header--logo:hover {
  opacity: 0.5;
}
.header--wrap {
  height: 125px;
  display: flex;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.header--wrap::after {
  content: none;
}

.purposeNav {
  position: relative;
  top: 35px;
}
.purposeNav--list {
  display: flex;
  justify-content: flex-end;
}
.purposeNav--item {
  display: inline-block;
  margin-right: 20px;
}
.purposeNav--item a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  border: 1px solid #fff;
  border-radius: 30px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}
.purposeNav--item a:hover {
  background: #ffffff;
  color: #333333;
}
.purposeNav--item.active a {
  background: #ffffff;
  color: #333333;
  font-weight: bold;
}

.hambergerMenu {
  display: none;
}

@media screen and (max-width: 768px) {
  .header--logo {
    max-width: 35vw;
    top: 90px;
  }
  .header--wrap {
    display: block;
    height: 140px;
  }

  .purposeNav {
    width: 100%;
    padding: 10px 60px 10px 0;
    background: rgba(255, 255, 255, 0.5);
    top: 0;
    left: 0;
  }
  .purposeNav--list {
    justify-content: center;
    top: auto;
  }
  .purposeNav--item {
    margin-right: 0;
  }
  .purposeNav--item:first-of-type {
    margin-right: 20px;
  }

  .menuBtn {
    width: 60px;
    height: 60px;
    background: #000;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
  }
  .menuBtn--wrap {
    width: 25px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menuBtn--bar {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
  }
  .menuBtn--bar:nth-child(1) {
    top: 0;
  }
  .menuBtn--bar:nth-child(2) {
    top: 50%;
  }
  .menuBtn--bar:nth-child(3) {
    top: 100%;
  }
  .menuBtn.on .menuBtn--bar:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  .menuBtn.on .menuBtn--bar:nth-child(2) {
    display: none;
  }
  .menuBtn.on .menuBtn--bar:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }

  .hambergerMenu {
    display: none !important;
    width: 100%;
    height: 100vh;
    padding: 20px 15px;
    background: #eeeeee;
    overflow-y: scroll;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
  }
  .hambergerMenu.on {
    display: block !important;
  }
  .hambergerMenu--search {
    margin: 25px 0;
    position: relative;
  }
  .hambergerMenu--searchIcon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
  .hambergerMenu--search .gsc-control-cse {
    border-color: transparent;
    background-color: transparent;
    padding: 0;
  }
  .hambergerMenu--search .gsc-search-box,
.hambergerMenu--search .gsc-search-box * {
    margin: 0 !important;
    padding: 0 !important;
    border: none;
    line-height: 1;
  }
  .hambergerMenu--search .gsc-search-button {
    display: none;
  }
  .hambergerMenu--search .search_unit svg {
    fill: #29b37a;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    z-index: 1;
  }
  .hambergerMenu--search .gsc-control-searchbox-only,
.hambergerMenu--search .gsc-search-box {
    height: 100% !important;
  }
  .hambergerMenu--search .gsc-search-box,
.hambergerMenu--search .gsc-input {
    border-radius: 0;
  }
  .hambergerMenu--search input.gsc-input {
    min-width: 100%;
    height: 40px !important;
    padding: 0 0 0 10px !important;
    border: 1px solid #cccccc !important;
  }
  .hambergerMenu--search .gsib_b {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .hambergerMenu--search .gsib_b .gscb_a {
    color: #999;
  }
  .hambergerMenu--lang {
    padding: 20px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  .hambergerMenu--langTitle {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.6rem;
  }
  .hambergerMenu--langList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .hambergerMenu--langItem {
    width: 31%;
    margin: 10px 3.5% 0 0;
    position: relative;
  }
  .hambergerMenu--langItem:nth-child(3n) {
    margin-right: 0;
  }
  .hambergerMenu--langItem a {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    background: #ccc;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
  }
  .hambergerMenu--langItem.on a {
    background: #000000;
  }

  .spGlobalNav--tabs {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    width: 100vw;
    margin: 20px -15px 0;
    padding: 0 15px;
    border-bottom: 1px solid #000;
  }
  .spGlobalNav--tab {
    width: 150px;
    height: 45px;
    line-height: 45px;
    background: #dddddd;
    text-align: center;
    font-size: 1.5rem;
  }
  .spGlobalNav--tab.on {
    background: #000000;
    color: #ffffff;
  }
  .spGlobalNav--body {
    display: none;
  }
  .spGlobalNav--body.on {
    display: block;
  }
  .spGlobalNav--list {
    width: 100vw;
    margin: 10px -15px 0;
    padding: 0 15px;
    border-bottom: 1px solid #000;
  }
  .spGlobalNav--item {
    border-bottom: 1px solid #ddd;
    padding-left: 65px;
    position: relative;
  }
  .spGlobalNav--item a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 1.6rem;
    text-decoration: none;
  }
  .spGlobalNav--item:last-of-type {
    border: none;
  }
  .spGlobalNav--icon {
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translate(-50%, -50%) scale(0.5);
  }
  .spGlobalNav--about {
    margin: 20px 0 0;
  }
  .spGlobalNav--aboutTitle {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #000000;
    color: #ffffff;
    text-align: center;
  }
  .spGlobalNav--aboutList {
    width: 100vw;
    margin: 0 -15px;
    padding: 0 15px;
    border-bottom: 1px solid #000;
  }
  .spGlobalNav--aboutItem {
    border-bottom: 1px solid #ddd;
  }
  .spGlobalNav--aboutItem a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 1.6rem;
  }
  .spGlobalNav--aboutItem:last-of-type {
    border: none;
  }
  .spGlobalNav--utilityItem {
    margin-top: 1px;
  }
  .spGlobalNav--utilityItem a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #dddddd;
    font-size: 1.6rem;
    text-align: center;
    text-decoration: none;
  }
}
.langMenu {
  width: 150px;
  height: 70px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  text-align: center;
  color: #ffffff;
  position: relative;
  cursor: pointer;
}
.langMenu--btn {
  letter-spacing: 1px;
  font-size: 1.5rem;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.langMenu--nav {
  display: none;
  width: 150px;
  background: #000000;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
.langMenu--nav a {
  display: block;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  text-decoration: none;
}
.langMenu--item {
  border: 1px solid #000;
  position: relative;
}
.langMenu--item.active {
  background: #ffffff;
}
.langMenu--item.active a {
  color: #000000;
}
.langMenu--item::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: rotate(45deg) translateY(-50%);
}
.langMenu:hover .langMenu--nav {
  display: block;
}

.searchMenu {
  width: 60px;
  height: 70px;
}
.searchMenu--btn {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.searchMenu--btn img {
  position: relative;
  top: 15px;
}
.searchMenu--box {
  width: 100%;
  padding: 115px 40px 27px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}
.searchMenu--box .gsc-control-cse {
  border-color: transparent;
  background-color: transparent;
  padding: 0;
}
.searchMenu--box .gsc-search-box,
.searchMenu--box .gsc-search-box * {
  margin: 0 !important;
  padding: 0 !important;
  border: none;
  line-height: 1;
}
.searchMenu--box .gsc-search-button {
  width: 100px;
  height: 100%;
}
.searchMenu--box .search_unit svg {
  fill: #29b37a;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  z-index: 1;
}
.searchMenu--box .gsc-control-searchbox-only,
.searchMenu--box .gsc-search-box {
  height: 100% !important;
}
.searchMenu--box .gsc-search-box,
.searchMenu--box .gsc-input {
  border-radius: 0;
}
.searchMenu--box input.gsc-input {
  min-width: 100%;
  height: 40px !important;
  padding: 0 0 0 10px !important;
}
.searchMenu--box .gsib_b {
  position: relative;
  right: 20px;
}
.searchMenu--box .gsib_b .gscb_a {
  color: #999;
}
.searchMenu--box .gsc-results-wrapper-visible {
  height: 90vh;
  z-index: 999999;
}
.searchMenu--box .gsc-modal-background-image {
  height: 100vh;
}
.searchMenu--box .header .lang_area {
  margin-left: 40px;
  position: relative;
}
.searchMenu:hover .searchMenu--box {
  opacity: 1;
  transform: translateY(0);
}

/*---------------------------------
  Global Navigation
---------------------------------*/
.globalNav.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.globalNav--list {
  display: flex;
  justify-content: center;
  height: 60px;
  background: #000000;
}
.globalNav--item {
  display: inline-block;
  padding: 0 30px;
  text-align: center;
  position: relative;
}
.globalNav--item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 1.4rem;
  color: #ffffff;
  white-space: nowrap;
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s ease;
}
.globalNav--item a img {
  margin-top: 5px;
}
.globalNav--item a:hover {
  opacity: 0.5;
}
.globalNav--item::after {
  content: "/";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  color: #ffffff;
}
.globalNav--item:last-of-type::after {
  content: none;
}

@media screen and (max-width: 768px) {
  .globalNav {
    display: none;
  }
  .globalNav.fixed {
    display: none;
  }
  .globalNav--list {
    flex-wrap: wrap;
  }
  .globalNav--item {
    width: 25%;
  }
  .globalNav--item a {
    font-size: 1.1rem;
  }
}
/*---------------------------------
  Page Title
---------------------------------*/
.pageTitle {
  width: 100%;
  padding: 0 20px 80px;
  position: relative;
}
.pageTitle--heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  height: 100%;
  letter-spacing: 5px;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 3.4rem;
}
.pageTitle--en {
  display: block;
  letter-spacing: 0;
  font-size: 1.2rem;
}
.pageTitle::after {
  content: "";
  display: block;
  visibility: visible;
  width: 90px;
  height: 3px;
  background: #000;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .pageTitle {
    margin: 40px 0 0;
    padding: 0 20px 50px;
  }
  .pageTitle--heading {
    font-size: 2.4rem;
  }
  .pageTitle::after {
    width: 60px;
    bottom: 20px;
  }
}
/*---------------------------------
  Breadcrumb List
---------------------------------*/
.breadCrumb {
  width: 95vw;
  margin: 10px auto;
}
.breadCrumb--item {
  display: inline-block;
  list-style: none;
  position: relative;
  font-size: 1.2rem;
}
.breadCrumb--item a {
  font-size: 1.2rem;
  text-decoration: underline;
}
.breadCrumb--item::before {
  content: none;
}
.breadCrumb--item::after {
  content: "　»　";
}
.breadCrumb--item:last-child::after {
  content: none;
}

@media screen and (max-width: 768px) {
  .breadCrumb {
    display: none;
  }
}
/*---------------------------------
  navgation area
---------------------------------*/
.navigationArea {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}
.navigationArea::after {
  content: none;
}

/*---------------------------------
  Anchor Link
---------------------------------*/
.anchorLink {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.anchorLink--item {
  min-width: 23%;
  margin: 10px;
}
.anchorLink--item a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  text-align: center;
  border: 1px solid #000;
  text-decoration: none !important;
  position: relative;
  transition: all 0.3s ease;
}
.anchorLink--item a:hover {
  opacity: 0.5;
}
.anchorLink--item a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-bottom: solid 2px #000;
  border-right: solid 2px #000;
  position: absolute;
  top: 45%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
}

@media screen and (max-width: 768px) {
  .anchorLink {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .anchorLink--item {
    width: calc(50% - 10px);
    margin: 20px 0 0;
  }
  .anchorLink--item:nth-of-type(2n) {
    margin-left: 20px;
  }
  .anchorLink--item a {
    height: auto;
    padding: 10px 30px 10px 20px;
    line-height: 1.4;
  }
}
/*---------------------------------
  Banner Area
---------------------------------*/
/*---------------------------------
  Pagetop Button
---------------------------------*/
/*---------------------------------
  footer
---------------------------------*/
.footer {
  width: 100%;
  background: #fafafa;
  position: relative;
}
.footer div, .footer a {
  text-decoration: none;
}
.footer .pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.banner {
  padding: 60px 0;
  background: #fff;
}
.banner--list {
  margin: 0 !important;
}
.banner--item {
  opacity: 1;
  transition: all 0.3s ease;
}
.banner--item:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .banner--list {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 0 !important;
  }
  .banner--item {
    margin: 0 5px;
  }
}
.megaMenu {
  display: flex;
  justify-content: space-between;
}
.megaMenu--column {
  width: 30%;
}
.megaMenu--title {
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  position: relative;
}
.megaMenu--title::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #dddddd;
  position: absolute;
  bottom: 0;
  left: 0;
}
.megaMenu--title::after {
  content: "";
  display: block;
  width: 25%;
  height: 3px;
  background: #000000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.megaMenu--list {
  padding: 20px 25px 0;
}
.megaMenu--item {
  display: inline-block;
  margin: 10px 2em 0 0;
  opacity: 1;
  transition: all 0.3s ease;
}
.megaMenu--item:hover {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .megaMenu {
    display: none;
  }
}
.utilityLink--list {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 30px 0 0 !important;
  padding: 30px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.utilityLink--item {
  padding: 0 1.5em;
  position: relative;
}
.utilityLink--item a {
  font-weight: bold;
  opacity: 1;
  transition: all 0.3s ease;
}
.utilityLink--item a:hover {
  opacity: 0.5;
}
.utilityLink--item::after {
  content: "/";
  display: block;
  position: absolute;
  top: 0;
  right: -0.4em;
}
.utilityLink--item:last-of-type::after {
  content: none;
}

@media screen and (max-width: 768px) {
  .utilityLink {
    display: none;
  }
}
.towerInfo, .spTowerInfo {
  display: flex;
  justify-content: flex-start;
  padding: 40px 0;
  position: relative;
}
.towerInfo--logo, .spTowerInfo--logo {
  margin-right: 20px;
}
.towerInfo--company, .spTowerInfo--company {
  font-weight: bold;
  margin-right: 20px;
  text-align: center;
}
.towerInfo--company span, .spTowerInfo--company span {
  display: block;
}
.towerInfo--address, .spTowerInfo--address {
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.6;
}
.towerInfo--sns, .spTowerInfo--sns {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.towerInfo--sns a, .spTowerInfo--sns a {
  opacity: 1;
  transition: all 0.3s ease;
}
.towerInfo--sns a:hover, .spTowerInfo--sns a:hover {
  opacity: 0.5;
}
.towerInfo--twitter, .spTowerInfo--twitter {
  margin: 0 20px;
}

.copyright {
  padding: 0 0 40px;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .footer {
    background: #eeeeee;
  }

  .banner {
    background: #ffffff;
    padding: 30px 0 !important;
  }

  .towerInfo, .spTowerInfo {
    display: block;
    padding: 30px 0;
  }
  .towerInfo--logo, .spTowerInfo--logo {
    text-align: center;
  }
  .towerInfo--company, .spTowerInfo--company {
    margin: 15px 0 0;
    font-size: 1.6rem;
  }
  .towerInfo--address, .spTowerInfo--address {
    margin: 15px 0 0;
    text-align: center;
    font-size: 1.4rem;
  }
  .towerInfo--sns, .spTowerInfo--sns {
    margin: 25px 0 0;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }
  .towerInfo--facebook, .spTowerInfo--facebook {
    margin: 0 20px 0 0;
  }
}