/* 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;
}

.l_hero {
  margin-top: -20%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(245, 245, 245)), color-stop(70%, rgb(245, 245, 245)), color-stop(90%, rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgb(245, 245, 245) 0%, rgb(245, 245, 245) 70%, rgba(255, 255, 255, 0.4) 90%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}
@media (min-width: 769px) {
  .l_hero {
    margin-top: -110px;
    padding-bottom: 5px;
    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%);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 20%;
}
@media (min-width: 769px) {
  .hero {
    width: 1200px;
    height: 761px;
    padding-bottom: 120px;
  }
}
.hero_copy {
  position: absolute;
  width: 68.2%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  top: -6%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
@media (min-width: 769px) {
  .hero_copy {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 100%;
    margin: 4.2% 0 0 3%;
    letter-spacing: 3px;
  }
  .hero_copy_text {
    position: relative;
    top: 0;
    bottom: 0;
    margin: auto 0;
    line-height: 1.5;
    font-size: 46px;
    font-weight: bold;
  }
}
.hero_logo {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 186vw;
  aspect-ratio: 1/1;
}
@media (min-width: 769px) {
  .hero_logo {
    position: absolute;
    left: auto;
    top: 0;
    right: 0;
    -webkit-transform: none;
            transform: none;
    width: 710px;
    height: 635px;
  }
}
@media (min-width: 769px) {
  .hero_logo::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 0;
    width: 210%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 245, 245, 0.8) 20%, rgba(245, 245, 245, 0.2) 50%, rgba(245, 245, 245, 0.2) 70%, rgba(245, 245, 245, 0.05) 100%);
    opacity: 1;
    z-index: 1;
  }
}
.hero_logo object {
  opacity: 0.4;
}
@media (min-width: 769px) {
  .hero_logo object {
    opacity: 1;
  }
}
.hero_scroll {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  margin: 0 auto;
  width: 12.8%;
  aspect-ratio: 24/39;
  background: url("/src/img/_icon_scroll_sp.png") no-repeat center center/contain;
}
@media (min-width: 769px) {
  .hero_scroll {
    width: 36px;
    height: 54px;
    bottom: 0;
    z-index: 1;
    background: url("/src/img/_icon_scroll.svg") no-repeat center center/contain;
  }
  .hero_scroll::after {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 1px solid #292929;
    top: 8px;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-animation: scroll-dot 2.5s linear infinite;
            animation: scroll-dot 2.5s linear infinite;
  }
}

@-webkit-keyframes scroll-dot {
  0%, 25% {
    top: 8px;
    opacity: 1;
  }
  60%, 100% {
    top: 35px;
    opacity: 0;
  }
}

@keyframes scroll-dot {
  0%, 25% {
    top: 8px;
    opacity: 1;
  }
  60%, 100% {
    top: 35px;
    opacity: 0;
  }
}
.about {
  margin-top: 60px;
}
@media (min-width: 769px) {
  .about {
    margin-top: 90px;
  }
}
.about_description {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 38px;
}
@media (min-width: 769px) {
  .about_description {
    font-size: 20px;
    margin-bottom: 70px;
    letter-spacing: 1px;
  }
}
.about_detail {
  position: relative;
  padding-top: 48px;
}
@media (min-width: 769px) {
  .about_detail {
    padding-top: 60px;
  }
}
.about_detail p {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-align: center;
}
@media (min-width: 769px) {
  .about_detail p {
    font-size: 35px;
    margin-bottom: 50px;
  }
}
.about_detail_ellipsis {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 4px;
  height: 36px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about_detail_ellipsis {
    width: 7px;
    height: 39px;
  }
}
.about_detail_ellipsis span {
  position: absolute;
  width: 4px;
  height: 4px;
  top: 0;
  border-radius: 50%;
  background-color: #292929;
}
@media (min-width: 769px) {
  .about_detail_ellipsis span {
    width: 7px;
    height: 7px;
  }
}
.about_detail_ellipsis span:nth-child(2) {
  bottom: 0;
  margin: auto 0;
}
.about_detail_ellipsis span:nth-child(3) {
  top: auto;
  bottom: 0;
}
.about_detail_image {
  width: 100%;
  aspect-ratio: 345/299.5;
  background: url("/src/img/img_about01.png") no-repeat center center/contain;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .about_detail_image {
    margin-bottom: 40px;
  }
}
.about_detail_text {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .about_detail_text {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 50px;
  }
}
.about_detail_graph {
  width: 100%;
  aspect-ratio: 345/202;
  background: url("/src/img/img_about02.png") no-repeat center center/contain;
}
@media (min-width: 769px) {
  .about_detail_graph {
    aspect-ratio: 850/495;
    background: url("/src/img/img_about02_pc.png") no-repeat center center/contain;
    margin-bottom: 50px;
  }
}
.about_detail .about_detail_graphtext {
  font-size: 18px;
  text-align: left;
  font-weight: normal;
  line-height: 2;
  margin: 30px 0 0;
}
@media (min-width: 769px) {
  .about_detail .about_detail_graphtext {
    font-size: 20px;
    text-align: center;
    margin: 0;
    padding-bottom: 10px;
  }
}

.news_contents_list_item {
  padding: 15px;
  background-color: #FFF;
  border-radius: 15px;
  margin-bottom: 15px;
}
@media (min-width: 769px) {
  .news_contents_list_item {
    padding: 10px 30px;
    margin-bottom: 20px;
  }
}
.news_contents_list_item:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .newsitem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.newsitem_date {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  padding-bottom: 10px;
  line-height: 24px;
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .newsitem_date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 30px;
    font-size: 16px;
    width: 159px;
    padding-bottom: 0;
    margin-bottom: 0;
    letter-spacing: 1px;
  }
}
.newsitem_date::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  background-color: #707070;
}
@media (min-width: 769px) {
  .newsitem_date::after {
    height: 100%;
    width: 1px;
    right: 0;
  }
}
@media (min-width: 769px) {
  .newsitem_body {
    width: calc(100% - 190px);
    padding: 20px 0 20px 30px;
  }
}
.newsitem_body_text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 13px;
}
@media (min-width: 769px) {
  .newsitem_body_text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
  }
}
.newsitem_body_text_nolink {
  margin-bottom: 0;
}
.newsitem_body_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 769px) {
  .newsitem_body_links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.newsitem_body_links_item {
  position: relative;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 15px;
  color: #296EDE;
  padding-right: 15px;
}
@media (min-width: 769px) {
  .newsitem_body_links_item {
    font-size: 16px;
  }
  .newsitem_body_links_item:hover {
    opacity: 0.6;
  }
}
.newsitem_body_links_item__firstitem {
  margin-bottom: 12px;
}
@media (min-width: 769px) {
  .newsitem_body_links_item__firstitem {
    margin-bottom: 0;
  }
}
.newsitem_body_links_item::before, .newsitem_body_links_item::after {
  content: "";
  display: block;
  position: absolute;
}
.newsitem_body_links_item::before {
  bottom: -2px;
  height: 1px;
  width: 100%;
  background-color: #296EDE;
}
.newsitem_body_links_item::after {
  width: 10px;
  height: 10px;
  right: 0;
  top: 2px;
  bottom: 0;
  margin: auto 0;
  background: url("/src/img/_icon_outerlink.svg") no-repeat center center/contain;
}

.service_description {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 38px;
}
@media (min-width: 769px) {
  .service_description {
    font-size: 20px;
    margin-bottom: 58px;
    letter-spacing: 1px;
  }
}
.service_detail {
  position: relative;
}
.service_detail_copy {
  position: relative;
  padding-top: 38px;
}
@media (min-width: 769px) {
  .service_detail_copy {
    padding-top: 60px;
  }
}
.service_detail_copy p {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .service_detail_copy p {
    font-size: 35px;
    margin-bottom: 50px;
  }
}
.service_detail_copy_ellipsis {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 4px;
  height: 28px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .service_detail_copy_ellipsis {
    width: 7px;
    height: 39px;
  }
}
.service_detail_copy_ellipsis span {
  position: absolute;
  width: 4px;
  height: 4px;
  top: 0;
  border-radius: 50%;
  background-color: #292929;
}
@media (min-width: 769px) {
  .service_detail_copy_ellipsis span {
    width: 7px;
    height: 7px;
  }
}
.service_detail_copy_ellipsis span:nth-child(2) {
  bottom: 0;
  margin: auto 0;
}
.service_detail_copy_ellipsis span:nth-child(3) {
  top: auto;
  bottom: 0;
}
.service_detail_text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  letter-spacing: 0.8px;
}
@media (min-width: 769px) {
  .service_detail_text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .service_detail_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 21px;
       -moz-column-gap: 21px;
            column-gap: 21px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.service_detail_image {
  width: 100%;
  aspect-ratio: 345/592;
  background: url("/src/img/img_service_sp.png") no-repeat center center/contain;
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .service_detail_image {
    height: 642px;
    aspect-ratio: unset;
    background: url("/src/img/img_service_pc.png") no-repeat center center/contain;
  }
}

.serviceitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 769px) {
  .serviceitem {
    display: block;
    position: relative;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    overflow: hidden;
  }
}
.serviceitem_image {
  position: relative;
  width: 49.2%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
@media (min-width: 769px) {
  .serviceitem_image {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
  }
}
.serviceitem_image__development {
  background: url("/src/img/img_development.png") no-repeat center center/contain;
}
.serviceitem_image__solution {
  background: url("/src/img/img_solution.png") no-repeat center center/contain;
}
.serviceitem_image__analytics {
  background: url("/src/img/img_analytics.png") no-repeat center center/contain;
}
.serviceitem_contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 19.7vw;
  background-color: #292929;
  margin-left: -10%;
}
@media (min-width: 768px) {
  .serviceitem_contents {
    position: absolute;
    height: 27%;
    background-color: rgba(41, 41, 41, 0.8);
    margin: 0;
    bottom: 0;
    z-index: 2;
  }
}
.serviceitem_contents p {
  position: absolute;
  color: #FFF;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  text-align: center;
  top: 0;
  right: 0;
  left: 10%;
  bottom: 0;
  margin: auto;
  font-size: 20px;
}
@media (min-width: 769px) {
  .serviceitem_contents p {
    left: 0;
    bottom: 15px;
  }
}
.serviceitem_contents p span {
  font-size: 14px;
}
@media (min-width: 769px) {
  .serviceitem_contents p span {
    font-size: 15px;
  }
}
.serviceitem:nth-of-type(2) {
  margin: -10% 0;
}
@media (min-width: 769px) {
  .serviceitem:nth-of-type(2) {
    margin: 0;
  }
}
.serviceitem:nth-of-type(2) .serviceitem_contents {
  margin: 0 -10% 0 0;
}
@media (min-width: 769px) {
  .serviceitem:nth-of-type(2) .serviceitem_contents {
    margin: 0;
  }
}
.serviceitem:nth-of-type(2) .serviceitem_contents p {
  left: 0;
  right: 10%;
}
@media (min-width: 769px) {
  .serviceitem:nth-of-type(2) .serviceitem_contents p {
    right: 0;
  }
}

.project_contents_item {
  position: relative;
  padding-top: 39px;
  margin-top: 40px;
}
@media (min-width: 769px) {
  .project_contents_item {
    margin-top: 70px;
  }
}
.project_contents_item_ellipsis {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 4px;
  height: 28px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .project_contents_item_ellipsis {
    width: 7px;
    height: 39px;
  }
}
.project_contents_item_ellipsis span {
  position: absolute;
  width: 4px;
  height: 4px;
  top: 0;
  border-radius: 50%;
  background-color: #292929;
}
@media (min-width: 769px) {
  .project_contents_item_ellipsis span {
    width: 7px;
    height: 7px;
  }
}
.project_contents_item_ellipsis span:nth-child(2) {
  bottom: 0;
  margin: auto 0;
}
.project_contents_item_ellipsis span:nth-child(3) {
  top: auto;
  bottom: 0;
}
.project_contents_item_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 19.5px;
     -moz-column-gap: 19.5px;
          column-gap: 19.5px;
  margin-top: 20px;
}
@media (min-width: 769px) {
  .project_contents_item_head {
    display: block;
    margin-top: 0;
  }
}
.project_contents_item_head_img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 172px;
  height: 172px;
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .project_contents_item_head_img {
    display: none;
  }
}
@media (min-width: 769px) {
  .project_contents_item_head_title {
    margin-top: 20px;
  }
}
.project_contents_item_head_title_main {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 15px;
}
@media (min-width: 769px) {
  .project_contents_item_head_title_main {
    text-align: center;
    font-size: 35px;
    line-height: 55px;
    margin-bottom: 0;
  }
}
.project_contents_item_head_title_sub {
  font-weight: bold;
  font-size: 17px;
  line-height: 25px;
}
@media (min-width: 769px) {
  .project_contents_item_head_title_sub {
    text-align: center;
    font-size: 30px;
    line-height: 55px;
  }
}

.projectcontent {
  margin-top: 30px;
  max-width: 850px;
}
@media (min-width: 769px) {
  .projectcontent {
    margin-top: 50px;
  }
}
@media (min-width: 769px) {
  .projectcontent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
.projectcontent_img {
  display: none;
}
@media (min-width: 769px) {
  .projectcontent_img {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 33.53%;
    aspect-ratio: 1/1;
    border-radius: 15px;
    overflow: hidden;
  }
}
.projectcontent_info_text {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .projectcontent_info_text {
    font-size: 20px;
    margin-bottom: 35px;
  }
}

.projectdetail {
  background-color: #FFF;
  border-radius: 10px;
  padding: 13px 15px;
}
@media (min-width: 769px) {
  .projectdetail {
    width: 304px;
  }
}
.projectdetail_item {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 27px;
}
.projectdetail_item span {
  font-weight: 500;
}

.company_main_information {
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .company_main_information {
    margin-bottom: 50px;
  }
}
.company_main_map {
  position: relative;
  width: 100%;
  aspect-ratio: 345/214;
  border-radius: 15px;
}
@media (min-width: 769px) {
  .company_main_map {
    aspect-ratio: 850/445;
    margin-right: calc((100vw - 850px) / 2 * -1);
  }
}
.company_main_map iframe {
  position: relative;
  border-radius: 15px;
  z-index: 1;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.companyitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid #292929;
}
.companyitem_title {
  width: 23.1%;
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 769px) {
  .companyitem_title {
    width: 15.6%;
  }
}
.companyitem_detail {
  letter-spacing: 1px;
  word-break: break-all;
  line-height: 1.5;
}
n .companyitem_detail__longtext {
  letter-spacing: 0.7px;
}
.companyitem_detail_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.companyitem_detail_flex span {
  display: block;
  line-height: 25px;
}

.contact_text {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}
@media (min-width: 769px) {
  .contact_text {
    font-size: 20px;
  }
}
.contact_text a {
  color: #296EDE;
  font-weight: 500;
  font-size: 18px;
  text-decoration: underline;
}
@media (min-width: 769px) {
  .contact_text a:hover {
    opacity: 0.6;
  }
}

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

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