@charset "UTF-8";
/*******************************************************************************
body
*******************************************************************************/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  font-size: 16px;
  color: #000;
}

/*******************************************************************************
wrapper
*******************************************************************************/
.wrapper {
  width: 100%;
}

/*******************************************************************************
a
*******************************************************************************/
a {
  color: #000;
  -webkit-transition: opacity .6s;
  transition: opacity .6s;
}
a:hover {
  opacity: .5;
}

/*******************************************************************************
display block none class
*******************************************************************************/
.pcdb_tbdn {
  display: block;
}
@media screen and (max-width: 896px) {
  .pcdb_tbdn {
    display: none;
  }
}

.pcdb_spdn {
  display: block;
}
@media screen and (max-width: 480px) {
  .pcdb_spdn {
    display: none;
  }
}

.tbdb {
  display: none;
}
@media screen and (max-width: 896px) {
  .tbdb {
    display: block;
  }
}

.spdb {
  display: none;
}
@media screen and (max-width: 480px) {
  .spdb {
    display: block;
  }
}

/*******************************************************************************
noticeFrame
*******************************************************************************/
.noticeFrame {
  display: inline-block;
  background: #f6f6f6;
  text-align: center;
  font-size: 10px;
  border: 1px solid #979797;
  border-radius: 4px;
}
.noticeFrame a {
  display: block;
  width: 100%;
  height: 100%;
}

/*******************************************************************************
overray
*******************************************************************************/
.overray {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  display: none;
  -webkit-transition: opacity .8s, visibility .8s;
  transition: opacity .8s, visibility .8s;
}
@media screen and (max-width: 896px) {
  .overray {
    display: block;
  }
}

@media screen and (max-width: 896px) {
  .overray--js {
    opacity: 1;
    visibility: visible;
  }
}
/*******************************************************************************
header
*******************************************************************************/
.header {
  height: 160px;
  background: #efefef;
}
@media screen and (max-width: 896px) {
  .header {
    height: 96px;
    width: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
  }
}

.header__inner {
  width: 1120px;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 896px) {
  .header__inner {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-box-align: center;
            align-items: center;
  }
}

.header__logo {
  width: 185px;
  padding-top: 48px;
}
@media screen and (max-width: 896px) {
  .header__logo {
    width: 160px;
    margin: 0 auto;
    padding-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .header__logo {
    width: 144px;
  }
}
.header__logo img {
  width: 100%;
}

/*******************************************************************************
nav
*******************************************************************************/
.nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: end;
          align-items: flex-end;
  padding-top: 40px;
  margin-left: auto;
}
@media screen and (max-width: 896px) {
  .nav {
    margin-left: 0;
    position: fixed;
    z-index: 1;
    top: 96px;
    right: -70vw;
    /* common.jsのrightValの値と同じ値 */
    width: 70vw;
    /* common.jsのrightValの値と同じ値 */
    height: calc(100vh - 96px);
    background: #efefef;
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
  }
}
.nav ul {
  display: -webkit-box;
  display: flex;
}
@media screen and (max-width: 896px) {
  .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.nav__utility {
  font-size: 11px;
  margin-bottom: 24px;
}
@media screen and (max-width: 896px) {
  .nav__utility {
    margin-bottom: 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .nav__utility {
    font-size: 13px;
  }
}
.nav__utility li {
  letter-spacing: 0.05em;
}
.nav__utility li:not(:last-child) {
  margin-right: 16px;
}
@media screen and (max-width: 896px) {
  .nav__utility li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.nav__utility li.nav__access {
  cursor: pointer;
  -webkit-transition: opacity .6s;
  transition: opacity .6s;
}
.nav__utility li.nav__access:hover {
  opacity: .5;
}

@media screen and (max-width: 896px) {
  .nav__global {
    margin-bottom: 32px;
  }
}
.nav__global li {
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 480px) {
  .nav__global li {
    font-size: 14px;
  }
}
.nav__global li:not(:last-child) {
  margin-right: 16px;
}
@media screen and (max-width: 896px) {
  .nav__global li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.nav__global li:nth-child(1) {
  width: 176px;
}
.nav__global li:nth-child(2) {
  width: 112px;
}
.nav__global li:nth-child(3) {
  width: 176px;
}
.nav__global li:nth-child(4) {
  width: 160px;
}
.nav__global li a {
  padding: 5px 0;
}
.nav__global li _:lang(x)::-ms-backdrop,
.nav__global li a {
  padding: 9px 0 0;
}

/*******************************************************************************
humberger
*******************************************************************************/
.humberger {
  display: none;
}
@media screen and (max-width: 896px) {
  .humberger {
    cursor: pointer;
    background: #e95019;
    background-clip: content-box;
    position: absolute;
    top: 50%;
    right: calc( 5% - 16px );
    padding: 16px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
  }
}
.humberger:hover {
  opacity: .5;
}
.humberger span {
  display: block;
  width: 32px;
  height: 2px;
  background: #fff;
}
.humberger span:not(:last-child) {
  margin-bottom: 8px;
}

/*******************************************************************************
main
*******************************************************************************/
.main {
  padding-bottom: 112px;
}
@media screen and (max-width: 896px) {
  .main {
    padding-top: 96px;
    padding-bottom: 64px;
  }
}

/*******************************************************************************
footer
*******************************************************************************/
.footer {
  font-size: 12px;
  padding-bottom: 98px;
  background: #efefef;
  position: relative;
}
@media screen and (max-width: 896px) {
  .footer {
    padding: 0 5%;
  }
}

.footer__backTop {
  position: fixed;
  z-index: 1;
  right: calc( (100% - 1120px) / 2 );
  bottom: 76px;
  top: auto;
  width: 60px;
  height: 60px;
  padding-top: 10px;
  border-radius: 25px;
  background: #fff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.05em;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .6s, visibility .6s;
  transition: opacity .6s, visibility .6s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) inset;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
@media screen and (max-width: 896px) {
  .footer__backTop {
    width: 100%;
    display: none;
  }
}
.footer__backTop::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 10px;
  height: 7px;
  background: url(../img/common/backTop.svg) center center/cover no-repeat;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer__backTop::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0);
  -webkit-transition: background-color .6s;
  transition: background-color .6s;
}
.footer__backTop:hover::after {
  background-color: rgba(255, 255, 255, 0.5);
}

.footer__backTop--fixed {
  position: absolute;
  top: -76px;
  bottom: auto;
}

.footer__backTop--show {
  opacity: 1;
  visibility: visible;
}

.footer__inner {
  width: 1120px;
  margin: 0 auto;
}
@media screen and (max-width: 896px) {
  .footer__inner {
    width: 100%;
  }
}

.footer__info {
  display: -webkit-box;
  display: flex;
  margin-bottom: 48px;
}
@media screen and (max-width: 896px) {
  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.footer__etc {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 896px) {
  .footer__etc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    padding-bottom: 48px;
  }
}

.footer__etc__copy {
  font-size: 12px;
  letter-spacing: 0.05em;
}

.footer__etc__support {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 896px) {
  .footer__etc__support {
    margin-bottom: 16px;
  }
}
.footer__etc__support li:not(:last-child) {
  margin-right: 32px;
}
@media screen and (max-width: 480px) {
  .footer__etc__support li:not(:last-child) {
    margin-right: 16px;
  }
}
.footer__etc__support li:nth-child(1) {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 4px;
}
@media screen and (max-width: 480px) {
  .footer__etc__support li:nth-child(1) {
    font-size: 12px;
  }
}
.footer__etc__support li:nth-child(2) img {
  width: 127px;
  margin-bottom: 2px;
}
@media screen and (max-width: 480px) {
  .footer__etc__support li:nth-child(2) img {
    width: 96px;
  }
}
.footer__etc__support li:nth-child(3) img {
  width: 74px;
}
@media screen and (max-width: 480px) {
  .footer__etc__support li:nth-child(3) img {
    width: 64px;
  }
}

/*******************************************************************************
info
*******************************************************************************/
.info {
  width: 208px;
  padding-top: 64px;
  margin-right: 112px;
}

.info__about {
  margin-bottom: 16px;
}

.info__about__title {
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.info__about__txt:not(:last-child) {
  margin-bottom: 8px;
}
.info__about__txt:last-child {
  letter-spacing: 0.05em;
  text-decoration: underline;
}

.info__access {
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.info__access.noticeFrame {
  min-width: 112px;
}
.info__access.noticeFrame a {
  padding: 3px 0;
}
.info__access.noticeFrame _:lang(x)::-ms-backdrop,
.info__access.noticeFrame a {
  padding: 9px 0 6px;
  line-height: 1;
}

.info__sns {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
          align-items: flex-end;
}

.info__sns__title {
  display: inline;
  line-height: 1;
  font-size: 12px;
  font-weight: bold;
  margin-right: 16px;
  letter-spacing: 0.05em;
}

.info__sns__fb {
  margin-right: 16px;
  margin-bottom: -1px;
}
.info__sns__fb img {
  width: 20px;
}

.info__sns__insta {
  margin-bottom: -2px;
}
.info__sns__insta img {
  width: 22px;
}

/*******************************************************************************
googleUtility
*******************************************************************************/
.googleUtility {
  display: -webkit-box;
  display: flex;
}
@media screen and (max-width: 896px) {
  .googleUtility {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

/*******************************************************************************
map pc
*******************************************************************************/
.map {
  padding-top: 64px;
  margin-right: 20px;
}
@media screen and (max-width: 896px) {
  .map {
    margin-right: 0;
    padding-top: 32px;
  }
}

.map__gmap {
  width: 390px;
  margin-bottom: 8px;
}
@media screen and (max-width: 896px) {
  .map__gmap {
    width: 100%;
  }
}
.map__gmap img {
  width: 100%;
}

.map__link {
  letter-spacing: 0.05em;
}

/*******************************************************************************
calendar pc
*******************************************************************************/
.calendar {
  padding-top: 64px;
  width: 390px;
}
@media screen and (max-width: 896px) {
  .calendar {
    width: 100%;
    padding-top: 32px;
  }
}

.calendar__gcalendar {
  height: 280px;
}
@media screen and (max-width: 896px) {
  .calendar__gcalendar {
    height: 500px;
  }
}
@media screen and (max-width: 480px) {
  .calendar__gcalendar {
    height: 350px;
  }
}
