@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap);

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Accessibility
3.0 Alignments
4.0 Clearings
5.0 Typography
6.0 Forms
7.0 Formatting
8.0 Lists
9.0 Tables
10.0 Links
11.0 Featured Image Hover
12.0 Navigation
13.0 Layout
   13.1 Header
   13.2 Front Page
   13.3 Regular Content
   13.4 Posts
   13.5 Pages
   13.6 Footer
14.0 Comments
15.0 Widgets
16.0 Media
   16.1 Galleries
17.0 Customizer
18.0 SVGs Fallbacks
19.0 Media Queries
20.0 Print
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/

/*reset*/

/* 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 {
  font-size: 62.5%;
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
  scroll-behavior: smooth;
}

/* Sections */
/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
  color: #805252;
  font-size: 1.6rem;
  font-weight: 400;
	font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  line-height: 200%;
  margin: 0;
  text-align:left;
  letter-spacing:0px;
  background-color: #D1BAAD !important;
  overflow-x: hidden;
  @media screen and (max-width: 767px) {
    font-size: 1.4rem;
  }
}

/**
 * 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;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 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] {
  text-decoration: underline; /* 2 */
  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;
}

img {
  width: 100%;
  height: auto;
  object-fit: contain;
  will-change: transform;
  transform: translate3d(0px, 0.872089px, 0px);
  backface-visibility: hidden;
}

/* Embedded content */
/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */

/**
 * Reset form fields to make them styleable
 */

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */

[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

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

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */

select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */

option {
  padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 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. Change font properties to `inherit` in Safari.
 */

::-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] {
  outline: none;
}

/* Table */
/* ============================================ */

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

caption {
  text-align: left;
}

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

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

/* Misc */
/* ============================================ */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

.pc_off{
  @media (min-width: 768px){
    display: none !important;
  }
}

.sp_off{
  @media screen and (max-width: 767px) {
    display: none !important;
  }
}

/*GSAP*/

.fade-in-section {
  opacity: 0;
  transform: translateY(50px);
}

.fade-in-section2 {
  opacity: 0;
  transform: translateY(50px);
}

/*loader*/

.loader_inner_title_bg{
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  background-color: #fff;
  top: 0;
  opacity: 0;
}

.loader_inner_title{
  color: #805252;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-align: center;
}

.loader_inner_logo_bg{
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  background-color: #D1BAAD;
  top: 0;
  opacity: 0;
}

.loader_inner_logo{
  color: #fff;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.loader_inner_logo img{
  width: 100%;
  height: 100px;
}

/*swiper*/

.swiper {
  width: 100%;
  margin-top: 80px;
  margin-left: 10% !important;
  @media screen and (max-width: 767px) {
    width: 300%;
    margin-left: 20px !important;
  }
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0px 3px 0px;
}

/*共通*/

h2{
  font-size: 2.4rem;
  margin-bottom: 40px;
  position: relative;
}

h2::after{
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #AB9191;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.5;
}

/*header*/

header{
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.header_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #D1BAAD;
  @media screen and (max-width: 767px) {
    padding: 16px;
  }
}

.header_inner .logo h1{
  display: flex;
  align-items: center;
  font-weight: 600;
}

.header_inner .logo img{
  width: auto;
  height: 60px;
  margin-right: 10px;
  @media screen and (max-width: 767px) {
    height: 40px;
  }
}

.header_inner_left{
  display: flex;
}

.header_inner .pc_nav{
  display: flex;
  align-items: center;
}

.header_inner .pc_nav a{
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-left:20px;
  position: relative;
}

.header_inner .pc_nav a::after{
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.header_inner .pc_nav a:hover::after{
  transform: scale(1, 1);
}

.header_inner .sp_nav p{
  color: #805252;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 54px;
  margin-bottom: 20px;
}

.header_inner_right{
  display: flex;
  gap: 10px;
}

.header_inner_right img{
  width: 100%;
  height: 32px;
  position: relative;
  top: -5px;
  border-radius: 4px;
}

/*404*/

.notfound{
  margin-top: 40px;
}

/*mask*/

#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}

/*front_page*/

.fv::after{
  content: "";
  display: block;
  width: 98%;
  height: 130px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  background-image:url("../images/fv_txt_mes.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  @media screen and (max-width: 767px) {
    bottom: -10px;
  }
}

.fv_inner{
  width: calc(100% - 80px);
  height: 78vh;
  margin: 100px auto 80px;
  background-size: cover;
  background-position: center;
  border-radius: 0px;
  position: relative;
  @media screen and (max-width: 767px) {
    width: calc(100% - 40px);
    height: 70vh;
    margin: 80px auto 20px;
  }
}

.concept_inner{
  width: 100%;
  padding: 80px 0px;
  text-align: center;
  background-color: #fff;
  position: relative;
}

.concept_inner::after{
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
  background-image:url("../images/scissors.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.concept_inner p{
  line-height: 250%;
  margin-top: 20px;
  @media screen and (max-width: 767px) {
    font-size: 1.4rem;
    line-height: 200%;
  }
}

/*テキスト表示*/

.reveal-title {
  font-size: 1.8rem;
  line-height: 150%;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 2px 0px 5px;
  @media screen and (max-width: 767px) {
    font-size: 1.4rem;
  }
}

.char {
  display: inline-block;
  will-change: transform, opacity;
}

/**/

.photo_inner{
  width: calc(100% - 160px);
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 120px auto;
  gap: 10%;
  @media screen and (max-width: 767px) {
    width: calc(100% - 80px);
    flex-direction: column;
  }
}

.photo_inner_right{
  margin-top: 120px;
}

.photo2_inner{
  width: calc(100% - 160px);
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 120px auto;
  gap: 10%;
  align-items: end;
  @media screen and (max-width: 767px) {
    width: calc(100% - 80px);
    flex-direction: column;
  }
}

.photo2_inner div{
  position: relative;
  left: -80px;
  margin-bottom: 80px;
  @media screen and (max-width: 767px) {
    left: 0px;
    margin-bottom: 0px;
  }
}

.photo2_inner_left{
  position: relative;
}

.photo2_inner_left::after{
  content: "";
  width: 50%;
  height: 30%;
  background: url(../images/logo_txt.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 20px;
  right: -30vw;
  z-index: 1;
  @media screen and (max-width: 767px) {
    width: 100%;
    inset: 0;
    margin: auto;
    top: 310px;
  }
}

.photo2_inner_right{
  position: relative;
  top: 80px;
  @media screen and (max-width: 767px) {
    top: 0px;
    margin-top: 120px;
  }
}

.photo3_inner{
  width: 60%;
  margin: 120px auto;
  @media screen and (max-width: 767px) {
    width: calc(100% - 80px);
  }
}

.photo3_inner_right{
  margin-top: 120px;
}

.cut_menu_inner{
  width: calc(100% - 160px);
  margin: auto;
  padding: 80px 0px;
  text-align: center;
  background-color: #fff;
  border-radius: 0px;
  position: relative;
  @media screen and (max-width: 767px) {
    width: 100%;
    padding: 60px 24px;
  }
}

.cut_menu_inner::after{
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
  background-image:url("../images/scissors.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.cut_menu_inner div{
  max-width: 65%;
  border-radius: 0px;
  margin: 40px auto;
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}

.cut_menu_inner div dl{
  display: flex;
  margin: auto;
  justify-content: space-between;
  padding: 20px 16px;
  border-bottom: solid 1px #805252;
  text-align: left;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    text-align: center;
  }
}

.cut_menu_inner div dl dt{
  font-weight: normal;
  margin-right: 40px;
  @media screen and (max-width: 767px) {
    margin: 0px;
  }
}

.cut_menu_inner div dl:first-child{
  border-top: solid 1px #805252;
}

.cut_menu_inner div dl dd{
  font-weight: bold;
}

.cut_menu_inner2{
  text-align: center;
  margin-top: 80px;
  @media screen and (max-width: 767px) {
    width: 80%;
    margin: 80px auto 0px;
  }
}

.cut_menu_inner2 a{
  max-width: 320px;
  display: block;
  padding: 20px 80px;
  border: solid 1px #805252;
  margin: 20px auto 0px;
  position: relative;
}

.cut_menu_inner2 a::before{
  content: "";
  width: 101%;
  height: 103%;
  display: block;
  padding: 20px 80px;
  border: solid 1px #805252;
  margin: 20px auto 0px;
  position: absolute;
  top: -15px;
  left: 5px;
}

.cut_menu_inner2 a::after{
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 46%;
  height: 1px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.cut_menu_inner2 a:hover::after{
  transform: scale(1, 1);
  background: #805252;
}

.photo_gallery_inner{
  width: calc(100% - 160px);
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 120px auto;
  gap: 10%;
  @media screen and (max-width: 767px) {
    width: calc(100% - 80px);
    flex-direction: column;
    margin: 80px auto;
  }
}

.photo_gallery_inner_right{
  @media screen and (max-width: 767px) {
    margin-top: 20px;
  }
}

.photo_slide_inner{
  overflow:hidden;
}

.photo_slide_inner ul{
  width: 300%;
  display: flex;
  gap: 40px;
  animation: scrollAnime 300s linear infinite;
  @media screen and (max-width: 767px) {
    width: 2000%;
  }
}

@keyframes scrollAnime{
  0% { transform: translateX(0)}
100% { transform: translateX(-100%)}
}

.photo_slide_inner ul li{
  width: 160px;
  height: 160px;
  overflow: hidden;
}

.photo_slide_inner ul li img{
  transition: all 0.4s ease;
}

.photo_slide_inner ul li:hover img{
  transform: scale(1.2);
  transition: all 0.4s ease;
}

footer .shop_info{
  display: flex;
  margin-top: 120px;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    margin-top: 80px;
  }
}

footer .shop_info > div{
  width: 50%;
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}

footer .shop_info div iframe{
  width: 100%;
  height: 100%;
  @media screen and (max-width: 767px) {
    height: 400px;
  }
}

footer .shop_info_right{
  color: #fff;
  background-color: #805252;
  padding: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  @media screen and (max-width: 767px) {
    flex-direction: column-reverse;
    padding: 80px 60px;
  }
}

footer .shop_info_right h3{
  margin-bottom: 20px;
  @media screen and (max-width: 767px) {
    margin: 20px 0px 10px;
  }
}

footer .shop_info_right div{
  width: 48%;
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}

footer .payment{
  text-align: center;
  background-color: #fff;
  padding: 80px;
  @media screen and (max-width: 767px) {
    padding: 40px 80px;
  }
}

footer .payment img{
  width: 280px;
  height: auto;
  margin-top: 20px;
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}

footer .logo{
  text-align: center;
  padding: 40px 0px 24px;
}

footer .logo img{
  width: 100px;
  height: auto;
}

footer .copyright{
  color: #FFF;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 20px;
}