@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/*---------------
   追加 reset
---------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

li {
  list-style: none;
}

/*---------------
   共通
---------------*/
html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  width: 100%;
  min-width: 1200px;
  background: url("../images/main_mv.jpg") bottom center repeat;
  background-size: 100% auto;
  color: #000;
  font-family: "游ゴシック体","Yu Gothic", YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-size: 1.6rem;
  letter-spacing: .1em;
  text-indent: .1em;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  -ms-font-feature-settings: "palt";
  -o-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media screen and (max-width: 640px) {
  body {
    min-width: 100%;
    font-size: calc((24/760)*100vw);
  }
}

a:hover img {
  opacity: .6;
  transition: .5s;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  vertical-align: bottom;
}

.text_red {
  color: #D80000;
}

.inner {
  width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 640px) {
  .inner {
    width: 100%;
    min-width: 100%;
    padding: 0 calc((30/760)*100vw);
  }
}

.anchor {
  margin-top: -110px;
  padding-top: 110px;
}
@media screen and (max-width: 640px) {
  .anchor {
    margin-top: calc((-130/760)*100vw);
    padding-top: calc((130/760)*100vw);
  }
}

.flex_wrap {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .sp {
    display: inherit !important;
  }
}

/*---------------
   header
---------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1200px;
  height: 110px;
  padding: 50px 0 30px;
  z-index: 9999;
}
@media screen and (max-width: 640px) {
  .header {
    right: 0;
    left: auto;
    width: calc((130/760)*100vw);
    min-width: calc((130/760)*100vw);
    height: calc((130/760)*100vw);
    padding: 0;
  }
}
.header.change_color {
  background: rgba(0, 0, 0, 0.6);
}
.header .gnav_button {
  display: none;
}
@media screen and (max-width: 640px) {
  .header .gnav_button {
    position: fixed;
    top: calc((20/760)*100vw);
    right: calc((20/760)*100vw);
    display: block;
    background: url("../images/menu.png") top center no-repeat;
    background-size: contain;
    border: none;
    padding: 0;
    width: calc((80/760)*100vw);
    height: calc((80/760)*100vw);
    cursor: pointer;
    z-index: 1001;
    outline: none;
  }
}
.header .gnav_button.active {
  background: url("../images/menu_open.png") top center no-repeat;
  background-size: contain;
}
.header .gnav_menu {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 640px) {
  .header .gnav_menu {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    padding: calc((140/760)*100vw) calc((30/760)*100vw) calc((60/760)*100vw);
  }
}
.header .gnav_menu li {
  margin: 0 30px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #FFF;
}
@media screen and (max-width: 640px) {
  .header .gnav_menu li {
    width: 100%;
    margin: 0;
    border-bottom: #FFF 1px dotted;
    font-size: calc((28/760)*100vw);
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .header .gnav_menu li:first-child {
    border-top: #FFF 1px dotted;
  }
}
.header .gnav_menu li a {
  display: block;
  padding: 0 10px;
  height: 29px;
}
@media screen and (max-width: 640px) {
  .header .gnav_menu li a {
    height: auto;
    margin: 0;
    padding: calc((30/760)*100vw);
  }
}
.header .gnav_menu li a:hover {
  position: relative;
  background: #FFF;
  color: #000;
}
.header .gnav_menu li a:hover:before {
  position: absolute;
  top: 0;
  left: -28px;
  content: '';
  width: 0;
  height: 0;
  border: transparent 15px solid;
  border-right: #FFF 15px solid;
}
@media screen and (max-width: 640px) {
  .header .gnav_menu li a:hover:before {
    content: none;
  }
}
.header .gnav_menu li a:hover:after {
  position: absolute;
  top: 0;
  right: -28px;
  content: '';
  width: 0;
  height: 0;
  border: transparent 15px solid;
  border-left: #FFF 15px solid;
}
@media screen and (max-width: 640px) {
  .header .gnav_menu li a:hover:after {
    content: none;
  }
}
.header .gnav_menu li.current a {
  position: relative;
  background: #FFF;
  color: #000;
}
.header .gnav_menu li.current a:before {
  position: absolute;
  top: 0;
  left: -28px;
  content: '';
  width: 0;
  height: 0;
  border: transparent 15px solid;
  border-right: #FFF 15px solid;
}
@media screen and (max-width: 640px) {
  .header .gnav_menu li.current a:before {
    content: none;
  }
}
.header .gnav_menu li.current a:after {
  position: absolute;
  top: 0;
  right: -28px;
  content: '';
  width: 0;
  height: 0;
  border: transparent 15px solid;
  border-left: #FFF 15px solid;
}
@media screen and (max-width: 640px) {
  .header .gnav_menu li.current a:after {
    content: none;
  }
}
@media screen and (max-width: 640px) {
  .header .gnav_menu_wrapper {
    width: 100%;
    transition: all 0.2s;
    transform: translate(100%);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@media screen and (max-width: 640px) {
  .header .gnav_menu_wrapper.open {
    transform: translate(0);
  }
}

/*---------------
   main
---------------*/
.lttl {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  justify-content: center;
  width: 95%;
  margin: 0 auto 40px;
  background: url("../images/lttl_bg.png") top 50% center no-repeat;
  background-size: contain;
  color: #000;
  font-size: 3.0rem;
  font-weight: bold;
  text-align: center;
  line-height: 2.0;
}
@media screen and (max-width: 640px) {
  .lttl {
    width: 90%;
    margin-bottom: calc((50/760)*100vw);
    background: url("../images/lttl_bg_sp.png") top 50% center no-repeat;
    background-size: contain;
    font-size: calc((40/760)*100vw);
  }
}

.img_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 640px) {
  .img_wrap {
    display: block;
    margin-top: calc((100/760)*100vw);
  }
}
.img_wrap figure {
  width: 49.8%;
}
@media screen and (max-width: 640px) {
  .img_wrap figure {
    width: 100%;
    margin-top: 5vw;
  }
}
@media screen and (max-width: 640px) {
  .img_wrap figure:first-of-type {
    margin-top: 0;
  }
}
.img_wrap figucaption {
  display: block;
  margin-top: 10px;
  color: #FFF;
  font-size: 1.2rem;
}
@media screen and (max-width: 640px) {
  .img_wrap figucaption {
    margin-top: calc((15/760)*100vw);
    font-size: calc((20/760)*100vw);
    line-height: 1.2;
  }
}

.mv {
  text-align: center;
}
.mv .content {
  position: relative;
  padding: 150px 0 100px;
  background: url("../images/mv_bg.jpg") bottom center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 640px) {
  .mv .content {
    padding: calc((200/760)*100vw) 0 calc((100/760)*100vw);
    background-size: auto 100%;
  }
}
.mv .mv_ttl {
  position: relative;
  width: 80%;
  margin: 0 auto 430px;
  z-index: 333;
}
@media screen and (max-width: 640px) {
  .mv .mv_ttl {
    width: calc((700/760)*100vw);
    margin-bottom: calc((480/760)*100vw);
  }
}
.mv .mv_catch {
  position: relative;
  width: 415px;
  margin: 0 auto 100px;
  z-index: 333;
}
@media screen and (max-width: 640px) {
  .mv .mv_catch {
    width: calc((400/760)*100vw);
    margin-bottom: calc((100/760)*100vw);
  }
}
.mv .mv_date {
  width: 532px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .mv .mv_date {
    width: calc((500/760)*100vw);
  }
}
.mv .mv_ball {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  width: 757px;
}
@media screen and (max-width: 640px) {
  .mv .mv_ball {
    top: 43%;
    width: calc((700/760)*100vw);
  }
}

.mirrorball .mirrorball_img_wrap {
  position: relative;
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_img_wrap {
    display: flex;
  }
}
.mirrorball .mirrorball_img_wrap figure {
  width: 50%;
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_img_wrap figure {
    margin: 0;
  }
}
.mirrorball .mirrorball_img_wrap figucaption {
  text-align: center;
}
.mirrorball .mirrorball_img_wrap02 {
  margin-top: 150px;
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_img_wrap02 {
    margin-top: calc((100/760)*100vw);
  }
}
.mirrorball .mirrorball_hr {
  display: block;
  margin: 100px 0;
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_hr {
    margin: calc((100/760)*100vw) 0;
  }
}
.mirrorball .mirrorball_lttl {
  margin: 60px 0;
  color: #FFF;
  font-size: 7.0rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: .1em;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_lttl {
    margin: calc((80/760)*100vw) 0;
    font-size: calc((54/760)*100vw);
  }
}
.mirrorball .mirrorball_lttl .sub01, .mirrorball .mirrorball_lttl .sub02 {
  display: block;
  font-size: 3.0rem;
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_lttl .sub01, .mirrorball .mirrorball_lttl .sub02 {
    font-size: calc((36/760)*100vw);
  }
}
.mirrorball .mirrorball_lttl .sub01 {
  letter-spacing: 0.4em;
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_lttl .sub01 {
    margin-bottom: calc((15/760)*100vw);
    letter-spacing: .3em;
  }
}
.mirrorball .mirrorball_lttl .sub02 {
  letter-spacing: 0.17em;
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_lttl .sub02 {
    margin-top: calc((15/760)*100vw);
    letter-spacing: .1em;
  }
}
.mirrorball .mirrorball_mttl {
  margin: 120px 0 80px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_mttl {
    margin: calc((100/760)*100vw) 0 calc((100/760)*100vw);
  }
}
.mirrorball .mirrorball_mttl img {
  width: 1100px;
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_mttl img {
    width: 100%;
  }
}
.mirrorball .mirrorball_text01 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_text01 {
    top: 40%;
    width: calc((20/760)*100vw);
  }
}
.mirrorball .mirrorball_text02 {
  color: #FFF;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.9;
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_text02 {
    font-size: calc((30/760)*100vw);
  }
}
.mirrorball .mirrorball_text03 {
  margin-top: 1em;
  color: #FFF;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.9;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .mirrorball .mirrorball_text03 {
    font-size: calc((30/760)*100vw);
    white-space: nowrap;
  }
}
.mirrorball .mirrorball_text04 {
  margin-top: 1em;
  color: #FFF;
}

.artist .content {
  padding: 100px 0;
}
@media screen and (max-width: 640px) {
  .artist .content {
    padding: calc((100/760)*100vw) 0;
  }
}
.artist .artist_lttl {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .artist .artist_lttl {
    margin-bottom: calc((50/760)*100vw);
  }
}
.artist .artist_lttl img {
  width: 430px;
}
@media screen and (max-width: 640px) {
  .artist .artist_lttl img {
    width: 100%;
  }
}
.artist .artist_lttl:before, .artist .artist_lttl:after {
  position: absolute;
  top: 50%;
  content: '';
  width: 360px;
  height: 2px;
  background: #FFF;
}
@media screen and (max-width: 640px) {
  .artist .artist_lttl:before, .artist .artist_lttl:after {
    content: none;
  }
}
.artist .artist_lttl:before {
  left: 0;
}
.artist .artist_lttl:after {
  right: 0;
}
.artist .artist_mttl {
  margin: 60px 0;
  color: #FFF;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: .5em;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .artist .artist_mttl {
    margin: calc((80/760)*100vw) 0;
  }
}
.artist .artist_mttl .en {
  font-size: 7.0rem;
}
@media screen and (max-width: 640px) {
  .artist .artist_mttl .en {
    font-size: calc((54/760)*100vw);
  }
}
.artist .artist_mttl .jp {
  font-size: 3.0rem;
}
@media screen and (max-width: 640px) {
  .artist .artist_mttl .jp {
    font-size: calc((40/760)*100vw);
  }
}
.artist .artist_text01 {
  color: #FFF;
  font-size: 1.7rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .artist .artist_text01 {
    font-size: calc((30/760)*100vw);
  }
}

.outline .content {
  padding: 100px 0;
}
@media screen and (max-width: 640px) {
  .outline .content {
    padding: calc((100/760)*100vw) 0;
  }
}
.outline .outline_mttl {
  margin: 40px 0 30px;
  color: #FFF;
  font-size: 3.0rem;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .outline .outline_mttl {
    margin: calc((50/760)*100vw) 0 calc((50/760)*100vw);
    font-size: calc((53/760)*100vw);
  }
}
.outline .outline_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .outline .outline_list {
    align-items: center;
  }
}
.outline .outline_list dt, .outline .outline_list dd {
  padding: 10px 0;
}
@media screen and (max-width: 640px) {
  .outline .outline_list dt, .outline .outline_list dd {
    padding: calc((15/760)*100vw) 0;
  }
}
.outline .outline_list dt {
  width: 12%;
  background: url("../images/outline_list_bg.png") top 50% center no-repeat;
  background-size: contain;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .outline .outline_list dt {
    width: 35%;
  }
}
.outline .outline_list dd {
  width: 23%;
  color: #FFF;
}
@media screen and (max-width: 640px) {
  .outline .outline_list dd {
    width: 60%;
  }
}
.outline .outline_list dd:nth-of-type(2n+2) {
  width: 46%;
}
@media screen and (max-width: 640px) {
  .outline .outline_list dd:nth-of-type(2n+2) {
    width: 60%;
  }
}

.museum .content {
  padding: 0 0 100px;
}
@media screen and (max-width: 640px) {
  .museum .content {
    padding: 0 0 calc((100/760)*100vw) 0;
  }
}
.museum .inner {
  border-top: #FFF 1px solid;
}
.museum .museum_lttl {
  margin: 100px 0 60px;
  padding: 120px 0 0;
  background: url("../images/outline_logo.png") top center no-repeat;
  background-size: 350px;
  color: #FFF;
  font-size: 4.4rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: .1em;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .museum .museum_lttl {
    margin: calc((100/760)*100vw) 0 calc((80/760)*100vw);
    padding-top: calc((150/760)*100vw);
    background-size: calc((500/760)*100vw);
    font-size: calc((38/760)*100vw);
    white-space: nowrap;
  }
}
.museum .museum_text01 {
  margin: 60px 0 10px;
  color: #FFF;
  font-size: 2.1rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .museum .museum_text01 {
    margin: calc((60/760)*100vw) 0 calc((10/760)*100vw);
    font-size: calc((30/760)*100vw);
  }
}
.museum .museum_text02 {
  color: #FFF;
  font-size: 1.7rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .museum .museum_text02 {
    font-size: calc((30/760)*100vw);
  }
}
.museum .museum_text_note {
  margin-top: 10px;
  color: #FFF;
  font-size: 1.2rem;
}
@media screen and (max-width: 640px) {
  .museum .museum_text_note {
    margin-top: calc((10/760)*100vw);
    font-size: calc((20/760)*100vw);
  }
}
.museum .museum_cafe {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  justify-content: space-between;
  margin: 80px 0;
}
@media screen and (max-width: 640px) {
  .museum .museum_cafe {
    display: block;
    margin: calc((100/760)*100vw) 0;
  }
}
.museum .museum_cafe_textarea {
  width: 55%;
}
@media screen and (max-width: 640px) {
  .museum .museum_cafe_textarea {
    width: 100%;
    margin-bottom: calc((40/760)*100vw);
  }
}
.museum .museum_cafe_menu {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  justify-content: space-between;
  margin: 2.0rem 0;
  color: #FFF;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .museum .museum_cafe_menu {
    align-items: center;
    margin: calc((30/760)*100vw) 0;
  }
}
.museum .museum_cafe_menu dt, .museum .museum_cafe_menu dd {
  padding: 5px 0;
}
@media screen and (max-width: 640px) {
  .museum .museum_cafe_menu dt, .museum .museum_cafe_menu dd {
    padding: calc((10/760)*100vw) 0;
  }
}
.museum .museum_cafe_menu dt {
  width: 30%;
  background: url("../images/museum_cafe_menu_bg.png") top 50% center no-repeat;
  background-size: contain;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .museum .museum_cafe_menu dt {
    width: 35%;
  }
}
.museum .museum_cafe_menu dd {
  width: 65%;
  font-size: 2.0rem;
}
@media screen and (max-width: 640px) {
  .museum .museum_cafe_menu dd {
    width: 60%;
    font-size: calc((36/760)*100vw);
    line-height: 1.2;
  }
}
.museum .museum_cafe_img {
  width: 40%;
}
@media screen and (max-width: 640px) {
  .museum .museum_cafe_img {
    width: 100%;
  }
}
.museum .museum_map {
  width: 77%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .museum .museum_map {
    width: 100%;
  }
}

.access .content {
  padding: 100px 0;
}
@media screen and (max-width: 640px) {
  .access .content {
    padding: calc((100/760)*100vw) 0;
  }
}
.access .access_map {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .access .access_map {
    width: 100%;
    height: calc((700/760)*100vw);
    margin-bottom: calc((50/760)*100vw);
  }
}
.access .access_list {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  color: #FFF;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .access .access_list {
    display: block;
    margin-bottom: calc((50/760)*100vw);
  }
}
.access .access_list dt, .access .access_list dd {
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .access .access_list dt, .access .access_list dd {
    display: block;
  }
}
.access .access_list dt {
  width: 28%;
  padding: 0 10px;
  background: url("../images/access_list_ttl.png") top left no-repeat;
  background-size: contain;
  font-size: 2.4rem;
}
@media screen and (max-width: 640px) {
  .access .access_list dt {
    width: 100%;
    margin-bottom: calc((10/760)*100vw);
    padding: 0 calc((10/760)*100vw);
    font-size: calc((36/760)*100vw);
  }
}
.access .access_list dd {
  width: 70%;
  font-size: 2.0rem;
}
@media screen and (max-width: 640px) {
  .access .access_list dd {
    width: 100%;
    margin-bottom: calc((30/760)*100vw);
    font-size: calc((30/760)*100vw);
  }
}
.access .access_parking {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .access .access_parking {
    display: block;
  }
}
.access .access_parking dt {
  width: 15%;
  font-size: 2.0rem;
}
@media screen and (max-width: 640px) {
  .access .access_parking dt {
    width: 100%;
    font-size: calc((36/760)*100vw);
  }
}
.access .access_parking dd {
  display: inline-block;
  width: 85%;
  border-left: #FFF 1px solid;
  padding-left: 1.5em;
  text-indent: -1em;
  font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
  .access .access_parking dd {
    width: 100%;
    padding: .5em 0 0 1em;
    border-top: #FFF 1px solid;
    border-left: none;
    font-size: calc((30/760)*100vw);
  }
}

/*---------------
   footer
---------------*/
.footer {
  margin-bottom: 30px;
  padding: 30px 0;
  background: #FFF;
}
@media screen and (max-width: 640px) {
  .footer {
    margin-bottom: calc((50/760)*100vw);
    padding: calc((40/760)*100vw) 0;
  }
}
.footer .footer_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .footer .footer_list {
    display: block;
  }
}
.footer .footer_list li {
  margin: 0 10px;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .footer .footer_list li {
    margin: 0;
    padding-left: 3em;
    text-indent: -3em;
    font-size: calc((24/760)*100vw);
    text-align: left;
  }
}
.footer .footer_list li:first-child {
  width: 100%;
}

/*---------------
   ふわっと
---------------*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 640px) {
  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(20vw);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
