@charset "UTF-8";

/*==============================
  サイト共通のスタイル
==============================*/

/* 共通スタイル */
h1,
h2,
h3,
h4,
h5,
.c-title--main,
.c-title--sub
{
  font-weight: bold;
}

h1 {
    font-size: clamp(20px, 3vw, 24px);
    position: relative;
    padding-bottom: 30px;
    font-family: "Zen Old Mincho", serif;
    color: var(--color-dark-brown);
    font-weight: 600 !important;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
}

h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    max-width: 140px;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        to right,
        #a12531 0%,
        #a12531 50%,
        #cfad70 50%,
        #cfad70 100%
    );
    transform: translateX(-50%);
}

h2 {
    font-size: clamp(19px, 3vw, 20px);
    background-image: url(../img/h2-bg.png);
    padding: 10px;
    text-align: left;
    color: #ffffff;
    font-family: "Zen Old Mincho", serif;
    font-weight: 600 !important;
    line-height: 1.6;
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(18px, 3vw, 19px);
    position: relative;
    padding-left: 20px;
    color: var(--color-dark-brown);
    font-weight: 600 !important;
    line-height: 1.5;
    margin-bottom: 20px;
}

h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #a12531;
}

@media (min-width: 40em) {
  h1 {
    margin-bottom: 60px;
  }

  h2 {
    padding: 10px 10px 10px 25px;
    text-align: left;
  }
}

.c-title--main {
  color: var(--color-dark-brown);
  font-size: var(--px-to-vw_24);
  letter-spacing: 1.5px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}
@media (min-width: 40em) {
  .c-title--main {
    font-size: var(--px-to-rem_34);
    letter-spacing: 2px;
  }
}
.c-title--sub {
  color: var(--color-dark-brown);
  font-size: var(--px-to-vw_21);
  letter-spacing: 1.5px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}
@media (min-width: 40em) {
  .c-title--sub {
    font-size: var(--px-to-rem_28);
    letter-spacing: 2px;
  }
}

.c-page-title {
  position: relative;
  line-height: 2.5;
  height: 30vw;
  width: 100%;
  background-color: #fff;
  color: var(--color-dark-brown);
  overflow: hidden;
}
.c-page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/seigaiha_bg.svg') repeat;
  background-size: 250% auto;
  background-position: center;
  z-index: 0;
}
.c-page-title--text {
  font-size: var(--px-to-vw_18);
  letter-spacing: 2px;
  font-weight: 600;
  position: relative;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0 auto;
  line-height: 1.5;
  z-index: 1;
}
@media (min-width: 40em) {
  .c-page-title {
    height: 200px;
    letter-spacing: 3px;
  }
  .c-page-title::before {
    background-size: cover;
  }
  .c-page-title--text {
    font-size: var(--px-to-rem_25);
  }
}

.c-page-title--h1 {
  margin-bottom: 50px;
  margin-top: 3rem;
}
@media (min-width: 40em) {
  .c-page-title--h1 {
    margin-bottom: 0;
    margin-top: 4rem;
  }
}

/* flex上下左右中央 */
.c-flex--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-flex--md-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*--- 非表示 ---*/
.u-displaynone {
  display: none !important;
}

/*--- モバイル非表示 ---*/
@media (max-width: 39.9375rem) {
  .u-displaynone-sm {
    display: none !important;
  }
}

/*--- デスクトップ非表示 ---*/
@media (min-width: 40em) {
  .u-displaynone-md-up {
    display: none !important;
  }
}

/* 背景 */
.c-bg--offwhite {
  background-color: #F8F1E5;
}
.c-bg--offwhite--transparent {
  background-color: #FBF8F3;
}
.c-bg--washi {
  background: url(../img/washi-bg.jpg) no-repeat center top;
  background-size: cover;
  width: 100%;
}

/* 予約システム */
.directin-sp-form .directin-sp-form-input label .directin-sp-form-label {
  font-size: 1rem !important;
}
.directin-sp-form .directin-sp-form-guest-room-input-group .directin-sp-form-guest-room-select-panel .directin-sp-form-input label .directin-sp-form-label {
  font-size: 0.8rem !important;
}

/* アニメーション */
.c-fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.c-fadeUp.is-active {
  opacity: 1;
  transform: translateY(0);
}

.c-fadeUp.is-active.item01 {
  transition-delay: 0.0s; 
}
.c-fadeUp.is-active.item02 {
  transition-delay: 0.2s; 
}
.c-fadeUp.is-active.item03 {
  transition-delay: 0.4s; 
}

/* スライドアニメーション */
.c-img-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.c-img-slider--track {
  display: flex;
  width: max-content;
  animation: slide-left 50s linear infinite;
}
.is-reverse .c-img-slider--track {
  animation: slide-right 50s linear infinite;
}
.c-img-slider--img img {
  display: block;
  width: 50vw;
  height: auto;
  aspect-ratio: 37/25;
  object-fit: cover;
}
@media (min-width: 40em) {
  .c-img-slider--img img {
    width: 370px;
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* アンカーリンクの際の位置調整 */
.c-target {
  scroll-margin-top: -10vw; 
}
@media (min-width: 40em) {
  .c-target {
    scroll-margin-top: -100px;
  }
}

/* ボタン */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  gap: 1em;
  padding: 0 1.5em 0 2.5em;
  line-height: 3;
  letter-spacing: 2px;
  position: relative;
  font-size: var(--px-to-vw_14);
}
@media (min-width: 40em) {
  .c-btn {
    font-size: var(--px-to-rem_20);
    letter-spacing: 3px;
  }
}
.c-btn__icon {
  font-size: 1em;
  transition: transform 0.3s ease;
}
@media (min-width: 40em) {
  .c-btn__icon {
    font-size: 1em;
    transition: transform 0.3s ease;
  }
}
.c-btn:hover .c-btn__icon {
  transform: translateX(6px);
}
.c-btn--red {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  color: #fff !important;
}
.c-btn--white {
  background-color: var(--color-base);
  border: 1px solid var(--color-base);
  color: var(--color-text) !important;
}
.c-btn--dark-brown {
  background-color: var(--color-dark-brown);
  border: 1px solid var(--color-dark-brown);
  color: #fff !important;
}
.c-btn--clear {
  background-color: inherit;
  border: 1px solid var(--color-gray);
}
.c-btn--clear i {
  color: var(--color-main);
}
.c-btn--olive {
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--color-olive) !important;
}
.c-btn--square {
  border-radius: 0.5em;
}

/* 装飾 */
.c-heading-line--v {
  position: relative;
}
.c-heading-line--v::before {
  content: "";
  position: absolute;
  top: -1.8em;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 1.3em;
  background-color: #C4B645;
}
@media (min-width: 40em) {
  .c-heading-line--v::before {
    top: -1.5em;
    height: 1em;
  }
}
.c-heading-line--h {
  position: relative;
}
.c-heading-line--h::before {
  content: "";
  position: absolute;
  bottom: -0.8em;
  left: 50%;
  transform: translateX(-50%);
  width: 5em;
  height: 1px;
  background-color: #fff;
}
@media (min-width: 40em) {
  .c-heading-line--h::before {
    top: 4em;
    width: 4em;
  }
}

/* テーブル */
.c-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin-top: 4vw;
}
.c-table tr,
.c-table th,
.c-table td {
  display: block;
  width: 100%;
}
.c-table th,
.c-table td {
  padding: 0.8em 1.5em;
}
.c-table th {
  font-weight: bold;
  padding-left: 2em;
  font-size: var(--px-to-vw_13);
  text-align: center;
  border-bottom: 1px solid #D1D1D1;
}
.c-table td {
  padding-right: 2em;
  font-size: var(--px-to-vw_12);
}
.c-table tr {
  border-top: 1px solid #D1D1D1;
}
.c-table tr:last-child td {
  border-bottom: 1px solid #D1D1D1;
}
@media (min-width: 40em) {
  .c-table {
    display: table;
    margin-top: 30px;
  }
  .c-table tr {
    display: flex;
    border-top: 1px solid #D1D1D1;
  }
  .c-table th {
    width: 200px;
    text-align: left;
    padding-left: 30px;
    font-size: var(--px-to-rem_16);
    border-bottom: none;
  }
  .c-table td {
    font-size: var(--px-to-rem_16);
  }
  .c-table tr:last-child td {
    border-bottom: none;
  }
  .c-table tr:last-child {
    border-bottom: 1px solid #D1D1D1;
  }
}

/* 赤thスクロールテーブル */
.c-table--red-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 30px;
}
.c-table--red-scroll table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 600px;
  font-size: var(--px-to-vw_12);
  text-align: center;
}
.c-table--red-scroll th {
  background: var(--color-main);
  color: #fff;
  padding: 2vw;
  font-weight: bold;
  white-space: nowrap;
}
.c-table--red-scroll td {
  padding: 2vw 0;
  border-bottom: 1px solid #d1d1d1;
  vertical-align: middle;
}
.c-table--red-scroll td.u-text--left {
  padding-left: 8vw;
}
@media (min-width: 40em) {
  .c-table--red-scroll {
    margin-top: 30px;
  }
  .c-table--red-scroll table {
    font-size: var(--px-to-rem_16);
  }
  .c-table--red-scroll th {
    padding: 15px;
  }
  .c-table--red-scroll td {
    padding: 15px 0;
  }
  .c-table--red-scroll td.u-text--left {
    padding-left: 50px;
  }
}

/* ヘッダー */
.o-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0 0.5rem;
  height: var(--header-height);
  background: #fff;
  border-bottom: 1px solid var(--color-gray);
}
@media (min-width: 40em) {
  .o-header {
    max-width: 100%;
    overflow: visible;
    padding: 0 calc(15vw - 11rem);
    height: var(--header-height-md);
  }
}
body.o-globalMenu--shown .o-header {
  border-bottom: none !important;
  background: white;
}
body.o-globalMenu--shown .o-header .o-site-logo {
  margin-top: 6vw;
}
body.o-globalMenu--shown .o-header .c-row {
  justify-content: center;
}
body.o-globalMenu--shown .o-header .o-site-logo__img {
  display: block;
}
body.o-globalMenu--shown .o-header .o-site-logo__img--white {
  display: none;
}

.o-heder--dummy {
  width: 100%;
  height: var(--header-height);
}
@media (min-width: 40em) {
  .o-heder--dummy {
    width: 100%;
    height: var(--header-height-md);
  }
}
.o-site-logo {
  margin: 2.5vw 0 auto 3vw;
}
.o-site-logo__img {
  display: none;
  width: 50vw;
  height: auto;
  transition: 0.5s ease;
}
@media (min-width: 40em) {
  .o-site-logo {
    margin: auto 0 auto 3vw;
  }
  .o-site-logo__img {
    width: clamp(220px, 17.3vw, 310px);
  }
}

.home .o-site-logo__img--white {
  display: block;
}
.home .o-header.o-header--low .o-site-logo__img--white {
  display: none;
}
.home .o-header.o-header--low .o-site-logo__img--black {
  display: block;
}
body:not(.home) .o-site-logo__img--black {
  display: block;
}
body:not(.home) .o-site-logo__img--white {
  display: none;
}

.o-header a {
  text-decoration: none;
}
.o-globalMenu {
  width: 100vw;
  height: 100vh;
  min-height: 55vh;
  /* max-height: 90vh; */
  background-color: #fff;
  overflow: auto;
  position: fixed;
  top: var(--header-height);
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: all 0.3s;
  z-index: 9999;
}
@media (min-width: 40em) {
  .o-globalMenu {
    width: auto;
    height: auto;
    height: var(--header-height-md);
    background-color: transparent;
    display: flex;
    overflow: visible;
    position: static;
    top: 0;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    min-height: auto;
    max-height: 100%;
    margin-left: auto;
  }
}
.o-globalMenu--shown .o-globalMenu,.o-globalMenu--shown .o-globalMenuToggle--background {
  /* opacity: 1;
  visibility: visible; */
  transform: translateX(0);
}
.o-globalMenu > ul {
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 40em) {
  .o-globalMenu > ul {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

.o-globalMenu > ul > li {
  border-bottom: 1px solid #ffffff;
  width: 80vw;
  margin: 0 auto;
}
@media (min-width: 40em) {
  .o-globalMenu > ul > li {
    border-bottom: none;
    flex-grow: 1;
    overflow: visible;
    width: auto;
    margin: auto;
  }
}
.o-globalMenu > ul > li:last-of-type {
  width: 90vw;
}
@media (min-width: 40em) {
  .o-globalMenu > ul > li:last-of-type {
    width: auto;
  }
}
.o-globalMenu > ul > li > a {
  padding: 0.75rem 1vw;
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  display: block;
  font-size: 1rem;
  position: relative;
  transition: 150ms;
  width: 100%;
  border-bottom: solid 1px #bebebe;
  text-align: center;
}
.o-globalMenu > ul > li.o-globalMenuItem--reserve > a > div{
  color: #fff;
  background: var(--color-main);
  border: 1px solid var(--color-main);
}
.o-globalMenuItem--hasChildren {
  position: relative;
}
.o-globalMenu > ul > .o-globalMenuItem--hasChildren > a:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: 150ms;
  color: var(--color-main);
}
.o-globalMenu > ul > .o-globalMenuItem--hasChildren--title > a:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: 150ms;
  color: var(--color-main-text);
}

@media (max-width: 39.999999em) {
  .o-globalMenuItem--title{
    background-color: var(--color-main);
    color: var(--color-main-text);
  }
}
.o-globalMenu > ul > .o-globalMenuItem--hasChildren > a.opened:after,
.o-globalMenu > ul > .o-globalMenuItem--hasChildren--title > a.opened:after {
  transform: translateY(-50%) rotate(180deg);
  content: "\f068";
  color: #ffffff;
}
.o-globalMenuItem--hasChildren:has(a.opened){
  background-color: var(--color-main);
  color: #ffffff;
  transition : 0.3s;
}
@media (min-width: 40em) {
  .o-globalMenu > ul > li > a {
    height: 100%;
    font-size: clamp(15px, 0.9vw, 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
  }
  .o-globalMenu > ul > li.o-globalMenuItem--reserve > a > div{
    line-height: 3.5;
    background: var(--color-main);
    border: 1px solid var(--color-main);
    padding: 0 30px;
    border-radius: 100vh;
    letter-spacing: 0.1em;
  }
  .o-inquiry__a{
    font-size: 18px;
    font-weight: bold;
  }
  .o-globalMenu > ul > li > a > div{
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
  }
  .o-globalMenu > ul > li > a > div > i{
    margin-top: 5px;
    font-size: 35px;
  }
  .o-globalMenu > ul > li > a:hover > div{
    opacity: 0.7;
    transition:0.3s;
  }
  /* .o-globalMenu > ul > li.o-globalMenuItem--reserve > a:hover > div{
    opacity: 1;
    background: var(--color-base);
    color: var(--color-main);
  } */
  .o-globalMenu > ul > li > a:after {
    display: none;
  }
  .o-globalMenu > ul > li > a.focus,
  .o-globalMenuSub ul > li:hover > a
  {
    color: var(--color-main);
  }
  /* .o-globalMenu > ul > li:hover > a {
    color: var(--color-main);
    transition:0.3s;
  } */
  .o-globalMenu > ul > .o-inquiry > a {
    border: 1px solid #383434;
  }
  .o-globalMenu > ul > .o-inquiry:hover > a {
    background-color: #ffffff;
    color: #383434;
    transition:0.3s;
    border: 1px solid #383434;
    box-sizing: border-box;
  }
  .o-globalMenu > ul > li > a > i {
    margin-left: 0.5rem;
    color: var(--color-main);
    font-size: 1.25rem;
  }
}
.o-globalMenuItem__childToggle {
  aspect-ratio: 1 / 1;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1;
  width: 57px;
  height: 57px;
}
@media (min-width: 40em) {
  .o-globalMenuItem__childToggle {
    display: none;
  }
}

/* サブメニュー表示切替 */
.o-globalMenu > ul > li.o-globalMenuItem--hasChildren > a.focus + .o-globalMenuSub {
  display: block;
}
@media (min-width: 40em) {
  .o-globalMenu > ul > li.o-globalMenuItem--hasChildren:hover .o-globalMenuSub {
    opacity: 1;
    visibility: visible;
  }
}

/* グローバルメニューサブ */
.o-globalMenuSub {
  margin-bottom: -2px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  display: none;
}
@media (min-width: 40em) {
  .o-globalMenuSub {
    background-color: transparent;
    padding-top: 1.5rem;
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transition: 300ms;
    width: auto;
  }
}
@media (min-width: 40em) {
  .o-globalmenuSub__inner {
    padding: 1.5rem 2rem;
    background-color: #ffffff;
  }
}
.o-globalMenuSub > ul > li {
  border-bottom: 1px solid #DADADA;
}
@media (min-width: 40em) {
  .o-globalMenuSub > ul > li {
    border-bottom: none;
  }
}
a.o-globalMenuSub__item {
  padding: 0.75rem 1.5rem 0.75rem 3rem;
  font-size: 1rem;
  display: block;
  transition: 150ms;
  position: relative;
  color: var(--color-text);
}
a.o-globalMenuSub__item:before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  text-decoration: none;
}
@media (min-width: 40em) {
  a.o-globalMenuSub__item {
    padding-bottom: 0.15rem;
    padding-top: 0.15rem;
  }
}

/* グローバルメニューサブのサブ */
@media (min-width: 40em) {
  .o-globalMenuSubChild {
    padding-left: 1.25rem;
  }
}
a.o-globalMenuSubChild__item {
  padding: 0.5rem 1.5rem 0.5rem 4.375rem;
  color: var(--color-black-light);
  font-size: 0.875rem;
  display: block;
  transition: 150ms;
  position: relative;
  background-color: var(--color-light-pink);
  text-indent: -1.375em;
}
@media (min-width: 40em) {
  a.o-globalMenuSubChild__item {
    margin-right: 0;
    margin-left: 0;
    padding: 0.25rem 1rem;
    border-bottom: none;
    background-color: inherit;
    text-indent: -1em;
  }
}
a.o-globalMenuSubChild__item:before {
  content: "\f061";
  margin-right: 0.5rem;
  color: var(--color-black-light);
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}

/* グローバルメニューオーバーレイ */
.o-globalMenu-overlay {
  width: 100vw;
  height: calc(100vh - var(--header-height));
  background-color: rgba(0, 0, 0, 0.25);
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
@media (min-width: 40em) {
  .o-globalMenu-overlay {
    height: calc(100vh - var(--header-height-md));
    top: var(--header-height-md);
  }
}
.o-globalMenu-overlay--shown {
  visibility: visible;
  opacity: 1;
}

/* --- グローバルメニュートグル --- */
.o-globalMenuToggle {
  width: var(--header-height);
  height: var(--header-height);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 102;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 40em) {
  .o-globalMenuToggle {
    display: none;
  }
}
.o-globalMenuToggle span,
.o-globalMenuToggle span:before,
.o-globalMenuToggle span:after {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #282828;
  color: #282828;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all .3s;
}
.o-globalMenuToggle span:before,
.o-globalMenuToggle span:after {
  content: '';
}
.o-globalMenuToggle span:before {
  top: 0;
  bottom: -16px;
}
.o-globalMenuToggle span:after {
  top: -16px;
}
.o-globalMenu--shown .o-globalMenuToggle span {
  background: transparent;
}
.o-globalMenu--shown .o-globalMenuToggle span:before {
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
}
.o-globalMenu--shown .o-globalMenuToggle span:after {
  transform: rotate(45deg);
  top: 0;
}
.o-globalMenuToggle--background {
  height: var(--header-height);
  width: 85vw;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}

/* ハンバーガーメニュー用 */
.o-globalMenu--sp .o-hamburger-nav {
  width: 90vw;
  margin: 0 auto;
  justify-content: space-between !important;
  position: relative;
}

.o-globalMenu--sp .item {
  font-size: 10px;
  border-right: 1px solid #ccc;
  padding-right: 8px;
}

.o-globalMenu--sp .item:last-child {
  border-right: none;
  padding-right: 0;
}

.o-globalMenu--sp .fa-instagram {
  font-size: 30px;
}

.o-globalMenu--sp .fa-x-twitter {
  font-size: 30px;
}

.o-globalMenu--sp .c-gap20 {
  gap: 20px;
}

/* -----------------------------------------------
           footer
------------------------------------------------- */
.o-footer {
  background: #121212;
  color: #fff;
  text-align: center;
  margin-bottom: var(--footer-float-height);
}
.o-footer__main {
  background: #323232;
  padding: 10vw 0 5vw;
}
.o-footer__info {
  line-height: 1.8;
}
.o-footer__logo img {
  width: 60vw;
  height: auto;
  margin-bottom: 1.5vw;
}
.o-footer__manager {
  font-size: var(--px-to-vw_12);
}
.o-footer__address {
  font-size: var(--px-to-vw_13);
  margin-top: 3vw;
}
.o-footer__sns a {
  display: inline-block;
  margin: 0 3vw;
  font-size: 8vw;
  transition: opacity 0.3s;
}
.o-footer__sns a:hover {
  opacity: 0.7;
}
.o-footer__bottom {
  padding: 5vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3vw;
}
.o-footer__copy {
  font-size: var(--px-to-vw_10);
}
.o-footer__links {
  font-size: var(--px-to-vw_11);
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}
.o-footer__links a {
  text-decoration: none;
  transition: opacity 0.3s;
}
.o-footer__links a:hover {
  opacity: 0.7;
}
@media (min-width: 40em) {
  .o-footer {
    margin-bottom: 0;
  }
  .o-footer__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 20px;
  }
  .o-footer__logo img {
    width: 250px;
    height: auto;
    margin-bottom: 15px;
  }
  .o-footer__manager {
    font-size: var(--px-to-rem_14);
  }
  .o-footer__address {
    font-size: var(--px-to-rem_15);
    margin-top: 0.8em;
  }
  .o-footer__sns {
    margin-top: 5px;
  }
  .o-footer__sns a {
    margin: 0 10px;
    font-size: 1.8rem;
  }
  .o-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 40px;
  }
  .o-footer__copy {
    font-size: var(--px-to-rem_12);
  }
  .o-footer__links {
    font-size: var(--px-to-rem_14);
    gap: 40px;
  }
}
.c-btn--tel {
  display: inline-block;
  font-weight: 900;
  margin-top: 3vw;
  background: var(--color-main);
  font-size: var(--px-to-vw_16);
  text-decoration: none;
  text-align: center;
  border-radius: 12px;
  line-height: 3;
  padding: 0 30vw 1vw;
  transition: opacity 0.3s;
}
.c-btn--tel:hover {
  opacity: 0.8;
}

/* フローディングメニュー */
.c-float-btn__bg {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--footer-float-height);
  background: rgba(255, 255, 255, 0.8);
  display: none;
  z-index: 9998;
}
.c-float-btn--box {
  height: var(--footer-float-height);
}
.c-float-btn__bg a {
  margin: auto;
  width: 70%;
  line-height: 2.2;
  letter-spacing: 1.8px;
  background: var(--color-main);
  color: #fff;
  text-decoration: none;
  font-size: var(--px-to-vw_17);
  border-radius: 9999px;
  padding: 5px 0;
  font-weight: 600;
}
.c-float-btn__bg a:hover {
	opacity: 1;
}