@charset "UTF-8";
/**
  * app.scss
  * 2026/03/23 追加スタイル
  */
/*================================================
 *  fix-btn --round
 ================================================*/
#fix_btn.fix-btn.--round {
  position: fixed;
  bottom: 1.2rem;
  right: 3rem;
  z-index: 10;
}
#fix_btn.fix-btn.--round .fix-btn__toggle,
#fix_btn.fix-btn.--round .fix-btn__close {
  display: none;
}
#fix_btn.fix-btn.--round .fix-btn__panel {
  position: static;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
#fix_btn.fix-btn.--round ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#fix_btn.fix-btn.--round .fix-buttons__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.4rem;
  font-family: var(--zen-old);
  line-height: 1.4;
  padding: 0.5rem;
  position: relative;
  transition: transform 0.3s ease, filter 0.3s ease;
}
#fix_btn.fix-btn.--round .fix-buttons__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 2px dashed currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
#fix_btn.fix-btn.--round .fix-buttons__item a .appeal {
  display: block;
  font-size: 0.8rem;
}
#fix_btn.fix-btn.--round {
  /* .fix-buttons__item a::after {
    position: absolute;
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    right: 1.6rem;
    bottom: 1.6rem;
    background-image: url(../images/btn_fix.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.9;
  } */
}
#fix_btn.fix-btn.--round .fix-buttons__item a:hover {
  transform: scale(1.0833);
  background: var(--color-white);
  color: var(--btn-color, var(--color-black));
  filter: none;
}
#fix_btn.fix-btn.--round .fix-buttons__item a:hover::before {
  opacity: 1;
  animation: fixBtnRotate 3s linear infinite;
}
#fix_btn.fix-btn.--round .fix-buttons__item--navy a {
  background: var(--color-navy);
  --btn-color: var(--color-navy);
  --btn-bg: var(--color-navy);
}
#fix_btn.fix-btn.--round .fix-buttons__item--brown a {
  background: var(--color-brown);
  --btn-color: var(--color-brown);
  --btn-bg: var(--color-brown);
}
#fix_btn.fix-btn.--round .fix-buttons__item--green a {
  background: var(--color-green);
  --btn-color: var(--color-green);
  --btn-bg: var(--color-green);
}
#fix_btn.fix-btn.--round .fix-buttons__item--primary a {
  background: var(--color-primary);
  --btn-color: var(--color-primary);
  --btn-bg: var(--color-primary);
}
@keyframes fixBtnRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media only screen and (max-width: 768px) {
  #fix_btn.fix-btn.--round {
    bottom: 0;
    right: 0;
  }
  #fix_btn.fix-btn.--round .fix-btn__toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--color-navy);
    color: var(--color-white);
    border: none;
    border-radius: 50% 0 0 0;
    padding: 35px 10px 15px 20px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  #fix_btn.fix-btn.--round .fix-btn__toggle-en {
    font-family: var(--cormorant);
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  #fix_btn.fix-btn.--round .fix-btn__toggle-ja {
    font-family: var(--zen-old);
    font-size: 12px;
    line-height: 1;
  }
  #fix_btn.fix-btn.--round .fix-btn__toggle-icon {
    margin-top: 4px;
    width: 24px;
    height: auto;
    filter: brightness(0) invert(1);
  }
  #fix_btn.fix-btn.--round .fix-btn__panel {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 120px;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  #fix_btn.fix-btn.--round.is-open .fix-btn__panel {
    transform: translateX(0);
    pointer-events: auto;
    color: var(--color-navy);
  }
  #fix_btn.fix-btn.--round.is-open .fix-btn__toggle {
    transform: translateX(-120px);
    pointer-events: auto;
    border-top: 2px dotted var(--color-navy);
    border-left: 2px dotted var(--color-navy);
    background-color: var(--color-white);
    color: var(--color-navy);
  }
  #fix_btn.fix-btn.--round.is-open .fix-btn__toggle-icon {
    filter: none;
  }
  #fix_btn.fix-btn.--round .fix-btn__close {
    display: grid;
    place-items: center;
    width: 6.4rem;
    height: 6.4rem;
    margin-left: auto;
    background: #e24444;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 8px 0 0 0;
  }
  #fix_btn.fix-btn.--round .fix-btn__close::before,
  #fix_btn.fix-btn.--round .fix-btn__close::after {
    content: "";
    position: absolute;
    width: 3.4rem;
    height: 0.3rem;
    background: var(--color-white);
  }
  #fix_btn.fix-btn.--round .fix-btn__close::before {
    transform: rotate(45deg);
  }
  #fix_btn.fix-btn.--round .fix-btn__close::after {
    transform: rotate(-45deg);
  }
  #fix_btn.fix-btn.--round ul {
    flex-direction: column;
    gap: 0;
    width: 120px;
    height: 360px;
  }
  #fix_btn.fix-btn.--round .fix-buttons__item {
    width: 100%;
    flex: 1;
  }
  #fix_btn.fix-btn.--round .fix-buttons__item a {
    width: 100%;
    height: 100%;
    border-radius: 0;
    gap: 0.6rem;
    padding: 3rem 2.4rem;
    transition: none;
    font-size: 12.5px;
  }
  #fix_btn.fix-btn.--round .fix-buttons__item a .appeal {
    font-size: 8px;
  }
  #fix_btn.fix-btn.--round .fix-buttons__item a::before {
    content: none;
  }
  #fix_btn.fix-btn.--round .fix-buttons__item a:hover {
    transform: none;
    background: var(--btn-bg, transparent);
    color: inherit;
  }
  #fix_btn.fix-btn.--round .fix-buttons__item + .fix-buttons__item a {
    border-top: 0.2rem dashed var(--color-white);
  }
}

/*================================================
 *  fix-btn --square
 ================================================*/
#fix_btn.fix-btn.--square {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  background: var(--color-navy);
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 21.6rem;
  height: 14rem;
  display: grid;
  place-content: center;
  transition: 0.4s;
  padding: 0 1.8rem;
}
#fix_btn.fix-btn.--square:has(a:hover) {
  background: var(--color-primary);
}
#fix_btn.fix-btn.--square::before {
  position: absolute;
  content: "Entry";
  font-family: var(--cormorant);
  bottom: -2.2rem;
  right: 0;
  font-size: 8rem;
  color: var(--color-white);
  opacity: 0.13;
  font-weight: bold;
  line-height: normal;
}
#fix_btn.fix-btn.--square ul li {
  position: relative;
  transition: all 0.35s;
}
#fix_btn.fix-btn.--square ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
#fix_btn.fix-btn.--square ul li:hover::after {
  transform: scaleX(1);
}
#fix_btn.fix-btn.--square ul li a {
  color: var(--color-white);
  font-family: var(--zen-old);
  font-size: 1.6rem;
  position: relative;
  padding-right: 4rem;
  line-height: 2.1;
}
#fix_btn.fix-btn.--square ul li a:hover {
  transition: 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#fix_btn.fix-btn.--square ul li a::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1/1;
  background: var(--color-white);
  border-radius: 10000px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/btn_fix.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 2rem;
}
#fix_btn.fix-btn.--square ul li a:hover::before {
  background-image: none;
}
#fix_btn.fix-btn.--square ul li a::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/btn_fix.png);
  width: 2rem;
  height: 2rem;
  top: 50%;
  right: 0;
  transform: translate(-20%, -20%);
  opacity: 0;
}
#fix_btn.fix-btn.--square ul li a:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
  transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
  background-image: url(../images/btn_arrow_gd.png);
}
#fix_btn.fix-btn.--square ul li a span {
  position: relative;
  padding-bottom: 0.5rem;
}
@media only screen and (max-width: 768px) {
  #fix_btn.fix-btn.--square {
    bottom: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 16rem;
  }
  #fix_btn.fix-btn.--square::before {
    bottom: -6.2rem;
    right: 0;
    font-size: 17rem;
  }
  #fix_btn.fix-btn.--square ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0rem 5rem;
  }
  #fix_btn.fix-btn.--square ul li a {
    font-size: 3.2rem;
    padding-right: 5.6rem;
    line-height: var(--line-middle);
  }
  #fix_btn.fix-btn.--square ul li a:hover::before {
    background-image: url(../images/btn_fix.png);
  }
  #fix_btn.fix-btn.--square ul li a::before {
    width: 3.6rem;
    height: 3.6rem;
    background-size: 3.6rem;
  }
  #fix_btn.fix-btn.--square ul li a::after {
    content: none;
  }
  #fix_btn.fix-btn.--square ul.job {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 5rem;
  }
}/*# sourceMappingURL=app.css.map */