@charset "UTF-8";
/* ----------------------------------------------------------------
	reset
---------------------------------------------------------------- */
*, ::before, ::after {
	-webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
  font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
main {
  display: block;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dd {
  margin-left: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted inherit;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
  border-color: inherit;
}
td, th {
  vertical-align: top;
  padding: 0;
}
th {
  text-align: left;
  font-weight: bold;
}
svg, img, embed, object, iframe {
  vertical-align: bottom;
}
img {
	max-width: 100%;
  height: auto;
	vertical-align: bottom;
	font-size: 0;
	line-height: 0;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	-webkit-user-drag: none;
	   -moz-user-drag: none;
	    -ms-user-drag: none;
}
img[src$=".svg"] {
	width: 100%;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  outline: none;
}
a:focus, *:focus {
  outline:none;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  background: url("../images/bg.jpg") left top / 400px 400px repeat #f5f5f5;
	font-size: 15px;
  font-weight: 400;
	line-height: 2;
  letter-spacing: 0.04em;
	color: #242424;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt" !important;
          font-feature-settings: "palt" !important;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
  word-wrap: break-word;
  outline: none;
  width: 100%;
}
.font_Regular {
  font-weight: 400;
}
.font_Medium {
  font-weight: 500;
}
.font_serif_Regular {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}
.font_serif_Medium {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
}
.font_serif_SemiBold {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
}
.object-fit {
  object-fit: cover;
	font-family: 'object-fit: cover;';
}
.pagetop {
  position: fixed;
  right: 0;
  bottom: 70px;
  width: 66px;
  height: 66px;
  z-index: 1000;
}

/* --- display PC --- */
.pc {display: block;}
.tb {display: none;}
.sp {display: none;}
.pctb {display: block;}
.pcsp {display: block;}
.tbsp {display: none;}
@media print,screen and (max-width: 1420px) {
  body {
    background: url("../images/bg.jpg") left top / 28.17vw 28.17vw repeat #f5f5f5;
  }
}
@media print,screen and (max-width: 1024px) {
  .pagetop {
    bottom: 4.93vw;
    /*width: 4.65vw;*/
    /*height: 4.65vw;*/
  }
/* --- display Tablet --- */
  .pc {display: none;}
  .tb {display: block;}
  .sp {display: none;}
  .pctb {display: block;}
  .pcsp {display: none;}
  .tbsp {display: block;}
}/* Tablet End */
@media print,screen and (max-width: 767px) {
  body {
    background: url("../images/bg.jpg") left top / 53.33vw 53.33vw repeat #f5f5f5;
    font-size: 3.73vw;
    min-width: 320px;
  }
  a {
    -webkit-transition: none;
    transition: none;
  }
  a:hover {
    opacity: 1;
  }
  a[href*="tel:"] {
    pointer-events: inherit;
    cursor: default;
  }
  .pagetop {
    bottom: 9.33vw;
    width: 17.6vw;
    height: 17.6vw;
  }
/* --- display Smartphone --- */
  .pc {display: none;}
  .tb {display: none;}
  .sp {display: block;}
  .pctb {display: none;}
  .pcsp {display: block;}
  .tbsp {display: block;}
}/* Smartphone End */


/* ----------------------------------------------------------------
	anime
---------------------------------------------------------------- */
/* --- fadeUp ---*/
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeUpAnime {
  opacity: 0;
}
.fadeUpAnime.aniDelay01 {animation-delay: 0.3s;}
.fadeUpAnime.aniDelay02 {animation-delay: 0.45s;}
.fadeUpAnime.aniDelay03 {animation-delay: 0.6s;}
.fadeUpAnime.aniDelay04 {animation-delay: 0.75s;}
.fadeUpAnime.aniDelay05 {animation-delay: 0.9s;}
.fadeUpAnime.aniDelay06 {animation-delay: 1.05s;}
.fadeUp {
  -webkit-animation: fadeUp 0.35s linear forwards;
  animation: fadeUp 0.35s linear forwards;
  animation-delay: 0.1s;
}

/* --- fadeIn ---*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInAnime {
  opacity: 0;
}
.fadeInAnime.aniDelay01 {animation-delay: 0.3s;}
.fadeInAnime.aniDelay02 {animation-delay: 0.45s;}
.fadeInAnime.aniDelay03 {animation-delay: 0.6s;}
.fadeInAnime.aniDelay04 {animation-delay: 0.75s;}
.fadeInAnime.aniDelay05 {animation-delay: 0.9s;}
.fadeInAnime.aniDelay06 {animation-delay: 1.05s;}
.fadeIn {
  -webkit-animation: fadeIn 0.35s linear forwards;
  animation: fadeIn 0.35s linear forwards;
  animation-delay: 0.1s;
}

/* --- fadeInLeft ---*/
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftAnime {
  opacity: 0;
}
.fadeInLeftAnime.aniDelay01 {animation-delay: 0.3s;}
.fadeInLeftAnime.aniDelay02 {animation-delay: 0.45s;}
.fadeInLeftAnime.aniDelay03 {animation-delay: 0.6s;}
.fadeInLeftAnime.aniDelay04 {animation-delay: 0.75s;}
.fadeInLeftAnime.aniDelay05 {animation-delay: 0.9s;}
.fadeInLeftAnime.aniDelay06 {animation-delay: 1.05s;}
.fadeInLeft {
  -webkit-animation: fadeInLeft 0.35s linear forwards;
  animation: fadeInLeft 0.35s linear forwards;
  animation-delay: 0.1s;
}

/* --- fadeInRight ---*/
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightAnime {
  opacity: 0;
}
.fadeInRightAnime.aniDelay01 {animation-delay: 0.3s;}
.fadeInRightAnime.aniDelay02 {animation-delay: 0.45s;}
.fadeInRightAnime.aniDelay03 {animation-delay: 0.6s;}
.fadeInRightAnime.aniDelay04 {animation-delay: 0.75s;}
.fadeInRightAnime.aniDelay05 {animation-delay: 0.9s;}
.fadeInRightAnime.aniDelay06 {animation-delay: 1.05s;}
.fadeInRight {
  -webkit-animation: fadeInRight 0.35s linear forwards;
  animation: fadeInRight 0.35s linear forwards;
  animation-delay: 0.1s;
}



/* ----------------------------------------------------------------
	header
---------------------------------------------------------------- */
header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 180px;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: url("../images/menu_bg.jpg") left top / 180px 180px repeat;
}
header .inr {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: url("../images/menu_img01.jpg") left top / contain no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .inr h1 {
  width: 180px;
  height: 100px;
}
header .inr h1 a {
  display: block;
  width: 100%;
  height: 100px;
}
header .inr h1 a:hover {
  opacity: 1;
}
header .inr .btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 65px;
  background: url("../images/menu_btn.jpg") left top / 180px 65px repeat;
}
header .inr .btn a {
  position: relative;
  display: block;
  width: 100%;
  height: 65px;
  padding-top: 12px;
  color: #fff;
  font-size: 15px;
  text-align: center;
}
header .inr .btn a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: relative;
  margin: 0 auto;
  top: 2px;
}
header .inr .btn a span {
  display: inline-block !important;
}
header #nav-toggle {
  position: fixed;
  top: 50px;
  left: 70px;
  height: 32px;
  cursor: pointer;
  z-index: 1000;
}
header #nav-toggle > div {
  position: relative;
  width: 40px;
}
header #nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.5s ease;
}
header #nav-toggle span:nth-child(1) {
  top: 0;
}
header #nav-toggle span:nth-child(2) {
  top: 13px;
}
header #nav-toggle span:nth-child(3) {
  top: 26px;
}
.open header #nav-toggle span {
  background: #fff;
}
.open header #nav-toggle span:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}
.open header #nav-toggle span:nth-child(2) {
  top: 14px;
  width: 0;
  left: 50%;
}
.open header #nav-toggle span:nth-child(3) {
  top: 14px;
  transform: rotate(-45deg);
  width: 100%;
}
#gloval-nav {
  background: url("../images/bg.jpg") left top / 400px 400px repeat #f5f5f5;
  position: fixed;
  overflow-y: scroll;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 990;
}
#gloval-nav .navInr {
  position: relative;
  width: calc(100% - 180px);
  margin-left: 180px;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#gloval-nav .navInr::after {
  content: "";
  display: block;
  width: 48.27vw;
  height: 38vw;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url("../images/menu_bglogo.png") right bottom / 100% auto no-repeat;
  z-index: -1;
}
#gloval-nav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
#gloval-nav ul li {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin: 0 10px;
}
#gloval-nav ul li a {
  position: relative;
  display: block;
  color: #242424;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.24;
  letter-spacing: 0.2em;
  padding: 10px;
}
#gloval-nav ul li a::before {
  content: "・";
  display: inline-block;
  font-size: 30px;
  color: #db3838;
  padding-bottom: 12px;
}
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}


/* Tablet
----------------------------------------------- */
@media print,screen and (max-width: 1024px) {
  header {
    width: 12.676056338vw;
    max-width: inherit;
  }
  header .inr {
    width: 100%;
  }
  header .inr h1 {
    width: 100%;
    height: auto;
  }
  header .inr h1 a {
    height: auto;
  }
  header .inr .btn {
    width: 12.68vw;
    height: 4.58vw;
    background: url("../images/menu_btn.jpg") left top / 12.68vw 4.58vw repeat;
  }
  header .inr .btn a {
    height: 4.58vw;
    padding-top: 0.85vw;
    font-size: 1.06vw;
  }
  header .inr .btn a::after {
    width: 0.7vw;
    height: 0.7vw;
    top: -0.18vw;
  }
  header #nav-toggle {
    top: 3.33vw;
    left: 4.93vw;
    height: 2.25vw;
  }
  header #nav-toggle > div {
    width: 2.82vw;
  }
  header #nav-toggle span {
    height: 0.14vw;
  }
  header #nav-toggle span:nth-child(2) {
    top: 0.92vw;
  }
  header #nav-toggle span:nth-child(3) {
    top: 1.83vw;
  }
  .open header #nav-toggle span:nth-child(1) {
    top: 0.99vw;
  }
  .open header #nav-toggle span:nth-child(2) {
    top: 0.99vw;
  }
  .open header #nav-toggle span:nth-child(3) {
    top: 0.99vw;
  }
  #gloval-nav {
    background: url("../images/bg.jpg") left top / 28.17vw 28.17vw repeat #f5f5f5;
  }
  #gloval-nav .navInr {
    width: calc(100% - 12.676056338vw);
    margin-left: 12.676056338vw;
  }
  #gloval-nav .navInr::after {
    width: 70.7vw;
    height: 55.66vw;
  }
  #gloval-nav ul li {
    margin: 0 5px;
  }
  #gloval-nav ul li a {
    padding: 5px;
  }
}/* Tablet End */


/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 767px) {
  header {
    width: 100%;
    height: 70px;
    background: url("../images/menu_sp_bg.jpg") left top / cover repeat;
  }
  header .inr {
    width: 100%;
    height: 70px;
    background: none;
  }
  header .inr::after {
    display: block;
    content: "";
    width: 84px;
    height: 83px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    background: url("../images/menu_sp_img01.jpg") left top / 100% auto no-repeat;
  }
  header .inr h1 {
    width: 90px;
    height: 50px;
  }
  header .inr h1 a {
    width: 100%;
    height: 50px;
  }
  header .inr h1 a img {
    vertical-align: top;
  }
  header .inr .btn {
    position: absolute;
    bottom: inherit;
    top: 0;
    left: inherit;
    right: 0;
    width: 70px;
    height: 70px;
    background: url("../images/menu_sp_btn.jpg") left top / 140px 140px repeat;
  }
  header .inr .btn a {
    width: 100%;
    height: 70px;
    padding-top: 18px;
    font-size: 11px;
    line-height: 1.4;
  }
  header .inr .btn a::after {
    width: 8px;
    height: 8px;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(45deg);
    position: relative;
    margin: 0 auto;
    top: 2px;
  }
  header .inr .btn a span {
    display: none !important;
  }
  header #nav-toggle {
    top: 28px;
    left: 28px;
    height: 56px;
  }
  header #nav-toggle > div {
    width: 30px;
  }
  header #nav-toggle span:nth-child(1) {
    top: 0;
  }
  header #nav-toggle span {
    height: 2px;
  }
  header #nav-toggle span:nth-child(2) {
    top: 9px;
  }
  header #nav-toggle span:nth-child(3) {
    top: 18px;
  }
  .open header #nav-toggle span:nth-child(1) {
    top: 12px;
  }
  .open header #nav-toggle span:nth-child(2) {
    top: 12px;
  }
  .open header #nav-toggle span:nth-child(3) {
    top: 12px;
  }
  #gloval-nav {
    background: url("../images/bg.jpg") left top / 53.33vw 53.33vw repeat #f5f5f5;
  }
  #gloval-nav .navInr {
    width: 100%;
    margin-left: 0;
  }
  #gloval-nav .navInr::after {
    width: 100%;
    height: 62.67vw;
    right: 0;
    bottom: 26vw;
    background: url("../images/menu_sp_bglogo.png") right bottom / 100% auto no-repeat;
  }
  #gloval-nav ul li {
    margin: 0 0.67vw;
  }
  #gloval-nav ul li a {
    font-size: 5.33vw;
    padding: 1.33vw;
  }
  #gloval-nav ul li a::before {
    font-size: 8vw;
    padding-bottom: 1.33vw;
  }
}/* Smartphone End */



/* ----------------------------------------------------------------
	#keyVisual
---------------------------------------------------------------- */
#keyVisual {
  position: relative;
}
#keyVisual #video-area {
  position: relative;
  overflow: hidden;
  width: calc(100% - 180px);
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  margin-left: 180px;
}
#keyVisual #video-area #video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


/* Tablet
----------------------------------------------- */
@media print,screen and (max-width: 1024px) {
  #keyVisual #video-area {
    width: calc(100% - 12.676056338vw);
    margin-left: 12.676056338vw;
  }
}/* Tablet End */


/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 767px) {
  #keyVisual #video-area {
    width: 100%;
    margin-left: 0;
  }
}/* Smartphone End */



/* ----------------------------------------------------------------
	#concept
---------------------------------------------------------------- */
#concept {
  width: 100%;
  padding: 100px 0 0;
}
#concept .contents {
  width: calc(100% - 180px);
  margin-left: 180px;
}
#concept .contents .contInr {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
#concept .contents .contInr h2 {
  position: absolute;
  top: 10px;
  left: -10px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#concept .contents .contInr h2 span {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #954343;
}
#concept .contents .contInr h2 span::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 32%;
  background: #954343;
  position: relative;
  top: 10px;
}
#concept .contents .contInr h3 {
  padding: 45px 0 35px 18%;
  font-size: 44px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
#concept .contents .contInr .lead {
  padding: 0 0 0 18%;
  line-height: 2.67;
  letter-spacing: 0.08em;
}

@media print,screen and (max-width: 1420px) {
  #concept {
    padding: 7.04vw 0 0;
  }
  #concept .contents .contInr {
    width: 70.42vw;
    max-width: 1000px;
  }
  #concept .contents .contInr h2 {
    top: 0.7vw;
    left: -0.7vw;
  }
  #concept .contents .contInr h3 {
    padding: 3.17vw 0 2.46vw 12.68vw;
  }
  #concept .contents .contInr .lead {
    padding: 0 0 0 12.68vw;
  }
}


/* Tablet
----------------------------------------------- */
@media print,screen and (max-width: 1024px) {
  #concept .contents {
    width: calc(100% - 12.676056338vw);
    margin-left: 12.676056338vw;
  }
}/* Tablet End */



/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 767px) {
  #concept {
    padding-top: 70px;
    margin-top: -70px;
  }
  #concept .contents {
    width: 100%;
    margin-left: 0;
    padding-top: 7.33vw;
  }
  #concept .contents .contInr {
    width: 84vw;
  }
  #concept .contents .contInr h2 {
    top: 1.33vw;
    left: -1.33vw;
    font-size: 6.67vw;
  }
  #concept .contents .contInr h2 span {
    font-size: 2.8vw;
  }
  #concept .contents .contInr h2 span::after {
    height: 8.83vw;
    top: 1.33vw;
  }
  #concept .contents .contInr h3 {
    padding: 10vw 0 8vw 20.07vw;
    font-size: 8.53vw;
    letter-spacing: 0.02em;
  }
  #concept .contents .contInr .lead {
    padding: 0 0 0 0;
    font-size: 4vw;
  }
}/* Smartphone End */



/* ----------------------------------------------------------------
	#specialty
---------------------------------------------------------------- */
#specialty {
  width: 100%;
  padding: 100px 0 0;
}
#specialty .contents {
  width: calc(100% - 180px);
  margin-left: 180px;
}
#specialty .contents .contInr {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
#specialty .contents .contInr h2 {
  position: absolute;
  top: 10px;
  right: 0;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#specialty .contents .contInr h2 span {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #954343;
}
#specialty .contents .contInr h2 span::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 64%;
  background: #954343;
  position: relative;
  top: 10px;
}
#specialty .contents .contInr ul {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-justify-content:flex-start;
	-moz-justify-content:flex-start;
	-ms-justify-content:flex-start;
	justify-content:flex-start;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 820px;
  padding: 60px 0 100px;
}
#specialty .contents .contInr ul li {
  width: 390px;
  margin-bottom: 40px;
}
#specialty .contents .contInr ul li:nth-child(2n) {
  margin-left: 40px;
}
#specialty .contents .contInr ul li h3 {
  padding: 32px 0 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1.73;
}
#specialty .contents .contInr ul li p {
  font-size: 12px;
  line-height: 2.17;
  color: #868686;
}

@media print,screen and (max-width: 1420px) {
  #specialty {
    padding: 7.04vw 0 0;
  }
  #specialty .contents .contInr {
    width: 70.42vw;
    max-width: 1000px;
  }
  #specialty .contents .contInr h2 {
    top: 0.7vw;
  }
  #specialty .contents .contInr ul {
    width: 57.75vw;
    padding: 4.23vw 0 7.04vw;
  }
  #specialty .contents .contInr ul li {
    width: 47.5%;
    margin-bottom: 2.82vw;
  }
  #specialty .contents .contInr ul li:nth-child(2n) {
    margin-left: 5%;
  }
  #specialty .contents .contInr ul li h3 {
    padding: 2.25vw 0 1.13vw;
  }
}


/* Tablet
----------------------------------------------- */
@media print,screen and (max-width: 1024px) {
  #specialty .contents {
    width: calc(100% - 12.676056338vw);
    margin-left: 12.676056338vw;
  }
  #specialty .contents .contInr {
    margin: 0 auto 7.81vw;
  }
}/* Tablet End */


/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 767px) {
  #specialty {
    padding-top: 70px;
    margin-top: -70px;
  }
  #specialty .contents {
    width: 100%;
    margin-left: 0;
    padding-top: 7.33vw;
  }
  #specialty .contents .contInr {
    width: 84vw;
    margin: 0 auto 0;
  }
  #specialty .contents .contInr h2 {
    top: 1.33vw;
    left: -1.33vw;
    font-size: 6.67vw;
  }
  #specialty .contents .contInr h2 span {
    font-size: 2.8vw;
  }
  #specialty .contents .contInr h2 span::before {
    width: 3.73vw;
    height: 4.8vw;
    margin-bottom: 1.6vw;
    left: 0.27vw;
    top: -0.53vw;
  }
  #specialty .contents .contInr h2 span::after {
    height: 61.23vw;
    top: 1.33vw;
  }
  #specialty .contents .contInr ul {
    width: 62.4vw;
    padding: 10.93vw 0 12vw;
  }
  #specialty .contents .contInr ul li {
    width: 100%;
    margin-bottom: 12vw;
  }
  #specialty .contents .contInr ul li:nth-child(2n) {
    margin-left: 0;
  }
  #specialty .contents .contInr ul li h3 {
    padding: 5.6vw 0 3.2vw;
    font-size: 3.73vw;
  }
  #specialty .contents .contInr ul li p {
    font-size: 3.2vw;
    line-height: 2.08;
  }
}/* Smartphone End */



/* ----------------------------------------------------------------
	#main-menu
---------------------------------------------------------------- */
#main-menu {
  width: 100%;
  padding-bottom: 100px;
}
#main-menu .contents {
  width: calc(100% - 180px);
  margin-left: 180px;
}
#main-menu .contents .kv {
  width: 100%;
  height: 440px;
  background: url("../images/p03_img01.jpg") center center / cover no-repeat;
}
#main-menu .contents .kv .kvInr {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
#main-menu .contents .kv .kvInr h2 {
  width: 120px;
  height: 440px;
  margin: 0 auto;
  padding-top: 54px;
  background: rgba(255, 255, 255, 0.9);
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  flex-direction:column;
}
#main-menu .contents .kv .kvInr h2 span {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #954343;
}
#main-menu .contents .kv .kvInr h2 span::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 60%;
  background: #954343;
  position: relative;
  top: 10px;
}
#main-menu .contents #food-menu,
#main-menu .contents #drink-menu,
#main-menu .contents #take-out,
#main-menu .contents #lunch-menu {
  width: 1000px;
  margin: 0 auto;
  padding-top: 44px;
}
#main-menu .contents #food-menu {
  padding-top: 94px;
}
#main-menu .contents .menuTitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-bottom: 44px;
}
#main-menu .contents .menuSub {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-bottom: 15px;
}
#main-menu .contents ul.menuList {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-justify-content:flex-start;
	-moz-justify-content:flex-start;
	-ms-justify-content:flex-start;
	justify-content:flex-start;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
}
#main-menu .contents ul.menuList li {
  width: 31%;
  margin: 0 3.5% 48px 0;
  text-align: center;
}
#main-menu .contents ul.menuList li:nth-child(3n) {
  margin: 0 0 48px 0;
}
#main-menu .contents ul.menuList li h3 {
  font-size: 15px;
  line-height: 1.73;
  padding: 28px 0 0;
}
#main-menu .contents ul.menuList li h3 span {
  display: block;
}

@media print,screen and (max-width: 1420px) {
  #main-menu .contents .kv .kvInr {
    width: 100%;
  }
  #main-menu .contents #food-menu,
  #main-menu .contents #drink-menu,
  #main-menu .contents #take-out,
  #main-menu .contents #lunch-menu {
    width: 70.42vw;
    max-width: 1000px;
  }
}


/* Tablet
----------------------------------------------- */
@media print,screen and (max-width: 1024px) {
  #main-menu {
    padding-bottom: 13.33vw;
  }
  #main-menu .contents {
    width: calc(100% - 12.676056338vw);
    margin-left: 12.676056338vw;
  }
  #main-menu .contents #food-menu,
  #main-menu .contents #drink-menu,
  #main-menu .contents #take-out,
  #main-menu .contents #lunch-menu {
    padding-top: 3.1vw;
  }
  #main-menu .contents #food-menu {
    padding-top: 6.62vw;
  }
  #main-menu .contents .menuTitle {
    padding-bottom: 3.1vw;
  }
  #main-menu .contents .menuSub {
    padding-bottom: 1.46vw;
  }
  #main-menu .contents ul.menuList li {
    margin: 0 3.5% 3.38vw 0;
  }
  #main-menu .contents ul.menuList li:nth-child(3n) {
    margin: 0 0 3.38vw 0;
  }
  #main-menu .contents ul.menuList li h3 {
    padding: 1.97vw 0 0;
  }
}/* Tablet End */


/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 767px) {
  #main-menu .contents {
    width: 100%;
    margin-left: 0;
  }
  #main-menu .contents .kv {
    height: 73.33vw;
    background: url("../images/p03_sp_img01.jpg") center center / cover no-repeat;
  }
  #main-menu .contents .kv .kvInr {
    position: relative;
    width: 100%;
  }
  #main-menu .contents .kv .kvInr h2 {
    width: 20vw;
    height: 73.33vw;
    padding-top: 5.2vw;
    font-size: 6.67vw;
  }
  #main-menu .contents .kv .kvInr h2 span {
    font-size: 2.8vw;
  }
  #main-menu .contents .kv .kvInr h2 span::after {
    height: 40.83vw;
    top: 1.33vw;
  }
  #main-menu .contents #food-menu,
  #main-menu .contents #drink-menu,
  #main-menu .contents #take-out,
  #main-menu .contents #lunch-menu {
    width: 84vw;
    padding-top: 26vw;
    margin-top: -26vw;
  }
  #main-menu .contents #food-menu {
    padding-top: 26vw;
    margin-top: 0;
  }
  #main-menu .contents .menuTitle {
    font-size: 5.6vw;
    padding-bottom: 8.53vw;
  }
  #main-menu .contents .menuSub {
    font-size: 3.73vw;
    padding: 6.54vw 0 2vw;
  }
  #main-menu .contents ul.menuList {
    margin: 0 auto 10.67vw;
  }
  #main-menu .contents ul.menuList li {
    width: 100%;
    margin: 0 0 8vw 0;
  }
  #main-menu .contents ul.menuList li:nth-child(3n) {
    margin: 0 0 8vw 0;
  }
  #main-menu .contents ul.menuList li h3 {
    font-size: 3.73vw;
    padding: 5.6vw 0 0;
  }
}/* Smartphone End */



/* ----------------------------------------------------------------
	#space
---------------------------------------------------------------- */
#space {
  width: 100%;
}
#space .contents {
  width: calc(100% - 180px);
  margin-left: 180px;
}
#space .contents .kv {
  width: 100%;
  height: 440px;
  background: url("../images/p04_img01.jpg") center center / cover no-repeat;
  margin-bottom: 110px;
}
#space .contents .kv .kvInr {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
#space .contents .kv .kvInr h2 {
  width: 120px;
  height: 440px;
  margin: 0 auto;
  padding-top: 68px;
  background: rgba(255, 255, 255, 0.9);
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  flex-direction:column;
}
#space .contents .kv .kvInr h2 span {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #954343;
}
#space .contents .kv .kvInr h2 span::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 35%;
  background: #954343;
  position: relative;
  top: 10px;
}
#space .contents .contArea {
  width: 1000px;
  margin: 0 auto 94px;
}
#space .contents .contArea ul {
  width: 100%;
  background: #fff;
  padding: 65px 80px;
  margin-bottom: 70px;
}
#space .contents .contArea ul::after {
	content: "";
	display: block;
	clear: both;
}
#space .contents .contArea ul li:nth-child(1) {
  float: left;
  width: 44%;
}
#space .contents .contArea ul:nth-child(even) li:nth-child(1) {
  float: right;
}
#space .contents .contArea ul li:nth-child(2) {
  float: right;
  width: 55%;
  padding-left: 9.5%;
}
#space .contents .contArea ul:nth-child(even) li:nth-child(2) {
  float: left;
  width: 55%;
  padding-left: 0;
  padding-right: 9.5%;
}
#space .contents .contArea ul li h3 {
  padding: 12px 0 28px;
  font-family: 'Noto Serif JP', serif;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
#space .contents .contArea ul li h4 {
  padding: 0 0 16px;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.04em;
}
#space .contents .contArea ul li p {
  font-size: 15px;
  line-height: 2.13;
  letter-spacing: 0.04em;
}
#space .contents .slideWrap {
  display: flex;
  overflow: hidden;
}
#space .contents .slideWrapList {
  display: flex;
}
#space .contents .slideWrapList li {
  width: 534px;
}
@-webkit-keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#space .contents .slideWrapList-animation {
animation :infinity-scroll-left 110s infinite linear 0.5s both;
}

@media print,screen and (max-width: 1420px) {
  #space .contents .kv .kvInr {
    width: 100%;
  }
  #space .contents .contArea {
    width: 70.42vw;
    max-width: 1000px;
  }
  #space .contents .contArea .wpc {
    display: none;
  }
}


/* Tablet
----------------------------------------------- */
@media print,screen and (max-width: 1024px) {
  #space .contents {
    width: calc(100% - 12.676056338vw);
    margin-left: 12.676056338vw;
  }
  #space .contents .kv {
    margin-bottom: 7.75vw;
  }
  #space .contents .contArea {
    margin: 0 auto 6.62vw;
  }
  #space .contents .contArea ul {
    padding: 4.58vw 5.63vw;
    margin-bottom: 4.93vw;
  }
  #space .contents .contArea ul li h3 {
    padding: 0.85vw 0 1.97vw;
  }
  #space .contents .contArea ul li h4 {
    padding: 0 0 1.13vw;
  }
  #space .contents .slideWrapList li {
    width: 37.61vw;
  }
}/* Tablet End */



/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 767px) {
  #space {
    padding: 70px 0 0;
    margin: -70px 0 10.67vw;
  }
  #space .contents {
    width: 100%;
    margin-left: 0;
  }
  #space .contents .kv {
    height: 73.33vw;
    background: url("../images/p04_sp_img01.jpg") center center / cover no-repeat;
    margin-bottom: 13.33vw;
  }
  #space .contents .kv .kvInr {
    position: relative;
    width: 100%;
  }
  #space .contents .kv .kvInr h2 {
    width: 20vw;
    height: 73.33vw;
    padding-top: 9.2vw;
    font-size: 6.67vw;
  }
  #space .contents .kv .kvInr h2 span {
    font-size: 2.8vw;
  }
  #space .contents .kv .kvInr h2 span::after {
    height: 19.9vw;
    top: 1.33vw;
  }
  #space .contents .contArea {
    width: 84vw;
    margin: 0 auto 6.4vw;
  }
  #space .contents .contArea ul {
    padding: 0;
    margin-bottom: 13.6vw;
  }
  #space .contents .contArea ul li:nth-child(1) {
    float: inherit;
    width: 100%;
  }
  #space .contents .contArea ul:nth-child(even) li:nth-child(1) {
    float: inherit;
  }
  #space .contents .contArea ul li:nth-child(2) {
    float: inherit;
    width: 100%;
    padding: 7.47vw 8vw 8vw;
  }
  #space .contents .contArea ul:nth-child(even) li:nth-child(2) {
    float: inherit;
    width: 100%;
    padding: 7.47vw 8vw 8vw;
  }
  #space .contents .contArea ul li h3 {
    padding: 0 0 3.2vw;
    font-size: 6.13vw;
  }
  #space .contents .contArea ul li h4 {
    padding: 0 0 2.93vw;
    font-size: 3.73vw;
    line-height: 2.14;
  }
  #space .contents .contArea ul li p {
    font-size: 3.73vw;
    line-height: 2.14;
  }
  #space .contents .slideWrapList li {
    width: 71.2vw;
  }
}/* Smartphone End */



/* ----------------------------------------------------------------
	#information
---------------------------------------------------------------- */
#information {
  width: 100%;
  padding: 80px 0 120px;
}
#information .contents {
  width: calc(100% - 180px);
  margin-left: 180px;
}
#information .contents .contInr {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
#information .contents .contInr::after {
	content: "";
	display: block;
	clear: both;
}
#information .contents .contInr h2 {
  position: absolute;
  top: 10px;
  left: -10px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#information .contents .contInr h2 span {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #954343;
}
#information .contents .contInr h2 span::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12%;
  background: #954343;
  position: relative;
  top: 10px;
}
#information .contents .contInr .txtArea {
  float: left;
  width: 57%;
  padding-left: 18%;
  padding-top: 40px;
}
#information .contents .contInr .txtArea h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.08em;
  padding-bottom: 32px;
  text-align: left;
  line-height: 1.3;
}
#information .contents .contInr .txtArea ol li {
  font-size: 15px;
  line-height: 2.13;
  letter-spacing: 0.04em;
}
#information .contents .contInr .txtArea ol li a {
  text-decoration: underline;
}
#information .contents .contInr .btnArea {
  float: right;
  width: 36%;
  padding-top: 50px;
}
#information .contents .contInr .btnArea li {
  width: 100%;
  margin-bottom: 20px;
}
#information .contents .contInr .btnArea li a {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Noto Serif JP', serif;
}
#information .contents .contInr .btnArea li.link {
  height: 60px;
}
#information .contents .contInr .btnArea li.link a {
  height: 60px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: url("../images/menu_btn.jpg") left top / 180px 65px repeat;
}
#information .contents .contInr .btnArea li.map {
  height: 60px;
}
#information .contents .contInr .btnArea li.map a {
  height: 60px;
  font-size: 18px;
  font-weight: 500;
  color: #242424;
  border: 1px solid #242424;
}
#information .contents .contInr .btnArea li.map a:hover {
  border: 1px solid #242424;
  background: #242424;
  color: #fff;
  opacity: 1;
}

@media print,screen and (max-width: 1420px) {
  #information {
    padding: 5.63vw 0 8.45vw;
  }
  #information .contents .contInr {
    width: 70.42vw;
    max-width: 1000px;
  }
  #information .contents .contInr h2 {
      top: 0.7vw;
      left: -0.7vw;
  }
  #information .contents .contInr .txtArea {
    padding-top: 2.82vw;
  }
  #information .contents .contInr .txtArea h3 {
    padding-bottom: 1.69vw;
  }
  #information .contents .contInr .btnArea {
    padding-top: 3.52vw;
  }
}


/* Tablet
----------------------------------------------- */
@media print,screen and (max-width: 1024px) {
  #information .contents {
    width: calc(100% - 12.676056338vw);
    margin-left: 12.676056338vw;
  }
  #information .contents .contInr .btnArea li {
    margin-bottom: 1.41vw;
  }
  #information .contents .contInr .btnArea li.link a {
    background: url("../images/menu_btn.jpg") left top / 12.68vw 4.58vw repeat;
  }
}/* Tablet End */


/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 767px) {
  #information {
    padding-top: calc(70px + 10.67vw);
    margin-top: calc(-70px - 10.67vw);
    padding-bottom: 49.33vw;
  }
  #information .contents {
    width: 100%;
    margin-left: 0;
  }
  #information .contents .contInr {
    width: 84vw;
  }
  #information .contents .contInr h2 {
    top: 1.33vw;
    left: -1.33vw;
    font-size: 6.67vw;
  }
  #information .contents .contInr h2 span {
    font-size: 2.8vw;
  }
  #information .contents .contInr h2 span::after {
    height: 1.83vw;
    top: 0.88vw;
  }
  #information .contents .contInr .txtArea {
    width: 100%;
    padding-left: 20.8vw;
    padding-top: 11.2vw;
  }
  #information .contents .contInr .txtArea h3 {
    font-size: 5.6vw;
    padding-bottom: 4.8vw;
  }
  #information .contents .contInr .txtArea ol li {
    font-size: 3.73vw;
    line-height: 2.13;
    letter-spacing: 0.04em;
  }
  #information .contents .contInr .btnArea {
    float: left;
    width: 100%;
    padding: 6.67vw 0 0 20.8vw;
  }
  #information .contents .contInr .btnArea li {
    margin-bottom: 5.33vw;
  }
  #information .contents .contInr .btnArea li.link {
    height: 12vw;
  }
  #information .contents .contInr .btnArea li.link a {
    height: 12vw;
    font-size: 4.27vw;
    background: url("../images/menu_btn.jpg") left top / 24vw 8.67vw repeat;
  }
  #information .contents .contInr .btnArea li.map {
    height: 12vw;
  }
  #information .contents .contInr .btnArea li.map a {
    height: 12vw;
    font-size: 4.27vw;
  }
  #information .contents .contInr .btnArea li.map a:hover {
    background: none;
    color: #242424
  }
}/* Smartphone End */



/* ----------------------------------------------------------------
	footer
---------------------------------------------------------------- */
footer {
  width: 100%;
  padding: 136px 0 100px;
  background: #fff;
}
footer .contents {
  width: calc(100% - 180px);
  margin-left: 180px;
}
footer .contents .contInr {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
footer .contents .contInr ul {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-justify-content:flex-start;
	-moz-justify-content:flex-start;
	-ms-justify-content:flex-start;
	justify-content:flex-start;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
}
footer .contents .contInr ul li {
  margin: 0 40px 20px 0;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
}
footer .contents .contInr .copy {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #7c7c7c;
  padding-top: 44px;
}

@media print,screen and (max-width: 1420px) {
  footer {
    padding: 9.58 0 7.04vw;
  }
  footer .contents .contInr {
    width: 70.42vw;
    max-width: 1000px;
  }
  footer .contents .contInr ul li {
    margin: 0 2.82vw 0.7vw 0;
  }
  footer .contents .contInr .copy {
    padding-top: 3.1vw;
  }
}


/* Tablet
----------------------------------------------- */
@media print,screen and (max-width: 1024px) {
  footer .contents {
    width: calc(100% - 12.676056338vw);
    margin-left: 12.676056338vw;
  }
}/* Tablet End */


/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 767px) {
  footer {
    width: 100%;
    padding: 70px 0 0;
    margin: -70px 0 0;
    background: none;
  }
  footer .contents {
    width: 100%;;
    margin-left: 0;
    padding: 16vw 0 19.2vw;
    background: #fff;
  }
  footer .contents .contInr {
    width: 84vw;
  }
  footer .contents .contInr ul li {
    margin: 0 4vw 2vw 0;
    font-size: 4.27vw;
  }
  footer .contents .contInr .copy {
    font-size: 2.67vw;
    padding-top: 6.4vw;
  }
}/* Smartphone End */