@charset "UTF-8";
html {
  font-size: 1.0666666667vw;
}
@media (min-width: 1300px) and (max-width: 1500px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  html {
    font-size: 1.0666666667vw;
  }
}
@media (min-width: 390px) and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 389.98px) {
  html {
    font-size: 3.5897435897vw;
  }
}

@media (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  color: #303030;
}
@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }
}

:target {
  scroll-margin-top: 5rem;
}
@media (max-width: 768px) {
  :target {
    scroll-margin-top: 4.2857142857rem;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

img {
  display: block;
  width: 100%;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  a.fax[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* common
------------------------------ */
.inner {
  width: 100%;
  max-width: 81.25rem;
  padding: 0 1.5625rem;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .inner {
    max-width: 42.8571428571rem;
    padding: 0 1.1428571429rem;
  }
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  width: 100%;
  max-width: 16.875rem;
  padding: 1.125rem 2.125rem 1.125rem;
  text-align: left;
  color: #fff;
  background-color: #FC8AA3;
  z-index: 1;
  border-radius: 3.125rem;
}
@media (max-width: 768px) {
  .btn {
    max-width: 17.1428571429rem;
    padding: 0.8571428571rem 1.7142857143rem 0.8571428571rem;
  }
}

.btn.btn_green {
  background-color: #5DBAAC;
}

.btn.btn_large {
  max-width: 25rem;
}

@media (min-width: 768px) {
  .btn:hover {
    background-color: #5DBAAC;
  }
}

@media (min-width: 768px) {
  .btn.btn_green:hover {
    background-color: #FC8AA3;
  }
}

.btn span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-right: 2.5rem;
}

.btn span::after {
  position: absolute;
  content: "";
  width: 1.75rem;
  height: 0.375rem;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.section_title {
  position: relative;
  text-align: center;
  padding-bottom: 1.375rem;
}

.section_title::after {
  position: absolute;
  content: "";
  width: 3.75rem;
  height: 0.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background-color: #FC6E7C;
}
@media (max-width: 768px) {
  .section_title::after {
    width: 4.2857142857rem;
    height: 1px;
  }
}

.section_title.section_title_green::after {
  background-color: #5DBAAC;
}

.section_title_en {
  font-size: 1.875rem;
  font-family: "Parisienne", cursive;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #FF7896;
}
@media (max-width: 768px) {
  .section_title_en {
    font-size: 1.5rem;
  }
}

.section_title_en.section_title_en_green {
  color: #5DBAAC;
}

.section_title_ja {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0;
  color: #FC6E7C;
  margin-top: 0.125rem;
}
@media (max-width: 768px) {
  .section_title_ja {
    font-size: 2.1428571429rem;
    margin-top: 0.4285714286rem;
  }
}

.section_title_ja.section_title_ja_green {
  color: #5DBAAC;
}

.section_title_ja span {
  display: block;
  font-size: 1.625rem;
  color: #303030;
  margin-top: 0.9375rem;
}
@media (max-width: 768px) {
  .section_title_ja span {
    font-size: 1.4285714286rem;
  }
}

.faq_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.4375rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 768px) {
  .faq_items {
    grid-template-columns: 1fr;
    gap: 0.5714285714rem;
  }
}

.faq_item {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  row-gap: 0;
}

.faq_item_question {
  position: relative;
  font-size: 1.125rem;
  line-height: 139%;
  background-color: #fff;
  border-radius: 0.625rem;
}
@media (max-width: 768px) {
  .faq_item_question {
    font-size: 1.1428571429rem;
  }
}

.faq_item_question::before {
  position: absolute;
  content: "Q.";
  font-size: 2.5rem;
  font-family: "Parisienne", cursive;
  color: #FF7896;
  left: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .faq_item_question::before {
    font-size: 1.7142857143rem;
    left: 0.8571428571rem;
  }
}

.faq_item_question button {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  width: 100%;
  height: 100%;
  min-height: 6.25rem;
  padding: 1.5625rem 2.5625rem 1.5625rem 5.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq_item_question button {
    padding: 1.1428571429rem 1.1428571429rem 1.1428571429rem 3.4285714286rem;
    min-height: auto;
  }
}

.faq_item_question span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-right: 3.875rem;
}

.faq_item_question span::after {
  position: absolute;
  content: "";
  width: 1.0625rem;
  height: 2rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../images/common/icon_triangle_arrow_right_pink_dark.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .faq_item_question span::after {
    width: 0.8571428571rem;
    height: 1.7142857143rem;
  }
}

.faq_item.is_open .faq_item_question span::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.faq_item_answer {
  display: none;
  position: relative;
  line-height: 180%;
  letter-spacing: 0.02em;
  padding: 1rem 3.125rem 1rem 5.5rem;
}
@media (max-width: 768px) {
  .faq_item_answer {
    padding: 0.5714285714rem 1.1428571429rem 0.5714285714rem 3.4285714286rem;
  }
}

.faq_item_answer::before {
  position: absolute;
  content: "A.";
  font-size: 2.5rem;
  font-family: "Parisienne", cursive;
  color: #FF7896;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .faq_item_answer::before {
    font-size: 1.7142857143rem;
    left: 0.2857142857rem;
  }
}

/* scroll_area
------------------------------ */
@media (max-width: 768px) {
  .scroll_area {
    position: relative;
  }
}

.scroll_area_hint {
  display: none;
}
@media (max-width: 768px) {
  .scroll_area_hint {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.1428571429rem;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-animation: scrollHintBlink 1.2s ease-in-out infinite;
            animation: scrollHintBlink 1.2s ease-in-out infinite;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    color: #fff;
    background-color: rgba(255, 120, 150, 0.8);
    padding: 1.4285714286rem 1.4285714286rem;
    z-index: 1;
    border-radius: 1.7142857143rem;
  }
}

.scroll_area_hint::before {
  display: block;
  content: "";
  width: 2.1428571429rem;
  height: 2.1428571429rem;
  background: url(../images/common/icon_hand_white.png) no-repeat center center/contain;
}

.scroll_area_hint.is_hidden {
  opacity: 0;
  pointer-events: none;
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes scrollHintBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes scrollHintBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@media (max-width: 768px) {
  .scroll_area_inner {
    overflow-x: auto;
  }
}

.scroll_area_inner table {
  min-width: 43.75rem;
}

/* body
------------------------------ */
.body.is_open {
  overflow: hidden;
}

/* header
------------------------------ */
.header {
  position: fixed;
  width: 100%;
  min-height: 9.375rem;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .header {
    min-height: 4.2857142857rem;
  }
}

.header.header_fixed {
  min-height: 5rem;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .header.header_fixed {
    min-height: 4.2857142857rem;
  }
}

.header_fixed {
  -webkit-box-shadow: 0px 0.0625rem 0.1875rem rgba(48, 48, 48, 0.5);
          box-shadow: 0px 0.0625rem 0.1875rem rgba(48, 48, 48, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.customize-support .header {
  top: 32px;
}

.header_inner {
  min-height: inherit;
}

.header_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_wrapper {
    min-height: inherit;
  }
}

.header_fixed .header_wrapper {
  min-height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_left {
  width: 100%;
  max-width: 27.5rem;
  margin-top: 0.875rem;
}
@media (max-width: 768px) {
  .header_left {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 11.4285714286rem;
    margin-top: 0;
  }
}

.header_fixed .header_left {
  max-width: 12.5rem;
  margin-top: 0;
}
@media (max-width: 768px) {
  .header_fixed .header_left {
    max-width: 11.4285714286rem;
  }
}

.header_lead {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #747474;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_lead {
    display: none;
  }
}

.header_fixed .header_lead {
  display: none;
}

.header_logo {
  width: 100%;
  max-width: 18.4375rem;
  margin-top: 1.1875rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_logo {
    max-width: 11.4285714286rem;
    margin-top: 0;
  }
}

.header_fixed .header_logo {
  max-width: 12.5rem;
  margin-top: 0;
}

.header_right {
  width: 100%;
  max-width: 48.4375rem;
}
@media (max-width: 768px) {
  .header_right {
    display: none;
  }
}

.header_fixed .header_right {
  max-width: 61.25rem;
}

.header_inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4375rem;
  width: 100%;
  max-width: 31.0625rem;
  margin-left: auto;
}

.header_fixed .header_inquiry {
  display: none;
}

.header_line {
  width: 100%;
  max-width: 15.625rem;
}

.header_line a {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background-color: #5DBAAC;
  border: 1px solid #5DBAAC;
  width: 100%;
  padding: 1.53125rem 1.125rem 1.53125rem;
  border-radius: 0 0 1.25rem 1.25rem;
}

@media (min-width: 768px) {
  .header_line a:hover {
    color: #5DBAAC;
    background-color: #fff;
  }
}

.header_line_wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 0 0 0 2.0625rem;
}

.header_line_wrapper::before {
  position: absolute;
  content: "";
  width: 1.5625rem;
  height: 1.5625rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_line_white.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .header_line a:hover .header_line_wrapper::before {
    background: url(../images/common/icon_line_green_mint.png) no-repeat center center/contain;
  }
}

.header_line_wrapper span {
  display: inline-block;
  background-color: #368878;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .header_line a:hover .header_line_wrapper span {
    color: #fff;
    background-color: #5DBAAC;
  }
}

.header_mail {
  width: 100%;
  max-width: 15rem;
}

.header_mail a {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background-color: #FC8AA3;
  border: 1px solid #FC8AA3;
  border-radius: 0 0 1.25rem 1.25rem;
  width: 100%;
  padding: 1.53125rem 1.375rem 1.53125rem;
}

@media (min-width: 768px) {
  .header_mail a:hover {
    color: #FC8AA3;
    background-color: #fff;
  }
}

.header_mail a span {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 0 0 0 2.25rem;
  border-radius: 0.3125rem;
}

.header_mail a span::before {
  position: absolute;
  content: "";
  width: 1.625rem;
  height: 1.125rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_mail_white.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .header_mail a:hover span::before {
    background: url(../images/common/icon_mail_pink.png) no-repeat center center/contain;
  }
}

.header_nav {
  margin-top: 1.8125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_nav {
    display: none;
  }
}

.header_fixed .header_nav {
  margin-top: 0;
}

.header_lists {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.header_fixed .header_lists {
  grid-template-columns: repeat(8, auto);
  gap: 1rem;
}

.header_list {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_list_line {
  display: none;
}

.header_fixed .header_list_line {
  display: block;
}

.header_list_mail {
  display: none;
}

.header_fixed .header_list_mail {
  display: block;
}

.header_list_link {
  display: inline-block;
  font-size: 0.9375rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
}

.header_fixed .header_list_link {
  font-size: 0.875rem;
}

.header_list_line .header_list_link {
  color: #fff;
  background-color: #5DBAAC;
  padding: 0.3125rem 0.625rem;
  border: 1px solid #5DBAAC;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .header_list_line .header_list_link:hover {
    background-color: #fff;
  }
}

.header_list_mail .header_list_link {
  color: #fff;
  background-color: #FC8AA3;
  padding: 0.3125rem 0.625rem;
  border: 1px solid #FC8AA3;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .header_list_mail .header_list_link:hover {
    color: #FC8AA3;
    background-color: #fff;
  }
}

@media (min-width: 768px) {
  .header_list_link:hover {
    color: #5DBAAC;
  }
}

.header_hamburger {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}
@media (max-width: 768px) {
  .header_hamburger {
    display: block;
    width: 4.2857142857rem;
    height: 4.2857142857rem;
  }
}

.header_hamburger.is_open {
  background-color: transparent;
}

.header_hamburger_bar {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 1.5625rem;
  height: 2px;
  background-color: #FC8AA3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header_hamburger_bar:nth-of-type(1) {
  top: -0.75rem;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(1) {
    top: -0.8571428571rem;
  }
}

.header_hamburger_bar:nth-of-type(2) {
  top: -0.125rem;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(2) {
    top: -0.2857142857rem;
  }
}

.header_hamburger_bar:nth-of-type(3) {
  top: 0.5rem;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(3) {
    top: 0.2857142857rem;
  }
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(1) {
  top: 1px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(2) {
  opacity: 0;
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(3) {
  top: -3px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header_hamburger_title {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #FC8AA3;
  width: 100%;
  left: 50%;
  bottom: 0.25rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .header_hamburger_title {
    bottom: 0.2857142857rem;
  }
}

.header_drawer {
  padding: 4.375rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
}

.header_drawer.is_open {
  opacity: 1;
  visibility: visible;
}

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

.header_drawer_nav {
  padding: 0 1.1428571429rem 6.25rem;
  height: 100%;
  overflow-y: scroll;
}

.header_drawer_list {
  border-bottom: 1px solid #FC8AA3;
}

.header_drawer_list_link {
  padding: 0.9375rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #FC8AA3;
}

.header_drawer_list_menu a {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
  padding: 0.5rem 0.625rem;
  color: #FC8AA3;
}
@media (max-width: 768px) {
  .header_drawer_list_menu a {
    font-size: 1rem;
  }
}

/* main
------------------------------ */
.main {
  margin-top: 9.6875rem;
}
@media (max-width: 768px) {
  .main {
    margin-top: 4.2857142857rem;
  }
}

/* lgbtq_mv
------------------------------ */
.lgbtq_mv {
  position: relative;
}

.lgbtq_mv::before {
  position: absolute;
  content: "";
  top: 8.0625rem;
  right: 0;
  bottom: -7.6875rem;
  left: 0;
  background: linear-gradient(135deg, #FFE7EC 0, #FEECD1 100%);
  z-index: -1;
}
@media (max-width: 768px) {
  .lgbtq_mv::before {
    display: none;
  }
}

.lgbtq_mv_inner {
  position: relative;
}

.lgbtq_mv_content {
  width: 100%;
  max-width: 83.3333vw;
  margin-inline: auto;
  padding: 13.6vw 0 15.4vw;
}
@media (max-width: 768px) {
  .lgbtq_mv_content {
    max-width: 100%;
    padding: 30.4vw 0 10.9333vw;
  }
}

.lgbtq_mv_title {
  position: relative;
  font-size: 2.4vw;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.7222222222;
  color: #FF7896;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .lgbtq_mv_title {
    font-size: 4.8vw;
    line-height: 1.4;
  }
}

.lgbtq_mv_title span {
  display: inline;
  padding: 0 0 0 0.6667vw;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-size: 100% 3.8vw;
  background-position: 0 67%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (max-width: 768px) {
  .lgbtq_mv_title span {
    padding: 0 0 0 3.4667vw;
    background-size: 100% 6.1333vw;
    background-position: 0 67%;
  }
}

.lgbtq_mv_text {
  font-size: 1.6vw;
  font-weight: 700;
  line-height: 1.875;
  color: #FF7896;
  margin-top: 1.4vw;
  padding-left: 0.6667vw;
}
@media (max-width: 768px) {
  .lgbtq_mv_text {
    font-size: 3.2vw;
    line-height: 1.5;
    padding-left: 3.4667vw;
    margin-top: 2.1333vw;
  }
}

.lgbtq_mv_img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.lgbtq_mv_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/* lgbtq_worries
------------------------------ */
.lgbtq_worries {
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .lgbtq_worries {
    margin-top: 4rem;
  }
}

.lgbtq_worries_inner.inner {
  max-width: 69.5rem;
}
@media (max-width: 768px) {
  .lgbtq_worries_inner.inner {
    max-width: 37.5rem;
  }
}

.lgbtq_worries_title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 8.5625rem;
}
@media (max-width: 768px) {
  .lgbtq_worries_title {
    width: 100%;
    padding: 0 2.8571428571rem;
  }
}

.lgbtq_worries_title::before {
  position: absolute;
  content: "";
  width: 4.375rem;
  height: 4.9375rem;
  left: 0;
  top: -1.25rem;
  background: url(../images/lgbtq/lgbtq_worries_title_before.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_worries_title::before {
    width: 3.5714285714rem;
    height: 4.0714285714rem;
  }
}

.lgbtq_worries_title::after {
  position: absolute;
  content: "";
  width: 5.8125rem;
  height: 7.25rem;
  right: 0;
  top: 1.8125rem;
  background: url(../images/lgbtq/lgbtq_worries_title_after.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_worries_title::after {
    width: 3.7857142857rem;
    height: 4.7142857143rem;
  }
}

.lgbtq_worries_lead {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  margin-top: 1.625rem;
}
@media (max-width: 768px) {
  .lgbtq_worries_lead {
    font-size: 1.2857142857rem;
    margin-top: 2rem;
  }
}

.lgbtq_worries_items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.375rem;
  margin-top: 4.3125rem;
  padding-bottom: 9.75rem;
}
@media (max-width: 768px) {
  .lgbtq_worries_items {
    grid-template-columns: 1fr;
    gap: 1.0714285714rem;
    margin-top: 3.4285714286rem;
    padding-bottom: 5.3571428571rem;
  }
}

.lgbtq_worries_items::after {
  position: absolute;
  content: "";
  width: 5.0625rem;
  height: 6.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: url(../images/common/icon_arrow_dotted_bottom_green_mint.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_worries_items::after {
    width: 3.9285714286rem;
    height: 4.8571428571rem;
  }
}

.lgbtq_worries_item {
  position: relative;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  background-color: #E9F6F4;
  text-align: center;
  padding: 1.5625rem 1rem;
  border-radius: 0.625rem;
}
@media (max-width: 768px) {
  .lgbtq_worries_item {
    font-size: 1.1428571429rem;
    padding: 1.0714285714rem 1.1428571429rem;
  }
}

.lgbtq_worries_item::before {
  position: absolute;
  content: "";
}

.lgbtq_worries_item:nth-of-type(1)::before {
  width: 7.9375rem;
  height: 8.0625rem;
  left: -3rem;
  bottom: 0;
  background: url(../images/lgbtq/lgbtq_worries_item_illust01.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_worries_item:nth-of-type(1)::before {
    width: 4.6428571429rem;
    height: 4.7142857143rem;
    left: -0.5714285714rem;
  }
}

.lgbtq_worries_item:nth-of-type(2)::before {
  width: 4.5625rem;
  height: 3.875rem;
  right: 1.625rem;
  top: -3.125rem;
  background: url(../images/lgbtq/lgbtq_worries_item_illust02.png) no-repeat center center/contain;
  -webkit-transform: rotate(-17deg);
          transform: rotate(-17deg);
}
@media (max-width: 768px) {
  .lgbtq_worries_item:nth-of-type(2)::before {
    width: 3.1428571429rem;
    height: 2.7142857143rem;
    right: 1.2142857143rem;
    top: 0.3571428571rem;
  }
}

.lgbtq_worries_item:nth-of-type(3)::before {
  width: 1.875rem;
  height: 2.6875rem;
  right: 2.0625rem;
  top: -1.0625rem;
  background: url(../images/lgbtq/lgbtq_worries_item_illust03.png) no-repeat center center/contain;
  -webkit-transform: rotate(26deg);
          transform: rotate(26deg);
}
@media (max-width: 768px) {
  .lgbtq_worries_item:nth-of-type(3)::before {
    width: 1.4285714286rem;
    height: 2.1428571429rem;
    right: auto;
    left: 0.7142857143rem;
    top: auto;
    bottom: 0.5714285714rem;
    -webkit-transform: rotate(-32deg);
            transform: rotate(-32deg);
  }
}

.lgbtq_worries_item:nth-of-type(4)::before {
  width: 2.5625rem;
  height: 2.75rem;
  right: 1.1875rem;
  top: -0.8125rem;
  background: url(../images/lgbtq/lgbtq_worries_item_illust04.png) no-repeat center center/contain;
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
}
@media (max-width: 768px) {
  .lgbtq_worries_item:nth-of-type(4)::before {
    width: 1.9285714286rem;
    height: 2.7857142857rem;
    right: 1.1428571429rem;
    top: 0.6428571429rem;
    -webkit-transform: rotate(-9deg);
            transform: rotate(-9deg);
  }
}

.lgbtq_worries_item:nth-of-type(5)::before {
  width: 3.75rem;
  height: 3.75rem;
  left: -1.4375rem;
  top: 1.5625rem;
  background: url(../images/lgbtq/lgbtq_worries_item_illust05.png) no-repeat center center/contain;
  -webkit-transform: rotate(18deg);
          transform: rotate(18deg);
}
@media (max-width: 768px) {
  .lgbtq_worries_item:nth-of-type(5)::before {
    width: 2.7857142857rem;
    height: 2.7857142857rem;
    left: 0.7857142857rem;
    top: 0.6428571429rem;
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
}

.lgbtq_worries_item:nth-of-type(6)::before {
  width: 7.4375rem;
  height: 8rem;
  right: -3.0625rem;
  bottom: -0.25rem;
  background: url(../images/lgbtq/lgbtq_worries_item_illust06.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_worries_item:nth-of-type(6)::before {
    width: 5.0714285714rem;
    height: 5.2142857143rem;
    right: -1.2142857143rem;
    bottom: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.lgbtq_worries_text {
  position: relative;
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  line-height: 200%;
  color: #FC6E7C;
  text-align: center;
  margin-top: 2.4375rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .lgbtq_worries_text {
    font-size: 1.2142857143rem;
    line-height: 180%;
    margin-top: 1.6428571429rem;
  }
}

.lgbtq_worries_text::before {
  position: absolute;
  content: "";
  width: 7.1875rem;
  height: 7.6875rem;
  left: 0;
  top: 0;
  background: url(../images/lgbtq/lgbtq_worries_text_before.png) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 768px) {
  .lgbtq_worries_text::before {
    width: 5.2857142857rem;
    height: 5.7142857143rem;
  }
}

.lgbtq_worries_text::after {
  position: absolute;
  content: "";
  width: 7.3125rem;
  height: 7.75rem;
  right: -1.875rem;
  top: 0;
  background: url(../images/lgbtq/lgbtq_worries_text_after.png) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 768px) {
  .lgbtq_worries_text::after {
    width: 5.3571428571rem;
    height: 5.7857142857rem;
    right: 0;
  }
}

.lgbtq_worries_text span {
  display: inline-block;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(1.875rem, #FFF2D8), color-stop(3.75rem, transparent));
  background: linear-gradient(transparent 0 1.875rem, #FFF2D8 1.875rem 3.75rem, transparent 3.75rem 100%);
  padding-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .lgbtq_worries_text span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(1.4285714286rem, #FFF2D8), color-stop(2.8571428571rem, transparent));
    background: linear-gradient(transparent 0 1.4285714286rem, #FFF2D8 1.4285714286rem 2.8571428571rem, transparent 2.8571428571rem 100%);
    padding-bottom: 1.4285714286rem;
  }
}

.lgbtq_worries_text span::after {
  position: absolute;
  content: "";
  width: 9.5625rem;
  height: 1.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: url(../images/lgbtq/lgbtq_worries_text_illust.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_worries_text span::after {
    width: 6.8571428571rem;
    height: 1.2857142857rem;
  }
}

/* lgbtq_strengths
------------------------------ */
.lgbtq_strengths {
  margin-top: 3.25rem;
}
@media (max-width: 768px) {
  .lgbtq_strengths {
    margin-top: 4rem;
  }
}

.lgbtq_strengths_title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 69rem;
  margin-inline: auto;
  padding: 1.1875rem 2rem;
  background: url(../images/lgbtq/lgbtq_strengths_title_bg_pc.jpg) no-repeat center center/cover;
}
@media (max-width: 768px) {
  .lgbtq_strengths_title {
    font-size: 1.4285714286rem;
    padding: 0.8571428571rem 1.1428571429rem;
  }
}

.lgbtq_strengths_title::before {
  position: absolute;
  content: "";
  width: 1.25rem;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
@media (max-width: 768px) {
  .lgbtq_strengths_title::before {
    width: 0.8571428571rem;
  }
}

.lgbtq_strengths_title::after {
  position: absolute;
  content: "";
  width: 1.25rem;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
@media (max-width: 768px) {
  .lgbtq_strengths_title::after {
    width: 0.8571428571rem;
  }
}

.lgbtq_strengths_items {
  counter-reset: lgbtq_strengths_items;
  margin-top: 4.5625rem;
}
@media (max-width: 768px) {
  .lgbtq_strengths_items {
    margin-top: 2.8571428571rem;
  }
}

.lgbtq_strengths_item {
  position: relative;
  padding: 0 3.125rem 3.125rem 3.125rem;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item {
    padding: 0 1.1428571429rem 1.7142857143rem 1.1428571429rem;
  }
}

.lgbtq_strengths_item::before {
  position: absolute;
  content: "";
  top: 1.875rem;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #FFF3F6;
  border-radius: 0.625rem;
  z-index: -1;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item::before {
    top: 1.7142857143rem;
  }
}

.lgbtq_strengths_item + .lgbtq_strengths_item {
  margin-top: 2.6875rem;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item + .lgbtq_strengths_item {
    margin-top: 2.8571428571rem;
  }
}

.lgbtq_strengths_item_num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  color: #FC6E7C;
  padding-left: 0.8125rem;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item_num {
    font-size: 1.4285714286rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.2857142857rem;
    padding-left: 0.7142857143rem;
  }
}

.lgbtq_strengths_item_num::before {
  position: absolute;
  content: "";
  width: 6.6875rem;
  height: 6.6875rem;
  left: -1.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/lgbtq/lgbtq_strengths_item_num_before.png) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item_num::before {
    width: 4.6428571429rem;
    height: 4.6428571429rem;
    left: calc(50% - 2.3214285714rem);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.lgbtq_strengths_item_num::after {
  counter-increment: lgbtq_strengths_items;
  content: counter(lgbtq_strengths_items, decimal);
  font-size: 4.375rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item_num::after {
    font-size: 2.8571428571rem;
  }
}

.lgbtq_strengths_item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.1428571429rem;
    margin-top: 1.1428571429rem;
  }
}

.lgbtq_strengths_item_content {
  width: 100%;
  max-width: 46.875rem;
  margin-top: 1.3125rem;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item_content {
    margin-top: 0;
  }
}

.lgbtq_strengths_item_title {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  color: #FC6E7C;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #FC6E7C;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item_title {
    font-size: 1.4285714286rem;
    text-align: center;
    padding-bottom: 0.5714285714rem;
  }
}

.lgbtq_strengths_item_text {
  line-height: 2.1875;
  margin-top: 1.875rem;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item_text {
    margin-top: 1.1428571429rem;
  }
}

.lgbtq_strengths_item_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.875rem;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item_unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.1428571429rem;
    margin-top: 1.1428571429rem;
  }
}

.lgbtq_strengths_item_unit_text {
  width: 100%;
  max-width: 34.8125rem;
  line-height: 2.1875;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item_unit_text {
    max-width: 100%;
  }
}

.lgbtq_strengths_item_unit_img {
  width: 100%;
  max-width: 9.875rem;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item_unit_img {
    max-width: 10.7142857143rem;
  }
}

.lgbtq_strengths_item_btn {
  margin-top: 1.0625rem;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item_btn {
    text-align: center;
    margin-top: 1.7142857143rem;
  }
}

.lgbtq_strengths_item_img {
  width: 100%;
  max-width: 21.875rem;
}
@media (max-width: 768px) {
  .lgbtq_strengths_item_img {
    max-width: 100%;
  }
}

.lgbtq_strengths_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 350/239;
  border-radius: 0.625rem;
}

/* lgbtq_cta - lgbtq_cta02
------------------------------ */
.lgbtq_cta.lgbtq_cta02 {
  margin-top: 8.8125rem;
}
@media (max-width: 768px) {
  .lgbtq_cta.lgbtq_cta02 {
    margin-top: 2.8571428571rem;
  }
}

/* lgbtq_comparison
------------------------------ */
.lgbtq_comparison {
  margin-top: 7.375rem;
  padding: 7.125rem 0 7.1875rem;
  background: linear-gradient(135deg, #FFE7EC 0, #FEECD1 100%);
}
@media (max-width: 768px) {
  .lgbtq_comparison {
    margin-top: 0;
    padding: 4rem 0;
  }
}

.lgbtq_comparison_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  margin-top: 3.8125rem;
  width: 100%;
  max-width: 68rem;
  margin-left: auto;
  margin-top: 3.8125rem;
}
@media (max-width: 768px) {
  .lgbtq_comparison_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.7142857143rem;
    margin-top: 2.2857142857rem;
  }
}

.lgbtq_comparison_img {
  position: relative;
  width: 100%;
  max-width: 23.75rem;
}
@media (max-width: 768px) {
  .lgbtq_comparison_img {
    max-width: 100%;
  }
}

.lgbtq_comparison_img::before {
  position: absolute;
  content: "";
  width: 12.6875rem;
  height: 9.75rem;
  background: url(../images/lgbtq/lgbtq_comparison_img_illust.png) no-repeat center center/contain;
  left: -8rem;
  bottom: -2.75rem;
}
@media (max-width: 768px) {
  .lgbtq_comparison_img::before {
    width: 9.0714285714rem;
    height: 7rem;
    left: 0;
    bottom: -0.7142857143rem;
  }
}

.lgbtq_comparison_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 380/260;
  border-radius: 0.625rem;
}

.lgbtq_comparison_content {
  position: relative;
  width: 100%;
  max-width: 41.125rem;
  padding-right: 1.9375rem;
}
@media (max-width: 768px) {
  .lgbtq_comparison_content {
    max-width: 100%;
    padding-right: 0;
  }
}

.lgbtq_comparison_content::before {
  position: absolute;
  content: "";
  width: 9.375rem;
  height: 5.0625rem;
  background: url(../images/lgbtq/lgbtq_comparison_content_illust.png) no-repeat center center/contain;
  right: 7.5rem;
  bottom: 0.625rem;
}
@media (max-width: 768px) {
  .lgbtq_comparison_content::before {
    display: none;
  }
}

.lgbtq_comparison_text {
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .lgbtq_comparison_text {
    font-size: 1.1428571429rem;
    line-height: 1.8;
  }
}

.lgbtq_comparison_table {
  margin-top: 4.125rem;
}
@media (max-width: 768px) {
  .lgbtq_comparison_table {
    margin-top: 2.2857142857rem;
  }
}

.lgbtq_comparison_table_scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lgbtq_comparison_table_scroll:focus-visible {
  outline: 2px solid #FC6E7C;
  outline-offset: 2px;
}

.lgbtq_comparison_table table {
  width: 100%;
  min-width: 47.5rem;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #fff;
  border-radius: 0.625rem;
}

.lgbtq_comparison_table_caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.lgbtq_comparison_table thead th {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.6875rem 1rem;
  text-align: center;
  border-left: 2px solid #F4AAA2;
}
@media (max-width: 768px) {
  .lgbtq_comparison_table thead th {
    font-size: 1.2857142857rem;
    padding: 0.5714285714rem 0.8571428571rem;
  }
}

.lgbtq_comparison_table thead td:first-of-type {
  border-radius: 0.625rem 0 0 0;
}

.lgbtq_comparison_table thead th:last-of-type {
  border-radius: 0 0.625rem 0 0;
}

.lgbtq_comparison_table tbody th {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
  border-top: 2px solid #F4AAA2;
  line-height: 1.6;
  vertical-align: middle;
  text-align: left;
  overflow-wrap: anywhere;
  padding: 0.8125rem 1.875rem;
}
@media (max-width: 768px) {
  .lgbtq_comparison_table tbody th {
    font-size: 1.1428571429rem;
    padding: 0.7142857143rem 1.4285714286rem;
  }
}

.lgbtq_comparison_table tbody tr:last-of-type th:first-of-type {
  border-radius: 0 0 0 0.625rem;
}

.lgbtq_comparison_table tbody td {
  padding: 0.875rem 1rem;
  border-top: 2px solid #F4AAA2;
  border-left: 2px solid #F4AAA2;
  line-height: 1.6;
  vertical-align: middle;
  text-align: center;
  overflow-wrap: anywhere;
}
@media (max-width: 768px) {
  .lgbtq_comparison_table tbody td {
    padding: 0.7142857143rem 0.8571428571rem;
  }
}

.lgbtq_comparison_table tbody tr:last-of-type td:last-of-type {
  border-radius: 0 0 0.625rem 0;
}

.lgbtq_comparison_table_blank {
  width: 20%;
  border-top: none;
  border-left: none;
}
@media (max-width: 768px) {
  .lgbtq_comparison_table_blank {
    width: 26%;
  }
}

.lgbtq_comparison_table_head {
  width: 37%;
  color: #FC6E7C;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .lgbtq_comparison_table_head {
    font-size: 1rem;
  }
}

.lgbtq_comparison_table_head_mg {
  width: 43%;
  background-color: #FFF5F9;
}

.lgbtq_comparison_table_label {
  color: #FC6E7C;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: left;
}
@media (max-width: 768px) {
  .lgbtq_comparison_table_label {
    font-size: 1rem;
  }
}

.lgbtq_comparison_table_cell {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .lgbtq_comparison_table_cell {
    font-size: 0.9285714286rem;
  }
}

.lgbtq_comparison_table_cell_mg {
  color: #FC6E7C;
  background-color: #FFF5F9;
}

.lgbtq_comparison_food {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  line-height: 2;
  color: #FC6E7C;
  text-align: center;
  margin-top: 2.8125rem;
}
@media (max-width: 768px) {
  .lgbtq_comparison_food {
    font-size: 1.4285714286rem;
    margin-top: 2.2857142857rem;
  }
}

/* lgbtq_voices
------------------------------ */
.lgbtq_voices {
  padding: 7rem 0 17.625rem;
  background-color: #FBF6ED;
  background: url(../images/lgbtq/lgbtq_voices_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 768px) {
  .lgbtq_voices {
    padding: 4rem 0;
  }
}

.lgbtq_voices_lead {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto 0;
  padding-left: 1.125rem;
}
@media (max-width: 768px) {
  .lgbtq_voices_lead {
    font-size: 0.9285714286rem;
    margin: 1.7142857143rem auto 0;
    padding-left: 1.1428571429rem;
  }
}

.lgbtq_voices_lead::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}

.lgbtq_voices_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4.4375rem;
}
@media (max-width: 768px) {
  .lgbtq_voices_items {
    grid-template-columns: 1fr;
    gap: 1.7142857143rem;
    margin-top: 2.2857142857rem;
  }
}

.lgbtq_voices_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2.1875rem 1.625rem 2.125rem;
  -webkit-box-shadow: 0 0 0.9375rem rgba(48, 48, 48, 0.25);
          box-shadow: 0 0 0.9375rem rgba(48, 48, 48, 0.25);
  border-radius: 0.625rem;
}
@media (max-width: 768px) {
  .lgbtq_voices_item {
    padding: 1.7142857143rem 1.1428571429rem;
  }
}

.lgbtq_voices_item_title {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 154%;
  color: #FC6E7C;
  text-align: center;
}
@media (max-width: 768px) {
  .lgbtq_voices_item_title {
    font-size: 1.2857142857rem;
  }
}

.lgbtq_voices_item_text {
  line-height: 219%;
  margin-top: 1.375rem;
  padding-top: 1.625rem;
  border-top: 1px solid #FC6E7C;
}
@media (max-width: 768px) {
  .lgbtq_voices_item_text {
    line-height: 180%;
    margin-top: 1.1428571429rem;
    padding-top: 1.1428571429rem;
  }
}

/* lgbtq_cta - lgbtq_cta03
------------------------------ */
.lgbtq_cta.lgbtq_cta03 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(10.125rem, #E9F6F4));
  background: linear-gradient(180deg, transparent 0 10.125rem, #E9F6F4 10.125rem 100%);
  margin-top: -10.125rem;
}
@media (max-width: 768px) {
  .lgbtq_cta.lgbtq_cta03 {
    margin-top: 0;
  }
}

/* lgbtq_price
------------------------------ */
.lgbtq_price {
  padding: 7.125rem 0 7.5rem;
  background-color: #E9F6F4;
}
@media (max-width: 768px) {
  .lgbtq_price {
    padding: 4rem 0;
  }
}

.lgbtq_price_title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 6.25rem;
}
@media (max-width: 768px) {
  .lgbtq_price_title {
    padding: 0 4rem;
  }
}

.lgbtq_price_title::before {
  position: absolute;
  content: "";
  top: 0.8125rem;
  left: 0;
  width: 4.125rem;
  height: 5.875rem;
  background: url(../images/lgbtq/lgbtq_price_title_before.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_price_title::before {
    width: 2.5714285714rem;
    height: 3.6428571429rem;
    top: 0.5714285714rem;
  }
}

.lgbtq_price_title::after {
  position: absolute;
  content: "";
  bottom: 0.8125rem;
  right: 0;
  width: 4.625rem;
  height: 5.5rem;
  background: url(../images/lgbtq/lgbtq_price_title_after.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_price_title::after {
    width: 3rem;
    height: 4.0714285714rem;
    bottom: 0.5714285714rem;
  }
}

.lgbtq_price_lead {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1.875;
  text-align: center;
  margin-top: 2.3125rem;
}
@media (max-width: 768px) {
  .lgbtq_price_lead {
    font-size: 1.4285714286rem;
    margin-top: 1.7142857143rem;
  }
}

.lgbtq_price_subtitle {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  color: #fff;
  background-color: #5DBAAC;
  text-align: center;
  border-radius: 0.625rem;
  padding: 0.6875rem 1.5rem;
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .lgbtq_price_subtitle {
    font-size: 1.4285714286rem;
    margin-top: 2.2857142857rem;
    padding: 0.7142857143rem 1.1428571429rem;
  }
}

.lgbtq_price_table {
  width: 100%;
  margin-top: 3.125rem;
}
@media (max-width: 768px) {
  .lgbtq_price_table {
    margin-top: 2.2857142857rem;
  }
}

@media (max-width: 768px) {
  .lgbtq_price_table .scroll_area_hint {
    background-color: rgba(93, 186, 172, 0.8);
  }
}

.lgbtq_price_table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}

.lgbtq_price_table_caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.lgbtq_price_table_head {
  vertical-align: middle;
  text-align: center;
  overflow-wrap: anywhere;
  padding: 1.125rem 0.625rem;
  background-color: rgba(93, 186, 172, 0.5);
}
@media (max-width: 768px) {
  .lgbtq_price_table_head {
    padding: 0.7142857143rem 0.8571428571rem;
  }
}

.lgbtq_price_table_head + .lgbtq_price_table_head {
  border-left: 1px solid #5DBAAC;
}

.lgbtq_price_table_head:first-child {
  border-top-left-radius: 0.625rem;
}

.lgbtq_price_table_head:last-child {
  border-top-right-radius: 0.625rem;
}

.lgbtq_price_table_cell {
  vertical-align: middle;
  text-align: center;
  overflow-wrap: anywhere;
  padding: 1.125rem 0.625rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  .lgbtq_price_table_cell {
    padding: 0.7142857143rem 0.8571428571rem;
  }
}

.lgbtq_price_table_cell + .lgbtq_price_table_cell {
  border-left: 1px solid rgba(93, 186, 172, 0.5);
}

.lgbtq_price_table_cell:first-child {
  border-bottom-left-radius: 0.625rem;
}

.lgbtq_price_table_cell:last-child {
  border-bottom-right-radius: 0.625rem;
}

.lgbtq_price_content {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 47.5rem;
  margin-top: 1.4375rem;
}
@media (max-width: 768px) {
  .lgbtq_price_content {
    font-size: 0.9285714286rem;
    max-width: 100%;
    margin-top: 1.1428571429rem;
  }
}

.lgbtq_price_content::after {
  position: absolute;
  content: "";
  width: 6.875rem;
  height: 7.1875rem;
  right: -17.1875rem;
  top: 3.5625rem;
  background: url(../images/lgbtq/lgbtq_price_content_illust.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_price_content::after {
    display: none;
  }
}

.lgbtq_price_content_headingrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}
@media (max-width: 768px) {
  .lgbtq_price_content_headingrow {
    -webkit-column-gap: 1.1428571429rem;
       -moz-column-gap: 1.1428571429rem;
            column-gap: 1.1428571429rem;
  }
}

.lgbtq_price_content_heading {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: inherit;
}
@media (max-width: 768px) {
  .lgbtq_price_content_heading {
    font-size: 1rem;
  }
}

.lgbtq_price_content_lead {
  font-weight: 700;
}

.lgbtq_price_content_list {
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .lgbtq_price_content_list {
    margin-top: 0.2857142857rem;
  }
}

.lgbtq_price_content_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.lgbtq_price_content_term {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
}

.lgbtq_price_content_term::after {
  content: "：";
}

.lgbtq_price_content_desc {
  margin-left: 0;
}

.lgbtq_price_content_stack {
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .lgbtq_price_content_stack {
    margin-top: 0.2857142857rem;
  }
}

.lgbtq_price_content_subhead {
  color: #5DBAAC;
  font-weight: 700;
}

.lgbtq_price_content_docs {
  position: relative;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .lgbtq_price_content_docs {
    padding-left: 0.8571428571rem;
  }
}

.lgbtq_price_content_docs::before {
  position: absolute;
  content: "";
  top: 0.75rem;
  left: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: #5DBAAC;
}
@media (max-width: 768px) {
  .lgbtq_price_content_docs::before {
    top: 0.6428571429rem;
    width: 0.2857142857rem;
    height: 0.2857142857rem;
  }
}

.lgbtq_price_content_text {
  margin-top: 0.375rem;
}
@media (max-width: 768px) {
  .lgbtq_price_content_text {
    margin-top: 0.2857142857rem;
  }
}

/* lgbtq_flow
------------------------------ */
.lgbtq_flow {
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .lgbtq_flow {
    margin-top: 4rem;
  }
}

.lgbtq_flow_items {
  counter-reset: cnt;
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .lgbtq_flow_items {
    margin-top: 2.2857142857rem;
  }
}

.lgbtq_flow_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  padding: 2.5rem 0 0 2.5rem;
}
@media (max-width: 768px) {
  .lgbtq_flow_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.1428571429rem;
    padding: 0 1.1428571429rem 4.0714285714rem;
  }
}

@media (max-width: 768px) {
  .lgbtq_flow_item:last-of-type {
    padding: 0 1.1428571429rem 1.7142857143rem;
  }
}

.lgbtq_flow_item::before {
  position: absolute;
  content: "";
  top: 0;
  right: 13.625rem;
  bottom: 2.4375rem;
  left: 0;
  background-color: #FFF3F6;
  z-index: -1;
  border-radius: 0.625rem;
}
@media (max-width: 768px) {
  .lgbtq_flow_item::before {
    top: 2.2142857143rem;
    right: 0;
    bottom: 0;
  }
}

.lgbtq_flow_item:not(:last-of-type)::after {
  position: absolute;
  content: "";
  width: 4.25rem;
  height: 5.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -6.25rem;
  background: url(../images/common/icon_arrow_dotted_bottom_pink_dark.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_flow_item:not(:last-of-type)::after {
    width: 4.9285714286rem;
    height: 6.1428571429rem;
    bottom: -3.4285714286rem;
  }
}

.lgbtq_flow_item + .lgbtq_flow_item {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .lgbtq_flow_item + .lgbtq_flow_item {
    margin-top: 4.5714285714rem;
  }
}

.lgbtq_flow_item_content_wrapper {
  display: grid;
  grid-template-columns: 6.8125rem 1fr;
  gap: 1.6875rem;
  width: 100%;
  max-width: 50.6875rem;
}
@media (max-width: 768px) {
  .lgbtq_flow_item_content_wrapper {
    grid-template-columns: 1fr;
    gap: 1.1428571429rem;
  }
}

.lgbtq_flow_item_num {
  position: relative;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Parisienne", cursive;
  font-weight: 700;
  color: #fff;
  background-color: rgba(252, 110, 124, 0.5);
  padding: 0.625rem;
  width: 6.6875rem;
  height: 6.6875rem;
  border-radius: 50%;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .lgbtq_flow_item_num {
    font-size: 0.8571428571rem;
    width: 4.6428571429rem;
    height: 4.6428571429rem;
    padding: 0.5714285714rem;
    margin-inline: auto;
  }
}

.lgbtq_flow_item_num::before {
  position: absolute;
  content: "";
  width: 2.5rem;
  height: 2.625rem;
  top: 2.5rem;
  left: -0.625rem;
  background: url(../images/lgbtq/lgbtq_flow_item_num_illust.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_flow_item_num::before {
    width: 1.7142857143rem;
    height: 1.8571428571rem;
    top: 1.7142857143rem;
    left: -0.4285714286rem;
  }
}

.lgbtq_flow_item_num::after {
  counter-increment: cnt;
  content: counter(cnt, decimal);
  font-size: 3.75rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 100%;
}
@media (max-width: 768px) {
  .lgbtq_flow_item_num::after {
    font-size: 2.1428571429rem;
  }
}

.lgbtq_flow_item_content {
  position: relative;
  width: 100%;
  max-width: 42.1875rem;
  margin-top: 0.375rem;
}

.lgbtq_flow_item:last-of-type .lgbtq_flow_item_content::after {
  position: absolute;
  content: "";
  width: 5.75rem;
  height: 5.375rem;
  right: 4.0625rem;
  bottom: 0.125rem;
  background: url(../images/lgbtq/lgbtq_flow_item_content_after.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_flow_item:last-of-type .lgbtq_flow_item_content::after {
    display: none;
  }
}

.lgbtq_flow_item_title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 120%;
  color: #FC6E7C;
}
@media (max-width: 768px) {
  .lgbtq_flow_item_title {
    font-size: 1.4285714286rem;
    line-height: 150%;
    text-align: center;
  }
}

.lgbtq_flow_item:last-of-type .lgbtq_flow_item_title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 5rem;
}
@media (max-width: 768px) {
  .lgbtq_flow_item:last-of-type .lgbtq_flow_item_title {
    margin-inline: auto;
    padding-right: 0;
  }
}

.lgbtq_flow_item:last-of-type .lgbtq_flow_item_title::after {
  position: absolute;
  content: "";
  width: 4.125rem;
  height: 3.625rem;
  right: 0;
  top: -1.5625rem;
  background: url(../images/lgbtq/lgbtq_flow_item_title_after.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_flow_item:last-of-type .lgbtq_flow_item_title::after {
    width: 2.5714285714rem;
    height: 2.2857142857rem;
    top: -1.8571428571rem;
    right: -1.5714285714rem;
  }
}

.lgbtq_flow_item_text {
  line-height: 219%;
  margin-top: 0.875rem;
  padding-top: 1.6875rem;
  border-top: 1px solid #FC6E7C;
}
@media (max-width: 768px) {
  .lgbtq_flow_item_text {
    line-height: 180%;
    margin-top: 1.1428571429rem;
    padding-top: 1.1428571429rem;
  }
}

.lgbtq_flow_item_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .lgbtq_flow_item_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.1428571429rem;
    margin-top: 1.1428571429rem;
  }
}

.lgbtq_flow_item_button {
  width: 100%;
  max-width: 16.875rem;
}
@media (max-width: 768px) {
  .lgbtq_flow_item_button {
    max-width: 17.1428571429rem;
  }
}

.lgbtq_flow_item_img {
  width: 100%;
  max-width: 21.875rem;
  margin-top: 0.5625rem;
}
@media (max-width: 768px) {
  .lgbtq_flow_item_img {
    max-width: 100%;
    margin-top: 0;
  }
}

.lgbtq_flow_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 350/239;
  border-radius: 0.625rem;
}

/* lgbtq_faq
------------------------------ */
.lgbtq_faq {
  position: relative;
  margin-top: 7.5rem;
  padding: 7.125rem 0 17.0625rem;
  background: linear-gradient(135deg, #FFE7EC 0, #FEECD1 100%);
}
@media (max-width: 768px) {
  .lgbtq_faq {
    margin-top: 4rem;
    padding: 4rem 0 2.8571428571rem;
  }
}

.lgbtq_faq_inner {
  position: relative;
  z-index: 1;
}

.lgbtq_faq_inner::before {
  position: absolute;
  content: "";
  width: 11.75rem;
  height: 12.1875rem;
  top: -10.625rem;
  left: 12.0625rem;
  background: url(../images/lgbtq/lgbtq_faq_illust01.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_faq_inner::before {
    width: 5rem;
    height: 5.1428571429rem;
    top: -4.2857142857rem;
    left: 5rem;
  }
}

.lgbtq_faq_items {
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .lgbtq_faq_items {
    margin-top: 2.2857142857rem;
  }
}

/* lgbtq_cta - lgbtq_cta04
------------------------------ */
.lgbtq_cta04 {
  margin-top: -10.25rem;
}
@media (max-width: 768px) {
  .lgbtq_cta04 {
    margin-top: 0;
  }
}

/* lgbtq_column
------------------------------ */
.lgbtq_column {
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .lgbtq_column {
    margin-top: 4rem;
  }
}

.lgbtq_column_lead {
  font-size: 1.25rem;
  text-align: center;
  margin-top: 2.0625rem;
}
@media (max-width: 768px) {
  .lgbtq_column_lead {
    font-size: 1.1428571429rem;
    margin-top: 2.2857142857rem;
  }
}

.lgbtq_column_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 4.5rem;
}
@media (max-width: 768px) {
  .lgbtq_column_cards {
    grid-template-columns: 1fr;
    gap: 1.7142857143rem;
    margin-top: 2.2857142857rem;
  }
}

.lgbtq_column_card {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  row-gap: 0;
}

.lgbtq_column_card a {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  row-gap: 0;
  background-color: #FFF3F6;
  padding: 0 0 1.625rem;
  border-radius: 0.625rem;
}
@media (max-width: 768px) {
  .lgbtq_column_card a {
    padding: 0 0 1.7142857143rem;
  }
}

@media (min-width: 768px) {
  .lgbtq_column_card a:hover {
    background-color: #FBF6ED;
  }
}

.lgbtq_column_card_img {
  overflow: hidden;
}

.lgbtq_column_card_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 292/170;
  width: 100%;
  height: auto;
  border-radius: 0.625rem 0.625rem 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.lgbtq_column_card a:hover .lgbtq_column_card_img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.lgbtq_column_card_date {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0 1.25rem;
  margin-top: 1.0625rem;
}
@media (max-width: 768px) {
  .lgbtq_column_card_date {
    font-size: 0.9285714286rem;
    padding: 0 1.1428571429rem;
    margin-top: 0.8571428571rem;
  }
}

.lgbtq_column_card_title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  line-height: 1.45;
  color: #FC6E7C;
  padding: 0 1.25rem;
  margin-top: 0.6875rem;
}
@media (max-width: 768px) {
  .lgbtq_column_card_title {
    font-size: 1.2857142857rem;
    margin-top: 0.5714285714rem;
  }
}

.top_news_card_categorys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1.25rem;
  margin-top: 0.8125rem;
}
@media (max-width: 768px) {
  .top_news_card_categorys {
    gap: 0.5714285714rem;
    padding: 0 1.1428571429rem;
    margin-top: 0.5714285714rem;
  }
}

.top_news_card_category {
  font-size: 0.875rem;
  color: #FC6E7C;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.0625rem 0.8125rem;
  border: 1px solid #FC6E7C;
}
@media (max-width: 768px) {
  .top_news_card_category {
    font-size: 0.9285714286rem;
    padding: 0.0714285714rem 0.5714285714rem;
  }
}

.lgbtq_column_btn {
  margin-top: 3.75rem;
  text-align: center;
}
@media (max-width: 768px) {
  .lgbtq_column_btn {
    margin-top: 1.7142857143rem;
  }
}

/* lgbtq_counselor
------------------------------ */
.lgbtq_counselor {
  margin-top: 7.5rem;
  padding: 6.9375rem 0 17.375rem;
  background-color: #E9F6F4;
}
@media (max-width: 768px) {
  .lgbtq_counselor {
    margin-top: 4rem;
    padding: 4rem 0;
  }
}

.lgbtq_counselor_inner.inner {
  max-width: 70.0625rem;
}
@media (max-width: 768px) {
  .lgbtq_counselor_inner.inner {
    max-width: 42.8571428571rem;
  }
}

.lgbtq_counselor_items {
  position: relative;
  margin-top: 5.125rem;
}
@media (max-width: 768px) {
  .lgbtq_counselor_items {
    margin-top: 2.2857142857rem;
  }
}

.lgbtq_counselor_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .lgbtq_counselor_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5714285714rem;
  }
}

.lgbtq_counselor_item + .lgbtq_counselor_item {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .lgbtq_counselor_item + .lgbtq_counselor_item {
    margin-top: 2.8571428571rem;
  }
}

.lgbtq_counselor_item_portrait {
  width: 100%;
  max-width: 20.125rem;
}
@media (max-width: 768px) {
  .lgbtq_counselor_item_portrait {
    max-width: 12.8571428571rem;
    margin-inline: auto;
  }
}

.lgbtq_counselor_item_portrait img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 322/370;
  border-radius: 0.625rem;
}

.lgbtq_counselor_item_content {
  position: relative;
  width: 100%;
  max-width: 43.8125rem;
}

.lgbtq_counselor_item:nth-of-type(1) .lgbtq_counselor_item_content::after {
  position: absolute;
  content: "";
  width: 5.8125rem;
  height: 6.5rem;
  right: 12.5rem;
  top: -0.625rem;
  background: url(../images/lgbtq/lgbtq_counselor_item_content_after01.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_counselor_item:nth-of-type(1) .lgbtq_counselor_item_content::after {
    display: none;
  }
}

.lgbtq_counselor_item:nth-of-type(2) .lgbtq_counselor_item_content::after {
  position: absolute;
  content: "";
  width: 9.6875rem;
  height: 6.125rem;
  right: 9.125rem;
  top: 0.625rem;
  background: url(../images/lgbtq/lgbtq_counselor_item_content_after02.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_counselor_item:nth-of-type(2) .lgbtq_counselor_item_content::after {
    display: none;
  }
}

.lgbtq_counselor_item_name {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 768px) {
  .lgbtq_counselor_item_name {
    font-size: 1.4285714286rem;
    text-align: center;
  }
}

.lgbtq_counselor_item_name span {
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .lgbtq_counselor_item_name span {
    font-size: 1.1428571429rem;
  }
}

.lgbtq_counselor_item_lists {
  margin-top: 0.8125rem;
}
@media (max-width: 768px) {
  .lgbtq_counselor_item_lists {
    margin-top: 0.5714285714rem;
  }
}

.lgbtq_counselor_item_list {
  font-weight: 700;
  color: #5DBAAC;
}
@media (max-width: 768px) {
  .lgbtq_counselor_item_list {
    text-align: center;
  }
}

.lgbtq_counselor_item_list + .lgbtq_counselor_item_list {
  margin-top: 0.6875rem;
}
@media (max-width: 768px) {
  .lgbtq_counselor_item_list + .lgbtq_counselor_item_list {
    margin-top: 0.2857142857rem;
  }
}

.lgbtq_counselor_item_text {
  line-height: 219%;
  margin-top: 1.8125rem;
  padding-top: 1.75rem;
  border-top: 1px solid #5DBAAC;
}
@media (max-width: 768px) {
  .lgbtq_counselor_item_text {
    line-height: 180%;
    margin-top: 0.5714285714rem;
    padding-top: 0.5714285714rem;
  }
}

.lgbtq_counselor_item_text p + p {
  margin-top: 0.5rem;
}

.lgbtq_counselor_btn {
  margin-top: 4.875rem;
  text-align: center;
}
@media (max-width: 768px) {
  .lgbtq_counselor_btn {
    margin-top: 1.7142857143rem;
  }
}

/* lgbtq_cta - lgbtq_cta05
------------------------------ */
.lgbtq_cta05 {
  margin-top: -9.875rem;
}
@media (max-width: 768px) {
  .lgbtq_cta05 {
    margin-top: 0;
  }
}

/* lgbtq_cta
------------------------------ */
@media (max-width: 768px) {
  .lgbtq_cta_inner.inner {
    max-width: 100%;
    padding: 0;
  }
}

.lgbtq_cta_main {
  position: relative;
  padding: 2.0625rem 1.5rem 3rem;
  border-radius: 0.625rem;
  background-color: #FFBF95;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 768px) {
  .lgbtq_cta_main {
    border-radius: 0;
    padding: 2.2857142857rem 1.1428571429rem 2.5rem;
  }
}

.lgbtq_cta_main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 120%;
  height: 72%;
  background: #FE9C5E;
  border-radius: 0 0 50% 50%/0 0 7rem 7rem;
  z-index: -1;
}
@media (max-width: 768px) {
  .lgbtq_cta_main::before {
    height: 50%;
  }
}

.lgbtq_cta_title {
  position: relative;
  font-size: 2.5rem;
  font-family: "Parisienne", cursive;
  color: #FFE89E;
  text-transform: capitalize;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 5.0625rem;
}
@media (max-width: 768px) {
  .lgbtq_cta_title {
    font-size: 2.1428571429rem;
    padding: 0 4.2857142857rem;
  }
}

.lgbtq_cta_title::before {
  position: absolute;
  content: "";
  width: 3.6875rem;
  height: 3.8125rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-23deg);
          transform: translateY(-50%) rotate(-23deg);
  background: url(../images/lgbtq/lgbtq_cta_title_before.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_cta_title::before {
    width: 3rem;
    height: 3.4285714286rem;
  }
}

.lgbtq_cta_title::after {
  position: absolute;
  content: "";
  width: 3.9375rem;
  height: 4.3125rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(18deg);
          transform: translateY(-50%) rotate(18deg);
  background: url(../images/lgbtq/lgbtq_cta_title_after.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_cta_title::after {
    width: 3.2142857143rem;
    height: 3.6428571429rem;
  }
}

.lgbtq_cta_lead {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-top: 0.4375rem;
}
@media (max-width: 768px) {
  .lgbtq_cta_lead {
    font-size: 1.2857142857rem;
    margin-top: 0.7142857143rem;
  }
}

.lgbtq_cta_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  margin-top: 1.8125rem;
}
@media (max-width: 768px) {
  .lgbtq_cta_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    margin-top: 5.5714285714rem;
  }
}

.lgbtq_cta_line {
  width: 100%;
  max-width: 31.25rem;
}
@media (max-width: 768px) {
  .lgbtq_cta_line {
    max-width: 24rem;
  }
}

.lgbtq_cta_line a {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  color: #5DBAAC;
  background-color: #fff;
  width: 100%;
  padding: 2rem 1.25rem 2.125rem;
  -webkit-box-shadow: 0 0 0.625rem rgba(222, 118, 21, 0.7);
          box-shadow: 0 0 0.625rem rgba(222, 118, 21, 0.7);
  text-align: center;
  border-radius: 1.25rem;
}
@media (max-width: 768px) {
  .lgbtq_cta_line a {
    font-size: 1.7142857143rem;
    padding: 1.2857142857rem 1.1428571429rem;
  }
}

@media (min-width: 768px) {
  .lgbtq_cta_line a:hover {
    color: #fff;
    background-color: #5DBAAC;
  }
}

.lgbtq_cta_line_wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 23.125rem;
  text-align: left;
  padding: 0 0 0 4.0625rem;
}

.lgbtq_cta_line_wrapper::before {
  position: absolute;
  content: "";
  width: 3.0625rem;
  height: 2.875rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_line_green_mint.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .lgbtq_cta_line_wrapper::before {
    width: 2.6428571429rem;
    height: 2.5rem;
  }
}

@media (min-width: 768px) {
  .lgbtq_cta_line a:hover .lgbtq_cta_line_wrapper::before {
    background: url(../images/common/icon_line_white.png) no-repeat center center/contain;
  }
}

.lgbtq_cta_line_wrapper span {
  display: inline-block;
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #5DBAAC;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
}
@media (max-width: 768px) {
  .lgbtq_cta_line_wrapper span {
    font-size: 1.4285714286rem;
    padding: 0 0.2857142857rem;
  }
}

.lgbtq_cta_mail {
  width: 100%;
  max-width: 31.25rem;
}
@media (max-width: 768px) {
  .lgbtq_cta_mail {
    max-width: 24rem;
    margin-top: 1.0714285714rem;
  }
}

.lgbtq_cta_mail a {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  color: #FF7896;
  background-color: #fff;
  width: 100%;
  padding: 2rem 0.5rem 2.125rem;
  -webkit-box-shadow: 0 0 0.625rem rgba(222, 118, 21, 0.7);
          box-shadow: 0 0 0.625rem rgba(222, 118, 21, 0.7);
  text-align: center;
  border-radius: 1.25rem;
}
@media (max-width: 768px) {
  .lgbtq_cta_mail a {
    font-size: 1.7142857143rem;
    padding: 1.2857142857rem 1.1428571429rem;
  }
}

@media (min-width: 768px) {
  .lgbtq_cta_mail a:hover {
    color: #fff;
    background-color: #FF7896;
  }
}

.lgbtq_cta_mail a span {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 21.25rem;
  padding: 0 0 0 4.4375rem;
}

.lgbtq_cta_mail a span::before {
  position: absolute;
  content: "";
  width: 2.8125rem;
  height: 2rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_mail_pink.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .lgbtq_cta_mail a span::before {
    width: 2.4285714286rem;
    height: 1.6428571429rem;
  }
}

@media (min-width: 768px) {
  .lgbtq_cta_mail a:hover span::before {
    background: url(../images/common/icon_mail_white.png) no-repeat center center/contain;
  }
}

/* sub_mv
------------------------------ */
.sub_mv {
  position: relative;
  min-height: 27.3125rem;
}
@media (max-width: 768px) {
  .sub_mv {
    min-height: 21.4285714286rem;
  }
}

.sub_mv::after {
  position: absolute;
  content: "";
  top: 7.9375rem;
  right: 0;
  bottom: -6.25rem;
  left: 0;
  background: linear-gradient(135deg, #FFE7EC 0, #FEECD1 100%);
  z-index: -1;
}
@media (max-width: 768px) {
  .sub_mv::after {
    top: 0;
    bottom: -3.5714285714rem;
  }
}

.sub_mv_inner {
  min-height: inherit;
}

.sub_mv_wrapper {
  min-height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .sub_mv_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.sub_mv_title_wrapper {
  width: calc(50% - 6.875rem);
  min-height: inherit;
  padding-left: 1.5625rem;
}
@media (max-width: 768px) {
  .sub_mv_title_wrapper {
    width: 100%;
    padding: 1.1428571429rem 1.1428571429rem;
    min-height: auto;
  }
}

.sub_mv_title {
  position: relative;
  min-height: inherit;
  display: grid;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  padding: 6.75rem 1.5625rem 6.75rem 0;
  width: 100%;
  max-width: 32.1875rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .sub_mv_title {
    max-width: 45.1428571429rem;
    padding: 0;
    min-height: auto;
  }
}

.sub_mv_title::before {
  position: absolute;
  content: "";
  width: 8.6875rem;
  height: 8.0625rem;
  right: 5.6875rem;
  top: 6.5rem;
  background: url(../images/common/sub_mv_title_before.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .sub_mv_title::before {
    display: none;
  }
}

.sub_mv_title_en {
  font-size: 1.875rem;
  font-family: "Parisienne", cursive;
  text-transform: capitalize;
  color: #FF7896;
}
@media (max-width: 768px) {
  .sub_mv_title_en {
    font-size: 1.4285714286rem;
  }
}

.sub_mv_title_ja {
  font-size: 2.25rem;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  color: #FF7896;
}
@media (max-width: 768px) {
  .sub_mv_title_ja {
    font-size: 1.7142857143rem;
  }
}

.sub_mv_img {
  width: calc(50% + 6.875rem);
}
@media (max-width: 768px) {
  .sub_mv_img {
    width: 100%;
  }
}

.sub_mv_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2.5rem 0 0 2.5rem;
}
@media (max-width: 768px) {
  .sub_mv_img img {
    max-height: 14.2857142857rem;
    border-radius: 0;
  }
}

/* breadcrumb
------------------------------ */
.breadcrumb {
  font-size: 0.875rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  padding: 2.1875rem 0 2.75rem;
}
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 0.9285714286rem;
    padding: 1.1428571429rem 0;
  }
}

.breadcrumb_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem 1.1875rem;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .breadcrumb_inner {
    gap: 0.1428571429rem 0.5714285714rem;
  }
}

.breadcrumb_arrow {
  display: inline-block;
  width: 0.3125rem;
  height: 0.875rem;
  background: url(../images/common/icon_slash_pink.png) no-repeat center center/contain;
}

/* lgbtq_contact_flow
------------------------------ */
.lgbtq_contact_flow {
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_flow {
    margin-top: 4rem;
  }
}

.lgbtq_contact_flow_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5625rem;
  margin-top: 5rem;
  counter-reset: cnt;
}
@media (max-width: 768px) {
  .lgbtq_contact_flow_items {
    grid-template-columns: 1fr;
    gap: 2.8571428571rem;
    margin-top: 2.8571428571rem;
  }
}

.lgbtq_contact_flow_item {
  position: relative;
  padding: 0 1.0625rem 2.1875rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_flow_item {
    padding: 0 1.1428571429rem 1.7142857143rem;
  }
}

.lgbtq_contact_flow_item::before {
  position: absolute;
  content: "";
  top: 3.8125rem;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #FFF3F6;
  z-index: -1;
  border-radius: 0.625rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_flow_item::before {
    top: 1.7142857143rem;
  }
}

.lgbtq_contact_flow_item:not(:last-of-type)::after {
  position: absolute;
  content: "";
  width: 6.25rem;
  height: 5.0625rem;
  top: calc(50% + 1.875rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -5.3125rem;
  background: url(../images/common/icon_arrow_dotted_right_pink_dark.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lgbtq_contact_flow_item:not(:last-of-type)::after {
    width: 2.8571428571rem;
    height: 4.2857142857rem;
    top: auto;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -2.8571428571rem;
    background: url(../images/common/icon_arrow_dotted_bottom_pink_dark.png) no-repeat center center/contain;
  }
}

.lgbtq_contact_flow_item_num {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  color: #FC6E7C;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .lgbtq_contact_flow_item_num {
    font-size: 1.1428571429rem;
  }
}

.lgbtq_contact_flow_item_num::after {
  counter-increment: cnt;
  content: counter(cnt, decimal);
  font-size: 4.375rem;
  font-weight: 500;
  line-height: 0.8;
}
@media (max-width: 768px) {
  .lgbtq_contact_flow_item_num::after {
    font-size: 2.5714285714rem;
  }
}

.lgbtq_contact_flow_item_illust {
  width: 100%;
  max-width: 9.375rem;
  margin: 3.25rem auto 0;
}
@media (max-width: 768px) {
  .lgbtq_contact_flow_item_illust {
    max-width: 5.7142857143rem;
    margin: 1.1428571429rem auto 0;
  }
}

.lgbtq_contact_flow_item_text {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 186%;
  text-align: center;
  margin-top: 2.4375rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_flow_item_text {
    font-size: 1.1428571429rem;
    line-height: 180%;
    margin-top: 1.1428571429rem;
  }
}

.lgbtq_contact_flow_item_text span {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_flow_item_text span {
    font-size: 0.8571428571rem;
  }
}

/* lgbtq_contact_line
------------------------------ */
.lgbtq_contact_line {
  margin-top: 7.625rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_line {
    margin-top: 4rem;
  }
}

.lgbtq_contact_line_text {
  line-height: 219%;
  font-weight: 700;
  text-align: center;
  margin-top: 2.9375rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_line_text {
    line-height: 180%;
    text-align: left;
    margin-top: 1.1428571429rem;
  }
}

.lgbtq_contact_line_line {
  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;
  gap: 1.25rem;
  width: 100%;
  max-width: 45rem;
  background-color: #FFF3F6;
  margin: 3.0625rem auto 0;
  padding: 2.5rem 3.75rem 2.5rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_line_line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.1428571429rem;
    padding: 1.7142857143rem 1.1428571429rem;
  }
}

.lgbtq_contact_line_line_left {
  width: 100%;
  max-width: 16.6875rem;
  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: 1.3125rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_line_line_left {
    gap: 1.1428571429rem;
    max-width: 14.2857142857rem;
  }
}

.lgbtq_contact_line_line_title {
  width: 100%;
  max-width: 7.875rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_line_line_title {
    max-width: 7.1428571429rem;
  }
}

.lgbtq_contact_line_line_qr {
  width: 100%;
  max-width: 7.5rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_line_line_qr {
    max-width: 7.1428571429rem;
  }
}

.lgbtq_contact_line_line_qr img {
  aspect-ratio: 120/120;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_line_line_qr img {
    border-radius: 0.7142857143rem;
  }
}

.lgbtq_contact_line_line_right {
  width: 100%;
  max-width: 16.875rem;
}

.lgbtq_contact_line_line_id {
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.lgbtq_contact_line_line_btn {
  margin-top: 1.0625rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_line_line_btn {
    margin-top: 1.1428571429rem;
  }
}

/* lgbtq_contact_mail
------------------------------ */
.lgbtq_contact_mail {
  margin-top: 7.6875rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_mail {
    margin-top: 4rem;
  }
}

.lgbtq_contact_mail_text {
  font-weight: 700;
  line-height: 219%;
  text-align: center;
  margin-top: 2.875rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_mail_text {
    line-height: 180%;
    text-align: left;
    margin-top: 1.1428571429rem;
  }
}

.lgbtq_contact_mail_form {
  margin-top: 6.25rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_mail_form {
    margin-top: 2.8571428571rem;
  }
}

/* lgbtq_contact_thanks
------------------------------ */
.lgbtq_contact_thanks_main {
  margin-top: 8.125rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_thanks_main {
    margin-top: 4rem;
  }
}

.lgbtq_contact_thanks_main_text {
  text-align: center;
  margin-top: 1.875rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_thanks_main_text {
    margin-top: 1.1428571429rem;
  }
}

.lgbtq_contact_thanks_main_btn {
  text-align: center;
  margin-top: 3.125rem;
}
@media (max-width: 768px) {
  .lgbtq_contact_thanks_main_btn {
    margin-top: 1.1428571429rem;
  }
}

/* form
------------------------------ */
.visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.form_row {
  display: grid;
  grid-template-columns: 23.125rem 1fr;
}
@media (max-width: 768px) {
  .form_row {
    grid-template-columns: 1fr;
  }
}

.form_title {
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  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;
  gap: 0.5rem;
  border-top: 1px solid #5DBAAC;
  border-right: 1px solid #5DBAAC;
  padding: 1.3125rem 1.875rem 1.3125rem;
}
@media (max-width: 768px) {
  .form_title {
    border-right: none;
    padding: 1.4285714286rem 0.5714285714rem;
  }
}

.form_title:last-of-type {
  border-bottom: 1px solid #5DBAAC;
}
@media (max-width: 768px) {
  .form_title:last-of-type {
    border-bottom: none;
  }
}

.form_title.form_title_start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form_title label {
  width: 100%;
  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;
}

.form_title span {
  font-size: 0.875rem;
  color: #fff;
  background-color: #5DBAAC;
  display: inline-block;
  width: 100%;
  max-width: 4.125rem;
  text-align: center;
  padding: 0.125rem 0.5rem;
  border-radius: 3.125rem;
}

.form_input {
  font-family: "Shippori Mincho", serif;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #5DBAAC;
  width: 100%;
  padding: 1.0625rem 1.25rem;
}
@media (max-width: 768px) {
  .form_input {
    padding: 0 0.5714285714rem 1.1428571429rem;
    border-top: none;
  }
}

.form_input:last-of-type {
  border-bottom: 1px solid #5DBAAC;
}

.form_input input {
  width: 100%;
  padding: 0.46875rem 1.25rem;
  background-color: rgba(93, 186, 172, 0.15);
}

.form_input textarea {
  width: 100%;
  height: 12.125rem;
  padding: 0.625rem 1.25rem;
  background-color: rgba(93, 186, 172, 0.15);
}

.form_input_postcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.form_input_postcode input {
  max-width: 11.25rem;
}

.form_input_city {
  margin-top: 1.1875rem;
}

.form_input_pref {
  position: relative;
  width: 100%;
  max-width: 18.5rem;
}

.form_input_pref::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  width: 2.9375rem;
  background: #5DBAAC url(../images/common/icon_triangle_arrow_bottom_white.png) no-repeat center center/1.5rem 0.875rem;
}

.form_input_pref select {
  width: 100%;
  max-width: 18.5rem;
  padding: 0.625rem 1.25rem;
  background-color: rgba(93, 186, 172, 0.15);
}
@media (max-width: 768px) {
  .form_input_pref select {
    padding: 0.7142857143rem 0.5714285714rem;
  }
}

.form_input_who_age {
  margin-top: 1.125rem;
}

.form_input_who_age_text {
  font-weight: 700;
  color: #5DBAAC;
}

.form_input_who_age .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.9375rem;
}

.form_radio {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.25rem 1.25rem;
}
@media (max-width: 768px) {
  .form_radio {
    padding: 0 0.4285714286rem 1.4285714286rem;
  }
}

.form_radio .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.875rem 2.5rem;
}
@media (max-width: 768px) {
  .form_radio .wpcf7-form-control {
    gap: 0.5714285714rem 1.1428571429rem;
  }
}

.form_radio .wpcf7-list-item {
  margin: 0;
}

.form_radio .wpcf7-list-item.has-free-text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form_radio label {
  display: block;
  font-weight: 700;
}

.form_radio input[type=radio] {
  display: none;
}

.form_radio input + span {
  position: relative;
  display: block;
  line-height: 1;
  cursor: pointer;
  padding: 0.625rem 0 0.625rem 3rem;
}
@media (max-width: 768px) {
  .form_radio input + span {
    font-size: 1.1428571429rem;
    padding: 0.2857142857rem 0 0.2857142857rem 2.4285714286rem;
  }
}

.form_radio input + span::before {
  position: absolute;
  content: "";
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(93, 186, 172, 0.15);
  border: none;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .form_radio input + span::before {
    width: 1.2857142857rem;
    height: 1.2857142857rem;
  }
}

.form_radio input + span::after {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  position: absolute;
  top: 50%;
  left: 0.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: #5DBAAC;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .form_radio input + span::after {
    width: 0.6428571429rem;
    height: 0.6428571429rem;
    left: 0.2857142857rem;
  }
}

.form_radio input:checked + span::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .form_check .wpcf7-form-control.wpcf7-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form_check input {
  display: none;
}

.form_check input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 1.5625rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1;
}

.form_check input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #303030;
  display: block;
  width: 2rem;
  height: 2rem;
}

.form_check input + span::after {
  content: "";
  margin-top: -0.125rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 0.9375rem;
  height: 0.5rem;
  border-bottom: 0.1875rem solid #5DBAAC;
  border-left: 0.1875rem solid #5DBAAC;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.form_check input:checked ~ span::after {
  opacity: 1;
}

.form_policy {
  overflow-y: scroll;
  max-height: 14.6875rem;
  padding: 2.5rem 2.6875rem;
  margin-top: 2.375rem;
  background-color: rgba(93, 186, 172, 0.15);
}
@media (max-width: 768px) {
  .form_policy {
    padding: 1.7142857143rem 1.1428571429rem;
    margin-top: 1.7142857143rem;
  }
}

.form_policy_title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  color: #5DBAAC;
}
@media (max-width: 768px) {
  .form_policy_title {
    font-size: 1.1428571429rem;
  }
}

.form_policy_text {
  font-family: "Shippori Mincho", serif;
  line-height: 180%;
  margin-top: 1.4375rem;
}
@media (max-width: 768px) {
  .form_policy_text {
    margin-top: 0.5714285714rem;
  }
}

.form_policy_text:focus-visible {
  outline: 2px solid #5DBAAC;
  outline-offset: 2px;
}

.form_confirmation {
  font-family: "Shippori Mincho", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3.375rem auto 0;
}
@media (max-width: 768px) {
  .form_confirmation {
    margin-top: 1.7142857143rem;
  }
}

.form_confirmation .wpcf7-list-item {
  margin: 0;
}

.form_confirmation input {
  display: none;
}

.form_confirmation input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0.125rem 0 0.125rem 2.3125rem;
  position: relative;
  line-height: 140%;
}
@media (max-width: 768px) {
  .form_confirmation input + span {
    padding: 0 0 0 2.2857142857rem;
  }
}

.form_confirmation input + span::before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.625rem;
  height: 1.625rem;
  background-color: rgba(93, 186, 172, 0.15);
}
@media (max-width: 768px) {
  .form_confirmation input + span::before {
    width: 1.1428571429rem;
    height: 1.1428571429rem;
  }
}

.form_confirmation input + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.375rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 1.25rem;
  height: 0.625rem;
  border-bottom: 0.1875rem solid #5DBAAC;
  border-left: 0.1875rem solid #5DBAAC;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 768px) {
  .form_confirmation input + span::after {
    width: 0.8571428571rem;
    height: 0.3571428571rem;
    left: 0.1428571429rem;
    border-bottom-width: 0.1428571429rem;
    border-left-width: 0.1428571429rem;
  }
}

.form_confirmation input:checked ~ span::after {
  opacity: 1;
}

.form_btn_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .form_btn_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1.7142857143rem;
  }
}

.form_btn {
  font-family: "Shippori Mincho", serif;
  position: relative;
  width: 100%;
  max-width: 16.875rem;
}
@media (max-width: 768px) {
  .form_btn {
    max-width: 18.5714285714rem;
  }
}

.form_btn::after {
  position: absolute;
  content: "";
  width: 1.75rem;
  height: 0.375rem;
  right: 2.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.png) no-repeat center center/contain;
}

.form_btn input,
.form_btn button {
  display: inline-block;
  font-weight: 700;
  width: 100%;
  max-width: 16.875rem;
  color: #fff;
  background-color: #FF7896;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 1.125rem 2.25rem;
  border-radius: 3.125rem;
}
@media (max-width: 768px) {
  .form_btn input,
  .form_btn button {
    max-width: 18.5714285714rem;
    padding: 1rem 1.7142857143rem;
  }
}

@media (min-width: 768px) {
  .form_btn input:hover,
  .form_btn button:hover {
    background-color: #5DBAAC;
  }
}

.form_confirm_btn[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
}

.form_btn .wpcf7-spinner {
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0;
}

/* ---------------------------------------------------------
 * 確認モーダル
 * --------------------------------------------------------- */
.form_confirm_area {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.form_confirm_area.is_open {
  display: block;
}

.form_confirm_area[hidden] {
  display: none !important;
}

body.is_confirm_open {
  overflow: hidden;
}

.form_confirm_overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(48, 48, 48, 0.5);
}

.form_confirm_modal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(92%, 45rem);
  max-height: 86vh;
  max-height: 86dvh;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  padding: 2.5rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  .form_confirm_modal {
    padding: 1.7142857143rem 1.1428571429rem;
  }
}

.form_confirm_modal:focus {
  outline: none;
}

.form_confirm_lead {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: #5DBAAC;
}
@media (max-width: 768px) {
  .form_confirm_lead {
    font-size: 1.2857142857rem;
  }
}

.form_confirm_sub {
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
}

.form_confirm_area .form_row {
  grid-template-columns: auto 1fr;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .form_confirm_area .form_row {
    grid-template-columns: 1fr;
    margin-top: 1.1428571429rem;
  }
}

.form_confirm_area [data-confirm] {
  white-space: pre-wrap;
}

.form_main.is_sending [type=submit],
.form_main.is_sending .form_back_btn {
  opacity: 0.5;
  pointer-events: none;
}

/* footer
------------------------------ */
.footer {
  margin-top: 6.375rem;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 4rem;
  }
}

.footer_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  max-width: 76.5625rem;
}
@media (max-width: 768px) {
  .footer_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.1428571429rem;
  }
}

.footer_info {
  width: 100%;
  max-width: 25.4375rem;
}
@media (max-width: 768px) {
  .footer_info {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.footer_logo {
  width: 100%;
  max-width: 18.4375rem;
}
@media (max-width: 768px) {
  .footer_logo {
    max-width: 20rem;
    margin-inline: auto;
  }
}

.footer_title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 2.4375rem;
}
@media (max-width: 768px) {
  .footer_title {
    font-size: 1rem;
    margin-top: 1.1428571429rem;
  }
}

.footer_address {
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .footer_address {
    font-size: 1rem;
    margin-top: 0.2857142857rem;
  }
}

.footer_address span {
  font-weight: 700;
}

.footer_time {
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .footer_time {
    font-size: 1rem;
    margin-top: 0.2857142857rem;
  }
}

.footer_illust {
  position: absolute;
  width: 100%;
  max-width: 16.8125rem;
  top: 0.8125rem;
  left: 36%;
  z-index: -1;
}
@media (max-width: 768px) {
  .footer_illust {
    display: none;
  }
}

.footer_nav {
  width: 100%;
  max-width: 33.375rem;
}
@media (max-width: 768px) {
  .footer_nav {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.footer_lists {
  display: grid;
  grid-template-columns: repeat(3, auto);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.9375rem 1.125rem;
  max-width: 30.3125rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .footer_lists {
    display: none;
  }
}

.footer_list a {
  display: inline-block;
  font-size: 0.9375rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
}

@media (min-width: 768px) {
  .footer_list a:hover {
    color: #5DBAAC;
  }
}

.footer_bnr {
  width: 100%;
  max-width: 33.375rem;
  margin-top: 2.875rem;
}
@media (max-width: 768px) {
  .footer_bnr {
    max-width: 25.7142857143rem;
    margin-top: 0;
  }
}

.footer_bnr a {
  display: block;
  overflow: hidden;
  border-radius: 0.625rem;
}

.footer_bnr img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0.625rem;
}

@media (min-width: 768px) {
  .footer_bnr a:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.footer_copyright {
  margin-top: 6.25rem;
  padding: 2.125rem 1rem;
  text-align: center;
  background-color: #FFE0E8;
}
@media (max-width: 768px) {
  .footer_copyright {
    margin-top: 2.8571428571rem;
    padding: 1.7142857143rem 1.1428571429rem 8.5714285714rem;
  }
}

.footer_copyright small {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  color: #FC6E7C;
}

/* page_top
------------------------------ */
.page_top {
  position: fixed;
  right: 1.875rem;
  bottom: 1.875rem;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #5DBAAC;
  border: 1px solid #fff;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .page_top {
    background-color: #fff;
    border-color: #5DBAAC;
    right: 1.1428571429rem;
    bottom: 5.3571428571rem;
  }
}

.page_top.is_visible {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .page_top:hover {
    color: #5DBAAC;
    background-color: #fff;
  }
}

.page_top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(-50%) rotate(-45deg);
          transform: translate(-50%) rotate(-45deg);
}
@media (max-width: 768px) {
  .page_top::before {
    border-color: #5DBAAC;
  }
}

@media (min-width: 768px) {
  .page_top:hover::before {
    border-color: #5DBAAC;
  }
}

/* foot_menu
------------------------------ */
.foot_menu {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 10;
  -webkit-box-shadow: 0px -0.0625rem 1.25rem rgba(48, 48, 48, 0.5);
          box-shadow: 0px -0.0625rem 1.25rem rgba(48, 48, 48, 0.5);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .foot_menu {
    -webkit-box-shadow: 0px -0.0714285714rem 1.4285714286rem rgba(48, 48, 48, 0.5);
            box-shadow: 0px -0.0714285714rem 1.4285714286rem rgba(48, 48, 48, 0.5);
  }
}

.foot_menu.is_visible {
  opacity: 1;
  visibility: visible;
}

.foot_menu_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.foot_menu_line {
  width: 50%;
}

.foot_menu_line a {
  display: block;
  position: relative;
  font-weight: 700;
  line-height: 120%;
  width: 100%;
  color: #fff;
  background-color: #5DBAAC;
  padding: 2.2857142857rem 0.5714285714rem 1.5714285714rem;
  text-align: center;
}

.foot_menu_line a::before {
  position: absolute;
  content: "";
  top: 0.4285714286rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  background: url(../images/common/icon_line_white.png) no-repeat center center/contain;
}

.foot_menu_mail {
  width: 50%;
}

.foot_menu_mail a {
  display: block;
  position: relative;
  font-weight: 700;
  line-height: 120%;
  width: 100%;
  color: #fff;
  background-color: #FF7896;
  padding: 2.2857142857rem 0.5714285714rem 1.5714285714rem;
  text-align: center;
}

.foot_menu_mail a::before {
  position: absolute;
  content: "";
  top: 0.7142857143rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.4285714286rem;
  height: 1rem;
  background: url(../images/common/icon_mail_white.png) no-repeat center center/contain;
}