@charset "UTF-8";
/*
Theme Name: 整体KOTOBUKI
Theme URI: 
Author: 
Author URI:
Description: 
Version: 1.0
*/
/*
@media screen and (max-width: 1279px){
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
}
@media screen and (max-width: 479px){
}
*/
/* CONST */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;600;700&display=swap");
:root {
  --font-family-base:"Shippori Mincho", serif;
  --font-family-gothic: "Noto Sans JP", sans-serif;
  --color-primary: #564C45;
  --color-sub01: #B79434;
  --color-sub02: #e5eef5;
  --color-sub03: #B6A08F;
  --color-sub04: #B79434;
  --color-text: #564C45;
  --color-line: #06C755;
  --bg-highlight: #F6F3F1;
  --header-height-pc: 130px;
  --header-height-sp: 64px;
  --swiper-pagination-bullet-width: 11px;
  --swiper-pagination-bullet-height: 11px;
  --swiper-pagination-bullet-horizontal-gap: 10px;
  --swiper-pagination-color: var(--color-sub04);
}
@media screen and (max-width: 767px) {
  :root {
    --swiper-pagination-bullet-width: 7px;
    --swiper-pagination-bullet-height: 7px;
    --swiper-pagination-bullet-horizontal-gap: 5px;
  }
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

[id] {
  scroll-margin-top: var(--header-height-pc);
}
@media screen and (max-width: 991px) {
  [id] {
    scroll-margin-top: var(--header-height-sp);
  }
}

/* COMMON */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  color: var(--color-text);
  background-color: #fff;
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
}

main {
  margin-top: var(--header-height-pc);
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 991px) {
  main {
    margin-top: var(--header-height-sp);
  }
}

.container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
}

section {
  position: relative;
  padding: 0 0 80px;
}
section.pt {
  padding-top: 80px;
}

article.page {
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  section {
    padding: 0 0 40px;
  }
  section.pt {
    padding-top: 40px;
  }
  article.page {
    padding: 40px 0;
  }
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-family-mincho);
}

h1 {
  font-size: clamp(1.5rem, 1.173rem + 1.64vw, 2.4rem);
}

h2 {
  font-size: clamp(1.7rem, 1.6rem + 0.5vw, 2rem);
}

h3 {
  font-size: clamp(1.3rem, 1.2rem + 0.5vw, 1.6rem);
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1rem;
}

.font-gothic {
  font-family: var(--font-family-gothic);
}

.text-center {
  text-align: center;
}

.bg-highlight {
  background-color: var(--bg-highlight);
}

.marker {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #FFFF50 60%);
}

.yellow {
  color: #FFF500;
}

.title-sub {
  font-family: var(--font-family-en);
  font-size: clamp(0.8rem, 0.725rem + 0.34vw, 1rem);
  margin-bottom: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.title-sub::before {
  content: "";
  height: 1px;
  background-color: var(--color-primary);
  width: 50px;
}
.title-sub.center {
  justify-content: center;
}

.btn01 {
  width: 300px;
  border-radius: 30px;
  text-decoration: none;
  background-color: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  height: 50px;
  transition: 0.5s;
  border: 1px solid var(--color-primary);
}
.btn01.highlight {
  background-color: var(--bg-highlight);
  color: var(--color-primary);
}
.btn01.highlight:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.btn01.arrow::after {
  content: "";
  background: url("images/btn_arrow_w.svg") center/contain no-repeat;
  width: 6px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.btn01.arrow.highlight::after {
  background: url("images/btn_arrow_b.svg") center/contain no-repeat;
}
.btn01:hover {
  background-color: #fff;
  color: var(--color-primary);
}

.more-btn {
  display: block;
  position: relative;
  padding-right: 25px;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 75px;
  margin: 0 0 0 auto;
  line-height: 1;
  /* 斜めの矢印部分 */
}
.more-btn::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--color-primary);
}
.more-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 3px;
  border-top: 1px solid var(--color-primary);
  transform: rotate(45deg);
  transform-origin: right;
}

/* デバイス表示切り替え用 共通クラス */
.sp-only {
  display: none !important;
}

.pc-only {
  display: block !important;
}

.sp-hide {
  display: block !important;
}

.pc-hide {
  display: none !important;
}

@media screen and (max-width: 787px) {
  .sp-only {
    display: block !important;
  }
  .pc-only {
    display: none !important;
  }
  .sp-hide {
    display: none !important;
  }
  .pc-hide {
    display: block !important;
  }
}
/* HEADER */
header {
  position: fixed;
  width: 100%;
  height: var(--header-height-pc);
  z-index: 100;
  top: 0;
  left: 0;
  padding: 0;
  background: #fff;
}
header .header__line .btn01 {
  width: 150px;
  color: var(--color-line);
  border-color: var(--color-line);
  background-color: #fff;
}
header .header__line .btn01:hover {
  background-color: var(--color-line);
  color: #fff;
}
header .header__line .btn01.arrow.highlight::after {
  background: url("images/btn_arrow_g.svg") center/contain no-repeat;
}
header .header__web .btn01 {
  width: 150px;
  flex-direction: column;
  background-color: var(--color-sub04);
  border-color: var(--color-sub04);
}
header .header__web .btn01 small {
  font-size: 0.75rem;
  line-height: 1;
}
header .header-top {
  padding: 10px 0;
  height: 80px;
}
header .header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
  max-width: 1220px;
}
header .header-top .site-logo {
  flex: 1;
}
header .header-top .site-logo p, header .header-top .site-logo h1 {
  font-size: clamp(0.6rem, 0.538rem + 0.28vw, 0.75rem);
  font-weight: 600;
}
header .header-top .site-logo img {
  width: 310px;
  margin-top: 10px;
}
header .header-top .header-top__info {
  font-size: 12px;
  font-weight: 600;
}
header .header-top .shop-info__tel {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-family: var(--font-family-gothic);
  font-weight: 700;
  font-size: clamp(1.125rem, 0.869rem + 1.17vw, 1.6rem);
}
header .header-top .shop-info__tel img {
  width: 17px;
  height: 23px;
}
@media screen and (max-width: 991px) {
  header .header-top {
    height: calc(var(--header-height-sp) - 4px);
  }
  header .header-top .site-logo img {
    width: 204px;
    margin-top: 3px;
  }
  header .header-top .header-top__info {
    display: none;
  }
  header .header-top .header__line .btn01 {
    display: none;
  }
  header .header-top .header__web .btn01 {
    display: none;
  }
}
header .header-bottom {
  background-color: var(--color-sub03);
  padding: 12px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
header .header-bottom .gnav {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-bottom .gnav .gnav--menu {
  display: flex;
  list-style: none;
}
header .header-bottom .gnav .gnav--menu li {
  border-right: 1px solid #fff;
}
header .header-bottom .gnav .gnav--menu li a {
  font-weight: 700;
  transition: 0.3s;
  padding: 5px 20px;
  color: #fff;
}
header .header-bottom .gnav .gnav--menu li:last-child {
  border-right: none;
}
@media screen and (max-width: 991px) {
  header .header-bottom {
    display: none;
  }
}
header .hamburger {
  display: none;
}
header .header-sp-nav {
  display: none;
}
@media screen and (max-width: 991px) {
  header {
    height: var(--header-height-sp);
    border-bottom: 4px solid var(--color-sub03);
  }
  header .hamburger {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
  }
  header .hamburger span {
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: 0.3s;
  }
  header .hamburger span:nth-child(1) {
    top: 8px;
  }
  header .hamburger span:nth-child(2) {
    top: 16px;
  }
  header .hamburger.active span {
    background: var(--color-text);
    transform-origin: center;
  }
  header .hamburger.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  header .hamburger.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }
  header .header-sp-nav {
    display: block;
  }
  header .header-sp-nav .header-sp-nav__info {
    text-align: center;
    font-weight: 700;
  }
  header .header-sp-nav .header-sp-nav__button {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  header .header-sp-nav .header-sp-nav__button > div {
    width: calc((100% - 0.65rem) / 2);
  }
  header .header-sp-nav .header-sp-nav__button > div .btn01 {
    width: 100%;
    font-family: var(--font-family-gothic);
  }
  header .header-sp-nav .gnav {
    position: absolute;
    top: var(--header-height-sp);
    left: 0;
    width: 100%;
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    z-index: 1002;
    background: #fff;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.3s;
    padding: 20px 5% 2rem;
    gap: 1.2rem;
  }
  header .header-sp-nav .gnav.open {
    transform: translateX(0);
    opacity: 1;
  }
  header .header-sp-nav .gnav .gnav--menu {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    width: 80%;
  }
  header .header-sp-nav .gnav .gnav--menu li {
    border-bottom: 1px solid var(--color-sub04);
    width: 100%;
    padding: 0.7rem 0;
    text-align: center;
  }
  header .header-sp-nav .gnav .gnav--menu li a {
    font-weight: 700;
    font-size: 1rem;
  }
}

/* FOOTER */
footer .sp__nav {
  display: none;
}
@media screen and (max-width: 991px) {
  footer .sp__nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    z-index: 999;
  }
  footer .sp__nav .sp__nav__btn {
    border: 1px solid var(--color-sub04);
    color: #fff;
    background-color: var(--color-sub04);
    height: 100%;
    position: relative;
  }
  footer .sp__nav .sp__nav__btn a {
    width: 100%;
    height: 100%;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    flex-direction: column;
  }
  footer .sp__nav .sp__nav__btn.web {
    width: 56%;
  }
  footer .sp__nav .sp__nav__btn.web .uketsuke {
    position: absolute;
    left: 50%;
    top: -12px;
    background: #fff;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0 35px;
    transform: translateX(-50%);
    border-radius: 20px;
    text-align: center;
    white-space: nowrap;
    font-size: 0.875rem;
  }
  footer .sp__nav .sp__nav__btn.web a {
    padding-top: 6px;
    font-size: 1rem;
  }
  footer .sp__nav .sp__nav__btn.phone {
    width: 22%;
    background: #fff;
    color: var(--color-primary);
    border-color: var(--color-primary);
  }
  footer .sp__nav .sp__nav__btn.line {
    width: 22%;
    background: #fff;
    color: var(--color-line);
    border-color: var(--color-line);
  }
}
footer .footer__nav {
  padding: 3.75rem 0;
  background: url("images/bg_footer.webp") center/cover no-repeat;
}
footer .footer__nav nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
  flex-wrap: wrap;
}
footer .footer__nav nav ul li a {
  font-weight: 600;
  transition: 0.3s;
  padding: 5px 20px;
  text-decoration: underline;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .footer__logo {
  text-align: center;
  padding: 3.5rem 0;
}
footer .footer__logo img {
  max-width: 242px;
  margin: 0 auto;
}
footer .copyright {
  padding: 0 0 3.7rem;
  text-align: center;
  font-size: clamp(0.688rem, 0.619rem + 0.34vw, 0.875rem);
}
@media screen and (max-width: 767px) {
  footer .footer__nav {
    padding: 2rem 0;
  }
  footer .footer__nav nav ul {
    gap: 0;
  }
  footer .footer__nav nav ul li {
    width: 50%;
  }
  footer .footer__nav nav ul li:last-child {
    width: 100%;
  }
  footer .footer__nav nav ul li a {
    padding: 10px 5px;
  }
  footer .footer__logo {
    padding: 2rem 0;
  }
}

/* PAGE */
.page-title {
  padding: 100px 0;
  background-color: var(--color-primary);
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-title h1 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-title {
    padding: 40px 0;
  }
}

.breadcrumb {
  padding: 0.5rem 0;
  margin-bottom: 1.8rem;
  font-size: 0.8rem;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 各ボックスに時間差をつける */
.delay-0 {
  transition-delay: 0s;
}

.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.6s;
}

.delay-3 {
  transition-delay: 0.9s;
}/*# sourceMappingURL=style.css.map */