@charset "utf-8";
/*
theme Name: Avellino
Description: original theme
*/

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cormorant+Garamond&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');

/* 769pxより大きい画面（タブレット・PC） */
@media only screen and (min-width: 769px) { 
.sp {
display: none;
 }
.pc {
display: block;
 }
}

/* 768pxより小さい画面（スマホ）*/
@media only screen and (max-width: 768px) { 
.sp {
display: block;
 }
.pc {
display: none;
 }
}

:root {
  --base-color-bg: #f5f5f5;
  --main-color: #766042;
  --primary-color: #b9ae84;
  --secondary-color: #ab8859;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  color: #000;
  background: var(--base-color-bg);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
  letter-spacing: .1em;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

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

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

img,
iframe {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: .8;
}

p {
  margin: 0;
}

dl {
  margin: 0;
}
dd {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.container {
  width: min(100% - 50px, 1340px);
  margin-inline: auto;
}
.inner {
  max-width: 1120px;
  margin-inline: auto;
}

/* font-family: 'Alex Brush', cursive; */
/* font-family: 'Cormorant Garamond', serif; */

.btn {
  font-weight: 500;
  padding: 16px 20px;
  background: #eee;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.primary-btn {
  background: var(--primary-color);
  color: #fff;
}
.secondary-btn {
  background: #d57c48;
  color: #fff;
}
.third-btn {
  background: #a4c455;
  color: #fff;
}
.chat-icon {
  display: block;
  width: 23px;
  height: 22px;
  background: url(images/chat-icon.svg) no-repeat center / contain;
}
.calender-icon {
  display: block;
  width: 21px;
  height: 21px;
  background: url(images/calender-icon.svg) no-repeat center / contain;
}
.instagram-icon {
  display: block;
  width: 30px;
  height: 30px;
  background: url(images/instagram-icon.svg) no-repeat center / contain;
}
@media (max-width:599px) {
  .instagram-icon {
    width: 24px;
    height: 24px;
  }
}

@media (min-width:1200px) {
  .lg-hidden {
    display: none;
  }
}


/* Header
---------------------------------------------------------- */
#header {
  padding: 15px 20px;
}
.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.logo {
  max-width: 160px;
}
.logo img {
  display: block;
}
.logo-text {
  max-width: 90px;
}
.shop_info {
  font-size: 12px;
  color: var(--main-color);
  font-weight: 600;
  margin-left: 10px;
}
/* Nav */
.nav-box {
  margin-left: auto;
  display: flex;
  align-items: center;
}
#menu-header-menu {
  display: flex;
  gap: 30px;
}
#menu-header-menu li {
  font-size: 17px;
}
#menu-header-menu li a {
  color: var(--main-color);
  font-weight: 500;
}
.header-btn {
  display: flex;
  gap: 5px;
  margin-left: 30px;
}
.instagram_link {
  align-self: center;
  margin-left: 16px;
}
#sp-nav {
  display: none;
}
@media (max-width:1969px) {
  #menu-header-menu {
    gap: 20px;
  }
  #menu-header-menu li,
  .header-btn {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1359px) {
  .header-btn .btn-text {
    display: none;
  }
}
@media (max-width:1199px) {
  #sp-nav {
    position: relative;
    width: 30px;
    height: 20px;
    display: inline-block;
    margin: auto 0 auto auto;
    cursor: pointer;
    z-index: 6;
    margin-left: 16px;
  }
  #sp-nav span {
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--main-color);
    border-radius: 2px;
    display: block;
  }
  #sp-nav span:nth-of-type(2) {
    width: 22px;
    bottom: 9px;
  }
  #sp-nav span:nth-of-type(3) {
    width: 15px;
    bottom: 0;
  }
  #sp-nav.js-active {
    position: fixed;
    top: 20px;
    right: 10px;
  }
  #sp-nav.js-active span:nth-of-type(1) {
    transform: rotate(-45deg);
    bottom: 10px;
    width: 30px;
  }
  #sp-nav.js-active span:nth-of-type(2) {
    display: none;
  }
  #sp-nav.js-active span:nth-of-type(3) {
    transform: rotate(45deg);
    bottom: 10px;
    width: 30px;
  }
  #menu-header-menu {
    display: none;
  }
  .header-box.js-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--base-color-bg);
    z-index: 5;
    display: grid;
    place-items: center;
    overflow-y: scroll;
    padding: 40px 15px;
  }
  .js-active .header-inner {
    flex-direction: column;
  }
  .js-active .logo {
    order: 2;
    padding: 30px 0 0 0;
  }
  .js-active .shop_info {
    order: 3;
    margin: 0;
  }
  .js-active .nav-box {
    order: 1;
    margin: 0 auto;
    flex-direction: column;
  }
  .js-active #menu-header-menu {
    display: block;
  }
  #menu-header-menu li {
    font-size: 22px;
    padding: 1em 2em;
    text-align: center;
    border-bottom: solid 1px var(--secondary-color);
  }
  .js-active .header-btn {
    position: static;
    padding: 20px 0 0 0;
    margin: 0;
  }
  .js-active .header-btn .btn {
    border-radius: 4px;
  }
}
@media (max-width:1029px) {
  .header-btn {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    gap: 0;
    z-index: 3;
    flex-wrap: wrap;
  }
  .header-btn .btn-box {
    flex-grow: 1;
  }
  .header-btn .btn {
    border-radius: 0;
  }
}
@media (max-width:767px) {
  .shop_info {
    display: none;
  }
  .home .logo,
  .logo {
    margin-bottom: 0;
  }
  .js-active .shop_info {
    display: block;
  }
}
@media (max-width:599px) {
  #header {
    padding: 6px 10px;
  }
  .header-inner {
    gap: 15px;
  }
  .home .logo,
  .logo {
    max-width: 100px;
    margin-bottom: 0;
  }
  .logo-text {
    max-width: 70px;
  }
  .home .js-active .logo,
  .js-active .logo {
    max-width: 160px;
  }
}

/* MV
---------------------------------------------------------- */
.mv-box {
  position: relative;
  height: 100vh;
}
#mv {
  height: 86vh;
}
#mv-bg {
  width: 70%;
  height: 80vh;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.mv-bg__img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mv-text {
  width: 30%;
  padding: 40px 0 0 0;
}
.mv-text #mv-catch {
  display: block;
  width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#mv-bg-text {
  width: 40%;
  position: absolute;
  left: 20px;
  bottom: 80px;
}
@media (max-width:1290px) {
  .mv-text {
    width: 32%;
  }
}
@media (max-width:1029px) {
  .mv-box,
  #mv {
    height: auto;
  }
  #mv {
    position: relative;
  }
  #mv-bg {
    display: block;
    position: relative;
    width: 100%;
    height: 70vh;
    left: 0;
  }
  .mv-bg__img {
    object-position: center;
  }
  .mv-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 0 10px 0;
    display: grid;
    align-items: center;
  }
  .mv-text,
  .mv-text #mv-catch {
    width: min(100% - 10px, 600px);
    margin: 0 auto;
  }
  #mv-bg-text {
    display: none;
  }
}
@media (min-width:1030px) {
  .mv-text__img {
    width: 100%;
    height: 70vh;
    object-fit: contain;
  }
}

/* Topics
---------------------------------------------------------- */
#topics {
  z-index: 2;
  background: rgb(126 108 85 / 88%);
  width: 50%;
  padding: 0 15px 15px 15px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.topics-title {
	font-family: 'Alex Brush', cursive;
  font-size: 56px;
  font-weight: 300;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topics-title::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background: #fff;
}
.topics-title::after {
  content: "";
  display: inline-block;
  flex: 1;
  height: 1px;
  background: #fff;
}
.topics-box {
  padding: 40px 25px 25px 25px;
  border: solid 1px #fff;
  border-top: 0;
  margin-top: -42px;
}
.topics-box p {
  font-size: 14px;
  color: #fff;
}
.topics-box p:not(:last-of-type) {
  margin-bottom: 1em;
}
@media (max-width:1029px) {
  #topics {
    width: 100%;
    margin: 0;
    position: static;
  }
}

/* Footer
---------------------------------------------------------- */
#footer {
  background-color: #E8E6DF ;
  padding: 18px 15px;
  margin-top: auto;
}
.copyright {
  font-size: 12px;
  text-align: center;
  color: var(--main-color);
}
@media (max-width:1029px) {
  #footer {
    padding-bottom: 55px;
  }
}

/* Home
---------------------------------------------------------- */
.section {
  padding: 80px 0;
}
.section img {
  display: block;
}
.section-title,
.page-section h2.section-title {
  font-family: 'Alex Brush';
  font-size: max(40px, min(8vw,70px) );
  color: var(--main-color);
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  white-space: nowrap;
}
.section-title::before,
.section-title::after {
  content: "";
  display: inline-block;
  width: 160px;
  height: 1px;
  background: var(--main-color);
}
.section-title__ja {
  text-align: center;
  font-size: 18px;
  margin-top: -2em;
  margin-bottom: 40px;
  color: var(--main-color);
}
@media (max-width:599px) {
  .section {
    padding: 50px 0;
  }
  .section-title .slash {
    display: block;
    text-align: center;
  }
  .section-title > div {
    line-height: 1;
  }
  .section-title__ja {
    font-size: 14px;
  }
}
@media (min-width:600px) {
  .section-title .slash::before {
    content: "/";
    display: inline-block;
    margin: 0 5px;
  }
}

/* concept */
#concept {
  position: relative;
}
.concept-box {
  display: flex;
}
.concept-img,
.concept-text {
  flex: 1;
  display: grid;
  place-items: center;
}
.concept-text__inner {
  width: min(100% - 40px, 460px);
}
.concept-text__inner p {
  line-height: 1.6;
  font-size: max(14px, min(3vw,16px) );
		color: #4b3c28;
}
.concept-text__inner p:not(:last-of-type) {
  margin-bottom: 1.5em;
		color: #4b3c28;
}
.concept-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  letter-spacing: 0.1em;
  color: #766042;
}
@media (max-width:839px) {
  #concept::after {
    content: "";
    width: 100%;
    height: 70%;
    background: url(images/bg.jpg) repeat center / contain;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .concept-box {
    flex-direction: column;
    gap: 40px;
  }
  .concept-text__inner {
    width: 100%;
  }
}

/* price */
#price-menu {
  background: url(images/menu-bg.jpg) no-repeat center bottom / cover;
}
.price-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  background: #fff;
  box-shadow: 0 0 0 10px #fff;
}
.price-onebox {
  background: #fff;
}
.menu-box {
  padding: 20px 0;
  border: solid 1px var(--main-color);
  box-shadow: 0 0 0 8px #fff;
}
.menu-box:nth-of-type(2) {
  background: #f6f4f3;
  box-shadow: 0 0 0 8px #f6f4f3;
}
.menu-box__inner {
  width: min(100% - 40px, 550px);
  margin: 0 auto;
}
.menu-onebox__inner {
  width: min(100% - 40px, 600px);
  margin: 0 auto;
}
.menu-title {
  font-size: max(24px, min(3vw,32px) );
  font-weight: 500;
  margin: 0 0 15px 0;
  text-align: center;
		color: #766042;
}
.menu-title::before {
  content: "";
  display: block;
  width: 56px;
  height: 27px;
  background: url(images/menu-icon.svg) no-repeat center / contain;
  margin: 0 auto;
}
.menu-list {
  margin-bottom: 20px;
		color: #4b3c28;
}
.menu-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  letter-spacing: 0;
  font-size: max(18px, min(3vw,20px) );
  font-weight: 500;
  padding: 15px 0;
  border-bottom: solid 1px #ccc;
}
.submenu-list__item {
  display: flex;
  flex-wrap: wrap;
  font-size: max(14px, min(3vw,16px) );
  font-weight: 500;
  letter-spacing: 0;
  padding: 15px 0;
  border-bottom: solid 1px #ccc;
}
.carrying-menu .menu-list__price {
  margin-left: auto;
}
.menu-list__remarks {
  margin-left: auto;
  font-size: max(14px, min(3vw,16px) );
  font-weight: 500;
}
.menu-list__note {
  font-size: max(12px, min(3vw,14px) );
  letter-spacing: 0;
  text-indent: -1em;
  margin-left: 1em;
		color: #4b3c28;
}
@media (max-width:839px) {
  .price-box {
    grid-template-columns: repeat(1, 1fr); 
  }
  .extension-item {
    display: flex;
    width: 100%;
  }
  .extension-item .menu-list__price {
    margin-left: auto;
  }
}
@media (min-width:840px) {
  .extension-item .menu-list__price::before {
    content: "/";
    display: inline-block;
    margin: 0 5px;
  }
}
.price-content {
  padding: 20px 0;
}
.price-content .wp-block-media-text__content {
  padding: 15px 8%;
}


.case a {
background-color: #766042;
    border: 1px solid transparent;
    border-radius: 25px;
    padding: 10px 15px;
    color: #fff;
}
.case a:hover {
	background-color: #c39e6b;
}


/* access */
.hours {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 10px 0;
  width: max-content;
  margin: 0 auto 35px auto;
  font-size: max(14px, min(3vw,16px) );
}
.hours-label {
  font-weight: 500;
}
.access-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.access-map {
  width: 100%;
  height: 480px;
}
.iframe-map {
  width: 100%;
  height: 100%;
  display: block;
  filter: sepia(20%);
}
.access-text {
  display: grid;
  place-items: center;
}
.access-text__inner {
  width: min(100% - 40px, 435px);
  margin: 0 auto;
}
.access-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
	color: #766042;
}
.access-title::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(images/map-icon.svg) no-repeat center / contain;
  margin-right: 10px;
}
.access-text__inner p {
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 500;
	color: #4b3c28;
}
.access-text__inner p:not(:last-of-type) {
  margin-bottom: 1.5em;
	color: #4b3c28;
}
@media (max-width:839px) {
  .access-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px 0;
    margin: 0 -25px;
  }
}
@media (max-width:599px) {
  .access-map {
    width: 100%;
    height: 300px;
  }
}
.access-map-box {
  padding: 20px 0;
}

/* column */
#column {
  background: url(images/column-bg.jpg) no-repeat center / cover;
}
.column-box {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.column-slide__item {
  background: #fff;
  box-shadow: 0px 20px 20px 5px rgb(228 169 89 / 15%);
  margin-bottom: 30px;
}
.column-slide__link {
  color: #000;
}
.column-slid__header {
  display: flex;
  padding: 18px 0;
  min-height: 90px;
}
@media (max-width:599px) {
  .column-slid__header {
    min-height: 84px;
  }
}
.column-slide__title {
  font-size: max(16px, min(3vw,18px) );
  flex: 1;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 0 25px;
	color: #766042;
}
.column-term {
  font-size: max(12px, min(3vw,14px) );
  display: grid;
  place-items: center;
  border-left: solid 1px #e8e8e8;
  padding: 0 15px;
}
.column-term.lady {
  color: #d9a79b;
  font-weight: 500;
}
.column-term.gentleman {
  color: #766042;
  font-weight: 500;
}
.column-slid__thumbnail {
  aspect-ratio: 555/260;
  margin: 0;
}
.column-slid__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column-slid__text {
  padding: 20px 25px;
}
.column-slid__text p {
  font-size: 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
	color: #4b3c28;
}
.slick-track {
  display: flex;
  gap: 10px;
}
.slick-slide {
  height: auto !important;
}

/* gallery */

/* message */
#message {
  background: url(images/bg.jpg) repeat center / cover;
}
.message-box {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1190px;
  margin-inline: auto;
}
.message-box.reverse {
  flex-direction: row-reverse;
}
.message-box:not(:last-of-type) {
  margin-bottom: 20px;
}
.message-img {
  flex: 1;
}
.message-text {
  flex: 1;
  padding: 0 45px;
}
.message-text p {
  font-size: max(14px, min(1vw,16px) );
  line-height: 1.8;
  font-weight: 500;
	color: #4b3c28;
}
.message-text p:not(:last-of-type) {
  margin-bottom: 1.5em;
}
@media (max-width:999px) {
  .message-box,
  .message-box.reverse {
    flex-direction: column;
    max-width: 600px;
    margin-inline: auto;
  }
  .message-box:not(:last-of-type) {
    margin-bottom: 60px;
  }
  .message-text {
    padding: 0;
  }
}

/* Page
---------------------------------------------------------- */
/* パンくず */
#bread-bar {
  background-color: var(--primary-color);
  padding: 6px 0;
}
#breadcrumb ul {
  display: flex;
  white-space: nowrap;
}
#breadcrumb ul li {
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
}
#breadcrumb ul li a {
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
}
#breadcrumb ul li:last-of-type {
  overflow: hidden;
  text-overflow: ellipsis;
}
#breadcrumb ul li:not(:last-of-type)::after {
  content: "";
  display: block;
  line-height: 1;
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin: 0 5px;
}

/* 下層ページ共通 */
.page-header {
  background: #e9e7de;
  margin: 0 calc(50% - 50vw);
  padding: 35px calc(50vw - 50%);
}
.page-title {
  font-size: max(20px, min(3vw,40px) );
  font-weight: 300;
  color: var(--main-color);
  text-align: center;
}
.page-content {
  padding: 40px 0;
}
.page-content p:not(.section-title__ja):not(.uagb-faq-content) {
  margin-bottom: 1em;
}
.page-section h2:not(.column-list__title):not(.section-title) {
  font-size: max(22px, min(3vw,36px) );
  font-weight: 500;
  line-height: 1.3;
  color: var(--main-color);
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 20px 0;
}
.page-section h2:not(:section-title)::after {
  content: "";
  display: inline-block;
  flex: 1;
  height: 1px;
  background: var(--main-color);
}
.page-section-block {
  padding: 20px 0 0 0;
}
@media (max-width:871px) {
  .block-reverse {
    flex-direction: column-reverse;
  }
}

/* price */
.page-content #price-menu {
  margin: 0 calc(50% - 50vw) 40px calc(50% - 50vw);
}

/* access */
.hours-box {
  padding: 20px 0;
  border-top: solid 1px var(--primary-color);
  border-bottom: solid 1px var(--primary-color);
  margin-bottom: 30px;
}
.hours-box .hours {
  margin-bottom: 0;
}


/* コラム
---------------------------------------------------------- */
/* 一覧 */
.column-list__item {
  border-bottom: solid 1px var(--primary-color);
}
.column-list__link {
  display: grid;
  grid-template-columns: 44% 1fr;
  align-items: center;
  gap: 20px 50px;
  padding: 35px 0;
}
.column-list__thumbnail {
  aspect-ratio: 440/330;
  margin: 0;
}
.column-list__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column-list__item .column-term {
  display: inline-block;
  background: #ccc;
  color: #fff;
  font-size: 14px;
  margin-bottom: 15px;
}
.column-list__item .column-term.lady {
  background: #d9a79b;
}
.column-list__item .column-term.gentleman {
  background: var(--secondary-color);
}
.column-list__item .column-term.others {
  background: #4f4f4f;
}
.column-list__item .column-term.common {
  background: #81c1bf;
}
.column-list__title {
  font-size: max(22px, min(3vw,28px) );
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}
.column-list__excerpt {
  margin: 0;
  font-size: max(14px, min(3vw,16px) );
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (max-width:739px) {
  .column-list__link {
    grid-template-columns: 1fr;
  }
}

.pagination {
  padding: 35px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* コラム詳細 */
.post-content {
  padding: 25px 0 0 0;
}
.post-content .column-term {
  display: inline-block;
  background: #ccc;
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}
.post-content .column-term.lady {
  background: #d9a79b;
}
.post-content .column-term.gentleman {
  background: var(--secondary-color);
}
.post-content .column-term.others {
  background: #4f4f4f;
}
.post-content .column-term.common {
  background: #81c1bf;
}
.article-title {
  font-size: max(30px, min(3vw,40px) );
  font-weight: 500;
  line-height: 1.3;
  color: var(--main-color);
  padding: 0 0 20px 0;
  border-bottom: solid 4px var(--primary-color);
}
.article-content {
  padding: 20px 0 0 0;
}
.article-content p {
  margin-bottom: 1.5em;
}
.article-content h2 {
  font-size: max(27px, min(3vw,36px) );
  font-weight: 500;
  line-height: 1.3;
  color: var(--main-color);
  padding: 10px 0 10px 0;
  margin-bottom: 15px;
  border-bottom: solid 1px var(--primary-color);
}
.article-content h3 {
  font-size: max(24px, min(3vw,28px) );
  font-weight: 500;
  line-height: 1.3;
  color: var(--main-color);
  margin-bottom: 15px;
  border-left: solid 4px var(--main-color);
  padding: 0 0 0 10px;
}
.article-content h4 {
  font-size: max(20px, min(3vw,24px) );
  font-weight: 500;
  line-height: 1.3;
  color: var(--main-color);
  margin-bottom: 15px;
}

/* 検索フォーム */
.searchform-box {
  max-width: 340px;
  width: 100%;
  margin-left: auto;
  padding-right: 6px;
  border-bottom: solid 1px var(--primary-color);
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 24px;
}
#searchform input[type=text] {
  font-size: 16px;
  -webkit-appearance: none;
  border: 0;
  background: none;
  padding: 12px 6px;
  outline: 0;
  width: 100%;
}
#searchform input[type=text]:focus {
  border: 0;
}
#searchsubmit {
  font-size: 16px;
  -webkit-appearance: none;
  border: 0;
  background: none;
  outline: 0;
  background: url("images/loupe-icon.svg") no-repeat center / contain;
  border: none;
  min-width: 24px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  text-indent: -9999px;
  margin-right: 6px;
}

/* Faq */
.wp-block-uagb-faq {
  border-top: solid 1px var(--primary-color);
  margin-top: 40px;
}
.uagb-question {
  font-size: max(18px, min(3vw,24px) );
  font-weight: 500;
  margin: 0;
  display: flex;
  gap: 15px;
}
.uagb-question::before {
  content: "";
  display: block;
  min-width: 33px;
  height: 33px;
  background: url(images/q-icon.png) no-repeat center / contain;
}
.uagb-faq-content {
  background: #f0efec;
}
@media (max-width:599px) {
  .uagb-question::before {
    min-width: 22px;
    height: 22px;
    margin: 4px 0 0 0;
  }
}

/* 施術の流れ */
.page-content {
  counter-reset: number 0;  
}
.flow-box:first-of-type {
  margin-top: 40px;
}
.flow-box h4 {
  font-size: max(24px, min(3vw,28px) );
  font-weight: 500;
  margin: 0;
}
.flow-box h4::before {
  counter-increment: number 1;
  content: "0" counter(number) " ";
  font-family: 'Cormorant Garamond', serif;
  font-size: max(60px, min(4vw,80px) );
  color: var(--primary-color);
}
.flow-box figure {
  margin: 0;
}
@media (max-width:781px) {
  .flow-box {
    flex-direction: column-reverse;
  }
  .flow-box + div {
    margin: 0;
  }
}

/* ピックアップメニュー */
#pickup {
  background: #fff;
  margin: 0 0 40px 0;
}
.pickup-box {
  padding: 20px;
  border: solid 1px var(--main-color);
  box-shadow: 0 0 0 8px #fff;
	background: #fff;
}
.pickup-menu {
  max-width: 800px;
  margin: 0 auto;
}
.pickup-title {
  text-align: center;
}
.pickup-box .menu-list__price {
  margin-left: auto;
}
.menu-subtitle {
  display: grid;
  justify-items: center;
  color: var(--main-color);
  font-size: max(16px, min(3vw,20px) );
  margin: 25px 0 15px 0;
}
.pickup-box p {
  font-size: max(14px, min(3vw,16px) );
}
.menu-gridbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px 0;
  align-items: center;
}
.menu-gridbox .img-title {
  text-align: center;
  font-size: 20px;
  margin: 0 0 10px 0;
}
@media (max-width:599px) {
  .menu-gridbox {
    grid-template-columns: repeat(1, 1fr);
  }
}


/* Footer追加　20240224
---------------------------------------------------------- */
#footer {
    background-color: #E8E6DF;
    padding: 0;
    margin: 0;
}

.footer-text-wrapper{
	display: flex;
	margin: 60px auto ;
	color: #4B3C28;
    font-size: max(14px, min(1vw, 16px));
    line-height: 1.8;
    font-weight: 500;
	justify-content: center;
}

.footer-text-wrapper .footer-text1{
	width: 50%;
	max-width: 540px;
	text-align: left;
}

.footer-text-wrapper .logo{
	margin-bottom: 25px;
}

.footer-text-wrapper .footer-info{
    font-size: max(14px, min(1vw, 16px));
    line-height: 2;
    font-weight: 500;
}

.footer-text-wrapper .footer-info address{
    font-style: normal;
}

.footer-text-wrapper .footer-nav-box{
	width: 100%;
	margin: 50px 0 20px;
}

.footer-text-wrapper .footer-nav-box .footer-nav ul.menu{
	display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.footer-text-wrapper .footer-nav-box .footer-nav ul.menu li{
	width: 23%;
	margin: 5px 1%;
	font-size: max(14px, min(1vw, 16px));
	text-align: center;
}

.footer-text-wrapper .footer-nav-box .footer-nav ul.menu li a{
    font-weight: 500;
	color: #4B3C28;
}

.footer-text-wrapper .footer-cv-wrapper .footer-title{
	border-bottom: 1px solid #4b3c28;
	text-align: right;
    font-size: max(14px, min(1vw, 16px));
    font-weight: 500;
    line-height: 2.5em;
    margin: 0 0 20px;
}

.footer-text-wrapper .footer-cv-wrapper ul.footer-cv{
	display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-text-wrapper .footer-cv-wrapper ul.footer-cv li{
	margin: 0 0 0 60px;
}

@media (max-width:1118px) {
.footer-text-wrapper .footer-cv-wrapper ul.footer-cv li{
	margin: 0 0 0 40px;
}
}

@media (max-width:998px) {
.footer-text-wrapper .footer-cv-wrapper ul.footer-cv li{
	margin: 0 0 0 20px;
}
}

@media (max-width:887px) {
.footer-text-wrapper .footer-cv-wrapper ul.footer-cv li{
	margin: 0 0 0 10px;
}
}

@media (max-width:818px) {
.footer-text-wrapper .footer-cv-wrapper ul.footer-cv li{
	margin: 0 auto;
}
}

.footer-text-wrapper .footer-cv-wrapper ul.footer-cv li:last-child{

}

.footer-text-wrapper .footer-cv-wrapper ul.footer-cv li img{
	margin: 0 auto;
}

.footer-text-wrapper .footer-cv-wrapper ul.footer-cv li:last-child img{
	margin: 0 auto;
}

.copyright{
	text-align: center;
	background-color: #707070;
	width: 100%;
	color: #fff;
    padding: 10px 0;
}

@media only screen and (max-width: 768px) {
.footer-text-wrapper{
    display: block;
    margin: 40px auto 30px;		
}

.footer-text-wrapper .footer-text1{
	width: 100%;	
}

.footer-text-wrapper .logo{
    max-width: 180px;
    margin: 0 auto 20px;
    width: 96%;
}

.footer-text-wrapper .footer-nav-box .footer-nav ul.menu li {
    width: 48%;
	margin: 10px 1%;
}

.footer-text-wrapper .footer-cv-wrapper .footer-title {
    text-align: center;
}


.footer-text-wrapper .footer-cv-wrapper ul.footer-cv li{
	width: 50%;
    text-align: center;
}

.footer-text-wrapper .footer-cv-wrapper ul.footer-cv li:last-child{
	width: 100%;
    margin-top: 20px;
}
		
.footer-text-wrapper .footer-cv-wrapper ul.footer-cv li img {
    margin: 0 auto;
    max-width: 82px;
}

.footer-text-wrapper .footer-cv-wrapper ul.footer-cv li:last-child img {
    max-width: 184px;
}

.copyright{
    font-size: 8px;
    padding: 10px 5px;
}
}

@media (max-width: 1029px){ 
.header-btn {
    display: none;
}
}

/* 統合改修追加　20240515
---------------------------------------------------------- */
body{
	background-image: url(images/top-back.jpg);
    background-size: cover;
    background-position: top left;
    height: 100vh;	
	
}
.mv-box-top{
	color: #765F42;
}

.mv-box-top-inner{
	width: 100%;
	max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.main-title{
	font-size: max(18px, min(3vw,20px) );
	margin: 18vh auto 10vh;
    font-weight: 600;
    line-height: 1.3;
}

.main-title span{
	font-size: max(40px, min(8vw,70px) );
}

.col2-wrapper{
	display: flex;
    justify-content: space-around;
}

.col2-wrapper .col2{
	width: 46%;
}

.pickup-box p::after{
	content: "";
    display: inline-block;
	border-bottom: 1px solid;
	width: 100%;
}

.menu-title{
	font-family: 'Alex Brush';
	font-size: max(40px, min(8vw,50px) );
}

.logo-image{
	margin: 10px auto;
	text-align: center;
    height: 107px;
    display: block;
}

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media only screen and (max-width: 768px) {
body{
	background-image: url(images/top-back-sp.jpg);
    background-position: top center;
    height: 100vh;	
}
.mv-box-top{
	height: auto;
}
	
.mv-box-top-inner{
	padding: 0 10px;
}
	
.main-title {
    margin: 60px auto;
}

.col2-wrapper{
	display: block;
	padding-bottom: 20px;
}

.col2-wrapper .col2{
    width: 90%;
    margin: 0 auto 40px;
}
	
.section-title__ja {
    margin-bottom: 25px;
}
.logo-image{
    height: 80px;
}
.logo-image img{
    height: 100%;
}
}