@charset "UTF-8";

/*************************
共通class
************************ */

html {
  font-family: "游明朝体", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 10px;
  /* IE11だけに適応 */
}
@media screen and (max-width: 1360px) {
  html {
    font-size: 0.7352941176vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
  }
}
@media screen and (max-width: 767.98px) {
  html {
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    font-size: 2.6666666667vw;
  }
}
html.safari {
  /*@include sc(pc) {
  	font-feature-settings : "pkna";
  	letter-spacing: 0;
  }*/
}
html _:lang(x)::-ms-backdrop, html {
  font-family: "Segoe UI", "メイリオ", Meiryo, sans-serif;
}

.chrome body {
  image-rendering: -webkit-optimize-contrast;
}

body,
dd,
div,
dl,
dt,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
td,
th,
ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-all;
}

article,
aside,
figure,
footer,
header,
main,
nav,
section {
  display: block;
  box-sizing: border-box;
}

figure {
  font-size: 0;
}
figure figcaption {
  line-height: 1.5;
}

button,
input,
select,
textarea {
  background: none;
  padding: 0;
  margin: 0;
  outline: 0;
  border: none;
  font: inherit;
  overflow: visible;
  box-sizing: border-box;
}

input[type=radio] {
  transform: translateY(-0.02rem);
}
.safari input[type=radio] {
  transform: translateY(-0.01rem);
}
@media screen and (max-width: 767.98px) {
  .safari input[type=radio] {
    transform: translateY(0.01rem);
  }
}

input[type=checkbox] {
  transform: translateY(-0.02rem);
}
.safari input[type=checkbox] {
  transform: translateY(-0.01rem);
}
@media screen and (max-width: 767.98px) {
  .safari input[type=checkbox] {
    transform: translateY(0.01rem);
  }
}

button,
select {
  cursor: pointer;
  text-transform: none;
}

select::-ms-expand {
  display: none;
}

img {
  -ms-interpolation-mode: bicubic;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: border-box;
  height: 0;
  overflow: visible;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

a {
  outline: 0;
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

li {
  list-style: none;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* .link */
a {
  transition: all 0.3s ease 0s;
  display: inline-block;
}
a[href^="tel:"] {
  cursor: default;
}
a[href^="tel:"]:hover {
  opacity: 1;
}

img {
  width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}


.btnbox {
    text-align: center;
}
.btn {
	min-width: 30rem;
  	height: 5.2rem;
  	color: #A67C52;
  	font-size: 1.8rem;
  	font-weight: 400;
	border: 1px solid #A67C52;
  	padding: 0.6rem;
  	display: inline-flex;
  	justify-content: center;
  	align-items: center;
  	position: relative;
  	cursor: pointer;
  	transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767.98px) {
  .btn {
    height: 4.2rem;
    min-width: 0;
    width: 70%;
    font-size: 1.4rem;
    padding: 0.1rem;
  }
}
.btn:hover {
  	background-color: #A67C52;
  	color: #FFF;
	opacity: 1;
}

.viewallbtn a {
	position: relative;
	display: inline-block;
  	line-height: 2.5rem;
}
.viewallbtn a span {
	display: inline-block;
	margin-right: 3.5rem;
}
.viewallbtn a span:after {
	content: "";
	position: absolute;
	top: 0;
   	right: 0;
  	width: 2.5rem;
  	height: 2.5rem;
  	border-radius: 50%;
	background-color: #A67C52;
	background-image: url("../img/common/icon_arrow_w.png");
	background-size: 1.5rem 0.75rem;
	background-position: center;
	background-repeat: no-repeat;
  	-webkit-transition: all 0.5s ease 0s;
  	transition: all 0.5s ease 0s;
}
.viewallbtn:hover a span:after {
   	right: -0.5rem;
}

.moviebox .movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.moviebox .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767.98px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767.98px) {
  .sp {
    display: block !important;
  }
}

/*************************
common
************************ */
body {
  background-color: #FFF;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #2A2A2A;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: opacity 1s ease 0s;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 1199px) {
  body {
    min-width: 0;
  	font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 1.3rem;
    font-weight: 400;
    min-width: 0;
  }
}
body.menuon, body.form-show {
  overflow: hidden;
}

.txtbox p:first-of-type {
  margin-top: 0;
}

input,
textarea {
  width: 100%;
  background-color: #fff;
  padding: 0.06rem 0.16rem;
}
@media screen and (max-width: 767.98px) {
  input,
  textarea {
    padding: 0.06rem 0.12rem;
    line-height: 1.4;
  }
}
/*************************
inview
************************ */
.mov-show {
  opacity: 0;
  visibility: hidden;
  transform: translateY(3rem);
  transition: all 1s ease 0s;
}
@media screen and (max-width: 767.98px) {
  .mov-show {
    transform: translateY(2rem);
  }
}
.mov-show.showed {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mov-in {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease 0s;
}
.mov-in.in {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mov-down {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-3rem);
  transition: all 1s ease 0s;
}
@media screen and (max-width: 767.98px) {
  .mov-down {
    transform: translateY(-2rem);
  }
}
.mov-down.down {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mov-leftslide {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: all 0.5s ease 0s;
}
.mov-leftslide.active {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

.mov-list > div,
.mov-list article,
.mov-list figure,
.mov-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.mov-list.list-start > div,
.mov-list.list-start article,
.mov-list.list-start figure,
.mov-list.list-start li {
  opacity: 1 !important;
  transition: opacity 1.6s ease 0s;
  transform: translateY(0);
}

.mov-list.list-start > div:nth-child(2),
.mov-list.list-start article:nth-child(2),
.mov-list.list-start figure:nth-child(2),
.mov-list.list-start li:nth-child(2) {
  transition-delay: 0.15s;
}

.mov-list.list-start > div:nth-child(3),
.mov-list.list-start article:nth-child(3),
.mov-list.list-start figure:nth-child(3),
.mov-list.list-start li:nth-child(3) {
  transition-delay: 0.3s;
}
.mov-list.list-start > div:nth-child(4),
.mov-list.list-start article:nth-child(4),
.mov-list.list-start figure:nth-child(4),
.mov-list.list-start li:nth-child(4) {
  transition-delay: 0.45s;
}
.mov-list.list-start > div:nth-child(5),
.mov-list.list-start article:nth-child(5),
.mov-list.list-start figure:nth-child(5),
.mov-list.list-start li:nth-child(5) {
  transition-delay: 0.6s;
}
.mov-list.list-start > div:nth-child(6),
.mov-list.list-start article:nth-child(6),
.mov-list.list-start figure:nth-child(6),
.mov-list.list-start li:nth-child(6) {
  transition-delay: 0.75s;
}
.mov-list.list-start > div:nth-child(7),
.mov-list.list-start article:nth-child(7),
.mov-list.list-start figure:nth-child(7),
.mov-list.list-start li:nth-child(7) {
  transition-delay: 0.9s;
}
.mov-list.list-start > div:nth-child(8),
.mov-list.list-start article:nth-child(8),
.mov-list.list-start figure:nth-child(8),
.mov-list.list-start li:nth-child(8) {
  transition-delay: 1.05s;
}
.mov-list.list-start > div:nth-child(9),
.mov-list.list-start article:nth-child(9),
.mov-list.list-start figure:nth-child(9),
.mov-list.list-start li:nth-child(9) {
  transition-delay: 1.2s;
}
.mov-list.list-start > div:nth-child(10),
.mov-list.list-start article:nth-child(10),
.mov-list.list-start figure:nth-child(10),
.mov-list.list-start li:nth-child(10) {
  transition-delay: 1.35s;
}
.mov-list.list-start > div:nth-child(11),
.mov-list.list-start article:nth-child(11),
.mov-list.list-start figure:nth-child(11),
.mov-list.list-start li:nth-child(11) {
  transition-delay: 1.5s;
}
.mov-list.list-start > div:nth-child(12),
.mov-list.list-start article:nth-child(12),
.mov-list.list-start figure:nth-child(12),
.mov-list.list-start li:nth-child(12) {
  transition-delay: 1.65s;
}
.mov-list.list-start > div:nth-child(13),
.mov-list.list-start article:nth-child(13),
.mov-list.list-start figure:nth-child(13),
.mov-list.list-start li:nth-child(13) {
  transition-delay: 1.8s;
}
.mov-list.list-start > div:nth-child(14),
.mov-list.list-start article:nth-child(14),
.mov-list.list-start figure:nth-child(14),
.mov-list.list-start li:nth-child(14) {
  transition-delay: 1.95s;
}
.mov-list.list-start > div:nth-child(15),
.mov-list.list-start article:nth-child(15),
.mov-list.list-start figure:nth-child(15),
.mov-list.list-start li:nth-child(15) {
  transition-delay: 2.1s;
}
.mov-list.list-start > div:nth-child(16),
.mov-list.list-start article:nth-child(16),
.mov-list.list-start figure:nth-child(16),
.mov-list.list-start li:nth-child(16) {
  transition-delay: 2.25s;
}
.mov-list.list-start > div:nth-child(17),
.mov-list.list-start article:nth-child(17),
.mov-list.list-start figure:nth-child(17),
.mov-list.list-start li:nth-child(17) {
  transition-delay: 2.4s;
}
.mov-list.list-start > div:nth-child(18),
.mov-list.list-start article:nth-child(18),
.mov-list.list-start figure:nth-child(18),
.mov-list.list-start li:nth-child(18) {
  transition-delay: 2.55s;
}
.mov-list.list-start > div:nth-child(19),
.mov-list.list-start article:nth-child(19),
.mov-list.list-start figure:nth-child(19),
.mov-list.list-start li:nth-child(19) {
  transition-delay: 2.7s;
}
.mov-list.list-start > div:nth-child(20),
.mov-list.list-start article:nth-child(20),
.mov-list.list-start figure:nth-child(20),
.mov-list.list-start li:nth-child(20) {
  transition-delay: 2.85s;
}
.mov-list.list-start > div:nth-child(21),
.mov-list.list-start article:nth-child(21),
.mov-list.list-start figure:nth-child(21),
.mov-list.list-start li:nth-child(21) {
  transition-delay: 3s;
}
.mov-list.list-start > div:nth-child(22),
.mov-list.list-start article:nth-child(22),
.mov-list.list-start figure:nth-child(22),
.mov-list.list-start li:nth-child(22) {
  transition-delay: 3.15s;
}
.mov-list.list-start > div:nth-child(23),
.mov-list.list-start article:nth-child(23),
.mov-list.list-start figure:nth-child(23),
.mov-list.list-start li:nth-child(23) {
  transition-delay: 3.3s;
}
.mov-list.list-start > div:nth-child(24),
.mov-list.list-start article:nth-child(24),
.mov-list.list-start figure:nth-child(24),
.mov-list.list-start li:nth-child(24) {
  transition-delay: 3.45s;
}
.mov-list.list-start > div:nth-child(25),
.mov-list.list-start article:nth-child(25),
.mov-list.list-start figure:nth-child(25),
.mov-list.list-start li:nth-child(25) {
  transition-delay: 3.6s;
}
.mov-list.list-start > div:nth-child(26),
.mov-list.list-start article:nth-child(26),
.mov-list.list-start figure:nth-child(26),
.mov-list.list-start li:nth-child(26) {
  transition-delay: 3.75s;
}
.mov-list.list-start > div:nth-child(27),
.mov-list.list-start article:nth-child(27),
.mov-list.list-start figure:nth-child(27),
.mov-list.list-start li:nth-child(27) {
  transition-delay: 3.9s;
}
.mov-list.list-start > div:nth-child(28),
.mov-list.list-start article:nth-child(28),
.mov-list.list-start figure:nth-child(28),
.mov-list.list-start li:nth-child(28) {
  transition-delay: 4.05s;
}
.mov-list.list-start > div:nth-child(29),
.mov-list.list-start article:nth-child(29),
.mov-list.list-start figure:nth-child(29),
.mov-list.list-start li:nth-child(29) {
  transition-delay: 4.2s;
}
.mov-list.list-start > div:nth-child(30),
.mov-list.list-start article:nth-child(30),
.mov-list.list-start figure:nth-child(30),
.mov-list.list-start li:nth-child(30) {
  transition-delay: 4.35s;
}
.mov-list.list-start > div:nth-child(31),
.mov-list.list-start article:nth-child(31),
.mov-list.list-start figure:nth-child(31),
.mov-list.list-start li:nth-child(31) {
  transition-delay: 4.5s;
}

/* ==============================
  Header 基本
============================== */
#header.headbox .container {
	display: flex;
  	align-items: center;
  	justify-content: space-between;
	padding: 0;
}
#header.headbox {
	width: 100%;
  	height: 10rem;
  	position: fixed;
  	top: 0;
  	left: 0;
  	z-index: 20;
	display: flex;
	align-items: center;
	background-color: transparent;
	transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    height 0.3s ease,
    transform 0.4s ease;
}

@media screen and (min-width: 768px) {
    #header.headbox.is-scrolled {
	    background-color: rgba(22, 37, 63, 0.9);
 	    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	    transform: translateY(0);
	    height: 8rem;
    }
}
@media screen and (max-width: 767.98px) {
	#header.headbox {
	    background-color: rgba(22, 37, 63, 1);
		height: 6rem;
    	padding: 0 1.6rem;
    	z-index: 8;
  	}
}

#header.headbox .head-left {
	display: flex;
	align-items: center;
	height: 100%;
}

#header.headbox .logo {
	display: flex;
  	align-items: center;
  	gap: 0.8rem;
}
#header.headbox .logo a {
	display: block;
  	width: clamp(12rem, 20vw, 18rem);
}
#header.headbox .logo a img {
	display: block;
  	width: 100%;
  	height: auto;
  	max-width: 100%;
  	min-width: 0;
  	aspect-ratio: unset;
  	object-fit: contain;
}

/* ==============================
  ナビゲーション
============================== */
@media screen and (max-width: 767.98px) {
	#header.headbox .gnavibox {
    	position: fixed;
    	top: 6rem;
    	right: -100vw;
    	width: 100vw;
    	height: 100vh;
    	background-color: rgba(255, 255, 255, 1);
    	padding: 2rem;
    	margin-right: 0;
    	overflow-y: auto;
    	z-index: 1000;
    	transition: right 0.4s ease;
  	}
	.menuon #header.headbox .gnavibox {
    	right: 0;
  	}
}

#header.headbox #gnavi {
	display: flex;
  	justify-content: center;
  	align-items: center;
}
@media screen and (max-width: 767.98px) {
	#header.headbox #gnavi {
		display: block;
  	}
}

#header.headbox #gnavi > ul {
	display: flex;
  	justify-content: center;
  	align-items: center;
}
@media screen and (max-width: 767.98px) {
  #header.headbox #gnavi > ul {
    display: block;
  }
}

#header.headbox #gnavi > ul > li {
  margin: 0 1.8rem;
  line-height: 1.2;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  #header.headbox #gnavi > ul > li {
    height: auto;
    margin: 0;
    padding: 1rem 0;
    border-bottom: 1px solid #666;;
    text-align: center;
  }
}

#header.headbox #gnavi > ul > li a {
  position: relative;
  color: #FFF;
  padding: 1rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  #header.headbox #gnavi > ul > li a {
    font-size: 1.6rem;
    display: block;
    color: #2A2A2A;;
  }
}

#header.headbox #gnavi > ul > li a:hover {
  color: #A67C52;
}

/* ==============================
  ハンバーガー
============================== */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1200;
}
@media screen and (max-width: 767.98px) {
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        right: 0;
        width: 3rem;
        height: 3rem;
        transform: translateY(-50%);
  }
}

.hamburger span {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    background: #FFF;
    transition: all 0.3s ease;
}
.hamburger span::before,
.hamburger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFF;
    transition: all 0.3s ease;
}
.hamburger span::before {
    top: -8px;
}
.hamburger span::after {
    top: 8px;
}
.menuon .hamburger span {
    background: transparent;
}
.menuon .hamburger span::before {
    transform: rotate(45deg);
    top: 0;
}
.menuon .hamburger span::after {
    transform: rotate(-45deg);
    top: 0;
}

/*************************
main
************************ */
#main {
	position: relative;
}
@media screen and (max-width: 767.98px) {
	#main {
    	overflow-x: hidden;
  	}
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .container {
    max-width: 1280px;
  }
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1150px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    max-width: 820px;   /* ← Air にジャスト */
  }
}

@media screen and (max-width: 900px) {
  .container {
    max-width: 720px;
  }
}

@media screen and (max-width: 767.98px) {
  .container {
    max-width: 100%;
    padding: 0 1.6rem;
  }
}


.sctbox {
  padding: 13rem 0;
  position: relative;
}
@media screen and (max-width: 767.98px) {
    .sctbox {
        padding: 4rem 0;
    }
}

/*************************
subpage mv
************************ */
.mvsubbox {
	position: relative;
}
.mvsubbox .mvbox-info {
	height: 60rem;
  	background-color: transparent;
  	background-repeat: no-repeat;
  	background-attachment: scroll;
  	background-position: center center;
  	background-size: cover;
  	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
  	margin: 0 auto;
  	position: relative;
  	z-index: 1;
}
@media screen and (max-width: 767.98px) {
	.mvsubbox .mvbox-info {
		height: 30rem;
	}
}

.mvsubbox .mvbox-title {
  	font-size: 3.6rem;
  	font-weight: 400;
  	line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
	.mvsubbox .mvbox-title {
		font-size: 2rem;
  	}
}
.mvsubbox .mvbox-title span {
	display: block;
  	font-size: 1.4rem;
  	margin-top: 4rem;
}
@media screen and (max-width: 767.98px) {
	.mvsubbox .mvbox-title span {
    	font-size: 1.2rem;
  		margin-top: 2rem;
  	}
}

.mvsubboximg.mvsubbox .container {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 60rem;
	padding-bottom: 4rem;
}
@media screen and (max-width: 767.98px) {
	.mvsubboximg.mvsubbox .container {
		height: 30rem;
		padding-bottom: 2rem;
	}
}

.mvsubboximg.mvsubbox .mvbox-title {
	color: #FFF;
}


/*************************
section title
************************ */
.sct-title {
	margin-bottom: 6rem;
  	font-size: 3.6rem;
  	font-weight: 400;
  	line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
	.sct-title {
    	font-size: 2rem;
		margin-bottom: 3rem;
  	}
}
.sct-title span {
	display: block;
  	font-size: 1.4rem;
  	margin-top: 5rem;
}
@media screen and (max-width: 767.98px) {
	.sct-title span {
    	font-size: 1.2rem;
  		margin-top: 2rem;
  	}
}

.sct-title-icon {
	display: block;
	width: 8.4rem;
	margin: 3rem auto 0;
}
@media screen and (max-width: 767.98px) {
	.sct-title-icon {
		width: 4.2rem;
		margin: 1.5rem auto 0;
	}
}


/*************************
list
************************ */
ul.list01 li {
	margin-top: 1rem;
}
ul.list01 li {
	font-weight: 400;
  	padding-left: 2rem;
  	margin-top: 1rem;
  	position: relative;
}
@media screen and (max-width: 767.98px) {
	ul.list01 li {
    	padding-left: 1.7rem;
  	}
}
ul.list01 li:before {
	content: "・";
  	display: block;
  	position: absolute;
  	top: 0;
  	left: 0;
}

.cat {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.3rem 0.5rem;
    font-size: 1.2rem;
    line-height: 1;
    background-color: #F7931E;
    color: #FFF;
}
@media screen and (max-width: 767.98px) {
	.cat {
		margin-left: 0.25rem;
    	font-size: 0.8rem;
	}
}

.cat-spa        { background-color: #C1272D; }
.cat-restaurant { background-color: #A67C52; }
.cat-towninfo   { background-color: #006837; }
.cat-stayinfo   { background-color: #666666; }



/*************************
totop
************************ */
#totop a {
	background-color: #A67C52;
	width: 80px;
	height: 80px;
	display: block;
	opacity: 1;
	overflow: hidden;
	position: fixed;
	right: 3rem;
	bottom: 5rem;
    z-index: 99;
}
#totop a:before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotateZ(-45deg);
	position: absolute;
	top: 28px;
	left: 50%;
	margin-left: -6px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#totop a:after {
	content: "";
	display: block;
	width: 2px;
	height: 28px;
	background-color: #FFF;
	position: absolute;
	top: 27px;
	left: 50%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
	#totop a:hover {
		opacity: 0.8;
	}
	#totop a:hover:before {
    	top: 23px;
  	}
	#totop a:hover:after {
    	top: 22px;
	}
}

@media screen and (max-width: 1024px) {
  #totop a {
    width: 60px;
    height: 60px;
    right: 2rem;
    bottom: 8rem;
  }

  #totop a:before {
    width: 12px;
    height: 12px;
    top: 23px;
    margin-left: -5px;
  }

  #totop a:after {
    height: 22px;
    top: 23px;
  }
}

@media screen and (max-width: 767.98px) {
  #totop a {
    width: 12vw;
    height: 12vw;
    right: 3vw;
    bottom: 8rem;
  }

  #totop a:before {
    width: 10px;
    height: 10px;
    top: 4.3vw;
    margin-left: -4px;
  }

  #totop a:after {
    height: 18px;
    top: 4.5vw;
  }
}

/*************************
 footer
*************************/

#footer .footer-hero {
    background-image: url("../img/common/bg_footer.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFF;
    padding: 6rem 0;
}
@media (max-width: 767.98px) {
    #footer .footer-hero {
        padding: 3rem 0;
    }
}
.footer-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.7fr 1.5fr;
    align-items: center;
    gap: 3rem;
}
@media (max-width: 767.98px) {
    .footer-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}

.footer-hero-logo {
    width: 20rem;
    margin-bottom: 4.5rem;
}
@media (max-width: 767.98px) {
    .footer-hero-logo {
        width: 15rem;
        margin: 0 auto 2rem
    }
}

.footer-hero-copy {
    font-size: 1.2rem;
    line-height: 2;
}

.footer-hero-center {
    display: flex;
    justify-content: center;
}

.footer-contact-box {
    border: 0.01rem solid #FFF;
    padding: 2rem;
    text-align: center;
    font-size: 1.2rem;
}
@media (max-width: 767.98px) {
    .footer-contact-box {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
}

.footer-contact-tel .num {
    font-size: 1.8rem;
    margin: 0 0.5rem;
}
@media (max-width: 767.98px) {
    .footer-contact-tel .num {
        font-size: 1.6rem;
    }
}

.footer-hero-right {
    font-size: 1.2rem;
}

.footer-hero-hours {
  border-bottom: 0.01rem solid #FFF;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}

.footer-hero-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0 0 1.8rem 0;
}
@media (max-width: 767.98px) {
    .footer-hero-nav {
        justify-content: center;
    }
}

.footer-hero-nav li {
    position: relative;
}

.footer-hero-nav li::after {
    content: "/";
    margin-left: 0.2rem;
}

.footer-hero-nav li:last-child::after {
    content: "";
}

.footer-hero-nav a {
    color: #FFF;
    transition: opacity 0.2s ease;
}

.footer-hero-nav a:hover {
    opacity: 0.7;
}

.footer-sns .f-insta {
	display: inline-block;
	position: relative;
	max-width: 29rem;
	width: 18rem;
    background-color:rgba(0,0,0,0.5);
    border: 0.01rem solid rgba(255,255,255,0.5);
	color: #FFF;
	padding: 1rem 2rem;
	line-height: 1;
	text-align: center;
}
.footer-sns .f-insta:before {
	display: inline-block;
  	content: "";
  	background-image: url("../img/common/icon_insta.svg");
  	background-size: cover;
  	width: 1.8rem;
  	height: 1.8rem;
  	position: absolute;
  	top: calc((100% - 1.8rem) / 2);
}
@media (max-width: 767.98px) {
	.footer-sns .f-insta:before {
  		width: 1.3rem;
  		height: 1.3rem;
  		top: calc((100% - 1.3rem) / 2);
	}
}
.footer-sns .f-insta span {
	display: inline-block;
	padding-left: 2.5rem;
}
@media (max-width: 767.98px) {
	.footer-sns .f-insta span {
		padding-left: 2rem;
	}
}

.footer-sns a:hover {
    opacity: 0.7;
}

#copyright {
    background-color: #16253F;
    text-align: center;
    padding: 1rem;
    color: #FFF;
    font-size: 1.2rem;
}
@media (max-width: 767.98px) {
    #copyright {
        font-size: 1.1rem;
    }
}

