@charset "UTF-8";
/*共通*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0%;
}

ul, ol {
  list-style: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main, picture, source {
  display: block;
}

a {
  color: #333;
  text-decoration: none;
}

body {
  font-family: "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8em;
  color: #333;
  letter-spacing: 0em;
}

.serif {
  font-family: 'Noto Serif JP', sans-serif;
}

img {
  height: auto;
  border: 0;
  vertical-align: top;
  max-width: 100%;
  margin: 0;
  -webkit-backface-visibility: hidden;
}

.vs {
  display: none;
}

.header {
  position: fixed;
  width: 100%;
  justify-content: flex-start;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header .logo_wrap {
  margin-left: 50%;
  width: 100%;
  max-width: 1400px;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
}

.header .logo {
  width: 211px;
}

.header .logo a {
  padding: 50px 0 0 0;
  display: block;
}

.header .overlay.open {
  width: 100vw;
  height: 100vh;
  opacity: 1;
}

.header .overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
  transition: opacity .5s;
}

.header #global-nav {
  position: fixed;
  width: 50%;
  top: 0;
  z-index: 4;
  right: -50%;
  height: 100%;
  margin: 0 0 0 0;
  padding-left: 100px;
  padding-bottom:50px;
  background: #C6C6C1;
  transition: all .5s;
  overflow-y: auto;
}

.header #global-nav.open {
  right: 0;
}

.header #global-nav .menu li a {
  color: #333;
  display: block;
  padding: 0;
  line-height: 1.2em;
}

.header #global-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header #global-nav ul li {
  width: 100%;
}

.header #global-nav ul li:nth-of-type(1) {
  width: 100%;
}

.header #global-nav ul li:nth-of-type(2) {
  width: 100%;
}

.header #global-nav ul li:nth-of-type(3) {
  width: 100%;
}

.header #global-nav ul li:nth-of-type(4) {
  width: 100%;
}

.header #global-nav ul li:nth-last-child(1) {
  width: 100%;
  text-align: left;
}

.header #global-nav ul li:not(:nth-of-type(1)) {
  border-left: none;
}

.header #global-nav ul li {
  text-align: left;
}

.header ul {
  flex-direction: column;
  font-size: 3.8vw;
  width: 100%;
  padding: 100px 0 0 0;
}

.header ul li {
  line-height: 1.3em;
  text-align: left;
}

.header ul li a {
  display: block;
  position: relative;
  font-size: 21px;
  color: #333;
  text-decoration: none;
  line-height: 1.5em;
  padding: 10px 0 10px 60px;
}

.header ul li a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 30px;
  width: 22px;
  height: 15px;
  background: url(../images/common/gnavi_y.png) left top no-repeat;
  background-size: 100%;
  transition: .4s;
}

.header ul li a:hover:before {
  left: 20px;
}

.header ul li a .stxt {
  font-size: 11px;
  letter-spacing: 0.1em;
}

.header .btn-gnavi-wrap {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  margin-left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  z-index: 11;
}

.header .btn-gnavi {
  position: absolute;
  top: 35px;
  right: 0;
  width: 42px;
  height: 34px;
  z-index: 11;
  cursor: pointer;
  transition: all 400ms;
  -webkit-transition: all 400ms;
}

.header .btn-gnavi span:not(:nth-last-child(1)) {
  position: absolute;
  width: 38px;
  height: 2px;
  left: 1px;
  background: #333;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  text-align: center;
}

.header .btn-gnavi span:nth-child(1) {
  top: 0;
}

.header .btn-gnavi span:nth-child(2) {
  top: 11px;
}

.header .btn-gnavi span:nth-child(3) {
  top: 21px;
}

.header .btn-gnavi span:nth-child(4) {
  position: absolute;
  width: 42px;
  top: 24px;
  font-size: 10px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.header .btn-gnavi.active span:nth-child(1) {
  position: absolute;
  top: 11px;
  right: 2px;
  transform: rotate(45deg);
}

.header .btn-gnavi.active span:nth-child(2) {
  display: none;
}

.header .btn-gnavi.active span:nth-child(3) {
  position: absolute;
  top: 11px;
  right: 2px;
  transform: rotate(-45deg);
}

.header #global-nav .sns_wrap {
  margin-top: 20px;
}

.header #global-nav .sns_wrap__txt {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.header #global-nav .sns_wrap__list {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  letter-spacing: 0.05em;
}

.header #global-nav .sns_wrap__list p {
  opacity: 0;
  -webkit-transform: translate(0, 30px);
  -ms-transform: translate(0, 30px);
  transform: translate(0, 30px);
}

.header #global-nav .sns_wrap__list p:nth-of-type(1) {
  width: 25px;
}

.header #global-nav .sns_wrap__list p:nth-of-type(2) {
  width: 25px;
  margin-left: 25px;
}

header #global-nav .sns_wrap__list p.sns_fadeup {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.5s;
}

header #global-nav .sns_wrap__list p.sns_fadeup.sec {
  transition-delay: .7s;
}
.prv {
  display: flex;
  margin:30px 0 0;
  font-size:14px;
  justify-content: flex-start;
}
.prv div:nth-of-type(n+2) {
  margin-left:20px;
}
.prv a {
  position: relative;
}
.prv a:hover {
  text-decoration: underline;
}
.h_bnr {
  width: 340px;
  margin-top:12px;
}
.h_bnr a {
  display: block;
}
.inview {
  opacity: 0;
  -webkit-transform: translate(0, 80px);
  -ms-transform: translate(0, 80px);
  transform: translate(0, 80px);
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
}

.inview_active {
  opacity: 1;
}

.fadeup.inview_active {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

footer {
  padding: 125px 0 80px 0;
}

footer .foot_bnr {
  display: flex;
  justify-content:space-between;
  align-items: stretch;
}

footer .foot_bnr li {
  width: 486px;
  display: flex;
  justify-content: center;
  align-items: center;
  height:273px;
}

footer .foot_bnr li a {
  display: flex;
  height:273px;
}

footer .foot_bnr li a:hover .l img {
  transform: scale(1.15);
}

footer .foot_bnr li .l {
  width: 266px;
  overflow: hidden;
}

footer .foot_bnr li .l img {
  transition: .6s;
  font-family: 'object-fit: cover;';
  height: 100%;
  object-fit: cover;
}

footer .foot_bnr li .r {
  width: 220px;
  color: #fff;
  display: flex;
  flex-direction: column;
  background: #333;
  align-items: center;
  justify-content: center;
}

footer .foot_bnr li .r__01 {
  margin-top: 90px;
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height: 1.8em;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

footer .foot_bnr li .r__01 .s {
  font-size: 14px;
}

footer .foot_bnr li .r__02 {
  border-top: 1px solid #fff;
  padding: 12px 30px;
  font-size: 13px;
  margin-top: auto;
  background: url(../images/common/foot_y.png) right 0 top 48% no-repeat;
  background-size: 15px;
}

footer .foot_bnr li .r__02.noy {
  background: none;
}
footer .foot_bnr li:nth-of-type(2) {
  height: auto;
}
footer .foot_btm {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

footer .foot_btm__l {
  width: 240px;
}

footer .foot_btm__l .logo {
  width: 210px;
}

footer .foot_btm__r {
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 76px;
}

footer .foot_btm__r__01 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

footer .foot_btm__r__01 .sns_txt {
  font-size: 8px;
  font-weight: bold;
}

footer .foot_btm__r__01 .ilist {
  display: flex;
  justify-content: space-between;
}

footer .foot_btm__r__01 .ilist li {
  width: 25px;
  margin-left: 20px;
}

footer .foot_btm__r__01 .ilist li a:hover {
  opacity: .8;
}

footer .foot_btm__r__02 {
  position: absolute;
  left: 0;
  top: 50px;
  font-size: 11px;
  line-height: 2.2em;
}

footer .foot_btm__r__02 .hp a:hover {
  text-decoration: underline;
  color: #333;
}

footer .foot_btm__r__03 {
  text-align: right;
  font-size: 8px;
  margin-top: 25px;
}

footer .fixbox {
  position: fixed;
  right: 0;
  z-index: 10;
}

footer .fixbox.fix01 {
  bottom: 230px;
}

footer .fixbox.fix01 a {
  background: #892C2C;
}

footer .fixbox.fix02 {
  bottom: 72px;
}

footer .fixbox.fix02 a {
  background: #50606A;
}

footer .fixbox a {
  display: flex;
  width: 104px;
  height: 140px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 13px;
  line-height: 1.8em;
  letter-spacing: 0.05em;
}

footer .fixbox__icon01 {
  margin: 20px auto 0;
  width: 54px;
}

footer .fixbox__icon02 {
  margin: 10px auto 0;
  width: 27px;
}
.movie_box_wrap {
  width: 100%;
}
.movie_box {
  position: relative;
  width: 100%;
  height:273px;
}
.movie_box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 273px;
}
.right-fix {
  position: fixed;
  width: 104px;
  right:0;
  top:50%;
  transform:translateY(-50%);
  z-index: 10;
}
.right-fix li:nth-of-type(2) {
  margin-top:15px;
  cursor: pointer;
}
html.is-fixed {
  height: 100%;
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
.header #global-nav .t_bg {
  position: fixed;
  top: 0;
  width: 40%;
  height: 100px;
  background: #C6C6C1;
  z-index: 10;
  transition: all .5s;
}
@media (max-width: 1420px) {
  .header .logo_wrap {
    padding-left: 20px;
  }
  .header .btn-gnavi {
    right: 20px;
  }
}
@media (max-width: 1200px) {
  .header #global-nav {
    padding-left: 5%;
    padding-bottom:5vw;
  }
}

@media (max-width: 1100px) and (min-width: 641px) {
  body {
    font-size: 1.5vw;
  }
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  footer {
    padding: 12vw 0 8vw 0;
  }
  footer .foot_bnr li {
    width: 49%;
    height:26.2vw;
  }
  footer .foot_bnr li a {
   height:26.2vw;
  }
  .movie_box {
    height:26.2vw;
  }
  .movie_box iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 26.2vw;
  }
  footer .foot_bnr li .l {
    width: 60%;
  }
  footer .foot_bnr li .r {
    width: 40%;
  }
  footer .foot_bnr li .r__01 {
    margin-top: 9vw;
    font-size: 1.7vw;
  }
  footer .foot_bnr li .r__01 .s {
    font-size: 1.4vw;
  }
  footer .foot_bnr li .r__02 {
    border-top: 1px solid #fff;
    padding: 1.2vw 2.5vw;
    font-size: 1.3vw;
    background: url(../images/common/foot_y.png) right 0.5vw top 48% no-repeat;
    background-size: 1.4vw;
  }
  footer .foot_btm {
    margin-top: 8.5vw;
  }
  footer .foot_btm__l {
    width: 24vw;
  }
  footer .foot_btm__l .logo {
    width: 21vw;
  }
  footer .foot_btm__r {
    width: 30vw;
    margin-top: 7.6vw;
  }
  footer .foot_btm__r__01 .sns_txt {
    font-size: 0.8vw;
  }
  footer .foot_btm__r__01 .ilist li {
    width: 2.5vw;
    margin-left: 2vw;
  }
  footer .foot_btm__r__02 {
    top: 5vw;
    font-size: 1.1vw;
  }
  footer .foot_btm__r__03 {
    font-size: 0.8vw;
    margin-top: 2.5vw;
  }
}

@media (max-width: 1040px) {
  .header ul li a {
    font-size: 2.1vw;
    padding: 1.5vw 0 1.5vw 6vw;
  }
  .header ul li a:before {
    top: 3vw;
    width: 2.2vw;
    height: 1.5vw;
    background: url(../images/common/gnavi_y.png) left top no-repeat;
    background-size: 100%;
    transition: .4s;
  }
  .header ul li a:hover:before {
    left: 2vw;
  }
  .header #global-nav .sns_wrap {
    margin-top: 2.5vw;
  }
  .header #global-nav .sns_wrap__txt {
    font-size: 1.2vw;
  }
  .header #global-nav .sns_wrap__list {
    margin-top: 1vw;
  }
  .header #global-nav .sns_wrap__list p:nth-of-type(1) {
    width: 2.5vw;
  }
  .header #global-nav .sns_wrap__list p:nth-of-type(2) {
    width: 2.5vw;
    margin-left: 2.5vw;
  }
  .prv {
    margin:2.5vw 0 0;
    font-size:1.4vw;
  }
  .prv div:nth-of-type(n+2) {
    margin-left:1.8vw;
  }
  .h_bnr {
    width: 34vw;
    margin-top:1.1vw;
  }
  .right-fix {
    width: 9.5vw;
    right:0;
  }
  .right-fix li:nth-of-type(2) {
    margin-top:1.2vw;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 3.6vw;
  }
  img {
    width: 100%;
    height: auto;
  }
  .vp {
    display: none;
  }
  .vs {
    display: block;
  }
  .inner {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .header {
    height: 75px;
  }
  .header .logo_wrap {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }
  .header .logo {
    width: 0;
    display: none;
  }
  .header .logo a {
    padding: 0 0;
    display: block;
  }
  .header .overlay.open {
    width: 100vw;
    height: 100vh;
    opacity: 0;
  }
  .header #global-nav {
    padding: 0 5vw 5vw;
    width: 100%;
    right: -100%;
  }
  .header #global-nav ul li {
    font-size: 4vw;
    width: 100%;
  }
  .header #global-nav ul li:nth-of-type(1) {
    width: 100%;
  }
  .header #global-nav ul li:nth-of-type(2) {
    width: 100%;
  }
  .header #global-nav ul li:nth-of-type(3) {
    width: 100%;
  }
  .header #global-nav ul li:nth-of-type(4) {
    width: 100%;
  }
  .header #global-nav ul li:nth-last-child(1) {
    width: 100%;
    text-align: left;
  }
  .header #global-nav ul li:not(:nth-of-type(1)) {
    border-left: none;
  }
  .header #global-nav ul li {
    text-align: left;
  }
  .header ul {
    flex-direction: column;
    width: 100%;
    padding: 19vw 2vw 0 2vw;
  }
  .header ul li {
    line-height: 1.3em;
  }
  .header ul li a {
    font-size: 4.93vw;
    padding: 2.9vw 0 2.9vw 10vw;
    line-height: 1.2em;
  }
  .header ul li a:before {
    top: 7vw;
    width: 4.5vw;
    height: 3.9vw;
  }
  .header ul li a:hover:before {
    left: 1.5vw;
  }
  .header ul li a .stxt {
    font-size: 2.26vw;
  }
  .header .btn-gnavi {
    top: 20px;
    right: 0;
  }
  .header .btn-gnavi-wrap {
    max-width: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    right: 5vw;
    margin-left: 0;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    z-index: 11;
  }
  .header #global-nav .sns_wrap {
    margin: 4vw 0 0 3vw;
  }
  .header #global-nav .sns_wrap__txt {
    font-size: 2.66vw;
  }
  .header #global-nav .sns_wrap__list {
    margin-top: 3vw;
  }
  .header #global-nav .sns_wrap__list p {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    -ms-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }
  .header #global-nav .sns_wrap__list p:nth-of-type(1) {
    width: 25px;
  }
  .header #global-nav .sns_wrap__list p:nth-of-type(2) {
    width: 5.86vw;
    margin-left: 7vw;
  }
  .header .btn-gnavi span:not(:nth-last-child(1)) {
    height: 1px;
  }
  .prv {
    margin:4vw 0 0 0;
    font-size:3.5vw;
  }
  .prv div:nth-of-type(n+2) {
    margin-left:3vw;
  }
  .prv a:hover {
    text-decoration: none;
  }
  .prv a {
    padding-left:1vw;
  }
  .prv a:hover {
    text-decoration: underline;
  }
  .h_bnr {
    width: 100%;
    margin-top:2vw;
  }
  footer {
    padding: 20vw 0 18vw 0;
  }
  footer .foot_bnr {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  footer .foot_bnr li {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 49.22vw;
  }
  footer .foot_bnr li a {
    height:49.22vw;
  }
  .movie_box {
    height:49.22vw;
  }
  .movie_box iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 49.22vw;
  }
  footer .foot_bnr li:nth-of-type(n+2) {
    margin-top: 7vw;
  }
  footer .foot_bnr li a:hover .l img {
    transform: none;
  }
  footer .foot_bnr li .l {
    width: 54%;
  }
  footer .foot_bnr li .l img {
    transition: 0s;
  }
  footer .foot_bnr li .r {
    width: 46%;
    color: #fff;
  }
  footer .foot_bnr li .r__01 {
    margin-top: 15vw;
    font-size: 3.36vw;
  }
  footer .foot_bnr li .r__01 .s {
    font-size: 2.9vw;
  }
  footer .foot_bnr li .r__02 {
    border-top: 1px solid #fff;
    padding: 1.7vw 6vw;
    font-size: 2.53vw;
    margin-top: auto;
    background: url(../images/common/foot_y.png) right 0 top 48% no-repeat;
    background-size: 2.5vw;
  }
  footer .foot_bnr li .r__02.noy {
    background: none;
  }
  footer .foot_btm {
    margin-top: 14.6vw;
    flex-direction: column;
  }
  footer .foot_btm__l {
    width: 100%;
  }
  footer .foot_btm__l .logo {
    width: 48.8vw;
    margin: 0 auto;
  }
  footer .foot_btm__r {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 7vw;
  }
  footer .foot_btm__r__01 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
  footer .foot_btm__r__01 .sns_txt {
    font-size: 2vw;
  }
  footer .foot_btm__r__01 .ilist {
    display: flex;
    justify-content: space-between;
    width: 24vw;
    margin: 5vw auto 0;
  }
  footer .foot_btm__r__01 .ilist li {
    width: 6.6vw;
    margin-left: 0;
  }
  footer .foot_btm__r__01 .ilist li a:hover {
    opacity: 1;
  }
  footer .foot_btm__r__02 {
    position: static;
    left: auto;
    top: auto;
    margin-top: 8vw;
    padding-left: 22.5vw;
    font-size: 3vw;
    line-height: 2.2em;
  }
  footer .foot_btm__r__02 .hp a:hover {
    text-decoration: underline;
    color: #333;
  }
  footer .foot_btm__r__03 {
    text-align: center;
    font-size: 1.8vw;
    margin-top: 5vw;
  }
  footer .fixbox {
    z-index: 20;
    position: fixed;
    right: 0;
  }
  footer .fixbox.fix01 {
    bottom: 0;
    left: 0;
  }
  footer .fixbox.fix01 a {
    background: #892C2C url(../images/common/foot_y.png) right 3vw top 50% no-repeat;
    background-size: 4vw auto;
  }
  footer .fixbox.fix02 {
    bottom: 0;
  }
  footer .fixbox.fix02 a {
    background: #50606A url(../images/common/foot_y.png) right 3vw top 50% no-repeat;
    background-size: 4vw auto;
  }
  footer .fixbox a {
    display: flex;
    width: 49vw;
    height: 16.6vw;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    text-align: left;
    color: #fff;
    font-size: 3.2vw;
    line-height: 1.7em;
    letter-spacing: 0.05em;
  }
  footer .fixbox a .fixbox__tx01 {
    order: 2;
  }
  footer .fixbox__icon01 {
    order: 1;
    margin: 0;
    width: 11vw;
    margin: 0 3vw 0 4vw;
  }
  footer .fixbox__icon02 {
    order: 1;
    margin: 0 3vw 0 4vw;
    width: 4.5vw;
  }
  .header #global-nav .t_bg {
    height: 19vw;
    width: 100%;
    z-index: 100%;
  }
  html.is-fixed {
    overflow: hidden;
  }
}
