@charset "UTF-8";
/*------------------------------
media query
------------------------------*/
/*------------------------------
変数の定義
--------------------------------*/
/*------------------------------
基本設定
--------------------------------*/
html,
body {
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

body {
  text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #28262d;
}

button {
  font-family: "Noto Sans JP", sans-serif;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

img {
  max-width: 100%;
  height: auto;
}

p, span, a,
h1, h2, h3, h4, h5, h6,
li, dt, dd,
th, td, caption,
figcaption, blockquote, summary, details,
label, button, input, textarea, select, option,
strong, em, b, i, small, sub, sup, mark, u, s, q, cite, code, pre, time, abbr {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-feature-settings: "palt";
}

.br_word {
  display: inline-block;
}

.pc_br {
  display: block;
}

.sp_br {
  display: none;
}

.f_80 {
  font-size: 80%;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@media all and (max-width: 768px) {
  .pc_br {
    display: none;
  }
  .sp_br {
    display: block;
  }
}
.pc_img {
  display: block;
}

.sp_img {
  display: none;
}

.se_none {
  display: none;
}

@media all and (max-width: 768px) {
  .pc_img {
    display: none;
  }
  .sp_img {
    display: block;
  }
}
.se_br {
  display: none;
}
@media all and (max-width: 374px) {
  .se_br {
    display: block !important;
  }
}

.sm_br {
  display: none;
}
@media all and (max-width: 449px) {
  .sm_br {
    display: block !important;
  }
}

@media all and (max-width: 350px) {
  .se_none {
    display: block;
  }
}
/*----------------------------------
wrapper
----------------------------------*/
.wrapper {
  position: relative;
  background: #fff;
  max-width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden;
}
@media all and (max-width: 768px) {
  .wrapper {
    min-width: auto;
  }
}

/*----------------------------------
header
----------------------------------*/
header {
  width: 1200px;
  position: relative;
}
@media all and (max-width: 768px) {
  header {
    width: 100%;
  }
}

.header_bar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(90vw, 691.2px);
  max-width: none;
  /* xl以下: KVのピンク領域 (min(18.22vw, 140px)) にメニューボタン (clamp(50px,10.4vw,80px)) を垂直中央に収める */
  padding: max(2px, (min(18.22vw, 140px) - clamp(50px, 10.4vw, 80px)) / 2) 10px;
}
@media screen and (min-width: 1200px) {
  .header_bar {
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 30px clamp(30px, 2.5vw, 50px) 0;
  }
}

body.fixed .header_bar {
  z-index: 140;
}

.header_bar_logo {
  margin: 0;
  flex: 0 1 auto;
  width: clamp(94px, 18.8vw, 145px);
}
@media screen and (min-width: 1200px) {
  .header_bar_logo {
    width: 120px;
  }
}
.header_bar_logo a {
  display: block;
  line-height: 0;
}
.header_bar_logo img {
  width: 100%;
  display: block;
}

.menu_btn {
  flex: 0 0 auto;
  --menu-line-length: 40.56%;
  --menu-stack: calc(clamp(2px, 0.39vw, 3px) + clamp(5px, 0.91vw, 7px));
  width: clamp(50px, 10.4vw, 80px);
  height: clamp(50px, 10.4vw, 80px);
  border: clamp(2px, 0.39vw, 3px) solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 130;
}
@media screen and (min-width: 1200px) {
  .menu_btn {
    --menu-line-length: 44%;
    --menu-stack: calc(2px + 5px);
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
  }
}
.menu_btn.active .menu_btn_line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.menu_btn.active .menu_btn_line:nth-child(2) {
  opacity: 0;
}
.menu_btn.active .menu_btn_line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.menu_btn_line {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: var(--menu-line-length);
  height: clamp(2px, 0.39vw, 3px);
  margin-left: calc(var(--menu-line-length) * -0.5);
  margin-top: -1px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.2s ease-out, opacity 0.15s ease-out, background-color 0.2s ease-out;
  pointer-events: none;
}
@media screen and (min-width: 1200px) {
  .menu_btn_line {
    height: 2px;
  }
}

.menu_btn_line:nth-child(1) {
  transform: translateY(calc(var(--menu-stack) * -1));
}

.menu_btn_line:nth-child(2) {
  transform: translateY(0);
}

.menu_btn_line:nth-child(3) {
  transform: translateY(var(--menu-stack));
}

html.fixed,
body.fixed {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

/*----------------------------------
global_menu
----------------------------------*/
.global_menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 768px);
  height: 100%;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  background: linear-gradient(0deg, #faeaee 0%, #ffd3dc 100%);
  padding: clamp(120px, 26vw, 200px) 0 0;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .global_menu {
    padding: 186px 0 60px;
  }
}
@media screen and (min-width: 1200px) {
  .global_menu {
    left: 0;
    transform: none;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
  }
}
.global_menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global_menu_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7.8vw, 60px);
  width: min(90vw - 20px, 671.2px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .global_menu_list {
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .global_menu_list {
    max-width: 688px;
  }
}

.global_menu_link {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 2.5vw, 20px);
  color: #d50057;
  font-weight: 500;
  font-size: clamp(20px, 5.2vw, 40px);
  line-height: 1.3;
}
@media screen and (min-width: 769px) {
  .global_menu_link {
    font-size: 20px;
  }
}

.global_menu_link--disabled {
  color: #ffa2c9;
  pointer-events: none;
}

.global_menu_icon {
  width: clamp(22px, 4.68vw, 36px);
  text-align: center;
  line-height: 1;
}
.global_menu_icon svg {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  .global_menu_icon {
    width: 22px;
  }
}

.global_menu_text {
  display: block;
}

.global_menu_text--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.global_menu_text--stack small {
  font-size: clamp(16px, 3.9vw, 20px);
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .global_menu_text--stack small {
    font-size: 16px;
  }
}
.global_menu_text--stack strong {
  font-size: inherit;
  font-weight: 500;
}

/*----------------------------------
footer
----------------------------------*/
footer.wrapper {
  background-color: #D50057;
  padding: 30px 0;
  margin-top: 0px;
}
@media screen and (min-width: 450px) {
  footer.wrapper {
    margin-top: 0px;
  }
}
@media screen and (min-width: 769px) {
  footer.wrapper {
    margin-top: 0px;
  }
}
footer .footer-wrap .top {
  text-align: center;
}
footer .footer-wrap .top a {
  position: relative;
  color: #fff;
}
footer .footer-wrap .top a::before {
  position: absolute;
  content: "";
  background-image: url(../img/common/arrow_t.png);
  top: -10px;
  left: 50%;
  transform: translatex(-50%);
  width: 17px;
  height: 10px;
}
footer .footer-wrap .sns-list {
  width: calc(100% - 50px);
  padding: 20px 25px;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
@media screen and (min-width: 450px) {
  footer .footer-wrap .sns-list {
    width: 100%;
    max-width: 400px;
    padding: 30px 25px 25px;
    justify-content: space-between;
  }
}
footer .footer-wrap .sns-list li {
  width: 100%;
  max-width: 50px;
  padding: 0 5px;
}
@media screen and (min-width: 450px) {
  footer .footer-wrap .sns-list li {
    padding: 0;
  }
}
footer .footer-wrap .sns-list li a.sp-view {
  display: block;
}
@media screen and (min-width: 769px) {
  footer .footer-wrap .sns-list li a.sp-view {
    display: none;
  }
}
footer .footer-wrap .sns-list li a.pc-view {
  display: none;
}
@media screen and (min-width: 769px) {
  footer .footer-wrap .sns-list li a.pc-view {
    display: block;
  }
}
footer .footer-wrap .logo {
  text-align: center;
}
footer .footer-wrap .logo img {
  width: 100%;
  max-width: 90px;
}

/*----------------------------------
pagetop_btn
----------------------------------*/
.pagetop_btn {
  position: fixed;
  z-index: 110;
  right: clamp(10px, 2.5vw, 20px);
  bottom: clamp(10px, 2.5vw, 20px);
  width: clamp(48px, 12vw, 80px);
  height: clamp(48px, 12vw, 80px);
  border-radius: 50%;
  background: #FFA2C9;
  border: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  text-decoration: none;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  pointer-events: none;
}
.pagetop_btn svg {
  display: block;
  flex-shrink: 0;
  width: clamp(16px, 4vw, 24px);
  height: auto;
}
@media screen and (min-width: 769px) {
  .pagetop_btn {
    right: calc((100vw - 768px) / 2 + 20px);
  }
}
.pagetop_btn:hover {
  opacity: 0.8;
}
.pagetop_btn.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pagetop_btn.is-hide-footer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}