@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1;
}

body {
  font-size: 100%;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

body,
button,
input,
select,
textarea {
  font-size: 1rem;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

img {
  width: 100%;
  max-width: initial;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}
img[src$=".svg"] {
  max-width: 100%;
}

label {
  margin-bottom: 0;
}

input[type=search] {
  color: inherit;
  border: 1px solid #333;
  border-radius: 0;
  padding: 0.3em 0.3em 0.3em 35px;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 1;
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
}

figure {
  margin: 0;
}

h1 {
  font-size: inherit;
}

p {
  margin: 0;
}

h2 {
  color: inherit;
  font-size: 1rem;
}

h3 {
  color: inherit;
}

dl {
  margin: 0;
}

dd {
  margin: 0;
}

h3 {
  font-size: 1rem;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 0;
}

h4 {
  color: inherit;
  font-size: inherit;
  font-weight: normal;
}

button,
input[type=button],
input[type=submit] {
  background-color: transparent;
}

ol {
  list-style: none;
}

a:hover,
a:active {
  color: inherit;
}

/*================================
	サイトごとに設定
=================================*/
/*================================
	メディアクエリの設定
=================================*/
/*================================
	サイト共通設定
=================================*/
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", YuGothic, "Yu Gothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  color: #121212;
  line-height: 1.5;
  font-size: 16px;
  word-wrap: break-word;
  width: 100%;
  height: 100%;
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}

.wrap {
  overflow: hidden;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.isBetween {
  justify-content: space-between;
}

.flexdry {
  flex-direction: row-reverse;
}

/*================================
	PC 共通設定
=================================*/
@media print, screen and (min-width: 768px) {
  html {
    overflow-y: scroll;
  }
  .sp {
    display: none;
  }
  .inner {
    width: 97.5609756098%;
    max-width: 1200px;
    margin: auto;
  }
}
/*================================
	PC 相対値範囲設定
=================================*/
@media print, screen and (min-width: 768px) and (max-width: 1230px) {
  html {
    font-size: 1vw;
  }
}
/*================================
	SP 共通設定
=================================*/
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.6458333333vw;
  }
  .inner {
    width: 90%;
    margin: auto;
  }
  .pc {
    display: none;
  }
}
/*================================
	JS処理系
=================================*/
.sa {
  opacity: 0;
  transition: all 0.5s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

/*------------------------------------------------

ローディング設定

-------------------------------------------------*/
.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 5555;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader .img {
  width: 120px;
  animation: loadanime 2s forwards;
}

@keyframes loadanime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(-40px);
  }
}
/*------------------------------------------------

アニメーション設定

-------------------------------------------------*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay08 {
  animation-delay: 0.8s;
}

.delay10 {
  animation-delay: 1s;
}

/*-------------------------------

header

-------------------------------*/
.header {
  position: fixed;
  height: 100px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 1000;
}
.header.active {
  box-shadow: 0 -5px 10px #333;
}
.header .hInner {
  padding: 30px 50px;
}
.header .hInner .headerSp {
  display: none;
}
.header .hInner .headerPc {
  align-items: center;
}
.header .hInner .headerPc .logo {
  width: 190px;
}
.header .hInner .headerPc ul {
  margin-right: 40px;
}
.header .hInner .headerPc ul li {
  margin-right: 40px;
}
.header .hInner .headerPc ul li:last-child {
  margin-right: 0;
}
.header .hInner .headerPc ul li a {
  text-decoration: none;
  font-size: 14px;
  display: block;
  text-align: center;
  letter-spacing: 0.14em;
  font-weight: 400;
  position: relative;
  transition: all 0.3s;
}
.header .hInner .headerPc ul li a:hover {
  opacity: 0.7;
}
.header .hInner .headerPc ul li a span {
  font-family: Futura, "Century Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", メイリオ, Meiryo, sans-serif;
  display: block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  color: #9F633E;
}
.header .hInner .headerPc .headerIcon {
  width: 40px;
  height: 40px;
}
.header .hInner .headerPc .headerIcon a {
  display: block;
}
.header #drawermenu {
  display: none;
}

@media screen and (max-width: 1024px) {
  .header {
    height: 60px;
  }
  .headerPc {
    display: none !important;
  }
  .header .hInner .headerSp {
    display: block;
    height: 60px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: #fff;
  }
  .header .hInner .headerSp .headerSp_inner {
    align-items: center;
    position: relative;
    margin: auto;
    height: 60px;
  }
  .header .hInner .headerSp .headerSp_inner .spLogo {
    width: 150px;
    position: relative;
    z-index: 9999;
    padding-left: 10px;
  }
  .header .hInner .headerSp .headerSp_inner .spLogo a {
    display: block;
  }
  .header .hInner .headerSp .headerSp_inner .spLogo img {
    width: 100%;
  }
  .header .hInner .headerSp .headerSp_inner .header_spnavbtn {
    display: block;
    position: relative;
    margin-left: auto;
    width: 60px;
    height: 60px;
    top: 0px;
    right: 0px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    z-index: 9999;
  }
  .header .hInner .headerSp .headerSp_inner .header_spnavbtn span {
    display: block;
    width: 20px;
    background-color: #000;
    height: 2px;
    top: 36%;
    left: 35%;
    margin-bottom: 10px;
    position: absolute;
    transition: all 0.5s;
  }
  .header .hInner .headerSp .headerSp_inner .header_spnavbtn span:nth-child(2) {
    transform: translateY(8px);
  }
  .header .hInner .headerSp .headerSp_inner .open.header_spnavbtn .one {
    transform: translateY(8px) rotate(45deg);
  }
  .header .hInner .headerSp .headerSp_inner .open.header_spnavbtn .two {
    transform: translateY(8px) rotate(-45deg);
  }
  .header .hInner #drawermenu {
    position: fixed;
    right: 0;
    z-index: 1000;
    height: 100vh;
    background-color: #F7F6F2;
    width: 100%;
    display: block;
    transform: translateX(100%);
    opacity: 0;
    transition: 0.6s;
  }
  .header .hInner #drawermenu .drawbox {
    padding: 60px 0vw 40px;
    margin-left: 5%;
    margin-right: 5%;
    position: relative;
  }
  .header .hInner #drawermenu .drawbox ul li {
    width: 100%;
  }
  .header .hInner #drawermenu .drawbox ul li a {
    text-decoration: none;
    color: #121212;
    display: block;
    font-size: 18px;
    padding: 20px 10px;
    font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "游明朝", YuMincho, "HG明朝E", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }
  .header .hInner #drawermenu .drawbox ul li a span {
    margin-top: 10px;
    font-family: Futura, "Century Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", メイリオ, Meiryo, sans-serif;
    display: block;
    font-size: 10px;
  }
  .header .hInner #drawermenu .drawbox .instaIcon {
    margin-top: 20px;
    margin-left: 10px;
    width: 36px;
    height: 36px;
  }
  .header .hInner #drawermenu .drawbox .btnBox {
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .header .hInner #drawermenu .drawbox .btnBox .btn {
    border: 1px solid #fff;
    width: 100%;
    max-width: 400px;
    margin: auto;
    margin-bottom: 10px;
    background-color: #755E54;
  }
  .header .hInner #drawermenu .drawbox .btnBox .btn:not(:last-child) a span::before {
    background: url(/assets/img/ico_hotpeper.png) no-repeat;
    background-size: contain;
    width: 13px;
    height: 18px;
    top: 2px;
    left: 0;
  }
  .header .hInner #drawermenu .drawbox .btnBox .btn:last-child a span::before {
    background: url(/assets/img/ico_line.png) no-repeat;
    background-size: contain;
    width: 19px;
    height: 20px;
    top: 2px;
    left: -8px;
  }
  .header .hInner #drawermenu .drawbox .btnBox .btn a {
    display: block;
    text-align: center;
    padding: 20px 0;
  }
  .header .hInner #drawermenu .drawbox .btnBox .btn a span {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.04em;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
  }
  .header .hInner #drawermenu .drawbox .btnBox .btn a span::before {
    content: "";
    display: block;
    position: absolute;
  }
  .header .hInner #drawermenu .drawbox .btnBox .btn a span::after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    right: -40px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
  .header .hInner #drawermenu .drawbox .copy {
    color: #000;
    font-size: 10px;
    text-align: center;
    font-family: "Cormorant Garamond";
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .header .hInner #drawermenu .drawbox .sidetxt {
    position: absolute;
    font-size: 130px;
    color: #fff;
    writing-mode: vertical-rl;
    font-family: "Cormorant Garamond";
    top: 65px;
    right: -20px;
  }
  .header .hInner .open#drawermenu {
    opacity: 1;
    height: 100vh;
    transform: translateX(0%);
    overflow: scroll;
    transition: 0.6s;
  }
}
/*-------------------------------

footer

-------------------------------*/
.footer {
  position: relative;
}
.footer::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.footer video {
  position: absolute;
  width: 1920px;
  height: 1080px;
  top: -235px;
}
.footer .inner {
  padding: 90px 0 60px;
}
.footer .logo {
  position: relative;
  width: 125px;
  margin: auto;
  margin-bottom: 60px;
  z-index: 11;
}
.footer nav {
  margin-bottom: 140px;
  position: relative;
  z-index: 11;
}
.footer nav ul {
  justify-content: center;
}
.footer nav ul li {
  color: #fff;
  text-align: center;
  margin-right: 40px;
}
.footer nav ul li:last-child {
  margin-right: 0;
}
.footer nav ul li a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.14em;
  position: relative;
  transition: all 0.3s;
}
.footer nav ul li a span {
  margin-top: 15px;
  font-family: Futura, "Century Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", メイリオ, Meiryo, sans-serif;
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 400;
}
.footer nav ul li a:hover {
  opacity: 0.7;
}
.footer .copy {
  font-family: "Cormorant Garamond";
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 11;
}
.footer .pagetop {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 1px solid #fff;
  top: 40px;
  right: 40px;
  z-index: 11;
}
.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
}
.footer .pagetop a:hover img {
  top: 40%;
}
.footer .pagetop img {
  position: absolute;
  width: 4px;
  height: 26px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .footer .inner {
    padding: 60px 0 40px;
  }
  .footer video {
    position: absolute;
    width: 820px;
    height: 350px;
    top: 0px;
    left: -100px;
  }
  .footer .logo {
    width: 80px;
    margin-bottom: 100px;
  }
  .footer nav {
    display: none;
  }
  .footer .pagetop {
    width: 44px;
    height: 44px;
    top: 15px;
    right: 20px;
  }
  .footer .pagetop img {
    width: 3px;
    height: 17px;
  }
}

/*-------------------------------

commonTtl01

-------------------------------*/
.commonTtl01 {
  color: #33312E;
  text-align: center;
  font-family: Futura, "Century Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", メイリオ, Meiryo, sans-serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
}
.commonTtl01 span {
  margin-top: 10px;
  color: #33312E;
  display: block;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", YuGothic, "Yu Gothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  display: block;
}
@media only screen and (max-width: 767px) {
  .commonTtl01 {
    font-size: 34px;
  }
  .commonTtl01 span {
    margin-top: 5px;
    font-size: 12px;
  }
}/*# sourceMappingURL=common.css.map */