
/*=============================
画像保護
=============================*/
img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none; /* 長押し時の挙動を無効化 */
  -webkit-user-select: none; /* 文章の範囲選択を無効化 */
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}
a img,
button img,
img.videoThumb { pointer-events: initial; }

/*=============================
ヘッダー
=============================*/
#header {
  --header-height: 4.5em;
  --max-width: 1200px;
  --primary-color: #e8447e;
  --z-hover: 100;
}

/*=============== ヘッダー ===============*/
#header {
  height: auto;
  z-index: 999;
}

.header__logo {
  position: absolute;
  width: 51%;
  max-width: 378px;
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.header__logo a img {
  width: 100%;
}

.header__inner {
  position: relative;
  display: flex;
}

@media screen and (min-width: 768px) {
  #header {
    background: #fff;
    /* height: auto; */
  }

  .header__inner a {
    transition: 0.3s ease-in-out;
  }

  .header__inner {
    display: block;
    position: absolute;
    position: relative;
    margin: 0 auto;
    padding: 0 1.5em;
    background: #fff;
  }

  .header__logo {
    display: block;
    position: initial;
    /* width: auto; */
    transform: initial;
    max-width: 175px;
    /* margin-left: 1em; */
  }

  .header__nav {
    display: flex;
    justify-content: space-between;
    height: var(--header-height);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .header__logo a:hover {
    opacity: 0.8;
  }

  .header__logo a img {
    /* vertical-align: middle; */
  }

  .header__overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }

  .header._show-dd-menu .header__inner::before {
    content: "";
    position: absolute;
    background: #fff;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-hover);
    left: 0;
  }
}

/*=============== ナビ ===============*/
.nav__img {
  width: 32px;
  border-radius: 50%;
}

.nav__icon.nav__icon--mail {
  margin-top: -2px;
  margin-bottom: 4px;
}

.nav__menu {
  display: none;
}

.nav__icon {
  width: 21px;
  margin-bottom: 2px;
}

.nav__name {
  font-size: 10px;
  font-weight: normal;
}

.nav__list,
.nav__link {
  display: grid;
}

.nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  padding: 0.5em;
  place-items: center;
  text-align: left;
}

.nav__list {
  justify-content: space-around;
  grid-template-columns: repeat(6, 1fr);
  /* grid-template-columns: repeat(5, 1fr); */
}

.nav__link--small {
  font-size: 0.7em;
  display: block;
  letter-spacing: 0.1em;
}

.nav__link--icon {
  width: 24px;
  margin-right: 0.7em;
}

.nav__name--home {
  color: var(--primary-color);
}

.nav__item--laquan-online {
  display: none;
}

@media screen and (max-width: 320px) {
  .nav__name {
    display: none;
  }
  .js-dd-btn {
    padding-top: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 0.8em;
    display: grid;
    align-content: center;
    transition: 0.4s;
    z-index: 9999;
    border-top: 1px solid #ccc;
    background-color: #fff;
    letter-spacing: 0.1em;
  }
}

@media screen and (min-width: 768px) {
  .nav__list {
    display: flex;
    justify-content: inherit;
    height: var(--header-height);
  }

  .site-navigation {
    transition: transform 1s, opacity 1s, top 1s;
    transform: translate3d(0, -100%, 0);
    opacity: 0;
    top: -100px;
    position: fixed;
    width: 100%;
    z-index: 9999;
  }

  .site-navigation._scroll {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    top: 0;
  }

  ._scroll .nav__menu {
    display: block;
  }

  .nav__link {
    padding: 0 0.6em;
    row-gap: 0;
    font-weight: bold;
    height: 100%;
  }

  .nav__item--sns {
    display: flex;
    align-items: center;
    /* margin-left: 0.8em; */
  }

  .nav__item--sns .nav__link {
    padding: 0;
    height: auto;
    display: block;
  }

  .nav__item--sns .nav__link:hover {
    opacity: 0.8;
  }

  .nav__item--sns .nav__link img {
    width: 24px;
  }

  .nav__item--sns .nav__link:first-child {
    margin-right: 0.5em;
  }

  .nav__item--reservation .nav__link {
    padding: 0.5em 1.2em;
    background: #3e3e3e;
    border-radius: 1.6em;
    line-height: 1;
    display: flex;
    flex-direction: row;
    height: auto;
  }

  .nav__item--reservation .nav__link:hover,
  .nav__item--links .nav__link:hover {
    opacity: 0.8;
  }

  .nav__item--reservation {
    display: grid;
    place-items: center;
    margin-left: 1.5em;
  }

  .nav__item--reservation .nav__link .nav__icon {
    margin-right: 0.5em;
  }

  .nav__item--reservation .nav__link .nav__name {
    font-size: 1em;
    color: #fff;
  }

  .nav__item--links .nav__link {
    padding: 0;
    flex-direction: row;
    display: flex;
  }

  .nav__item--links {
    margin-left: 1.2em;
    display: grid;
    place-content: center;
  }

  .nav__item--links .nav__icon {
    margin-right: 0.3em;
  }

  .nav__item--links .nav__link:last-child {
    /* margin-top: 0.1em; */
    width: fit-content;
  }

  .nav__item--links .nav__link:last-child .nav__icon {
    /* margin-top: -6px; */
  }

  .nav__item--links .nav__link .nav__name {
    font-weight: normal;
    /* margin-top: -3px; */
    letter-spacing: 0.05rem;
  }

  ._show-dd-menu .header__dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__dd--inner {
    width: 100%;
    max-width: var(--max-width);
    max-width: calc(var(--max-width) / 1.14);
    padding-top: 2.5em !important;
    padding-bottom: 1em;
    margin: 0 auto;
  }

  .header__ad-area {
    display: none;
  }

  .header_social_nav {
    display: none;
  }

  ._show-dd-menu .header__dd ~ .header__overlay {
    opacity: 1;
    visibility: visible;
  }

  .nav__link._show-dd-menu {
    background: #fff;
    z-index: var(--z-hover);
  }

  .nav__img {
    display: none;
  }

  .nav__name {
    font-size: 13px;
    font-size: 0.9em;
    letter-spacing: 2px;
  }

  .nav__link__upper {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.1rem;
  }
}

@media screen and (min-width: 1250px) {
  .nav__link {
    padding: 0 0.7em;
  }
}

/*=============================
  ドロップダウンメニュー
  =============================*/
@media screen and (max-width: 1023px) {
  .header__dd {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 0.5em 0 0;
    position: fixed;
    top: 100%;
    overflow: scroll;
    transition: 0.4s ease-out;
    z-index: 9998;
  }

  .header__dd > * {
    padding: 0 4%;
  }

  .header__dd > *:last-child {
    padding: 3em 4% 160px;
  }

  .header__dd.header-active {
    top: 0;
  }

  .close-btn {
    text-align: center;
    margin-left: auto;
    margin-bottom: 1.2em;
    transition: 2s ease-out;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 6em;
  }

  .header__dd.header-active .close-btn {
    opacity: 1;
  }

  .close-btn-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 42px;
  }

  .close-btn-icon::before,
  .close-btn-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 35px;
    background: #3c3c3c;
  }

  .close-btn-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .close-btn-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .close-btn-text {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-right: 0.4em;
  }

  .cam-area > * {
    margin-bottom: 1em;
  }

  .cam-area .grid-1-2 {
    grid-gap: 1em;
  }

  .header__sub-menu span {
    font-size: 0.8em;
    letter-spacing: 0.1em;
    padding: 0.1em 0.2em;
  }
}

@media screen and (min-width: 1024px) {
  .header__menu {
    position: relative;
  }
}

/*=============================
  ハンバーガーメニュー
  =============================*/
.btn-trigger {
  position: relative;
  width: 20px;
  height: 15px;
  cursor: pointer;
  margin-bottom: -0.3em;
}

.btn-trigger span {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #3c3c3c;
  border-radius: 4px;
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 2px;
}

.btn-trigger span:nth-of-type(2) {
  top: 10px;
}

.btn-trigger span:nth-of-type(3) {
  top: 18px;
}

.js-dd-btn.header-active .btn-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.js-dd-btn.header-active .btn-trigger span:nth-of-type(2) {
  opacity: 0;
}

.js-dd-btn.header-active .btn-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.js-dd-btn {
  display: grid;
  place-items: center;
  row-gap: 3px;
  padding-top: 2px;
}

.cam-area__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.cam-area__menu-item {
  border-right: 1px solid #cfcece;
  border-bottom: 1px solid #cfcece;
}

.cam-area__menu-item:nth-child(odd) {
  border-left: 1px solid #cfcece;
}

.cam-area__menu-item:nth-child(-n + 2) {
  border-top: 1px solid #cfcece;
}

.cam-area__menu-link {
  display: flex;
  font-size: 0.9em;
  letter-spacing: 0em;
  min-height: 3.3em;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  row-gap: 0;
  padding: 0.3em 0.7em;
  line-height: 1.6;
}

.cam-area__sub-menu {
  display: none;
}

.header__dd--inner {
  padding-top: 0.8em;
}

.cam-area__title {
  font-size: 1.2em;
  letter-spacing: 0.2em;
  font-weight: bold;
  line-height: 1;
  border-left: 2px solid var(--primary-color);
  padding: 0 0 0 0.6em;
  margin-bottom: 0.1em;
}

.cam-area__subtitle {
  font-size: 1em;
  letter-spacing: 0.2em;
  margin-top: 0.5em;
  margin: 1.1em 0 0.7em;
  display: inline-block;
  font-weight: bold;
}

.header__dd__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 3.4em;
}

.header__dd__nav .nav__link {
  display: flex;
  font-size: 0.9em;
  letter-spacing: 0.1em;
  width: 100%;
  min-height: 3.3em;
  row-gap: 0;
  padding: 0 0 0 0.6em;
  justify-content: center;
  align-items: start;
}

.cam-area {
  margin-bottom: 1.4em;
}

.header__nav--one-column .nav__link {
  display: flex;
  flex-direction: row;
  font-size: 1em;
  row-gap: 0;
  justify-content: space-between;
  border-top: 1px solid #cfcece;
  padding: 1.4em 0px;
  letter-spacing: 0.3em;
  font-weight: bold;
}

.header__nav--one-column {
  margin: 5em 0 3.6em;
}

.header__nav--one-column .nav__item:last-child .nav__link {
  border-bottom: 1px solid #cfcece;
}

.ad-area__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.2em;
}

.ad-area__item {
  /* background-color: #ddd;
  text-align: center;
  border: 1px solid #cfcece; */
}

.ad-area__item img {
  border: 1px solid #cfcece;
}

.ad-area__item--full-width {
  grid-column: 1 / -1;
}

.header_social_nav {
  background-color: #242424;
}

.header_social_nav > * {
  margin-bottom: 3em;
}

.header__sns-menu,
.header__company-menu {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  line-height: 2;
}

.header__sns-menu {
  width: 104px;
  margin: 0 auto 3em;
}

.header__company-menu {
  font-size: 0.8em;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 1em 0;
}

.header__company-menu a {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.head-menu-grid-2-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1em;
}

.header__ad-area {
  margin-bottom: 4.4em;
}

@media screen and (max-width: 320px) {
  .btn-trigger {
    width: 24px;
    height: 20px;
  }
}

@media screen and (min-width: 768px) {
  .header__dd {
    position: absolute;
    display: block;
    background: #fff;
    left: 0;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out,
      transform 0.3s ease-in-out;
    transform: translateY(-10px);
  }

  .cam-area__title {
    padding: 0 0 0 0.6em;
    letter-spacing: 0.1em;
    font-size: 1.2em;
    margin-bottom: 0.8em;
  }

  .header__nav--one-column {
    display: none;
  }

  .header__dd__nav {
    display: none !important;
  }

  .cam-area__links-item > a:hover {
    opacity: 0.8;
  }

  .cam-area__menu {
    margin-top: 0.5em;
    display: block;
  }

  .cam-area__menu-link {
    position: relative;
    padding-left: 0.7em;
    font-size: 1em;
    letter-spacing: 0;
    margin-bottom: 0.6em;
    display: inline-block;
    min-height: auto;
    padding: 0 0 0 0.7em;
    line-height: 1.6;
  }

  .cam-area__menu-link::before {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #cfcece;
  }

  .cam-area__sub-menu-item .cam-area__menu-link::before {
    top: 0.6em;
  }

  .cam-area__sub-menu {
    margin-left: 0.6em;
    display: block;
  }

  .cam-area__sub-menu .cam-area__menu-link {
    font-size: 0.9em;
  }

  .cam-area__menu-item {
    border: 0 !important;
  }
  .cam-area__menu-item:not(:last-child) {
    margin-bottom: 1em;
  }

  .nav__item:not(.nav__item--reservation):not(.nav__item--links):not(
      .nav__item--sns
    )
    .nav__link:hover,
  .nav__link._show-dd-menu {
    color: var(--primary-color);
  }

  .nav__item:not(.nav__item--reservation):not(.nav__item--links):not(
      .nav__item--sns
    )
    .nav__link:hover:after,
  .nav__link._show-dd-menu:after {
    color: var(--primary-color);
    transform-origin: left top;
    transform: scale(1, 1) !important;
  }

  .nav__item:not(.nav__item--reservation):not(.nav__item--links):not(
      .nav__item--sns
    )
    .nav__link:after,
  .nav__link._show-dd-menu:after {
    position: absolute;
    bottom: 1.5em;
    left: 1em;
    right: 0;
    content: "";
    width: calc(100% - 2em);
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.5s;
  }

  #global-nav {
    cursor: pointer;
    background: #fff;
  }

  #global-nav:hover {
    opacity: 1;
  }

  .nav__menu .nav__link {
    position: relative;
  }

  .cam-area__menu-link:hover {
    color: var(--primary-color);
  }

  .cam-area__menu-link:hover:after {
    color: var(--primary-color);
    transform-origin: left top;
    transform: scale(1, 1);
  }

  .cam-area__menu-link:hover:before {
    border-left-color: var(--primary-color);
  }

  .cam-area__menu-link:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.5s;
  }

  .cam-area__menu-link {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .cam-area__links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.6em;
  }
}

/*=============================
  グローバルナビゲーション レスポンシブ
  =============================*/
@media screen and (min-width: 768px) {
  .nav-for-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .nav-for-pc {
    display: none;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .header__dd--inner {
    overflow: scroll;
    /* height: 100%; */
    height: 94vh;
  }
  .nav__list--sp .nav__link:after {
    content: "" !important;
    background: none !important;
  }
  .nav__list--sp .nav__link:hover {
    color: inherit !important;
    opacity: 0.7;
  }
  
  .nav__list.nav__list--sp {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }

  .nav__list.nav__list--sp .nav__link .nav__name {
    margin-top: -0.8em;
  }

  .btn-trigger {
    height: 1em;
  }
  .nav__list--pc {
    display: none;
  }

  .nav__list--sp .nav__link {
    place-items: center;
    padding: 0 0.1em;
    row-gap: 0.1em;
  }

  .js-dd-btn {
    padding-top: 0.2em;
    row-gap: 0;
  }

  .header__inner {
    padding: 0 1em;
  }

  .header__dd.header-active {
    display: block;
    top: var(--header-height);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .cam-area__links {
    grid-template-columns: repeat(3, 1fr);
  }
  .nav__item--laquan-online {
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  .nav__list--sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .nav__list--pc {
    display: none;
  }
}
@media screen and (max-width: 1280px) and (min-width: 1200px) {
  .nav__item--sns {
    margin-left: 0.2em;
  }
  .nav__item--reservation {
    margin-left: 0.8em;
  }
  .nav__link {
    /* padding: 0 0.6em; */
  }
  .nav__item:not(.nav__item--reservation):not(.nav__item--links):not(
      .nav__item--sns
    )
    .nav__link:after,
  .nav__link._show-dd-menu:after {
    left: 0.9em;
    width: calc(100% - 1.8em);
  }
}

/* 打ち消し,上書き */
main {
  /* margin-top: 0 !important; */
}

.follow.fixed {
  /* top: 0 !important; */
}

main#shop_info.shopPage.sub_page {
  margin-top: 5rem !important;
}

@media (max-width: 767px) {
  main#s753,main#s20th {
    margin-top: 50px !important;
  }
  main#s753.topics {
    margin-top: 0 !important;
  }
  main#shop_info.shopPage.sub_page {
    margin-top: 4em !important;
  }
  .sub_page #breadcrumb {
    background-color: #b8b3af !important;
  }
  .sub_page #breadcrumb a {
    color: #fff !important;
  }
  .s-sub-menu-box {
    position: fixed !important;
    top: 0 !important;
    z-index: 999;
  }
  #sim_main .sim_total {
    z-index: 9997;
    bottom: 55px;
  }
  .btn_rentalFlow,
  a.btn_pagetop,
  .webcatalog-link-btn img {
    bottom: 60px !important;
  }
  #faq ol.flex-aro li a {
    font-size: 0.9em;
  }
}

@media (min-width: 768px) {
  .s-sub-menu-box {
    position: relative;
    box-shadow: none !important;
  }
  ._show-dd-menu .s-sub-menu-box {
    display: none;
  }
  .follow.fixed {
    top: 63px !important;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  #shopSp {
    left: 0;
    bottom: -58px;
  }
}

/* 20231207ヘッダー常時表示 */
main {
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  main#s753,main#s20th {
    margin-top: 7.8rem!important;
  }
}

@media screen and (max-width: 767px) {
  .header__logo {
    position: fixed;
    display: grid;
    place-content: center;
    background: #fff;
    width: 100%;
    max-width: 100%;
    top: 0;
    padding: 0 7px;
    height: 42px;
    z-index: 999;
  }

  .header__logo a img {
    max-width: 180px;
  }

  main {
    margin-top: 3rem !important;
  }

  .follow.fixed {
    top: 0 !important;
    z-index: 999 !important;
  }

  #shopSp {
    position: fixed !important;
    top: 0;
    height: 60px;
    z-index: 999 !important;
  }
}

/* header submenu */
.s-sub-menu-box {
  background-color: #fff;
  padding: 1em 2em;
  width: 100%;
  margin: auto;
  position: relative;
  top: 100%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.s-sub-menu-box::-webkit-scrollbar {
  display: none;
}

.s-sub-menu-box nav {
  max-width: 1100px;
  width: 320vw;
  margin: auto;
}

.s-sub-menu-list {
  width: calc(100% - 2em);
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 1em;
}

.link-on > * {
  color: #e8457e;
}

.link-on:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: relative;
  top: 80%;
  background: #e8457e;
}

.s20th-sub-menu-box .s-sub-menu-list li a {
  font-size: 0.9em;
}

.s20th-sub-menu-box nav {
  max-width: 1200px !important;
  width: 340vw !important;
}

/*=============================
  2,header End
  =============================*/

