@charset "UTF-8";
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  color: #222;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #222;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

a,
span {
  display: inline-block;
}

/*===================================================
共通
===================================================*/
/* 基本
***************************************************************/
html {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #111111;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  scroll-behavior: smooth;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}
/* フォント
***************************************************************/
.serif {
  font-family: "Noto Serif JP", serif;
}

.oswald {
  font-family: "Oswald", sans-serif;
}

/* コンテンツ・セクション幅
***************************************************************/
.inner {
  max-width: 1080px;
  margin: 0 auto;
}

section {
  padding: 90px 0;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 5.3333333333vw;
  }
  section {
    padding: 14.6666666667vw 0;
  }
}
/* PC・SP 非表示
***************************************************************/
.sp_only {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .sp_only {
    display: block !important;
  }
  .pc_only {
    display: none;
  }
}
/* 共通パーツ (全ページ)
***************************************************************/
.section_title_wrap {
  text-align: center;
}

.section_title_wrap img {
  width: 34px;
}

.section_title {
  font-size: 14px;
  color: #111111;
  line-height: 1;
}

.section_title span {
  font-size: 32px;
  color: #c26e20;
  position: relative;
  display: block;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .section_title {
    font-size: 3.4666666667vw;
    margin-top: -0.8vw;
  }
  .section_title span {
    font-size: 6.9333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.bg01 {
  background-color: #f8f6f3;
}

.btn {
  width: 160px;
  position: relative;
  margin-top: 60px;
}

.btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 3px;
  width: 12px;
  height: 12px;
  background-image: url(../images/icon/btn_arrow_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.btn a {
  font-size: 17px;
  color: #c26e20;
  display: block;
  border-bottom: 1px solid #c26e20;
  padding-left: 4px;
  padding-bottom: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.btn a::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #c26e20;
}

.btn a::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #c26e20;
}

@media screen and (min-width: 768px) {
  .btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    margin: 8vw auto 0;
  }
}
main {
  position: relative;
}

.page_top {
  position: fixed;
  bottom: 30px;
  right: 55px;
  z-index: 10;
}

.page_top img {
  width: 50px;
}

@media screen and (max-width: 767px) {
  .page_top {
    bottom: 5.3333333333vw;
    right: 5.3333333333vw;
  }
  .page_top img {
    width: 8.8vw;
  }
}
/* 共通パーツ(下層)
***************************************************************/
.archive_fv {
  height: 350px;
  position: relative;
  padding: 0 110px;
}

.archive_inner {
  background-image: url(../images/page/fv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

.archive_fv h1 {
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.archive_fv h1 span {
  font-size: 32px;
  letter-spacing: 0.1rem;
  color: #c26e20;
  display: block;
  margin-bottom: 3px;
}

.archive_fv .img {
  width: 22px;
  position: absolute;
  top: 60px;
  right: 44px;
}

@media screen and (max-width: 767px) {
  .archive_fv {
    padding: 0 2.6666666667vw;
    height: 66.6666666667vw;
  }
  .archive_inner {
    background-image: url(../images/page/fv_sp.jpg);
  }
  .archive_fv h1 span {
    letter-spacing: 0.05rem;
  }
  .archive_fv .img {
    display: none;
  }
}
.bread {
  margin-top: 20px;
}

.bread .inner ul {
  display: flex;
  gap: 10px;
}

.bread .inner ul li a {
  white-space: nowrap;
}

.bread .inner ul li img.img {
  width: 10px;
  vertical-align: unset;
}

.bread .inner ul li:last-of-type {
  color: #c26e20;
}

@media screen and (max-width: 767px) {
  .bread {
    margin-top: 2.6666666667vw;
  }
  .bread .inner ul {
    gap: 1.6vw;
    font-size: 3.7333333333vw;
  }
  .bread .inner ul li img.img {
    width: 1.8666666667vw;
    vertical-align: unset;
  }
  .bread .inner ul li:last-of-type {
    color: #c26e20;
  }
}
.page_nation {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.page_nation span,
.page_nation a {
  width: 44px;
  height: 44px;
  text-align: center;
  padding-top: 14px;
  border: 1px solid #2f1803;
}

.page_nation span.page-numbers.current {
  line-height: 1;
  font-weight: 500;
  color: #fff;
  background-color: #2f1803;
}

.page_nation a.page-numbers {
  line-height: 1;
  font-weight: 500;
}

.page_nation a.next {
  background-image: url(../images/icon/page_nation_icon.svg);
  background-size: 8px 12px;
  background-repeat: no-repeat;
  background-position: center;
  border: unset;
}

.page_nation a.prev {
  background-image: url(../images/icon/page_nation_icon.svg);
  background-size: 8px 12px;
  background-repeat: no-repeat;
  background-position: center;
  border: unset;
  transform: scale(-1, 1);
}

.page_nation span.page-numbers.dots {
  border: unset;
  width: auto;
  padding-top: 6px;
}

@media screen and (max-width: 767px) {
  .page_nation {
    margin-top: 8vw;
    gap: 2.6666666667vw;
  }
  .page_nation span,
  .page_nation a {
    width: 8.8vw;
    height: 8.8vw;
    padding-top: 2.6666666667vw;
    font-size: 3.2vw;
  }
  .page_nation span.page-numbers.current {
    font-weight: 400;
  }
  .page_nation a.page-numbers {
    font-weight: 400;
  }
}
/*===================================================
ヘッダー
===================================================*/
header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 100;
}

.logo_content {
  position: absolute;
  bottom: -75px;
  left: 50%;
  transform: translate(-50%, 0);
}

.logo_content .logo {
  width: 140px;
}

/* ハンバーガーメニュー非表示 */
.toggle-menu {
  display: none;
}

/* ヘッダーリンク */
.global_nav ul {
  display: flex;
  justify-content: center;
  gap: 55px;
  padding-top: 66px;
}

.global_nav .hamburger_sns {
  display: none;
}

.global_nav ul li:nth-of-type(2) {
  margin-right: 97.5px;
}

.global_nav ul li:nth-of-type(3) {
  margin-left: 97.5px;
}

.global_nav ul li a {
  font-weight: 500;
}

.header_sns {
  position: absolute;
  top: 30px;
  left: 110px;
  display: flex;
  gap: 28px;
}

.header_sns img {
  width: 30px;
}

.access_btn {
  position: absolute;
  top: 0;
  right: 0;
}

.access_btn img {
  width: 110px;
}

@media screen and (max-width: 980px) {
  .global_nav ul {
    gap: 10px;
  }
  .global_nav ul li:nth-of-type(1) {
    margin-left: -10px;
  }
  .global_nav ul li:nth-of-type(2) {
    margin-right: 53px;
  }
}
@media screen and (max-width: 767px) {
  /* ハンバーガーメニュー */
  .toggle-menu {
    display: inline-block;
    width: 10.1333333333vw;
    height: 6.6666666667vw;
    position: fixed;
    top: 3.7333333333vw;
    right: 2.6666666667vw;
    z-index: 1000;
  }
  .toggle-menu .toggle-line {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 10.1333333333vw;
    height: 0.2666666667vw;
    background-color: #c26e20;
    transition: all 0.3s ease;
  }
  .toggle-menu .toggle-line::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    transform: translate(0, -50%);
    border-radius: 50%;
    background-color: #c26e20;
  }
  .toggle-menu .toggle-line::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    transform: translate(0, -50%);
    border-radius: 50%;
    background-color: #c26e20;
  }
  .toggle-menu .toggle-line:nth-of-type(2) {
    top: 3.2vw;
  }
  .toggle-menu .toggle-line:nth-of-type(3) {
    top: 6.6666666667vw;
  }
  .header_nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100%;
    background-color: #f8f8f8;
    z-index: 90;
    transition: 0.3s ease-out;
    overflow-y: scroll;
  }
  .open .toggle-menu {
    transition: all 0.5s linear 1s;
  }
  .open .toggle-menu .toggle-line:nth-of-type(2) {
    display: none;
  }
  .open .toggle-menu .toggle-line:nth-of-type(1) {
    top: 3.2vw;
    transform: rotate(-45deg);
  }
  .open .toggle-menu .toggle-line:nth-of-type(3) {
    top: 3.2vw;
    transform: rotate(45deg);
  }
  .open .header_nav {
    left: 0;
  }
  header {
    height: 13.3333333333vw;
    text-align: center;
  }
  .logo_content {
    bottom: -14.4vw;
  }
  .logo_content .logo {
    width: 21.3333333333vw;
  }
  /* ヘッダーリンク */
  .global_nav .nav_list {
    display: flex;
    flex-flow: column;
    gap: unset;
    padding-top: unset;
    margin-top: 1.3333333333vw;
  }
  .global_nav .nav_list li:nth-of-type(2) {
    margin-right: unset;
  }
  .global_nav .nav_list li:nth-of-type(3) {
    margin-left: unset;
  }
  .global_nav .nav_list li a {
    font-weight: 500;
  }
  .header_sns {
    display: none;
  }
  .access_btn {
    display: none;
  }
  .logo_content_sp {
    width: 21.3333333333vw;
    margin: 13.3333333333vw auto 0;
  }
  .global_nav .nav_list li a {
    letter-spacing: 0;
    color: #2f1803;
    padding: 6.6666666667vw 0 2.6666666667vw;
    display: inline-block;
    width: 48vw;
    border-bottom: 1px solid #c26e20;
    position: relative;
  }
  .global_nav .nav_list li a::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    transform: translate(0, 50%);
    border-radius: 50%;
    background-color: #c26e20;
  }
  .global_nav .nav_list li a::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    transform: translate(0, 50%);
    border-radius: 50%;
    background-color: #c26e20;
  }
  .global_nav .hamburger_sns {
    display: flex !important;
    gap: 6.6666666667vw;
    margin-top: 8vw;
    padding: 0;
  }
  .global_nav .hamburger_sns .hamburger_sns_item {
    margin: 0;
  }
  .global_nav .hamburger_sns .hamburger_sns_item img {
    width: 7.4666666667vw;
  }
  .global_nav .text_box {
    margin-top: 6.6666666667vw;
  }
  .global_nav .text_box:first-of-type {
    margin-top: 8vw;
  }
  .global_nav .text_box img {
    width: 6.4vw;
  }
  .global_nav .text_box p.text {
    letter-spacing: 0.1rem;
    margin-top: 1.3333333333vw;
    margin-bottom: 14.6666666667vw;
    color: #333;
  }
}
/*===================================================
フッター
===================================================*/
footer {
  background-color: #2f1803;
  padding: 10px 40px 40px;
  display: flex;
  justify-content: space-between;
}

footer .flex_left {
  display: flex;
  gap: 50px;
  align-items: center;
}

footer .flex_left img {
  width: 100px;
}

footer .flex_left nav ul.footer_nav {
  display: flex;
  gap: 50px;
}

footer .flex_left nav ul.footer_nav li a {
  color: #fff;
}

footer .flex_right {
  padding-top: 70px;
}

footer .flex_right ul.footer_sns {
  display: flex;
  gap: 30px;
  justify-content: end;
}

footer .flex_right ul.footer_sns li a img {
  width: 24px;
}

footer p.copy_right {
  color: #fff;
  font-size: 12px;
  margin-top: 53px;
  text-align: right;
  font-family: "Marcellus", serif;
}

@media screen and (max-width: 1080px) {
  footer {
    display: block;
  }
  footer .flex_left nav ul.footer_nav {
    gap: 25px;
  }
  footer .flex_right ul.footer_sns {
    justify-content: center;
  }
  footer p.copy_right {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 14.6666666667vw 0;
    flex-flow: column;
  }
  footer .flex_left {
    flex-flow: column;
    gap: 6.6666666667vw;
    align-items: center;
  }
  footer .flex_left img {
    width: 21.3333333333vw;
  }
  footer .flex_left nav ul.footer_nav {
    display: unset;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw 13.3333333333vw;
    text-align: center;
  }
  footer .flex_right {
    padding-top: 6.6666666667vw;
  }
  footer .flex_right ul.footer_sns {
    justify-content: center;
  }
  footer p.copy_right {
    margin-top: 8vw;
    text-align: center;
  }
}
/*===================================================
トップページ
===================================================*/
/* トップページ FV
***************************************************************/
.fv {
  padding: 0 110px;
  position: relative;
}

.fv .img1 {
  width: 22px;
  position: absolute;
  left: 44px;
  bottom: -40px;
}

.fv .img3 {
  width: 22px;
  position: absolute;
  top: 60px;
  right: 44px;
}

@media screen and (max-width: 767px) {
  .fv {
    padding: 0 2.6666666667vw;
  }
  .fv .img1 {
    display: none;
  }
  .fv .img3 {
    display: none;
  }
}
/* トップページ section1
***************************************************************/
.sec1 {
  padding: 190px 0 210px;
  position: relative;
}

.sec1 .inner .desc {
  font-size: 36px;
  line-height: 1.8;
  font-weight: 500;
}

.sec1 .inner .desc span {
  color: #c26e20;
}

.sec1 .inner p.text {
  font-size: 17px;
  line-height: 1.8;
  margin-top: 60px;
}

.sec1 img {
  width: 1065px;
  position: absolute;
  top: 203px;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 1520px) {
  .sec1 img {
    width: 800px;
    top: 303px;
  }
}
@media screen and (max-width: 1180px) {
  .sec1 {
    padding: 190px 0 210px 30px;
  }
  .sec1 img {
    width: 600px;
    top: 514px;
  }
}
@media screen and (max-width: 950px) {
  .sec1 img {
    width: 400px;
    top: 514px;
  }
}
@media screen and (max-width: 767px) {
  .sec1 {
    padding: 16vw 0 100vw;
    text-align: center;
  }
  .sec1 .inner .desc {
    font-size: 6.1333333333vw;
  }
  .sec1 .inner p.text {
    font-size: 4vw;
    margin-top: 8vw;
  }
  .sec1 img {
    width: 89.3333333333vw;
    top: unset;
    bottom: 14.6666666667vw;
  }
}
/* トップページ section2
***************************************************************/
.sec2 .slider li .text_box {
  padding: 20px;
  background-color: #fff;
  border-left: 1px solid #cfc3b8;
  border-bottom: 1px solid #cfc3b8;
  border-right: 1px solid #cfc3b8;
}

.sec2 .slider li h3.title.serif {
  font-weight: 500;
  text-align: center;
}

.sec2 .slider li .price {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sec2 .slider li .price .img02 {
  width: 100px;
}

.sec2 .slider li .price .text1 {
  font-size: 20px;
  color: #aa8a6b;
}

.sec2 .slider li .price .text1 span {
  font-size: 14px;
}

.sec2 .slider li p.text2 {
  font-size: 14px;
  min-height: 63px;
}

.sec2 .btn {
  margin: 60px auto 0;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  max-width: 1330px;
  margin: 55px auto 0;
}

.slider .img01 {
  height: 250px;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px;
  width: 250px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  background-image: url(../images/icon/slider_arrow_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 48px;
  width: 48px;
  z-index: 10;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -48px;
  transform: rotate(0);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -48px;
  transform: rotate(180deg);
}

@media screen and (max-width: 1430px) {
  .slick-prev {
    /*戻る矢印の位置と形状*/
    left: 0;
    transform: rotate(0);
  }
  .slick-next {
    /*次へ矢印の位置と形状*/
    right: 0;
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 767px) {
  .sec2 .slider li .price {
    gap: 2.6666666667vw;
  }
  .sec2 .btn {
    margin: 30px auto 0;
  }
  /*==================================================
  スライダーのためのcss
  ===================================*/
  .slider {
    max-width: 1330px;
    margin: 8vw auto 0;
  }
  .slider .img01 {
    height: 76vw;
  }
  /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
  .slider .slick-slide {
    margin: 0 12vw;
    width: 76vw;
  }
  /*矢印の設定*/
  /*戻る、次へ矢印の位置*/
  .slick-prev,
  .slick-next {
    height: 9.3333333333vw;
    width: 9.3333333333vw;
  }
  .slick-prev {
    /*戻る矢印の位置と形状*/
    left: 2.6666666667vw;
  }
  .slick-next {
    /*次へ矢印の位置と形状*/
    right: 2.6666666667vw;
  }
}
/* トップページ section3
***************************************************************/
.sec3 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 55px;
  padding: 0 30px;
}

@media screen and (max-width: 767px) {
  .sec3 .inner {
    display: contents;
  }
  .sec3 ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 8vw;
    padding: 0;
  }
}
/* トップページ section4
***************************************************************/
.sec4 .inner ul {
  background-color: #fff;
  padding: 25px 90px 50px;
  margin-top: 55px;
}

.sec4 .inner ul li {
  position: relative;
}

.sec4 .inner ul li::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(50%);
  background-color: #bab3ac;
}

.sec4 .inner ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(50%);
  background-color: #bab3ac;
}

.sec4 .inner ul li a {
  padding: 25px 0 20px 10px;
  display: block;
  border-bottom: 1px solid #bab3ac;
  position: relative;
}

.sec4 .inner ul li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 27px;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon/news_arrow_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.sec4 .inner ul li a time.oswald {
  font-size: 14px;
  color: #aa8a6b;
}

.sec4 .inner ul li a time.oswald span {
  font-size: 12px;
  color: #fff;
  padding: 0 5px 1px;
  background-color: #c26e20;
  margin-left: 10px;
}

.sec4 .inner ul li a h3.title {
  font-weight: 500;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.sec4 .inner ul li a p {
  font-size: 14px;
  color: #5b5b5b;
  margin-top: 5px;
}

.sec4 .inner .btn {
  margin: 55px auto 0;
}

@media screen and (min-width: 768px) {
  .sec4 .inner ul li a:hover h3.title {
    color: #c26e20;
  }
}
@media screen and (max-width: 960px) {
  .sec4 .inner ul li a p {
    width: 547px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .sec4 .inner ul {
    background-color: #fff;
    padding: 4vw 5.3333333333vw 8vw 4vw;
    margin-top: 8vw;
  }
  .sec4 .inner ul li a {
    padding: 4vw 0;
  }
  .sec4 .inner ul li a::after {
    content: "";
    display: none;
  }
  .sec4 .inner ul li a time.oswald {
    font-size: 3.2vw;
  }
  .sec4 .inner ul li a time.oswald span {
    font-size: 2.6666666667vw;
    padding: 0 0.8vw;
  }
  .sec4 .inner ul li a h3.title {
    font-size: 3.7333333333vw;
    margin-top: 1.3333333333vw;
  }
  .sec4 .inner ul li a p {
    font-size: 3.4666666667vw;
    margin-top: 2.6666666667vw;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    width: auto;
  }
  .sec4 .inner .btn {
    margin: 8vw auto 0;
  }
}
/* トップページ section5
***************************************************************/
.sec5 .inner {
  display: flex;
  justify-content: space-between;
}

.sec5 .inner .text_box {
  margin-top: 33px;
}

.sec5 .inner .text_box .section_title_wrap {
  width: 108px;
}

.sec5 .inner .text_box ul {
  margin-top: 40px;
}

.sec5 .inner .text_box ul li {
  display: flex;
}

.sec5 .inner .text_box ul li + li {
  margin-top: 15px;
}

.sec5 .inner .text_box ul li p.text1 {
  letter-spacing: 0.03rem;
  width: 136px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec5 .inner .text_box ul li p.text1::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #c26e20;
}

.sec5 .inner .text_box ul li p.text2 {
  letter-spacing: 0.1rem;
  flex: 1;
}

.sec5 .inner iframe {
  width: 589px;
  height: 395px;
}

@media screen and (max-width: 1200px) {
  .sec5 {
    padding: 90px 30px;
  }
  .sec5 .inner .text_box ul li {
    display: block;
  }
  .sec5 .inner iframe {
    margin-top: 70px;
  }
}
@media screen and (max-width: 980px) {
  .sec5 .inner iframe {
    margin-top: 170px;
    width: 371px;
    height: 295px;
  }
}
@media screen and (max-width: 767px) {
  .sec5 {
    padding: 14.6666666667vw 0;
  }
  .sec5 .inner {
    flex-flow: column;
  }
  .sec5 .inner .text_box {
    margin-top: 0;
  }
  .sec5 .inner .text_box .section_title_wrap {
    width: unset;
  }
  .sec5 .inner .text_box ul {
    margin-top: 8vw;
  }
  .sec5 .inner .text_box ul li {
    align-items: flex-start;
    display: flex;
  }
  .sec5 .inner .text_box ul li p.text1 {
    font-size: 3.7333333333vw;
    letter-spacing: 0.1rem;
    width: 34.6666666667vw;
    padding-left: 9.0666666667vw;
  }
  .sec5 .inner .text_box ul li p.text2 {
    font-size: 3.7333333333vw;
  }
  .sec5 .inner iframe {
    margin: 5.3333333333vw 4.5333333333vw 0;
    width: 80vw;
    height: 93.3333333333vw;
  }
}
/*===================================================
会社概要
===================================================*/
/* 会社概要 section1
***************************************************************/
/*===================================================
お問い合わせ
===================================================*/
/* お問い合わせ section1
***************************************************************/
/*===================================================
news
===================================================*/
.news {
  padding: 16px 0 90px;
}

.news .inner ul li {
  position: relative;
}

.news .inner ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(50%);
  background-color: #bab3ac;
}

.news .inner ul li::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(50%);
  background-color: #bab3ac;
}

.news .inner ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0 30px 8px;
  position: relative;
  border-bottom: 1px solid #bab3ac;
}

.news .inner ul li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url(../images/icon/news_arrow_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.news .inner ul li a time {
  font-size: 14px;
  color: #aa8a6b;
  width: 62px;
}

.news .inner ul li a p.text {
  font-size: 12px;
  color: #fff;
  padding: 0 5px 1px;
  background-color: #c26e20;
  width: 62px;
}

.news .inner ul li a h2 {
  flex: 1;
  padding-right: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media screen and (max-width: 1200px) {
  .news {
    padding: 16px 30px 90px;
  }
}
@media screen and (max-width: 767px) {
  .news {
    padding: 3.7333333333vw 0 12vw;
  }
  .news .inner ul li a {
    flex-flow: column;
    align-items: unset;
    gap: 0;
    padding: 1.3333333333vw 0;
    display: block;
  }
  .news .inner ul li a::after {
    content: "";
    display: none;
  }
  .news .inner ul li a time {
    font-size: 3.2vw;
    width: 14.6666666667vw;
    vertical-align: middle;
  }
  .news .inner ul li a p.text {
    font-size: 2.6666666667vw;
    padding: 0 0.8vw 1px;
    width: 13.3333333333vw;
    display: inline-block;
    vertical-align: middle;
    margin-left: 2.6666666667vw;
  }
  .news .inner ul li a h2 {
    margin-top: 1.3333333333vw;
    padding-right: 8vw;
  }
}
.news_single {
  padding: 57px 0 90px;
}

.news_single .inner .news_single_title {
  border-bottom: 1px solid #bab3ac;
  position: relative;
}

.news_single .inner .news_single_title::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(50%);
  background-color: #bab3ac;
}

.news_single .inner .news_single_title::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(50%);
  background-color: #bab3ac;
}

.news_single .inner .news_single_title h1.serif {
  font-size: 32px;
  letter-spacing: 0;
}

.news_single .inner .news_single_title time.oswald {
  font-size: 14px;
  color: #aa8a6b;
  margin-top: 17px;
  padding-bottom: 50px;
  display: inline-block;
}

.news_single .inner .news_content {
  padding-top: 60px;
}

.news_single .inner .news_content p {
  margin-bottom: 24px;
}

.news_single .inner .news_content p:last-of-type {
  margin-bottom: unset;
}

.news_single .inner .news_content div:empty {
  height: 24px;
}

.news_single .inner .news_content img {
  width: 427px;
  margin-bottom: 50px;
}

.news_single .inner .news_content img + img {
  margin-left: 40px;
}

@media screen and (max-width: 1200px) {
  .news_single {
    padding: 57px 30px 90px;
  }
}
@media screen and (max-width: 980px) {
  .news_single .inner .news_content img {
    width: 324px;
  }
}
@media screen and (max-width: 767px) {
  .news_single {
    padding: 5.0666666667vw 0 12vw;
  }
  .news_single .inner .news_single_title h1.serif {
    font-size: 6.4vw;
    letter-spacing: 0.05rem;
  }
  .news_single .inner .news_single_title time.oswald {
    font-size: 3.2vw;
    margin-top: 1.3333333333vw;
    padding-bottom: 5.3333333333vw;
  }
  .news_single .inner .news_content {
    font-size: 3.7333333333vw;
    padding-top: 5.3333333333vw;
  }
  .news_single .inner .news_content img {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
  .news_single .inner .news_content p img:last-of-type {
    margin-bottom: 0;
  }
  .news_single .inner .news_content img + img {
    margin-left: unset;
  }
}
.pagination {
  margin-top: 50px;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination .nav-links span,
.pagination .nav-links a {
  width: 44px;
  height: 44px;
  text-align: center;
  padding-top: 14px;
  border: 1px solid #2f1803;
}

.pagination .nav-links span.page-numbers.current {
  line-height: 1;
  font-weight: 500;
  color: #fff;
  background-color: #2f1803;
}

.pagination .nav-links a.page-numbers {
  line-height: 1;
  font-weight: 500;
}

.pagination .nav-links a.next {
  background-image: url(../images/icon/page_nation_icon.svg);
  background-size: 8px 12px;
  background-repeat: no-repeat;
  background-position: center;
  border: unset;
}

.pagination .nav-links a.prev {
  background-image: url(../images/icon/page_nation_icon.svg);
  background-size: 8px 12px;
  background-repeat: no-repeat;
  background-position: center;
  border: unset;
  transform: scale(-1, 1);
}

.pagination .nav-links span.page-numbers.dots {
  border: unset;
  width: auto;
  padding-top: 6px;
}

/* news
***************************************************************/
.lineup {
  padding: 46px 0 90px;
}

.lineup_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lineup_item .text_box {
  padding: 20px;
  background-color: #fff;
  border-left: 1px solid #cfc3b8;
  border-bottom: 1px solid #cfc3b8;
  border-right: 1px solid #cfc3b8;
}

.lineup_item .img01 {
  height: 250px;
}

.lineup_item h3.title.serif {
  font-weight: 500;
  text-align: center;
}

.lineup_item .price {
  display: flex;
  gap: 15px;
  align-items: center;
}

.lineup_item .price .img02 {
  width: 100px;
}

.lineup_item .price .text1 {
  font-size: 20px;
  color: #aa8a6b;
}

.lineup_item .price .text1 span {
  font-size: 14px;
}

.lineup_item p.text2 {
  font-size: 14px;
  min-height: 63px;
}

@media screen and (max-width: 1200px) {
  .bread {
    padding-left: 30px;
  }
  .lineup {
    padding: 45px 30px 90px;
  }
  .lineup_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 920px) {
  .lineup_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bread {
    padding-left: 0;
  }
  .lineup {
    padding: 6.4vw 0 12vw;
  }
  .lineup_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4vw;
  }
  .lineup_item .text_box {
    padding: 4vw;
    min-height: 45.6vw;
  }
  .lineup_item .img01 {
    height: 43.4666666667vw;
  }
  .lineup_item h3.title.serif {
    font-size: 3.7333333333vw;
  }
  .lineup_item .price {
    gap: 1.3333333333vw;
  }
  .lineup_item .price .img02 {
    width: 17.3333333333vw;
  }
  .lineup_item .price .text1 {
    font-size: 3.7333333333vw;
  }
  .lineup_item .price .text1 span {
    font-size: 2.6666666667vw;
  }
  .lineup_item p.text2 {
    font-size: 3.2vw;
    min-height: 19.2vw;
  }
}