/* reset.scss */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* You can add more global styles if necessary */
* {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-weight: normal;
  color: #292929;
}

.u_raleway {
  font-family: "Raleway", sans-serif;
}

body {
  background: #F5F5F5;
}
@media (min-width: 769px) {
  body {
    min-width: 1280px;
  }
}

@media (min-width: 769px) {
  .u_sp {
    display: none;
  }
}

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

.mainsection {
  background-color: transparent;
  padding: 0 15px 70px;
}
@media (min-width: 769px) {
  .mainsection {
    width: 850px;
    margin: 0 auto;
    padding: 0 0 100px;
  }
}
.mainsection_ttl {
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .mainsection_ttl {
    margin-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .mainsection_ttl_adjust {
    margin-bottom: 45px;
  }
}
@media (min-width: 769px) {
  .mainsection_ttl_adjust2 {
    margin-bottom: 40px;
  }
}
.mainsection_ttl_en {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #A99A1D;
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .mainsection_ttl_en {
    letter-spacing: 2px;
    font-size: 35px;
    margin-bottom: 15px;
  }
}
.mainsection_ttl_ja {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
}
@media (min-width: 769px) {
  .mainsection_ttl_ja {
    font-size: 50px;
    letter-spacing: 5px;
  }
}
.mainsection__subpage {
  padding-top: 65px;
}
@media (min-width: 769px) {
  .mainsection__subpage {
    padding-top: 110px;
  }
}

.grobalbg {
  position: fixed;
  width: 177vw;
  max-width: 768px;
  aspect-ratio: 666/609;
  top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("/src/img/img_grobalbg_sp.png") no-repeat center center/contain;
  z-index: -2;
}
@media (min-width: 769px) {
  .grobalbg {
    width: 100%;
    max-width: none;
    top: 0;
    aspect-ratio: 8/5;
    background: url("/src/img/img_grobalbg_pc.png") no-repeat center center/contain;
  }
}

.scrollspy {
  display: none;
}
@media (min-width: 960px) {
  .scrollspy {
    display: block;
    position: fixed;
    bottom: 10%;
    left: 40px;
    z-index: 100;
  }
}
.scrollspy_nav li {
  margin-bottom: 15px;
}
.scrollspy_nav li:last-of-type {
  margin: 0;
}
.scrollspy_nav_item {
  position: relative;
  display: block;
  padding-left: 15px;
  width: 200px;
  height: 18px;
  color: #000;
  letter-spacing: 1px;
}
.scrollspy_nav_item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: -40px;
  width: 40px;
  height: 1px;
  background-color: #A99A1D;
  opacity: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.scrollspy_nav_item::after {
  content: "";
  position: absolute;
  display: block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  background-color: #A99A1D;
}
.scrollspy_nav_item span {
  position: relative;
  display: block;
}
.scrollspy_nav_item span::before, .scrollspy_nav_item span::after {
  content: attr(data-text-en);
  font-weight: bold;
  position: absolute;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.scrollspy_nav_item span::before {
  visibility: visible;
  opacity: 1;
}
.scrollspy_nav_item span::after {
  content: attr(data-text-jp);
  opacity: 0;
  visibility: hidden;
}
.scrollspy_nav_item span:hover::before {
  opacity: 0;
  visibility: hidden;
}
.scrollspy_nav_item span:hover::after {
  visibility: visible;
  opacity: 1;
}
.scrollspy_nav_item.is_current::before {
  opacity: 1;
}

.l_header {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(245, 245, 245)), color-stop(95%, rgba(245, 245, 245, 0.8)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgb(245, 245, 245) 0%, rgba(245, 245, 245, 0.8) 95%, rgba(255, 255, 255, 0) 100%);
}

.header {
  background-color: transparent;
}
.header_logo {
  display: block;
  width: 207px;
  aspect-ratio: 207/72;
  padding: 10px 0 0 15px;
}
@media (min-width: 769px) {
  .header_logo {
    width: 311px;
    padding: 28px 0 0 40px;
  }
}
.header_hmbrg {
  position: fixed;
  height: 62px;
  width: 62px;
  border-radius: 50%;
  top: 15px;
  right: 15px;
  background-color: #292929;
  z-index: 106;
}
.header_hmbrg_line {
  position: absolute;
  width: 27px;
  height: 1px;
  background-color: #FFF;
  top: 21px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.header_hmbrg_line:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header_hmbrg_line:nth-child(3) {
  top: auto;
  bottom: 21px;
}
.header_hmbrg.is_show .header_hmbrg_line:nth-child(1) {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  bottom: 0;
  top: 0;
  margin: auto;
}
.header_hmbrg.is_show .header_hmbrg_line:nth-child(2) {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}
.header_hmbrg.is_show .header_hmbrg_line:nth-child(3) {
  display: none;
}

.spnav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: scroll;
  background-color: #292929;
  border-radius: 0 0 20px 20px;
  z-index: 105;
}
.spnav_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
}
.spnav_head_logo {
  display: block;
  height: 43px;
  width: 143px;
}
.spnav_head_contact {
  position: absolute;
  top: 0;
  right: 20px;
}
.spnav_links {
  color: #FFF;
  margin-top: 110px;
  padding: 0 36px;
}
.spnav_links li {
  position: relative;
  border-bottom: 1px solid #FFF;
}
.spnav_links li::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.spnav_links_item {
  display: block;
  padding: 16px 0 22px;
}
.spnav_links_item_en {
  display: block;
  color: #A99A1D;
  font-weight: bold;
  letter-spacing: 1px;
}
.spnav_links_item_ja {
  display: block;
  font-size: 20px;
  letter-spacing: 1px;
  margin-top: 7px;
  color: #FFF;
}
.spnav_bottom {
  width: 300px;
  margin: 65px auto 0;
  text-align: center;
}
.spnav_bottom a {
  color: #FFF;
  text-decoration: underline;
  letter-spacing: 1px;
}
.spnav_bottom_links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0 110px;
}
.spnav_bottom_links::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 6%;
  width: 1px;
  height: 100%;
  background-color: #FFF;
  margin: 0 auto;
}

.footer {
  position: relative;
  background: transparent;
  width: 100%;
  padding-top: 70px;
}
.footer_slidetop {
  position: absolute;
  width: 170px;
  height: 85px;
  border-top-left-radius: 85px;
  border-top-right-radius: 85px;
  background-color: #292929;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .footer_slidetop {
    width: 180px;
    height: 90px;
    border-top-right-radius: 90px;
    border-top-left-radius: 90px;
  }
}
.footer_slidetop_inner {
  position: absolute;
  width: 31%;
  color: #A99A1D;
  top: 35px;
  right: 0;
  left: 2px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .footer_slidetop_inner {
    width: 32%;
  }
}
.footer_slidetop::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.footer_body {
  position: relative;
  padding: 37px 0 26px;
  background-color: #292929;
  z-index: 101;
}
@media (min-width: 769px) {
  .footer_body {
    padding: 60px 0 39px;
  }
}
.footer_body_list {
  color: #FFF;
  padding: 0 36px;
}
@media (min-width: 769px) {
  .footer_body_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 850px;
    padding: 0;
    margin: 0 auto;
  }
}
.footer_body_list li {
  position: relative;
  border-bottom: 1px solid #FFF;
}
@media (min-width: 769px) {
  .footer_body_list li {
    width: 268px;
    height: 55px;
    border-bottom: none;
  }
}
.footer_body_list li::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (min-width: 769px) {
  .footer_body_list li::after {
    width: 7px;
    height: 7px;
    right: 10px;
    border-top: 1px solid #292929;
    border-right: 1px solid #292929;
  }
}
.footer_body_list li a {
  display: block;
  padding: 19px 0;
  color: #FFF;
}
@media (min-width: 769px) {
  .footer_body_list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    background-color: #DEDEDE;
    font-weight: 500;
    color: #292929;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .footer_body_list li a:hover {
    background-color: #FFF;
  }
}
.footer_body_bottom {
  width: 300px;
  margin: 65px auto 0;
  text-align: center;
}
@media (min-width: 769px) {
  .footer_body_bottom {
    width: 620px;
    margin: 65px auto;
  }
}
.footer_body_bottom a {
  color: #FFF;
  text-decoration: underline;
  letter-spacing: 1px;
}
@media (min-width: 769px) {
  .footer_body_bottom a {
    color: #DEDEDE;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .footer_body_bottom a:hover {
    color: #FFF;
  }
}
.footer_body_bottom_links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.footer_body_bottom_links::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 6%;
  width: 1px;
  height: 100%;
  background-color: #FFF;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .footer_body_bottom_links::after {
    display: none;
  }
}
@media (min-width: 769px) {
  .footer_body_bottom_links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
  }
  .footer_body_bottom_links_hasline {
    position: relative;
  }
  .footer_body_bottom_links_hasline::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -40px;
    width: 1px;
    height: 100%;
    background-color: #FFF;
  }
}
.footer_logo {
  display: block;
  width: 43%;
  margin: 40px auto 30px;
}
@media (max-width: 768px) {
  .footer_logo.u_pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .footer_logo {
    width: 257px;
    margin: 0 auto 65px;
  }
  .footer_logo.u_sp {
    display: none;
  }
}
.footer_copyright {
  font-size: 13px;
  color: #FFF;
  text-align: center;
  letter-spacing: 1px;
}

.privacy_description {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 65px;
}
@media (min-width: 769px) {
  .privacy_description {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 95px;
  }
}
.privacy_subsection {
  margin-bottom: 35px;
}
.privacy_subsection_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  line-height: 1.8;
}
.privacy_subsection_ttl_num, .privacy_subsection_ttl_text {
  font-weight: bold;
}
.privacy_subsection_ttl_num {
  margin-right: 5px;
}
@media (min-width: 769px) {
  .privacy_subsection_ttl {
    font-size: 22px;
  }
}
.privacy_subsection_text {
  line-height: 1.8;
  letter-spacing: 1px;
}
.privacy_subsection:last-of-type {
  margin-bottom: 0;
}