@charset "UTF-8";
@import url(all.css);
/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #4a5553;
  --color-fontlightgray: #a7b2b1;
  --color-fontgray: #878f8e;
  --color-white: #ffffff;
  --color-whitegray: #f4f6f6;
  --color-green: #20b2aa;
  /*カレントカラー*/
  --color-current: #20b2aa;
  /*テキストリンクカラー*/
  --color-textlink:#20b2aa;
  /*必須ボタンカラー*/
  --color-required: #20b2aa;
  /*任意ボタンカラー*/
  --color-optional: #20b2aa;
  /*ラジオボタンカラー*/
  --color-radio: #20b2aa;
  /*チェックボタンカラー*/
  --color-check: #20b2aa;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Nothing You Could Do", cursive;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.6rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 1.875;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.1em;
}

/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #4a5553;
  --color-fontlightgray: #a7b2b1;
  --color-fontgray: #878f8e;
  --color-white: #ffffff;
  --color-whitegray: #f4f6f6;
  --color-green: #20b2aa;
  /*カレントカラー*/
  --color-current: #20b2aa;
  /*テキストリンクカラー*/
  --color-textlink:#20b2aa;
  /*必須ボタンカラー*/
  --color-required: #20b2aa;
  /*任意ボタンカラー*/
  --color-optional: #20b2aa;
  /*ラジオボタンカラー*/
  --color-radio: #20b2aa;
  /*チェックボタンカラー*/
  --color-check: #20b2aa;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Nothing You Could Do", cursive;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.6rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 1.875;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.1em;
}

/*opacity含めたカラー指定あればここで定義*/
/*========================
    default
========================*/
html {
  font-size: 62.5%;
}

a[href^="tel:"] {
  pointer-events: none;
}

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

.wrapper {
  min-width: 1280px;
  max-width: 1920px;
  margin-inline: auto;
}

.container {
  /*ヘッダー追従の時はここにmax-width:1920px;,overflow-x:hidden;をかける*/
}

.com-inbox {
  width: 1080px;
}

/*パンくずリスト*/
.breadcrumb {
  padding-block: 2.2rem;
}
.breadcrumb__list {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  gap: 1em;
}
.breadcrumb__item {
  display: flex;
  line-height: 1;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
.breadcrumb__item::after {
  content: "＞";
  margin-left: 1em;
  pointer-events: none;
}
.breadcrumb__item:last-child {
  display: block;
  max-width: 23rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb__item:last-child::after {
  display: none;
}

/*==============================
    各種ホバー処理
==============================*/
/*ロゴ*/
.logo a:hover {
  transition: opacity 0.3s;
}
.logo a:hover:hover {
  opacity: 0.5;
}

/*パンくずリスト*/
.breadcrumb__item a {
  transition: all 0.3s;
}
.breadcrumb__item a:hover {
  transition: opacity 0.3s;
}
.breadcrumb__item a:hover:hover {
  opacity: 0.5;
}

/*ヘッダーナビ*/
.gnav__item a {
  transition: all 0.3s;
}
.gnav__item a:hover {
  transition: opacity 0.3s;
}
.gnav__item a:hover:hover {
  opacity: 0.5;
}

.header .sns__item a {
  transition: all 0.3s;
}
.header .sns__item a:hover {
  opacity: 0.5;
}

/*各種ボタン*/
.com-btn {
  transition: all 0.3s;
}
.com-btn::after {
  transition: all 0.3s;
}
.com-btn:hover {
  opacity: 0.5;
}
.com-btn:hover::after {
  transform: translateX(1rem);
}

.booking-btn,
.line-btn,
.ig-btn {
  transition: all 0.3s;
}
.booking-btn::after,
.line-btn::after,
.ig-btn::after {
  transition: all 0.3s;
}
.booking-btn:hover,
.line-btn:hover,
.ig-btn:hover {
  background-color: var(--color-font);
  color: var(--color-white);
}
.booking-btn:hover::after,
.line-btn:hover::after,
.ig-btn:hover::after {
  background: url(../img/common/icon-link_w.png) top left/contain no-repeat;
}

/*テキストリンク*/
.com-textlink {
  transition: all 0.3s;
}
.com-textlink:hover {
  transition: opacity 0.3s;
}
.com-textlink:hover:hover {
  opacity: 0.5;
}

/*カフェ日記*/
.cafe-diary__item a {
  transition: all 0.3s;
}
.cafe-diary__item a:hover {
  opacity: 0.5;
}

.contact .com-btn:hover {
  opacity: 1;
  background-color: var(--color-font);
  color: var(--color-white);
}

/*お問い合わせ完了（トップへ戻る）*/
.complete__btn {
  transition: all 0.3s;
}
.complete__btn:hover {
  transition: opacity 0.3s;
}
.complete__btn:hover:hover {
  opacity: 0.5;
}

/*追従ボタン*/
.follow_btn a {
  transition: all 0.3s;
}
.follow_btn a::before {
  transition: all 0.3s;
}
.follow_btn a:hover {
  background-color: var(--color-white);
  color: var(--color-green);
}
.follow_btn a:hover::before {
  background: url(../img/common/icon_calender.png) top left/contain no-repeat;
}

/*フッターナビ*/
.footer-nav__item a {
  transition: all 0.3s;
}
.footer-nav__item a:hover {
  opacity: 0.5;
}
.footer small a:hover {
  opacity: 0.5;
}

/*==============================
    ヘッダー
==============================*/
.header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
}
.header .logo {
  height: clamp(15px, 1.15vw, 22px);
}
.header__inner {
  align-items: flex-start;
  padding: 3rem 4rem 3rem 3rem;
}
.header nav {
  display: flex;
  gap: clamp(30px, 2.34vw, 45px);
}
.header .gnav__list {
  flex-direction: row-reverse;
  gap: clamp(27px, 2.08vw, 40px);
}
.header .gnav__item a {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  line-height: 1;
  font-size: clamp(11px, 0.83vw, 16px);
  letter-spacing: 0.15em;
  padding-right: clamp(7px, 0.52vw, 10px);
  border-right: 1px solid var(--color-fontlightgray);
}
.header .tel-box {
  gap: clamp(9px, 0.68vw, 13px);
}
.header .tel-box .replace {
  width: clamp(143px, 11.2vw, 215px);
}
.header .com-tel {
  font-size: clamp(19px, 1.46vw, 28px);
}
.header .com-tel::before {
  font-size: clamp(14px, 1.09vw, 21px);
}
.header .sns__list {
  margin-top: 2.5rem;
  gap: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/*==============================
    メインビジュアル
==============================*/
.mv__item {
  width: 50%;
}
.mv__title {
  top: clamp(120px, 10.73vw, 206px);
  left: clamp(67px, 5.21vw, 100px);
  gap: clamp(40px, 3.39vw, 65px);
}
.mv__title .main {
  font-size: clamp(23px, 1.77vw, 34px);
}
.mv__title .sub {
  font-size: clamp(12px, 0.94vw, 18px);
}

/*==============================
    サブビジュアル
==============================*/
.sv {
  padding-top: 18.3rem;
}
.sv__title {
  font-size: clamp(23px, 1.77vw, 34px);
}

/*==============================
    共通タイトル
==============================*/
.com-title01 {
  margin-bottom: 5.2rem;
}

/*==============================
    共通ボタン
==============================*/
.booking-btn {
  height: 7.5rem;
}

.line-btn {
  height: 7.5rem;
  width: 36.5rem;
}

.ig-btn {
  width: 50rem;
  height: 12rem;
}

/*==============================
    共通テーブル
==============================*/
/*==============================
    TOP
==============================*/
.top-about {
  overflow: hidden;
}
.top-about::after {
  bottom: max(20.2vw, 250px);
}
.top-about .com-title01 {
  margin-bottom: 4.4rem;
}
.top-about .com-inbox {
  align-items: flex-start;
  gap: 9rem;
}
.top-about__image {
  width: 55.5rem;
  flex-shrink: 0;
  margin-left: -10rem;
}

.top-reason {
  padding-block: 15.5rem 11rem;
}
.top-reason::before {
  height: calc(100% + 20rem);
}
.top-reason::after {
  top: 8.4rem;
  right: calc(50% + 30.7rem);
}
.top-reason .com-title01 {
  margin-bottom: 7rem;
}
.top-reason__item {
  flex-shrink: 0;
  width: 31.1rem;
}

.top-cafe {
  padding-block: 17rem 18.2rem;
}
.top-cafe::before {
  bottom: 13rem;
  left: calc(50% + 33rem);
  width: 11.5625%;
}
.top-cafe::after {
  top: -15.4rem;
  left: calc(50% + 26.2rem);
  width: clamp(290px, 22.66vw, 435px);
}
.top-cafe .com-title01 {
  margin-bottom: 4.6rem;
}
.top-cafe__image {
  margin-left: -10rem;
  width: 57.5rem;
  flex-shrink: 0;
}

.top-link {
  padding-block: 11rem 12rem;
}
.top-link__list {
  align-items: flex-start;
  margin-left: -10rem;
  margin-right: -6.7rem;
}
.top-link__item {
  width: 55.5rem;
}
.top-link__item:last-child {
  margin-top: 9.6rem;
}
.top-link__item a {
  transition: all 0.3s;
}
.top-link__item a:hover {
  opacity: 0.5;
}
.top-link .com-title01 {
  gap: 2rem;
}
.top-link .com-title01 .en {
  font-size: 1.8rem;
}

.top-news {
  padding-block: 14.3rem 12.5rem;
}
.top-news .com-inbox {
  display: flex;
  justify-content: space-between;
}
.top-news .com-title01 {
  margin-bottom: 10.6rem;
}
.top-news .com-news__list {
  width: 80.5rem;
  flex-shrink: 0;
  padding-top: 4.8rem;
}

/*==============================
    共通デザインセクション（冒頭）
==============================*/
.com-section::after {
  bottom: max(20.2vw, 250px);
}
.com-section .com-title01 {
  margin-bottom: 5.2rem;
}
.com-section__wrap {
  align-items: flex-start;
}
.com-section__image {
  width: 50rem;
  flex-shrink: 0;
}

/*==============================
    初めての方へ
==============================*/
.first-reason {
  padding-block: 15.4rem 12.5rem;
}
.first-reason::before {
  height: calc(100% + 20rem);
}

.first-stylist {
  padding-block: 12.5rem;
}
.first-stylist .com-title01 {
  margin-bottom: 6rem;
}
.first-stylist__wrap {
  align-items: flex-start;
}
.first-stylist__image {
  width: 50rem;
  flex-shrink: 0;
}

.first-gallery {
  padding-block: 12.5rem;
}

/*==============================
    カフェサービス
==============================*/
.cafe-menu {
  padding-block: 15.4rem 12.4rem;
}
.cafe-menu::before {
  height: calc(100% + 20rem);
}
.cafe-menu__image {
  flex-shrink: 0;
  width: 52rem;
}
.cafe-menu .cafe-drink__item {
  width: calc((100% - 4rem) / 2);
}

.cafe-diary {
  padding-block: 12.5rem;
}
.cafe-diary__container {
  width: 97.8rem;
}
.cafe-diary .com-title01 {
  margin-bottom: 6rem;
}
.cafe-diary .com-title01 small {
  font-size: 2.8rem;
}
.cafe-diary .com-title01 .ja {
  line-height: 4.6rem;
}

/*==============================
    カフェ日記詳細
==============================*/
.cafe-detail {
  padding-block: 12.5rem;
}
.cafe-detail__container {
  padding-left: 1.5rem;
  box-sizing: content-box;
  width: 97.8rem;
  padding-bottom: 2rem;
}

/*==============================
    メニュー＆料金案内
==============================*/
.menu-section {
  padding-block: 5rem 12.5rem;
}
.menu-section .com-title01 {
  margin-bottom: 4.2rem;
}

/*==============================
    店舗案内
==============================*/
.shop-info {
  padding-top: 15.5rem;
}
.shop-info__wrap {
  display: flex;
  justify-content: space-between;
}
.shop-info .com-table {
  width: 74rem;
}

/*==============================
    お知らせ一覧
==============================*/
.news {
  padding-block: 10rem;
}

/*お知らせ共通部分*/
.com-news__list {
  width: 80rem;
}
.com-news__item a:hover {
  transition: opacity 0.3s;
}
.com-news__item a:hover:hover {
  opacity: 0.5;
}

/*タグリスト(PC)
-----------------------------*/
.tag-select {
  text-align: right;
  margin-bottom: 5rem;
}
.tag-select__box {
  min-width: 24rem;
}
.tag-select__box::after {
  right: 1.8rem;
}
.tag-select__dropdown {
  line-height: 1;
  padding: 12px 48px 12px 12px;
  background-color: var(--color-white);
}

/*==============================
    お知らせ詳細
==============================*/
.news-detail {
  padding-block: 10rem;
}
.news-detail__box {
  padding: 4rem 4rem 6rem 4rem;
}

/*==============================
  お問い合わせ
==============================*/
.contact {
  padding-block: 10rem;
}
.contact .com-table {
  margin-bottom: 3rem;
  table-layout: fixed;
}
.contact .com-table th {
  width: 40%;
}
.contact .com-btn {
  margin-inline: auto;
  margin-top: 5rem;
  width: 30rem;
  height: 6rem;
}
.contact .contact-submits-wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.contact .contact-submits-wrap .com-btn {
  margin-inline: 0;
}

/*==============================
  お問い合わせ完了
==============================*/
.complete {
  padding-block: 10rem;
}
.complete__box {
  text-align: center;
}
.complete__btn {
  margin-top: 5rem;
}
.complete__btn:hover {
  opacity: 0.5;
}

/*==============================
　プライバシーポリシー
==============================*/
.privacy {
  padding-block: 12.5rem;
}
.privacy__box {
  margin-bottom: 5rem;
}
.privacy__box:last-child {
  margin-bottom: 0;
}

/*==============================
    サイトマップ
==============================*/
.site {
  padding-block: 12.5rem;
}
.site .com-inbox {
  width: 70rem;
}
.site__list {
  display: flex;
  flex-direction: column;
}
.site__item {
  height: 7.5rem;
}
.site__item a {
  padding: 1rem;
}
.site__item a::after {
  width: 1rem;
  transform: rotate(-45deg);
}
.site__item a:hover {
  transition: all 0.3s;
  opacity: 0.5;
}
.site__item a:hover::after {
  transform: rotate(-45deg) translate(5px, 5px);
  transition: all 0.3s;
}

/*==============================
    このページは存在しません
==============================*/
.e404 {
  padding-block: 12.5rem;
}
/*==============================
    共通お問い合わせセクション
==============================*/
.com-contact {
  padding-block: 12.5rem;
}
.com-contact .com-inbox {
  padding-inline: 12rem;
  width: calc(1080px - 8rem);
}
.com-contact .com-title01 {
  margin-bottom: 3.8rem;
}
.com-contact address {
  width: calc(100% - 6rem);
  padding-inline: 15.4rem;
}
.com-contact address > div {
  gap: 5.2rem;
}
.com-contact .download__item a {
  transition: all 0.3s;
}
.com-contact .download__item a:hover {
  opacity: 0.5;
}

/*==============================
    フッター
==============================*/
.footer {
  padding-block: 8.2rem;
}
.footer .logo {
  height: 2.6rem;
}
.footer__inner {
  width: 1080px;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  align-items: flex-start;
}
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2rem 0.75em;
  width: 61rem;
}
.footer-nav__item {
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.footer-nav__item::after {
  content: "|";
  margin-left: 0.75em;
}
.footer-nav__item:nth-child(5n)::after, .footer-nav__item:last-child::after {
  display: none;
}
.footer small {
  justify-content: flex-end;
  line-height: 1;
  margin-top: 6.2rem;
}