@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700&display=swap");
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  font-size: 14px;
  font-family: "Zen Old Mincho", serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  color: #342c26;
  letter-spacing: normal;
}

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

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

@media (min-width: 1024.98px) {
  a,
  a img {
    transition: all 0.2s ease;
  }
}

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

@media (min-width: 1024.98px) {
  a:hover,
  a:hover img {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha(opacity=80)";
  }
}

img {
  max-width: 100%;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
  --primary-font:"游ゴシック体",YuGothic,游ゴシック Medium,Yu Gothic Medium,游ゴシック,Yu Gothic,Meiryo,sans-serif;
  --cormorant-infant-font:"Cormorant Infant", serif;
  --yu-mincho-font: "游明朝体", "游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  --primary:#333333;
  --primary-light:#BBBBBB;
  --primary-dark:#1E0405;
  --secondary:#999;
  --secondary-dark:#605858;
  --primary-background-color:#231815;
  --accent-color: #8B7246;
  --border-primary:#DDDDDD;
  --border-primary-light:#e5e5e5;
  --border-second: #CCCCCC;
  --white: #FFFFFF;
  --black: #000;
  --hover-button-light: #F5F5F5;
  --background-red: rgba(218, 49, 12, 0.05);
  --red:#DA310C;
  --blue:#0070BF;
  --green: #6FBA2C;
  --orange: #ED6104;
}

/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
body {
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  body {
    min-width: 320px;
    line-height: 1.65;
    letter-spacing: 1.65px;
  }
}

.l-content {
  width: 100%;
  max-width: 1250px;
  padding: 0px 25px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.p-index {
  background: #fffef9;
}

/*------------------------------------------------------------
    Sidebar
------------------------------------------------------------*/
/*------------------------------------------------------------
    Header
------------------------------------------------------------*/
/*------------------------------------------------------------
    Footer
------------------------------------------------------------*/
/*------------------------------------------------------------
    btn
------------------------------------------------------------*/
/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
   Table
------------------------------------------------------------*/
/*------------------------------------------------------------
   Select, input,...
------------------------------------------------------------*/
/*------------------------------------------------------------
   Breadcrumb
------------------------------------------------------------*/
/*------------------------------------------------------------
  List
------------------------------------------------------------*/
/*------------------------------------------------------------
  Nav
------------------------------------------------------------*/
/*------------------------------------------------------------
  paginate
------------------------------------------------------------*/
/*------------------------------------------------------------
   Others
------------------------------------------------------------*/
a {
  transition: all 0.2s ease;
}
a:hover {
  opacity: 0.8;
}

.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
.c-header {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 999;
  text-align: left;
  top: 45px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-header {
    top: 20px;
  }
}
.c-header .l-content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-header .c-logo .logo {
    text-align: left;
  }
  .c-header .c-logo .logo a img {
    width: 161px;
    height: auto;
  }
}
.c-header .c-logo p {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  letter-spacing: normal;
  display: block;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .c-header .c-logo p {
    font-size: 9px;
  }
}
.c-header .list-view a {
  position: relative;
  display: inline-block;
  padding-right: 8px;
}
@media screen and (max-width: 768px) {
  .c-header .list-view a {
    font-size: 11px;
  }
}
.c-header .list-view a::after {
  content: "";
  height: 0px;
  width: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border-left: 5px solid #342c26;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
@media screen and (max-width: 768px) {
  .c-header .list-view a::after {
    border-left: 4px solid #342c26;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }
}
.c-header .logo {
  top: 45px;
}
.c-header .logo img {
  width: 259px;
  height: auto;
}
@media (max-width: 768px) {
  .c-header .logo {
    top: 25px;
    left: 25px;
  }
}

.mainvs {
  width: 100%;
  height: auto;
  background: #ebd1bc;
  text-align: center;
}
.mainvs .c-img {
  display: block;
  padding-top: 78px;
}
@media screen and (max-width: 768px) {
  .mainvs .c-img {
    max-width: 450px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .mainvs .l-content {
    padding: 0;
  }
}

.index-op1 {
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 0px;
  position: relative;
}
@media (max-width: 768px) {
  .index-op1 {
    padding-top: 50px;
    padding-bottom: 10px;
  }
}
.index-op1 h2 {
  font-weight: 400;
}
.index-op1 h2 span {
  display: block;
  font-size: 16px;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .index-op1 h2 span {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .index-op1 h2 {
    margin-bottom: 0px;
  }
  .index-op1 h2 img {
    width: 91px;
    height: auto;
  }
}
.index-op1 .content {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.index-op1 .c-card1 {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  min-height: 520px;
  padding: 0 25px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .index-op1 .c-card1 {
    padding: 50px 0px 50px;
  }
}
.index-op1 .c-card1:nth-child(2n+0) {
  background: #faf2eb;
}
.index-op1 .c-card1:nth-child(2n+0) .c-box1 .c-img {
  order: 2;
}
@media (max-width: 768px) {
  .index-op1 .c-card1:nth-child(2n+0) .c-box1 .c-img {
    order: unset;
  }
}
.index-op1 .c-box1 {
  width: 100%;
  height: auto;
  display: flex;
  max-width: 920px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  margin-top: 80px;
  --width-img: 378px;
}
@media (max-width: 768px) {
  .index-op1 .c-box1 {
    flex-direction: column;
    padding: 0px 25px;
    margin-top: 0px;
    margin-bottom: 0px;
    max-width: 400px;
  }
}
.index-op1 .c-box1.v2 {
  --width-img: 420px;
}
.index-op1 .c-box1.v3 {
  --width-img: 273px;
  justify-content: center;
}
.index-op1 .c-box1.v3 .txt {
  max-width: 464px;
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .index-op1 .c-box1.v3 .txt {
    margin-left: 0;
    max-width: 100%;
  }
}
.index-op1 .c-box1.v4 {
  --width-img: 437px;
}
.index-op1 .c-box1.v5 {
  --width-img: 365px;
}
.index-op1 .c-box1 .c-img {
  width: var(--width-img);
  max-width: 440px;
  height: auto;
  text-align: right;
}
.index-op1 .c-box1 .c-img img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .index-op1 .c-box1 .c-img {
    text-align: center;
    max-width: 100%;
  }
  .index-op1 .c-box1 .c-img img {
    width: auto;
    height: auto;
    max-height: 250px;
  }
}
.index-op1 .c-box1 .txt {
  width: calc(100% - var(--width-img) - 60px);
  height: auto;
  max-width: 80%;
}
@media (max-width: 768px) {
  .index-op1 .c-box1 .txt {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
.index-op1 .c-box1 .txt .c-describe {
  width: 100%;
  height: auto;
  display: flex;
}
.index-op1 .c-box1 .txt .c-describe .size {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .index-op1 .c-box1 .txt .c-describe .size {
    font-size: 18px;
  }
}
.index-op1 .c-box1 .txt .c-describe .size.v2 span {
  padding-left: 0;
}
.index-op1 .c-box1 .txt .c-describe .size.v2 span::before {
  display: none;
}
.index-op1 .c-box1 .txt .c-describe .size span {
  position: relative;
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  padding-left: 11px;
}
.index-op1 .c-box1 .txt .c-describe .size span::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background: #342c26;
}
.index-op1 .c-box1 .txt .cat {
  display: inline-flex;
  margin-right: 15px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: #8c7562;
  border: 1px solid #8c7562;
  padding: 2px 10px;
  line-height: 25px;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .index-op1 .c-box1 .txt .cat {
    font-size: 18px;
  }
}
.index-op1 .c-box1 .txt p {
  font-size: 14px;
}
.index-op1 .c-box1 .txt .c-text2 {
  font-size: 15px;
  display: block;
  margin-top: 20px;
  letter-spacing: -0.5px;
}

@media screen and (max-width: 768px) {
  .index-op1 .c-box1 .txt .c-text2 {
  font-size: 14px;
  }
}

.index-op1 .c-box1 .txt h3 {
  font-size: 31px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.4;
  letter-spacing: -1.5px;
}
@media screen and (max-width: 768px) {
  .index-op1 .c-box1 .txt h3 {
    font-size: 26px;
  }
}
.index-op1 .c-box1 .txt > span {
  display: block;
  font-size: 12px;
  color: #858276;
}
.index-op1 .c-box1 .txt .c-pirce {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.index-op1 .c-box1 .txt .c-pirce .number {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
.index-op1 .c-box1 .txt .c-pirce .number {
  font-size: 23px;
  }
}
.index-op1 .c-box1 .txt .c-pirce .number span {
  display: inline-block;
  padding-left: 2px;
  font-weight: bold;
  font-size: 12px;
}
.index-op1 .c-box1 .c-btn {
  width: 220px;
  height: 54px;
  background: #87684e;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  position: relative;
  transition: 0.3s;
  border: 1px solid #87684e;
}
@media (max-width: 768px) {
  .index-op1 .c-box1 .c-btn {
    width: 100%;
    max-width: 350px;
    height: 65px;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 18px;
  }
}
.index-op1 .c-box1 .c-btn:hover {
  background: #ffffff;
  color: #87684e;
  opacity: 1;
}
.index-op1 .c-box1 .c-btn:hover a {
  opacity: 1 !important;
}

.c-footer {
  width: 100%;
  height: auto;
  background: #f0cfb4;
  background-size: cover;
  text-align: center;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .c-footer {
    overflow: hidden;
  }
}
.c-footer .content {
  width: 100%;
  height: auto;
  margin: 120px auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0px 25px;
}
@media screen and (max-width: 768px) {
  .c-footer .content {
    margin: 50px auto;
  }
}
.c-footer .content h2 {
  font-size: 30px;
  font-weight: 400;
}
.c-footer .content h2 span {
  display: block;
  font-size: 16px;
  padding-top: 5px;
}
@media (max-width: 768px) {
  .c-footer .content h2 {
    margin-bottom: 30px;
  }
}
.c-footer .content h3 {
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .c-footer .content h3 {
    margin-top: 5px;
  }
}
@media screen and (max-width: 374px) {
  .c-footer .content h3 {
    margin-top: 10px;
  }
}
.c-footer .content a {
  font-size: 26px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 35px;
}
@media (max-width: 768px) {
  .c-footer .content a {
    margin-top: 5px;
  }
}
@media screen and (max-width: 374px) {
  .c-footer .content a {
    margin-top: 0px;
  }
}
.c-footer .content p.txt2 {
  width: auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #5a4a42;
}
.c-footer .content p.txt2.mt {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .c-footer .content p.txt2.mt {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .c-footer .content p.txt2 {
    font-size: 15px;
    margin-top: 0px;
    border-bottom: 0px;
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .c-footer .content p.txt2 {
    font-size: 11px;
  }
}
.c-footer .content p {
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .c-footer .content p {
    text-align: left;
    max-width: 100%;
    font-size: 13px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 374px) {
  .c-footer .content p {
    font-size: 11px;
    margin-top: 5px;
  }
}
.c-footer .sub {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  padding: 65px 0px 60px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 768px) {
  .c-footer .sub {
    flex-direction: column;
    text-align: center;
    padding: 50px 0px 30px;
  }
}
.c-footer .sub .l-content {
  position: relative;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-footer .sub .l-content {
    text-align: center;
  }
}
.c-footer .sub p {
  font-size: 13px;
  display: block;
  padding-top: 25px;
}
@media (max-width: 768px) {
  .c-footer .sub p {
    text-align: center;
    padding: 20px 0px;
  }
}
.c-footer .sub a {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .c-footer .sub a.logo {
    margin: 0 auto;
    display: inline-block;
  }
}
.c-footer .sub a.logo img {
  width: 259px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-footer .sub a.logo img {
    width: 161px;
    height: auto;
    margin: 0 auto;
  }
}
.c-footer .sub a.icon {
  position: absolute;
  right: 0;
  top: 45px;
}
@media screen and (max-width: 768px) {
  .c-footer .sub a.icon {
    position: relative;
    top: 0;
  }
}
.c-footer .sub a.icon img {
  width: 24px;
}/*# sourceMappingURL=christmas2024.css.map */