@charset "UTF-8";
@import url(common.css);

/* ===============================================
 Setting
=============================================== */

/* SP
------------------------------------------*/
.pc-none {
  display: none !important;
}

a[href^="tel:"] {
  pointer-events: none;
}

/* Max PC Box
------------------------------------------*/
.pc-max-bx {
  width: calc(100% - 16rem);
  max-width: 1340px;
  min-width: initial;
  margin: 0 auto;
  position: relative;
}

/* Sub Contents Fixed
------------------------------------------*/
.sub-contents-fixed {
  width: calc(100% - 16rem);
  max-width: 1340px;
  height: 100%;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}

/* Sub Contents
------------------------------------------*/
.sub-contents {
  position: absolute;
  width: 22rem;
  height: clamp(50rem, 39.0625vw, 60rem);
  background: var(--color-white);
  outline: dashed 1px var(--color-main);
  outline-offset: -1px;
  top: -1px;
}
.sub-contents::before {
  content: "";
  width: clamp(12rem, 9.1145833333vw, 14rem);
  aspect-ratio: 140/149;
  background: url(../images/common/flower_deco_01.png) no-repeat center/contain;
  position: absolute;
  left: -8rem;
  bottom: clamp(-7.6rem, -4.9479166667vw, -6.4rem);
  z-index: 1;
}
.sub-contents > * {
  position: relative;
  z-index: 3;
}

/* Side Contents 
------------------------------------------*/
.side {
  padding: clamp(2.5rem, 1.953125vw, 3rem) 2.5rem;
}
.side-logo {
  width: clamp(4.5rem, 3.4505208333vw, 5.3rem);
  margin-bottom: clamp(2.5rem, 1.8229166667vw, 2.8rem);
}
.side-logo img {
  width: 100%;
  aspect-ratio: 53/48;
  -o-object-fit: cover;
  object-fit: cover;
}
.side-nav {
  font-size: clamp(1.5rem, 1.171875vw, 1.8rem);
  font-size-adjust: var(--font-family-kaku);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.side-nav-item {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: dashed 1px var(--color-border);
}
.side-nav-item:last-of-type {
  margin-bottom: 0;
}
.side-nav-link {
  display: block;
  margin-block: calc((1em - 1lh) / 2);
  transition: all 0.15s ease-out;
}
.side-nav-link:hover,
.side-nav-link[aria-current="page"] {
  color: var(--color-main);
}
.side-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: clamp(2.1rem, 1.3020833333vw, 2.5rem);
  padding-top: clamp(40px, 2.9296875vw, 45px);
}
.side-tel {
  font-size: clamp(1.7rem, 1.3020833333vw, 2rem);
}
.side-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(2.1rem, 1.3020833333vw, 2.5rem);
}
.side-sns-item {
  width: clamp(3.4rem, 2.6041666667vw, 4rem);
}
.side-sns-item--mail a {
  position: relative;
}
.side-sns-item--mail a::before {
  content: "";
  -webkit-mask: url(../images/common/ic_mail.png) no-repeat center/contain;
  mask: url(../images/common/ic_mail.png) no-repeat center/contain;
  background-color: var(--color-main);
  position: absolute;
  inset: 0;
  z-index: 0;
}
.side-sns-item--mail a img {
  opacity: 0;
}
.side-sns-item a {
  display: block;
  aspect-ratio: 1;
  transition: all 0.3s ease-out;
}
.side-sns-item a:hover {
  opacity: 0.54;
}

/* Main Contents
------------------------------------------*/
.main-contents-container {
  width: 375px;
  min-height: 100vh;
  background: var(--color-bg);
  margin-left: auto;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

/*===============================================
  wrapper
===============================================*/
#wrapper::before {
  content: "";
  width: 100%;
  height: 100vh;
  background: url(../images/common/background_pc.jpg) no-repeat center/cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
}

/* PC Side Fixed 
------------------------------------------*/
.fix_wrp {
  width: calc(100% - 16rem);
  max-width: 1340px;
  height: 0;
  position: fixed;
  left: 50%;
  bottom: 6.2rem;
  transform: translateX(-50%);
  z-index: 50;
}

/*Page Top
------------------------------------------*/
#pagetop {
  display: block;
  width: 4.5rem;
  position: absolute;
  right: -1px;
  bottom: 0;
}

#pagetop img {
  width: 100%;
  aspect-ratio: 1;
  transition: all 0.3s ease-out;
}

#pagetop:hover img {
  transform: translateY(-0.4rem);
}
