@charset "UTF-8";
/*
* Last Update 2021-04-05
*
* 0-1.Clearfix
*
* 1-1.General
* 1-2.Structure
*
*/

/*
* Media query Setting
*SMP > below 559px
*TB > below 560px - 959px
*PC > over 960px;
*/

/*======================================

0-1.Clearfix

=======================================*/
.clearfix:after {
  clear: both;
  content: '';
  display: block;
}

/*======================================

1-1.General

=======================================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow: auto;
}

body {
  background-color: #fff;
  color: #000;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 1.2rem;
  line-height: 1.6;
  overflow: hidden;
}

/*===== for   OVER - 560px =====*/
@media screen and (min-width: 560px) {
  body {
    font-size: 1.4rem;
  }
}

/*===== for   OVER - 960px =====*/
@media screen and (min-width: 960px) {
  body {
    font-size: 1.6rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  width/***/
: auto;
  border: none;
  border-style: none;
}

img.image-full {
  display: block;
  width: 100%;
  margin: auto;
}

img[src$='.svg'] {
  width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

figure {
  position: relative;
  line-height: 0;
}

figcaption {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 2px 2px 5px #000;
  position: absolute;
  bottom: 0.4em;
  right: 0.4em;
}
figcaption.noTxtShadow {
  text-shadow: none;
}
figcaption.outFig {
  color: #000;
  margin-top: 0.4em;
  text-align: right;
  text-shadow: none;
  position: relative;
  bottom: auto;
  right: auto;
}

hr {
  border: none;
  clear: both;
  height: 1px;
}

blockquote {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 8px;
}

/*===== for   OVER - 560px =====*/
@media screen and (min-width: 560px) {
  figcaption {
    font-size: 1.2rem;
  }

  hr {
    height: 16px;
  }

  blockquote {
    font-size: 1.2rem;
  }
}

em,
i {
  font-style: normal;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover,
a:focus {
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

a:hover img {
  opacity: 0.8;
}

.disable {
  color: #ccc;
  display: block;
  /* IE対応 */
  pointer-events: none !important;
}

/*===== for   OVER - 960px =====*/
@media screen and (min-width: 960px) {
  a[href*='tel:'] {
    pointer-events: none !important;
    cursor: default;
    text-decoration: none;
  }
}

#pageWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 70px;
}

#pageWrap > * {
  display: block;
  margin: 0 auto;
  width: 100%;
}

#pageWrap h1 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
#pageWrap #contents {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
#pageWrap #pageFooterWrap {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

#contents {
  margin-bottom: 40px;
}

.container,
.container-narrow {
  width: 94%;
  margin: 0 auto;
  position: relative;
}
.container-narrow {
  max-width: 920px;
}
.container {
  max-width: 100%;
}
.container-fluid {
  width: 100%;
}

.dir_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.gut_just {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.gut_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.gut_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.gut_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.gut_around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.only_sp,
.visible_sp {
  display: block;
}

.only_md,
.only_lg,
.visible_tbpc,
.visible_pc {
  display: none;
}

/*===== for   OVER - 560px =====*/
@media screen and (min-width: 560px) {
  #contents {
    margin-bottom: 48px;
  }

  .only_sp,
  .visible_sp {
    display: none;
  }

  .only_md,
  .visible_tb,
  .visible_tbpc {
    display: block;
  }
}

/*===== for   OVER - 960px =====*/
@media screen and (min-width: 960px) {
  #pageWrap {
    padding-top: 65px;
  }

  #contents {
    margin-bottom: 64px;
  }

  .container {
    width: 94%;
  }

  .visible_tb {
    display: none;
  }

  .only_lg,
  .visible_pc {
    display: block;
  }
}

/*======================================

1-2.Structure

=======================================*/

/*==========
HEADER
==========*/
header {
  background-color: #fff;
  height: 65px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}

header h1 {
  background-size: 100%;
  height: 65px;
  margin: 10px 0 0;
  max-width: 100%;
}

/*
header h1 {
  background: url(../../img/common/logo.png) no-repeat;
  background-size: 100%;
  height: 70px;
  margin: 10px 0 0;
  text-indent: -9999em;
  width: 66px;
}
*/


header h1 a {
  display: block;
  height: 100%;
  width: 100%;
}

.header_drawer {
  display: none;
}

#unaviWrap {
  display: none;
}
#unaviWrap #uNav li {
  font-size: 1.3rem;
  margin: 0 2em;
}
#unaviWrap #uNav li.nav_request {
  margin: 0 0 0 2em;
}
#unaviWrap #uNav li.nav_reserve {
  margin: 0 0 0 1em;
}

.nav_request a {
border: 1px solid #ccc;
  background-color: #ffffff;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.nav_request a:hover {
  background-color: #ccc;
}
.nav_reserve a {
  background-color: #000;
  /*display: none;一旦非表示*/
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.nav_reserve a:hover {
  background-color: #666;
}


.nav_request a{
  color: #000;
  display: block;
  font-size: 1.4rem;
}
.nav_reserve a {
  color: #fff;
  display: block;
  font-size: 1.4rem;
}

.nav_request a span,
.nav_reserve a span{
font-size: 1.6rem;
}


header .nav_request,
header .nav_reserve {
  line-height: 40px;
  text-align: center;
  width: 140px;
}

/*.nav_reserve {  display: none;}  一旦非表示 */

/*===== for   BELOW - 959px =====*/
@media screen and (max-width: 959px) {
  header {
    height: 70px;
  }
  header .container {
    width: 100%;
  }
  header h1 {
    height: 58px;
    margin: 15px 10px 0;
  }

  #unaviWrap {
    display: block;
    width: 100%;
  }
  #unaviWrap #uNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #unaviWrap #uNav li {
    background-color: #ddd;
    font-size: 1.2rem;
    line-height: 48px;
    margin: 0;
    text-align: center;
    width:25%;
    /*width: 33.33%;来場非表示のみ*/
  }
  #unaviWrap #uNav li + li {
    border-left: 1px solid #fff;
  }
  #unaviWrap #uNav li a {
    display: block;
  }

  #unaviWrap #uNav li.nav_request,
  #unaviWrap #uNav li.nav_reserve {
    margin: 0;
  }

  #unaviWrap .nav_request a,
  #unaviWrap .nav_reserve a {
    color: #fff;
    display: block;
    font-size: 1.2rem;
  }

  .header_drawer {
    display: block;
    height: 68px;
    width: 68px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .header_drawer button {
    background-color: #000;
    border: none;
    height: 100%;
    width: 100%;
    position: relative;
  }
  .header_drawer span {
    position: absolute;
    top: 1.6em;
    left: 50%;
    width: 24px;
    height: 1px;
    background-color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .header_drawer span:nth-child(1) {
    -webkit-transform: translate(-50%, -6px);
    transform: translate(-50%, -6px);
  }
  .header_drawer span:nth-child(3) {
    -webkit-transform: translate(-50%, 6px);
    transform: translate(-50%, 6px);
  }
  .header_drawer button::after {
    color: #fff;
    content: 'MENU';
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    position: absolute;
    bottom: 0.8em;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  /* .nav_reserve {display: none;}一旦非表示 */
}

/*===== for   BELOW - 559px =====*/
@media screen and (max-width: 480px) {
  header h1 {
    height: 52px;
    max-width: 100%;
    margin: 10px 0 4px 3%;
    padding-top: 10px;
}
}




/*==========
GLOBAL NAVI
==========*/

#gnaviWrap {
  line-height: 48px;
  margin: 10px;
}

#gNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#gNav li {
  font-size: 1.6rem;
  margin: 0 0.4em;
  text-align: center;
  position: relative;
}
#gNav li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#gNav li.disable a {
  color: #ccc;
}

#gNav li.nav_request {
  margin: 0 1em 0 1em;
}
#gNav li.nav_reserve {
  margin: 0;
  /*display: none;*/
}

/*===== for   OVER - 960px =====*/
@media screen and (min-width: 960px) {
  .is-fixed {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    -webkit-transition: 1s;
    transition: 1s;
    z-index: 2;
  }
}

/*===== for   BELOW - 959px =====*/
@media screen and (max-width: 959px) {
/*
  #drawer {
    background-color: rgba(0, 20, 60, 0.7);
    height: 0;
    opacity: 1;
    width: 100%;
    position: fixed;
    top: 116px;
    left: 50%;
    z-index: 10;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  #drawer.open {
    height: auto;
    opacity: 1;
    width: 100%;
  }
  #drawer li {
    text-align: center;
    padding: 10px 0;
    list-style: none;
  }

  #drawer a {
    color: #fff;
    text-decoration: none;
  }




  #gnaviWrap {
    display: flex;
    padding-bottom: 0;
  }



  #drawer.open #gNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

*/




  #gNav li {
    font-size: 1rem;
    width: 50%;
  }
  #gNav span {
    font-size: 2rem;
  }
  #gNav li {
    margin: 0;
  }
  #gNav li:first-child {
    width: 150px;
  }

  #gNav li a,
  #gNav li a:hover {
    color: #fff;
  }
  #gNav a span::after {
    background-color: #fff;
    height: 1px;
  }
  #gNav a:hover span::after {
    background-color: #fff;
    margin-left: -1em;
    width: 2em;
    left: 50%;
  }
  #gNav .nav_request {
    border: none;
    padding: 24px 0;
    width: 100%;
  }
  #gNav .nav_request a {
    font-size: 1.6rem;
    margin: auto;
    max-width: 300px;
    width: 100%;
  }
  #gNav .nav_request a:hover {
    background-color: #3da7e5;
    color: #fff;
  }
}

/*===== for   OVER - 560px =====*/
@media screen and (max-width: 560px) {

  #drawer.open #gNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #gNav li:first-child {
    width: 100px;
}
}





/*==========
PAGE FOOTER
==========*/
#pageFooterWrap {
  background-color: #f1f1f1;
  padding: 1.6em 0;
  text-align: center;
}

#commentsWrap {
  border-bottom: 1px solid #fff;
  padding-bottom: 1.6em;
}
#commentsWrap ul {
  margin: 0 auto;
  max-width: 1200px;
  width: 94%;
}
#commentsWrap li {
  font-size: 1.1rem;
  padding-left: 0.5em;
  text-align: left;
  text-indent: -0.5em;
}

#footerContactWrap {
  margin-top: 1.6em;
  padding-top: 1.6em;
}

#footerContactWrap ul {
display: flex;
  justify-content: center; /* 来場非表示のみ */
  justify-content: space-between;
  margin: 0 auto 1.6em;
  max-width: 600px; /*来場非表示のみ360px 表示の場合のみ480px*/
  width: 94%;
}
#footerContactWrap li {
  font-size: 112.5%;
  width: 48%; 
  /* width: 100%;*/
}
#footerContactWrap li a {
  line-height: 60px;
}

#footerContactWrap dt span {
  display: block;
}
#footerContactWrap .contact_tel {
  font-size: 200%;
  position: relative;
}
#footerContactWrap .contact_tel::before {
  background: url(../../img/common/ic_freedial.png) no-repeat 0 50%;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 20px;
  margin-right: 0.2em;
  width: 36px;
}

#footerContactWrap .work_time {
  font-size: 1.1rem;
  margin-top: 0.4em;
}
#footerContactWrap .work_time span {
  display: block;
}
#footerContactWrap .work_time small {
  font-size: 1rem;
}
#footerContactWrap .work_time small span {
  display: block;
}

/*===== for   OVER - 560px =====*/
@media screen and (min-width: 560px) {
  #footerContactWrap dt span {
    display: inline;
  }

  #footerContactWrap .work_time {
    font-size: 1.2rem;
  }
  #footerContactWrap .work_time span {
    display: inline-block;
    padding-left: 1em;
  }
  #footerContactWrap .work_time small {
    display: block;
    font-size: 1.1rem;
  }
  #footerContactWrap .work_time small > span {
    display: inline;
  }
}

/*==========
FOOTER
==========*/
footer {
  margin: 0 auto;
  padding: 24px 0 16px;
  text-align: center;
  width: 94%;
}
footer h2 {
  line-height: 1;
  margin: 0 auto 0.5em;
  max-width: 320px;
  width: 90%;
}
footer .freedial {
  display: none;
  font-size: 1.2rem;
  margin: 16px auto;
}
footer .freedial a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.2rem;
  vertical-align: middle;
}
footer .freedial a::before {
  background: url(../../img/common/ic_freedial.png) no-repeat;
  background-size: 100%;
  content: '';
  display: inline-block;
  height: 26px;
  margin: 0 4px 0 8px;
  width: 47px;
}

#copyright {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

#copyright span {
  display: block;
}

/* page_top */
#pagetop {
  background-color: #8ac3e5;
  cursor: pointer;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
}
#pagetop:hover {
  background-color: #3da7e5;
}
#pagetop a {
  background: url(../../img/common/ic_pageanchor.png) no-repeat 50%;
  background-size: 80%;
  display: block;
  height: 100%;
  width: 100%;
}

#jvlogoWrap {
display: flex;
align-items: flex-start;
justify-content: space-between;
line-height: 1;
margin:0 auto .5em;
max-width: 560px;
/*max-width: 532px;*/
width:96%;
}
#jvlogoWrap li {margin:0 1.5%;}
#jvlogoWrap li img {
max-height:50px;
width:auto;
}

/*===== for   OVER - 560px =====*/
@media screen and (min-width: 560px) {
  #copyright span {
    display: inline;
  }
}

/*==========
FONT
==========*/

h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
}

h1 {
  font-size: 1.8em;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.2rem;
}

.font4L {
  font-size: 2.1rem;
}
.font3L {
  font-size: 1.8rem;
}
.font2L {
  font-size: 1.5rem;
}
.fontL {
  font-size: 1.35rem;
}
.fontM {
  font-size: 1.2rem;
}
.fontS {
  font-size: 1.1rem;
}
.font2S {
  font-size: 1rem;
}

.fontRed {
  color: #f00;
}

.fontTxt_en {
  font-family: 'Barlow Condensed', sans-serif;
}

.txt_note {
  font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic,
    sans-serif;
  font-size: 1rem;
  text-align: right;
}

.txt_center {
  text-align: center;
}

.body_catch {
  font-size: 1.65rem;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  margin-bottom: 2em;
  text-align: center;
}

@media screen and (max-width: 560px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.9rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1.4rem;
  }

  .font4L {
    font-size: 2.45rem;
  }
  .font3L {
    font-size: 2.1rem;
  }
  .font2L {
    font-size: 1.75rem;
  }
  .fontL {
    font-size: 1.55rem;
  }
  .fontM {
    font-size: 1.4rem;
  }
  .fontS {
    font-size: 1.2rem;
  }
  .font2S {
    font-size: 1.1rem;
  }

  .txt_note {
    font-size: 1.2rem;
  }

  .body_catch {
    font-size: 1.92rem;
  }
}

@media screen and (min-width: 960px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  h4 {
    font-size: 1.6rem;
  }

  .font4L {
    font-size: 2.8rem;
  }
  .font3L {
    font-size: 2.4rem;
  }
  .font2L {
    font-size: 2rem;
  }
  .fontL {
    font-size: 1.8rem;
  }
  .fontM {
    font-size: 1.6rem;
  }
  .fontS {
    font-size: 1.4rem;
  }
  .font2S {
    font-size: 1.2rem;
  }

  .body_catch {
    font-size: 2.2rem;
  }
}

/*================
CONTENTS TITLE
================*/
#pageWrap h1 {
  background-color: #dce0e5;
  font-size: 1rem;
  padding: 1.4em 3%;
  text-align: center;
}

#titleWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 200px;
  margin-bottom: 5em;
  position: relative;
  width: 100%;
  z-index: -1;
}
#titleWrap::after {
  color: #fff;
  content: 'image photo';
  display: block;
  text-shadow: 1px 1px 1px #000;
  position: absolute;
  bottom: 0.6em;
  right: 0.6em;
}
#titleWrap h2 {
  color: #000;
  font-size: 1.6rem;
  margin: auto;
  text-align: center;
  text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
  position: relative;
}
#titleWrap h2 em {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.4rem;
  font-style: normal;
}

#titleWrap.non_mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 140px;
  margin-bottom: 2em;
  position: relative;
  width: 100%;
  z-index: -1;
}
#titleWrap.non_mv::after {
  display: none;
}

/*===== for   OVER - 560px =====*/
@media screen and (min-width: 560px) {
  #pageWrap h1 {
    font-size: 1.15rem;
  }

  #titleWrap {
    height: 300px;
  }
  #titleWrap h2 {
    font-size: 1.95rem;
  }
  #titleWrap h2 em {
    font-size: 4.2rem;
  }
  #titleWrap h2::before {
    height: 200px;
    width: 200px;
  }

  #titleWrap.non_mv {
    height: 180px;
    margin-bottom: 2em;
  }
  #titleWrap.non_mv h2::before {
    height: 120px;
  }
}

/*===== for   OVER - 960px =====*/
@media screen and (min-width: 960px) {
  #pageWrap h1 {
    font-size: 1.2rem;
  }

  #titleWrap {
    height: 440px;
  }
  #titleWrap h2 {
    font-size: 2.2rem;
  }
  #titleWrap h2 em {
    font-size: 5.6rem;
  }
  #titleWrap h2::before {
    height: 240px;
    width: 240px;
  }
}

.btn_print {
  margin: auto;
  max-width: 240px;
  width: 100%;
}
.btn_print a {
  background-color: #357bef;
  color: #fff;
  display: block;
  font-size: 112.5%;
  line-height: 40px;
  text-align: center;
}
.btn_print button {
  background-color: #357bef;
  color: #fff;
  cursor: pointer;
  font-size: 112.5%;
  line-height: 40px;
  text-align: center;
  width: 240px;
}

/* ルートに記述がベスト */
#argebrandSite {
  margin: 1.6em auto 0;
  max-width: 640px;
  width: 92%;
}
