@charset "utf-8";


/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/

html{
	overflow-y: scroll;
  scroll-behavior: smooth;
	font-size: 62.5%;
}


/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/

body{
	color: #333;
	background: #FFF;
  font-family: YakuHanMP, "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.6rem;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
}

/* fonts */
.sans-serif{
	font-family:"Noto Sans JP","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","游ゴシック体", "Yu Gothic", YuGothic,"メイリオ",Meiryo ,"ＭＳ Ｐゴシック" ,"MS P Gothic" ,sans-serif;
}
.en._sans{
  font-family: 'Open Sans', sans-serif;
}


/*--------------------------------------------------------------------------
   base link
---------------------------------------------------------------------------*/

a{
	outline: none;
}
a:link,
a:visited{
	text-decoration: none;
	color: #333;
}

.ophover{
	transition: opacity ease .3s;
}
.ophover:hover{
	opacity: .7;
}

.phone-link{
  pointer-events: none;
}


/*--------------------------------------------------------------------------
   img
---------------------------------------------------------------------------*/
img{
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}

/*--------------------------------------------------------------------------
   Animation
---------------------------------------------------------------------------*/

.fade,.fade01,.fade02,.fade03,.fade04,.blur,.zoom,
.delay01,.delay02,.delay03,.delay04,.delay05 {
	transition: 1.3s;
}
.fade {
	opacity: 0;
	transform: translate(0,0);
}
.fade01{
	opacity: 0;
	transform: translate(0,50px);
}
 .fade02 {
	opacity: 0;
	transform: translate(0,-50px);
}
.fade03 {
	opacity: 0;
	transform: translate(-50px,0);
}
.fade04 {
	opacity: 0;
	transform: translate(50px,0);
}
.blur {
  -webkit-filter: blur(14px);
	filter: blur(14px);
}
.zoom{
  transform: scale(1.1,1.1);
}
.delay01{
	transition-delay: 0.3s;
}
.delay02{
	transition-delay: 0.6s;
}
.delay03{
	transition-delay: 0.9s;
}
.delay04{
	transition-delay: 1.2s;
}
.delay05{
	transition-delay: 1.5s;
}

 .mv {
	opacity: 1;
  -webkit-filter: blur(0);
	filter: blur(0);
	transform: translate(0,0) scale(1,1);
}


/*--------------------------------------------------------------------------
   PC
---------------------------------------------------------------------------*/
.sp{
	display: none;
}
/* box-sizing ---*/
header, footer, main, section, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, th, td, a, span, small, strong, em, input, select, textarea, button {
	box-sizing: border-box;
}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
#Page{
	overflow: hidden;
}
/* .content{
	margin-top: 130px;
} */
.inner{
	max-width: 1120px;
	padding: 0 20px;
	margin: 0 auto;
}
.layout-box{
  display: flex;
  justify-content: space-between;
}



/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
#Header{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  width: 100%;
}
#Header::before{
  position:absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,1);
  transition: .3s;
}
#Header.scroll::before{
  opacity: 1;
}
#Header h1{
  position: relative;
  flex-shrink: 0;
  width: 290px;
}
#Header h1 a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130px;
  background: rgba(255,255,255,1);
}
#Header.scroll h1 a{
  /* background: none; */
  height: 80px;
}
#Header.scroll h1 a img{
  height: 60px;
}
#Header .nav-area{
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 290px);
  padding: 0 20px;
}
#Header .hd-inq{
  display: none;
}
#Header .btn-trigger{
  display: none;
}

/* ---------------------------------------------------------------------------
	 #Gnav
	 グローバルナビゲーション
--------------------------------------------------------------------------- */
#Gnav{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#Gnav .gnav-wrap{
   position: relative;
}
#Gnav .gnav{
  position: relative;
	display: flex;
  align-items: center;
}
#Gnav .gnav li{
  /* margin: 0 25px; */
  margin-inline: .6vw;
  position: relative;
  z-index: 0;
}
#Gnav .gnav li a{
  display: inline-block;
  font-size: clamp(12px, -0.8rem + 1.25vw, 16px); /* 1600 - 1920 */
  line-height: 1.3;
  padding: 3px 0;
}
#Gnav .gnav li a:before {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: max(7px, 64.285%);
  letter-spacing: 0;
  line-height: 1.8;
  padding: 1px 1em .5px;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
}
#Gnav .gnav li.new a:before{
  /* left: calc(50% - 2.2em); */
  content: "NEW";
  background: #23b48e;
  letter-spacing: .08em;
}
#Gnav .gnav li._campaign a:before{
  content: "キャンペーン";
  /* width: 100%; */
  background: #a7435b;
}
#Gnav .gnav li._us a:before{
  content: "Us＋採用";
  background: #dc51aa;
}
#slide-line{
  position:absolute;
  bottom: 0;
  display: block;
  content: "";
  width: 2.2em;
  height: 2px;
  background: #1f50a2;
  transition: .5s;
}
#Gnav .cv-btn-area{
	display: flex;
	flex-direction: row-reverse;
}
#Gnav .btn-req{
  margin: 0 0 0 20px;
}
#Gnav .btn-req a{
  width: 140px;
  height: 60px;
	padding-left: 25px;
  background-position: left 20px center;
  background-size: 18px auto;
  font-size: 1.6rem;
}

#Gnav .btn-rsv{
  margin: 0 0 0 15px;
}
#Gnav .btn-rsv a{
  width: 140px;
  height: 60px;
	padding-left: 25px;
  background-position: left 20px center;
  background-size: 18px auto;
  font-size: 1.6rem;
}
#Gnav .btn-rsv a.more {
  position: relative;
  background-position: left 25px bottom 11px;
  padding-top: 23px;
  z-index: 0;
}
#Gnav .btn-rsv a.more .easy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ad9159;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding-block: .3em .05em;
  text-align: center;
  z-index: 1;
}
#Gnav .btn-rsv a.more .easy::before,
#Gnav .btn-rsv a.more .easy::after {
  content: '';
  width: 1px;
  height: 12px;
  background-color: #e8d4ac;
  border-radius: 50vw;
  margin-bottom: 2px;
}
#Gnav .btn-rsv a.more .easy::before {
  transform: rotate(-30deg);
}
#Gnav .btn-rsv a.more .easy::after {
  transform: rotate(30deg);
}
#Gnav .btn-rsv a.more .easy .num {
  font-size: 141.667%;
  vertical-align: -.5px;
}

@media (min-width: 1201px) and (max-width: 1580px) {
  #Header .nav-area {
    width: calc(100% - 180px);
    padding: 0;
  }
  #Header h1 {
    width: 180px;
  }
  #Header h1 a{
    height: auto;
    padding: 15px 10px;
  }
  #Gnav .gnav li {
    margin: 0;
    margin-right: 1.2vw;
  }
  #Gnav .gnav li a {
    font-size: clamp(10px, -0.91rem + 1.54vw, 14px); /* 1240 - 1500 */
  }

  #Gnav .btn-req {
    margin: 0 15px 0;
  }
  #Gnav .btn-req a {
    width: auto;
    height: auto;
		font-size: 1.5rem;
    line-height: 1;
    background-size: 14px auto;
    background-position: left 14px center;
    padding: 18px 14px 18px 35px;
	}
	#Gnav .btn-rsv {
    margin: 0 15px 0 0;
  }
  #Gnav .btn-rsv a {
    width: auto;
    height: auto;
		font-size: 1.5rem;
    line-height: 1;
    background-size: 14px auto;
    background-position: left 14px center;
    padding: 18px 14px 18px 35px;
	}
  #Gnav .btn-rsv a.more {
    background-position: left 15px bottom 9px;
    padding-block: 29px 7px;
  }
}
@media (min-width: 769px) and (max-width: 1220px) {
  #Gnav .gnav li {
    margin-right: 15px
  }
  #Gnav .gnav li a {
    font-size: 1.5rem;
  }
  #Gnav .btn-req {
    margin: 0;
  }
	#Gnav .btn-rsv{
  	margin: 0 10px 0 10px;
	}
}
@media (min-width: 769px) and (max-width: 1080px) {
  #Header .nav-area {
    width: calc(100% - 134px);
  }
  #Header h1 {
    width: 134px;
  }
  #Gnav .gnav li a,
  #Gnav .btn-req a,
	#Gnav .btn-rsv a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1220px) {
  #Header .btn-req.sp,
  #Header .btn-rsv.sp,
  #Header .btn-tel.sp {
    display: block !important;
  }
  #Header .btn-trigger {
    display: flex;
  }

  #Header{
		background: #fff;
	}
  #Header::before{
    display: none;
  }
  #Header h1{
    width: 150px;
  }
  #Header h1 a{
    height: 60px;
  }
  #Header.scroll h1 a{
    background: rgba(255,255,255,.7);
    height: 60px;
  }
  #Header h1 img{
    width: 106px;
  }
  #Header.scroll h1 a img{
    height: auto;
  }
  #Header .nav-area{
    width: calc(100% - 150px);
    padding: 0;
    padding-right: 95px;
  }
  #Header .btn-req.sp{
    width: 95px;
  }
  #Header .btn-req.sp a{
    width: 100%;
    height: 60px;
		padding-top: 22px;
    font-size: 1.3rem;
		letter-spacing: .08em;
		background-position: center top 10px;
    background-size: 13px auto;
		text-align: center;
  }
	#Header .btn-rsv.sp{
    width: 95px;
    /* margin-right: 60px; */
  }
  #Header .btn-rsv.sp a{
    width: 100%;
    height: 60px;
		padding-top: 22px;
    font-size: 1.3rem;
		letter-spacing: .08em;
		background-position: center top 10px;
    background-size: 15px auto;
		text-align: center;
  }
  #Header .btn-tel.sp{
    width: 95px;
    /* margin-right: 60px; */
  }
  #Header .btn-tel.sp a{
    width: 100%;
    height: 60px;
		padding-top: 22px;
    font-size: 1.3rem;
		letter-spacing: .08em;
		background-position: center top 10px;
    background-size: 19px auto;
		text-align: center;
  }
  #Header .hd-inq{
    display: block;
  }
  #Header .btn-trigger{
    position: fixed;
    right: 0;
    top: 0;
    z-index: 15000;
    display: block;
    width: 95px;
    height: 60px;
    background: rgba(255,255,255,1);
    cursor: pointer;
  }
  #Header .btn-trigger span{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 30px;
    height: 2px;
    transform-origin: center;
    background: #1f50a2;
    transition: .3s;
  }
  #Header .btn-trigger span:nth-child(1){
    top: 18px;
  }
  #Header .btn-trigger span:nth-child(2){
    top: 26px;
  }
  #Header .btn-trigger strong{
    position: absolute;
    left: 0;
    top: 35px;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    color: #1f50a2;
    font-family: 'Open Sans', sans-serif;
  }

  #Header.on .btn-trigger span:nth-child(1){
    top: 24px;
    transform: translate(-50%, 4px) rotate(-45deg);
  }
  #Header.on .btn-trigger span:nth-child(2){
    top: 32px;
    transform: translate(-50%, -4px) rotate(45deg);
  }
  #Header.on .btn-trigger strong{
    display: none;
  }

  #Gnav{
    position: fixed;
    right: 0;
    top: 0;
    z-index: 12000;
    transform: translateX(110%);
    display: block;
    width: 75vw;
    height: calc(100vh - 60px);
    background: url(../../img/common/gnav_border.png) no-repeat left top rgba(8,48,115,.9);
    background-size: 4px 100vh;
    overflow: auto;
    transition: .5s;
  }
  .on #Gnav{
    transform: translateX(0);
  }
  #Gnav .gnav{
    display: block;
    padding: 30px 0 20px;
  }
  #Gnav .gnav li{
    margin: 0;
  }
  #Gnav .gnav li a{
    display: block;
    padding: 10px;
    color: #fff;
    font-size: 1.6rem;
    position: relative;
    z-index: 0;
    text-align: center;
  }
  #Gnav .gnav li.new a,
  #Gnav .gnav li._campaign a{
    padding: 16px 10px 10px;
  }
  #Gnav .gnav li a:before {
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 9px;
    padding: 2px 1em 1.5px;
  }
  #slide-line{
    display: none;
  }
	#Gnav .cv-btn-area{
		display: block;
	}
  #Gnav .btn-req{
    max-width: 320px;
    padding: 15px 0;
		margin: 0 auto;
  }
  #Gnav .btn-req a{
    width: 100%;
    max-width: unset;
		padding-left: 20px;
    background-color: #fff;
    background-image: url(../../img/common/ico_file_blue.svg);
    font-size: 1.7rem;
    color: #1f50a2;
  }
	#Gnav .btn-rsv{
    max-width: 320px;
		margin: 0 auto;
	}
	#Gnav .btn-rsv a{
    width: 100%;
    max-width: unset;
		padding-left: 20px;
    font-size: 1.7rem;
		background-position: left 10vw center;
  }
  #Gnav .btn-rsv a.more {
    background-position: left 10vw bottom 10px;
    padding-top: 25px;
  }
  #Gnav .btn-rsv a.more .easy {
    padding-bottom: 4px;
  }

  #Gnav .hd-inq{
    max-width: 340px;
   color: #fff;
   text-align: center;
   margin-inline: auto;
	 padding-bottom: 20px;
  }
  #Gnav .hd-inq h3{
		margin-bottom: 3px;
    font-size: 1.6rem;
    font-weight: normal;
    letter-spacing: .08em;
    line-height: 1.5;
  }
  #Gnav .hd-inq .txt{
    margin-bottom: 7px;
    font-size: 1.2rem;
    letter-spacing: .05em;
  }
  #Gnav .hd-inq .btn-tel{
    padding: 0 15px;
  }
   #Gnav .hd-inq .btn-tel a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background: url(../../img/common/ico_phone.svg) no-repeat left 10% center #fff;
    background-size: 17px auto;
    font-size: 2rem;
    letter-spacing: .05em;
    color: #1f50a2;
  }
}


/* clearfix
-----------------------------------------------------------------*/
.cf:after{
	clear :both;
	content: "";
	display: block;
	height: 0;
}


/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/

/* Cv
-----------------------------------------------------------------*/
#Cv{
  padding: 55px 0 60px;
  background: url(../../img/common/footer_border.png) no-repeat center bottom #083073;
  background-size: 100vw 8px;
  color: #fff;
  text-align: center;
}
#Cv h2{
  margin-bottom: 30px;
}
#Cv h2 .en{
  color: #b5d676;
}
#Cv .name{
  font-size: 1.4rem;
}
#Cv .phone{
  margin: 10px 0 20px;
  line-height: 1;
  font-size: 4.6rem;
  letter-spacing: .03em;
}
#Cv .phone a{
  color: #fff;
	padding: 0 60px;
	background: url(../../img/common/ico_freedial.svg) no-repeat left center / 53px auto;
}
#Cv .businesshour{
  display: flex;
  justify-content: center
}
#Cv .businesshour p{
  display: flex;
  margin: 0 10px;
  font-size: 1.4rem;
  line-height: 1.5;
}
#Cv .businesshour p strong{
  margin-right: 7px;
  padding: 1px 5px 0;
  background: #b5c1d5;
  font-weight: normal;
  font-size: 1.2rem;
  color: #083073;
}


/* 夏期休業のお知らせ ---------------*/

#Cv .info-holiday{
	max-width: 575px;
	margin: 35px auto 0;
	padding: 10px 10px 15px;
	border: 1px solid rgba(255,255,255,.5);
	font-size: 1.3rem;
	line-height: 1.5;
}
#Cv .info-holiday h3{
	margin-bottom: 5px;
	font-weight: normal;
}




/* Footer
-----------------------------------------------------------------*/
#Footer{
  padding: 30px 0 20px;
  text-align: center;
}
#Footer .co-list{
  display: flex;
  justify-content: space-between;
  max-width: 550px;
  margin: 0 auto 30px;
}
#Footer .co-list li{
  margin: 0 10px;
}
#Footer .co-list small{
  display: block;
  font-size: 1rem;
}
#Footer .co-list li:nth-child(1) small{
  margin-bottom: 5px;
}
#Footer .co-list li:nth-child(2) small{
  margin-bottom: 10px;
}
#Footer .copyright{
  display: block;
  font-size: 1.2rem;
}
















/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {

  #Page {
    min-width: 320px;
  }

  img{
    width: 100%;
    height: auto;
  }

  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  img.sp,
  br.sp{
    display: inline;
  }

  .phone-link{
    pointer-events: auto;
  }


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
	/* .content{
		margin-top: 60px;
	} */
  .inner{
    max-width: initial;
  }

/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
  #Header {
    top: auto;
    bottom: 0;
  }
	/* #Header{
		background: #fff;
	}
  #Header::before{
    display: none;
  }
  #Header h1{
    width: 150px;
  }
  #Header h1 a{
    height: 60px;
  }
  #Header.scroll h1 a{
    background: rgba(255,255,255,.7);
    height: 60px;
  }
  #Header h1 img{
    width: 106px;
  }
  #Header.scroll h1 a img{
    height: auto;
  }
  #Header .nav-area{
    width: calc(100% - 150px);
    padding: 0;
  }
  #Header .btn-req.sp{
    width: 80px;
  }
  #Header .btn-req.sp a{
    width: 100%;
    height: 60px;
		padding-top: 22px;
    font-size: 1.3rem;
		letter-spacing: .08em;
		background-position: center top 10px;
    background-size: 13px auto;
		text-align: center;
  }
	#Header .btn-rsv.sp{
    width: 80px;
    margin-right: 60px;
  }
  #Header .btn-rsv.sp a{
    width: 100%;
    height: 60px;
		padding-top: 22px;
    font-size: 1.3rem;
		letter-spacing: .08em;
		background-position: center top 10px;
    background-size: 15px auto;
		text-align: center;
  }
  #Header .hd-inq{
    display: block;
  }
  #Header .btn-trigger{
    position: fixed;
    right: 0;
    top: 0;
    z-index: 15000;
    display: block;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,1);
    cursor: pointer;
  }
  #Header .btn-trigger span{
    position: absolute;
    left: 15px;
    display: block;
    width: 30px;
    height: 2px;
    transform-origin: left center;
    background: #1f50a2;
    transition: .3s;
  }
  #Header .btn-trigger span:nth-child(1){
    top: 18px;
  }
  #Header .btn-trigger span:nth-child(2){
    top: 26px;
  }
  #Header .btn-trigger strong{
    position: absolute;
    left: 0;
    top: 35px;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    color: #1f50a2;
    font-family: 'Open Sans', sans-serif;
  }

  #Header.on .btn-trigger span:nth-child(1){
    top: 24px;
    transform: translate(5px, 15px) rotate(-45deg);
  }
  #Header.on .btn-trigger span:nth-child(2){
    top: 32px;
    transform: translate(5px, -15px) rotate(45deg);
  }
  #Header.on .btn-trigger strong{
    display: none;
  } */

  #Header .btn-trigger {
    top: auto;
    bottom: 0;
  }


/* ---------------------------------------------------------------------------
	 #Gnav
	 グローバルナビゲーション
--------------------------------------------------------------------------- */
  /* #Gnav{
    position: fixed;
    right: 0;
    top: 0;
    z-index: 12000;
    transform: translateX(110%);
    display: block;
    width: 75vw;
    height: 100vh;
    background: url(../../img/common/gnav_border.png) no-repeat left top rgba(8,48,115,.9);
    background-size: 4px 100vh;
    overflow: auto;
    transition: .5s;
  }
  .on #Gnav{
    transform: translateX(0);
  }
  #Gnav .gnav{
    display: block;
    padding: 60px 0 20px;
  }
  #Gnav .gnav li{
    margin: 0;
  }
  #Gnav .gnav li a{
    display: block;
    padding: 10px;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
  }
  #Gnav .gnav li.new a{
    padding: 16px 10px 10px;
  }
  #Gnav .gnav li.new a:before{
    top: calc(50% - 0.8em);
    left: 24vw;
    font-size: 9px;
    padding: 2px 1em 1.5px;
    margin: 0 10px 0 -50px;
  }
  #slide-line{
    display: none;
  }
	#Gnav .cv-btn-area{
		display: block;
	}
  #Gnav .btn-req{
    padding: 15px 0;
		margin: 0 15px;
  }
  #Gnav .btn-req a{
    width: 100%;
    max-width: unset;
		padding-left: 20px;
    background-color: #fff;
    background-image: url(../../img/common/ico_file_blue.svg);
    font-size: 1.7rem;
    color: #1f50a2;
  }
	#Gnav .btn-rsv{
		margin: 0 15px;
	}
	#Gnav .btn-rsv a{
    width: 100%;
    max-width: unset;
		padding-left: 20px;
    font-size: 1.7rem;
		background-position: left 10vw center;
  }
  #Gnav .btn-rsv a.more {
    background-position: left 10vw bottom 10px;
    padding-top: 25px;
  }
  #Gnav .btn-rsv a.more .easy {
    padding-bottom: 4px;
  }

  #Gnav .hd-inq{
   color: #fff;
   text-align: center;
	 padding-bottom: 20px;
  }
  #Gnav .hd-inq h3{
		margin-bottom: 3px;
    font-size: 1.6rem;
    font-weight: normal;
    letter-spacing: .08em;
    line-height: 1.5;
  }
  #Gnav .hd-inq .txt{
    margin-bottom: 7px;
    font-size: 1.2rem;
    letter-spacing: .05em;
  }
  #Gnav .hd-inq .btn-tel{
    padding: 0 15px;
  }
   #Gnav .hd-inq .btn-tel a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background: url(../../img/common/ico_phone.svg) no-repeat left 10% center #fff;
    background-size: 17px auto;
    font-size: 2rem;
    letter-spacing: .05em;
    color: #1f50a2;
  } */

/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/

/* Cv
-----------------------------------------------------------------*/
  #Cv{
    padding: 45px 0;
    background-size: 100vw 6px;
  }
  #Cv h2{
    margin-bottom: 20px;
  }
  #Cv .name{
    font-size: 1.2rem;
  }
  #Cv .phone{
    margin: 10px 0 15px;
    font-size: 2.4rem;
  }
  #Cv .phone a{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    width: 100%;
    height: 60px;
    margin: 0 auto;
    background: url(../../img/common/ico_phone.svg) no-repeat left 10% center #fff;
    background-size: 20px auto;
    color: #1f50a2;
  }
  #Cv .businesshour{
    display: block;
  }
  #Cv .businesshour p{
    justify-content: center;
    margin: 10px;
    font-size: 1.3rem;
  }
  #Cv .businesshour p strong{
    font-size: 1.1rem;
  }

/* 夏期休業のお知らせ ---------------*/

	#Cv .info-holiday{
		max-width: 575px;
		margin: 20px auto 0;
		padding: 10px 5px 15px;
		font-size: 1.2rem;
	}
	#Cv .info-holiday .txt{
		line-height: 1.6;
	}




/* Footer
-----------------------------------------------------------------*/
  #Footer{
    padding: 30px 0 80px;
  }
  #Footer .co-list{
    max-width: 320px;
    margin: 0 auto 15px;
  }
  #Footer .co-list li{
    margin: 0 10px;
  }
  #Footer .co-list small{
    display: block;
    font-size: 1rem;
  }
  #Footer .co-list li:nth-child(1){
    width: 150px;
  }
  #Footer .co-list li:nth-child(2){
    width: 130px;
  }
  #Footer .co-list li:nth-child(1) small{
    margin-bottom: 2px;
  }
  #Footer .co-list li:nth-child(2) small{
    margin-bottom: 6px;
  }

  #Footer .copyright{
    font-size: 1rem;
  }

}

@media screen and (max-width: 540px) {
	#Header h1 {
		opacity: 0;
		visibility: hidden;
		width: 0;
		height: 0;
	}
	#Header .nav-area {
		flex: 1;
		justify-content: flex-start;
	}
}