@charset "UTF-8";
/*リセット
--------------------------------------------*/
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, sup, 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;
}

html {
  line-height: 1;
}

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;
}

/*フォント
---------------------------------------------*/
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Regular.woff") format("woff"), url("../fonts/NotoSansCJKjp-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Bold.woff") format("woff"), url("../fonts/NotoSansCJKjp-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* vertical rythm
---------------------------------------------*/
/* common
---------------------------------------------*/
html,
body {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.045em;
  color: #000;
}

@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 11px;
  }
}

.futura {
  font-family: futura-pt, sans-serif;
  font-style: normal;
}

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

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

.red {
  color: #c24234;
}

.yellow {
  background-color: #f0f1cd;
}

/* mainArea
---------------------------------------------*/
div#mainArea {
  width: 100%;
}

div#mainArea .yellow .top {
  background-image: url(../images/top_back_pc.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: 1060px;
  height: 500px;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  div#mainArea .yellow .top {
    background-image: url(../images/top_back_sp.jpg);
    height: 100vw;
  }
}

div#mainArea .yellow .top h1 {
  width: 53%;
  min-width: 568px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  div#mainArea .yellow .top h1 {
    width: 50%;
    min-width: auto;
  }
}

div#mainArea p.description {
  margin: 117px 0;
  text-align: center;
  color: #070707;
}

@media screen and (max-width: 768px) {
  div#mainArea p.description {
    font-size: 12px;
    margin: 55px 2.5%;
    text-align: left;
  }
}

/* menu
---------------------------------------------*/
div.menu {
  background: #eee;
  padding: 70px 0 60px;
}

@media screen and (max-width: 768px) {
  div.menu {
    padding: 0;
  }
}

div.menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  div.menu ul {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

div.menu ul li {
  margin: 0 35px;
  height: 60px;
  position: relative;
}

@media screen and (max-width: 768px) {
  div.menu ul li {
    height: 77px;
    width: 50%;
    padding: 0;
    border: 1px solid #fff;
    margin: 0;
  }
}

div.menu ul li:last-of-type {
  padding-right: 0;
}

div.menu ul li:nth-of-type(odd) {
  border-left: none;
}

div.menu ul li:nth-of-type(even) {
  border-right: none;
}

div.menu ul li a {
  color: #000;
  font-weight: 400;
  /*regular*/
  height: 60px;
  display: block;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

@media screen and (max-width: 768px) {
  div.menu ul li a {
    height: 77px;
    width: 100%;
    padding-top: 20px;
    text-align: center;
  }
}

div.menu ul li a span {
  font-size: 22px;
  font-weight: 500;
  /*medium*/
  letter-spacing: 0;
  margin-right: 3px;
  margin-left: 1px;
}

@media screen and (max-width: 768px) {
  div.menu ul li a span {
    font-size: 14px;
  }
}

div.menu ul li a span .number {
  font-size: 26px;
}

@media screen and (max-width: 768px) {
  div.menu ul li a span .number {
    font-size: 18px;
  }
}

div.menu ul li a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f078";
  display: block;
  text-align: center;
  line-height: 1;
  font-size: 27px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-text-stroke: 3px #eee;
}

@media screen and (max-width: 768px) {
  div.menu ul li a::after {
    bottom: 13px;
    font-size: 16px;
    -webkit-text-stroke: 2px #eee;
  }
}

div.menu ul li a:hover {
  opacity: 0.6;
}

/* content
---------------------------------------------*/
div#content {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  div#content {
    padding: 45px 0;
  }
}

div#content .inner {
  width: 996px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  div#content .inner {
    width: 84%;
  }
}

div#content .inner div.theme {
  margin-bottom: 200px;
}

@media screen and (max-width: 768px) {
  div#content .inner div.theme {
    margin-bottom: 100px;
  }
}

div#content .inner div.theme:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  div#content .inner div.theme:last-child {
    margin-bottom: 0;
  }
}

div#content .inner h2 {
  font-weight: 500;
  /*medium*/
  height: 60px;
  display: block;
  font-size: 26px;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 768px) {
  div#content .inner h2 {
    font-size: 16px;
    margin-bottom: -8px;
  }
}

div#content .inner h2 span {
  font-size: 42px;
  font-weight: 500;
  /*medium*/
  letter-spacing: 0;
  margin-right: 6px;
  margin-left: 1px;
}

@media screen and (max-width: 768px) {
  div#content .inner h2 span {
    margin-right: 5px;
    font-size: 26px;
  }
}

div#content .inner h2 span .number {
  font-size: 52px;
}

@media screen and (max-width: 768px) {
  div#content .inner h2 span .number {
    font-size: 32px;
  }
}

div#content .inner p {
  line-height: 1.6;
  font-size: 12px;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 768px) {
  div#content .inner p {
    font-size: 10px;
  }
}

div#content .inner p.price {
  display: inline-block;
}

div#content .inner p.explain {
  margin-bottom: 50px;
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  div#content .inner p.explain {
    margin-bottom: 20px;
    font-size: 11px;
    line-height: 1.6;
  }
}

div#content .inner p span.brand {
  line-height: 1.2;
  display: inline-block;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  div#content .inner p span.brand {
    font-size: 10px;
  }
}

div#content .inner p span.name {
  line-height: 1.4;
  display: inline-block;
}

@media screen and (min-width: 769px) {
  div#content .inner p span.small {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  div#content .inner p span.small {
    font-size: 10px;
  }
}

div#content .inner ul.category,
div#content .inner div.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 40px 12px;
}

@media screen and (max-width: 768px) {
  div#content .inner ul.category,
  div#content .inner div.category {
    gap: 20px 3%;
  }
}

div#content .inner ul.category li,
div#content .inner div.category li {
  width: 240px;
}

div#content .inner ul.category a,
div#content .inner div.category a {
  color: #000;
}

div#content .inner ul.category a img,
div#content .inner div.category a img {
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  div#content .inner ul.category a img,
  div#content .inner div.category a img {
    margin-bottom: 10px;
  }
}

div#content .inner ul.category a:hover img,
div#content .inner div.category a:hover img {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  div#content .inner div.category div {
    width: 48.5%;
  }
}

div#content .inner .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #000;
  color: #000;
  width: 260px;
  line-height: 45px;
  margin: 0 auto;
  font-size: 16px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  div#content .inner .btn a {
    font-size: 11px;
    width: 180px;
    margin-top: 20px;
    line-height: 34px;
  }
}

div#content .inner .btn a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f105";
  display: inline-block;
  color: #000;
  font-size: 25px;
  margin-top: 2px;
  padding-left: 8px;
  -webkit-text-stroke: 2.5px #f0f1cd;
}

@media screen and (max-width: 768px) {
  div#content .inner .btn a::after {
    bottom: 13px;
    font-size: 20px;
    -webkit-text-stroke: 2px #f0f1cd;
    padding-left: 5px;
  }
}

div#content .inner .btn a:hover {
  opacity: .6;
}

/* footer
---------------------------------------------*/
#footArea {
  text-align: center;
  padding: 115px 0 250px;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  #footArea {
    padding: 55px 0 115px;
  }
}

#footArea a {
  font-size: 28px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  #footArea a {
    font-size: 18px;
  }
}

#footArea .room_link a {
  width: 457px;
  margin: 0 auto 50px;
  line-height: 43px;
  border: 1px solid #000;
  color: #000;
  display: block;
}

@media screen and (max-width: 768px) {
  #footArea .room_link a {
    width: 68.8%;
    line-height: 32px;
    margin: 0 auto 40px;
  }
}

#footArea .room_link a:hover {
  opacity: .6;
}

#footArea .pal_link {
  margin-bottom: 1px;
}

@media screen and (max-width: 768px) {
  #footArea .pal_link {
    margin-bottom: 0;
  }
}

#footArea .pal_link a {
  color: #000;
  line-height: 1;
}

#footArea .copy {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  #footArea .copy {
    font-size: 9px;
  }
}
/*# sourceMappingURL=style.css.map */