@charset "UTF-8";
/* ======================= VARIABLE ====== */
/* ======================= IMPORT ====== */
/*=================

      mixin.scss

=======================*/
/*=================

      common.scss

=======================*/
.common_wrap {
  padding: 0 16px;
}

.common_inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.common_inner_s {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.common_right_wrap {
  max-width: calc(100% - (50% - (1100px / 2)));
  width: calc(100% - 16px);
  margin-left: auto;
  margin-right: 0;
}

.common_left_wrap {
  max-width: calc(100% - (50% - (1100px / 2)));
  width: calc(100% - 16px);
  margin-left: 0;
  margin-right: auto;
}

/* フェードイン(初期値) */
.scroll_up {
  opacity: 0;
  /* 最初は非表示 */
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  /* 下に50pxの位置から */
  -webkit-transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, transform .8s;
  transition: opacity .8s, transform .8s, -webkit-transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.scroll_up.is-show {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  -webkit-transform: translateY(0);
  transform: translateY(0);
  /* 30px上に移動する */
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  /* フェード開始を0.2秒遅らせる */
}

.common_btn_wrap {
  margin: 80px auto 0;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .common_btn_wrap {
    margin: 40px auto 0;
  }
}

.common_btn_wrap.mt_64 {
  margin: 64px auto 0;
}

.common_btn_wrap.mt_48 {
  margin: 48px auto 0;
}

.common_btn_wrap.mt_104 {
  margin: 104px auto 0;
}

@media only screen and (max-width: 640px) {
  .common_btn_wrap.mt_104 {
    margin: 72px auto 0;
  }
}

.common_btn_wrap.flex_d_c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.common_btn_wrap.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
}

.common_btn_wrap.flex a {
  margin: 0 0;
}

.common_more_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  min-width: 280px;
  height: 64px;
  background-color: #FFF;
  border-radius: 50px;
  border: 2px solid #F66A6B;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .common_more_btn {
    height: 56px;
  }
}

@media only screen and (min-width: 960px) {
  .common_more_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

.common_more_btn.w_100 {
  width: 100%;
}

.common_more_btn .common_more_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #F66A6B;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.common_more_btn .common_more_btn_arrow {
  width: 6px;
}

.common_more_btn .common_more_btn_arrow img {
  width: 100%;
}

.common_more_btn.back {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.common_cancel_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  min-width: 280px;
  height: 64px;
  background-color: #D6D6D6;
  border-radius: 50px;
  border: 2px solid #FFF;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .common_cancel_btn {
    height: 56px;
  }
}

@media only screen and (min-width: 960px) {
  .common_cancel_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

.common_cancel_btn .common_cancel_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #727272;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.common_cancel_btn .common_cancel_btn_arrow {
  width: 6px;
}

.common_cancel_btn .common_cancel_btn_arrow img {
  width: 100%;
}

.common_cancel_btn.back {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.common_register_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 280px;
  height: 64px;
  border-radius: 40px;
  position: relative;
  background: linear-gradient(90deg, #ff6969 0%, #fa9d73 54.19%, #ff6980 100%);
  border: 2px solid #FFF;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .common_register_btn {
    height: 56px;
  }
}

@media only screen and (min-width: 960px) {
  .common_register_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

.common_register_btn .common_register_btn_comment_wrap {
  position: absolute;
  bottom: 94%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.common_register_btn .common_register_btn_comment_wrap .common_register_btn_comment {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 40px;
  border: 2px solid #262626;
  background-color: #FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #262626;
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
}

.common_register_btn .common_register_btn_comment_wrap .common_register_btn_comment::before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top: 7px solid #FFF;
  z-index: 2;
}

.common_register_btn .common_register_btn_comment_wrap .common_register_btn_comment:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 9px solid #262626;
  z-index: 1;
}

.common_register_btn .common_register_btn_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

.common_register_btn .common_register_btn_content .common_register_btn_free {
  display: inline-block;
  padding: 4px 12px;
  background-color: #FFF;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #F66A6B;
  line-height: 1.5;
}

.common_register_btn .common_register_btn_content .common_register_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.common_register_btn .common_register_btn_content .common_register_btn_img {
  width: 6px;
}

.common_register_btn .common_register_btn_content .common_register_btn_img img {
  width: 100%;
}

.common_sec_title_wrap {
  text-align: center;
  position: relative;
  padding: 20px 0;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .common_sec_title_wrap {
    margin: 0 0 40px;
  }
}

.common_sec_title_wrap .bg_text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 174px;
  color: #F8F8F8;
  line-height: 1.5;
  z-index: 0;
  white-space: nowrap;
}

@media only screen and (max-width: 640px) {
  .common_sec_title_wrap .bg_text {
    font-size: 88px;
  }
}

.common_sec_title_wrap .common_sec_title_en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #F66A6B;
  line-height: 1.5;
  margin: 0 0 12px;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .common_sec_title_wrap .common_sec_title_en {
    font-size: 16px;
    margin: 0 0 8px;
  }
}

.common_sec_title_wrap .common_sec_title_ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  color: #262626;
  line-height: 1.5;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .common_sec_title_wrap .common_sec_title_ja {
    font-size: 32px;
  }
}

.common_sec_title_wrap.c_white .bg_text {
  color: rgba(255, 255, 255, 0.4);
}

.common_sec_title_wrap.c_white .common_sec_title_en {
  color: #FFF;
}

.common_sec_title_wrap.bg_white .bg_text {
  color: #FFF;
}

.common_sec_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .common_sec_text {
    margin: 0 0 40px;
  }
}

.common_register_sec {
  background-image: url(../images/common/bg_register.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 72px 0;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .common_register_sec {
    padding: 40px 0;
  }
}

.common_register_sec .common_register_sec_title_ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  color: #FFF;
  line-height: 1.5;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .common_register_sec .common_register_sec_title_ja {
    font-size: 32px;
    margin: 0 0 8px;
  }
}

.common_register_sec .common_register_sec_title_en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .common_register_sec .common_register_sec_title_en {
    font-size: 16px;
    margin: 0 0 24px;
  }
}

.common_register_sec .common_register_sec_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.common_title_wrap {
  padding: 0 0 0 28px;
  position: relative;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .common_title_wrap {
    padding: 0 0 0 20px;
    margin: 0 0 24px;
  }
}

.common_title_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F66A6B), to(#F78E53));
  background: linear-gradient(180deg, #F66A6B 0%, #F78E53 100%);
}

.common_title_wrap .common_title_ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 4px;
}

@media only screen and (max-width: 640px) {
  .common_title_wrap .common_title_ja {
    font-size: 26px;
  }
}

.common_title_wrap .common_title_en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #F66A6B;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .common_title_wrap .common_title_en {
    font-size: 13px;
  }
}

/*pankuzu*/
.pankuzu_wrap {
  background-color: #F8F8F8;
  padding: 12px 0;
}

@media only screen and (max-width: 640px) {
  .pankuzu_wrap {
    padding: 8px 0;
  }
}

.pankuzu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pankuzu_list .pankuzu_item {
  margin: 0 36px 0 0;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #262626;
  line-height: 1.3;
  white-space: nowrap;
}

.pankuzu_list .pankuzu_item:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -20px;
  width: 4px;
  height: 6px;
  background-image: url(../images/common/icon_arrow_b.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.pankuzu_list .pankuzu_item:last-child {
  margin: 0 0 0 0;
}

.pankuzu_list .pankuzu_item:last-child:after {
  content: none;
}

.pankuzu_list .pankuzu_item .pankuzu_link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #262626;
  line-height: 1.3;
  text-decoration: underline;
}

/*common_page_title_block*/
.common_page_title_block {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.common_page_title_block.faq {
  background-image: url(../images/faq/bg_title.jpg);
}

.common_page_title_block.column {
  background-image: url(../images/column/bg_title.jpg);
}

.common_page_title_block.contact {
  background-image: url(../images/contact/bg_title.jpg);
}

.common_page_title_block.register {
  background-image: url(../images/register/bg_title.jpg);
}

.common_page_title_block .common_inner {
  padding: 40px 0;
  min-height: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 640px) {
  .common_page_title_block .common_inner {
    min-height: 200px;
  }
}

.common_page_title_block .common_inner .common_page_title_content {
  text-align: center;
  position: relative;
  padding: 20px 0;
}

.common_page_title_block .common_inner .common_page_title_content .common_page_title_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 174px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  z-index: 0;
  white-space: nowrap;
}

@media only screen and (max-width: 640px) {
  .common_page_title_block .common_inner .common_page_title_content .common_page_title_bg {
    font-size: 88px;
  }
}

.common_page_title_block .common_inner .common_page_title_content .common_page_title_en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #F66A6B;
  line-height: 1.5;
  margin: 0 0 12px;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .common_page_title_block .common_inner .common_page_title_content .common_page_title_en {
    font-size: 16px;
    margin: 0 0 8px;
  }
}

.common_page_title_block .common_inner .common_page_title_content .common_page_title_ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  color: #FFF;
  line-height: 1.5;
  position: relative;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 640px) {
  .common_page_title_block .common_inner .common_page_title_content .common_page_title_ja {
    font-size: 32px;
  }
}

.common_pageing_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 80px 0 0;
}

@media only screen and (max-width: 640px) {
  .common_pageing_list {
    margin: 40px 0 0;
  }
}

.common_pageing_list .common_pageing_item {
  margin: 0 10px;
}

@media only screen and (max-width: 640px) {
  .common_pageing_list .common_pageing_item {
    margin: 0 8px;
  }
}

.common_pageing_list .common_pageing_item .common_pageing_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #F66A6B;
  border-radius: 50%;
  background-color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #F66A6B;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 640px) {
  .common_pageing_list .common_pageing_item .common_pageing_link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media only screen and (min-width: 960px) {
  .common_pageing_list .common_pageing_item .common_pageing_link:hover {
    background-color: #F66A6B;
    color: #FFF;
  }
}

.common_pageing_list .common_pageing_item .common_pageing_link.active {
  background-color: #F66A6B;
  color: #FFF;
}

.common_pageing_list .common_pageing_item .common_pageing_item_dot {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #F66A6B;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 640px) {
  .common_pageing_list .common_pageing_item .common_pageing_item_dot {
    font-size: 16px;
  }
}

.common_form_box {
  padding: 72px 24px;
  background-color: #FFF;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .common_form_box {
    padding: 24px 16px;
  }
}

.common_form_box.border {
  border: 1px solid #F66A6B;
}

.common_form_box .common_form_box_content {
  max-width: 900px;
  margin: 0 auto;
}

.common_form_list .common_form_item {
  padding: 0 0 32px;
  margin: 0 0 32px;
  border-bottom: 1px solid #E3E3E3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item {
    display: block;
    padding: 0 0 24px;
    margin: 0 0 24px;
  }
}

.common_form_list .common_form_item:last-child {
  margin: 0 0 0;
}

.common_form_list .common_form_item .common_form_item_title_block {
  width: 200px;
  margin: 20px 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_title_block {
    width: 100%;
    margin: 0 0 16px 0;
  }
}

.common_form_list .common_form_item .common_form_item_title_block .common_form_item_required {
  display: inline-block;
  white-space: nowrap;
  padding: 4px 12px;
  background-color: #EB4242;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.3;
}

.common_form_list .common_form_item .common_form_item_title_block .common_form_item_optional {
  display: inline-block;
  white-space: nowrap;
  padding: 4px 12px;
  background-color: #A0A0A0;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.3;
}

.common_form_list .common_form_item .common_form_item_title_block .common_form_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

.common_form_list .common_form_item .common_form_item_title_block .common_form_item_title .t_small {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
}

.common_form_list .common_form_item .common_form_item_input_block {
  width: calc(100% - 240px);
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_input_block {
    width: 100%;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_input {
  width: 100%;
  padding: 20px 16px;
  background-color: #F4F4F4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  border: none;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_input_block .common_form_item_input {
    padding: 16px 12px;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_input::-webkit-input-placeholder {
  color: #727272;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_input::-ms-input-placeholder {
  color: #727272;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_input::placeholder {
  color: #727272;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_input:focus {
  outline: 2px solid #F66A6B;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_textarea {
  width: 100%;
  height: 300px;
  padding: 20px 16px;
  background-color: #F4F4F4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  border: none;
  resize: none;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_input_block .common_form_item_textarea {
    padding: 16px 12px;
    height: 220px;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_textarea::-webkit-input-placeholder {
  color: #727272;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_textarea::-ms-input-placeholder {
  color: #727272;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_textarea::placeholder {
  color: #727272;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_textarea:focus {
  outline: 2px solid #F66A6B;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_select {
  width: 100%;
  padding: 20px 32px 20px 16px;
  background-color: #F4F4F4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #727272;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/common/icon_arrow_select.svg);
  background-repeat: no-repeat;
  background-size: 12px 6px;
  background-position: right 16px center;
  border: none;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_input_block .common_form_item_select {
    padding: 16px 30px 16px 12px;
    background-position: right 12px center;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_select.active {
  color: #262626;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_select:focus {
  outline: 2px solid #F66A6B;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_tag_list .common_form_item_tag_item .common_form_item_tag_label .common_form_item_tag_checkbox {
  display: none;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_tag_list .common_form_item_tag_item .common_form_item_tag_label .common_form_item_tag_checkbox:checked + .common_form_item_tag_item_text {
  border: 1px solid #F66A6B;
  background-color: #fffafa;
  color: #F66A6B;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_tag_list .common_form_item_tag_item .common_form_item_tag_label .common_form_item_tag_item_text {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #E3E3E3;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 1.3;
  background-color: #FFF;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_tag_list .common_form_item_tag_item .common_form_item_tag_label .common_form_item_tag_item_text:hover {
  border: 1px solid #F66A6B;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_note_box {
  padding: 24px;
  border: 1px solid #F66A6B;
  border-radius: 10px;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_input_block .common_form_item_note_box {
    padding: 16px;
    margin: 0 0 16px;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_note_box .common_form_item_note_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_input_block .common_form_item_note_box .common_form_item_note_box_title {
    font-size: 16px;
    margin: 0 0 12px;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_note_box .common_form_item_note_list {
  list-style: disc;
  padding: 0 0 0 20px;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_note_box .common_form_item_note_list .common_form_item_note_item {
  margin: 0 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_input_block .common_form_item_note_box .common_form_item_note_list .common_form_item_note_item {
    margin: 0 0 8px;
    font-size: 14px;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_note_box .common_form_item_note_list .common_form_item_note_item:last-child {
  margin: 0 0 0;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap {
  margin: 0 0 24px;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #E3E3E3;
  background-color: #F8F8F8;
  margin: 0 0 16px;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box:last-child {
  margin: 0 0 0;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 16px;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 1.5;
  margin: 0 0 16px;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_label {
  display: inline-block;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_label {
    display: block;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_label.common_sp640 {
  display: none;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_label.common_sp640 {
    display: block;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_label .common_form_item_file {
  display: none;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_label .common_form_item_file_came {
  display: none;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_label .common_form_item_file_text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 4px;
  width: 200px;
  height: 48px;
  border: 1px solid #262626;
  background-color: #FFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_label .common_form_item_file_text:hover {
    background-color: #f5f5f5;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 24px;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: dashed 1px #E3E3E3;
  border-radius: 10px;
  width: 100%;
  min-height: 220px;
  padding: 16px;
  background-color: #f1f1f1;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_img .common_form_item_file_img_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 1.5;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_box_wrap .common_form_item_file_box .common_form_item_file_img .common_form_item_file_preview_img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 240px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_point_box {
  padding: 24px;
  border: 1px solid #E3E3E3;
  background-color: #FFF;
  border-radius: 10px;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_point_box {
    padding: 16px;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_point_box .common_form_item_file_point_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_point_box .common_form_item_file_point_box_title {
    font-size: 16px;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_point_box .common_form_item_file_point_list {
  list-style: disc;
  padding: 0 0 0 20px;
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_point_box .common_form_item_file_point_list .common_form_item_file_point_item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_point_box .common_form_item_file_point_list .common_form_item_file_point_item {
    font-size: 14px;
    margin: 0 0 8px;
  }
}

.common_form_list .common_form_item .common_form_item_input_block .common_form_item_file_point_box .common_form_item_file_point_list .common_form_item_file_point_item:last-child {
  margin: 0 0 0;
}

.common_form_box_content_block_wrap .common_form_box_content_block {
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .common_form_box_content_block_wrap .common_form_box_content_block {
    margin: 0 0 40px;
  }
}

.common_form_box_content_block_wrap .common_form_box_content_block:last-child {
  margin: 0 0 0;
}

.common_form_box_content_block_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .common_form_box_content_block_text {
    font-size: 14px;
    margin: 0 0 24px;
  }
}

.common_form_error_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #EB4242;
  line-height: 1.5;
  margin: 16px 0 0;
}

.common_form_error_text.center {
  text-align: center;
}

.photo-upload__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.photo-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.3;
  border-radius: 8px;
  overflow: hidden;
  background: #F4F4F4;
  border: 1px solid #E3E3E3;
}

.photo-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.photo-card__remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.photo-card__remove:hover {
  background: rgba(0, 0, 0, 0.7);
}

.photo-add {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.3;
  border-radius: 8px;
  background: #F4F4F4;
  border: 1px solid #E3E3E3;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.photo-add:hover {
  background: #ededed;
  border-color: #ddd;
}

.photo-add__icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid #F66A6B;
  border-radius: 50%;
}

.photo-add__icon::before,
.photo-add__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #F66A6B;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.photo-add__icon::before {
  width: 12px;
  height: 2px;
}

.photo-add__icon::after {
  width: 2px;
  height: 12px;
}

.photo-upload__input {
  display: none;
}

.photo-upload__count {
  margin-top: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #727272;
}

@media (max-width: 840px) {
  .photo-upload__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .photo-upload__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.common_form_submit_note {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .common_form_submit_note {
    font-size: 14px;
    margin: 0 0 8px;
  }
}

.common_form_submit_note a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

.common_submit_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  min-width: 280px;
  height: 64px;
  background-color: #F66A6B;
  border-radius: 50px;
  border: 2px solid #F66A6B;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .common_submit_btn {
    height: 56px;
  }
}

@media only screen and (min-width: 960px) {
  .common_submit_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

.common_submit_btn .common_submit_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.common_submit_btn .common_submit_btn_arrow {
  width: 6px;
}

.common_submit_btn .common_submit_btn_arrow img {
  width: 100%;
}

.common_submit_btn.left {
  margin: 0 auto 0 0;
}

.common_submit_btn.left.mb_24 {
  margin: 0 auto 24px 0;
}

.common_submit_btn.w_100 {
  width: 100%;
}

.common_submit_btn.bg_accent {
  background-color: #F78E53;
  border: none;
}

.common_btn_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
  margin: 80px 0 0;
}

@media only screen and (max-width: 840px) {
  .common_btn_flex {
    gap: 16px;
  }
}

@media only screen and (max-width: 640px) {
  .common_btn_flex {
    display: block;
    margin: 40px 0 0;
    text-align: center;
  }
}

.common_btn_flex .common_more_btn {
  margin: 0 0;
}

@media only screen and (max-width: 640px) {
  .common_btn_flex .common_more_btn {
    margin: 0 auto 8px;
  }
}

.common_btn_flex .common_submit_g_btn {
  margin: 0 0;
}

@media only screen and (max-width: 640px) {
  .common_btn_flex .common_submit_g_btn {
    margin: 0 auto;
  }
}

.common_submit_g_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  min-width: 280px;
  height: 64px;
  background: linear-gradient(90deg, #ff6969 0%, #fa9d73 54.19%, #ff6980 100%);
  border-radius: 50px;
  border: 2px solid #FFF;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.common_submit_g_btn.w_100 {
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .common_submit_g_btn {
    height: 56px;
  }
}

@media only screen and (min-width: 960px) {
  .common_submit_g_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

.common_submit_g_btn .common_submit_g_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.common_submit_g_btn .common_submit_g_btn_arrow {
  width: 6px;
}

.common_submit_g_btn .common_submit_g_btn_arrow img {
  width: 100%;
}

.common_page_top_sec {
  padding: 72px 0 120px;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .common_page_top_sec {
    padding: 40px 0 56px;
  }
}

.common_page_top_sec_title_wrap {
  text-align: center;
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .common_page_top_sec_title_wrap {
    margin: 0 0 40px;
  }
}

.common_page_top_sec_title_wrap .common_page_top_sec_title_en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #F66A6B;
  line-height: 1.5;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .common_page_top_sec_title_wrap .common_page_top_sec_title_en {
    font-size: 16px;
    margin: 0 0 8px;
  }
}

.common_page_top_sec_title_wrap .common_page_top_sec_title_ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .common_page_top_sec_title_wrap .common_page_top_sec_title_ja {
    font-size: 32px;
  }
}

.common_page_top_sec_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .common_page_top_sec_text {
    margin: 0 0 40px;
  }
}

.common_page_top_sec_text .t_bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.common_page_top_sec_text .c_main {
  color: #F66A6B;
}

.common_page_top_sec_text .t_bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.common_page_top_sec_text a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

.common_filter {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.7);
}

.common_popup_wrap {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 100000;
  width: 100%;
}

.common_popup_wrap .common_popup_inner {
  max-width: 640px;
  width: 90%;
  max-height: 90vh;
  position: relative;
  background-color: #FFF;
  border-radius: 20px;
  padding: 40px 64px;
  overflow-y: scroll;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .common_popup_wrap .common_popup_inner {
    padding: 40px 16px 32px;
  }
}

.common_popup_close_btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  padding: 4px;
}

@media only screen and (max-width: 640px) {
  .common_popup_close_btn {
    top: 4px;
    right: 4px;
  }
}

.common_popup_close_btn img {
  width: 100%;
}

.common_popup_content .common_popup_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
}

.common_popup_content .common_popup_title.c_main {
  color: #F66A6B;
}

.common_popup_content .common_popup_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
  margin: 24px 0 0;
}

@media only screen and (max-width: 640px) {
  .common_popup_content .common_popup_text {
    font-size: 14px;
  }
}

.common_popup_content .common_popup_btn_wrap {
  margin: 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}

.common_popup_content .common_popup_btn_wrap .common_popup_delete_btn {
  background-color: #9A9A9A;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px;
  height: 48px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-radius: 56px;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .common_popup_content .common_popup_btn_wrap .common_popup_delete_btn {
    font-size: 14px;
    padding: 24px 16px;
  }
}

@media only screen and (min-width: 960px) {
  .common_popup_content .common_popup_btn_wrap .common_popup_delete_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

.common_popup_content .common_popup_btn_wrap .common_popup_block_btn {
  background-color: #EB4242;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px;
  height: 48px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-radius: 56px;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .common_popup_content .common_popup_btn_wrap .common_popup_block_btn {
    font-size: 14px;
    padding: 24px 16px;
  }
}

@media only screen and (min-width: 960px) {
  .common_popup_content .common_popup_btn_wrap .common_popup_block_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

.common_popup_content .common_popup_btn_wrap .common_popup_block_cancel_btn {
  background-color: #F66A6B;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px;
  height: 48px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-radius: 56px;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .common_popup_content .common_popup_btn_wrap .common_popup_block_cancel_btn {
    font-size: 14px;
    padding: 24px 16px;
  }
}

@media only screen and (min-width: 960px) {
  .common_popup_content .common_popup_btn_wrap .common_popup_block_cancel_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

.common_popup_content .common_popup_btn_wrap .common_popup_cancel_btn {
  background-color: #FFF;
  border: 1px solid #727272;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px;
  height: 48px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #727272;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-radius: 56px;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .common_popup_content .common_popup_btn_wrap .common_popup_cancel_btn {
    font-size: 14px;
    padding: 24px 16px;
  }
}

@media only screen and (min-width: 960px) {
  .common_popup_content .common_popup_btn_wrap .common_popup_cancel_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

.common_popup_content .common_popup_btn_wrap .common_popup_complete_btn {
  background-color: #FFF;
  border: 1px solid #262626;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px;
  height: 48px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-radius: 56px;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .common_popup_content .common_popup_btn_wrap .common_popup_complete_btn {
    font-size: 14px;
    padding: 24px 16px;
  }
}

@media only screen and (min-width: 960px) {
  .common_popup_content .common_popup_btn_wrap .common_popup_complete_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

.common_popup_content .common_popup_btn_wrap .common_popup_more_btn {
  background-color: #FFF;
  border: 1px solid #F66A6B;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  height: 48px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #F66A6B;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-radius: 56px;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .common_popup_content .common_popup_btn_wrap .common_popup_more_btn {
    font-size: 14px;
    padding: 24px 16px;
  }
}

@media only screen and (min-width: 960px) {
  .common_popup_content .common_popup_btn_wrap .common_popup_more_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

.common_popup_content .common_popup_btn_wrap .common_popup_more_btn img {
  width: 6px;
}

.common_complete_popup_wrap {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 100000;
  width: 100%;
}

.common_complete_popup_wrap .common_complete_popup_inner {
  max-width: 640px;
  width: 90%;
  max-height: 90vh;
  position: relative;
  background-color: #FFF;
  border-radius: 20px;
  padding: 40px 64px;
  overflow-y: scroll;
  margin: 0 auto;
}

.common_copy_popup_wrap {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 100000;
  width: 100%;
}

.common_copy_popup_wrap .common_copy_popup_inner {
  max-width: 640px;
  width: 90%;
  max-height: 90vh;
  position: relative;
  background-color: #FFF;
  border-radius: 20px;
  padding: 40px 64px;
  overflow-y: scroll;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .common_copy_popup_wrap .common_copy_popup_inner {
    padding: 40px 24px 24px;
  }
}

/*=================

      header.scss

=======================*/
.header_wrap {
  width: 100%;
  height: 100px;
}

@media only screen and (max-width: 1400px) {
  .header_wrap {
    height: 72px;
  }
}

.header_wrap.mypage {
  height: 146px;
}

@media only screen and (max-width: 1400px) {
  .header_wrap.mypage {
    height: 118px;
  }
}

@media only screen and (max-width: 640px) {
  .header_wrap.mypage {
    height: 72px;
  }
}

@media only screen and (max-width: 1400px) {
  .header_wrap.mypage .sp_header_menu_inner {
    top: 118px;
    height: calc(100vh - 118px);
  }
}

@media only screen and (max-width: 640px) {
  .header_wrap.mypage .sp_header_menu_inner {
    top: 72px;
    height: calc(100vh - 72px);
    padding: 16px 0 88px;
  }
}

.pc_header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 1400px) {
  .pc_header_wrap {
    display: none !important;
  }
}

.pc_header_bordder {
  width: 100%;
  height: 6px;
  background-color: #F66A6B;
}

.pc_header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 94px;
  padding: 10px 48px;
}

.pc_header_inner .pc_header_logo_menu {
  display: flex;
  align-items: center;
}

.pc_header_inner .pc_header_logo_menu .pc_header_logo {
  display: block;
  width: 220px;
  margin: 0 64px 0 0;
}

.pc_header_inner .pc_header_logo_menu .pc_header_logo img {
  width: 100%;
}

.pc_header_inner .pc_header_logo_menu .pc_header_menu_list {
  display: flex;
  align-items: center;
}

.pc_header_inner .pc_header_logo_menu .pc_header_menu_list .pc_header_menu_item {
  margin: 0 32px 0 0;
}

.pc_header_inner .pc_header_logo_menu .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #262626;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  position: relative;
}

.pc_header_inner .pc_header_logo_menu .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link:after {
  content: "";
  position: absolute;
  bottom: .5em;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #262626;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 960px) {
  .pc_header_inner .pc_header_logo_menu .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link:hover:after {
    bottom: 0;
    opacity: 1;
  }
}

.pc_header_inner .pc_header_btn_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_login_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #F66A6B;
  line-height: 1.5;
  padding: 8px 16px;
  height: 54px;
  border-radius: 30px;
  border: 2px solid #F66A6B;
  box-shadow: 0 5px 0px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .pc_header_inner .pc_header_btn_wrap .pc_header_login_btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}

.pc_header_inner .pc_header_btn_wrap .pc_header_login_btn img {
  display: block;
  width: 20px;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_register_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  height: 54px;
  border-radius: 30px;
  border: 2px solid #FFF;
  box-shadow: 0 5px 0px rgba(0, 0, 0, 0.1);
  background: linear-gradient(90deg, #ff6969 0%, #fa9d73 54.19%, #ff6980 100%);
}

@media only screen and (min-width: 960px) {
  .pc_header_inner .pc_header_btn_wrap .pc_header_register_btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}

.pc_header_inner .pc_header_btn_wrap .pc_header_register_btn .pc_header_register_btn_free {
  display: inline-block;
  padding: 4px 12px;
  background-color: #FFF;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #F66A6B;
  line-height: 1.3;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_register_btn .pc_header_register_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_register_btn .pc_header_register_btn_arrow {
  width: 4px;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_register_btn .pc_header_register_btn_arrow img {
  width: 100%;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_logout_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #F66A6B;
  line-height: 1.5;
  padding: 8px 16px;
  height: 54px;
  border-radius: 30px;
  border: 2px solid #F66A6B;
  box-shadow: 0 5px 0px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .pc_header_inner .pc_header_btn_wrap .pc_header_logout_btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}

.pc_header_inner .pc_header_btn_wrap .pc_header_logout_btn img {
  display: block;
  width: 20px;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_mypage_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  padding: 8px 16px;
  height: 54px;
  border-radius: 30px;
  border: 2px solid #FFF;
  box-shadow: 0 5px 0px rgba(0, 0, 0, 0.1);
  background-color: #F66A6B;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .pc_header_inner .pc_header_btn_wrap .pc_header_mypage_btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}

.pc_header_inner .pc_header_btn_wrap .pc_header_mypage_btn img {
  display: block;
  width: 20px;
}

.sp_header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-top: 4px solid #F66A6B;
}

@media only screen and (max-width: 1400px) {
  .sp_header {
    display: block;
  }
}

.sp_header .sp_header_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 68px;
}

.sp_header .sp_header_content .sp_header_logo {
  display: block;
  width: 170px;
}

@media only screen and (max-width: 640px) {
  .sp_header .sp_header_content .sp_header_logo {
    width: 130px;
  }
}

.sp_header .sp_header_content .sp_header_logo img {
  display: block;
  width: 100%;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn {
  width: 48px;
  height: 40px;
  border-radius: 3px;
  background-color: #F66A6B;
  position: relative;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span {
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  height: 1px;
  background-color: #FFF;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span:nth-of-type(1n) {
  left: 12px;
  top: 16px;
  width: 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span:nth-of-type(2n) {
  left: 12px;
  top: 22px;
  width: 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn.active span:nth-of-type(1n) {
  top: 13px;
  left: 12px;
  -webkit-transform: translateY(6px) rotate(-32deg);
  transform: translateY(6px) rotate(-32deg);
  width: 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn.active span:nth-of-type(2n) {
  top: 25px;
  left: 12px;
  -webkit-transform: translateY(-6px) rotate(32deg);
  transform: translateY(-6px) rotate(32deg);
  width: 24px;
}

.sp_header_menu {
  display: none;
}

.sp_header_menu.active {
  display: block;
}

.sp_header_menu .sp_header_menu_inner {
  position: fixed;
  z-index: 1000;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  padding: 16px 0;
  background-color: #F8F8F8;
  overflow-y: scroll;
  scrollbar-width: none;
}

.sp_header_menu .sp_header_menu_inner::-webkit-scrollbar {
  display: none;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list {
  margin: 0 0 24px;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list .sp_header_menu_item .sp_header_menu_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px dashed #E3E3E3;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 16px 0 16px 20px;
  position: relative;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list .sp_header_menu_item .sp_header_menu_link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #262626;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_login_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #F66A6B;
  line-height: 1.5;
  padding: 8px 12px;
  height: 48px;
  border-radius: 30px;
  border: 2px solid #F66A6B;
  box-shadow: 0 5px 0px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_login_btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_login_btn img {
  display: block;
  width: 18px;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_register_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 12px;
  height: 48px;
  border-radius: 30px;
  border: 2px solid #FFF;
  box-shadow: 0 5px 0px rgba(0, 0, 0, 0.1);
  background: linear-gradient(90deg, #ff6969 0%, #fa9d73 54.19%, #ff6980 100%);
}

@media only screen and (min-width: 960px) {
  .sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_register_btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_register_btn .sp_header_register_btn_free {
  display: inline-block;
  padding: 4px 12px;
  background-color: #FFF;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #F66A6B;
  line-height: 1.3;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_register_btn .sp_header_register_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_register_btn .sp_header_register_btn_arrow {
  width: 4px;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_register_btn .sp_header_register_btn_arrow img {
  width: 100%;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_logout_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #F66A6B;
  line-height: 1.5;
  padding: 8px 12px;
  height: 48px;
  border-radius: 30px;
  border: 2px solid #F66A6B;
  box-shadow: 0 5px 0px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_logout_btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_logout_btn img {
  display: block;
  width: 18px;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_mypage_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #FFF;
  line-height: 1.5;
  padding: 8px 12px;
  height: 48px;
  border-radius: 30px;
  border: 2px solid #FFF;
  box-shadow: 0 5px 0px rgba(0, 0, 0, 0.1);
  background-color: #F66A6B;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_mypage_btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_wrap .sp_header_mypage_btn img {
  display: block;
  width: 18px;
}

.mypage_header {
  position: fixed;
  top: 100px;
  left: 0;
  height: 46px;
  background-color: #F66A6B;
  width: 100%;
  z-index: 1000;
}

@media only screen and (max-width: 1400px) {
  .mypage_header {
    top: 72px;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_header {
    display: none;
  }
}

.mypage_header .common_inner {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mypage_header .common_inner .mypage_menu_list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mypage_header .common_inner .mypage_menu_list .mypage_menu_item .mypage_menu_link {
  display: block;
  text-align: center;
  padding: 4px 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #FFF;
  line-height: 1.3;
  letter-spacing: 0.05em;
  position: relative;
}

@media only screen and (max-width: 960px) {
  .mypage_header .common_inner .mypage_menu_list .mypage_menu_item .mypage_menu_link {
    font-size: 13px;
    padding: 4px 12px;
  }
}

.mypage_header .common_inner .mypage_menu_list .mypage_menu_item .mypage_menu_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 14px;
  background-color: #FFF;
}

@media only screen and (min-width: 960px) {
  .mypage_header .common_inner .mypage_menu_list .mypage_menu_item .mypage_menu_link:hover {
    color: rgba(255, 255, 255, 0.7);
  }
}

.mypage_header .common_inner .mypage_menu_list .mypage_menu_item:last-child .mypage_menu_link::before {
  content: none;
}

.mypage_header_sp {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

@media only screen and (max-width: 640px) {
  .mypage_header_sp {
    display: block;
  }
}

.mypage_header_sp .mypage_header_sp_list {
  display: flex;
  width: 100%;
  background-color: #F66A6B;
}

.mypage_header_sp .mypage_header_sp_list .mypage_header_sp_item {
  width: calc(100% / 5);
}

.mypage_header_sp .mypage_header_sp_list .mypage_header_sp_item .mypage_header_sp_link {
  display: block;
  width: 100%;
  padding: 4px;
  height: 59px;
}

.mypage_header_sp .mypage_header_sp_list .mypage_header_sp_item .mypage_header_sp_link .mypage_header_sp_link_img {
  width: 24px;
  margin: 0 auto 2px;
}

.mypage_header_sp .mypage_header_sp_list .mypage_header_sp_item .mypage_header_sp_link .mypage_header_sp_link_img img {
  width: 100%;
}

.mypage_header_sp .mypage_header_sp_list .mypage_header_sp_item .mypage_header_sp_link .mypage_header_sp_link_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  color: #FFF;
  line-height: 1.2;
}

/*=================

      footer.scss

=======================*/
.footer_wrap {
  background-color: #525252;
  padding: 96px 0;
}

@media only screen and (max-width: 640px) {
  .footer_wrap {
    padding: 40px 0;
  }
}

.footer_about_block {
  padding: 0 0 48px;
  margin: 0 0 48px;
  border-bottom: 1px solid #989898;
  display: flex;
  align-items: center;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .footer_about_block {
    display: block;
    padding: 0 0 24px;
    margin: 0 0 24px;
  }
}

.footer_about_block .footer_about_logo {
  display: block;
  width: 280px;
  margin: 0 96px 0 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 840px) {
  .footer_about_block .footer_about_logo {
    width: 200px;
    margin: 0 40px 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .footer_about_block .footer_about_logo {
    margin: 0 0 32px 0;
  }
}

.footer_about_block .footer_about_logo img {
  width: 100%;
}

.footer_about_block .footer_about_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .footer_about_block .footer_about_text {
    font-size: 14px;
  }
}

.footer_menu_block {
  padding: 0 0 48px;
  margin: 0 0 48px;
  border-bottom: 1px solid #989898;
}

@media only screen and (max-width: 640px) {
  .footer_menu_block {
    padding: 0 0 24px;
    margin: 0 0 24px;
  }
}

.footer_menu_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -16px;
}

.footer_menu_list .footer_menu_item {
  margin: 0 40px 16px 0;
}

.footer_menu_list .footer_menu_item .footer_menu_link {
  display: block;
  padding: 0 16px 0 0;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 640px) {
  .footer_menu_list .footer_menu_item .footer_menu_link {
    font-size: 14px;
  }
}

@media only screen and (min-width: 960px) {
  .footer_menu_list .footer_menu_item .footer_menu_link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

.footer_menu_list .footer_menu_item .footer_menu_link:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 5px;
  height: 9px;
  background-image: url(../images/common/icon_arrow_w.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer_column_saerch_list {
  margin: 32px 0 0;
}

.footer_column_saerch_list .footer_column_saerch_item {
  margin: 0 0 32px;
}

.footer_column_saerch_list .footer_column_saerch_item:last-child {
  margin: 0 0 0;
}

.footer_column_saerch_list .footer_column_saerch_item .footer_column_saerch_item_title {
  padding: 0 0 0 12px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 0 0 24px;
}

.footer_column_saerch_list .footer_column_saerch_item .footer_column_saerch_item_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(180deg, #F66A6B 0%, #F78E53 100%);
}

.footer_column_saerch_list .footer_column_saerch_item .footer_column_link_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -16px;
}

.footer_column_saerch_list .footer_column_saerch_item .footer_column_link_list .footer_column_link_item {
  margin: 0 32px 16px 0;
}

.footer_column_saerch_list .footer_column_saerch_item .footer_column_link_list .footer_column_link_item .footer_column_link_link {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media only screen and (min-width: 960px) {
  .footer_column_saerch_list .footer_column_saerch_item .footer_column_link_list .footer_column_link_item .footer_column_link_link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

.footer_sub_menu_copy {
  background-color: #313131;
  padding: 48px 0;
}

@media only screen and (max-width: 640px) {
  .footer_sub_menu_copy {
    padding: 32px 0;
  }
}

.footer_sub_menu_copy .footer_sub_menu_copy_content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media only screen and (max-width: 960px) {
  .footer_sub_menu_copy .footer_sub_menu_copy_content {
    display: block;
  }
}

.footer_sub_menu_copy .footer_sub_menu_copy_content .footer_sub_menu_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -16px;
}

@media only screen and (max-width: 960px) {
  .footer_sub_menu_copy .footer_sub_menu_copy_content .footer_sub_menu_list {
    margin: 0 0 16px;
    justify-content: center;
  }
}

.footer_sub_menu_copy .footer_sub_menu_copy_content .footer_sub_menu_list .footer_sub_menu_item {
  margin: 0 40px 16px 0;
}

@media only screen and (max-width: 840px) {
  .footer_sub_menu_copy .footer_sub_menu_copy_content .footer_sub_menu_list .footer_sub_menu_item {
    margin: 0 16px 16px 16px;
  }
}

.footer_sub_menu_copy .footer_sub_menu_copy_content .footer_sub_menu_list .footer_sub_menu_item .footer_sub_menu_link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 640px) {
  .footer_sub_menu_copy .footer_sub_menu_copy_content .footer_sub_menu_list .footer_sub_menu_item .footer_sub_menu_link {
    font-size: 12px;
  }
}

@media only screen and (min-width: 960px) {
  .footer_sub_menu_copy .footer_sub_menu_copy_content .footer_sub_menu_list .footer_sub_menu_item .footer_sub_menu_link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

.footer_sub_menu_copy .footer_sub_menu_copy_content .footer_copy {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #727272;
  line-height: 1.5;
  white-space: nowrap;
  margin: 0 0 0 40px;
  flex-shrink: 0;
}

@media only screen and (max-width: 960px) {
  .footer_sub_menu_copy .footer_sub_menu_copy_content .footer_copy {
    text-align: center;
    margin: 0 0 0 0;
  }
}

/*=================

      content.scss

=======================*/
.contact_form {
  padding: 120px 0;
  background-color: #F66A6B;
}

@media only screen and (max-width: 640px) {
  .contact_form {
    padding: 56px 0;
  }
}

.contact_form_note {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 2;
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .contact_form_note {
    margin: 0 0 40px;
  }
}

.contact_form_note a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #FFF;
  text-decoration: underline;
}

.contact_complete {
  padding: 120px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .contact_complete {
    padding: 56px 0;
  }
}

.contact_complete_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .contact_complete_title {
    font-size: 26px;
    margin: 0 0 32px;
  }
}

.contact_complete_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
}

.contact_complete_text a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

/*=================

      top.scss

=======================*/
.fv {
  background-image: url(../images/top/fv_pc.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .fv {
    background-image: url(../images/top/fv_sp.jpg);
  }
}

.fv .common_inner {
  width: 100%;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1400px) {
  .fv .common_inner {
    min-height: calc(100vh - 72px);
  }
}

.fv .common_inner .fv_content {
  text-align: center;
  padding: 48px 0;
}

.fv .common_inner .fv_content .fv_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 54px;
  color: #FFF;
  line-height: 1.5;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.64);
  margin: 0 0 44px;
}

@media only screen and (max-width: 640px) {
  .fv .common_inner .fv_content .fv_title {
    font-size: 34px;
  }
}

.fv .common_inner .fv_content .fv_title .t_small {
  font-size: 48px;
}

@media only screen and (max-width: 640px) {
  .fv .common_inner .fv_content .fv_title .t_small {
    font-size: 28px;
  }
}

.fv .common_inner .fv_content .fv_title .bg {
  background: linear-gradient(90deg, rgba(246, 106, 107, 0.64) 0%, rgba(247, 142, 83, 0.64) 100%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  position: relative;
}

.fv .common_inner .fv_content .fv_title .bg .char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
  /* 基本のトランジション（遅延は --i による） */
  -webkit-transition: opacity 360ms cubic-bezier(0.2, 0.9, 0.2, 1), -webkit-transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition: opacity 360ms cubic-bezier(0.2, 0.9, 0.2, 1), -webkit-transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition: opacity 360ms cubic-bezier(0.2, 0.9, 0.2, 1), transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition: opacity 360ms cubic-bezier(0.2, 0.9, 0.2, 1), transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1), -webkit-transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1);
  /* 文字ごとの遅延を JS で --i にセットします */
  -webkit-transition-delay: calc(var(--i) * 0.1s);
  transition-delay: calc(var(--i) * 0.1s);
  will-change: opacity, transform;
}

.fv .common_inner .fv_content .fv_title .bg.in-view .char {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.fv .common_inner .fv_content .fv_title .bg br {
  display: block;
  content: "";
  height: 0;
}

.fv .common_inner .fv_content .fv_sub_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #FFF;
  line-height: 1.5;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.64);
}

@media only screen and (max-width: 640px) {
  .fv .common_inner .fv_content .fv_sub_title {
    font-size: 22px;
  }
}

.fv .common_inner .fv_content .fv_sub_title .marker {
  background: linear-gradient(transparent 60%, #F66A6B 60%);
}

.fv .common_inner .fv_content .fv_sub_title .t_big {
  font-size: 30px;
}

@media only screen and (max-width: 640px) {
  .fv .common_inner .fv_content .fv_sub_title .t_big {
    font-size: 24px;
  }
}

.fv .common_inner .fv_content .fv_sub_title .dot {
  position: relative;
}

.fv .common_inner .fv_content .fv_sub_title .dot::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #F8B085;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.64);
}

.fv .common_inner .fv_content .fv_register_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 64px;
  border-radius: 40px;
  position: relative;
  background: linear-gradient(90deg, #ff6969 0%, #fa9d73 54.19%, #ff6980 100%);
  border: 2px solid #FFF;
  margin: 0 auto;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .fv .common_inner .fv_content .fv_register_btn {
    height: 56px;
  }
}

@media only screen and (min-width: 960px) {
  .fv .common_inner .fv_content .fv_register_btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}

.fv .common_inner .fv_content .fv_register_btn .fv_register_btn_comment_wrap {
  position: absolute;
  bottom: 94%;
  left: 50%;
  transform: translateX(-50%);
}

.fv .common_inner .fv_content .fv_register_btn .fv_register_btn_comment_wrap .fv_register_btn_comment {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 40px;
  border: 2px solid #262626;
  background-color: #FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #262626;
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
}

.fv .common_inner .fv_content .fv_register_btn .fv_register_btn_comment_wrap .fv_register_btn_comment::before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top: 7px solid #FFF;
  z-index: 2;
}

.fv .common_inner .fv_content .fv_register_btn .fv_register_btn_comment_wrap .fv_register_btn_comment:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 9px solid #262626;
  z-index: 1;
}

.fv .common_inner .fv_content .fv_register_btn .fv_register_btn_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.fv .common_inner .fv_content .fv_register_btn .fv_register_btn_content .fv_register_btn_free {
  display: inline-block;
  padding: 4px 12px;
  background-color: #FFF;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #F66A6B;
  line-height: 1.5;
}

.fv .common_inner .fv_content .fv_register_btn .fv_register_btn_content .fv_register_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.fv .common_inner .fv_content .fv_register_btn .fv_register_btn_content .fv_register_btn_img {
  width: 6px;
}

.fv .common_inner .fv_content .fv_register_btn .fv_register_btn_content .fv_register_btn_img img {
  width: 100%;
}

.top_about {
  padding: 100px 0 120px;
  background-color: #FFF;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .top_about {
    padding: 48px 0 56px;
  }
}

.top_about_content {
  display: flex;
  width: 100%;
  margin: 0 0 80px;
}

@media only screen and (max-width: 840px) {
  .top_about_content {
    display: block;
    margin: 0 0 56px;
  }
}

.top_about_content .top_about_content_detail {
  width: 50%;
  padding: 0 80px 0 0;
}

@media only screen and (max-width: 840px) {
  .top_about_content .top_about_content_detail {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 56px;
  }
}

@media only screen and (max-width: 640px) {
  .top_about_content .top_about_content_detail {
    margin: 0 0 32px;
  }
}

.top_about_content .top_about_content_detail .top_about_content_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .top_about_content .top_about_content_detail .top_about_content_title {
    font-size: 30px;
    margin: 0 0 24px;
  }
}

.top_about_content .top_about_content_detail .top_about_content_title .c_main {
  color: #F66A6B;
}

.top_about_content .top_about_content_detail .top_about_content_title .t_small {
  font-size: 30px;
}

.top_about_content .top_about_content_detail .top_about_content_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
}

.top_about_content .top_about_content_img {
  width: 50%;
}

@media only screen and (max-width: 840px) {
  .top_about_content .top_about_content_img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}

.top_about_content .top_about_content_img img {
  width: 100%;
}

.top_about_feature .top_about_feature_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .top_about_feature .top_about_feature_title {
    font-size: 30px;
    margin: 0 0 24px;
  }
}

.top_about_feature .top_about_feature_title span {
  position: relative;
  z-index: 1;
}

.top_about_feature .top_about_feature_title span::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 16px;
  background: linear-gradient(90deg, #FCE2D1 0%, #FDE2E2 100%);
}

.top_about_feature_box_wrap {
  display: flex;
  width: 100%;
  gap: 32px;
}

@media only screen and (max-width: 840px) {
  .top_about_feature_box_wrap {
    display: block;
  }
}

.top_about_feature_box_wrap .top_about_feature_box {
  width: 100%;
  background-color: #F8F8F8;
  border-radius: 20px;
  padding: 16px;
}

@media only screen and (max-width: 840px) {
  .top_about_feature_box_wrap .top_about_feature_box {
    max-width: 480px;
    margin: 0 auto 32px;
  }
}

@media only screen and (max-width: 640px) {
  .top_about_feature_box_wrap .top_about_feature_box {
    margin: 0 auto 24px;
  }
}

@media only screen and (max-width: 840px) {
  .top_about_feature_box_wrap .top_about_feature_box:last-child {
    margin: 0 auto 0 auto;
  }
}

.top_about_feature_box_wrap .top_about_feature_box .top_about_feature_box_img {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin: 0 0 16px;
}

.top_about_feature_box_wrap .top_about_feature_box .top_about_feature_box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.top_about_feature_box_wrap .top_about_feature_box .top_about_feature_box_num {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  color: #F66A6B;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

.top_about_feature_box_wrap .top_about_feature_box .top_about_feature_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 16px;
}

.top_about_feature_box_wrap .top_about_feature_box .top_about_feature_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #727272;
  line-height: 2;
}

.top_flow {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, rgba(246, 106, 107, 0.8) 0%, rgba(247, 142, 83, 0.8) 100%);
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .top_flow {
    padding: 48px 0 56px;
  }
}

.top_flow_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin: 0 0 40px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .top_flow_title {
    gap: 12px;
    margin: 0 0 24px;
    font-size: 20px;
  }
}

.top_flow_title img {
  display: block;
  width: 26px;
  flex-shrink: 0;
}

.top_flow_video_wrap {
  padding: 20px;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .top_flow_video_wrap {
    padding: 12px;
  }
}

.top_flow_video_wrap .top_flow_video_bg_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(180deg, rgba(246, 106, 107, 0.6) 0%, rgba(247, 142, 83, 0.6) 100%);
}

@media only screen and (max-width: 640px) {
  .top_flow_video_wrap .top_flow_video_bg_top {
    width: 100px;
    height: 100px;
  }
}

.top_flow_video_wrap .top_flow_video_bg_bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(180deg, rgba(247, 142, 83, 0.6) 0%, rgba(246, 106, 107, 0.6) 100%);
}

@media only screen and (max-width: 640px) {
  .top_flow_video_wrap .top_flow_video_bg_bottom {
    width: 100px;
    height: 100px;
  }
}

.top_flow_video_wrap .top_flow_video {
  position: relative;
  aspect-ratio: 16 / 9;
}

.top_safety {
  padding: 100px 0 120px;
  background-color: #F8F8F8;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .top_safety {
    padding: 48px 0 56px;
  }
}

.top_safety_box_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .top_safety_box_wrap {
    display: block;
  }
}

.top_safety_box_wrap .top_safety_box {
  width: calc((100% - 64px) / 3);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #E3E3E3;
  background-color: #FFF;
  position: relative;
}

@media only screen and (max-width: 840px) {
  .top_safety_box_wrap .top_safety_box {
    width: calc((100% - 32px) / 2);
  }
}

@media only screen and (max-width: 640px) {
  .top_safety_box_wrap .top_safety_box {
    width: 100%;
    margin: 0 0 16px;
  }
}

@media only screen and (max-width: 640px) {
  .top_safety_box_wrap .top_safety_box:last-child {
    margin: 0 0 0;
  }
}

.top_safety_box_wrap .top_safety_box .top_safety_box_num {
  position: absolute;
  top: 20px;
  left: 12px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  background: linear-gradient(135deg, rgba(247, 142, 83, 0.26) 0, rgba(246, 106, 107, 0.26) 100%);
  color: rgba(246, 106, 107, 0.26);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
}

.top_safety_box_wrap .top_safety_box .top_safety_box_icon {
  width: 40px;
  margin: 0 auto 16px;
}

.top_safety_box_wrap .top_safety_box .top_safety_box_icon img {
  width: 100%;
}

.top_safety_box_wrap .top_safety_box .top_safety_box_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 20px;
}

.top_safety_box_wrap .top_safety_box .top_safety_box_title span {
  color: #F66A6B;
}

.top_safety_box_wrap .top_safety_box .top_safety_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 2;
}

.top_price {
  padding: 100px 0 120px;
  background-color: #FFF;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .top_price {
    padding: 48px 0 56px;
  }
}

.top_price_box_wrap {
  padding: 72px 0 0;
  display: flex;
  gap: 32px;
  margin: 0 0 100px;
}

@media only screen and (max-width: 840px) {
  .top_price_box_wrap {
    display: block;
    padding: 0 0 0;
  }
}

.top_price_box_wrap .top_price_box {
  width: calc((100% - 64px) / 3);
  background-color: #FFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  position: relative;
}

@media only screen and (max-width: 840px) {
  .top_price_box_wrap .top_price_box {
    width: 100%;
    margin: 0 0 32px;
  }
}

@media only screen and (max-width: 840px) {
  .top_price_box_wrap .top_price_box.request {
    margin: 96px 0 0;
  }
}

.top_price_box_wrap .top_price_box .top_price_box_comment {
  position: absolute;
  bottom: 101%;
  left: 0;
  width: 100%;
  padding: 10px 16px;
  border-radius: 12px;
  border: 2px solid #262626;
  background-color: #FFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 840px) {
  .top_price_box_wrap .top_price_box .top_price_box_comment {
    max-width: 400px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.top_price_box_wrap .top_price_box .top_price_box_comment span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
}

.top_price_box_wrap .top_price_box .top_price_box_comment::before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top: 7px solid #FFF;
  z-index: 2;
}

.top_price_box_wrap .top_price_box .top_price_box_comment:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 9px solid #262626;
  z-index: 1;
}

.top_price_box_wrap .top_price_box .top_price_box_title {
  padding: 16px;
  background-color: #F66A6B;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #FFF;
  line-height: 1.5;
  border-radius: 20px 20px 0 0;
}

@media only screen and (max-width: 640px) {
  .top_price_box_wrap .top_price_box .top_price_box_title {
    padding: 12px;
  }
}

.top_price_box_wrap .top_price_box .top_price_box_detail {
  padding: 24px 16px;
}

@media only screen and (max-width: 640px) {
  .top_price_box_wrap .top_price_box .top_price_box_detail {
    padding: 16px 16px;
  }
}

.top_price_box_wrap .top_price_box .top_price_box_detail .top_price_box_price {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  font-size: 54px;
  line-height: 1;
}

@media only screen and (max-width: 640px) {
  .top_price_box_wrap .top_price_box .top_price_box_detail .top_price_box_price {
    font-size: 34px;
  }
}

.top_price_box_wrap .top_price_box .top_price_box_detail .top_price_box_price span {
  font-size: 100px;
}

@media only screen and (max-width: 640px) {
  .top_price_box_wrap .top_price_box .top_price_box_detail .top_price_box_price span {
    font-size: 66px;
  }
}

.top_price_box_wrap .top_price_box .top_price_box_detail .top_price_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 2;
}

.top_price_box_wrap .top_price_box .top_price_box_detail .top_price_box_text span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
}

.top_price_box_wrap .top_price_box.request .top_price_box_title {
  background-color: #F78E53;
}

.top_price_box_wrap .top_price_box.request .top_price_box_price {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 52px;
  color: #262626;
  line-height: 100px;
}

@media only screen and (max-width: 640px) {
  .top_price_box_wrap .top_price_box.request .top_price_box_price {
    font-size: 42px;
    line-height: 1.5;
  }
}

.top_price_comparison .top_price_comparison_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .top_price_comparison .top_price_comparison_title {
    font-size: 30px;
    margin: 0 0 24px;
  }
}

.top_price_comparison .top_price_comparison_title span {
  position: relative;
  z-index: 1;
}

.top_price_comparison .top_price_comparison_title span::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 16px;
  background: linear-gradient(90deg, #FCE2D1 0%, #FDE2E2 100%);
}

@media only screen and (max-width: 840px) {
  .top_price_comparison .top_price_comparison_table_wrap {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .top_price_comparison .top_price_comparison_table_wrap::-webkit-scrollbar {
    display: none;
  }
}

.top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table {
  border-collapse: separate;
  border-spacing: 16px 16px;
  table-layout: fixed;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table {
    min-width: 760px;
  }
}

@media only screen and (max-width: 640px) {
  .top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table {
    min-width: 550px;
    border-spacing: 8px 8px;
  }
}

.top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table tr th.service_title {
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  background-color: #939393;
  border-radius: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table tr th.service_title {
    font-size: 16px;
  }
}

.top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table tr th.service_title.main {
  background-color: #F66A6B;
}

.top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table tr th.service_title img {
  display: block;
  width: 162px;
  vertical-align: middle;
  margin: 0 auto;
}

@media only screen and (max-width: 840px) {
  .top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table tr th.service_title img {
    width: 140px;
  }
}

@media only screen and (max-width: 640px) {
  .top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table tr th.service_title img {
    width: 100%;
  }
}

.top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table tr th.comparison_title {
  padding: 12px 8px;
  background-color: #F8F8F8;
  border-radius: 8px;
  text-align: center;
  vertical-align: middle;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table tr th.comparison_title {
    padding: 8px 8px;
    font-size: 16px;
  }
}

.top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table td.comparison_detail {
  padding: 12px 8px;
  background-color: #E3E3E3;
  border-radius: 8px;
  text-align: center;
  vertical-align: middle;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  color: #727272;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table td.comparison_detail {
    padding: 8px 8px;
    font-size: 16px;
  }
}

.top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table td.comparison_detail.main {
  padding: 12px 8px;
  background-color: #FDE2E2;
  border-radius: 8px;
  text-align: center;
  vertical-align: middle;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table td.comparison_detail.main {
    padding: 8px 8px;
    font-size: 15px;
  }
}

.top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table td.comparison_detail.main span {
  font-size: 24px;
  color: #F66A6B;
  background: linear-gradient(transparent 60%, #FCF8C7 60%);
}

@media only screen and (max-width: 640px) {
  .top_price_comparison .top_price_comparison_table_wrap .top_price_comparison_table td.comparison_detail.main span {
    font-size: 20px;
  }
}

.top_faq {
  padding: 100px 0 120px;
  background-color: #F8F8F8;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .top_faq {
    padding: 48px 0 56px;
  }
}

.top_voice {
  position: relative;
  padding: 100px 0 120px;
  background-color: #FFF;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .top_voice {
    padding: 48px 0 56px;
  }
}

.top_voice .top_voice_bg_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
}

@media only screen and (max-width: 640px) {
  .top_voice .top_voice_bg_top {
    width: 100px;
  }
}

.top_voice .top_voice_bg_top img {
  width: 100%;
  vertical-align: top;
}

.top_voice .top_voice_bg_bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
}

@media only screen and (max-width: 640px) {
  .top_voice .top_voice_bg_bottom {
    width: 100px;
  }
}

.top_voice .top_voice_bg_bottom img {
  width: 100%;
  vertical-align: bottom;
}

.top_voice_box_wrap {
  position: relative;
}

.top_voice_box_wrap .top_voice_box {
  margin: 0 0 40px;
  padding: 56px 40px 48px 40px;
  border-radius: 10px;
  border: 1px solid #E3E3E3;
  background-color: #FFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  position: relative;
}

@media only screen and (max-width: 640px) {
  .top_voice_box_wrap .top_voice_box {
    padding: 40px 24px 32px 24px;
    margin: 0 0 24px;
  }
}

.top_voice_box_wrap .top_voice_box:last-child {
  margin: 0 0 0;
}

.top_voice_box_wrap .top_voice_box .top_voice_box_icon {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 58px;
}

@media only screen and (max-width: 640px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_icon {
    width: 40px;
  }
}

.top_voice_box_wrap .top_voice_box .top_voice_box_icon img {
  width: 100%;
}

.top_voice_box_wrap .top_voice_box .top_voice_box_content {
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_content {
    display: block;
  }
}

.top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_referee_block {
  width: 50%;
  padding: 0 40px 0 0;
  border-right: 1px solid #E3E3E3;
}

@media only screen and (max-width: 840px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_referee_block {
    width: 100%;
    padding: 0 0 40px 0;
    border-right: none;
    border-bottom: 1px solid #E3E3E3;
  }
}

@media only screen and (max-width: 640px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_referee_block {
    padding: 0 0 24px 0;
  }
}

.top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_friend_block {
  width: 50%;
  padding: 0 0 0 40px;
}

@media only screen and (max-width: 840px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_friend_block {
    width: 100%;
    padding: 40px 0 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_friend_block {
    padding: 24px 0 0;
  }
}

.top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_img_detail {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 24px;
}

.top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_img_detail .top_voice_box_content_img {
  width: 88px;
  margin: 0 24px 0 0;
}

@media only screen and (max-width: 640px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_img_detail .top_voice_box_content_img {
    width: 72px;
  }
}

.top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_img_detail .top_voice_box_content_img img {
  width: 100%;
}

.top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_img_detail .top_voice_box_content_detail {
  width: calc(100% - 110px);
}

@media only screen and (max-width: 640px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_img_detail .top_voice_box_content_detail {
    width: calc(100% - 96px);
  }
}

.top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_img_detail .top_voice_box_content_detail .top_voice_box_content_referee {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #B9B9B9;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #727272;
  line-height: 1.3;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_img_detail .top_voice_box_content_detail .top_voice_box_content_referee {
    padding: 4px 10px;
    font-size: 12px;
    margin: 0 0 8px;
  }
}

.top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_img_detail .top_voice_box_content_detail .top_voice_box_content_friend {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #F78E53;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #F78E53;
  line-height: 1.3;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_img_detail .top_voice_box_content_detail .top_voice_box_content_friend {
    padding: 4px 10px;
    font-size: 12px;
    margin: 0 0 8px;
  }
}

.top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_img_detail .top_voice_box_content_detail .top_voice_box_content_prof {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_img_detail .top_voice_box_content_detail .top_voice_box_content_prof {
    font-size: 14px;
  }
}

.top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #F66A6B;
  line-height: 1.5;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_title {
    font-size: 16px;
    margin: 0 0 24px;
  }
}

.top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #727272;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .top_voice_box_wrap .top_voice_box .top_voice_box_content .top_voice_box_content_text {
    font-size: 14px;
  }
}

.top_column {
  padding: 100px 0 120px;
  background-color: #F8F8F8;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .top_column {
    padding: 48px 0 56px;
  }
}

.top_pickup_column {
  margin: 0 0 100px;
}

@media only screen and (max-width: 640px) {
  .top_pickup_column {
    margin: 0 0 48px;
  }
}

/*=================

      column.scss

=======================*/
.pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item {
  margin: 0 20px;
}

@media only screen and (max-width: 640px) {
  .pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item {
    margin: 0 16px;
  }
}

.pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link {
  display: block;
  position: relative;
}

.pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}

.pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail {
  position: absolute;
  bottom: 0;
  left: 0;
}

.pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content {
  width: 100%;
  min-height: 50%;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.32) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px 24px;
}

@media only screen and (max-width: 640px) {
  .pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content {
    padding: 16px 16px;
  }
}

.pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content .pickup_column_slide_detail_content_inner .pickup_column_slide_date_category {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content .pickup_column_slide_detail_content_inner .pickup_column_slide_date_category {
    margin: 0 0 8px;
  }
}

.pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content .pickup_column_slide_detail_content_inner .pickup_column_slide_date_category .pickup_column_slide_date {
  width: 120px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.32);
  white-space: nowrap;
}

@media only screen and (max-width: 640px) {
  .pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content .pickup_column_slide_detail_content_inner .pickup_column_slide_date_category .pickup_column_slide_date {
    width: 110px;
    font-size: 12px;
  }
}

.pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content .pickup_column_slide_detail_content_inner .pickup_column_slide_date_category .pickup_column_slide_date img {
  display: block;
  width: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.32));
}

@media only screen and (max-width: 640px) {
  .pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content .pickup_column_slide_detail_content_inner .pickup_column_slide_date_category .pickup_column_slide_date img {
    width: 12px;
  }
}

.pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content .pickup_column_slide_detail_content_inner .pickup_column_slide_date_category .pickup_column_slide_category {
  display: inline-block;
  padding: 4px 8px;
  background-color: #FFF;
  border-radius: 4px;
  max-width: calc(100% - 120px);
}

@media only screen and (max-width: 640px) {
  .pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content .pickup_column_slide_detail_content_inner .pickup_column_slide_date_category .pickup_column_slide_category {
    max-width: calc(100% - 110px);
  }
}

.pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content .pickup_column_slide_detail_content_inner .pickup_column_slide_date_category .pickup_column_slide_category span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-height: calc(18px*1);
}

.pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content .pickup_column_slide_detail_content_inner .pickup_column_slide_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #FFF;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.32);
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 33px;
  max-height: calc(33px*1);
}

@media only screen and (max-width: 640px) {
  .pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link .pickup_column_slide_detail .pickup_column_slide_detail_content .pickup_column_slide_detail_content_inner .pickup_column_slide_title {
    font-size: 18px;
    line-height: 27px;
    max-height: calc(27px*1);
  }
}

@media only screen and (min-width: 960px) {
  .pickup_column_slide_list_wrap .pickup_column_slide_list .pickup_column_slide_item .pickup_column_slide_link:hover .pickup_column_slide_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.pickup_column_slide_list_wrap .slick-dots {
  bottom: -30px;
}

.pickup_column_slide_list_wrap .slick-dots li button:before {
  background-color: #C6C6C6;
}

.pickup_column_slide_list_wrap .slick-dots li.slick-active button:before {
  background-color: #F66A6B;
}

.column_label_list {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 10;
}

@media only screen and (max-width: 640px) {
  .column_label_list {
    top: 8px;
  }
}

.column_label_list .column_label_item {
  margin: 0 0 4px;
  width: 64px;
}

@media only screen and (max-width: 640px) {
  .column_label_list .column_label_item {
    width: 56px;
  }
}

.column_label_list .column_label_item:last-child {
  margin: 0 0 0;
}

.column_label_list .column_label_item img {
  width: 100%;
}

.column_box_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -40px;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap {
    margin: 0 0 0 0;
    display: block;
  }
}

.column_box_wrap .column_box {
  width: calc((100% - 64px) / 3);
  margin: 0 32px 40px 0;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box {
    width: 100%;
    margin: 0 0 24px 0;
  }
}

.column_box_wrap .column_box:nth-of-type(3n) {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box:nth-of-type(3n) {
    margin: 0 0 24px 0;
  }
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box:last-child {
    margin: 0 0 0 0;
  }
}

.column_box_wrap .column_box .column_box_img {
  display: block;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box .column_box_img {
    margin: 0 0 16px;
  }
}

.column_box_wrap .column_box .column_box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media only screen and (min-width: 960px) {
  .column_box_wrap .column_box .column_box_img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.column_box_wrap .column_box .column_box_img.active img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.column_box_wrap .column_box .column_box_date_category {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box .column_box_date_category {
    margin: 0 0 12px;
  }
}

.column_box_wrap .column_box .column_box_date_category .column_box_date {
  width: 120px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #989898;
  line-height: 1.3;
}

.column_box_wrap .column_box .column_box_date_category .column_box_date img {
  display: block;
  width: 14px;
}

.column_box_wrap .column_box .column_box_date_category .column_box_category {
  display: inline-block;
  max-width: calc(100% - 120px);
  padding: 4px 8px;
  background-color: #E2E2E2;
  border-radius: 4px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.column_box_wrap .column_box .column_box_date_category .column_box_category span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-height: calc(18px*1);
}

@media only screen and (min-width: 960px) {
  .column_box_wrap .column_box .column_box_date_category .column_box_category:hover {
    background-color: #d5d5d5;
  }
}

.column_box_wrap .column_box .column_box_link {
  display: block;
}

.column_box_wrap .column_box .column_box_link .column_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 27px;
  max-height: calc(27px*2);
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box .column_box_link .column_box_title {
    margin: 0 0 12px;
  }
}

.column_box_wrap .column_box .column_box_link .column_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 28px;
  max-height: calc(28px*2);
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box .column_box_link .column_box_text {
    margin: 0 0 12px;
  }
}

.column_box_wrap .column_box .column_box_tag_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -8px;
}

.column_box_wrap .column_box .column_box_tag_list .column_box_tag_item {
  margin: 0 16px 8px 0;
}

.column_box_wrap .column_box .column_box_tag_list .column_box_tag_item .column_box_tag_link {
  display: block;
  padding: 0 0 0 16px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  line-height: 1.5;
  text-decoration: underline;
}

.column_box_wrap .column_box .column_box_tag_list .column_box_tag_item .column_box_tag_link:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/column/icon_tag.svg);
  background-repeat: no-repeat;
}

@media only screen and (min-width: 960px) {
  .column_box_wrap .column_box .column_box_tag_list .column_box_tag_item .column_box_tag_link:hover {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
}

.column_search {
  padding: 80px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .column_search {
    padding: 40px 0;
  }
}

.column_search_box_wrap .column_search_box {
  padding: 24px 48px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  margin: 0 0 40px;
}

@media only screen and (max-width: 960px) {
  .column_search_box_wrap .column_search_box {
    padding: 24px 24px;
  }
}

@media only screen and (max-width: 640px) {
  .column_search_box_wrap .column_search_box {
    padding: 16px 16px;
    margin: 0 0 24px;
  }
}

.column_search_box_wrap .column_search_box:last-child {
  margin: 0 0 0;
}

.column_search_box_wrap .column_search_box .column_search_box_title_wrap {
  display: flex;
  align-items: flex-end;
  padding: 0 0 12px;
  margin: 0 0 16px;
  border-bottom: 1px solid #E3E3E3;
}

.column_search_box_wrap .column_search_box .column_search_box_title_wrap .column_search_box_title_ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #262626;
  line-height: 1.3;
  margin: 0 10px 0 0;
  padding: 0 0 0 15px;
  position: relative;
}

.column_search_box_wrap .column_search_box .column_search_box_title_wrap .column_search_box_title_ja::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(180deg, #F66A6B 0%, #F78E53 100%);
}

.column_search_box_wrap .column_search_box .column_search_box_title_wrap .column_search_box_title_en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #F66A6B;
  line-height: 1.5;
}

.column_search_category_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -40px;
}

@media only screen and (max-width: 640px) {
  .column_search_category_list {
    display: block;
    margin: 0 0 0;
  }
}

.column_search_category_list .column_search_category_item {
  width: calc((100% - 80px) / 3);
  margin: 0 40px 40px 0;
}

@media only screen and (max-width: 960px) {
  .column_search_category_list .column_search_category_item {
    width: calc((100% - 40px) / 2);
  }
}

@media only screen and (max-width: 640px) {
  .column_search_category_list .column_search_category_item {
    width: 100%;
    margin: 0 0 24px 0;
  }
}

.column_search_category_list .column_search_category_item:nth-of-type(3n) {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 960px) {
  .column_search_category_list .column_search_category_item:nth-of-type(3n) {
    margin: 0 40px 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .column_search_category_list .column_search_category_item:nth-of-type(3n) {
    margin: 0 0 24px 0;
  }
}

@media only screen and (max-width: 960px) {
  .column_search_category_list .column_search_category_item:nth-of-type(2n) {
    margin: 0 0 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .column_search_category_list .column_search_category_item:nth-of-type(2n) {
    margin: 0 0 24px 0;
  }
}

@media only screen and (max-width: 640px) {
  .column_search_category_list .column_search_category_item:last-child {
    margin: 0 0 0 0;
  }
}

.column_search_category_list .column_search_category_item .column_search_category_link {
  display: flex;
  width: 100%;
}

.column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_img {
  width: 80px;
  height: 80px;
  margin: 0 16px 0 0;
  overflow: hidden;
  border-radius: 50%;
}

@media only screen and (max-width: 640px) {
  .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_img {
    width: 64px;
    height: 64px;
  }
}

.column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_detail {
  width: calc(100% - 96px);
}

@media only screen and (max-width: 640px) {
  .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_detail {
    width: calc(100% - 80px);
  }
}

.column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_detail .column_search_category_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 8px;
  position: relative;
  padding: 0 0 0 12px;
}

.column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_detail .column_search_category_item_title::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, #F66A6B 0%, #F78E53 100%);
}

.column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_detail .column_search_category_item_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  line-height: 1.6;
}

@media only screen and (min-width: 960px) {
  .column_search_category_list .column_search_category_item .column_search_category_link:hover .column_search_category_item_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.column_search_tag_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -8px;
}

.column_search_tag_list .column_search_tag_item {
  margin: 0 16px 8px 0;
}

.column_search_tag_list .column_search_tag_item .column_search_tag_link {
  display: block;
  padding: 0 0 0 16px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 1.5;
  text-decoration: underline;
}

.column_search_tag_list .column_search_tag_item .column_search_tag_link:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/column/icon_tag.svg);
  background-repeat: no-repeat;
}

@media only screen and (min-width: 960px) {
  .column_search_tag_list .column_search_tag_item .column_search_tag_link:hover {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
}

.column_pickup {
  padding: 120px 0;
  background-color: #F8F8F8;
}

@media only screen and (max-width: 640px) {
  .column_pickup {
    padding: 56px 0;
  }
}

.pickup_column_box_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -48px;
}

@media only screen and (max-width: 640px) {
  .pickup_column_box_wrap {
    margin: 0 0 0 0;
    display: block;
  }
}

.pickup_column_box_wrap .pickup_column_box {
  width: calc((100% - 64px) / 2);
  margin: 0 64px 48px 0;
}

@media only screen and (max-width: 840px) {
  .pickup_column_box_wrap .pickup_column_box {
    width: calc((100% - 40px) / 2);
    margin: 0 40px 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .pickup_column_box_wrap .pickup_column_box {
    width: 100%;
    margin: 0 0 24px 0;
  }
}

.pickup_column_box_wrap .pickup_column_box:nth-of-type(2n) {
  margin: 0 0 48px 0;
}

@media only screen and (max-width: 960px) {
  .pickup_column_box_wrap .pickup_column_box:nth-of-type(2n) {
    margin: 0 0 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .pickup_column_box_wrap .pickup_column_box:nth-of-type(2n) {
    margin: 0 0 24px 0;
  }
}

@media only screen and (max-width: 640px) {
  .pickup_column_box_wrap .pickup_column_box:last-child {
    margin: 0 0 0 0;
  }
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_img {
  display: block;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .pickup_column_box_wrap .pickup_column_box .pickup_column_box_img {
    margin: 0 0 16px;
  }
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media only screen and (min-width: 960px) {
  .pickup_column_box_wrap .pickup_column_box .pickup_column_box_img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_img.active img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_date_category {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .pickup_column_box_wrap .pickup_column_box .pickup_column_box_date_category {
    margin: 0 0 12px;
  }
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_date_category .pickup_column_box_date {
  width: 120px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #989898;
  line-height: 1.3;
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_date_category .pickup_column_box_date img {
  display: block;
  width: 14px;
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_date_category .pickup_column_box_category {
  display: inline-block;
  max-width: calc(100% - 120px);
  padding: 4px 8px;
  background-color: #E2E2E2;
  border-radius: 4px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_date_category .pickup_column_box_category span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-height: calc(18px*1);
}

@media only screen and (min-width: 960px) {
  .pickup_column_box_wrap .pickup_column_box .pickup_column_box_date_category .pickup_column_box_category:hover {
    background-color: #d5d5d5;
  }
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_link {
  display: block;
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_link .pickup_column_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #262626;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 30px;
  max-height: calc(30px*2);
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .pickup_column_box_wrap .pickup_column_box .pickup_column_box_link .pickup_column_box_title {
    font-size: 18px;
    line-height: 27px;
    max-height: calc(27px*2);
    margin: 0 0 12px;
  }
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_link .pickup_column_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 28px;
  max-height: calc(28px*2);
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .pickup_column_box_wrap .pickup_column_box .pickup_column_box_link .pickup_column_box_text {
    margin: 0 0 12px;
  }
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_tag_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -8px;
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_tag_list .pickup_column_box_tag_item {
  margin: 0 16px 8px 0;
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_tag_list .pickup_column_box_tag_item .pickup_column_box_tag_link {
  display: block;
  padding: 0 0 0 16px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  line-height: 1.5;
  text-decoration: underline;
}

.pickup_column_box_wrap .pickup_column_box .pickup_column_box_tag_list .pickup_column_box_tag_item .pickup_column_box_tag_link:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/column/icon_tag.svg);
  background-repeat: no-repeat;
}

@media only screen and (min-width: 960px) {
  .pickup_column_box_wrap .pickup_column_box .pickup_column_box_tag_list .pickup_column_box_tag_item .pickup_column_box_tag_link:hover {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
}

.column_ranking {
  padding: 120px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .column_ranking {
    padding: 56px 0;
  }
}

.column_ranking_list_wrap {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.column_ranking_list_wrap::-webkit-scrollbar {
  display: none;
}

.column_ranking_list_wrap .column_ranking_list {
  display: flex;
}

.column_ranking_list_wrap .column_ranking_list:after {
  content: "　";
  width: 16px;
  height: 100%;
  display: block;
  opacity: 0;
  font-size: 10px;
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item {
  flex-shrink: 0;
  width: 300px;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .column_ranking_list_wrap .column_ranking_list .column_ranking_item {
    width: 240px;
  }
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_img {
  display: block;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_img {
    margin: 0 0 12px;
  }
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_img .column_ranking_item_num {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 40px;
  z-index: 10;
}

@media only screen and (max-width: 640px) {
  .column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_img .column_ranking_item_num {
    width: 32px;
  }
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_img .column_ranking_item_num img {
  width: 100%;
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media only screen and (min-width: 960px) {
  .column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_img.active img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_date_category {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_date_category {
    margin: 0 0 12px;
  }
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_date_category .column_ranking_item_date {
  width: 120px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #989898;
  line-height: 1.3;
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_date_category .column_ranking_item_date img {
  display: block;
  width: 14px;
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_date_category .column_ranking_item_category {
  display: inline-block;
  max-width: calc(100% - 120px);
  padding: 4px 8px;
  background-color: #E2E2E2;
  border-radius: 4px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_date_category .column_ranking_item_category span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-height: calc(18px*1);
}

@media only screen and (min-width: 960px) {
  .column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_date_category .column_ranking_item_category:hover {
    background-color: #d5d5d5;
  }
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_link {
  display: block;
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_link .column_ranking_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 27px;
  max-height: calc(27px*2);
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_link .column_ranking_item_title {
    margin: 0 0 12px;
  }
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_tag_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_tag_list .column_ranking_item_tag_item {
  margin: 0 16px 8px 0;
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_tag_list .column_ranking_item_tag_item .column_ranking_item_tag_link {
  display: block;
  padding: 0 0 0 16px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  line-height: 1.5;
  text-decoration: underline;
}

.column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_tag_list .column_ranking_item_tag_item .column_ranking_item_tag_link:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/column/icon_tag.svg);
  background-repeat: no-repeat;
}

@media only screen and (min-width: 960px) {
  .column_ranking_list_wrap .column_ranking_list .column_ranking_item .column_ranking_item_tag_list .column_ranking_item_tag_item .column_ranking_item_tag_link:hover {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
}

.column_new {
  padding: 120px 0;
  background-color: #F8F8F8;
}

@media only screen and (max-width: 640px) {
  .column_new {
    padding: 56px 0;
  }
}

.column_category_list {
  padding: 120px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .column_category_list {
    padding: 56px 0;
  }
}

.category_column_blog {
  padding: 120px 0;
  background-color: #F8F8F8;
}

@media only screen and (max-width: 640px) {
  .category_column_blog {
    padding: 56px 0;
  }
}

.category_column_blog .category_column_blog_box {
  padding: 72px 24px 32px;
  border-radius: 20px;
  background-color: #FFF;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .category_column_blog .category_column_blog_box {
    padding: 40px 16px 24px 16px;
  }
}

.category_column_blog .category_column_blog_box .category_column_blog_box_icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 60px;
}

@media only screen and (max-width: 640px) {
  .category_column_blog .category_column_blog_box .category_column_blog_box_icon {
    top: 16px;
    right: 16px;
    width: 40px;
  }
}

.category_column_blog .category_column_blog_box .category_column_blog_box_icon img {
  width: 100%;
}

.category_column_blog .category_column_blog_box .category_column_blog_content {
  max-width: 900px;
  margin: 0 auto;
}

.category_column_blog .category_column_blog_box .category_column_blog_content .category_column_blog_content_title {
  padding: 0 0 0 32px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .category_column_blog .category_column_blog_box .category_column_blog_content .category_column_blog_content_title {
    padding: 0 0 0 20px;
    margin: 0 0 24px;
    font-size: 26px;
  }
}

.category_column_blog .category_column_blog_box .category_column_blog_content .category_column_blog_content_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #F66A6B 0%, #F78E53 100%);
  border-radius: 8px;
}

.category_column_blog .category_column_blog_box .category_column_blog_content .category_column_blog_content_img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  .category_column_blog .category_column_blog_box .category_column_blog_content .category_column_blog_content_img {
    margin: 0 0 32px;
  }
}

.category_column_blog .category_column_blog_box .category_column_blog_content .category_column_blog_content_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.editor_wrap p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap p {
    margin: 0 0 40px;
  }
}

.editor_wrap p a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

.editor_wrap h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #262626;
  line-height: 1.5;
  padding: 0 0 16px;
  margin: 0 0 40px;
  border-bottom: 3px solid #F66A6B;
}

@media only screen and (max-width: 640px) {
  .editor_wrap h2 {
    font-size: 22px;
    padding: 0 0 8px;
    margin: 0 0 32px;
  }
}

.editor_wrap h3 {
  padding: 0 0 0 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #262626;
  line-height: 1.5;
  position: relative;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap h3 {
    font-size: 22px;
    margin: 0 0 32px;
  }
}

.editor_wrap h3::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 12px;
  height: 12px;
  background: linear-gradient(180deg, #F66A6B 0%, #F78E53 100%);
  border-radius: 50%;
}

.editor_wrap h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap h4 {
    font-size: 22px;
    margin: 0 0 32px;
  }
}

.editor_wrap .marker_pink {
  background: linear-gradient(transparent 60%, #FDE2E2 60%);
}

.editor_wrap .marker_orange {
  background: linear-gradient(transparent 60%, #FEF2EB 60%);
}

.editor_wrap .text_red {
  color: #F66A6B;
}

.editor_wrap .text_orange {
  color: #F78E53;
}

.editor_wrap .text_bold {
  font-weight: 700 !important;
}

.editor_wrap img {
  display: block;
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap img {
    margin: 0 0 32px;
  }
}

.editor_wrap ul {
  padding: 32px 40px 32px 60px;
  background-color: #F8F8F8;
  list-style: disc;
  border-radius: 20px;
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap ul {
    padding: 16px 16px 16px 36px;
    border-radius: 10px;
    margin: 0 0 40px;
  }
}

.editor_wrap ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap ul li {
    margin: 0 0 16px;
  }
}

.editor_wrap ul li:last-child {
  margin: 0 0 0;
}

.editor_wrap ol {
  padding: 32px 40px 32px 60px;
  background-color: #FEF2EB;
  list-style: decimal;
  border-radius: 20px;
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap ol {
    padding: 16px 16px 16px 36px;
    border-radius: 10px;
    margin: 0 0 40px;
  }
}

.editor_wrap ol li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap ol li {
    margin: 0 0 16px;
  }
}

.editor_wrap ol li:last-child {
  margin: 0 0 0;
}

.editor_wrap .chat_box {
  border-radius: 20px;
  background-color: #F8F8F8;
  padding: 32px 40px;
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap .chat_box {
    border-radius: 10px;
    padding: 16px;
    margin: 0 0 40px;
  }
}

.editor_wrap .chat_box .chat_block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 24px;
}

.editor_wrap .chat_box .chat_block:last-child {
  margin: 0 0 0;
}

.editor_wrap .chat_box .chat_block .chat_block_icon {
  width: 80px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap .chat_box .chat_block .chat_block_icon {
    width: 48px;
  }
}

.editor_wrap .chat_box .chat_block .chat_block_icon img {
  width: 100%;
}

.editor_wrap .chat_box .chat_block .chat_block_text {
  width: calc(100% - 100px);
  border-radius: 0 10px 10px 10px;
  border: 1px solid #8D8D8D;
  background-color: #FFF;
  padding: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 2;
  margin: 0 0 0;
}

@media only screen and (max-width: 640px) {
  .editor_wrap .chat_box .chat_block .chat_block_text {
    width: calc(100% - 64px);
    padding: 12px;
    font-size: 13px;
  }
}

.editor_wrap .chat_box .chat_block .chat_block_text a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

.editor_wrap .chat_box .chat_block.right {
  flex-direction: row-reverse;
}

.editor_wrap .chat_box .chat_block.right .chat_block_text {
  border-radius: 10px 0 10px 10px;
  background-color: #8D8D8D;
  color: #FFF;
}

.editor_wrap .chat_box .chat_block.right .chat_block_text a {
  color: #FFF;
}

.editor_wrap .table_of_contents_box {
  padding: 32px 40px;
  border: 2px solid #F66A6B;
  border-radius: 10px;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap .table_of_contents_box {
    padding: 16px 16px;
    margin: 0 0 40px;
  }
}

.editor_wrap .table_of_contents_box .table_of_contents_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #F66A6B;
  line-height: 1.5;
  padding: 0 0 16px;
  margin: 0 0 24px;
  border-bottom: 2px solid #F66A6B;
}

@media only screen and (max-width: 640px) {
  .editor_wrap .table_of_contents_box .table_of_contents_box_title {
    font-size: 16px;
    padding: 0 0 8px;
    margin: 0 0 16px;
  }
}

.editor_wrap .table_of_contents_box .table_of_contents_list {
  padding: 0 0 0 20px;
  margin: 0;
  border-radius: 0;
  list-style: disc;
  background-color: inherit;
}

.editor_wrap .table_of_contents_box .table_of_contents_list .table_of_contents_item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap .table_of_contents_box .table_of_contents_list .table_of_contents_item {
    font-size: 14px;
  }
}

.editor_wrap .table_of_contents_box .table_of_contents_list .table_of_contents_item:last-child {
  margin: 0 0 0;
}

.editor_wrap .table_of_contents_box .table_of_contents_list .table_of_contents_item .table_of_contents_link {
  color: #262626;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.new_column_list {
  padding: 120px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .new_column_list {
    padding: 56px 0;
  }
}

.column_detail {
  padding: 96px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .column_detail {
    padding: 48px 0;
  }
}

.column_detail_title {
  padding: 0 0 0 32px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .column_detail_title {
    font-size: 26px;
    padding: 0 0 0 24px;
    margin: 0 0 24px;
  }
}

.column_detail_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(180deg, #F66A6B 0%, #F78E53 100%);
}

@media only screen and (max-width: 640px) {
  .column_detail_title::before {
    width: 8px;
  }
}

.column_detail_date_category {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 24px;
}

.column_detail_date_category .column_detail_date {
  width: 144px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #989898;
  line-height: 1.3;
}

@media only screen and (max-width: 640px) {
  .column_detail_date_category .column_detail_date {
    width: 110px;
    font-size: 12px;
  }
}

.column_detail_date_category .column_detail_date img {
  display: block;
  width: 14px;
}

@media only screen and (max-width: 640px) {
  .column_detail_date_category .column_detail_date img {
    width: 12px;
  }
}

.column_detail_date_category .column_detail_category {
  display: inline-block;
  max-width: calc(100% - 144px);
  padding: 4px 8px;
  background-color: #E2E2E2;
  border-radius: 4px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media only screen and (max-width: 640px) {
  .column_detail_date_category .column_detail_category {
    max-width: calc(100% - 110px);
  }
}

.column_detail_date_category .column_detail_category span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .column_detail_date_category .column_detail_category span {
    font-size: 13px;
  }
}

@media only screen and (min-width: 960px) {
  .column_detail_date_category .column_detail_category:hover {
    background-color: #d5d5d5;
  }
}

.column_detail_tag_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .column_detail_tag_list {
    margin: 0 0 24px;
  }
}

.column_detail_tag_list .column_detail_tag_item {
  margin: 0 16px 8px 0;
}

.column_detail_tag_list .column_detail_tag_item .column_detail_tag_link {
  display: block;
  padding: 0 0 0 16px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #727272;
  line-height: 1.5;
  text-decoration: underline;
}

.column_detail_tag_list .column_detail_tag_item .column_detail_tag_link:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/column/icon_tag.svg);
  background-repeat: no-repeat;
}

@media only screen and (min-width: 960px) {
  .column_detail_tag_list .column_detail_tag_item .column_detail_tag_link:hover {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
}

.coolumn_detail_img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 72px;
}

@media only screen and (max-width: 640px) {
  .coolumn_detail_img {
    margin: 0 0 32px;
  }
}

.coolumn_detail_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}

.recommend_column {
  padding: 120px 0;
  background-color: #F8F8F8;
}

@media only screen and (max-width: 640px) {
  .recommend_column {
    padding: 56px 0;
  }
}

/*=================

      faq.scss

=======================*/
.faq_list .faq_item {
  margin: 0 0 24px;
  padding: 20px 16px;
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item {
    margin: 0 0 16px;
    padding: 16px 12px;
  }
}

.faq_list .faq_item:last-child {
  margin: 0 0 0;
}

.faq_list .faq_item .faq_item_q_block {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 34px 0 0;
  cursor: pointer;
}

.faq_list .faq_item .faq_item_q_block:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 18px;
  height: 18px;
  background-image: url(../images/faq/icon_plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}

.faq_list .faq_item .faq_item_q_block .faq_item_q_icon {
  width: 64px;
  margin: 0 40px 0 0;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item .faq_item_q_block .faq_item_q_icon {
    width: 40px;
    margin: 0 16px 0 0;
  }
}

.faq_list .faq_item .faq_item_q_block .faq_item_q_icon img {
  width: 100%;
}

.faq_list .faq_item .faq_item_q_block .faq_item_q_title {
  width: calc(100% - 104px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item .faq_item_q_block .faq_item_q_title {
    width: calc(100% - 56px);
    font-size: 16px;
  }
}

.faq_list .faq_item .faq_item_q_block.active:after {
  background-image: url(../images/faq/icon_minus.svg);
}

.faq_list .faq_item .faq_item_a_block {
  display: none;
  margin: 20px 0 0;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item .faq_item_a_block {
    margin: 16px 0 0;
  }
}

.faq_list .faq_item .faq_item_a_block .faq_item_a_block_inner {
  display: flex;
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  background-color: #FEF2EB;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item .faq_item_a_block .faq_item_a_block_inner {
    padding: 16px 12px;
  }
}

.faq_list .faq_item .faq_item_a_block .faq_item_a_block_inner .faq_item_a_icon {
  width: 64px;
  margin: 0 40px 0 0;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item .faq_item_a_block .faq_item_a_block_inner .faq_item_a_icon {
    width: 40px;
    margin: 0 16px 0 0;
  }
}

.faq_list .faq_item .faq_item_a_block .faq_item_a_block_inner .faq_item_a_icon img {
  width: 100%;
}

.faq_list .faq_item .faq_item_a_block .faq_item_a_block_inner .faq_item_a_text {
  width: calc(100% - 104px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #727272;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item .faq_item_a_block .faq_item_a_block_inner .faq_item_a_text {
    width: calc(100% - 56px);
    font-size: 14px;
  }
}

.faq_list .faq_item .faq_item_a_block .faq_item_a_block_inner .faq_item_a_text a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

.faq_category {
  padding: 80px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .faq_category {
    padding: 40px 0;
  }
}

.faq_category_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -16px;
}

@media only screen and (max-width: 640px) {
  .faq_category_list {
    margin: 0 0 -8px;
  }
}

.faq_category_list .faq_category_item {
  margin: 0 16px 16px 0;
  width: calc((100% - 48px) / 4);
}

@media only screen and (max-width: 960px) {
  .faq_category_list .faq_category_item {
    width: calc((100% - 16px) / 2);
  }
}

@media only screen and (max-width: 640px) {
  .faq_category_list .faq_category_item {
    width: calc((100% - 8px) / 2);
    margin: 0 8px 8px 0;
  }
}

.faq_category_list .faq_category_item:nth-of-type(4n) {
  margin: 0 0 16px 0;
}

@media only screen and (max-width: 640px) {
  .faq_category_list .faq_category_item:nth-of-type(4n) {
    margin: 0 0 8px 0;
  }
}

@media only screen and (max-width: 960px) {
  .faq_category_list .faq_category_item:nth-of-type(2n) {
    margin: 0 0 16px 0;
  }
}

@media only screen and (max-width: 640px) {
  .faq_category_list .faq_category_item:nth-of-type(2n) {
    margin: 0 0 8px 0;
  }
}

.faq_category_list .faq_category_item .faq_category_link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E3E3E3;
  border-radius: 10px;
  position: relative;
  padding: 24px 32px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
  height: 100%;
}

@media only screen and (max-width: 640px) {
  .faq_category_list .faq_category_item .faq_category_link {
    font-size: 14px;
    padding: 12px 24px 12px 12px;
    justify-content: flex-start;
    text-align: left;
  }
}

.faq_category_list .faq_category_item .faq_category_link:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 10px;
  height: 6px;
  background-image: url(../images/common/icon_arrow_down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .faq_category_list .faq_category_item .faq_category_link:after {
    right: 12px;
  }
}

@media only screen and (min-width: 960px) {
  .faq_category_list .faq_category_item .faq_category_link:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(246, 106, 107, 0.05);
  }
}

.faq_detail {
  padding: 120px 0;
  background-color: #F8F8F8;
}

@media only screen and (max-width: 640px) {
  .faq_detail {
    padding: 56px 0;
  }
}

.faq_block_wrap .faq_block {
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .faq_block_wrap .faq_block {
    margin: 0 0 40px;
  }
}

.faq_block_wrap .faq_block:last-child {
  margin: 0 0 0;
}

/*=================

      register.scss

=======================*/
.register_page {
  padding: 120px 0;
  background: linear-gradient(180deg, #F66A6B 0%, #F78E53 100%);
}

@media only screen and (max-width: 640px) {
  .register_page {
    padding: 56px 0;
  }
}

.register_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 2;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .register_text {
    margin: 0 0 40px;
  }
}

.register_box {
  padding: 72px 24px;
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .register_box {
    padding: 32px 16px;
  }
}

.register_box .register_content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.register_box .register_content .register_block {
  padding: 0 0 72px;
  margin: 0 0 72px;
  border-bottom: 1px solid #F66A6B;
}

@media only screen and (max-width: 640px) {
  .register_box .register_content .register_block {
    padding: 0 0 32px;
    margin: 0 0 32px;
  }
}

.register_box .register_content .register_block .register_block_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .register_box .register_content .register_block .register_block_title {
    font-size: 18px;
    margin: 0 0 24px;
  }
}

.register_box .register_content .register_block .register_block_note {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .register_box .register_content .register_block .register_block_note {
    font-size: 14px;
    margin: 0 0 8px;
  }
}

.register_box .register_content .register_block .register_block_note a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

.register_box .register_content .register_login_block .register_login_block_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .register_box .register_content .register_login_block .register_login_block_title {
    margin: 0 0 24px;
  }
}

.register_line_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 16px;
  min-width: 280px;
  height: 64px;
  background-color: #06C755;
  border-radius: 50px;
  margin: 0 auto;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .register_line_btn {
    height: 56px;
  }
}

@media only screen and (min-width: 960px) {
  .register_line_btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}

.register_line_btn .register_line_icon {
  width: 32px;
  flex-shrink: 0;
}

.register_line_btn .register_line_icon img {
  width: 100%;
}

.register_line_btn .register_line_text_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.register_line_btn .register_line_text_arrow img {
  display: block;
  width: 6px;
  flex-shrink: 0;
}

/*=================

      mypage.scss

=======================*/
.mypage_notice_box {
  padding: 32px;
  background-color: #FDE2E2;
  border: 2px solid #F66A6B;
  border-radius: 10px;
  margin: 0 0 40px;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .mypage_notice_box {
    padding: 24px 16px;
    margin: 0 0 24px;
  }
}

.mypage_notice_box .mypage_notice_box_title {
  position: absolute;
  top: -12px;
  left: 24px;
  display: inline-block;
  white-space: nowrap;
  padding: 4px 30px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.3;
  border-radius: 6px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
  background-color: #F66A6B;
}

.mypage_notice_box .mypage_notice_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .mypage_notice_box .mypage_notice_text {
    font-size: 14px;
  }
}

.mypage_notice_box .mypage_notice_text a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

.mypage_notice_box .mypage_notice_list {
  max-width: 900px;
  margin: 0 auto;
}

.mypage_notice_box .mypage_notice_list .mypage_notice_item {
  padding: 0 0 0 20px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .mypage_notice_box .mypage_notice_list .mypage_notice_item {
    font-size: 14px;
  }
}

.mypage_notice_box .mypage_notice_list .mypage_notice_item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F66A6B;
}

.mypage_notice_box .mypage_notice_list .mypage_notice_item:last-child {
  margin: 0 0 0;
}

.mypage_notice_box .mypage_notice_list .mypage_notice_item a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

.mypage_search_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .mypage_search_wrap {
    display: block;
    margin: 0 0 16px;
  }
}

.mypage_search_wrap .mypage_search_text {
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_search_wrap .mypage_search_text {
    font-size: 13px;
    margin: 0 0 4px;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_search_wrap .mypage_search_select_block {
    margin: 0 0 4px;
  }
}

.mypage_search_wrap .mypage_search_select_block:last-child {
  margin: 0 0 0;
}

.mypage_search_wrap .mypage_search_select_block .mypage_search_select {
  width: 200px;
  padding: 12px 24px 12px 8px;
  background-color: #F4F4F4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  appearance: none;
  background-image: url(../images/common/icon_arrow_select.svg);
  background-repeat: no-repeat;
  background-size: 12px 6px;
  background-position: right 8px center;
  border: none;
}

@media only screen and (max-width: 640px) {
  .mypage_search_wrap .mypage_search_select_block .mypage_search_select {
    width: 100%;
    padding: 8px 24px 8px 8px;
  }
}

.mypage_search_wrap .mypage_search_select_block .mypage_search_select:focus {
  outline: 2px solid #F66A6B;
}

.mypage_search_wrap .mypage_search_select_block .mypage_search_select:last-child {
  margin: 0 0 0;
}

.mypage_prof_box_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -40px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap {
    margin: 0 0 -24px;
  }
}

.mypage_prof_box_wrap .mypage_prof_box {
  width: calc((100% - 64px) / 5);
  margin: 0 16px 40px 0;
}

@media only screen and (max-width: 840px) {
  .mypage_prof_box_wrap .mypage_prof_box {
    width: calc((100% - 32px) / 3);
  }
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box {
    width: calc((100% - 16px) / 2);
    margin: 0 8px 24px 0;
  }
}

.mypage_prof_box_wrap .mypage_prof_box:nth-of-type(5n) {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 840px) {
  .mypage_prof_box_wrap .mypage_prof_box:nth-of-type(5n) {
    margin: 0 16px 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box:nth-of-type(5n) {
    margin: 0 8px 24px 0;
  }
}

@media only screen and (max-width: 840px) {
  .mypage_prof_box_wrap .mypage_prof_box:nth-of-type(3n) {
    margin: 0 0 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box:nth-of-type(3n) {
    margin: 0 8px 24px 0;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box:nth-of-type(2n) {
    margin: 0 0 24px 0;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap {
  width: 100%;
  aspect-ratio: 1 / 1.3;
  border-radius: 8px;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap {
    margin: 0 0 12px;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_img {
  display: block;
  width: 100%;
  height: 100%;
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media only screen and (min-width: 960px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_img.active img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_status {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 0;
  width: 92px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_status {
    top: 4px;
    width: 80px;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_status img {
  width: 100%;
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_new {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 0;
  width: 54px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_new {
    top: 4px;
    width: 44px;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_new img {
  width: 100%;
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_keep_btn {
  position: absolute;
  z-index: 2;
  bottom: 8px;
  right: 8px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_keep_btn {
    bottom: 4px;
    right: 4px;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_keep_btn .mypage_prof_box_keep_btn_inner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_keep_btn .mypage_prof_box_keep_btn_inner {
    width: 30px;
    height: 30px;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_keep_btn .mypage_prof_box_keep_btn_inner .mypage_prof_box_keep_btn_img {
  width: 20px;
  height: 20px;
  background-image: url(../images/mypage/icon_keep.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_keep_btn .mypage_prof_box_keep_btn_inner .mypage_prof_box_keep_btn_img {
    width: 16px;
    height: 16px;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_img_wrap .mypage_prof_box_keep_btn.active .mypage_prof_box_keep_btn_img {
  background-image: url(../images/mypage/icon_keeped.svg);
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_link {
  display: block;
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_title {
    font-size: 14px;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_title span {
  font-size: 12px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_title span {
    font-size: 11px;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_area_age {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_area_age {
    gap: 8px;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_area_age .mypage_prof_box_area {
  display: inline-block;
  padding: 4px 8px;
  background-color: #E2E2E2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #F66A6B;
  line-height: 1.3;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_area_age .mypage_prof_box_area {
    font-size: 12px;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_area_age .mypage_prof_box_age {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #727272;
  line-height: 1.3;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_area_age .mypage_prof_box_age {
    font-size: 12px;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_match_friend {
  margin: 12px 0 0;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_match_friend a {
  color: #F66A6B;
  text-decoration: underline;
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_btn_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 16px 0 0;
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_btn_list .mypage_prof_box_btn_item .mypage_prof_box_btn_link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-width: 1px;
  border-style: solid;
  border-radius: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 1.3;
  padding: 4px 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_btn_list .mypage_prof_box_btn_item .mypage_prof_box_btn_link:hover {
    opacity: 0.7;
  }
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_btn_list .mypage_prof_box_btn_item .mypage_prof_box_btn_link.introduction {
  border-color: #F66A6B;
  color: #F66A6B;
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_btn_list .mypage_prof_box_btn_item .mypage_prof_box_btn_link.edit {
  border-color: #9A9A9A;
  color: #9A9A9A;
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_btn_list .mypage_prof_box_btn_item .mypage_prof_box_btn_link.detail {
  border-color: #727272;
  color: #727272;
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_btn_list .mypage_prof_box_btn_item .mypage_prof_box_btn_link.delete {
  background-color: #9A9A9A;
  border-color: #9A9A9A;
  color: #FFF;
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_btn_list .mypage_prof_box_btn_item .mypage_prof_box_btn_link.copy {
  border-color: #262626;
  color: #262626;
}

.mypage_prof_box_wrap .mypage_prof_box .mypage_prof_box_btn_list .mypage_prof_box_btn_item .mypage_prof_box_btn_link img {
  display: block;
  width: 12px;
}

.mypage_num_box_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .mypage_num_box_wrap {
    display: block;
  }
}

.mypage_num_box_wrap .mypage_num_box {
  width: calc((100% - 40px) / 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 42px 16px 20px;
  position: relative;
  background-color: #FFF;
  border: 1px solid #F66A6B;
  border-radius: 4px;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 840px) {
  .mypage_num_box_wrap .mypage_num_box {
    width: 100%;
    margin: 0 0 8px;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_num_box_wrap .mypage_num_box {
    padding: 8px 24px 8px 12px;
  }
}

@media only screen and (min-width: 960px) {
  .mypage_num_box_wrap .mypage_num_box:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}

@media only screen and (max-width: 840px) {
  .mypage_num_box_wrap .mypage_num_box:last-child {
    margin: 0 0 0 0;
  }
}

.mypage_num_box_wrap .mypage_num_box:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 6px;
  height: 11px;
  background-image: url(../images/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .mypage_num_box_wrap .mypage_num_box:after {
    right: 12px;
  }
}

.mypage_num_box_wrap .mypage_num_box_title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_num_box_wrap .mypage_num_box_title {
    font-size: 14px;
  }
}

.mypage_num_box_wrap .mypage_num_box_title img {
  display: block;
  width: 22px;
}

@media only screen and (max-width: 640px) {
  .mypage_num_box_wrap .mypage_num_box_title img {
    width: 20px;
  }
}

.mypage_num_box_wrap .mypage_num_box_num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #F66A6B;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.mypage_num_box_wrap .mypage_num_box_num span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
}

@media only screen and (max-width: 640px) {
  .mypage_num_box_wrap .mypage_num_box_num span {
    font-size: 28px;
  }
}

.mypage_top_recommend {
  padding: 120px 0;
  background-color: #F8F8F8;
}

@media only screen and (max-width: 640px) {
  .mypage_top_recommend {
    padding: 56px 0;
  }
}

.mypage_top_recommend_block_wrap .mypage_top_recommend_block {
  padding: 0 0 64px;
  border-bottom: 1px solid #E3E3E3;
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .mypage_top_recommend_block_wrap .mypage_top_recommend_block {
    padding: 0 0 24px;
    margin: 0 0 24px;
  }
}

.mypage_top_recommend_block_wrap .mypage_top_recommend_block:last-child {
  padding: 0 0 0;
  border-bottom: none;
  margin: 0 0 0;
}

.mypage_top_recommend_block_wrap .mypage_top_recommend_block .mypage_top_recommend_block_title_wrap {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .mypage_top_recommend_block_wrap .mypage_top_recommend_block .mypage_top_recommend_block_title_wrap {
    margin: 0 0 16px;
  }
}

.mypage_top_recommend_block_wrap .mypage_top_recommend_block .mypage_top_recommend_block_title_wrap .mypage_top_recommend_block_title_icon {
  width: 40px;
  height: 40px;
  border: 2px solid #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  overflow: hidden;
  margin: 0 16px 0 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 640px) {
  .mypage_top_recommend_block_wrap .mypage_top_recommend_block .mypage_top_recommend_block_title_wrap .mypage_top_recommend_block_title_icon {
    margin: 0 8px 0 0;
  }
}

.mypage_top_recommend_block_wrap .mypage_top_recommend_block .mypage_top_recommend_block_title_wrap .mypage_top_recommend_block_title_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mypage_top_recommend_block_wrap .mypage_top_recommend_block .mypage_top_recommend_block_title_wrap .mypage_top_recommend_block_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_top_recommend_block_wrap .mypage_top_recommend_block .mypage_top_recommend_block_title_wrap .mypage_top_recommend_block_title {
    font-size: 14px;
  }
}

.mypage_top_recommend_block_wrap .mypage_top_recommend_block .mypage_top_recommend_block_title_wrap .mypage_top_recommend_block_title .name {
  font-size: 24px;
}

@media only screen and (max-width: 640px) {
  .mypage_top_recommend_block_wrap .mypage_top_recommend_block .mypage_top_recommend_block_title_wrap .mypage_top_recommend_block_title .name {
    font-size: 18px;
  }
}

.mypage_top_recommend_block_wrap .mypage_top_recommend_block .mypage_top_recommend_block_title_wrap .mypage_top_recommend_block_title .c_main {
  color: #F66A6B;
}

.mypage_url_copy_block {
  display: flex;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.mypage_url_copy_block .mypage_url_copy_input {
  width: calc(100% - 116px);
  padding: 8px 16px;
  background-color: #F4F4F4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  border: none;
  height: 64px;
}

@media only screen and (max-width: 640px) {
  .mypage_url_copy_block .mypage_url_copy_input {
    padding: 8px 8px;
    height: 48px;
    width: calc(100% - 80px);
  }
}

.mypage_url_copy_block .mypage_url_copy_input::placeholder {
  color: #727272;
}

.mypage_url_copy_block .mypage_url_copy_input:focus {
  outline: 2px solid #F66A6B;
}

.mypage_url_copy_block .mypage_url_copy_btn {
  width: 116px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #ff6969 0%, #fa9d73 54.19%, #ff6980 100%);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_url_copy_block .mypage_url_copy_btn {
    width: 80px;
    height: 48px;
    font-size: 14px;
  }
}

.mypage_url_copy_block .mypage_url_copy_btn img {
  display: block;
  width: 16px;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 640px) {
  .mypage_url_copy_block .mypage_url_copy_btn img {
    width: 14px;
    margin: 0 4px 0 0;
  }
}

.mypage_prof_detail_page_link {
  padding: 72px 0 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_page_link {
    padding: 32px 0 0;
  }
}

.mypage_prof_page_link_list {
  display: flex;
  width: 100%;
  gap: 40px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_page_link_list {
    gap: 16px;
  }
}

.mypage_prof_page_link_list .mypage_prof_page_link_item .mypage_prof_page_link_link {
  display: flex;
  justify-content: space-between;
  padding: 0 0 12px;
  border-bottom: 1px solid #262626;
  width: 200px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_page_link_list .mypage_prof_page_link_item .mypage_prof_page_link_link {
    width: 140px;
    font-size: 13px;
    padding: 0 0 8px;
  }
}

@media only screen and (min-width: 960px) {
  .mypage_prof_page_link_list .mypage_prof_page_link_item .mypage_prof_page_link_link:hover {
    opacity: 0.7;
  }
}

.myapge_prof_detail {
  padding: 56px 0 120px;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .myapge_prof_detail {
    padding: 40px 0 56px;
  }
}

.mypage_prof_detail_img_list_wrap {
  display: flex;
  width: 100%;
  margin: 0 0 80px;
}

@media only screen and (max-width: 840px) {
  .mypage_prof_detail_img_list_wrap {
    display: block;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_img_list_wrap {
    margin: 0 0 56px;
  }
}

.mypage_prof_detail_img_list_wrap .mypage_prof_detail_img_block {
  width: 280px;
  margin: 0 80px 0 0;
}

@media only screen and (max-width: 960px) {
  .mypage_prof_detail_img_list_wrap .mypage_prof_detail_img_block {
    margin: 0 40px 0 0;
  }
}

@media only screen and (max-width: 840px) {
  .mypage_prof_detail_img_list_wrap .mypage_prof_detail_img_block {
    width: 100%;
    margin: 0 auto 40px;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_img_list_wrap .mypage_prof_detail_img_block {
    margin: 0 auto 24px;
  }
}

.mypage_prof_detail_img_list_wrap .mypage_prof_detail_prof_list_block {
  width: calc(100% - 360px);
}

@media only screen and (max-width: 960px) {
  .mypage_prof_detail_img_list_wrap .mypage_prof_detail_prof_list_block {
    width: calc(100% - 320px);
  }
}

@media only screen and (max-width: 840px) {
  .mypage_prof_detail_img_list_wrap .mypage_prof_detail_prof_list_block {
    width: 100%;
  }
}

.mypage_prof_detail_img {
  position: relative;
}

@media only screen and (max-width: 840px) {
  .mypage_prof_detail_img {
    width: 220px;
    margin: 0 auto;
  }
}

.mypage_prof_detail_img .mypage_prof_detail_keep_btn {
  position: absolute;
  z-index: 2;
  bottom: 8px;
  right: 8px;
}

.mypage_prof_detail_img .mypage_prof_detail_keep_btn .mypage_prof_detail_keep_btn_inner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mypage_prof_detail_img .mypage_prof_detail_keep_btn .mypage_prof_detail_keep_btn_inner .mypage_prof_detail_keep_btn_img {
  width: 20px;
  height: 20px;
  background-image: url(../images/mypage/icon_keep.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mypage_prof_detail_img .mypage_prof_detail_keep_btn.active .mypage_prof_detail_keep_btn_img {
  background-image: url(../images/mypage/icon_keeped.svg);
}

.mypage_prof_detail_main_img_list {
  margin: 0 0 16px;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .mypage_prof_detail_main_img_list {
    width: 220px;
    margin: 0 auto 16px;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_main_img_list {
    margin: 0 auto 8px;
  }
}

.mypage_prof_detail_main_img_list .mypage_prof_detail_main_img_item {
  display: none;
  width: 100%;
  aspect-ratio: 1 / 1.3;
  border-radius: 8px;
  overflow: hidden;
}

.mypage_prof_detail_main_img_list .mypage_prof_detail_main_img_item.active {
  display: block;
}

.mypage_prof_detail_main_img_list .mypage_prof_detail_main_img_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mypage_prof_detail_sub_img_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .mypage_prof_detail_sub_img_list {
    gap: 8px;
  }
}

.mypage_prof_detail_sub_img_list .mypage_prof_detail_sub_img_item {
  width: calc((100% - 32px) / 3);
  cursor: pointer;
  aspect-ratio: 1 / 1.3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 840px) {
  .mypage_prof_detail_sub_img_list .mypage_prof_detail_sub_img_item {
    width: calc((100% - 32px) / 5);
  }
}

.mypage_prof_detail_sub_img_list .mypage_prof_detail_sub_img_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mypage_prof_detail_sub_img_list .mypage_prof_detail_sub_img_item.active {
  border: 2px solid #F66A6B;
}

.mypage_prof_detail_prof_name_status {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_prof_name_status {
    display: block;
    margin: 0 0 16px;
  }
}

.mypage_prof_detail_prof_name_status .mypage_prof_detail_prof_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 34px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_prof_name_status .mypage_prof_detail_prof_name {
    font-size: 20px;
    margin: 0 0 8px;
  }
}

.mypage_prof_detail_prof_name_status .mypage_prof_detail_prof_name span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_prof_name_status .mypage_prof_detail_prof_name span {
    font-size: 14px;
  }
}

.mypage_prof_detail_prof_name_status .mypage_prof_detail_prof_status {
  width: 92px;
  margin: 0 0 0 16px;
  flex-shrink: 0;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_prof_name_status .mypage_prof_detail_prof_status {
    margin: 0 0 0 0;
  }
}

.mypage_prof_detail_prof_name_status .mypage_prof_detail_prof_status img {
  width: 100%;
}

.mypage_prof_detail_prof_btn_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-width: 1px;
  border-style: solid;
  border-radius: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 1.3;
  padding: 6px 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn:hover {
    opacity: 0.7;
  }
}

.mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn.introduction {
  border-color: #F66A6B;
  color: #F66A6B;
}

.mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn.edit {
  border-color: #9A9A9A;
  color: #9A9A9A;
}

.mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn.detail {
  border-color: #727272;
  color: #727272;
}

.mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn.delete {
  background-color: #9A9A9A;
  border-color: #9A9A9A;
  color: #FFF;
}

.mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn.copy {
  border-color: #262626;
  color: #262626;
}

.mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn.introduction_copy {
  background: linear-gradient(90deg, #ff6969 0%, #fa9d73 54.19%, #ff6980 100%);
  color: #FFF;
}

.mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn.keep {
  border-color: #BCBCBC;
  color: #BCBCBC;
}

.mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn.keep .mypage_prof_detail_prof_btn_keep_img {
  width: 16px;
  height: 16px;
  background-image: url(../images/mypage/icon_keep.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn.keep.active {
  border-color: #F66A6B;
  color: #F66A6B;
}

.mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn.keep.active .mypage_prof_detail_prof_btn_keep_img {
  background-image: url(../images/mypage/icon_keeped.svg);
}

.mypage_prof_detail_prof_btn_list .mypage_prof_detail_prof_btn_item .mypage_prof_detail_prof_btn img {
  display: block;
  width: 16px;
}

.mypage_prof_detail_tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin: 24px 0 0;
}

.mypage_prof_detail_tag_list .mypage_prof_detail_tag_item {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #E3E3E3;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #727272;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_tag_list .mypage_prof_detail_tag_item {
    font-size: 12px;
  }
}

.mypage_prof_detail_tag_list .mypage_prof_detail_tag_item::before {
  content: "#";
  color: #F66A6B;
}

.mypage_prof_detail_basic_info_box {
  margin: 56px 0 0;
  position: relative;
  padding: 56px 40px 32px 40px;
  border-radius: 30px;
  border: 1px solid #F66A6B;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_basic_info_box {
    padding: 48px 0 56px;
    padding: 40px 16px 24px 16px;
  }
}

.mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_box_title_wrap {
  position: absolute;
  top: -24px;
  left: 16px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_box_title_wrap {
    top: -20px;
    left: 16px;
  }
}

.mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_box_title_wrap .mypage_prof_detail_basic_info_box_title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid #F66A6B;
  background-color: #FFF;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #F66A6B;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_box_title_wrap .mypage_prof_detail_basic_info_box_title {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_box_title_wrap .mypage_prof_detail_basic_info_box_title:after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 38px;
  width: 11px;
  height: 12px;
  background-image: url(../images/mypage/img_fukidashi.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_box_title_wrap .mypage_prof_detail_basic_info_box_title img {
  display: block;
  width: 22px;
  flex-shrink: 0;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_box_title_wrap .mypage_prof_detail_basic_info_box_title img {
    width: 16px;
  }
}

.mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_list .mypage_prof_detail_basic_info_item {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #E3E3E3;
  position: relative;
  padding: 0 0 16px;
  margin: 0 0 16px;
}

.mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_list .mypage_prof_detail_basic_info_item:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 200px;
  height: 1px;
  background-color: #F66A6B;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_list .mypage_prof_detail_basic_info_item:after {
    width: 96px;
  }
}

.mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_list .mypage_prof_detail_basic_info_item .mypage_prof_detail_basic_info_item_title {
  width: 200px;
  margin: 0 24px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_list .mypage_prof_detail_basic_info_item .mypage_prof_detail_basic_info_item_title {
    width: 96px;
    margin: 0 12px 0 0;
    font-size: 14px;
  }
}

.mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_list .mypage_prof_detail_basic_info_item .mypage_prof_detail_basic_info_item_detail {
  width: calc(100% - 224px);
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_list .mypage_prof_detail_basic_info_item .mypage_prof_detail_basic_info_item_detail {
    width: calc(100% - 108px);
  }
}

.mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_list .mypage_prof_detail_basic_info_item .mypage_prof_detail_basic_info_item_detail .mypage_prof_detail_basic_info_item_detail_area {
  display: inline-block;
  padding: 4px 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #F66A6B;
  line-height: 1.5;
  background-color: #E2E2E2;
}

.mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_list .mypage_prof_detail_basic_info_item .mypage_prof_detail_basic_info_item_detail .mypage_prof_detail_basic_info_item_detail_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_basic_info_box .mypage_prof_detail_basic_info_list .mypage_prof_detail_basic_info_item .mypage_prof_detail_basic_info_item_detail .mypage_prof_detail_basic_info_item_detail_text {
    font-size: 14px;
  }
}

.mypage_prof_detail_comment_box {
  position: relative;
  padding: 56px 40px 32px 40px;
  border-radius: 30px;
  border: 1px solid #F66A6B;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  background-color: #FEF4F4;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_comment_box {
    padding: 40px 16px 24px 16px;
  }
}

.mypage_prof_detail_comment_box .mypage_prof_detail_comment_box_title_wrap {
  position: absolute;
  top: -24px;
  left: 16px;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_comment_box .mypage_prof_detail_comment_box_title_wrap {
    top: -20px;
  }
}

.mypage_prof_detail_comment_box .mypage_prof_detail_comment_box_title_wrap .mypage_prof_detail_comment_box_title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid #F66A6B;
  background-color: #FFF;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #F66A6B;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_comment_box .mypage_prof_detail_comment_box_title_wrap .mypage_prof_detail_comment_box_title {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.mypage_prof_detail_comment_box .mypage_prof_detail_comment_box_title_wrap .mypage_prof_detail_comment_box_title:after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 38px;
  width: 11px;
  height: 12px;
  background-image: url(../images/mypage/img_fukidashi.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.mypage_prof_detail_comment_box .mypage_prof_detail_comment_box_title_wrap .mypage_prof_detail_comment_box_title img {
  display: block;
  width: 22px;
  flex-shrink: 0;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_comment_box .mypage_prof_detail_comment_box_title_wrap .mypage_prof_detail_comment_box_title img {
    width: 16px;
  }
}

.mypage_prof_detail_comment_box .mypage_prof_detail_comment_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .mypage_prof_detail_comment_box .mypage_prof_detail_comment_box_text {
    font-size: 14px;
  }
}

.myapge_prof_detail_recommend {
  padding: 120px 0;
  background-color: #F8F8F8;
}

@media only screen and (max-width: 640px) {
  .myapge_prof_detail_recommend {
    padding: 56px 0;
  }
}

.myapge_match_prof_detail {
  padding: 56px 0 120px;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .myapge_match_prof_detail {
    padding: 32px 0 56px;
  }
}

.myapge_match_prof_friend_wrap {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 640px) {
  .myapge_match_prof_friend_wrap {
    display: block;
  }
}

.myapge_match_prof_friend_wrap .myapge_match_prof_friend_text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  flex-shrink: 0;
}

@media only screen and (max-width: 640px) {
  .myapge_match_prof_friend_wrap .myapge_match_prof_friend_text {
    font-size: 13px;
    margin: 0 0 4px;
  }
}

.myapge_match_prof_friend_wrap .myapge_match_prof_friend_text img {
  display: block;
  width: 16px;
}

.myapge_match_prof_friend_wrap .myapge_match_prof_friend_detail {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .myapge_match_prof_friend_wrap .myapge_match_prof_friend_detail {
    font-size: 14px;
  }
}

.myapge_match_prof_friend_wrap .myapge_match_prof_friend_detail a {
  color: #F66A6B;
  text-decoration: underline;
}

.myapge_match_prof_friend_wrap .myapge_match_prof_friend_detail a.main {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.introduction_filter {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background: linear-gradient(90deg, #ff6969 0%, #fa9d73 54.19%, #ff6980 100%);
  opacity: 0.87;
}

.mypage_introduction_url_popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 100000;
  width: 100%;
}

.mypage_introduction_url_popup .mypage_introduction_url_popup_inner {
  max-width: 640px;
  width: 90%;
  max-height: 90vh;
  position: relative;
  background-color: #FFF;
  border-radius: 20px;
  padding: 40px 64px;
  overflow-y: scroll;
  margin: 0 auto;
  border: 2px solid #F66A6B;
}

@media only screen and (max-width: 640px) {
  .mypage_introduction_url_popup .mypage_introduction_url_popup_inner {
    padding: 40px 16px 32px;
  }
}

.mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_close_btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  padding: 4px;
}

@media only screen and (max-width: 640px) {
  .mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_close_btn {
    top: 4px;
    right: 4px;
  }
}

.mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_close_btn img {
  width: 100%;
}

.mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_img {
  width: 90px;
  aspect-ratio: 1 / 1.3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto 16px;
}

@media only screen and (max-width: 640px) {
  .mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_img {
    width: 72px;
    margin: 0 auto 16px;
  }
}

.mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_sub_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 32px;
}

.mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_sub_title span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}

.mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 16px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_title {
    gap: 8px;
  }
}

.mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_title img {
  display: block;
  width: 24px;
  flex-shrink: 0;
}

@media only screen and (max-width: 640px) {
  .mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_title img {
    width: 16px;
  }
}

.mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_title span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #F66A6B;
  line-height: 1.5;
  background: linear-gradient(transparent 60%, #FCF8C7 60%);
}

@media only screen and (max-width: 640px) {
  .mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_title span {
    font-size: 22px;
  }
}

.mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .mypage_introduction_url_popup .mypage_introduction_url_popup_inner .mypage_introduction_url_popup_content .mypage_introduction_url_popup_text {
    font-size: 14px;
  }
}

.mypage_match_profile_introduction_sec {
  padding: 72px 0;
  background: linear-gradient(90deg, #ff6969 0%, #fa9d73 54.19%, #ff6980 100%);
}

@media only screen and (max-width: 640px) {
  .mypage_match_profile_introduction_sec {
    padding: 40px 0;
  }
}

.mypage_match_profile_introduction_sec_img {
  width: 78px;
  margin: 0 auto 16px;
}

@media only screen and (max-width: 640px) {
  .mypage_match_profile_introduction_sec_img {
    width: 64px;
  }
}

.mypage_match_profile_introduction_sec_img img {
  width: 100%;
}

.mypage_match_profile_introduction_sec_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .mypage_match_profile_introduction_sec_title {
    font-size: 22px;
    margin: 0 0 24px;
  }
}

.mypage_match_profile_introduction_sec_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 2;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .mypage_match_profile_introduction_sec_text {
    font-size: 14px;
    margin: 0 0 24px;
  }
}

.mypage_match_profile_introduction_btn_box {
  padding: 56px 24px 40px;
  background-color: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
}

@media only screen and (max-width: 640px) {
  .mypage_match_profile_introduction_btn_box {
    padding: 40px 16px 24px;
  }
}

.myapge_match_prof_detail_more_matches {
  padding: 120px 0;
  background-color: #F8F8F8;
}

@media only screen and (max-width: 640px) {
  .myapge_match_prof_detail_more_matches {
    padding: 56px 0;
  }
}

.mypage_account_menu_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 32px;
}

@media only screen and (max-width: 960px) {
  .mypage_account_menu_list {
    gap: 8px;
  }
}

@media only screen and (max-width: 840px) {
  .mypage_account_menu_list {
    display: block;
  }
}

.mypage_account_menu_list .mypage_account_menu_item {
  width: calc((100% - 64px) / 3);
}

@media only screen and (max-width: 960px) {
  .mypage_account_menu_list .mypage_account_menu_item {
    width: calc((100% - 16px) / 3);
  }
}

@media only screen and (max-width: 840px) {
  .mypage_account_menu_list .mypage_account_menu_item {
    width: 100%;
    margin: 0 0 8px;
  }
}

@media only screen and (max-width: 840px) {
  .mypage_account_menu_list .mypage_account_menu_item:last-child {
    margin: 0 0 0;
  }
}

.mypage_account_menu_list .mypage_account_menu_item .mypage_account_menu_link {
  display: flex;
  gap: 24px;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #E3E3E3;
  height: 100%;
}

@media only screen and (max-width: 640px) {
  .mypage_account_menu_list .mypage_account_menu_item .mypage_account_menu_link {
    padding: 16px;
    gap: 16px;
  }
}

@media only screen and (min-width: 960px) {
  .mypage_account_menu_list .mypage_account_menu_item .mypage_account_menu_link:hover {
    background-color: #FEF4F4;
  }
}

.mypage_account_menu_list .mypage_account_menu_item .mypage_account_menu_link .mypage_account_menu_item_icon {
  width: 56px;
  flex-shrink: 0;
}

@media only screen and (max-width: 640px) {
  .mypage_account_menu_list .mypage_account_menu_item .mypage_account_menu_link .mypage_account_menu_item_icon {
    width: 40px;
  }
}

.mypage_account_menu_list .mypage_account_menu_item .mypage_account_menu_link .mypage_account_menu_item_icon img {
  width: 100%;
}

.mypage_account_menu_list .mypage_account_menu_item .mypage_account_menu_link .mypage_account_menu_item_detail .mypage_account_menu_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .mypage_account_menu_list .mypage_account_menu_item .mypage_account_menu_link .mypage_account_menu_item_detail .mypage_account_menu_item_title {
    font-size: 16px;
  }
}

.mypage_account_menu_list .mypage_account_menu_item .mypage_account_menu_link .mypage_account_menu_item_detail .mypage_account_menu_item_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 2;
}

.mypage_account_box {
  padding: 72px 24px;
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .mypage_account_box {
    padding: 24px 16px;
  }
}

.mypage_account_box .mypage_account_box_content {
  max-width: 900px;
  margin: 0 auto;
}

.mypage_account_box .mypage_account_box_content .mypage_account_box_content_block_wrap .mypage_account_box_content_block {
  margin: 0 0 64px;
}

.mypage_account_box .mypage_account_box_content .mypage_account_box_content_block_wrap .mypage_account_box_content_block:last-child {
  margin: 0 0 0;
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item {
  display: flex;
  width: 100%;
  padding: 0 0 32px;
  border-bottom: 1px solid #E3E3E3;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item {
    display: block;
    padding: 0 0 16px;
    margin: 0 0 16px;
  }
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_title {
  width: 200px;
  margin: 0 48px 0 0;
  padding: 0 0 0 14px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_title {
    width: 100%;
    margin: 0 0 8px;
  }
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F66A6B;
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_detail {
  width: calc(100% - 248px);
}

@media only screen and (max-width: 640px) {
  .mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_detail {
    width: 100%;
  }
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_detail .mypage_account_item_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_detail .mypage_account_item_text span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_detail .mypage_account_item_text .c_main {
  color: #F66A6B;
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_detail .mypage_account_item_note {
  margin: 12px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_detail .mypage_account_item_note.c_main {
  color: #F66A6B;
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_detail .mypage_account_item_label {
  display: inline-block;
  padding: 6px 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_detail .mypage_account_item_label.complete {
  background-color: #F66A6B;
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_detail .mypage_account_item_label.under_review {
  background-color: #F78E53;
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_detail .mypage_account_item_label.unfinished {
  background-color: #B9B9B9;
}

.mypage_account_box .mypage_account_box_content .mypage_account_list .mypage_account_item .mypage_account_item_detail .mypage_account_item_label.rejected {
  background-color: #EB4242;
}

.mypage_account_box .mypage_account_box_content .mypage_account_box_content_block_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
}

.mypage_account_box .mypage_account_box_content .mypage_account_box_content_block_text a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

.mypage_delete_account_box {
  padding: 72px 24px;
  background-color: #FFF;
  border-radius: 20px;
  border: 1px solid #F66A6B;
}

@media only screen and (max-width: 640px) {
  .mypage_delete_account_box {
    padding: 24px 16px;
  }
}

.mypage_delete_account_box .mypage_delete_account_box_content {
  max-width: 900px;
  margin: 0 auto;
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #F66A6B;
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_title {
    font-size: 22px;
    margin: 0 0 16px;
  }
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_notice_list {
  margin: 0 0 56px;
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_notice_list .mypage_delete_account_box_notice_item {
  padding: 0 0 0 20px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 12px;
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_notice_list .mypage_delete_account_box_notice_item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F66A6B;
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_note_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  margin: 16px 0 8px;
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_note_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_note_text {
    margin: 0 0 40px;
  }
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_checkbox_block {
  margin: 0 0 32px;
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_checkbox_block .mypage_delete_account_box_checkbox_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_checkbox_block .mypage_delete_account_box_checkbox_wrap .mypage_delete_account_box_checkbox_required {
  display: inline-block;
  white-space: nowrap;
  padding: 4px 12px;
  background-color: #EB4242;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.3;
  flex-shrink: 0;
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_checkbox_block .mypage_delete_account_box_checkbox_wrap .mypage_delete_account_box_checkbox_label .mypage_delete_account_box_checkbox {
  display: none;
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_checkbox_block .mypage_delete_account_box_checkbox_wrap .mypage_delete_account_box_checkbox_label .mypage_delete_account_box_checkbox:checked + .mypage_delete_account_box_checkbox_text:after {
  display: block;
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_checkbox_block .mypage_delete_account_box_checkbox_wrap .mypage_delete_account_box_checkbox_label .mypage_delete_account_box_checkbox_text {
  padding: 0 0 0 48px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_checkbox_block .mypage_delete_account_box_checkbox_wrap .mypage_delete_account_box_checkbox_label .mypage_delete_account_box_checkbox_text:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 32px;
  height: 32px;
  background-color: #F4F4F4;
}

@media only screen and (max-width: 640px) {
  .mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_checkbox_block .mypage_delete_account_box_checkbox_wrap .mypage_delete_account_box_checkbox_label .mypage_delete_account_box_checkbox_text:before {
    top: 4px;
  }
}

.mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_checkbox_block .mypage_delete_account_box_checkbox_wrap .mypage_delete_account_box_checkbox_label .mypage_delete_account_box_checkbox_text:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  background-image: url(../images/common/icon_check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  top: 5px;
  left: 6px;
  display: none;
}

@media only screen and (max-width: 640px) {
  .mypage_delete_account_box .mypage_delete_account_box_content .mypage_delete_account_box_checkbox_block .mypage_delete_account_box_checkbox_wrap .mypage_delete_account_box_checkbox_label .mypage_delete_account_box_checkbox_text:after {
    top: 12px;
  }
}

.mypage_delete_account_box_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media only screen and (max-width: 840px) {
  .mypage_delete_account_box_btn_wrap {
    display: block;
    text-align: center;
  }
}

.mypage_delete_account_box_btn_wrap .mypage_delete_account_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  min-width: 280px;
  height: 64px;
  background-color: #EB4242;
  border-radius: 50px;
  border: 2px solid #FFF;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 840px) {
  .mypage_delete_account_box_btn_wrap .mypage_delete_account_btn {
    display: flex;
    margin: 8px auto 0;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_delete_account_box_btn_wrap .mypage_delete_account_btn {
    height: 56px;
  }
}

@media only screen and (min-width: 960px) {
  .mypage_delete_account_box_btn_wrap .mypage_delete_account_btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}

.mypage_delete_account_box_btn_wrap .mypage_delete_account_btn .mypage_delete_account_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.mypage_delete_account_box_btn_wrap .mypage_delete_account_btn .mypage_delete_account_btn_arrow {
  width: 6px;
}

.mypage_delete_account_box_btn_wrap .mypage_delete_account_btn .mypage_delete_account_btn_arrow img {
  width: 100%;
}

.mypage_request_box_wrap .mypage_request_box {
  border-radius: 10px;
  border: 1px solid #E3E3E3;
  padding: 32px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .mypage_request_box_wrap .mypage_request_box {
    padding: 16px;
    display: block;
    margin: 0 0 16px;
  }
}

.mypage_request_box_wrap .mypage_request_box.active {
  background-color: #FEF4F4;
}

.mypage_request_box_wrap .mypage_request_box.active:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2px;
  width: 4px;
  height: 70%;
  border-radius: 4px;
  background-color: #F66A6B;
}

.mypage_request_box_wrap .mypage_request_box.close .mypage_request_box_date_block .mypage_request_box_date_limit {
  color: #727272;
}

.mypage_request_box_wrap .mypage_request_box:last-child {
  margin: 0 0 0;
}

.mypage_request_box_wrap .mypage_request_box .mypage_request_box_date_block {
  width: 200px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 640px) {
  .mypage_request_box_wrap .mypage_request_box .mypage_request_box_date_block {
    width: 100%;
    margin: 0 0 8px;
  }
}

.mypage_request_box_wrap .mypage_request_box .mypage_request_box_date_block .mypage_request_box_date {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 1.5;
  margin: 0 20px 0 0;
}

@media only screen and (max-width: 640px) {
  .mypage_request_box_wrap .mypage_request_box .mypage_request_box_date_block .mypage_request_box_date {
    margin: 0 16px 0 0;
  }
}

.mypage_request_box_wrap .mypage_request_box .mypage_request_box_date_block .mypage_request_box_date_limit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #F52F2E;
  line-height: 1.5;
}

.mypage_request_box_wrap .mypage_request_box .mypage_request_box_friend_match_block {
  display: flex;
  align-items: center;
  width: calc(100% - 200px);
}

@media only screen and (max-width: 640px) {
  .mypage_request_box_wrap .mypage_request_box .mypage_request_box_friend_match_block {
    width: 100%;
  }
}

.mypage_request_box_wrap .mypage_request_box .mypage_request_box_friend_match_block .mypage_request_box_friend_img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-shrink: 0;
}

.mypage_request_box_wrap .mypage_request_box .mypage_request_box_friend_match_block .mypage_request_box_friend_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mypage_request_box_wrap .mypage_request_box .mypage_request_box_friend_match_block .mypage_request_box_match_img {
  margin: 0 16px 0 -8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-shrink: 0;
}

.mypage_request_box_wrap .mypage_request_box .mypage_request_box_friend_match_block .mypage_request_box_match_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mypage_request_box_wrap .mypage_request_box .mypage_request_box_friend_match_block .mypage_request_box_friend_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #262626;
  line-height: 1.5;
}

.mypage_request_box_wrap .mypage_request_box .mypage_request_box_friend_match_block .mypage_request_box_friend_name a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  text-decoration: underline;
}

@media only screen and (max-width: 640px) {
  .mypage_request_box_wrap .mypage_request_box .mypage_request_box_friend_match_block .mypage_request_box_friend_name a {
    font-size: 15px;
  }
}

.mypage_request_box_wrap .mypage_request_box .mypage_request_box_friend_match_block .mypage_request_box_friend_name span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  margin: 0 4px;
}

@media only screen and (max-width: 640px) {
  .mypage_request_box_wrap .mypage_request_box .mypage_request_box_friend_match_block .mypage_request_box_friend_name span {
    font-size: 14px;
  }
}

/*=================

      terms.scss

=======================*/
.terms_box {
  padding: 72px 24px;
  background-color: #FFF;
  border: 1px solid #F66A6B;
}

@media only screen and (max-width: 640px) {
  .terms_box {
    padding: 24px 16px;
  }
}

.terms_box .terms_box_content {
  max-width: 900px;
  margin: 0 auto;
}

.terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block {
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block {
    margin: 0 0 40px;
  }
}

.terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block:last-child {
  margin: 0 0 0;
}

.terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block .terms_box_content_block_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block .terms_box_content_block_title {
    font-size: 20px;
    margin: 0 0 16px;
  }
}

.terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block .terms_box_content_block_sub_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #262626;
  line-height: 1.5;
  margin: 20px 0 16px;
}

@media only screen and (max-width: 640px) {
  .terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block .terms_box_content_block_sub_title {
    font-size: 18px;
  }
}

.terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block .terms_box_content_block_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
}

.terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block .terms_box_content_block_text.right {
  text-align: right;
}

.terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block .terms_box_content_block_decimal_list {
  list-style: decimal;
  padding: 0 0 0 20px;
  margin: 8px 0 0;
}

.terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block .terms_box_content_block_decimal_list .terms_box_content_block_decimal_item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
  margin: 0 0 8px;
}

.terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block .terms_box_content_block_decimal_list .terms_box_content_block_decimal_item:last-child {
  margin: 0 0 0;
}

.terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block .terms_box_content_block_disc_list {
  list-style: disc;
  padding: 0 0 0 20px;
}

.terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block .terms_box_content_block_disc_list .terms_box_content_block_disc_item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 2;
  margin: 0 0 8px;
}

.terms_box .terms_box_content .terms_box_content_block_wrap .terms_box_content_block .terms_box_content_block_disc_list .terms_box_content_block_disc_item:last-child {
  margin: 0 0 0;
}

/*=================

      friend.scss

=======================*/
.common_friend_inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.friend_footer_wrap {
  width: 100%;
  background-color: #525252;
}

.friend_footer_wrap .common_friend_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 28px;
}

.friend_footer_wrap .common_friend_inner .friend_footer_copy_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  color: #FFF;
  line-height: 1.3;
}

.friend_login {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff6969), color-stop(54.19%, #fa9d73), to(#ff6980));
  background: linear-gradient(180deg, #ff6969 0%, #fa9d73 54.19%, #ff6980 100%);
  min-height: calc(100vh - 28px);
  padding: 24px 0 56px;
}

.friend_login.bg_heart {
  background: url(../images/friend/bg_heart.svg), -webkit-gradient(linear, left top, left bottom, from(#ff6969c9), color-stop(54.19%, #fa9d73bf), to(#ff6980b5));
  background: url(../images/friend/bg_heart.svg), linear-gradient(180deg, #ff6969c9 0%, #fa9d73bf 54.19%, #ff6980b5 100%);
  background-repeat: repeat-y;
  background-size: 100% auto;
}

.friend_login_box {
  border-radius: 20px;
  background-color: #FFF;
  padding: 32px 24px 40px;
}

.friend_login_box .friend_login_box_logo {
  display: block;
  width: 200px;
  margin: 0 auto 24px;
}

.friend_login_box .friend_login_box_title_ja {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 8px;
}

.friend_login_box .friend_login_box_title_ja.t_small {
  font-size: 20px;
}

.friend_login_box .friend_login_box_title_ja span {
  color: #F66A6B;
  font-size: 24px;
}

.friend_login_box .friend_login_box_title_en {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #F66A6B;
  line-height: 1.5;
  margin: 0 0 24px;
}

.friend_login_box .friend_login_box_match_prof {
  margin: 0 0 24px;
}

.friend_login_box .friend_login_box_match_prof .friend_login_box_match_prof_img {
  width: 80px;
  margin: 0 auto 16px;
  aspect-ratio: 1 / 1.3;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #F66A6B;
}

.friend_login_box .friend_login_box_match_prof .friend_login_box_match_prof_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

.friend_login_box .friend_login_box_match_prof .friend_login_box_match_prof_name {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

.friend_login_box .friend_login_box_match_prof .friend_login_box_match_prof_name span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
}

.friend_login_box .friend_login_box_deadline_box {
  padding: 16px 8px;
  border-radius: 10px;
  border: 1px solid #F66A6B;
  background-color: #FEF4F4;
  margin: 0 0 24px;
}

.friend_login_box .friend_login_box_deadline_box .friend_login_box_deadline_note {
  margin: 0 0 0;
}

.friend_login_box .friend_login_box_deadline {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #EB4242;
  line-height: 1.5;
  margin: 0 0 8px;
}

.friend_login_box .friend_login_box_deadline img {
  width: 20px;
  margin: 0 4px 0 0;
  vertical-align: middle;
}

.friend_login_box .friend_login_box_deadline_note {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  line-height: 1.5;
  margin: 0 0 24px;
}

.friend_login_box .friend_login_box_deadline_note span {
  font-size: 11px;
}

.friend_login_box .friend_login_box_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 2;
  margin: 0 0 20px;
}

.friend_login_box .friend_login_box_text span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.friend_login_box .friend_login_box_point_wrap {
  margin: 0 0 16px;
}

.friend_login_box .friend_login_box_point_wrap .friend_login_box_point_wrap_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #F66A6B;
  line-height: 1.5;
  margin: 0 0 12px;
}

.friend_login_box .friend_login_box_point_wrap .friend_login_box_point_list .friend_login_box_point_item {
  padding: 0 0 0 14px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 2;
  margin: 0 0 12px;
}

.friend_login_box .friend_login_box_point_wrap .friend_login_box_point_list .friend_login_box_point_item span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
}

.friend_login_box .friend_login_box_point_wrap .friend_login_box_point_list .friend_login_box_point_item:last-child {
  margin: 0 0 0;
}

.friend_login_box .friend_login_box_point_wrap .friend_login_box_point_list .friend_login_box_point_item::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #F66A6B;
  border-radius: 50%;
}

.friend_login_box_notice_wrap {
  background-color: #FEF2EB;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(247, 142, 83, 0.4);
}

.friend_login_box_notice_wrap .friend_login_box_notice_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 8px;
}

.friend_login_box_notice_wrap .friend_login_box_notice_title img {
  display: block;
  width: 20px;
  margin: 0 8px 0 0;
}

.friend_login_box_notice_wrap .friend_login_box_notice_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #262626;
  line-height: 1.5;
}

.friend_login_box_notice_icon_wrap {
  background-color: #FEF2EB;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(247, 142, 83, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.friend_login_box_notice_icon_wrap.mt_32 {
  margin: 32px 0 0;
}

.friend_login_box_notice_icon_wrap .friend_login_box_notice_icon {
  width: 20px;
  margin: 0 8px 0 0;
}

.friend_login_box_notice_icon_wrap .friend_login_box_notice_icon img {
  width: 100%;
}

.friend_login_box_notice_icon_wrap .friend_login_box_notice_icon_text {
  width: calc(100% - 28px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #262626;
  line-height: 1.5;
}

.friend_btn_wrap {
  margin: 32px auto 0;
}

.friend_line_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  width: 100%;
  min-width: 280px;
  height: 64px;
  background-color: #06C755;
  border-radius: 50px;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 960px) {
  .friend_line_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

@media only screen and (max-width: 640px) {
  .friend_line_btn {
    height: 56px;
  }
}

.friend_line_btn .friend_line_btn_icon {
  width: 28px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.friend_line_btn .friend_line_btn_icon img {
  display: block;
  width: 100%;
}

.friend_line_btn .friend_line_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
}

.friend_line_btn .friend_line_btn_arrow {
  width: 6px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.friend_line_btn .friend_line_btn_arrow img {
  display: block;
  width: 100%;
}

.friend_line_btn_note {
  margin: 12px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  line-height: 1.5;
}

.friend_line_btn_note a {
  color: #727272;
  text-decoration: underline;
}

.friend_header {
  padding: 10px 0;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.friend_header .friend_header_logo {
  display: block;
  width: 104px;
}

.friend_header .friend_header_logo img {
  display: block;
  width: 100%;
}

.friend_page {
  position: relative;
  padding: 24px 0 56px;
  background-color: #FFF;
}

.friend_page_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: -webkit-gradient(linear, left top, right top, from(#ff6969), color-stop(54.19%, #fa9d73), to(#ff6980));
  background: linear-gradient(90deg, #ff6969 0%, #fa9d73 54.19%, #ff6980 100%);
  opacity: 0.6;
}

.friend_line_alert {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #F1A7A7;
  background-color: #FEF4F4;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 16px;
}

.friend_line_alert .friend_line_alert_detail {
  width: calc(100% - 88px);
}

.friend_line_alert .friend_line_alert_detail .friend_line_alert_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 8px;
}

.friend_line_alert .friend_line_alert_detail .friend_line_alert_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #262626;
  line-height: 1.5;
}

.friend_line_alert .friend_line_alert_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 40px;
  border-radius: 40px;
  background-color: #06C755;
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 0 8px;
}

.friend_page_title_box {
  padding: 16px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 0 0 16px;
}

.friend_page_title_box .friend_page_title_box_icon {
  width: 40px;
  margin: 0 auto 8px;
}

.friend_page_title_box .friend_page_title_box_icon img {
  width: 100%;
}

.friend_page_title_box .friend_page_title_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 12px;
}

.friend_page_title_box .friend_page_title_box_title.center {
  text-align: center;
}

.friend_page_title_box .friend_page_title_box_title_menu {
  margin: 0 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.friend_page_title_box .friend_page_title_box_title_menu .friend_page_title_box_menu_btn {
  display: block;
  width: 26px;
  margin: 0 0 0 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.friend_page_title_box .friend_page_title_box_title_menu .friend_page_title_box_menu_btn img {
  width: 100%;
}

.friend_page_title_box .friend_page_title_box_title_menu .friend_page_title_box_title {
  margin: 0 0 0;
}

.friend_page_title_box .friend_page_title_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 1.7;
}

.friend_page_title_box .friend_page_title_box_text a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

.friend_page_title_box .friend_page_point_list {
  margin: 16px 0 0;
}

.friend_page_title_box .friend_page_point_list .friend_page_point_item {
  padding: 0 0 0 14px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 2;
  margin: 0 0 12px;
}

.friend_page_title_box .friend_page_point_list .friend_page_point_item span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
}

.friend_page_title_box .friend_page_point_list .friend_page_point_item:last-child {
  margin: 0 0 0;
}

.friend_page_title_box .friend_page_point_list .friend_page_point_item::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #F66A6B;
  border-radius: 50%;
}

.friend_page_title_box .friend_page_point_list .friend_page_point_item a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

.friend_prof_main_img {
  margin: 0 0 8px;
}

.friend_prof_main_img .friend_prof_main_img_list {
  width: 220px;
  margin: 0 auto;
}

.friend_prof_main_img .friend_prof_main_img_list .friend_prof_main_img_item {
  display: none;
  width: 100%;
  aspect-ratio: 1 / 1.3;
  border-radius: 8px;
  overflow: hidden;
}

.friend_prof_main_img .friend_prof_main_img_list .friend_prof_main_img_item.active {
  display: block;
}

.friend_prof_main_img .friend_prof_main_img_list .friend_prof_main_img_item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.friend_prof_img_menu {
  margin: 0 0 24px;
}

.friend_prof_img_menu .friend_prof_img_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.friend_prof_img_menu .friend_prof_img_menu_list .friend_prof_img_menu_item {
  width: calc((100% - 32px) / 5);
  cursor: pointer;
  aspect-ratio: 1 / 1.3;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.16);
}

.friend_prof_img_menu .friend_prof_img_menu_list .friend_prof_img_menu_item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.friend_prof_img_menu .friend_prof_img_menu_list .friend_prof_img_menu_item.active {
  border: 2px solid #F66A6B;
}

.friend_prof_detail_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 8px;
}

.friend_prof_detail_name span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
}

.friend_prof_detail_tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.friend_prof_detail_tag_list .friend_prof_detail_tag_item {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #E3E3E3;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  line-height: 1.5;
}

.friend_prof_detail_tag_list .friend_prof_detail_tag_item::before {
  content: "#";
  color: #F66A6B;
}

.friend_prof_detail_basic_info_box {
  margin: 48px 0 56px;
  border-radius: 30px;
  border: 1px solid #F66A6B;
  padding: 40px 16px 24px;
  background-color: #FFF;
  position: relative;
}

.friend_prof_detail_basic_info_box .friend_prof_detail_basic_info_box_title_wrap {
  position: absolute;
  top: -20px;
  left: 16px;
}

.friend_prof_detail_basic_info_box .friend_prof_detail_basic_info_box_title_wrap .friend_prof_detail_basic_info_box_title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid #F66A6B;
  background-color: #FFF;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #F66A6B;
  line-height: 1.5;
}

.friend_prof_detail_basic_info_box .friend_prof_detail_basic_info_box_title_wrap .friend_prof_detail_basic_info_box_title:after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 38px;
  width: 11px;
  height: 12px;
  background-image: url(../images/mypage/img_fukidashi.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.friend_prof_detail_basic_info_box .friend_prof_detail_basic_info_box_title_wrap .friend_prof_detail_basic_info_box_title img {
  display: block;
  width: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.friend_prof_detail_basic_info_list .friend_prof_detail_basic_info_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #E3E3E3;
  position: relative;
  padding: 0 0 16px;
  margin: 0 0 16px;
}

.friend_prof_detail_basic_info_list .friend_prof_detail_basic_info_item:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 96px;
  height: 1px;
  background-color: #F66A6B;
}

.friend_prof_detail_basic_info_list .friend_prof_detail_basic_info_item .friend_prof_detail_basic_info_item_title {
  width: 96px;
  margin: 0 12px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
}

.friend_prof_detail_basic_info_list .friend_prof_detail_basic_info_item .friend_prof_detail_basic_info_item_detail {
  width: calc(100% - 108px);
}

.friend_prof_detail_basic_info_list .friend_prof_detail_basic_info_item .friend_prof_detail_basic_info_item_detail .friend_prof_detail_basic_info_item_area {
  display: inline-block;
  padding: 4px 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #F66A6B;
  line-height: 1.5;
  background-color: #E2E2E2;
}

.friend_prof_detail_basic_info_list .friend_prof_detail_basic_info_item .friend_prof_detail_basic_info_item_detail .friend_prof_detail_basic_info_item_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
}

.friend_prof_detail_comment_box {
  margin: 0 0 40px;
  border-radius: 30px;
  border: 1px solid #F66A6B;
  padding: 40px 16px 24px;
  background-color: #FEF4F4;
  position: relative;
}

.friend_prof_detail_comment_box .friend_prof_detail_comment_box_title_wrap {
  position: absolute;
  top: -20px;
  left: 16px;
}

.friend_prof_detail_comment_box .friend_prof_detail_comment_box_title_wrap .friend_prof_detail_comment_box_title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid #F66A6B;
  background-color: #FFF;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #F66A6B;
  line-height: 1.5;
}

.friend_prof_detail_comment_box .friend_prof_detail_comment_box_title_wrap .friend_prof_detail_comment_box_title:after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 38px;
  width: 11px;
  height: 12px;
  background-image: url(../images/mypage/img_fukidashi.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.friend_prof_detail_comment_box .friend_prof_detail_comment_box_title_wrap .friend_prof_detail_comment_box_title img {
  display: block;
  width: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.friend_prof_detail_comment_box .friend_prof_detail_comment_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 2;
}

.friend_page_btn_sticky {
  position: -webkit-sticky;
  position: sticky;
  bottom: 72px;
  left: 0;
  z-index: 90;
}

@media only screen and (max-width: 640px) {
  .friend_page_btn_sticky {
    bottom: 64px;
  }
}

.friend_fix_menu_block {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.friend_fix_menu_block .friend_fix_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.friend_fix_menu_block .friend_fix_menu_list .friend_fix_menu_item {
  width: 50%;
  height: 56px;
  position: relative;
}

.friend_fix_menu_block .friend_fix_menu_list .friend_fix_menu_item:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 40px;
  background-color: #FFF;
}

.friend_fix_menu_block .friend_fix_menu_list .friend_fix_menu_item:last-child:after {
  content: none;
}

.friend_fix_menu_block .friend_fix_menu_list .friend_fix_menu_item .friend_fix_menu_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 56px;
  width: 100%;
  background-color: #F66A6B;
}

.friend_fix_menu_block .friend_fix_menu_list .friend_fix_menu_item .friend_fix_menu_link .friend_fix_menu_link_content .friend_fix_menu_item_icon {
  width: 20px;
  margin: 0 auto 4px;
}

.friend_fix_menu_block .friend_fix_menu_list .friend_fix_menu_item .friend_fix_menu_link .friend_fix_menu_link_content .friend_fix_menu_item_icon img {
  width: 100%;
}

.friend_fix_menu_block .friend_fix_menu_list .friend_fix_menu_item .friend_fix_menu_link .friend_fix_menu_link_content .friend_fix_menu_item_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #FFF;
  line-height: 1.2;
}

.friend_page_note_box {
  margin: 32px 0 0;
  background-color: #FEF4F4;
  border-radius: 8px;
  border: 1px solid #F1A7A7;
  padding: 12px;
}

.friend_page_note_box .friend_page_note_list .friend_page_note_item {
  padding: 0 0 0 14px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #262626;
  line-height: 2;
  margin: 0 0 8px;
}

.friend_page_note_box .friend_page_note_list .friend_page_note_item span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
}

.friend_page_note_box .friend_page_note_list .friend_page_note_item:last-child {
  margin: 0 0 0;
}

.friend_page_note_box .friend_page_note_list .friend_page_note_item::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #F66A6B;
  border-radius: 50%;
}

.friend_request_block_wrap .friend_request_block {
  margin: 0 0 16px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 16px;
  background-color: #FFF;
  border-radius: 20px;
}

.friend_request_block_wrap .friend_request_block.mb_0 {
  margin: 0 0 0;
}

.friend_request_block_wrap .friend_request_block .friend_request_prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.friend_request_block_wrap .friend_request_block .friend_request_prof .friend_request_prof_img {
  width: 48px;
  margin: 0 16px 0 0;
  aspect-ratio: 1 / 1.3;
  border-radius: 8px;
  overflow: hidden;
}

.friend_request_block_wrap .friend_request_block .friend_request_prof .friend_request_prof_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.friend_request_block_wrap .friend_request_block .friend_request_prof .friend_request_prof_detail {
  width: calc(100% - 64px);
}

.friend_request_block_wrap .friend_request_block .friend_request_prof .friend_request_prof_detail .friend_request_prof_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 12px;
}

.friend_request_block_wrap .friend_request_block .friend_request_prof .friend_request_prof_detail .friend_request_prof_name span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
}

.friend_request_block_wrap .friend_request_block .friend_request_prof .friend_request_prof_detail .friend_request_prof_area_age {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.friend_request_block_wrap .friend_request_block .friend_request_prof .friend_request_prof_detail .friend_request_prof_area_age .friend_request_prof_area {
  display: inline-block;
  padding: 4px 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #F66A6B;
  line-height: 1.5;
  background-color: #E2E2E2;
  margin: 0 12px 0 0;
}

.friend_request_block_wrap .friend_request_block .friend_request_prof .friend_request_prof_detail .friend_request_prof_area_age .friend_request_prof_age {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
}

.friend_request_block_wrap .friend_request_block .friend_request_prof_btn {
  display: block;
  width: 100%;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid #F66A6B;
  background-color: #FFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #F66A6B;
  line-height: 1.5;
  margin: 20px 0 0;
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
}

.friend_request_block_wrap .friend_request_block .friend_request_deadline_box {
  margin: 24px 0 0;
  padding: 12px;
  border: 1px solid #F66A6B;
  background-color: #FEF4F4;
  border-radius: 8px;
}

.friend_request_block_wrap .friend_request_block .friend_request_deadline_box .friend_request_deadline_box_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #EB4242;
  line-height: 1.5;
  margin: 0 0 12px;
}

.friend_request_block_wrap .friend_request_block .friend_request_deadline_box .friend_request_deadline_box_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #727272;
  line-height: 1.5;
}

.friend_request_sub_block_wrap .friend_request_sub_block {
  margin: 0 0 24px;
}

.friend_request_sub_block_wrap .friend_request_sub_block:last-child {
  margin: 0 0 0;
}

.friend_request_sub_block_wrap .friend_request_sub_block .friend_request_sub_block_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 12px;
}

.friend_request_sub_block_wrap .friend_request_sub_block .friend_request_block_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 16px;
}

.friend_request_sub_block_wrap .friend_request_sub_block .friend_request_block_title .required {
  display: inline-block;
  padding: 4px 12px;
  background-color: #EB4242;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  margin: 0 12px 0 0;
  white-space: nowrap;
}

.friend_request_sub_block_wrap .friend_request_sub_block .friend_request_block_title .optional {
  display: inline-block;
  padding: 4px 12px;
  background-color: #A0A0A0;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  margin: 0 12px 0 0;
  white-space: nowrap;
}

.friend_request_sub_block_wrap .friend_request_sub_block .friend_request_block_title.t_b {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 12px;
}

.friend_request_block_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 12px;
}

.friend_request_block_title.c_main {
  color: #F66A6B;
}

.friend_request_block_title .required {
  display: inline-block;
  padding: 4px 12px;
  background-color: #EB4242;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  margin: 0 12px 0 0;
  white-space: nowrap;
}

.friend_request_block_title .optional {
  display: inline-block;
  padding: 4px 12px;
  background-color: #A0A0A0;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  margin: 0 12px 0 0;
  white-space: nowrap;
}

.friend_request_block_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #727272;
  line-height: 1.5;
  margin: 0 0 12px;
}

.friend_request_block_text.c_font {
  color: #262626;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item {
  background-color: #FFF;
  border: 1px solid #E3E3E3;
  padding: 12px;
  border-radius: 10px;
  margin: 0 0 16px;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item:last-child {
  margin: 0 0 0;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_item_title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 12px;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_item_title_wrap .friend_request_block_schedule_item_required {
  display: inline-block;
  padding: 6px 12px;
  background-color: #EB4242;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  margin: 0 12px 0 0;
  white-space: nowrap;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_item_title_wrap .friend_request_block_schedule_item_optional {
  display: inline-block;
  padding: 6px 12px;
  background-color: #A0A0A0;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  margin: 0 12px 0 0;
  white-space: nowrap;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_item_title_wrap .friend_request_block_schedule_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1,5;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_input_date {
  display: block;
  width: 100%;
  padding: 12px 8px;
  background-color: #F4F4F4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  border: none;
  margin: 0 0 8px;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_input_date::-webkit-input-placeholder {
  color: #727272;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_input_date::-ms-input-placeholder {
  color: #727272;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_input_date::placeholder {
  color: #727272;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_input_date:focus {
  outline: 2px solid #F66A6B;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_input_time {
  display: block;
  width: 100%;
  width: 100%;
  padding: 12px 8px;
  background-color: #F4F4F4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  border: none;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_input_time::-webkit-input-placeholder {
  color: #727272;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_input_time::-ms-input-placeholder {
  color: #727272;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_input_time::placeholder {
  color: #727272;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_input_time:focus {
  outline: 2px solid #F66A6B;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_item_hope_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 12px;
}

.friend_request_block_schedule_list .friend_request_block_schedule_item .friend_request_block_schedule_item_hope_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

.friend_request_block_schedule_textarea {
  width: 100%;
  height: 200px;
  padding: 12px 8px;
  background-color: #F4F4F4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  border: none;
  resize: none;
}

.friend_request_block_schedule_textarea::-webkit-input-placeholder {
  color: #727272;
}

.friend_request_block_schedule_textarea::-ms-input-placeholder {
  color: #727272;
}

.friend_request_block_schedule_textarea::placeholder {
  color: #727272;
}

.friend_request_block_schedule_textarea:focus {
  outline: 2px solid #F66A6B;
}

.friend_request_block_price_box {
  background-color: #FEF4F4;
  border: 1px solid #F66A6B;
  border-radius: 8px;
  padding: 12px;
  margin: 0 0 8px;
}

.friend_request_block_price_box .friend_request_block_price_box_title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 12px;
}

.friend_request_block_price_box .friend_request_block_price_box_title_wrap .friend_request_block_price_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
}

.friend_request_block_price_box .friend_request_block_price_box_title_wrap .friend_request_block_box_price {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #F66A6B;
  line-height: 1.5;
  margin: 0 0 0 8px;
}

.friend_request_block_price_box .friend_request_block_price_box_title_wrap .friend_request_block_box_price span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  color: #727272;
}

.friend_request_block_price_box .friend_request_block_price_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #262626;
  line-height: 1.5;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box {
  padding: 16px 12px;
  border-radius: 10px;
  border: 1px solid #E3E3E3;
  background-color: #FFF;
  margin: 0 0 8px;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box:last-child {
  margin: 0 0 0;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_block_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 8px;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item {
  margin: 0 0 16px;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item:last-child {
  margin: 0 0 0;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap {
  border: 1px solid #E3E3E3;
  border-radius: 4px;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input {
  display: block;
  width: 100%;
  padding: 8px 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  border: none;
  border-bottom: 1px solid #E3E3E3;
  border-radius: 4px 4px 0 0;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input::-webkit-input-placeholder {
  color: #727272;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input::-ms-input-placeholder {
  color: #727272;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input::placeholder {
  color: #727272;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input:focus {
  outline: 2px solid #F66A6B;
  border-color: transparent;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input_deadline_cvc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input_deadline_cvc .friend_request_block_card_box_card_input_deadline {
  display: block;
  width: calc((100% - 2px) / 2);
  padding: 8px 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  border: none;
  border-right: 1px solid #E3E3E3;
  border-radius: 0 0 0 4px;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input_deadline_cvc .friend_request_block_card_box_card_input_deadline::-webkit-input-placeholder {
  color: #727272;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input_deadline_cvc .friend_request_block_card_box_card_input_deadline::-ms-input-placeholder {
  color: #727272;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input_deadline_cvc .friend_request_block_card_box_card_input_deadline::placeholder {
  color: #727272;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input_deadline_cvc .friend_request_block_card_box_card_input_deadline:focus {
  outline: 2px solid #F66A6B;
  border-color: transparent;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input_deadline_cvc .friend_request_block_card_box_card_input_cvc {
  display: block;
  width: calc((100% - 2px) / 2);
  padding: 8px 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  border: none;
  border-radius: 0 0 4px 0;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input_deadline_cvc .friend_request_block_card_box_card_input_cvc::-webkit-input-placeholder {
  color: #727272;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input_deadline_cvc .friend_request_block_card_box_card_input_cvc::-ms-input-placeholder {
  color: #727272;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input_deadline_cvc .friend_request_block_card_box_card_input_cvc::placeholder {
  color: #727272;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_wrap .friend_request_block_card_box_card_input_deadline_cvc .friend_request_block_card_box_card_input_cvc:focus {
  outline: 2px solid #F66A6B;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_name {
  display: block;
  width: 100%;
  padding: 8px 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_name::-webkit-input-placeholder {
  color: #727272;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_name::-ms-input-placeholder {
  color: #727272;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_name::placeholder {
  color: #727272;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_box_list .friend_request_block_card_box_item .friend_request_block_card_box_card_input_name:focus {
  outline: 2px solid #F66A6B;
  border-color: transparent;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_confirm_list .friend_request_block_card_confirm_item {
  padding: 0 0 0 14px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 8px;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_confirm_list .friend_request_block_card_confirm_item span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_confirm_list .friend_request_block_card_confirm_item:last-child {
  margin: 0 0 0;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_confirm_list .friend_request_block_card_confirm_item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #F66A6B;
  border-radius: 50%;
}

.friend_request_block_card_box_wrap .friend_request_block_card_box .friend_request_block_card_confirm_list .friend_request_block_card_confirm_item a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F66A6B;
  text-decoration: underline;
}

.friend_back_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  width: 100%;
  height: 64px;
  background-color: #FFF;
  border-radius: 50px;
  border: 2px solid #E3E3E3;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .friend_back_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

@media only screen and (max-width: 640px) {
  .friend_back_btn {
    height: 56px;
  }
}

.friend_back_btn .friend_back_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #727272;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.friend_back_btn .friend_back_btn_arrow {
  width: 6px;
}

.friend_back_btn .friend_back_btn_arrow img {
  width: 100%;
}

.friend_back_btn.mt_16 {
  margin: 16px 0 0;
}

.friend_decline_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  width: 100%;
  height: 64px;
  background-color: #727272;
  border-radius: 50px;
  border: 2px solid #E3E3E3;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .friend_decline_btn {
    height: 56px;
  }
}

@media only screen and (min-width: 960px) {
  .friend_decline_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

.friend_decline_btn .friend_decline_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.friend_decline_btn .friend_decline_btn_arrow {
  width: 6px;
}

.friend_decline_btn .friend_decline_btn_arrow img {
  width: 100%;
}

.friend_decline_btn.mt_16 {
  margin: 16px 0 0;
}

.friend_popup_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 16px;
}

.friend_popup_title span {
  color: #F66A6B;
}

.friend_popup_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 2;
  margin: 0 0 24px;
}

.friend_popup_text span {
  font-size: 12px;
}

.friend_block_menu_list .friend_block_menu_item {
  margin: 0 0 16px;
}

.friend_block_menu_list .friend_block_menu_item:last-child {
  margin: 0 0 0;
}

.friend_block_menu_list .friend_block_menu_item .friend_block_menu_item_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 16px 12px;
  border-radius: 10px;
  border: 1px solid #E3E3E3;
  background-color: #FFF;
}

.friend_block_menu_list .friend_block_menu_item .friend_block_menu_item_btn .friend_block_menu_item_btn_icon {
  width: 32px;
  margin: 0 16px 0 0;
}

.friend_block_menu_list .friend_block_menu_item .friend_block_menu_item_btn .friend_block_menu_item_btn_icon img {
  width: 100%;
}

.friend_block_menu_list .friend_block_menu_item .friend_block_menu_item_btn .friend_block_menu_item_btn_detail {
  width: calc(100% - 48px);
}

.friend_block_menu_list .friend_block_menu_item .friend_block_menu_item_btn .friend_block_menu_item_btn_detail .friend_block_menu_item_btn_title {
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

.friend_block_menu_list .friend_block_menu_item .friend_block_menu_item_btn .friend_block_menu_item_btn_detail .friend_block_menu_item_btn_text {
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #727272;
  line-height: 1.5;
  margin: 8px 0 0;
}

.friend_page_block_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background-color: rgba(114, 114, 114, 0.86);
  padding: 12px 8px;
}

.friend_page_block_info .friend_page_block_info_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% - 112px);
}

.friend_page_block_info .friend_page_block_info_content .friend_page_block_info_icon {
  width: 20px;
  margin: 0 8px 0 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.friend_page_block_info .friend_page_block_info_content .friend_page_block_info_icon img {
  width: 100%;
}

.friend_page_block_info .friend_page_block_info_content .friend_page_block_info_text {
  width: calc(100% - 28px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
}

.friend_page_block_info .friend_page_block_cancel_btn {
  width: 96px;
  height: 36px;
  margin: 0 0 0 16px;
  background-color: #FFF;
  border-radius: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #727272;
  line-height: 1.5;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.friend_report_radio_list .friend_report_radio_item {
  margin: 0 0 16px;
}

.friend_report_radio_list .friend_report_radio_item:last-child {
  margin: 0 0 0;
}

.friend_report_radio_list .friend_report_radio_item .friend_report_radio_item_label .friend_report_radio {
  display: none;
}

.friend_report_radio_list .friend_report_radio_item .friend_report_radio_item_label .friend_report_radio:checked + .friend_report_radio_text:after {
  opacity: 1;
}

.friend_report_radio_list .friend_report_radio_item .friend_report_radio_item_label .friend_report_radio_text {
  padding: 0 0 0 32px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  cursor: pointer;
}

.friend_report_radio_list .friend_report_radio_item .friend_report_radio_item_label .friend_report_radio_text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #E3E3E3;
}

.friend_report_radio_list .friend_report_radio_item .friend_report_radio_item_label .friend_report_radio_text:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #F66A6B;
  opacity: 0;
}

.friend_report_radio_list .friend_report_radio_item .friend_report_textarea {
  width: 100%;
  height: 160px;
  padding: 12px 8px;
  background-color: #F4F4F4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  border: none;
  resize: none;
}

.friend_report_radio_list .friend_report_radio_item .friend_report_textarea::-webkit-input-placeholder {
  color: #727272;
}

.friend_report_radio_list .friend_report_radio_item .friend_report_textarea::-ms-input-placeholder {
  color: #727272;
}

.friend_report_radio_list .friend_report_radio_item .friend_report_textarea::placeholder {
  color: #727272;
}

.friend_report_radio_list .friend_report_radio_item .friend_report_textarea:focus {
  outline: 2px solid #F66A6B;
}

.friend_request_block_schedule_radio_list .friend_request_block_schedule_radio_item {
  margin: 0 0 16px;
}

.friend_request_block_schedule_radio_list .friend_request_block_schedule_radio_item:last-child {
  margin: 0 0 0;
}

.friend_request_block_schedule_radio_list .friend_request_block_schedule_radio_item .friend_request_block_schedule_radio_label .friend_request_block_schedule_radio {
  display: none;
}

.friend_request_block_schedule_radio_list .friend_request_block_schedule_radio_item .friend_request_block_schedule_radio_label .friend_request_block_schedule_radio:checked + .friend_request_block_schedule_radio_box {
  background-color: #FEF4F4;
  border: 1px solid #F66A6B;
}

.friend_request_block_schedule_radio_list .friend_request_block_schedule_radio_item .friend_request_block_schedule_radio_label .friend_request_block_schedule_radio:checked + .friend_request_block_schedule_radio_box:after {
  opacity: 1;
}

.friend_request_block_schedule_radio_list .friend_request_block_schedule_radio_item .friend_request_block_schedule_radio_label .friend_request_block_schedule_radio_box {
  border: 1px solid #E3E3E3;
  padding: 12px 12px 12px 48px;
  position: relative;
  background-color: #FFF;
  border-radius: 10px;
}

.friend_request_block_schedule_radio_list .friend_request_block_schedule_radio_item .friend_request_block_schedule_radio_label .friend_request_block_schedule_radio_box::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #E3E3E3;
}

.friend_request_block_schedule_radio_list .friend_request_block_schedule_radio_item .friend_request_block_schedule_radio_label .friend_request_block_schedule_radio_box:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #F66A6B;
  opacity: 0;
}

.friend_request_block_schedule_radio_list .friend_request_block_schedule_radio_item .friend_request_block_schedule_radio_label .friend_request_block_schedule_radio_box .friend_request_block_schedule_radio_hope {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 12px;
}

.friend_request_block_schedule_radio_list .friend_request_block_schedule_radio_item .friend_request_block_schedule_radio_label .friend_request_block_schedule_radio_box .friend_request_block_schedule_radio_hope_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

.friend_request_cancel_select {
  width: 100%;
  padding: 8px 28px 8px 12px;
  background-color: #F4F4F4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/common/icon_arrow_select.svg);
  background-repeat: no-repeat;
  background-size: 12px 6px;
  background-position: right 12px center;
  border: none;
}

.friend_request_cancel_select:focus {
  outline: 2px solid #F66A6B;
}

.friend_list_search_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 24px;
}

.friend_list_search_wrap .friend_list_search_input {
  width: calc(100% - 48px);
  background-color: #F8F8F8;
  height: 48px;
  background-color: #F4F4F4;
  padding: 12px 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  border: none;
}

.friend_list_search_wrap .friend_list_search_input::-webkit-input-placeholder {
  color: #727272;
}

.friend_list_search_wrap .friend_list_search_input::-ms-input-placeholder {
  color: #727272;
}

.friend_list_search_wrap .friend_list_search_input::placeholder {
  color: #727272;
}

.friend_list_search_wrap .friend_list_search_input:focus {
  outline: 2px solid #F66A6B;
}

.friend_list_search_wrap .friend_list_search_submit_btn {
  width: 48px;
  height: 48px;
  background-color: #F66A6B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.friend_list_search_wrap .friend_list_search_submit_btn img {
  display: block;
  width: 16px;
}

.friend_match_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 16px;
}

.friend_match_tab .friend_match_tab_btn {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #727272;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 1.5;
  padding: 10px;
}

.friend_match_tab .friend_match_tab_btn.active {
  background-color: #FEF4F4;
  border: 1px solid #F66A6B;
  color: #F66A6B;
}

.friend_tab_panel {
  display: none;
}

.friend_tab_panel.active {
  display: block;
}

.friend_match_filter_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin: 0 0 24px;
}

.friend_match_filter_list .friend_match_filter_item .friend_match_filter_link {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 40px;
  background-color: #F4F4F4;
  border: 1px solid #727272;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  line-height: 1.5;
}

.friend_match_filter_list .friend_match_filter_item .friend_match_filter_link.active {
  background-color: #FEF4F4;
  border: 1px solid #F66A6B;
  color: #F66A6B;
}

.friend_match_list .friend_match_item {
  margin: 0 0 16px;
  padding: 16px;
  border-radius: 20px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #E3E3E3;
  position: relative;
}

.friend_match_list .friend_match_item:last-child {
  margin: 0 0 0;
}

.friend_match_list .friend_match_item .friend_match_item_unread {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 4px;
  background-color: #F52426;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: #FFF;
  line-height: 1.2;
}

.friend_match_list .friend_match_item .friend_match_item_prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 12px;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_img {
  width: 48px;
  margin: 0 16px 0 0;
  border-radius: 8px;
  aspect-ratio: 1 / 1.3;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail {
  width: calc(100% - 64px);
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_name_status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_name_status .friend_match_item_prof_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_name_status .friend_match_item_prof_name span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_name_status .friend_match_item_prof_status {
  display: inline-block;
  padding: 6px 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 1.3;
  border-radius: 4px;
  margin: 0 0 8px;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_name_status .friend_match_item_prof_status.action {
  border: 1px solid #EB4242;
  color: #EB4242;
  background-color: #FFF;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_name_status .friend_match_item_prof_status.still {
  border: 1px solid #F66A6B;
  color: #F66A6B;
  background-color: #FEF4F4;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_name_status .friend_match_item_prof_status.decision {
  color: #FFF;
  background-color: #F78E53;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_name_status .friend_match_item_prof_status.decline {
  background-color: #727272;
  color: #FFF;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_name_status .friend_match_item_prof_status.expired {
  background-color: #B1B1B1;
  color: #FFF;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_name_status .friend_match_item_prof_status.not_applied {
  border: 1px solid #262626;
  background-color: #FFF;
  color: #262626;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_name_status .friend_match_item_prof_status.block {
  background-color: #EB4242;
  color: #FFF;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_name_status .friend_match_item_prof_status.pending {
  border: 1px solid #F78E53;
  color: #F78E53;
  background-color: #FEF2EB;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_area_age {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_area_age .friend_match_item_prof_area {
  display: inline-block;
  padding: 4px 10px;
  background-color: #E2E2E2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #F66A6B;
}

.friend_match_list .friend_match_item .friend_match_item_prof .friend_match_item_prof_detail .friend_match_item_prof_area_age .friend_match_item_prof_age {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #727272;
  line-height: 1.5;
}

.friend_match_list .friend_match_item .friend_match_item_date_recommender {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.friend_match_list .friend_match_item .friend_match_item_date_recommender .friend_match_item_date {
  width: 50%;
  padding: 0 24px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  line-height: 1.5;
}

.friend_match_list .friend_match_item .friend_match_item_date_recommender .friend_match_item_date span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.friend_match_list .friend_match_item .friend_match_item_date_recommender .friend_match_item_recommender {
  width: 50%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  line-height: 1.5;
}

.friend_match_list .friend_match_item .friend_match_item_date_recommender .friend_match_item_recommender span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.friend_match_list .friend_match_item .friend_match_item_btn_block {
  margin: 10px 0 0;
  border-top: 1px solid #E3E3E3;
  padding: 16px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 16px;
}

.friend_match_list .friend_match_item .friend_match_item_btn_block .friend_match_item_btn {
  width: calc((100% - 16px) / 2);
  padding: 8px;
  border-radius: 40px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
}

.friend_match_list .friend_match_item .friend_match_item_btn_block .friend_match_item_btn.prof {
  background-color: #FFF;
  border: 1px solid #F66A6B;
  color: #F66A6B;
}

.friend_match_list .friend_match_item .friend_match_item_btn_block .friend_match_item_btn.date {
  background-color: #F66A6B;
  color: #FFF;
}

.friend_match_list .friend_match_item .friend_match_item_btn_block .friend_match_item_btn.request {
  background: linear-gradient(90deg, #ff6969 0%, #fa9d73 54.19%, #ff6980 100%);
  color: #FFF;
}

.friend_match_list .friend_match_item .friend_match_item_btn_block .friend_match_item_btn.detail {
  background-color: #FFF;
  border: 1px solid #727272;
  color: #727272;
}

.friend_request_message_wrap {
  margin: 32px 0 0;
}

.friend_request_message_wrap .friend_request_message_wrap_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #262626;
  line-height: 1.5;
  margin: 0 0 16px;
}

.friend_request_message_block_wrap {
  margin: 0 0 20px;
}

.friend_request_message_block_wrap .friend_request_message_block {
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid #E3E3E3;
  background-color: #FFF;
  border-radius: 10px;
}

.friend_request_message_block_wrap .friend_request_message_block:last-child {
  margin: 0 0 0;
}

.friend_request_message_block_wrap .friend_request_message_block.active {
  background-color: #F8F8F8;
}

.friend_request_message_block_wrap .friend_request_message_block.active .friend_request_message_block_name_date .friend_request_message_block_name::before {
  background-color: #F66A6B;
}

.friend_request_message_block_wrap .friend_request_message_block .friend_request_message_block_name_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 12px;
}

.friend_request_message_block_wrap .friend_request_message_block .friend_request_message_block_name_date .friend_request_message_block_name {
  padding: 0 0 0 12px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
}

.friend_request_message_block_wrap .friend_request_message_block .friend_request_message_block_name_date .friend_request_message_block_name::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #727272;
}

.friend_request_message_block_wrap .friend_request_message_block .friend_request_message_block_name_date .friend_request_message_block_date {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  line-height: 1.5;
}

.friend_request_message_block_wrap .friend_request_message_block .friend_request_message_block_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #F66A6B;
  line-height: 1.5;
  margin: 0 0 16px;
}

.friend_request_message_block_wrap .friend_request_message_block .friend_request_message_block_message {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 2;
  margin: 0 0 16px;
}

.friend_request_message_block_wrap .friend_request_message_block .friend_request_message_block_request_list {
  margin: 16px 0 0;
}

.friend_request_message_block_wrap .friend_request_message_block .friend_request_message_block_request_list .friend_request_message_block_request_item {
  margin: 0 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
}

.friend_request_message_block_wrap .friend_request_message_block .friend_request_message_block_request_list .friend_request_message_block_request_item:last-child {
  margin: 0 0 0;
}

.friend_request_message_block_wrap .friend_request_message_block .friend_request_message_block_request_list .friend_request_message_block_request_item span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 12px 0 0;
}

.friend_request_message_input_btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #F66A6B;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  border-radius: 40px;
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
}

.friend_request_sent_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.friend_request_sent_btn_wrap .friend_request_sent_btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #F66A6B;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  border-radius: 40px;
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
}

.friend_request_sent_btn_wrap .friend_request_sent_btn.friend_request_accompany {
  background-color: #F78E53;
}

.friend_request_btn_link_fixed {
  position: fixed;
  bottom: 72px;
  right: 16px;
}

.friend_request_btn_link_fixed .friend_request_btn_link {
  width: 48px;
  height: 48px;
  background-color: #FFF;
  border: 1px solid #F66A6B;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.friend_request_btn_link_fixed .friend_request_btn_link .friend_request_btn_link_content .friend_request_btn_link_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  color: #F66A6B;
  line-height: 1.3;
  margin: 0 0 4px;
}

.friend_request_btn_link_fixed .friend_request_btn_link .friend_request_btn_link_content img {
  display: block;
  width: 16px;
  margin: 0 auto;
}

.friend_request_message_block_decision_box {
  margin: 16px 0 0;
  border: 1px solid #F78E53;
  border-radius: 8px;
  padding: 8px;
  background-color: #FEF2EB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.friend_request_message_block_decision_box .friend_request_message_block_decision_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #F78E53;
  line-height: 1.5;
  width: calc(100% - 80px);
}

.friend_request_message_block_decision_box .friend_request_message_block_decision_box_btn {
  width: 72px;
  height: 32px;
  border-radius: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  line-height: 1.3;
  background-color: #F78E53;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 0 8px;
}

.friend_login_box_point_icon_wrap {
  margin: 32px 0;
}

.friend_login_box_point_icon_wrap .friend_login_box_point_icon_wrap_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #F66A6B;
  line-height: 1.5;
  margin: 0 0 12px;
}

.friend_login_box_point_icon_wrap .friend_login_box_point_icon_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.friend_login_box_point_icon_wrap .friend_login_box_point_icon_list .friend_login_box_point_icon_item {
  width: 96px;
  position: relative;
  padding: 0 8px;
}

.friend_login_box_point_icon_wrap .friend_login_box_point_icon_list .friend_login_box_point_icon_item:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 40px;
  background-color: #F66A6B;
}

.friend_login_box_point_icon_wrap .friend_login_box_point_icon_list .friend_login_box_point_icon_item:last-child:after {
  content: none;
}

.friend_login_box_point_icon_wrap .friend_login_box_point_icon_list .friend_login_box_point_icon_item .friend_login_box_point_icon_item_img {
  width: 30px;
  margin: 0 auto 4px;
}

.friend_login_box_point_icon_wrap .friend_login_box_point_icon_list .friend_login_box_point_icon_item .friend_login_box_point_icon_item_img img {
  width: 100%;
}

.friend_login_box_point_icon_wrap .friend_login_box_point_icon_list .friend_login_box_point_icon_item .friend_login_box_point_icon_item_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #262626;
  line-height: 1.3;
}

.friend_message_prof_sec {
  padding: 24px 0 16px;
  position: relative;
}

.friend_message_sec {
  padding: 16px 0 64px;
  background-color: #FEF4F4;
  position: relative;
}

.friend_message_sec .friend_message_wrap {
  height: calc(100dvh - 220px);
  overflow-y: auto;
  padding: 16px 0 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.friend_message_chat_input_wrap {
  position: fixed;
  z-index: 100;
  left: 0;
  bottom: 0;
  padding: 8px 0;
  width: 100%;
  background-color: #FFF;
}

.friend_message_chat_input_wrap .friend_message_chat_textarea_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.friend_message_chat_input_wrap .friend_message_chat_textarea_btn .friend_message_chat_textarea {
  width: calc(100% - 48px);
  height: 40px;
  border: 1px solid #E3E3E3;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.3;
  resize: none;
}

.friend_message_chat_input_wrap .friend_message_chat_textarea_btn .friend_message_chat_textarea:focus {
  border: none;
  outline: 1px solid #F66A6B;
}

.friend_message_chat_input_wrap .friend_message_chat_textarea_btn .friend_message_chat_btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #F66A6B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 0 8px;
}

.friend_message_chat_input_wrap .friend_message_chat_textarea_btn .friend_message_chat_btn img {
  display: block;
  width: 20px;
}

.friend_message_chat_block_wrap .friend_message_chat_block {
  margin: 0 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.friend_message_chat_block_wrap .friend_message_chat_block .friend_message_chat_block_icon {
  width: 32px;
}

.friend_message_chat_block_wrap .friend_message_chat_block .friend_message_chat_block_icon img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.friend_message_chat_block_wrap .friend_message_chat_block .friend_message_chat_block_detail {
  width: calc(100% - 40px);
}

.friend_message_chat_block_wrap .friend_message_chat_block .friend_message_chat_block_detail .friend_message_chat_block_detail_text {
  padding: 8px;
  border-radius: 0 8px 8px 8px;
  border: 1px solid #E3E3E3;
  background-color: #FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  line-height: 1.5;
}

.friend_message_chat_block_wrap .friend_message_chat_block .friend_message_chat_block_detail .friend_message_chat_block_detail_date {
  margin: 4px 0 0;
  text-align: right;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #727272;
  line-height: 1.5;
}

.friend_message_chat_block_wrap .friend_message_chat_block.active {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.friend_message_chat_block_wrap .friend_message_chat_block.active .friend_message_chat_block_detail_text {
  border: 1px solid #F66A6B;
  border-radius: 8px 0 8px 8px;
}

.friend_message_chat_block_date_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.friend_message_chat_block_date_btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
  margin: 8px 0 0;
  background-color: #F66A6B;
}

.line_friend_popup_filter {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.7);
}

.line_friend_popup_filter,
.line_friend_popup {
  display: none;
}

.line_friend_popup_filter.is-show,
.line_friend_popup.is-show {
  display: block;
}

/* ======================= BASE ====== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

html, body {
  margin: 0;
  height: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

.mb_0 {
  margin-bottom: 0;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_16 {
  margin-bottom: 16px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_24 {
  margin-bottom: 24px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mt_0 {
  margin-top: 0;
}

.mt_10 {
  margin-top: 10px;
}

.mt_16 {
  margin-top: 16px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_24 {
  margin-top: 24px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_80 {
  margin-top: 80px;
}

.mr_5 {
  margin-right: 5px;
}

.mr_20 {
  margin-right: 20px;
}

@media only screen and (max-width: 999px) {
  .sp_mb_10 {
    margin-bottom: 10px;
  }
}

.common_pc {
  display: block;
}

@media only screen and (max-width: 960px) {
  .common_pc {
    display: none;
  }
}

.common_sp {
  display: none;
}

@media only screen and (max-width: 960px) {
  .common_sp {
    display: block;
  }
}

@media only screen and (max-width: 840px) {
  .common_pc840 {
    display: none;
  }
}

.common_sp840 {
  display: none;
}

@media only screen and (max-width: 840px) {
  .common_sp840 {
    display: block;
  }
}

.common_pc640 {
  display: block;
}

.common_pc640.height_100 {
  height: 100%;
}

@media only screen and (max-width: 640px) {
  .common_pc640 {
    display: none !important;
  }
}

.commom_pc1200 {
  display: block;
}

@media only screen and (max-width: 1200px) {
  .commom_pc1200 {
    display: none;
  }
}

.common_sp640 {
  display: none;
}

@media only screen and (max-width: 640px) {
  .common_sp640 {
    display: block !important;
  }
}

.mb_0 {
  margin-bottom: 0;
}

body {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

body ul {
  list-style: none;
}

body a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*
@media only screen and (min-width:960px){
  body a:hover{
    opacity: 0.7;
  }
}
*/
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
