@charset "UTF-8";
@-webkit-keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes modal-video-inner {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes modal-video-inner {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-name: modal-video;
          animation-name: modal-video;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}
.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  box-sizing: border-box;
}

.modal-video-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-name: modal-video-inner;
          animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}
@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}
.modal-video-close-btn:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal-video-close-btn:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

:root {
  --scrollbar-w: calc(100vw - 100%);
  --header-width: clamp(80px, -0.419rem + 8.011vw, 140px);
  --header-height: 70px;
}
@media screen and (max-width: 1050px) {
  :root {
    --header-width: 86px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --header-width: 0px;
  }
}

body {
  /* Phase01の対応 */
}
body.top_y_2024, body.business,
body .contact {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  min-width: unset;
}
@media screen and (max-width: 768px) {
  body.top_y_2024, body.business,
  body .contact {
    font-size: 1.4rem;
  }
}
body.top_y_2024 .topNav__link,
body.top_y_2024 a:hover, body.business .topNav__link,
body.business a:hover,
body .contact .topNav__link,
body .contact a:hover {
  opacity: 1;
}

.container {
  margin: 0 auto;
  max-width: 1440px;
  padding-left: 45px;
  padding-right: 45px;
  translate: calc(var(--header-width) / 2) 0;
  width: 100%;
}
@media screen and (max-height: 767px) and (min-width: 1051px) {
  .container {
    max-width: 1360px;
    padding-left: 60px;
    padding-right: 60px;
    translate: 0;
  }
}
@media screen and (max-width: 1050px) {
  .container {
    translate: 0 0;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.body .main {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  min-width: unset;
  padding-top: 70px;
}
@media screen and (max-width: 1050px) {
  .body .main {
    padding-top: 90px;
  }
}

.breadcrumb {
  padding-top: 30px;
  padding-bottom: 29px;
}
.contact__list .breadcrumb, .culture .breadcrumb, .sustainabilityPolicy .breadcrumb, .sustainabilityTopics .breadcrumb, .policy .breadcrumb, .company.contact .breadcrumb {
  margin-top: 90px;
}
.breadcrumb__container {
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .breadcrumb__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.breadcrumb__list {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px 0;
}
.breadcrumb__item {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: #b9bec3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item {
    font-size: 1.05rem;
  }
}
.breadcrumb__item:nth-child(1), .breadcrumb__item:nth-child(2) {
  font-family: mundial, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item:nth-child(1), .breadcrumb__item:nth-child(2) {
    font-size: 1.2rem;
  }
}
.breadcrumb__item:nth-child(n+2) {
  margin-left: 46px;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item:nth-child(n+2) {
    margin-left: 40px;
  }
}
.breadcrumb__item:nth-child(n+2)::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  left: -38px;
  top: 1px;
  bottom: 0;
  margin: auto;
  background-color: #b9bec3;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item:nth-child(n+2)::before {
    width: 26px;
    left: -33px;
  }
}
.breadcrumb__item:nth-child(n+3) .breadcrumb__link {
  margin-top: 2px;
}
.breadcrumb__item:last-child {
  color: #000;
}
.breadcrumb__link {
  color: inherit;
  display: inline-block;
}
.breadcrumb a.breadcrumb__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb + .footer {
  margin-top: 0;
}

.detail .sec02__content-wrap {
  margin-bottom: 0;
}

.company.contact {
  padding-top: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  overflow-y: hidden;
}

.accordion__btn, .accordion__modalHead {
  display: grid;
  grid-template-columns: 227px auto;
  -webkit-align-items: center;
          align-items: center;
  background-color: #00bfd3;
  color: #fff;
  height: 110px;
  padding: 0 57px;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
}
.accordion__btn_color_violet, .accordion__modalHead_color_violet {
  background-color: #6464C3;
}
.accordion__btn_color_navyblue, .accordion__modalHead_color_navyblue {
  background-color: #003255;
}
.accordion__btn_color_green, .accordion__modalHead_color_green {
  background-color: #14B99B;
}
.accordion__btn_color_orange, .accordion__modalHead_color_orange {
  background-color: #FF7846;
}
@media screen and (max-width: 768px) {
  .accordion__btn, .accordion__modalHead {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    padding: 0 28px;
    height: 77px;
  }
}
.accordion__btn {
  cursor: pointer;
}
.accordion__btn::after {
  position: absolute;
  content: "";
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  bottom: 4px;
  display: block;
  top: 47px;
  right: 67px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  height: 11px;
  width: 11px;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.accordion__btn.open::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  .accordion__btn::after {
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    height: 9px;
    width: 9px;
    top: 35px;
    right: 38px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.accordion__modalHead {
  display: none;
}
@media screen and (max-width: 768px) {
  .accordion__modalHead {
    min-height: 77px;
  }
  .accordion__modalHead.in_modal {
    display: -webkit-flex;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.accordion__modalClose {
  position: absolute;
  display: block;
  top: 29px;
  right: 35px;
  height: 13px;
  width: 13px;
  padding: 0 6px;
  cursor: pointer;
}
.accordion__modalClose::before, .accordion__modalClose::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: #fff;
}
.accordion__modalClose::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.accordion__modalClose::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.accordion__ja {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .accordion__ja {
    font-size: 1.6rem;
  }
}
.accordion__en {
  font-family: mundial, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .accordion__en {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
  }
}
.accordion__itm {
  background-color: #ccf1f4;
  overflow: hidden;
  height: 0;
  transition: all 0.5s ease-out;
}
.open > .accordion__itm {
  transition: all 0.5s ease-in;
}
@media screen and (max-width: 768px) {
  .accordion__itm {
    display: none;
    height: auto;
  }
  .accordion__itm.in_modal {
    display: block;
    overflow-y: scroll;
    /* IE, Edge 対応 */
    -ms-overflow-style: none;
    /* Firefox 対応 */
    scrollbar-width: none;
    /* Chrome, Safari 対応 */
  }
  .accordion__itm.in_modal::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
  }
}
.accordion__itmWrap {
  padding: 21px 26px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 21px;
}
.accordion__itmWrap_type_center {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
@media screen and (max-width: 1050px) {
  .accordion__itmWrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: center;
            justify-content: center;
    padding: 22px 22px 23px;
  }
}
.accordion__anchor {
  height: 86px;
}
@media screen and (max-width: 768px) {
  .accordion__anchor {
    display: none;
  }
}
.accordion__link {
  display: -webkit-flex;
  display: flex;
  height: 100%;
  width: 100%;
  padding: 0 65px;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.accordion__icon {
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  bottom: 4px;
  display: block;
  height: 11px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 11px;
}
.accordion__icon_color_violet {
  border-right: 3px solid #6464C3;
  border-top: 3px solid #6464C3;
}
.accordion__icon_color_navyblue {
  border-right: 3px solid #003255;
  border-top: 3px solid #003255;
}
.accordion__icon_color_orange {
  border-right: 3px solid #FF7846;
  border-top: 3px solid #FF7846;
}
.accordion__icon_color_green {
  border-right: 3px solid #14B99B;
  border-top: 3px solid #14B99B;
}

.animation {
  --animation-order: 1;
}
.animation-delay01 {
  --animation-order: 2;
}
.animation-delay02 {
  --animation-order: 3;
}
@media screen and (max-width: 768px) {
  .animation.sp-delay-00 {
    --animation-order: 1;
  }
}
@media screen and (max-width: 768px) {
  .animation.sp-delay-01 {
    --animation-order: 2;
  }
}
.animation.jsAnimation {
  transition-delay: calc(0.2s * (var(--animation-order, 1) - 1));
  transition-duration: 1s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, visibility, transform;
  transition-property: opacity, visibility, transform, -webkit-transform;
  transition-timing-function: ease-in-out;
}
.animation:not(.has_reached) {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  visibility: hidden;
}

.arrowBtn {
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.arrowBtn::after {
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  content: "";
  display: block;
  height: 11px;
  position: absolute;
  right: 42px;
  top: 50%;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
          transform: translate(-25%, -50%) rotate(45deg);
  width: 11px;
}
@media screen and (max-width: 768px) {
  .arrowBtn::after {
    border-right-width: 2px;
    border-top-width: 2px;
    height: 8px;
    right: 28px;
    width: 8px;
  }
}
.arrowBtn:hover {
  opacity: 1;
}
.arrowBtn::after {
  transition: translate 0.2s;
}
.arrowBtn:hover::after {
  translate: 8px 0;
}

.arrowIconBtn__link {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-inline-flex;
  display: inline-flex;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  line-height: 2;
  min-height: 50px;
  padding: 4px 0 4px 64px;
  position: relative;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .arrowIconBtn__link {
    font-size: 1.3rem;
    line-height: 1.8;
    padding: 4px 0 4px 50px;
  }
}
.arrowIconBtn__link::before {
  background: #00bfd3;
  content: "";
  display: block;
  height: 50px;
  inset: 0;
  margin: auto auto auto 0;
  position: absolute;
  width: 50px;
}
@media screen and (max-width: 768px) {
  .arrowIconBtn__link::before {
    height: 36px;
    width: 36px;
  }
}
.arrowIconBtn__link::after {
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  content: "";
  display: block;
  height: 11px;
  left: 25px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-75%, -50%) rotate(45deg);
          transform: translate(-75%, -50%) rotate(45deg);
  width: 11px;
}
@media screen and (max-width: 768px) {
  .arrowIconBtn__link::after {
    border-right-width: 2px;
    border-top-width: 2px;
    height: 8px;
    left: 18px;
    width: 8px;
  }
}
body.top .arrowIconBtn__link:hover {
  opacity: 0.6;
}

.article {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 46px 50px;
}
.article__body {
  cursor: pointer;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .article__body {
    margin-bottom: 22px;
  }
}
.article__item {
  background-color: #fff;
  min-height: var(--hidden-height);
  padding: 40px;
  width: calc(50% - 25px);
}
.article__item.is-hidden {
  -webkit-align-self: flex-start;
          align-self: flex-start;
}
@media screen and (max-width: 768px) {
  .article__item {
    min-height: auto;
    padding: 22px;
    width: 100%;
  }
  .article__item.is-hidden {
    -webkit-align-items: unset;
            align-items: unset;
  }
}
.article__link {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  opacity: 1;
  transition: all 0.3s;
}
.article__link:not(:last-child) {
  margin-bottom: 10px;
}
.article__link:hover {
  opacity: 0.6;
}
.article__linkIcon {
  background: #00bfd3;
  color: #fff;
  font-family: mundial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
  margin: 2px 0;
  padding: 5px 10px 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .article__linkIcon {
    padding: 3px 6px 4px;
  }
}
.article__linkTxt {
  color: #858585;
  display: block;
  font-size: 1.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1.6;
  transition: 0.2s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.article__link[target=_blank] .article__linkTxt::after {
  background: url(../../../images/common/icon_external_turquoise.svg) no-repeat;
  content: "";
  display: inline-block;
  height: 14px;
  line-height: 2.4rem;
  margin-bottom: -1px;
  margin-left: 12px;
  margin-top: 1px;
  width: 14px;
}
@media screen and (max-width: 768px) {
  .article__link[target=_blank] .article__linkTxt::after {
    height: 10px;
    margin-left: 8px;
    width: 10px;
  }
}
.article__linkTxt:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .article__linkTxt {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.article__text {
  display: inline-block;
  line-height: 1.9375;
  max-height: var(--truncate-height-expanded);
  overflow: hidden;
  transition: max-height 0.8s;
}
.article__text.is-hidden {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  max-height: 93px;
  text-overflow: ellipsis;
}
.article__text.is-clamped {
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .article__text {
    line-height: 1.85714286;
  }
  .article__text.is-hidden {
    max-height: 60px;
  }
  .article__text.is-clamped {
    -webkit-line-clamp: 2;
  }
}
.article__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .article__title {
    font-size: 1.9rem;
  }
}
.article__more, .article__close {
  -webkit-align-items: center;
          align-items: center;
  background-color: #E3E5E7;
  display: -webkit-flex;
  display: flex;
  font-size: 1rem;
  gap: 5px;
  margin-left: auto;
  margin-right: 0;
  margin-top: 5px;
  padding: 6px 10px 6px 10px;
  text-wrap: nowrap;
  transition: 0.2s cubic-bezier(0.89, 0.05, 0.27, 1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .article__more, .article__close {
    padding: 5px 8px 5px 8px;
  }
}
.article__more::after, .article__close::after {
  box-sizing: border-box;
  content: "";
  display: block;
  height: 5px;
  rotate: 45deg;
  width: 5px;
}
.article__body:hover .article__more, .article__body:hover .article__close {
  background: #b9bec3;
}
.article__close {
  display: none;
}
.article__body.is-open .article__close {
  display: -webkit-flex;
  display: flex;
}
.article__close::after {
  border-left: 2px solid #000;
  border-top: 2px solid #000;
}
.article__more {
  display: -webkit-flex;
  display: flex;
}
.article__body.is-open .article__more {
  display: none;
}
.article__more::after {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
}

.basicBtn {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  background: #66d5de;
  padding: 22px 0;
  transition: 0.2s cubic-bezier(0.89, 0.05, 0.27, 1);
  border: none;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .basicBtn {
    padding: 20px 0;
  }
}
.basicBtn::before, .basicBtn::after {
  display: block;
  background-color: #000;
  -webkit-mask-image: url(../images/common/icon_arrow_down_black.svg);
          mask-image: url(../images/common/icon_arrow_down_black.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 13px;
  height: 9px;
}
.basicBtn::before {
  content: none;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.basicBtn::after {
  content: "";
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.basicBtn:hover {
  background: #00bfd3;
  opacity: 1;
}
.basicBtn_is_current:hover {
  background: #66d5de;
}
.basicBtn_arrow_down::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.basicBtn_arrow_none::before, .basicBtn_arrow_none::after {
  content: none;
}
.basicBtn_target_blank::after {
  background-color: #000;
  border: none;
  content: "";
  height: 12px;
  -webkit-mask-image: url(../images/common/icon_external_turquoise.svg);
          mask-image: url(../images/common/icon_external_turquoise.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 12px;
}
.basicBtn_border_solid {
  background: transparent;
  border: 1px solid #00bfd3;
}
.basicBtn_border_solid:hover {
  background: #ccf1f4;
  border: 1px solid #ccf1f4;
}
.basicBtn_type_back::before {
  content: "";
}
.basicBtn_type_back::after {
  content: none;
}
.basicBtn_color_gray {
  background: #d5d8db;
}
.basicBtn_color_gray:hover {
  background: #b9bec3;
}

.businessCard {
  background-color: #fff;
  height: auto;
  min-height: 383px;
  max-width: 505px;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .businessCard {
    min-height: 0;
    max-width: 100%;
  }
}
.businessCard__link {
  display: grid;
  grid-template-areas: ". img ." ". text .";
  grid-template-columns: 33px auto 33px;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.3s;
  position: relative;
}
.businessCard__link::before {
  content: "";
  position: absolute;
  background: no-repeat center url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2013.87%2013.87%22%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.cls-1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20none%3B%0A%20%20%20%20%20%20%20%20stroke%3A%20%2300BFD3%3B%0A%20%20%20%20%20%20%20%20stroke-miterlimit%3A%2010%3B%0A%20%20%20%20%20%20%20%20stroke-width%3A%201.27px%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cg%20id%3D%22design%22%3E%0A%20%20%20%20%3Cg%3E%0A%20%20%20%20%20%20%3Cpolyline%20class%3D%22cls-1%22%20points%3D%2213.23%208.08%2013.23%2013.23%20.64%2013.23%20.64%20.64%205.78%20.64%22%2F%3E%0A%20%20%20%20%20%20%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.23%22%20y1%3D%22.64%22%20x2%3D%226.93%22%20y2%3D%226.93%22%2F%3E%0A%20%20%20%20%20%20%3Cpolyline%20class%3D%22cls-1%22%20points%3D%228.13%20.64%2013.23%20.64%2013.23%205.74%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  border: none;
  height: 13px;
  right: 33px;
  top: 32px;
  -webkit-transform: none;
          transform: none;
  width: 13px;
  display: block;
}
.businessCard__link:hover {
  opacity: 0.6 !important;
}
@media screen and (max-width: 768px) {
  .businessCard__link {
    grid-template-columns: 17px auto 17px;
    grid-template-rows: unset;
  }
  .businessCard__link::before {
    top: 21px;
    right: 16px;
    height: 14px;
    width: 14px;
  }
}
.businessCard__fig {
  grid-area: img;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .businessCard__fig {
    aspect-ratio: 250/112;
  }
}
.businessCard__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.businessCard__textarea {
  grid-area: text;
  padding-bottom: 20px;
}
.businessCard__ttl {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .businessCard__ttl {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
}
.businessCard__spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .businessCard__spec {
    font-size: 1.1rem;
    gap: 13px;
  }
}
.businessCard__specTtl, .businessCard__specTxt {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
}

.footer {
  border-top: 1px solid #00bfd3;
  margin-top: 100px;
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  padding-top: 86px;
  position: relative;
  /* 個人情報など */
}
@media screen and (max-width: 1050px) {
  .footer {
    margin-top: 60px;
  }
}
.footer a:hover {
  opacity: 1;
}
@media screen and (max-width: 1050px) {
  .footer {
    padding-top: 76px;
    width: 100vw;
  }
}
.footer__container {
  margin: auto;
}
@media screen and (min-width: 1051px) {
  .footer__container {
    padding: 0 60px;
  }
}
.footer__inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  padding-bottom: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 1050px) {
  .footer__inner {
    -webkit-flex-direction: column;
            flex-direction: column;
    padding-bottom: 25px;
    width: 100%;
  }
}
@media screen and (min-width: 1051px) {
  .footer__logoArea {
    position: absolute;
    left: 50px;
  }
}
@media screen and (max-width: 1050px) {
  .footer__logoArea {
    margin-left: 0;
    padding: 0 0 0 25px;
    width: 100%;
  }
}
.footer__logoLink {
  display: block;
}
.footer__logoImg {
  height: auto;
  width: 190px;
}
@media screen and (max-width: 1050px) {
  .footer__logoImg {
    width: 124px;
  }
}
.footer__nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  gap: 45px;
}
@media screen and (min-width: 1051px) {
  .footer__nav {
    max-width: 1080px;
    padding-left: 100px;
    padding-top: 22px;
  }
}
@media screen and (max-width: 1400px) {
  .footer__nav {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1050px) {
  .footer__nav {
    gap: 0;
    padding: 60px 30px 0;
  }
}
@media screen and (min-width: 1051px) {
  .footer__box {
    max-width: 204px;
    width: 20.8375%;
  }
}
@media screen and (max-width: 1050px) {
  .footer__box {
    margin-bottom: 4px;
    width: 100%;
  }
}
.footer__title {
  border-bottom: 1px solid #b9bec3;
  font-family: mundial, sans-serif;
  margin-bottom: 16px;
  padding-bottom: 25px;
}
@media screen and (max-width: 1050px) {
  .footer__title {
    cursor: pointer;
    padding-bottom: 14px;
    position: relative;
  }
}
@media screen and (max-width: 1050px) {
  .footer__title::after {
    background: #00bfd3;
    content: "";
    display: block;
    height: 4px;
    left: auto;
    margin: auto;
    position: absolute;
    right: 24px;
    top: 15px;
    transition: 0.4s;
    width: 8px;
  }
}
.footer__title.is_open::after {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.footer__ttlEn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 1050px) {
  .footer__ttlEn {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
}
.footer__ttlJa {
  display: none;
}
@media screen and (max-width: 1050px) {
  .footer__ttlJa {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1050px) {
  .footer__list {
    display: none;
  }
}
.footer__list + .footer__list {
  margin-top: 12px;
}
@media screen and (max-width: 1050px) {
  .footer__list + .footer__list {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1050px) {
  .footer__box .footer__list {
    margin-bottom: 20px;
  }
}
.footer__link {
  color: #000;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  padding: 9px 0;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .footer__link {
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
  }
}
.footer__link span {
  position: relative;
  padding-right: 22.5px;
  display: inline-block;
}
@media screen and (max-width: 1050px) {
  .footer__link span {
    position: static;
  }
}
.footer__link span::after {
  background: #00bfd3;
  bottom: 7.25px;
  content: "";
  display: block;
  height: 3.5px;
  left: auto;
  margin: auto;
  position: absolute;
  right: 7.5px;
  top: auto;
  transition: 0.2s;
  width: 7.5px;
}
@media screen and (max-width: 1050px) {
  .footer__link span::after {
    right: 24px;
    bottom: 15px;
  }
}
.footer__link:hover span::after {
  right: 2.5px;
}
@media screen and (max-width: 1050px) {
  .footer__link:hover span::after {
    right: 19px;
  }
}
.footer__link[target=_blank] span::after {
  background: url(../images/common/icon_external_turquoise.svg) no-repeat;
  height: 8px;
  width: 8px;
  bottom: 5px;
}
@media screen and (max-width: 1050px) {
  .footer__link[target=_blank] span::after {
    bottom: 12px;
  }
}
.footer__links {
  margin-top: 35px;
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .footer__links {
    margin-top: 16px;
  }
}
.footer__links .footer__list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0 35px;
}
@media screen and (max-width: 1050px) {
  .footer__links .footer__list {
    gap: 0;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
.footer__links .footer__list_type_sns {
  gap: 0 14px;
}
@media screen and (max-width: 1050px) {
  .footer__links .footer__list_type_sns {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
}
.footer__links .footer__link::after {
  content: none;
}
.footer__links .footer__link {
  transition: 0.2s;
}
@media screen and (max-width: 1050px) {
  .footer__links .footer__link {
    font-size: 1rem;
    font-weight: 700;
  }
}
.footer__links .footer__link:hover {
  opacity: 0.6;
}
.footer__links .footer__link_type_sns {
  padding: 0;
}
.footer__linkTxt {
  font-family: mundial, sans-serif;
  position: relative;
  padding: 5px 0 11px;
  font-size: 1.2rem;
}
.footer__icon {
  width: 32px;
  height: 32px;
}
.footer__copy {
  font-weight: 700;
  margin-left: 45px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1050px) {
  .footer__copy {
    margin-left: 25px;
    margin-bottom: 37px;
  }
}
.footer__text {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  height: 84px;
  letter-spacing: -0.025em;
  padding-left: 45px;
}
@media screen and (max-width: 1050px) {
  .footer__text {
    height: 50px;
    letter-spacing: 0;
    padding-left: 26px;
  }
}
.footer__small {
  font-family: mundial, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
}
@media screen and (max-width: 1050px) {
  .footer__small {
    font-size: 1rem;
  }
}

body.top .footer {
  margin-top: 0;
}

.navArea + .footer {
  border-top: none;
}

.form {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
}
.form__block {
  margin-bottom: 51px;
}
@media screen and (max-width: 768px) {
  .form__block {
    margin-bottom: 38px;
  }
}
.form__dd {
  width: 76%;
}
@media screen and (max-width: 768px) {
  .form__dd {
    width: 100%;
  }
}
.form__dt {
  font-weight: 700;
  line-height: 1.5;
  padding-top: 11px;
  width: 24%;
}
.form__dt_no_padding {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .form__dt {
    line-height: 1.6;
    padding-top: 0;
    width: 100%;
  }
}
.form__elm {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  display: -webkit-flex;
  display: flex;
}
.form__elm:not(:last-child) {
  margin-bottom: 44px;
}
@media screen and (max-width: 768px) {
  .form__elm {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .form__elm:not(:last-child) {
    margin-bottom: 30px;
  }
}
.form__error {
  color: #FF0000;
  display: block;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .form__error {
    font-size: 1.2rem;
  }
}
.form__job {
  background-color: #F1F2F3;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 1.6rem;
  height: 44px;
  padding-left: 24px;
  padding-right: 45px;
  width: 100%;
}
.form__job::-ms-expand {
  display: none;
}
.form__mailLink {
  -webkit-align-items: center;
          align-items: center;
  border: 1px solid #00bfd3;
  display: -webkit-flex;
  display: flex;
  height: 44px;
  -webkit-justify-content: center;
          justify-content: center;
  margin-bottom: 3px;
  opacity: 1;
  transition: 0.3s;
  width: 305px;
}
.form__mailLink:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .form__mailLink {
    margin-bottom: 12px;
    width: 100%;
  }
}
.form__mailNote {
  color: #878787;
  font-size: 1.3rem;
  line-height: 1.92307692;
}
@media screen and (max-width: 768px) {
  .form__mailNote {
    font-size: 1.2rem;
  }
}
.form__note {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 2.38461538;
  margin-bottom: 27px;
}
@media screen and (max-width: 768px) {
  .form__note {
    font-size: 1.2rem;
    margin-bottom: 21px;
  }
}
.form__purpose {
  border: 1px solid rgba(0, 0, 0, 0.6);
  margin-bottom: 75px;
  padding: 34px 37px;
}
@media screen and (max-width: 768px) {
  .form__purpose {
    margin-bottom: 42px;
    padding: 24px 23px;
  }
}
.form__purposeTtl {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .form__purposeTtl {
    margin-bottom: 8px;
  }
}
.form__purposeTxt {
  display: inline-block;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .form__purposeTxt {
    line-height: 2;
    margin-bottom: 4px;
  }
}
.form__red {
  color: #FF0000;
}
.form__en {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .form__en {
    font-size: 1.2rem;
  }
}
.form__req {
  display: inline-block;
  margin-left: 5px;
}
.form__select {
  min-width: 232px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.form__select::after {
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  right: 23px;
  rotate: 45deg;
  top: 50%;
  translate: 0 -75%;
  width: 9px;
}
@media screen and (max-width: 768px) {
  .form__select {
    width: 100%;
  }
}
.form__submit {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form__submit {
    text-align: left;
  }
}
.form__buttonWrap {
  display: -webkit-flex;
  display: flex;
  gap: 0 71px;
  margin: 26px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .form__buttonWrap {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 22px;
    margin: 27px auto 0;
    width: 100%;
  }
}
.form__btnflex {
  margin: 0;
  max-width: 380px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__btnflex {
    max-width: 100%;
  }
}
.form__submitBtn {
  width: 498px;
}
@media screen and (max-width: 768px) {
  .form__submitBtn {
    width: 100%;
  }
}
.form__completeBtnWrap {
  margin: 51px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .form__completeBtnWrap {
    margin: 38px 0 0;
    width: 100%;
  }
}
.form__back {
  width: 498px;
}
@media screen and (max-width: 768px) {
  .form__back {
    margin-top: 27px;
    width: 100%;
  }
}
.form__text {
  line-height: 2;
}
.form__text_align_center {
  text-align: center;
}
.form__textArea {
  background-color: #F1F2F3;
  border: none;
  border-radius: 0;
  height: 180px;
  padding: 12px 24px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__textArea {
    height: 105px;
    padding: 10px 17px;
  }
}
.form__textInput {
  background-color: #F1F2F3;
  border: none;
  border-radius: 0;
  font-size: 1.6rem;
  height: 44px;
  padding: 0 24px;
  width: 100%;
}
.form__textInput::-webkit-input-placeholder {
  color: #000;
  opacity: 0.6;
}
.form__textInput::-moz-placeholder {
  color: #000;
  opacity: 0.6;
}
.form__textInput::placeholder {
  color: #000;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .form__textInput {
    padding: 0 17px;
  }
  .form__textInput::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .form__textInput::-moz-placeholder {
    font-size: 1.4rem;
  }
  .form__textInput::placeholder {
    font-size: 1.4rem;
  }
}
.form__confirmHead {
  margin-bottom: 30px;
  text-align: center;
}

.header {
  letter-spacing: 0.03em;
  -webkit-align-items: center;
          align-items: center;
  background-color: #fff;
  display: -webkit-flex;
  display: flex;
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding-left: 45px;
  padding-right: 45px;
  position: fixed;
  transition: -webkit-filter 0.5s 0s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.2s cubic-bezier(0.89, 0.05, 0.27, 1);
  transition: filter 0.5s 0s cubic-bezier(0.89, 0.05, 0.27, 1), transform 0.2s cubic-bezier(0.89, 0.05, 0.27, 1);
  transition: filter 0.5s 0s cubic-bezier(0.89, 0.05, 0.27, 1), transform 0.2s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-filter 0.5s 0s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.2s cubic-bezier(0.89, 0.05, 0.27, 1);
  width: 100%;
  z-index: 999;
}
.header a:hover {
  opacity: 1;
}
.header a:hover {
  opacity: 1;
}
@media screen and (min-width: 1051px) {
  .header {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@media screen and (max-width: 1050px) {
  .header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1051px) {
  .header.is_menuOpened {
    -webkit-filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  }
}
.header.is_hidden {
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
  transition: translate 0s 0.5s, -webkit-filter 0.5s 0s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.2s cubic-bezier(0.89, 0.05, 0.27, 1);
  transition: filter 0.5s 0s cubic-bezier(0.89, 0.05, 0.27, 1), transform 0.2s cubic-bezier(0.89, 0.05, 0.27, 1), translate 0s 0.5s;
  transition: filter 0.5s 0s cubic-bezier(0.89, 0.05, 0.27, 1), transform 0.2s cubic-bezier(0.89, 0.05, 0.27, 1), translate 0s 0.5s, -webkit-filter 0.5s 0s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.2s cubic-bezier(0.89, 0.05, 0.27, 1);
}
@media screen and (max-width: 1050px) {
  .header.is_hidden {
    -webkit-transform: translateY(-90px);
            transform: translateY(-90px);
  }
}
.header__logoLink {
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 0;
  margin-left: -16px;
  padding: 16px;
  transition: 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1050px) {
  .header__logoLink {
    padding-bottom: 26px;
    padding-top: 26px;
  }
}
.header__logoLink:hover {
  opacity: 0.6;
}
.header__logo {
  height: 100%;
  width: 91px;
}
.header__subContents {
  display: contents;
}
@media screen and (min-width: 1051px) {
  .header__sub {
    background-color: #fff;
    display: block;
    height: auto;
    left: 0;
    margin: auto;
    padding: 0;
    position: fixed;
    top: 100%;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    transition: -webkit-transform 0.5s 0s cubic-bezier(0.89, 0.05, 0.27, 1);
    transition: transform 0.5s 0s cubic-bezier(0.89, 0.05, 0.27, 1);
    transition: transform 0.5s 0s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.5s 0s cubic-bezier(0.89, 0.05, 0.27, 1);
    width: 100%;
    z-index: -1;
  }
  .header__sub:not(.is_opened) {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    visibility: hidden;
    transition: all 0.3s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.5s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1);
    transition: all 0.3s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1), transform 0.5s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1);
    transition: all 0.3s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1), transform 0.5s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.5s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1);
  }
}
@media screen and (max-width: 1050px) {
  .header__sub {
    background-color: #f1f2f3;
    display: block;
    height: calc(100% - 90px);
    left: auto;
    margin: auto;
    margin: 90px 0 0;
    opacity: 0;
    overflow-x: scroll;
    padding: 0 27px 30px;
    position: fixed;
    right: -91%;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.89, 0.05, 0.27, 1);
    visibility: hidden;
    width: 91%;
    z-index: 1;
  }
  .header__sub.is_opened {
    opacity: 1;
    right: 0;
    visibility: visible;
  }
}
@media screen and (min-width: 1051px) {
  .header__subInner {
    display: block;
    opacity: 0;
    padding: 40px 0 80px;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    transition: transform 0s 0.5s, opacity 0s 0.5s;
    transition: transform 0s 0.5s, opacity 0s 0.5s, -webkit-transform 0s 0.5s;
  }
  .header__sub.is_opened .header__subInner {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    transition: opacity 0.3s 0.2s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.3s 0.2s cubic-bezier(0.89, 0.05, 0.27, 1);
    transition: transform 0.3s 0.2s cubic-bezier(0.89, 0.05, 0.27, 1), opacity 0.3s 0.2s cubic-bezier(0.89, 0.05, 0.27, 1);
    transition: transform 0.3s 0.2s cubic-bezier(0.89, 0.05, 0.27, 1), opacity 0.3s 0.2s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.3s 0.2s cubic-bezier(0.89, 0.05, 0.27, 1);
  }
}
@media screen and (min-width: 1051px) {
  .header__contents {
    display: contents;
  }
}
@media screen and (max-width: 1050px) {
  .header__contents {
    background-color: #f1f2f3;
    bottom: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    left: auto;
    position: fixed;
    right: -91%;
    top: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    transition: 0.3s cubic-bezier(0.89, 0.05, 0.27, 1);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: 91%;
  }
}
.header__list_type_child, .header__list_type_descendant, .header__list_type_ir {
  margin: 0 auto;
  max-width: 1250px;
  width: 100%;
}
@media screen and (min-width: 1051px) {
  .header__list_type_child, .header__list_type_descendant, .header__list_type_ir {
    gap: 40px 3.16%;
  }
}
.header__list_type_child .header__item, .header__list_type_descendant .header__item, .header__list_type_ir .header__item {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
}
@media screen and (min-width: 1051px) {
  .header__list_type_child .header__item, .header__list_type_descendant .header__item, .header__list_type_ir .header__item {
    max-width: 204px;
  }
}
.header__list_type_child .header__link, .header__list_type_descendant .header__link, .header__list_type_ir .header__link {
  font-size: 1.2rem;
  font-weight: 500;
}
.header__list_type_child, .header__list_type_ir {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  transition: opacity 0.1s 0s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.1s 0.3s cubic-bezier(0.89, 0.05, 0.27, 1);
  transition: transform 0.1s 0.3s cubic-bezier(0.89, 0.05, 0.27, 1), opacity 0.1s 0s cubic-bezier(0.89, 0.05, 0.27, 1);
  transition: transform 0.1s 0.3s cubic-bezier(0.89, 0.05, 0.27, 1), opacity 0.1s 0s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.1s 0.3s cubic-bezier(0.89, 0.05, 0.27, 1);
}
.is_opened .header__list_type_child, .is_opened .header__list_type_ir {
  transition: opacity 0.3s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.3s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1);
  transition: transform 0.3s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1), opacity 0.3s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1);
  transition: transform 0.3s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1), opacity 0.3s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1), -webkit-transform 0.3s 0.5s cubic-bezier(0.89, 0.05, 0.27, 1);
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
@media screen and (min-width: 1051px) {
  .header__list_type_child, .header__list_type_ir {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1050px) {
  .header__list_type_child, .header__list_type_ir {
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.89, 0.05, 0.27, 1);
    opacity: 1;
  }
}
.header__list_type_child > .header__item, .header__list_type_ir > .header__item {
  display: -webkit-flex;
  display: flex;
}
@media screen and (min-width: 1051px) {
  .header__list_type_child > .header__item, .header__list_type_ir > .header__item {
    width: 17.472%;
  }
}
.header__list_type_child > .header__item .header__link, .header__list_type_ir > .header__item .header__link {
  padding-bottom: 21px;
  padding-top: 20px;
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .header__list_type_child > .header__item .header__link, .header__list_type_ir > .header__item .header__link {
    padding-bottom: 21px;
    padding-top: 20px;
  }
}
.header__list_type_child > .header__item .header__link span, .header__list_type_ir > .header__item .header__link span {
  font-weight: inherit;
}
@media screen and (max-width: 1050px) {
  .header__list_type_child > .header__item .header__link span, .header__list_type_ir > .header__item .header__link span {
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.header__list_type_ir + .header__list_type_child::after {
  content: "";
  display: block;
  width: 17.472%;
}
.header__list_type_parent {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  width: calc(100% - 107px);
}
.header__list_type_parent > .header__item > div.header__link {
  cursor: default;
}
.header__list_type_parent > .header__item > .header__link {
  padding: 18px 27px;
  transition: color 0.2s;
}
.header__list_type_parent > .header__item > .header__link:hover, .header__list_type_parent > .header__item > .header__link.is_current, .header__list_type_parent > .header__item > .header__link.is_hover {
  color: #00bfd3;
}
@media screen and (max-width: 1050px) {
  .header__list_type_parent > .header__item > .header__link {
    border-bottom: 1px solid #b9bec3;
    box-sizing: border-box;
    padding: 22px 0 15px;
  }
}
@media screen and (max-width: 1050px) {
  .header__list_type_parent {
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    overflow: hidden scroll;
    padding: 0 30px 30px;
    width: 100%;
  }
}
.header__list_type_child {
  -webkit-justify-content: center;
          justify-content: center;
}
.header__list_type_child > .header__item {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.header__list_type_child > .header__item .header__link {
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 1050px) {
  .header__list_type_child > .header__item .header__link {
    border-bottom: 1px solid #b9bec3;
  }
}
.header__list_type_descendant > .header__item .header__link {
  border-bottom: 1px solid #b9bec3;
  font-weight: 400;
  padding-bottom: 16px;
  padding-left: 8px;
  padding-top: 15px;
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .header__list_type_descendant > .header__item .header__link {
    padding-left: 2rem;
  }
}
.header__list_type_ir > .header__item .header__link {
  border-bottom: 1px solid transparent;
}
@media screen and (max-width: 1050px) {
  .header__list_type_ir > .header__item .header__link {
    border-bottom: 1px solid #b9bec3;
  }
}
.header__link {
  -webkit-align-items: center;
          align-items: center;
  box-sizing: border-box;
  color: #000;
  display: -webkit-flex;
  display: flex;
  position: relative;
  text-decoration: none;
}
@media screen and (min-width: 1051px) {
  ul:not(.header__list_type_parent) .header__link:not(p) {
    padding-right: 27.5px;
  }
}
ul:not(.header__list_type_parent) .header__link:not(p) span {
  position: relative;
}
@media screen and (max-width: 1050px) {
  ul:not(.header__list_type_parent) .header__link:not(p) span {
    width: 100%;
  }
}
ul:not(.header__list_type_parent) .header__link:not(p) span::after {
  background: #00bfd3;
  bottom: 7.25px;
  content: "";
  display: block;
  height: 3.5px;
  left: auto;
  position: absolute;
  right: -17.5px;
  top: auto;
  transition: 0.2s;
  width: 7.5px;
}
@media screen and (max-width: 1050px) {
  ul:not(.header__list_type_parent) .header__link:not(p) span::after {
    bottom: 8.5px;
    right: 27px;
  }
}
ul:not(.header__list_type_parent) .header__link:not(p):hover span::after {
  right: -25.5px;
}
@media screen and (max-width: 1050px) {
  ul:not(.header__list_type_parent) .header__link:not(p):hover span::after {
    right: 22px;
  }
}
ul:not(.header__list_type_parent) .header__link:not(p)[target=_blank] span {
  position: relative;
}
ul:not(.header__list_type_parent) .header__link:not(p)[target=_blank] span::after {
  background: url(../images/common/icon_external_turquoise.svg) no-repeat;
  content: "";
  height: 8px;
  right: -16px;
  width: 8px;
}
@media screen and (max-width: 1050px) {
  ul:not(.header__list_type_parent) .header__link:not(p)[target=_blank] span::after {
    right: 27px;
  }
}
ul:not(.header__list_type_parent) .header__link:not(p)[target=_blank]:hover span::after {
  right: -23px;
}
@media screen and (max-width: 1050px) {
  ul:not(.header__list_type_parent) .header__link:not(p)[target=_blank]:hover span::after {
    right: 22px;
  }
}
@media screen and (max-width: 1050px) {
  .header__link_type_parent {
    position: relative;
  }
  .header__link_type_parent::after {
    background: #00bfd3;
    bottom: 0;
    content: "";
    display: block;
    height: 3.5px;
    left: auto;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 0;
    transition: 0.2s;
    width: 7.5px;
  }
  .header__link_type_parent:hover::after {
    right: 15px;
  }
}
.header__link_type_parent[target=_blank] .header__en {
  padding-right: 13px;
  position: relative;
}
.header__link_type_parent[target=_blank] .header__en::after {
  background-color: #000;
  bottom: 1px;
  content: "";
  content: "";
  display: block;
  height: 8px;
  left: auto;
  margin: auto;
  -webkit-mask-image: url(../images/common/icon_external_turquoise.svg);
          mask-image: url(../images/common/icon_external_turquoise.svg);
  position: absolute;
  right: 0;
  top: auto;
  transition: 0.2s;
  width: 8px;
}
.header__link_type_parent[target=_blank]:hover .header__en::after, .header__link_type_parent[target=_blank].is_hover .header__en::after {
  background-color: #00bfd3;
}
.header__en, .header__jp {
  display: block;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1050px) {
  .header__en, .header__jp {
    text-align: left;
  }
}
.header__en {
  font-family: mundial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 1050px) {
  .header__en {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
}
.header__jp {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 1050px) {
  .header__jp {
    font-size: 1.1rem;
  }
}
.header__btn {
  -webkit-align-items: center;
          align-items: center;
  background-color: #00bfd3;
  display: none;
  -webkit-flex-direction: column;
          flex-direction: column;
  height: 36px;
  -webkit-justify-content: center;
          justify-content: center;
  width: 36px;
  z-index: 999;
}
.header__btn span {
  background-color: #fff;
  display: block;
  height: 2px;
  transition: all 0.2s;
  width: 12px;
}
.header__btn span:nth-of-type(1) {
  margin-bottom: 6px;
}
@media screen and (max-width: 1050px) {
  .header__btn {
    display: -webkit-flex;
    display: flex;
    position: fixed;
    right: 30px;
  }
}
@media screen and (min-width: 1051px) {
  .header__spLogo, .header__spContents {
    display: none;
  }
}
.header__spLogo {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
  padding: 0 30px;
  width: 100%;
}
.header__prev {
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 16px 0 16px 21px;
  position: relative;
  position: relative;
}
.header__prev::before {
  background: #00bfd3;
  bottom: 0;
  content: "";
  display: block;
  height: 3.5px;
  left: 5.25px;
  margin: auto;
  position: absolute;
  top: 0;
  transition: 0.2s;
  width: 7.5px;
}
.header__prev:hover::before {
  left: 0.25px;
}
.header__subTtl {
  margin-bottom: 5px;
  margin-top: 20px;
}
.header.is_menuOpened .header__btn span {
  width: 16px;
}
.header.is_menuOpened .header__btn span:nth-of-type(1) {
  margin-bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header.is_menuOpened .header__btn span:nth-of-type(2) {
  margin-top: -2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 1050px) {
  .header.is_menuOpened .header__contents {
    right: 0;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
body {
  left: 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.89, 0.05, 0.27, 1);
}
body.is_menuOpened {
  left: -91%;
  position: absolute;
  width: 100%;
}

.mainTtl {
  margin-bottom: 60px;
}
@media screen and (max-width: 1050px) {
  .mainTtl {
    margin-bottom: 40px;
  }
}
.mainTtl__en, .mainTtl__jp {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mainTtl__en {
  color: #00bfd3;
  font-family: mundial, sans-serif;
  font-size: 9.3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 1050px) {
  .mainTtl__en {
    font-size: 4.8rem;
  }
}
.mainTtl__jp {
  font-weight: 500;
  font-size: 2rem;
  margin-top: 22px;
  padding-bottom: 9px;
  position: relative;
}
.mainTtl__jp::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 100%;
  left: 0;
  right: 0;
  background-color: #00bfd3;
}
@media screen and (max-width: 1050px) {
  .mainTtl__jp {
    font-size: 1.4rem;
    margin-top: 6px;
  }
}

.modal {
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 37px 26px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  overflow: hidden;
}
.modal.fadein {
  -webkit-animation: 0.3s fadein ease-in;
          animation: 0.3s fadein ease-in;
}
.modal.fadeout {
  -webkit-animation: 0.3s fadeout ease-out;
          animation: 0.3s fadeout ease-out;
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.modal__inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
}

.simplebar-track.simplebar-vertical {
  top: 0 !important;
  right: 8px;
  width: 2px;
  height: calc(100% - 18px) !important;
  margin: 9px 0;
  background-color: #fff;
}
.simplebar-track.simplebar-vertical::after {
  display: none !important;
}

.simplebar-scrollbar {
  background-color: #00bfd3;
}

.simplebar-track.simplebar-horizontal {
  display: none !important;
}

.simplebar-content-wrapper::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 768px) {
  .navArea {
    -webkit-align-items: flex-end;
            align-items: flex-end;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
.navArea__btmBnr {
  display: -webkit-flex;
  display: flex;
  gap: 40px;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin: 0 auto;
  margin-top: 110px;
  max-width: 1170px;
  padding: 0 45px;
}
@media screen and (max-width: 768px) {
  .navArea__btmBnr {
    -webkit-align-items: flex-end;
            align-items: flex-end;
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    -webkit-justify-content: unset;
            justify-content: unset;
    margin: 35px 0 0;
    padding: 0;
  }
}

.navArea + .footer {
  margin-top: 0;
}

.navBnr {
  background-color: #00bfd3;
  height: 366px;
}
@media screen and (max-width: 768px) {
  .navBnr {
    height: 132px;
    width: 100%;
  }
}
.navBnr__link {
  display: -webkit-flex;
  display: flex;
  height: 100%;
}
.navBnr__link:hover {
  opacity: 1;
}
.navBnr__link:hover .navBnr__textEn::after {
  translate: 8px 0;
}
.navBnr__link:hover .navBnr__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.navBnr__fig {
  overflow: hidden;
}
.navBnr__img {
  display: block;
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 101%;
  transition: 0.5s;
}
.navBnr__textEn, .navBnr__textJa {
  color: #fff;
}
.navBnr__textEn {
  font-family: mundial, sans-serif;
  font-size: 3.3rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  padding: 0 20px 0 0;
  position: relative;
}
.navBnr__textEn::after {
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  bottom: 4px;
  content: "";
  display: block;
  height: 11px;
  position: absolute;
  right: 0;
  -webkit-transform: translate(-25%, 0%) rotate(45deg);
          transform: translate(-25%, 0%) rotate(45deg);
  transition: translate 0.2s;
  width: 11px;
}
@media screen and (max-width: 768px) {
  .navBnr__textEn::after {
    border-right-width: 2px;
    border-top-width: 2px;
    height: 8px;
    width: 8px;
  }
}
.navBnr__textEn_link_ext::after {
  background: no-repeat center url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2013.87%2013.87%22%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.cls-1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20none%3B%0A%20%20%20%20%20%20%20%20stroke%3A%20%23fff%3B%0A%20%20%20%20%20%20%20%20stroke-miterlimit%3A%2010%3B%0A%20%20%20%20%20%20%20%20stroke-width%3A%201.27px%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cg%20id%3D%22design%22%3E%0A%20%20%20%20%3Cg%3E%0A%20%20%20%20%20%20%3Cpolyline%20class%3D%22cls-1%22%20points%3D%2213.23%208.08%2013.23%2013.23%20.64%2013.23%20.64%20.64%205.78%20.64%22%2F%3E%0A%20%20%20%20%20%20%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.23%22%20y1%3D%22.64%22%20x2%3D%226.93%22%20y2%3D%226.93%22%2F%3E%0A%20%20%20%20%20%20%3Cpolyline%20class%3D%22cls-1%22%20points%3D%228.13%20.64%2013.23%20.64%2013.23%205.74%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  border: none;
  height: 13px;
  right: -7px;
  -webkit-transform: none;
          transform: none;
  width: 13px;
}
@media screen and (max-width: 768px) {
  .navBnr__textEn_link_ext::after {
    height: 10px;
    width: 10px;
  }
}
@media screen and (max-width: 768px) {
  .navBnr__textEn {
    font-size: 2.1rem;
  }
}
.navBnr__textJa {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .navBnr__textJa {
    font-size: 1.3rem;
  }
}
.navBnr__fig, .navBnr__textArea {
  height: 100%;
}
.navBnr__textArea {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
}
.navBnr__text {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .navBnr__text {
    gap: 8px;
  }
}
.navBnr__fig, .navBnr__textArea {
  width: 50%;
}
.navBnr__textArea {
  padding: 42px 39px 0;
}
@media screen and (max-width: 768px) {
  .navBnr__textArea {
    padding: 0 10px;
  }
}

.body.news {
  position: relative;
  margin: auto;
}
.body.news::after {
  content: none;
  display: block;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
}
.body.news.is_modalOpened::after {
  content: "";
  z-index: 1000;
}

.newsSearchModal {
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  margin: auto;
  padding: 80px 40px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  display: block;
  opacity: 0;
  z-index: -10;
  transition: opacity 0.2s;
}
.newsSearchModal.is_modalOpened {
  opacity: 1;
  z-index: 1001;
  visibility: visible;
}
.newsSearchModal__inner {
  display: block;
  max-width: 1000px;
  max-height: calc(100vh - 160px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 15px 0 40px;
  margin: auto;
  background: #f1f2f3;
  overflow-y: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1050px) {
  .newsSearchModal__inner {
    max-width: calc(100% - 50px);
  }
}
.newsSearchModal__wrapper {
  margin: 0 55px;
  padding: 34px 0;
}
.newsSearchModal__wrapper + .newsSearchModal__wrapper {
  border-top: 1px solid #00bfd3;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__wrapper {
    margin: 0 22px;
  }
}
.newsSearchModal__wrapper_type_free {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__wrapper_type_free {
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    row-gap: 15px;
  }
}
.newsSearchModal__wrapper_type_free .newsSearchModal__list {
  -webkit-flex: 0 1 500px;
          flex: 0 1 500px;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__wrapper_type_free .newsSearchModal__list {
    -webkit-flex: 0;
            flex: 0;
    width: 100%;
    margin-right: 0;
  }
}
.newsSearchModal__wrapper_type_free .newsSearchModal__item {
  width: 100%;
}
.newsSearchModal__wrapper_type_free .newsSearchModal__label {
  position: relative;
  width: 100%;
}
.newsSearchModal__wrapper_type_free .newsSearchModal__label::after {
  content: "";
  display: block;
  background: url(../../../images/common/icon_search_turquoise.svg) no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  left: auto;
  margin: auto;
  pointer-events: none;
}
.newsSearchModal__wrapper_type_year .newsSearchModal__list {
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 16px;
  max-width: 530px;
  height: 1.5em;
  overflow: hidden;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__wrapper_type_year .newsSearchModal__list {
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
  }
}
@media screen and (max-width: 480px) {
  .newsSearchModal__wrapper_type_year .newsSearchModal__list {
    height: calc(3em + 14px);
  }
}
@media screen and (max-width: 768px) {
  .newsSearchModal__wrapper_type_year .newsSearchModal__label {
    min-width: calc(3em + 23px);
  }
}
.newsSearchModal__wrapper_type_business {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__wrapper_type_business {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    row-gap: 15px;
    height: auto;
  }
}
.newsSearchModal__wrapper_type_business .newsSearchModal__list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 1 500px;
          flex: 0 1 500px;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  transition: 0.2s;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__wrapper_type_business .newsSearchModal__list {
    -webkit-flex: 0 1 100%;
            flex: 0 1 100%;
    width: 100%;
    margin-right: 0;
  }
}
.newsSearchModal__wrapper_type_business .newsSearchModal__list.is_listOpened .newsSearchModal__selectBtn::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.newsSearchModal__wrapper_type_business .newsSearchModal__item {
  position: relative;
}
.newsSearchModal__wrapper_type_business .newsSearchModal__item::before {
  content: "";
  display: block;
  background-color: #000;
  -webkit-mask-image: url(../images/common/icon_arrow_down_black.svg);
          mask-image: url(../images/common/icon_arrow_down_black.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 12px 8px;
          mask-size: 12px 8px;
  -webkit-mask-position: center;
          mask-position: center;
  width: 23px;
  height: 19px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 13px;
  margin: auto;
  transition: 0.2s;
  pointer-events: none;
}
.newsSearchModal__wrapper_type_sector .newsSearchModal__list {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 16px;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__wrapper_type_sector .newsSearchModal__list {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.newsSearchModal__wrapper_type_submit {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__wrapper_type_submit {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.newsSearchModal__yearWrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__yearWrapper {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
}
.newsSearchModal__ttl {
  min-width: 9.5em;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__ttl {
    font-size: 1.8rem;
    padding: 0;
    min-width: none;
    width: 100%;
  }
}
.newsSearchModal__annotation {
  font-size: 1.3rem;
  margin-top: 10px;
  margin-bottom: 20px;
}
.newsSearchModal__list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.newsSearchModal__label {
  display: block;
  font-size: 1.6rem;
  position: relative;
}
.newsSearchModal__label_type_checkbox {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
}
.newsSearchModal__label_type_select {
  line-height: 2.5;
  font-size: 1.6rem;
  padding: 0 18px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__label_type_select {
    padding: 0 14px;
    line-height: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .newsSearchModal__label {
    font-size: 1.4rem;
  }
}
.newsSearchModal__text {
  width: 100%;
  height: 40px;
  background: #fff;
  border: 1px solid #e3e5e7;
  border-radius: 0;
  font-size: 1.8rem;
  padding: 6.5px 45px 6.5px 5px;
  position: relative;
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline-offset: unset;
  transition: 0.2s;
}
.newsSearchModal__text:focus {
  border: 1px solid #00bfd3;
  outline: none;
  border-radius: 0;
}
.newsSearchModal__checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #878787;
  background: #fff;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}
.newsSearchModal__checkbox:checked::after {
  content: "";
  background: url(../../../images/common/icon_checked.svg) no-repeat;
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.newsSearchModal__submit {
  margin: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  width: 300px;
  font-weight: 500;
  font-size: 1.6rem;
  background: #66d5de;
  padding: 18px 0;
  transition: 0.2s;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.newsSearchModal__submit::after {
  content: "";
  background: url(../../../images/common/icon_arrow_down_black.svg) no-repeat;
  display: block;
  width: 12px;
  height: 8px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.newsSearchModal__submit:hover {
  opacity: 1;
  background: #00bfd3;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__submit {
    width: 100%;
    padding: 14px 0;
  }
}
.newsSearchModal__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: left;
  background: #fff;
  width: 100%;
  line-height: 2.5;
  font-size: 1.6rem;
  padding: 0 18px;
  outline-offset: unset;
  border: 1px solid #e3e5e7;
  border-radius: 0;
  transition: 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__select {
    font-size: 1.4rem;
    padding: 0 14px;
    line-height: 4rem;
  }
}
.newsSearchModal__select:focus {
  border: 1px solid #00bfd3;
  outline: none;
  border-radius: 0;
}
.newsSearchModal__select:hover {
  opacity: 1;
}
.newsSearchModal__close {
  position: absolute;
  padding: 4px;
  display: block;
  width: 24px;
  height: 24px;
  top: 31px;
  left: auto;
  right: 36px;
  margin: auto;
  cursor: pointer;
}
.newsSearchModal__close::after {
  content: "";
  background: url(../../../images/common/icon_close_black.svg) no-repeat;
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  .newsSearchModal__close {
    top: 14px;
    right: 18px;
  }
}
.newsSearchModal__more {
  padding: 4px;
  display: block;
  width: 20px;
  height: 16px;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
  cursor: pointer;
  transition: 0.2s;
}
.newsSearchModal__more::after {
  content: "";
  background: url(../../../images/common/icon_arrow_down_black.svg) no-repeat;
  position: absolute;
  display: block;
  width: 12px;
  height: 8px;
}
.newsSearchModal__more.is_listOpened {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.simplebar-track {
  width: 2px;
}

.simplebar-track.simplebar-vertical {
  margin-top: 16px;
  margin-bottom: 16px;
  right: 10px;
  height: calc(100% - 32px) !important;
}
@media screen and (max-width: 768px) {
  .simplebar-track.simplebar-vertical {
    margin-top: 54px;
    height: calc(100% - 70px) !important;
  }
}

.simplebar-scrollbar .simplebar-visible {
  background: #00bfd3;
}

.pageTop {
  position: absolute;
  right: 60px;
  top: 88px;
}
@media screen and (max-width: 1400px) {
  .pageTop {
    right: 10px;
  }
}
@media screen and (max-width: 1050px) {
  .pageTop {
    right: 25px;
    top: 45px;
  }
}
.pageTop__link {
  -webkit-align-items: center;
          align-items: center;
  color: #000;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  min-width: 50px;
  padding: 50px 0 0;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .pageTop__link {
    min-width: 36px;
    padding: 36px 0 0;
  }
}
.pageTop__link::before {
  background: #00bfd3;
  content: "";
  display: block;
  height: 50px;
  inset: 0;
  margin: 0 auto auto;
  position: absolute;
  width: 50px;
}
@media screen and (max-width: 768px) {
  .pageTop__link::before {
    height: 36px;
    width: 36px;
  }
}
.pageTop__link::after {
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  content: "";
  display: block;
  height: 11px;
  left: 50%;
  position: absolute;
  top: 25px;
  -webkit-transform: translate(-50%, -25%) rotate(45deg);
          transform: translate(-50%, -25%) rotate(45deg);
  transition: translate 0.2s;
  width: 11px;
}
@media screen and (max-width: 768px) {
  .pageTop__link::after {
    border-left-width: 2px;
    border-top-width: 2px;
    height: 8px;
    top: 18px;
    width: 8px;
  }
}
.pageTop .pageTop__link:hover {
  opacity: 0.6;
}
.pageTop__text {
  color: #00bfd3;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-top: 18px;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 1050px) {
  .pageTop__text {
    font-size: 1.2rem;
    letter-spacing: 0;
    margin-top: 13px;
  }
}

.subSubTtl {
  font-size: 2.2rem;
  font-weight: 500;
  position: relative;
  display: block;
}
@media screen and (max-width: 1050px) {
  .subSubTtl {
    font-size: 1.4rem;
  }
}
.subSubTtl_decoration_line {
  padding-bottom: 20px;
}
.subSubTtl_decoration_line::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #00bfd3;
}
.subSubTtl_vertical_line {
  font-size: 3.5rem;
  line-height: 1.16;
  font-weight: 400;
  padding-left: 28px;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .subSubTtl_vertical_line {
    line-height: 1.28;
    padding-left: 16px;
  }
}
.subSubTtl_vertical_line::before {
  content: "";
  width: 12px;
  height: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  margin: auto;
  background-color: #00bfd3;
}
@media screen and (max-width: 768px) {
  .subSubTtl_vertical_line::before {
    width: 7px;
  }
}

.subTtl {
  font-size: 3.5rem;
  font-weight: 700;
}
@media screen and (max-width: 1050px) {
  .subTtl {
    font-size: 1.7rem;
  }
}

/**
 * Swiper 11.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 30, 2024
 */
/* FONT_START */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-flex;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: none;
          scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-order: 9999;
          order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.componentFrame__inner {
  border: 1px solid #00bfd3;
  padding: 30px 40px 35px;
  width: 100%;
  margin: 60px auto;
}
@media screen and (max-width: 768px) {
  .componentFrame__inner {
    padding: 25px 24px;
    margin: 0 25px;
    width: calc(100% - 50px);
  }
}
.componentFrame__wrapper + .componentFrame__note p:first-child {
  margin-top: 20px;
}
.componentFrame__note .componentFrame__ttl {
  font-size: 1.2rem;
}
.componentFrame__note p:not(.componentFrame__ttl) {
  font-size: 1.2rem;
}
.componentFrame__ttl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .componentFrame__ttl {
    font-size: 1.4rem;
    line-height: 1.85;
  }
}
.componentFrame p {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .componentFrame p {
    font-size: 1.4rem;
    line-height: 1.66;
  }
}

.componentHeading__ttl {
  font-size: 2.4rem;
  line-height: 2;
  margin: 60px auto 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .componentHeading__ttl {
    font-size: 1.7rem;
    margin: 48px 25px 16px;
  }
}

.componentImage__fig {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 75px auto;
}
@media screen and (max-width: 768px) {
  .componentImage__fig {
    width: 100%;
    margin: 40px auto;
  }
}
.componentImage__img {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .componentImage__img {
    width: 100%;
  }
}
.componentImage__caption, .componentImage__caption p {
  text-align: center;
  color: #858585;
  margin-top: 35px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .componentImage__caption, .componentImage__caption p {
    margin: 15px 25px 0;
  }
}
.componentImage__link {
  display: block;
  transition: 0.2s;
}
.componentImage__link:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .componentImageBox_type_left .componentImageBox__fig {
    -webkit-order: 1;
            order: 1;
  }
}
.componentImageBox_type_right .componentImageBox__fig {
  -webkit-order: 1;
          order: 1;
}
.componentImageBox__inner {
  display: -webkit-flex;
  display: flex;
  -webkit-column-gap: 57px;
     -moz-column-gap: 57px;
          column-gap: 57px;
  margin: 80px auto;
}
@media screen and (max-width: 1050px) {
  .componentImageBox__inner {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .componentImageBox__inner {
    -webkit-flex-direction: column;
            flex-direction: column;
    margin: 50px auto;
  }
}
.componentImageBox__fig {
  display: block;
  width: 430px;
  text-align: center;
}
@media screen and (max-width: 1050px) {
  .componentImageBox__fig {
    width: 360px;
  }
}
@media screen and (max-width: 768px) {
  .componentImageBox__fig {
    max-width: none;
    width: 100%;
  }
}
.componentImageBox__img {
  vertical-align: middle;
  width: auto;
}
@media screen and (max-width: 768px) {
  .componentImageBox__img {
    width: 100%;
  }
}
.componentImageBox__caption {
  color: #858585;
  margin-top: 15px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .componentImageBox__caption {
    margin: 15px 25px 0;
  }
}
.componentImageBox__wrapper {
  width: calc(100% - 430px - 57px);
}
@media screen and (max-width: 1050px) {
  .componentImageBox__wrapper {
    width: calc(100% - 360px - 30px);
  }
}
@media screen and (max-width: 768px) {
  .componentImageBox__wrapper {
    width: calc(100% - 50px);
    margin: 0 25px 40px;
  }
}
.componentImageBox__wrapper p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .componentImageBox__wrapper p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.componentImageBox__ttl {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .componentImageBox__ttl {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.componentImageBox__linkWrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .componentImageBox__linkWrapper {
    margin-top: 20px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.componentImageBox .componentLink + .componentLink .componentLink__inner {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .componentImageBox .componentLink__inner {
    margin-left: 0;
    margin-right: 0;
  }
}

.componentImageList__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 70px;
  margin: 60px auto;
}
@media screen and (max-width: 1050px) {
  .componentImageList__list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .componentImageList__list {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 30px 38px;
  }
}
.componentImageList__img {
  vertical-align: middle;
  width: 100%;
}
.componentImageList__caption {
  text-align: center;
  color: #858585;
  margin-top: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .componentImageList__caption {
    margin: 10px 25px 0;
  }
}

.componentLeadTxt p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .componentLeadTxt p {
    font-size: 1.4rem;
    margin: 0 25px;
  }
}

.componentLink + .componentLink .componentLink__inner {
  margin-top: 8px;
}
.componentLink__inner {
  display: -webkit-flex;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .componentLink__inner {
    margin: 16px 25px 0;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.componentLink__tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #00bfd3;
  font-family: mundial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  padding: 5px 10px 6px;
  margin: 2px 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .componentLink__tag {
    padding: 3px 6px 4px;
  }
}
.componentLink__link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #858585;
  transition: 0.2s;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .componentLink__link {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.componentLink__link:hover {
  opacity: 0.6;
}
.componentLink__link::after {
  content: "";
  display: inline-block;
  background: url(../../../images/common/icon_external_turquoise.svg) no-repeat;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  margin-bottom: -1px;
  margin-left: 12px;
  line-height: 2.4rem;
}
@media screen and (max-width: 768px) {
  .componentLink__link::after {
    width: 10px;
    height: 10px;
    margin-left: 8px;
  }
}

.componentMail__link {
  margin: 30px auto 30px 0;
  width: 390px;
}
@media screen and (max-width: 768px) {
  .componentMail__link {
    margin: 30px 25px;
    width: calc(100% - 50px);
  }
}

.componentMovie iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.componentMovie__inner {
  margin: 75px auto;
}
@media screen and (max-width: 768px) {
  .componentMovie__inner {
    margin: 40px auto;
  }
}
.componentMovie__caption {
  text-align: center;
  color: #858585;
  margin-top: 35px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .componentMovie__caption {
    margin: 15px 25px 0;
  }
}

.componentSubHeading__ttl {
  font-size: 2rem;
  line-height: 2;
  margin: 30px auto 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .componentSubHeading__ttl {
    font-size: 1.5rem;
    margin: 30px 25px 16px;
  }
}

.componentText + .componentText {
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .componentText + .componentText {
    margin-top: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .componentText__inner {
    margin: 0 25px;
  }
}
.componentText * {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  line-height: 2;
}
.componentText p,
.componentText a,
.componentText li {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .componentText p,
  .componentText a,
  .componentText li {
    font-size: 1.4rem;
  }
}
.componentText h1,
.componentText h1 span {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 20px auto 16px;
}
@media screen and (max-width: 768px) {
  .componentText h1,
  .componentText h1 span {
    font-size: 1.7rem;
    margin: 16px auto;
  }
}
.componentText h2,
.componentText h2 span,
.componentText h3,
.componentText h3 span {
  font-size: 2rem;
  font-weight: 500;
  margin: 30px auto 16px;
}
@media screen and (max-width: 768px) {
  .componentText h2,
  .componentText h2 span,
  .componentText h3,
  .componentText h3 span {
    font-size: 1.5rem;
  }
}
.componentText ol {
  counter-reset: li;
}
.componentText ol li::before {
  counter-increment: li;
  content: counter(li) ". ";
}
.componentText li {
  list-style: none;
}
.componentText a {
  color: #848485;
  text-decoration: underline;
  transition: 0.2s;
}
.componentText a:hover {
  opacity: 0.6;
}
.componentText span {
  font-size: inherit;
}
.componentText hr {
  border-top: 1px solid #00bfd3;
  margin: 0.8rem 0;
}

.susCard {
  --susCard-color: #00bfd3;
  background-color: #fff;
  border: 1px solid var(--susCard-color);
  border-radius: 6.781px;
  display: grid;
  font-size: 1.6rem;
  gap: 0;
  grid-row: span 3;
  grid-template-rows: auto 1fr;
  grid-template-rows: subgrid;
  height: auto;
  height: auto;
  min-width: min(529px, 100%);
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .susCard {
    border-radius: 8.641px;
    font-size: 1.2rem;
  }
}
.susCard:only-child {
  grid-column: 1/-1;
}
.susCard__head {
  background: color-mix(in srgb, var(--susCard-color) 20%, #fff);
  padding: 14px 40px 15px;
}
@media screen and (max-width: 768px) {
  .susCard__head {
    padding: 8px 24px 10px;
  }
}
.susCard__title {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.2222222222;
  text-align: center;
}
@media screen and (max-width: 1050px) {
  .susCard__title {
    font-size: 1.0833333333em;
  }
}
.susCard__body {
  -webkit-align-content: space-between;
          align-content: space-between;
  display: grid;
  gap: 14px;
  grid-auto-columns: minmax(0, 1fr);
  grid-row: span 2;
  grid-template-rows: subgrid;
  padding: 20px 41px 26px;
}
@media screen and (max-width: 1200px) {
  .susCard__body {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 1050px) {
  .susCard__body {
    padding: 13px 24px 16px;
  }
}
@media screen and (max-width: 768px) {
  .susCard__body {
    gap: 6px;
  }
}
.susCard__body_gap_lg {
  gap: 37px;
}
@media screen and (max-width: 1050px) {
  .susCard__body_gap_lg {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .susCard__body > .susCard__columns {
    display: grid;
  }
}
.susCard__columns {
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .susCard__columns {
    gap: 16px;
  }
}
.susCard__columns_jc_evenly {
  -webkit-justify-content: space-evenly;
          justify-content: space-evenly;
}
.susCard__columns_gap_md {
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .susCard__columns_gap_md {
    gap: 16px;
  }
}
.susCard__columns_gap_lg {
  gap: 37px;
}
@media screen and (max-width: 1200px) {
  .susCard__columns_gap_lg {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media screen and (max-width: 1050px) {
  .susCard__columns_gap_lg {
    gap: 10px 24px;
  }
}
@media screen and (max-width: 768px) {
  .susCard__columns_gap_lg {
    gap: 10px;
  }
}
.susCard__unit {
  display: grid;
  -webkit-flex: 1 1 0;
          flex: 1 1 0;
  gap: 12px;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 768px) {
  .susCard__unit {
    gap: 8px;
  }
}
.susCard__unit_size_lg {
  -webkit-flex-grow: 1.52;
          flex-grow: 1.52;
}
@media screen and (max-width: 1200px) {
  .susCard__unit_size_lg {
    -webkit-flex-grow: 1.68;
            flex-grow: 1.68;
  }
}
@media screen and (max-width: 1050px) {
  .susCard__unit_size_lg {
    -webkit-flex-grow: 1.52;
            flex-grow: 1.52;
  }
}
.susCard__unit_size_xl {
  -webkit-flex-grow: 2.2;
          flex-grow: 2.2;
}
.susCard__unit:last-child .susCard__unitContents:has(.susCard__text) {
  padding-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .susCard__unit:last-child .susCard__unitContents:has(.susCard__text) {
    padding-bottom: 4px;
  }
}
.susCard__unitTitle {
  border-bottom: 1px solid var(--susCard-color);
  letter-spacing: 0.03em;
  line-height: 1.75;
  padding-bottom: 4px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .susCard__unitTitle {
    padding-bottom: 3px;
  }
}
.susCard__unitContents {
  display: grid;
}
.susCard__unitContents_ai_center {
  -webkit-align-items: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .susCard__unitContents .susCard__columns {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.susCard__text {
  font-size: inherit;
  letter-spacing: 0.03em;
  line-height: 1.75;
  text-align: justify;
}
@media screen and (max-width: 1050px) {
  .susCard__text {
    line-height: 1.6666666667;
  }
}
.susCard__text_type_emphasis {
  color: var(--susCard-color);
  font-size: 2.8rem;
  font-size: 1.75em;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0;
}
@media screen and (max-width: 1050px) {
  .susCard__text_type_emphasis {
    font-size: 1.3333333333em;
  }
}
.susCard__text_color_current {
  color: var(--susCard-color);
}
.susCard__result {
  display: grid;
  grid-template-rows: 1fr auto;
}
@media screen and (max-width: 768px) {
  .susCard__result {
    gap: 2px;
  }
}
.susCard__result_type_horizontal {
  -webkit-align-items: center;
          align-items: center;
  display: grid;
  gap: 6px 23px;
  grid-auto-flow: column;
  grid-template-rows: unset;
  -webkit-justify-content: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .susCard__result_type_horizontal {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
}
@media screen and (max-width: 1050px) {
  .susCard__result_type_horizontal {
    -webkit-column-gap: 23px;
       -moz-column-gap: 23px;
            column-gap: 23px;
  }
}
@media screen and (max-width: 768px) {
  .susCard__result_type_horizontal {
    gap: 3px 23px;
    grid-template-rows: 1fr auto;
  }
}
.susCard__result_type_horizontal .susCard__resultTerm {
  text-align: justify;
  word-break: unset;
}
@media screen and (max-width: 768px) {
  .susCard__result_type_horizontal .susCard__resultTerm {
    line-height: 1.6666666667;
    text-align: center;
    word-break: keep-all;
  }
}
.susCard__resultTerm {
  -webkit-align-self: center;
          align-self: center;
  letter-spacing: 0.03em;
  line-height: 1.75;
  overflow-wrap: anywhere;
  text-align: center;
  word-break: keep-all;
}
@media screen and (max-width: 1050px) {
  .susCard__resultTerm {
    letter-spacing: 0;
    line-height: 1.4166666667;
  }
}
.susCard__resultDesc {
  display: grid;
  gap: 6px 10px;
}
.susCard__resultDesc:has(.susCard__resultBreakdown) {
  -webkit-align-items: center;
          align-items: center;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
}
@media screen and (max-width: 768px) {
  .susCard__resultDesc:has(.susCard__resultBreakdown) {
    grid-auto-flow: unset;
    row-gap: 2px;
  }
}
.susCard__resultDescTextBlock {
  text-align: center;
  white-space: nowrap;
}
.susCard__resultDescText {
  display: inline-block;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1050px) {
  .susCard__resultDescText {
    font-size: 1.2rem;
    font-weight: 400;
  }
}
.susCard__resultDescText_type_combine {
  font-size: 1.995rem;
  line-height: 1.2746315789;
  translate: 0.2005012531em 0.1002506266em;
}
@media screen and (max-width: 1050px) {
  .susCard__resultDescText_type_combine {
    font-size: 1em;
    line-height: 1.1666666667;
    translate: 0.3333333333em 0.0833333333em;
  }
}
.susCard__resultDescText_type_alphanumeric {
  font-size: 2.65581rem;
}
@media screen and (max-width: 1050px) {
  .susCard__resultDescText_type_alphanumeric {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0;
  }
}
.susCard__resultDescText_type_em {
  color: var(--susCard-color);
  font-size: 5.20234rem;
  font-weight: 700;
  letter-spacing: inherit;
  line-height: 1.1917713952;
}
@media screen and (max-width: 1050px) {
  .susCard__resultDescText_type_em {
    font-size: 2.73rem;
  }
}
.susCard__resultDescText_type_emNum {
  color: var(--susCard-color);
  font-family: mundial, sans-serif;
  font-size: 6.74898rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.6519503688;
  translate: 0 0.0444511615em;
}
@media screen and (max-width: 1050px) {
  .susCard__resultDescText_type_emNum {
    font-size: 3.51rem;
  }
}
.susCard__resultDescText_type_emNum:has(.susCard__resultDescText_size_larger) ~ .susCard__resultDescText_type_em {
  font-size: 5.8rem;
  letter-spacing: inherit;
}
@media screen and (max-width: 1050px) {
  .susCard__resultDescText_type_emNum:has(.susCard__resultDescText_size_larger) ~ .susCard__resultDescText_type_em {
    font-size: 2.73rem;
  }
}
.susCard__resultDescText_type_decimalPoint {
  font-size: 70%;
  letter-spacing: inherit;
}
@media screen and (max-width: 1050px) {
  .susCard__resultDescText_type_decimalPoint {
    font-size: 100%;
  }
}
.susCard__resultDescText_size_larger {
  font-size: 116.6478490083%;
  font-weight: 600;
  letter-spacing: inherit;
}
@media screen and (max-width: 1050px) {
  .susCard__resultDescText_size_larger {
    font-size: 100%;
  }
}
.susCard__resultNote {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  margin-bottom: -1em;
  text-align: right;
}
@media screen and (max-width: 1050px) {
  .susCard__resultNote {
    font-size: 1rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .susCard__resultNote {
    margin-bottom: 0;
  }
}
.susCard__resultBreakdown {
  line-height: 1.75;
  padding-left: 3em;
  text-indent: -3em;
}
@media screen and (max-width: 1050px) {
  .susCard__resultBreakdown {
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 1.6666666667;
  }
}
.susCard__resultListItem {
  display: -webkit-flex;
  display: flex;
  font-size: 1.6rem;
  gap: 1em;
  line-height: 2.6875;
}
@media screen and (max-width: 1050px) {
  .susCard__resultListItem {
    font-size: 1.2rem;
    line-height: 2.6666666667;
  }
}
.susCard__resultListText {
  letter-spacing: 0.03em;
}
.susCard__resultListText_color_current {
  color: var(--susCard-color);
}
.susCard__resultListText_weight_bold {
  font-weight: 700;
  letter-spacing: inherit;
}
.susCard__resultListText_type_em {
  color: var(--susCard-color);
  font-size: 3.35rem;
  font-weight: 800;
  letter-spacing: 0.023em;
  line-height: 0.9;
}
@media screen and (max-width: 1050px) {
  .susCard__resultListText_type_em {
    font-size: 2.56rem;
    letter-spacing: 0.013em;
  }
}
.susCard_color_violet {
  --susCard-color: #6464C3;
}
.susCard_color_orange {
  --susCard-color: #FF7846;
}

.susFooter {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  background-color: #ccf1f4;
  padding-top: 56px;
  padding-bottom: 80px;
  position: relative;
}
.susFooter a:hover {
  opacity: 1;
}
@media screen and (max-width: 1050px) {
  .susFooter {
    padding-top: 50px;
    padding-bottom: 70px;
    width: 100vw;
  }
}
.susFooter__container {
  margin: auto;
}
@media screen and (min-width: 1051px) {
  .susFooter__container {
    max-width: 1200px;
    width: 100%;
    padding: 0 60px;
  }
}
.susFooter__nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media screen and (max-width: 1050px) {
  .susFooter__nav {
    gap: 0;
    padding: 37px 30px 0;
  }
}
@media screen and (min-width: 1051px) {
  .susFooter__box {
    min-width: 180px;
    width: 17%;
  }
}
@media screen and (max-width: 1050px) {
  .susFooter__box {
    margin-bottom: 4px;
    width: 100%;
  }
}
.susFooter__mainTtl {
  font-family: mundial, sans-serif;
  font-weight: 600;
  margin-bottom: 48px;
  font-size: 1.8rem;
}
@media screen and (max-width: 1050px) {
  .susFooter__mainTtl {
    margin: 0 30px;
  }
}
.susFooter__subTtl {
  border-bottom: 1px solid #b9bec3;
  margin-bottom: 10px;
  padding-bottom: 25px;
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (max-width: 1050px) {
  .susFooter__subTtl {
    cursor: pointer;
    margin-bottom: 16px;
    padding-bottom: 18px;
    position: relative;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1050px) {
  .susFooter__subTtl::after {
    background: #00bfd3;
    content: "";
    display: block;
    height: 4px;
    left: auto;
    margin: auto;
    position: absolute;
    right: 24px;
    top: auto;
    bottom: 24px;
    transition: 0.4s;
    width: 8px;
  }
}
.susFooter__subTtl.is_open::after {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
@media screen and (max-width: 1050px) {
  .susFooter__list {
    display: none;
  }
}
.susFooter__list + .susFooter__list {
  margin-top: 12px;
}
@media screen and (max-width: 1050px) {
  .susFooter__list + .susFooter__list {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1050px) {
  .susFooter__box .susFooter__list {
    margin-bottom: 20px;
  }
}
.susFooter__link {
  color: #000;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  padding: 9px 0;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .susFooter__link {
    font-size: 1.1rem;
    padding: 8px 0;
    font-weight: 500;
    width: 100%;
  }
}
.susFooter__link span {
  position: relative;
  padding-right: 22.5px;
  display: inline-block;
}
@media screen and (max-width: 1050px) {
  .susFooter__link span {
    position: static;
  }
}
.susFooter__link span::after {
  background: #00bfd3;
  bottom: 7.25px;
  content: "";
  display: block;
  height: 3.5px;
  left: auto;
  margin: auto;
  position: absolute;
  right: 7.5px;
  top: auto;
  transition: 0.2s;
  width: 7.5px;
}
@media screen and (max-width: 1050px) {
  .susFooter__link span::after {
    right: 24px;
    bottom: 15px;
  }
}
.susFooter__link:hover span::after {
  right: 2.5px;
}
@media screen and (max-width: 1050px) {
  .susFooter__link:hover span::after {
    right: 19px;
  }
}
.susFooter__link[target=_blank] span::after {
  background: url(../images/common/icon_external_turquoise.svg) no-repeat;
  height: 8px;
  width: 8px;
  bottom: 5px;
}
@media screen and (max-width: 1050px) {
  .susFooter__link[target=_blank] span::after {
    bottom: 12px;
  }
}
.susFooter__link.is_current {
  pointer-events: none;
}
.susFooter__link.is_current span {
  color: #b9bec3;
}
.susFooter__link.is_current span::after {
  background: #b9bec3;
}

.susFooter + .footer {
  margin-top: 0;
}

.susLinkList {
  display: -webkit-flex;
  display: flex;
  gap: 37px;
}
@media screen and (max-width: 1050px) {
  .susLinkList {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.susLinkList__item {
  width: 100%;
}
.susLinkList__link {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  height: 100%;
  min-height: 70px;
  border: 1px solid #00bfd3;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 1050px) {
  .susLinkList__link {
    font-size: 1.5rem;
    line-height: 2.4rem;
    min-height: 57px;
    -webkit-justify-content: center;
            justify-content: center;
    text-align: center;
  }
}
.susLinkList__link::after {
  content: "";
  background: url(../../../images/common/icon_arrow_down_turquoise.svg) no-repeat;
  background-position: center;
  width: 12.5px;
  height: 8.2px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 33px;
  left: auto;
  margin: auto;
  transition: 0.2s;
}
.susLinkList__link:hover {
  opacity: 1;
  background: #ccf1f4;
  border: 1px solid #ccf1f4;
}
.susLinkList__link:hover::after {
  bottom: -10px;
}

.susPagination {
  margin-top: 130px;
  margin-bottom: 134px;
}
@media screen and (max-width: 1050px) {
  .susPagination {
    margin-top: 100px;
    margin-bottom: 60px;
  }
}
.susPagination__list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-column-gap: 120px;
     -moz-column-gap: 120px;
          column-gap: 120px;
}
@media screen and (max-width: 1050px) {
  .susPagination__list {
    -webkit-column-gap: 23px;
       -moz-column-gap: 23px;
            column-gap: 23px;
  }
}
.susPagination__item {
  width: 100%;
}
.susPagination__item_type_prev .susPagination__link {
  padding-left: 68px;
  padding-right: 15px;
}
@media screen and (max-width: 1050px) {
  .susPagination__item_type_prev .susPagination__link {
    padding-left: 32px;
    padding-right: 8px;
  }
}
.susPagination__item_type_prev .susPagination__link::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  left: 31px;
}
@media screen and (max-width: 1050px) {
  .susPagination__item_type_prev .susPagination__link::before {
    left: 14px;
  }
}
.susPagination__item_type_prev .susPagination__link:hover:before {
  left: 24px;
}
@media screen and (max-width: 1050px) {
  .susPagination__item_type_prev .susPagination__link:hover:before {
    left: 9px;
  }
}
.susPagination__item_type_next {
  text-align: right;
}
.susPagination__item_type_next .susPagination__link {
  padding-right: 68px;
  padding-left: 15px;
}
@media screen and (max-width: 1050px) {
  .susPagination__item_type_next .susPagination__link {
    padding-right: 32px;
    padding-left: 8px;
  }
}
.susPagination__item_type_next .susPagination__link::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  left: auto;
  right: 31px;
}
@media screen and (max-width: 1050px) {
  .susPagination__item_type_next .susPagination__link::before {
    right: 14px;
  }
}
.susPagination__item_type_next .susPagination__link:hover:before {
  right: 24px;
}
@media screen and (max-width: 1050px) {
  .susPagination__item_type_next .susPagination__link:hover:before {
    right: 9px;
  }
}
.susPagination__item_visibility_hidden {
  visibility: hidden;
}
.susPagination__link {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  width: inherit;
  height: 130px;
  background: #e3e5e7;
  transition: 0.2s;
  position: relative;
  row-gap: 4px;
  padding-bottom: 8px;
}
@media screen and (max-width: 1050px) {
  .susPagination__link {
    height: 92px;
    padding-bottom: 0;
  }
}
.susPagination__link:hover {
  background: #00bfd3;
  opacity: 1;
}
.susPagination__link::before {
  content: "";
  background-image: url(../../../images/common/icon_arrow_down_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 10px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 4px;
  margin: auto;
  transition: 0.2s;
}
@media screen and (max-width: 1050px) {
  .susPagination__link::before {
    width: 9.6px;
    height: 6.3px;
  }
}
.susPagination__cat {
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (max-width: 1050px) {
  .susPagination__cat {
    font-size: 0.8rem;
  }
}
.susPagination__ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (max-width: 1050px) {
  .susPagination__ttl {
    font-size: 1.2rem;
  }
}
.susPagination__ttl span {
  margin-left: -0.12em;
  letter-spacing: -0.13em;
}

.susProcess {
  counter-reset: number 0;
  display: grid;
  gap: 44px;
  grid-auto-columns: minmax(0, 1fr);
  list-style: none;
}
@media screen and (max-width: 1050px) {
  .susProcess {
    gap: 36px;
  }
}
.susProcess__item {
  counter-increment: number 1;
  display: grid;
  grid-template-columns: 262px minmax(0, 1fr);
  min-height: 148px;
}
@media screen and (max-width: 1050px) {
  .susProcess__item {
    grid-template-columns: 200px minmax(0, 1fr);
    min-height: 140px;
  }
}
@media screen and (max-width: 768px) {
  .susProcess__item {
    grid-template-columns: minmax(0, 1fr);
  }
}
.susProcess__item:not(:last-child) {
  position: relative;
}
.susProcess__item:not(:last-child)::after {
  aspect-ratio: 1;
  border-bottom: 4px solid #00bfd3;
  border-right: 4px solid #00bfd3;
  content: "";
  height: auto;
  left: 101px;
  position: absolute;
  rotate: 45deg;
  top: 100%;
  translate: 0 100%;
  width: 13.5px;
}
@media screen and (max-width: 1050px) {
  .susProcess__item:not(:last-child)::after {
    border-width: 3.5px;
    left: 78px;
    width: 10.5px;
  }
}
@media screen and (max-width: 768px) {
  .susProcess__item:not(:last-child)::after {
    left: 50%;
    translate: -50% 100%;
  }
}
.susProcess__term {
  -webkit-align-items: center;
          align-items: center;
  background: #00bfd3;
  display: grid;
  gap: 16px;
  grid-template-columns: 74px minmax(0, 1fr);
  padding: 18px 24px 21px;
}
@media screen and (max-width: 1050px) {
  .susProcess__term {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 8px 16px 11px 21px;
  }
}
@media screen and (max-width: 768px) {
  .susProcess__term {
    grid-template-columns: auto minmax(0, 1fr);
  }
}
.susProcess__step {
  color: #fff;
  display: grid;
  font-family: mundial, sans-serif;
  grid-auto-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  translate: 0 -2px;
}
@media screen and (max-width: 768px) {
  .susProcess__step {
    -webkit-align-items: center;
            align-items: center;
    grid-template-columns: auto 26px;
    justify-items: flex-start;
    translate: 0 -1px;
  }
}
.susProcess__stepText {
  font-size: 2.2rem;
  line-height: 1;
}
@media screen and (max-width: 1050px) {
  .susProcess__stepText {
    font-size: 1.5rem;
  }
}
.susProcess__stepNum {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 1050px) {
  .susProcess__stepNum {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .susProcess__stepNum {
    justify-self: center;
    translate: 0 -0.05em;
  }
}
.susProcess__termText {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1050px) {
  .susProcess__termText {
    font-size: 1.5rem;
  }
}
.susProcess__desc {
  -webkit-align-items: center;
          align-items: center;
  background: #ccf1f4;
  display: grid;
  font-size: 1.6rem;
  grid-auto-columns: minmax(0, 1fr);
  letter-spacing: 0.03em;
  line-height: 1.75;
  padding: 18px 26px;
  text-align: justify;
}
@media screen and (max-width: 1050px) {
  .susProcess__desc {
    font-size: 1.4rem;
    line-height: 2;
    padding: 14px 15px;
  }
}
@media screen and (max-width: 768px) {
  .susProcess__desc {
    padding: 14px 15px 20px;
  }
}
.susProcess__descListItem {
  padding-left: 1em;
  text-indent: -1em;
}
.susProcess__descListItem::before {
  content: "・";
}

.susTable {
  width: 100%;
  table-layout: auto;
}
@media screen and (max-width: 1050px) {
  .susTable {
    width: auto;
    min-width: calc(100% - 26px);
    height: 100%;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
  }
}
.susTable, .susTable__th, .susTable__td {
  border: 1px solid #00bfd3;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1050px) {
  .susTable, .susTable__th, .susTable__td {
    font-size: 1.2rem;
    line-height: 1.27;
  }
}
thead .susTable__th, thead .susTable__td {
  background-color: #e3e5e7;
}
tbody .susTable__th {
  background-color: #ccf1f4;
}
.susTable__th, .susTable__td {
  padding: 2px 8px 3px;
}
@media screen and (max-width: 1050px) {
  .susTable__th, .susTable__td {
    padding: 3px 8px;
  }
}
.susVoice {
  grid-area: voice;
  background: #ccf1f4;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1050px) {
  .susVoice {
    padding-right: 26px;
    padding-bottom: 36px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}
.susVoice__ttl {
  width: 272px;
  height: auto;
  margin-left: 68px;
  margin-bottom: 45px;
  margin-top: -4px;
  line-height: 1;
  vertical-align: middle;
}
@media screen and (max-width: 1050px) {
  .susVoice__ttl {
    width: 162px;
    margin-left: 18px;
    margin-top: -3px;
    margin-bottom: 25px;
  }
}
.susVoice__ttlImg {
  width: 100%;
}
.susVoice__inner {
  display: grid;
  grid-template-columns: 46.3% 1fr;
  grid-template-areas: "figure intro" "figure txt";
  -webkit-column-gap: 105px;
     -moz-column-gap: 105px;
          column-gap: 105px;
  max-width: 1125px;
  width: 100%;
  padding-left: 80px;
  padding-right: 45px;
}
@media screen and (max-width: 1050px) {
  .susVoice__inner {
    -webkit-flex-direction: column;
            flex-direction: column;
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "figure" "txt";
    padding-left: 24px;
    padding-right: 0;
  }
}
.susVoice__fig {
  grid-area: figure;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
  vertical-align: middle;
}
@media screen and (max-width: 1050px) {
  .susVoice__fig {
    width: 100%;
  }
}
.susVoice__introWrap {
  grid-area: intro;
}
@media screen and (max-width: 1050px) {
  .susVoice__introWrap {
    margin-bottom: 18px;
  }
}
.susVoice__txtWrap {
  grid-area: txt;
  display: block;
  margin-top: 28px;
}
@media screen and (max-width: 1050px) {
  .susVoice__txtWrap {
    margin-top: 20px;
  }
}
.susVoice__txtWrap .susVoice__txt:first-child {
  margin-top: -10px;
}
.susVoice__txtWrap .susVoice__intro:first-child {
  margin-top: -8px;
}
.susVoice__intro {
  margin-top: -6px;
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1050px) {
  .susVoice__intro {
    font-size: 1.7rem;
    line-height: 1.76;
    text-align: justify;
  }
}
.susVoice__intro_weight_regular {
  font-weight: 400;
}

.business .main {
  padding-top: var(--header-height);
}
@media screen and (max-width: 1050px) {
  .business .main {
    padding-top: 90px;
  }
}
.business__content {
  width: min(100% - 90px, 1080px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .business__content {
    width: 100%;
    margin: 0 auto;
    padding: 0 26px;
  }
}
.business__intro {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .business__intro {
    font-size: 1.4rem;
  }
}
.business__head {
  margin-top: 83px;
  margin-bottom: 88px;
}
@media screen and (max-width: 768px) {
  .business__head {
    margin-bottom: 58px;
  }
}
.business__section {
  margin-bottom: 28px;
}
.business__section:last-of-type {
  margin-bottom: 184px;
}
@media screen and (max-width: 768px) {
  .business__section {
    margin-bottom: 23px;
  }
  .business__section:last-of-type {
    margin-bottom: 52px;
  }
}
.business .simplebar-wrapper {
  height: 100% !important;
}

.companyHistory img {
  vertical-align: middle;
}
.companyHistory__content {
  display: grid;
  grid-template-areas: "... header ..." "frame frame frame";
  grid-template-columns: 1fr min(100% - 90px, 1080px) 1fr;
  grid-template-rows: auto 1fr;
}
.companyHistory__header {
  grid-area: header;
  margin-bottom: 80px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__header {
    margin-bottom: 48px;
  }
}
.companyHistory__frame {
  display: grid;
  grid-area: frame;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(5, auto);
  position: relative;
  z-index: 0;
}
.companyHistory__frame::before, .companyHistory__frame::after {
  content: "";
  display: block;
  width: 50%;
  height: 130%;
  position: absolute;
  z-index: -1;
  grid-area: 2/1/span 2/-1;
}
@media screen and (max-width: 1050px) {
  .companyHistory__frame::before, .companyHistory__frame::after {
    height: 110%;
  }
}
.companyHistory__frame::before {
  background: linear-gradient(#fff 0%, #ff7846 37.5% 62.5%, #fff 100%);
  left: 0;
  right: auto;
}
.companyHistory__frame::after {
  background: linear-gradient(#fff 0%, #14b99b 37.5% 62.5%, #fff 100%);
  left: auto;
  right: 0;
}
.companyHistory__lines {
  display: grid;
  grid-area: 1/1/-1/-1;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 1;
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-name: lineLength;
          animation-name: lineLength;
  -webkit-animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
          animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes lineLength {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0px 0px 100%);
            clip-path: inset(0px 0px 100%);
  }
  100% {
    opacity: 1;
  }
}
@keyframes lineLength {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0px 0px 100%);
            clip-path: inset(0px 0px 100%);
  }
  100% {
    opacity: 1;
  }
}
.companyHistory__line {
  background: #00bfd3;
  margin: 0 auto;
  width: 3px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__line {
    margin: 0 120px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__line {
    margin: 0 70px;
  }
}
.companyHistory__line:nth-child(1) {
  margin-top: 131.75px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__line:nth-child(1) {
    margin-top: calc(8vw + 80px);
  }
}
.companyHistory__line:nth-child(2) {
  position: relative;
  background: linear-gradient(#00bfd3 250px, #fff 250px);
}
@media screen and (max-width: 1050px) {
  .companyHistory__line:nth-child(2) {
    background: linear-gradient(#00bfd3 200px, #fff 200px);
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__line:nth-child(2) {
    background: linear-gradient(#00bfd3 55px, #fff 55px);
  }
}
.companyHistory__line:nth-child(2)::before, .companyHistory__line:nth-child(2)::after {
  border-bottom: 3px solid #fff;
  content: "";
  display: block;
  height: 40px;
  position: absolute;
  top: 100%;
  width: 42px;
}
.companyHistory__line:nth-child(2)::before {
  border-radius: 0 0 40px 0;
  border-right: 3px solid #fff;
  right: calc(50% - 1.5px);
}
@media screen and (max-width: 1050px) {
  .companyHistory__line:nth-child(2)::before {
    border-bottom: none;
    border-radius: 0;
  }
}
.companyHistory__line:nth-child(2)::after {
  border-left: 3px solid #fff;
  border-radius: 0 0 0 40px;
  left: calc(50% - 1.5px);
}
@media screen and (max-width: 768px) {
  .companyHistory__line:nth-child(2)::after {
    border-radius: 0 0 0 20px;
  }
}
.companyHistory__line:nth-child(3) {
  background: transparent;
  border: 3px solid #fff;
  border-radius: 40px;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, calc(50% - 40px) 100%, calc(50% - 40px) 0, calc(50% + 40px) 0, calc(50% + 40px) 100%, 100% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, calc(50% - 40px) 100%, calc(50% - 40px) 0, calc(50% + 40px) 0, calc(50% + 40px) 100%, 100% 100%, 100% 0%);
  margin-bottom: 37px;
  margin-top: 37px;
  width: min(820px, 100% - 200px);
}
@media screen and (max-width: 1050px) {
  .companyHistory__line:nth-child(3) {
    border-radius: 0 40px 40px 0;
    -webkit-clip-path: polygon(0% 0%, 40px 40px, 40px 0%, 100% 0, 100% 6%, 0% 6%, 0% 100%, 40px calc(100% - 40px), 40px 100%, 100% 100%, 100% 14.5%, 0% 14.5%);
            clip-path: polygon(0% 0%, 40px 40px, 40px 0%, 100% 0, 100% 6%, 0% 6%, 0% 100%, 40px calc(100% - 40px), 40px 100%, 100% 100%, 100% 14.5%, 0% 14.5%);
    width: calc(100% - 254px);
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__line:nth-child(3) {
    width: calc(100% - 140px);
    -webkit-clip-path: polygon(0% 0%, 40px 40px, 40px 0%, 100% 0, 100% 6%, 0% 6%, 0% 100%, 40px calc(100% - 40px), 40px 100%, 100% 100%, 100% 17%, 0% 17%);
            clip-path: polygon(0% 0%, 40px 40px, 40px 0%, 100% 0, 100% 6%, 0% 6%, 0% 100%, 40px calc(100% - 40px), 40px 100%, 100% 100%, 100% 17%, 0% 17%);
    border-radius: 0 20px 20px 0;
  }
}
@media screen and (max-width: 480px) {
  .companyHistory__line:nth-child(3) {
    -webkit-clip-path: polygon(0% 0%, 40px 40px, 40px 0%, 100% 0, 100% 6%, 0% 6%, 0% 100%, 40px calc(100% - 40px), 40px 100%, 100% 100%, 100% 14.5%, 0% 14.5%);
            clip-path: polygon(0% 0%, 40px 40px, 40px 0%, 100% 0, 100% 6%, 0% 6%, 0% 100%, 40px calc(100% - 40px), 40px 100%, 100% 100%, 100% 14.5%, 0% 14.5%);
  }
}
.companyHistory__line:nth-child(4) {
  position: relative;
  background: linear-gradient(#fff 350px, #00bfd3 350px);
}
@media screen and (max-width: 1050px) {
  .companyHistory__line:nth-child(4) {
    background: linear-gradient(#fff 83.5px, #00bfd3 83.5px);
  }
}
.companyHistory__line:nth-child(4)::before, .companyHistory__line:nth-child(4)::after {
  border-top: 3px solid #fff;
  bottom: 100%;
  content: "";
  display: block;
  height: 40px;
  position: absolute;
  width: 42px;
}
.companyHistory__line:nth-child(4)::before {
  border-radius: 0 40px 0 0;
  border-right: 3px solid #fff;
  right: calc(50% - 1.5px);
}
@media screen and (max-width: 1050px) {
  .companyHistory__line:nth-child(4)::before {
    border-radius: 0;
    border-top: none;
  }
}
.companyHistory__line:nth-child(4)::after {
  border-left: 3px solid #fff;
  border-radius: 40px 0 0 0;
  left: calc(50% - 1.5px);
}
@media screen and (max-width: 768px) {
  .companyHistory__line:nth-child(4)::after {
    border-radius: 20px 0 0 0;
  }
}
.companyHistory__line:nth-child(5) {
  background: #fff;
  max-height: 30%;
}
.companyHistory__sections {
  display: grid;
  grid-area: 1/1/-1/-1;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
}
.companyHistory__sec {
  margin: 0 auto;
  width: min(1160px, 100%);
}
@media screen and (min-width: 1051px) {
  .companyHistory__sec {
    padding: 0 40px;
  }
}
.companyHistory__sec:nth-child(3) dl:nth-child(odd) dt {
  margin-left: 0;
}
.companyHistory__sec:nth-child(3) dl:nth-child(even) dt {
  margin-right: 0;
}
.companyHistory__sec_type_branch .companyHistory__subSubTtl {
  font-size: clamp(1.8rem, 1.7vw, 2.3rem);
}
.companyHistory__sec_type_branch .companyHistory__subSubTtl::before {
  background: #fff;
}
.companyHistory__list {
  position: relative;
}
.companyHistory__list:not(.has_reached) {
  opacity: 0.4;
}
.companyHistory__list dt {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  height: 100%;
  display: block;
}
.companyHistory__list dd {
  display: -webkit-flex;
  display: flex;
  min-height: inherit;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list dd {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
.companyHistory__subSubTtl {
  font-size: clamp(1.7rem, 2.5vw, 3rem);
}
@media screen and (max-width: 1050px) {
  .companyHistory__subSubTtl {
    font-size: clamp(1.9rem, 2.1vw, 2.3rem);
    margin-left: 100px;
    margin-right: 18px;
    margin-top: 22px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__subSubTtl {
    margin-left: 65px;
  }
}
.companyHistory__subSubTtl + .companyHistory__subSubTtl,
.companyHistory__subSubTtl .companyHistory__txt {
  margin-top: 40px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__subSubTtl + .companyHistory__subSubTtl,
  .companyHistory__subSubTtl .companyHistory__txt {
    margin-top: 32px;
  }
}
.companyHistory__subSubTtl span {
  font-family: mundial, sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 0.83;
}
@media screen and (max-width: 1050px) {
  .companyHistory__subSubTtl span {
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__txt {
    font-size: 1.4rem;
  }
}
.companyHistory__txt + .companyHistory__subSubTtl {
  margin-top: 40px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__txt + .companyHistory__subSubTtl {
    margin-top: 16px;
  }
}
.companyHistory__slideBox {
  width: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
}
@media screen and (max-width: 1050px) {
  .companyHistory__slideBox {
    width: calc(100% - 120px);
    margin-left: 120px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__slideBox {
    width: calc(100% - 70px);
    margin-left: 70px;
  }
}
@media screen and (min-width: 1051px) {
  .companyHistory__slideBox_type_right .companyHistory__subSubTtl,
  .companyHistory__slideBox_type_right .companyHistory__txt {
    margin-left: 27%;
  }
}
.companyHistory__slideBox .companyHistory__txt {
  margin-top: 25px;
  line-height: 1.81;
}
@media screen and (min-width: 1051px) {
  .companyHistory__slideBox .companyHistory__txt {
    max-width: 70%;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__slideBox .companyHistory__txt {
    margin-left: 100px;
    margin-right: 18px;
    margin-top: 12px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__slideBox .companyHistory__txt {
    font-size: 1.2rem;
    margin-left: 65px;
  }
}
.companyHistory__year {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
}
@media screen and (max-width: 1050px) {
  .companyHistory__year {
    width: 167px;
    left: 36.5px;
    right: auto;
    top: auto;
    bottom: auto;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__year {
    left: -13.5px;
  }
}
.companyHistory__year::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../../../images/company/bg_year_turquoise.svg);
  background-repeat: no-repeat;
  background-position: center, center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.companyHistory__list_num_02 .companyHistory__year::before, .companyHistory__list_num_04 .companyHistory__year::before, .companyHistory__list_num_05 .companyHistory__year::before, .companyHistory__list_num_07 .companyHistory__year::before, .companyHistory__list_num_08 .companyHistory__year::before, .companyHistory__list_num_09 .companyHistory__year::before, .companyHistory__list_num_10 .companyHistory__year::before, .companyHistory__list_num_11 .companyHistory__year::before, .companyHistory__list_num_13 .companyHistory__year::before, .companyHistory__list_num_14 .companyHistory__year::before {
  background-image: url(../../../images/company/bg_year_white.svg);
}
.companyHistory__year::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../../../images/company/bg_year_transparent_turquoise.svg);
  background-repeat: no-repeat;
  background-position: center, center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -2;
}
.companyHistory__list_num_06 .companyHistory__year::after, .companyHistory__list_num_07 .companyHistory__year::after, .companyHistory__list_num_08 .companyHistory__year::after, .companyHistory__list_num_09 .companyHistory__year::after, .companyHistory__list_num_10 .companyHistory__year::after, .companyHistory__list_num_11 .companyHistory__year::after {
  background-image: url(../../../images/company/bg_year_transparent_white.svg);
}
.companyHistory__yearImg {
  width: auto;
  height: 212.9926px;
  vertical-align: middle;
  visibility: visible;
}
@media screen and (max-width: 1050px) {
  .companyHistory__yearImg {
    height: 124px;
    margin: auto;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__yearImg {
    height: 78px;
  }
}
.companyHistory__yearImg_type_em {
  height: 263.5px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__yearImg_type_em {
    height: 167px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__yearImg_type_em {
    height: 110px;
  }
}
.companyHistory__pic {
  width: 100%;
}
.companyHistory__pic .companyHistory__yearImg {
  width: 100%;
  height: auto;
}
.companyHistory__img {
  width: 100%;
  vertical-align: middle;
}
@media screen and (max-width: 1050px) {
  .companyHistory__img {
    height: auto;
  }
}
.companyHistory__list_num_01 {
  margin-bottom: 134px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_01 {
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_01 .companyHistory__slideBox_type_left {
    -webkit-order: 1;
            order: 1;
  }
}
.companyHistory__list_num_01 .companyHistory__year {
  top: 0;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_01 .companyHistory__year {
    top: 11vw;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_01 .companyHistory__year {
    top: 15vw;
  }
}
@media screen and (max-width: 480px) {
  .companyHistory__list_num_01 .companyHistory__year {
    top: 6vw;
  }
}
.companyHistory__list_num_02 {
  margin-bottom: 248px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_02 {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_02 .companyHistory__year {
    top: 13vw;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_02 .companyHistory__year {
    top: 15vw;
  }
}
@media screen and (max-width: 480px) {
  .companyHistory__list_num_02 .companyHistory__year {
    top: 8vw;
  }
}
.companyHistory__list_num_03 .companyHistory__year {
  bottom: auto;
}
@media screen and (min-width: 1051px) {
  .companyHistory__list_num_03 .companyHistory__year {
    top: -131.75px;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_03 .companyHistory__year {
    top: 34px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_03 .companyHistory__year {
    top: 55px;
  }
}
.companyHistory__list_num_03 .companyHistory__slideBox_type_left {
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
@media screen and (min-width: 1051px) {
  .companyHistory__list_num_03 .companyHistory__slideBox_type_left {
    margin-top: -3.263em;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_03 .companyHistory__slideBox_type_right {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1051px) {
  .companyHistory__list_num_04 {
    margin-top: -73.5593px;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_04 {
    margin-bottom: 16px;
  }
}
.companyHistory__list_num_04 .companyHistory__year {
  top: -48px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_04 .companyHistory__year {
    top: -62px;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_04 .companyHistory__year {
    top: -39px;
  }
}
@media screen and (min-width: 1051px) {
  .companyHistory__list_num_05 {
    margin-top: 45px;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_05 .companyHistory__slideBox_type_left {
    -webkit-order: 1;
            order: 1;
    width: calc(100% - 60px);
    margin-left: 60px;
    margin-top: 12px;
  }
}
.companyHistory__list_num_05 .companyHistory__year {
  top: 52px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_05 .companyHistory__year {
    top: 54px;
  }
}
@media screen and (min-width: 1051px) {
  .companyHistory__list_num_05 .companyHistory__img {
    width: 80%;
    -webkit-transform: translate(-14px, 25px);
            transform: translate(-14px, 25px);
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_05 .companyHistory__img {
    width: calc(100% - 105px);
    margin-left: 65px;
  }
}
@media screen and (min-width: 1051px) {
  .companyHistory__list_num_05 .companyHistory__slideBox_type_right {
    margin-top: -1.0876666667em;
  }
}
.companyHistory__list_num_06 {
  margin-top: 204px;
  margin-bottom: 62px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_06 {
    margin-top: 100px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_06 {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.companyHistory__list_num_06 .companyHistory__year {
  bottom: auto;
  top: -68px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_06 .companyHistory__year {
    top: -23.75px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_06 .companyHistory__year {
    top: 0;
  }
}
.companyHistory__list_num_06 .companyHistory__img {
  width: 60%;
  position: absolute;
  top: auto;
  bottom: 0;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_06 .companyHistory__img {
    left: -5%;
    max-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_06 .companyHistory__img {
    height: auto;
    max-width: 200px;
    width: 40%;
    left: -30px;
    bottom: 4px;
  }
}
@media screen and (max-width: 480px) {
  .companyHistory__list_num_06 .companyHistory__img {
    bottom: 20px;
  }
}
.companyHistory__list_num_06 .companyHistory__slideBox {
  padding-bottom: 200px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_06 .companyHistory__slideBox {
    padding-bottom: 230px;
    margin-bottom: -230px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_06 .companyHistory__slideBox {
    padding-bottom: 140px;
    margin-bottom: -140px;
  }
}
.companyHistory__list_num_06 .companyHistory__slideBox_type_right .companyHistory__img {
  left: auto;
  right: 0;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_06 .companyHistory__slideBox_type_right .companyHistory__img {
    right: 10%;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_06 .companyHistory__slideBox_type_right .companyHistory__img {
    right: 40px;
  }
}
.companyHistory__list_num_07, .companyHistory__list_num_09, .companyHistory__list_num_10 {
  min-height: 212.9926px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_07, .companyHistory__list_num_09, .companyHistory__list_num_10 {
    min-height: 124px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_07, .companyHistory__list_num_09, .companyHistory__list_num_10 {
    min-height: 80px;
  }
}
.companyHistory__list_num_07 .companyHistory__year, .companyHistory__list_num_09 .companyHistory__year, .companyHistory__list_num_10 .companyHistory__year {
  right: 25px;
  left: auto;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_07 .companyHistory__year, .companyHistory__list_num_09 .companyHistory__year, .companyHistory__list_num_10 .companyHistory__year {
    right: 52px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_07 .companyHistory__year, .companyHistory__list_num_09 .companyHistory__year, .companyHistory__list_num_10 .companyHistory__year {
    right: -12px;
  }
}
.companyHistory__list_num_07 .companyHistory__slideBox, .companyHistory__list_num_09 .companyHistory__slideBox, .companyHistory__list_num_10 .companyHistory__slideBox {
  -webkit-justify-content: center;
          justify-content: center;
  margin-left: calc(50% + 50px);
  min-height: inherit;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_07 .companyHistory__slideBox, .companyHistory__list_num_09 .companyHistory__slideBox, .companyHistory__list_num_10 .companyHistory__slideBox {
    margin: auto;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_07 .companyHistory__subSubTtl, .companyHistory__list_num_09 .companyHistory__subSubTtl, .companyHistory__list_num_10 .companyHistory__subSubTtl {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    width: 240px;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_07 .companyHistory__subSubTtl, .companyHistory__list_num_09 .companyHistory__subSubTtl, .companyHistory__list_num_10 .companyHistory__subSubTtl {
    font-size: clamp(1.3rem, 1.5vw, 2.3rem);
    width: 160px;
  }
}
.companyHistory__list_num_08, .companyHistory__list_num_11 {
  min-height: 212.9926px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_08, .companyHistory__list_num_11 {
    min-height: 124px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_08, .companyHistory__list_num_11 {
    min-height: 80px;
  }
}
.companyHistory__list_num_08 .companyHistory__slideBox, .companyHistory__list_num_11 .companyHistory__slideBox {
  margin-left: 257.9926px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_08 .companyHistory__slideBox, .companyHistory__list_num_11 .companyHistory__slideBox {
    margin: auto;
  }
}
.companyHistory__list_num_08 .companyHistory__subSubTtl, .companyHistory__list_num_11 .companyHistory__subSubTtl {
  margin-left: 0 !important;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_08 .companyHistory__subSubTtl, .companyHistory__list_num_11 .companyHistory__subSubTtl {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    width: 240px;
    margin: auto !important;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_08 .companyHistory__subSubTtl, .companyHistory__list_num_11 .companyHistory__subSubTtl {
    font-size: clamp(1.3rem, 1.5vw, 2.3rem);
    width: 160px;
  }
}
.companyHistory__list_num_08 .companyHistory__year, .companyHistory__list_num_11 .companyHistory__year {
  right: auto;
  left: 25px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_08 .companyHistory__year, .companyHistory__list_num_11 .companyHistory__year {
    left: 36px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_08 .companyHistory__year, .companyHistory__list_num_11 .companyHistory__year {
    left: -14px;
  }
}
.companyHistory__list_num_07 {
  margin-top: 153px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_07 {
    margin-top: 226px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_07 {
    margin-top: 173px;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_07 .companyHistory__slideBox {
    margin: 12px auto;
    margin: auto;
  }
}
.companyHistory__list_num_08 {
  margin-top: -56px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_08 {
    margin-top: 6px;
  }
}
.companyHistory__list_num_09 {
  margin-top: -56px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_09 {
    margin: 4px auto 0;
  }
}
.companyHistory__list_num_10 {
  margin-top: 52px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_10 {
    margin-top: 16px;
    margin: 16px auto 0;
  }
}
.companyHistory__list_num_11 {
  margin-top: -114px;
  margin-bottom: 160px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_11 {
    margin: 11px auto 160px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_11 {
    margin-bottom: 100px;
  }
}
.companyHistory__list_num_12 {
  margin-top: 193px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_12 {
    margin-top: 0;
  }
}
.companyHistory__list_num_12 .companyHistory__img {
  width: 190px;
  margin-left: 110px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_12 .companyHistory__img {
    width: 130px;
    margin-left: 45%;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_12 .companyHistory__img {
    width: 78px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_12 .companyHistory__year {
    top: 20px;
  }
}
.companyHistory__list_num_13 {
  margin-top: 143px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_13 {
    margin-top: 18px;
  }
}
.companyHistory__list_num_13 .companyHistory__slideBox {
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_13 .companyHistory__year {
    top: 45px;
  }
}
.companyHistory__list_num_14 {
  margin-top: 167px;
  padding-bottom: 180px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_14 {
    padding-left: 150px;
    padding-bottom: 65px;
    margin-top: 28px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_14 {
    padding-left: 66px;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_14 dd {
    display: grid;
    grid-template-areas: "title01" "text01" "image" "title02" "text02";
    grid-template-columns: 100%;
  }
}
.companyHistory__list_num_14 .companyHistory__slideBox {
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_14 .companyHistory__slideBox {
    grid-area: image;
    width: calc(100% - 70px);
    margin-left: 70px;
    margin-top: 12px;
    margin-bottom: 16px;
  }
}
.companyHistory__list_num_14 .companyHistory__slideBox_type_right {
  margin-top: 15px;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_14 .companyHistory__slideBox_type_right {
    display: contents;
  }
}
.companyHistory__list_num_14 .companyHistory__subSubTtl:nth-of-type(2) {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_14 .companyHistory__subSubTtl:nth-of-type(2) {
    font-size: clamp(1.3rem, 3.9vw, 2.2rem);
  }
}
@media screen and (min-width: 1051px) {
  .companyHistory__list_num_14 .companyHistory__img {
    width: 77%;
  }
}
.companyHistory__list_num_14 .companyHistory__year {
  top: 20px;
  bottom: auto;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_14 .companyHistory__year {
    top: 8px;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_14 .companyHistory__subSubTtl:nth-of-type(1),
  .companyHistory__list_num_14 .companyHistory__txt:nth-of-type(1),
  .companyHistory__list_num_14 .companyHistory__subSubTtl:nth-of-type(2),
  .companyHistory__list_num_14 .companyHistory__txt:nth-of-type(2) {
    margin-left: 70px;
    width: calc(100% - 70px);
    padding-right: 18px;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_14 .companyHistory__subSubTtl:nth-of-type(1) {
    grid-area: title01;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_14 .companyHistory__txt:nth-of-type(1) {
    grid-area: text01;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_14 .companyHistory__subSubTtl:nth-of-type(2) {
    grid-area: title02;
  }
}
@media screen and (max-width: 480px) {
  .companyHistory__list_num_14 .companyHistory__subSubTtl:nth-of-type(2) {
    padding-right: 10px;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_14 .companyHistory__txt:nth-of-type(2) {
    grid-area: text02;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_14 .companyHistory__txt:nth-of-type(2) {
    grid-area: text02;
  }
}
.companyHistory__list_num_15 {
  margin-bottom: 146px;
}
@media screen and (min-width: 1051px) {
  .companyHistory__list_num_15 {
    margin-top: -72px;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_15 {
    margin-bottom: 50px;
  }
}
.companyHistory__list_num_15 .companyHistory__year {
  bottom: auto;
}
.companyHistory__list_num_15 .companyHistory__slideBox {
  width: 100%;
}
@media screen and (min-width: 1051px) {
  .companyHistory__list_num_15 .companyHistory__slideBox {
    margin-top: 263.5px;
    text-align: center;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_15 .companyHistory__slideBox {
    margin-top: 167px;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_15 .companyHistory__slideBox {
    margin-top: 110px;
  }
}
.companyHistory__list_num_15 .companyHistory__img {
  width: 437px;
  margin: 55px auto;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_15 .companyHistory__img {
    margin: 30px auto;
  }
}
@media screen and (max-width: 768px) {
  .companyHistory__list_num_15 .companyHistory__img {
    width: 237px;
  }
}
.companyHistory__list_num_15 .companyHistory__subSubTtl {
  padding-left: 0;
}
@media screen and (max-width: 1050px) {
  .companyHistory__list_num_15 .companyHistory__subSubTtl {
    margin: auto;
  }
}
.companyHistory__list_num_15 .companyHistory__subSubTtl::before {
  content: none;
}

body.bodyCompany {
  overflow: hidden;
}

.companyHistory__yearImg, .companyHistory__slideBox, .companyHistory__footer .companyHistory__pic, .companyHistory__subSubTtl:nth-of-type(n + 2), .companyHistory__subSubTtl:nth-of-type(n + 2) + .companyHistory__txt, .companyHistory__txt:nth-of-type(n + 2) {
  opacity: 1;
  visibility: visible;
}
.companyHistory__yearImg {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.companyHistory__slideBox {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.companyHistory__slideBox .companyHistory__subSubTtl:nth-of-type(n + 2),
.companyHistory__slideBox .companyHistory__subSubTtl:nth-of-type(n + 2) + .companyHistory__txt,
.companyHistory__slideBox .companyHistory__txt:nth-of-type(n + 2) {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.companyHistory__footer::before {
  -webkit-transform: scale(10);
          transform: scale(10);
  opacity: 0;
}
@-webkit-keyframes circleAnimation {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}
@keyframes circleAnimation {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}
.companyHistory__list.jsTimelineAnimation .companyHistory__year::before,
.companyHistory__list.jsTimelineAnimation .companyHistory__year::after,
.companyHistory__list.jsTimelineAnimation .companyHistory__yearImg,
.companyHistory__list.jsTimelineAnimation .companyHistory__slideBox,
.companyHistory__list.jsTimelineAnimation .companyHistory__footer .companyHistory__pic,
.companyHistory__list.jsTimelineAnimation .companyHistory__subSubTtl:nth-of-type(n + 2),
.companyHistory__list.jsTimelineAnimation .companyHistory__subSubTtl:nth-of-type(n + 2) + .companyHistory__txt,
.companyHistory__list.jsTimelineAnimation .companyHistory__txt:nth-of-type(n + 2) {
  transition-duration: 0.5s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: transform, opacity, visibility;
  transition-property: transform, opacity, visibility, -webkit-transform;
  transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}
.companyHistory__list.jsTimelineAnimation .companyHistory__year::before {
  transition-duration: 0.8s;
}
.companyHistory__list.jsTimelineAnimation .companyHistory__year::after {
  transition-delay: 0.3s;
}
.companyHistory__list.jsTimelineAnimation .companyHistory__yearImg {
  transition-duration: 0.3s;
  transition-delay: 0.5s;
}
.companyHistory__list.jsTimelineAnimation .companyHistory__slideBox {
  transition-delay: 1s;
}
.companyHistory__list.jsTimelineAnimation .companyHistory__slideBox_type_bottom {
  transition-duration: 1.5s;
}
.companyHistory__list.jsTimelineAnimation .companyHistory__footer::before {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
  -webkit-animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
          animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}
.companyHistory__list.jsTimelineAnimation .companyHistory__footer .companyHistory__pic {
  transition-delay: 1s;
}
@media screen and (min-width: 1051px) {
  .companyHistory__list.jsTimelineAnimation .companyHistory__subSubTtl:nth-of-type(n + 2),
  .companyHistory__list.jsTimelineAnimation .companyHistory__subSubTtl:nth-of-type(n + 2) + .companyHistory__txt,
  .companyHistory__list.jsTimelineAnimation .companyHistory__txt:nth-of-type(n + 2) {
    transition-delay: 1s;
  }
}
@media screen and (max-width: 1050px) {
  .companyHistory__list.jsTimelineAnimation .companyHistory__subSubTtl:nth-of-type(n + 2),
  .companyHistory__list.jsTimelineAnimation .companyHistory__subSubTtl:nth-of-type(n + 2) + .companyHistory__txt,
  .companyHistory__list.jsTimelineAnimation .companyHistory__txt:nth-of-type(n + 2) {
    transition-delay: 0.5s;
  }
}
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__year::before,
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__year::after,
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__yearImg,
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__slideBox,
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__footer .companyHistory__pic,
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__subSubTtl:nth-of-type(n + 2),
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__subSubTtl:nth-of-type(n + 2) + .companyHistory__txt,
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__txt:nth-of-type(n + 2) {
  opacity: 0;
  visibility: hidden;
}
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__year::before,
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__year::after {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__slideBox_type_left {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
@media screen and (max-width: 1050px) {
  .companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__slideBox_type_left {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
@media screen and (min-width: 1051px) {
  .companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__slideBox_type_left .companyHistory__subSubTtl:nth-of-type(n + 2),
  .companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__slideBox_type_left .companyHistory__subSubTtl:nth-of-type(n + 2) + .companyHistory__txt,
  .companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__slideBox_type_left .companyHistory__txt:nth-of-type(n + 2) {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__slideBox_type_right {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__slideBox_type_right .companyHistory__subSubTtl:nth-of-type(n + 2),
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__slideBox_type_right .companyHistory__subSubTtl:nth-of-type(n + 2) + .companyHistory__txt,
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__slideBox_type_right .companyHistory__txt:nth-of-type(n + 2) {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
.companyHistory__list.jsTimelineAnimation:not(.has_reached) .companyHistory__slideBox_type_bottom {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.companyHistory__list.jsTimelineAnimation.has_reached .companyHistory__footer::before {
  -webkit-animation-name: circleAnimation;
          animation-name: circleAnimation;
}

.companyMessage__header {
  grid-area: 1/2/2/3;
  justify-self: start;
  margin-bottom: 50px;
}
@media screen and (max-width: 1050px) {
  .companyMessage__header {
    margin-bottom: 26px;
  }
}
.companyMessage__body {
  display: contents;
}
.companyMessage__visual {
  align-self: center;
  grid-area: 2/2/3/4;
  margin-bottom: 130px;
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .companyMessage__visual {
    grid-area: 2/1/3/4;
    margin-bottom: 45px;
  }
}
.companyMessage__footer {
  grid-area: footer;
  margin-bottom: 90px;
}
@media screen and (max-width: 1050px) {
  .companyMessage__footer {
    margin-bottom: 60px;
  }
}
.companyMessage__txt {
  font-size: 1.7rem;
  line-height: 2.13;
}
@media screen and (max-width: 1050px) {
  .companyMessage__txt {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.companyMessage__txt + .companyMessage__txt {
  margin-top: 2.13em;
}
@media screen and (max-width: 1050px) {
  .companyMessage__txt + .companyMessage__txt {
    margin-top: 2rem;
  }
}
.companyMessage__txt_align_right {
  text-align: right;
}

.companyProfile .subTtl {
  margin-bottom: 30px;
}
.companyProfile__header {
  grid-area: 1/2/2/4;
  justify-self: start;
  margin-bottom: 110px;
  display: grid;
  -webkit-column-gap: 110px;
     -moz-column-gap: 110px;
          column-gap: 110px;
}
@media screen and (max-width: 1050px) {
  .companyProfile__header {
    display: block;
    grid-area: 1/1/2/4;
    margin-bottom: 0;
  }
}
.companyProfile__ttl {
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .companyProfile .mainTtl,
  .companyProfile .subTtl {
    margin-left: 45px;
  }
}
@media screen and (max-width: 1050px) {
  .companyProfile .subTtl {
    margin-bottom: 20px;
  }
}
.companyProfile__txt {
  font-size: 1.7rem;
  line-height: 1.82;
}
@media screen and (max-width: 1050px) {
  .companyProfile__txt {
    font-size: 1.4rem;
    margin: 40px 45px 0;
  }
}
@media screen and (max-width: 768px) {
  .companyProfile__txt {
    margin-left: 26px;
    margin-right: 26px;
  }
}
.companyProfile__visual {
  align-self: center;
  grid-area: 1/2/2/4;
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .companyProfile__visual {
    grid-area: visual;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1050px) {
  .companyProfile__pic {
    display: block;
    width: 100%;
    min-width: 0;
  }
}
.companyProfile__img {
  vertical-align: middle;
}
@media screen and (max-width: 1050px) {
  .companyProfile__img {
    width: 100%;
    max-width: none;
  }
}
.companyProfile__body {
  display: grid;
  grid-template-columns: 1fr min(100% - 90px, 1080px);
  grid-template-rows: auto 1fr auto;
  grid-area: 2/1/3/3;
  background-color: #ccf1f4;
}
@media screen and (max-width: 1050px) {
  .companyProfile__body {
    grid-template-columns: 26px min(100% - 46px) 20px;
    grid-area: 2/1/3/4;
  }
}
.companyProfile__detail {
  grid-area: 2/2/3/3;
  padding: 117px 0;
}
@media screen and (max-width: 1050px) {
  .companyProfile__detail {
    padding: 50px 0 60px;
  }
}
.companyProfile__contentList {
  display: -webkit-flex;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-align-items: center;
          align-items: center;
}
@media screen and (max-width: 1050px) {
  .companyProfile__contentList {
    -webkit-column-gap: 13px;
       -moz-column-gap: 13px;
            column-gap: 13px;
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
.companyProfile__contentList + .companyProfile__contentList {
  margin-top: 25px;
}
.companyProfile__contentList .companyProfile__listTerm {
  width: 120px;
  display: block;
  padding-top: 9px;
  padding-bottom: 11.5px;
  font-size: 1.3rem;
  font-weight: 500;
  background-color: #fff;
  text-align: center;
  -webkit-align-self: stretch;
          align-self: stretch;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
@media screen and (max-width: 1050px) {
  .companyProfile__contentList .companyProfile__listTerm {
    font-size: 1rem;
    height: inherit;
    width: auto;
    min-width: 90px;
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media screen and (max-width: 768px) {
  .companyProfile__contentList .companyProfile__listTerm {
    /* min-width: 70px; */
    height: inherit;
  }
}
.companyProfile__contentList .companyProfile__listDetail {
  font-size: 1.7rem;
  padding: 11px 0;
}
@media screen and (max-width: 1050px) {
  .companyProfile__contentList .companyProfile__listDetail {
    font-size: 1.4rem;
    padding: 0;
  }
}
@media screen and (max-width: 1050px) {
  .companyProfile__contentList .companyProfile__listDetail span {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
.companyProfile__listTerm {
  width: 120px;
}
.companyProfile__listDetail span {
  font-size: 1.2rem;
  letter-spacing: 0;
}
.companyProfile__mapLink {
  font-size: 1rem;
  font-weight: 600;
  font-family: mundial, sans-serif;
  color: #fff;
  padding: 2.5px 9px 3.5px;
  background-color: #00bfd3;
  margin-left: 6px;
  vertical-align: middle;
}
.companyProfile__inner {
  display: -webkit-flex;
  display: flex;
  margin-top: 57px;
}
@media screen and (max-width: 1050px) {
  .companyProfile__inner {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .companyProfile__inner {
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-left: 30px;
  }
}
.companyProfile__wrapper {
  width: 50%;
  margin-left: 35px;
}
@media screen and (max-width: 768px) {
  .companyProfile__wrapper {
    margin-left: 0;
  }
}
.companyProfile__officerList {
  display: -webkit-flex;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  -webkit-align-items: center;
          align-items: center;
}
@media screen and (max-width: 1050px) {
  .companyProfile__officerList {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .companyProfile__officerList {
    width: 100%;
  }
}
.companyProfile__officerList + .companyProfile__officerList {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .companyProfile__officerList + .companyProfile__officerList {
    margin-top: 0;
  }
}
.companyProfile__officerList .companyProfile__listTerm,
.companyProfile__officerList .companyProfile__listDetail {
  font-size: 1.7rem;
  line-height: 2.13;
}
@media screen and (max-width: 1050px) {
  .companyProfile__officerList .companyProfile__listTerm,
  .companyProfile__officerList .companyProfile__listDetail {
    font-size: 1.4rem;
    line-height: 2.28;
    white-space: nowrap;
  }
}
.companyProfile__officerList .companyProfile__listTerm {
  min-width: 160px;
}
@media screen and (max-width: 1050px) {
  .companyProfile__officerList .companyProfile__listTerm {
    min-width: 135px;
  }
}
.companyProfile__officerList .companyProfile__listDetail {
  font-weight: 500;
}
.companyProfile__footer {
  grid-area: footer;
  margin: 150px 0;
}
@media screen and (max-width: 1050px) {
  .companyProfile__footer {
    margin-top: 74px;
    margin-bottom: 70px;
  }
}
.companyProfile__txt {
  font-size: 1.7rem;
  line-height: 2.13;
}
@media screen and (max-width: 1050px) {
  .companyProfile__txt {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.companyProfile__txt + .companyProfile__txt {
  margin-top: 2.13em;
}
@media screen and (max-width: 1050px) {
  .companyProfile__txt + .companyProfile__txt {
    margin-top: 2rem;
  }
}
.companyProfile__txt_align_right {
  text-align: right;
}

.company {
  padding-top: 90px;
}
@media screen and (max-width: 1050px) {
  .company {
    padding-top: 30px;
  }
}
.company__content {
  display: grid;
  grid-template-areas: "... header ..." "... detail ..." "... footer ...";
  grid-template-columns: 1fr min(100% - 90px, 1080px) 1fr;
  grid-template-rows: auto 1fr auto;
}
@media screen and (max-width: 768px) {
  .company__content {
    grid-template-areas: "... header ..." "... detail ..." "... visual ..." "... footer ...";
    grid-template-columns: 26px min(100% - 52px) 26px;
    grid-template-rows: auto auto auto 1fr;
  }
}
.company.contents-regular {
  padding-top: 0;
}
@media screen and (max-width: 1050px) {
  .company.contents-regular {
    padding-top: 0;
  }
}

.contactTop {
  margin-bottom: 139px;
  margin-top: 76px;
}
@media screen and (max-width: 768px) {
  .contactTop {
    margin-bottom: 34px;
    margin-top: 22px;
  }
}
.contactTop__block {
  -webkit-align-items: center;
          align-items: center;
  -webkit-align-self: center;
          align-self: center;
  border-bottom: 1px solid #b9bec3;
  display: -webkit-flex;
  display: flex;
  height: 172px;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding-right: 66px;
}
@media screen and (max-width: 1050px) {
  .contactTop__block {
    -webkit-align-items: flex-start;
            align-items: flex-start;
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    height: auto;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    padding-bottom: 31px;
    padding-right: 0;
  }
  .contactTop__block:not(:first-child) {
    padding-top: 35px;
  }
}
.contactTop__blockWrap {
  margin-bottom: 84px;
}
@media screen and (max-width: 768px) {
  .contactTop__blockWrap {
    margin-bottom: 36px;
  }
}
.contactTop__btn {
  background-color: #66d5de;
  height: 56px;
  opacity: 1;
  transition: all 0.3s;
  width: 368px;
}
@media screen and (max-width: 768px) {
  .contactTop__btn {
    height: 48px;
    width: 100%;
  }
}
.contactTop__btnLink {
  font-weight: 700;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contactTop__btnLink {
    font-size: 1.4rem;
  }
}
.contactTop__btnWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
@media screen and (max-width: 768px) {
  .contactTop__btnWrap {
    gap: 13px;
    width: 100%;
  }
}
.contactTop__container {
  margin: 0 auto;
  position: relative;
  width: min(100% - 90px, 1080px);
}
@media screen and (max-width: 768px) {
  .contactTop__container {
    margin: 0 auto;
    padding: 0 26px;
    width: 100%;
  }
}
.contactTop__header {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contactTop__header {
    margin-bottom: 37px;
  }
}
.contactTop__link {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  opacity: 1;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .contactTop__link {
    font-size: 1.4rem;
  }
}
.contactTop__link[target=_blank]::after {
  background: url(../images/common/icon_external_turquoise.svg) no-repeat;
  border: none;
  content: "";
  display: block;
  height: 14px;
  width: 14px;
}
.contactTop__link:hover {
  opacity: 0.6;
}
.contactTop__main {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .contactTop__main {
    font-size: 1.8rem;
  }
}
.contactTop__mainTtl {
  margin-bottom: 76px;
}
@media screen and (max-width: 768px) {
  .contactTop__mainTtl {
    margin-bottom: 41px;
  }
}
@media screen and (max-width: 768px) {
  .contactTop__sub {
    font-size: 1.4rem;
  }
}
.contactTop__subTtl {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .contactTop__subTtl {
    gap: 17px;
  }
}
.contactTop__tel {
  font-family: mundial, sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .contactTop__tel {
    display: block;
    font-size: 1.6rem;
  }
}
.contactTop__text {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .contactTop__text {
    font-size: 1.4rem;
  }
}
.contactTop__text span {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contactTop__time {
    display: block;
    font-size: 1.4rem;
  }
}

.contact {
  margin-bottom: 118px;
  margin-top: 77px;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-bottom: 115px;
    margin-top: 21px;
  }
}
.contact__container {
  margin: 0 auto;
  width: min(100% - 90px, 1080px);
}
@media screen and (max-width: 768px) {
  .contact__container {
    margin: 0 auto;
    padding: 0 26px;
    width: 100%;
  }
}
.contact__faq {
  margin: 15px 0 0;
}
.contact__faqLink {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  font-weight: 700;
  gap: 5px;
  -webkit-justify-content: center;
          justify-content: center;
  opacity: 1;
  transition: 0.3s;
}
.contact__faqLink::after {
  background-color: #000;
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 16px;
  -webkit-mask-image: url("../images/common/icon_external_turquoise.svg");
          mask-image: url("../images/common/icon_external_turquoise.svg");
  width: 16px;
}
.contact__faqLink:hover {
  opacity: 0.6 !important;
}
.contact__headTxt {
  letter-spacing: 0.04em;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .contact__headTxt {
    line-height: 2;
  }
}
.contact__headEnTxt {
  margin-top: 60px;
  position: relative;
}
.contact__headEnTxt::before {
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: -30px;
  width: 100%;
}
.contact__header {
  margin-bottom: 67px;
}
@media screen and (max-width: 768px) {
  .contact__header {
    margin-bottom: 40px;
  }
}
.contact__header .mainTtl {
  margin-bottom: 105px;
}
@media screen and (max-width: 768px) {
  .contact__header .mainTtl {
    margin-bottom: 47px;
  }
}
.contact__note {
  border: 1px solid rgba(0, 0, 0, 0.6);
  margin-top: 68px;
  padding: 33px 37px;
}
@media screen and (max-width: 768px) {
  .contact__note {
    margin-top: 37px;
    padding: 24px 23px;
  }
}
.contact__noteItem:not(:last-child) {
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .contact__noteItem {
    line-height: 2;
  }
  .contact__noteItem:not(:last-child) {
    margin-bottom: 0;
  }
}
.contact__noteTtl {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .contact__noteTtl {
    margin-bottom: 4px;
  }
}
.contact__noteTxt {
  display: inline-block;
  line-height: 2;
  margin-bottom: 12px;
}
.contact__stepEn {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .contact__stepEn {
    font-size: 1.2rem;
  }
}
.contact__stepItem {
  color: #D5D8DB;
  font-size: 2.6rem;
  font-weight: 700;
}
.contact__stepItem_is_current {
  color: #000;
}
@media screen and (max-width: 768px) {
  .contact__stepItem {
    font-size: 1.6rem;
  }
}
.contact__stepItem:not(:last-child) {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  gap: 23px;
  -webkit-justify-content: center;
          justify-content: center;
}
.contact__stepItem:not(:last-child)::after {
  background-color: #D5D8DB;
  content: "";
  display: block;
  height: 1px;
  width: 66px;
}
@media screen and (max-width: 768px) {
  .contact__stepItem:not(:last-child) {
    gap: 14px;
  }
  .contact__stepItem:not(:last-child)::after {
    width: 44px;
  }
}
.contact__stepList {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  gap: 25px;
  -webkit-justify-content: center;
          justify-content: center;
  margin-bottom: 59px;
}
@media screen and (max-width: 768px) {
  .contact__stepList {
    gap: 17px;
    margin-bottom: 45px;
  }
}
.contact__stepWrap {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
}
.contact__subTtl {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .contact__subTtl {
    font-size: 1.8rem;
    margin-bottom: 49px;
  }
}

.culture {
  margin-top: 85px;
}
@media screen and (max-width: 768px) {
  .culture {
    margin-top: 30px;
  }
}
.culture__article {
  margin-top: 82px;
}
@media screen and (max-width: 768px) {
  .culture__article {
    margin-top: 29px;
  }
}
.culture__container {
  margin: 0 auto;
  position: relative;
  width: min(100% - 90px, 1080px);
}
@media screen and (max-width: 768px) {
  .culture__container {
    margin: 0 auto;
    padding: 0 26px;
    width: 100%;
  }
}
.culture__fv {
  align-self: center;
  grid-area: 1/1/-1/-1;
  justify-self: end;
  width: 56.658131%;
}
@media screen and (max-width: 768px) {
  .culture__fv {
    grid-area: img;
    margin-right: -5%;
    width: 100%;
  }
}
.culture__headBody {
  display: contents;
}
.culture__headTxt {
  grid-area: text;
  line-height: 1.9375;
  padding-right: 42px;
  width: 43.341869%;
}
@media screen and (max-width: 768px) {
  .culture__headTxt {
    line-height: 2;
    padding: 0;
    width: 100%;
  }
}
.culture__header {
  display: grid;
  grid-template-areas: "... ttl ..." "... subTtl ..." "... text ...";
  grid-template-columns: 1fr min(100% - 90px, 1080px) 1fr;
  grid-template-rows: auto auto 1fr;
  margin-bottom: 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .culture__header {
    grid-template-areas: "... ttl ..." "... subTtl ..." "img img img" "... text ...";
    grid-template-columns: 26px 1fr 26px;
    grid-template-rows: auto auto auto 1fr;
    margin-bottom: 30px;
  }
}
.culture__mainTtl {
  grid-area: ttl;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .culture__mainTtl {
    margin-bottom: 37px;
  }
}
.culture__navInner {
  display: -webkit-flex;
  display: flex;
  gap: 0 85px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .culture__navInner {
    gap: 0 22px;
  }
}
.culture__navLink {
  font-family: mundial, sans-serif;
  font-size: 4.2rem;
  font-weight: 600;
  opacity: 1;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .culture__navLink {
    font-size: 2rem;
  }
}
.culture__navLink::after {
  bottom: -6px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}
.culture__navLink:hover {
  opacity: 0.6;
}
.culture__navLink_color_orange {
  color: #FF7846;
}
.culture__navLink_color_orange::after {
  background-color: #FF7846;
}
.culture__navLink_color_navy {
  color: #003255;
}
.culture__navLink_color_navy::after {
  background-color: #003255;
}
.culture__navLink_color_green {
  color: #14B99B;
}
.culture__navLink_color_green::after {
  background-color: #14B99B;
}
.culture__navNom {
  font-size: 1.8rem;
  left: -1px;
  position: absolute;
  top: -7px;
}
@media screen and (max-width: 768px) {
  .culture__navNom {
    font-size: 1.2rem;
    top: -11px;
  }
}
.culture__secNom {
  font-size: 4rem;
  left: -1px;
  position: absolute;
  top: -10px;
}
@media screen and (max-width: 1050px) {
  .culture__secNom {
    font-size: 3rem;
    top: -14px;
  }
}
@media screen and (max-width: 768px) {
  .culture__secNom {
    font-size: 2rem;
    top: -15px;
  }
}
.culture__section {
  margin-top: 80px;
  padding-top: 187px;
}
@media screen and (max-width: 768px) {
  .culture__section {
    margin-top: 90px;
    padding-top: 29px;
  }
}
.culture__section + .culture__section {
  padding-top: 232px;
}
@media screen and (max-width: 768px) {
  .culture__section + .culture__section {
    padding-top: 61px;
  }
}
.culture__sectionBody {
  padding: 47px 0 137px;
}
@media screen and (max-width: 768px) {
  .culture__sectionBody {
    padding: 30px 0 60px;
  }
}
.culture__sectionBody_color_orange {
  background-color: #FFE4DA;
}
.culture__sectionBody_color_navy {
  background-color: #CCD6DD;
}
.culture__sectionBody_color_green {
  background-color: #D0F1EB;
}
.culture__sectionTtl {
  font-family: mundial, sans-serif;
  font-size: 18.3rem;
  font-weight: 600;
  left: 0;
  line-height: 0.84289617;
  position: absolute;
  top: -47px;
  translate: 0 -100%;
}
@media screen and (max-width: 1050px) {
  .culture__sectionTtl {
    font-size: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .culture__sectionTtl {
    font-size: 6.4rem;
    left: 26px;
    top: -30px;
  }
}
.culture__sectionTtl_color_orange {
  color: #FF7846;
}
.culture__sectionTtl_color_navy {
  color: #003255;
}
.culture__sectionTtl_color_green {
  color: #14B99B;
}
.culture__subTtl {
  font-size: 4rem;
  font-weight: 700;
  grid-area: subTtl;
  letter-spacing: 0.1rem;
  line-height: 1.628;
  margin-bottom: 50px;
  width: 43.341869%;
}
@media screen and (max-width: 768px) {
  .culture__subTtl {
    font-size: 2.9rem;
    letter-spacing: 0.115em;
    margin-bottom: -26px;
    width: 100%;
  }
}
.culture__text {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .culture__text {
    font-size: 1.6rem;
  }
}

.breadcrumb_page_culture {
  background-color: #D0F1EB;
}

.topBusiness {
  margin: 220px 0;
}
@media screen and (max-width: 768px) {
  .topBusiness {
    margin: 80px 0 128px;
  }
}
.topBusiness__container {
  margin: 0 auto;
  max-width: 1562px;
}
.topBusiness__content {
  display: grid;
  grid-template-areas: "... header ..." "... detail ..." "... footer ...";
  grid-template-columns: 1fr min(100% - 90px, 1080px) 1fr;
  grid-template-rows: auto 1fr auto;
}
@media screen and (max-width: 768px) {
  .topBusiness__content {
    grid-template-areas: "... header ..." "... detail ..." "... visual ..." "... footer ...";
    grid-template-columns: 26px 1fr 26px;
    grid-template-rows: auto auto auto 1fr;
  }
}
.topBusiness__header {
  grid-area: header;
  margin: 0 0 80px;
  width: 35.1851851852%;
}
@media screen and (max-width: 768px) {
  .topBusiness__header {
    justify-self: stretch;
    margin: 0 0 32px;
    width: unset;
  }
}
.topBusiness__body {
  display: contents;
}
.topBusiness__visual {
  grid-area: 1/2/3/3;
  justify-self: end;
  width: 59.9074074074%;
}
@media screen and (max-width: 768px) {
  .topBusiness__visual {
    grid-area: visual;
    justify-self: stretch;
    margin: 24px 0 0;
    width: unset;
  }
}
.topBusiness__pics {
  aspect-ratio: 1/1;
  display: grid;
  grid-template-areas: "main";
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
  z-index: 1;
}
.topBusiness__pics.jsAnimation .topBusiness__pic {
  --pic-scale-duration: 0.6s;
  --pic-scale-easing: ease-in-out;
  --pic-delay: 0s;
}
.topBusiness__pics.jsAnimation .topBusiness__pic:nth-child(n+2) {
  --pic-scale-duration: 1s;
  --pic-scale-easing: cubic-bezier(0.76, 0, 0.24, 1);
}
.topBusiness__pics.jsAnimation .topBusiness__pic:nth-child(2) {
  --pic-delay: 0.4s;
}
.topBusiness__pics.jsAnimation .topBusiness__pic:nth-child(3) {
  --pic-delay: 0.6s;
}
.topBusiness__pics.jsAnimation .topBusiness__pic:nth-child(4) {
  --pic-delay: 0.8s;
}
.topBusiness__pics.jsAnimation .topBusiness__pic:nth-child(5) {
  --pic-delay: 1s;
}
.topBusiness__pics.jsAnimation .topBusiness__pic::before,
.topBusiness__pics.jsAnimation .topBusiness__pic .topBusiness__img {
  transition-delay: var(--pic-delay);
  transition-duration: var(--pic-scale-duration), 0.6s, 0.6s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: transform, opacity, visibility;
  transition-property: transform, opacity, visibility, -webkit-transform;
  transition-timing-function: var(--pic-scale-easing), ease-in-out, ease-in-out;
}
.topBusiness__pics:not(.has_reached) .topBusiness__pic::before,
.topBusiness__pics:not(.has_reached) .topBusiness__pic .topBusiness__img {
  opacity: 0;
  visibility: hidden;
}
.topBusiness__pics:not(.has_reached) .topBusiness__pic:nth-child(1)::before,
.topBusiness__pics:not(.has_reached) .topBusiness__pic:nth-child(1) .topBusiness__img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.topBusiness__pics:not(.has_reached) .topBusiness__pic:nth-child(n+2)::before,
.topBusiness__pics:not(.has_reached) .topBusiness__pic:nth-child(n+2) .topBusiness__img {
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
}
.topBusiness__pic {
  aspect-ratio: 1/1;
  grid-area: main;
  padding: 3.7094281298%;
  position: relative;
  width: 47.913446677%;
}
.topBusiness__pic:nth-child(1) {
  place-self: center;
  width: 77.4343122102%;
}
.topBusiness__pic:nth-child(2) {
  -webkit-align-self: start;
          align-self: start;
  justify-self: start;
}
.topBusiness__pic:nth-child(3) {
  -webkit-align-self: start;
          align-self: start;
  justify-self: end;
}
.topBusiness__pic:nth-child(4) {
  -webkit-align-self: end;
          align-self: end;
  justify-self: end;
}
.topBusiness__pic:nth-child(5) {
  -webkit-align-self: end;
          align-self: end;
  justify-self: start;
}
.topBusiness__pic::before {
  background: #ccf1f4;
  border-radius: 50%;
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  z-index: -1;
}
.topBusiness__img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: block;
  width: 100%;
}
.topBusiness__detail {
  grid-area: detail;
  width: 35.1851851852%;
}
@media screen and (max-width: 768px) {
  .topBusiness__detail {
    width: unset;
  }
}
.topBusiness__leadTxt {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin: 0 0 48px;
}
@media screen and (max-width: 768px) {
  .topBusiness__leadTxt {
    font-size: 1.6rem;
    margin: 0 0 16px;
  }
}
.topBusiness__txt {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .topBusiness__txt {
    font-size: 1.4rem;
  }
}
.topBusiness__footer {
  grid-area: footer;
  margin: 154px 0 0;
}
@media screen and (max-width: 768px) {
  .topBusiness__footer {
    margin: 58px 0 0;
  }
}
.topBusiness__movieBtn {
  display: block;
  position: relative;
}
.topBusiness__movieBtn::before {
  background: #00bfd3;
  content: "";
  display: block;
  height: 80px;
  inset: 0;
  margin: auto;
  position: absolute;
  transition: opacity 0.2s;
  width: 80px;
}
@media screen and (max-width: 768px) {
  .topBusiness__movieBtn::before {
    height: 45px;
    width: 45px;
  }
}
.topBusiness__movieBtn::after {
  border-right: 5px solid #fff;
  border-top: 5px solid #fff;
  content: "";
  display: block;
  height: 17px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-75%, -50%) rotate(45deg);
          transform: translate(-75%, -50%) rotate(45deg);
  transition: opacity 0.2s;
  width: 17px;
}
@media screen and (max-width: 768px) {
  .topBusiness__movieBtn::after {
    border-right-width: 3px;
    border-top-width: 3px;
    height: 9px;
    width: 9px;
  }
}
.topBusiness__movieBtn:hover::before, .topBusiness__movieBtn:hover::after {
  opacity: 0.6;
}
.topBusiness__movieImg {
  width: 100%;
}
.topBusiness__player {
  aspect-ratio: 1920/1080;
  position: relative;
}
.topBusiness__video {
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.topBusiness__btn {
  margin: 52px 0 0;
}
@media screen and (max-width: 768px) {
  .topBusiness__btn {
    margin: 28px 0 0;
  }
}

iframe.youtube-16-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.topContact {
  -webkit-align-items: center;
          align-items: center;
  background-color: #ccf1f4;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 132px 0 168px;
}
@media screen and (max-width: 768px) {
  .topContact {
    background-color: #f1f2f3;
    padding: 52px 6px 65px;
  }
}
.topContact__container {
  margin: 0 auto;
  max-width: 1170px;
  padding: 0 45px;
}
@media screen and (max-width: 768px) {
  .topContact__container {
    padding: 0 20px;
  }
}
.topContact__title {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .topContact__title {
    margin-bottom: 34px;
  }
}
.topContact__text {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .topContact__text {
    font-size: 1.4rem;
  }
}
.topContact__btns {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 55px 40px;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: 57px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .topContact__btns {
    -webkit-align-items: unset;
            align-items: unset;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 21px 0;
    margin-top: 25px;
  }
}
.topContact__btnitem {
  width: min((100% - 40px) * 0.5, 500px);
}
@media screen and (max-width: 768px) {
  .topContact__btnitem {
    width: 100%;
  }
}
.topContact .topContact__link {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  -webkit-align-items: center;
          align-items: center;
  background-color: #00bfd3;
  color: #fff;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  font-size: 2rem;
  font-weight: 500;
  height: 100%;
  min-height: 92px;
  padding: 0 68px 0 42px;
  transition: opacity 0.2s;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .topContact .topContact__link {
    font-size: 15px;
    height: 58px;
    padding: 0 25px;
  }
}

.topFv {
  --first-fadeout-duration: 1000ms;
  --slider-content-hide-delay: unset;
  --slider-content-show-delay: unset;
  background: #fff;
  display: grid;
  grid-template-areas: "..." "slider" "scroll";
  grid-template-columns: 1fr;
  grid-template-rows: var(--header-height, 0px) auto minmax(100px, auto);
  overflow: hidden;
  position: relative;
  --header-height: 70px;
}
@media screen and (max-width: 768px) {
  .topFv {
    --header-height: 90px;
    grid-template-areas: "..." "slider" "pagination" "scroll";
    grid-template-columns: 1fr;
    grid-template-rows: var(--header-height, 0px) auto auto minmax(100px, auto);
  }
}
.topFv::before {
  background: #00bfd3;
  content: "";
  display: block;
  grid-column: 1/-1;
  grid-row: 2/-1;
}
.topFv__first {
  display: grid;
  grid-area: 1/1/-1/-1;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
  transition: opacity ease-in-out var(--first-fadeout-duration, 0s), visibility ease-in-out var(--first-fadeout-duration, 0s);
  z-index: 1000;
}
.topFv__first::before {
  background: #fff;
  content: "";
  grid-column: 1/-1;
  grid-row: 1/2;
}
.topFv__first::after {
  background: #00bfd3;
  content: "";
  grid-column: 1/-1;
  grid-row: 2/-1;
}
.topFv__first.is_hidden {
  opacity: 0;
  visibility: hidden;
}
.topFv__slider {
  background: linear-gradient(to top, transparent 1px, #fff 1px);
  grid-area: slider;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.topFv__slider::before, .topFv__slider::after {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  content: "";
  display: block;
  height: 10px;
  inset: auto 0;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .topFv__slider::before, .topFv__slider::after {
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.3);
    height: 6px;
  }
}
.topFv__slider::before {
  bottom: 100%;
}
.topFv__slider::after {
  top: 100%;
}
.topFv__slider .swiper,
.topFv__slider .swiper-wrapper,
.topFv__slider .swiper-slide {
  height: 100%;
  width: 100%;
}
.topFv__slideLink {
  display: block;
  height: 100%;
  width: 100%;
}
.topFv__slideInner {
  box-sizing: border-box;
  display: grid;
  grid-template-areas: "main";
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  height: 100%;
  width: 100%;
}
.topFv__pic {
  display: block;
  grid-area: main;
  height: 100%;
}
.topFv__img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.topFv__headline {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  align-self: end;
  display: -webkit-flex;
  display: flex;
  -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.1));
  -webkit-flex-direction: column;
          flex-direction: column;
  grid-area: main;
  justify-self: center;
  transition-delay: var(--slider-content-show-delay, 0s);
  transition-duration: 1s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: transform, opacity, visibility;
  transition-property: transform, opacity, visibility, -webkit-transform;
  width: clamp(81.9462227913vw, 1280px, 100% - 90px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .topFv__headline {
    justify-self: start;
    margin: 40px 0 0;
    width: calc(100% - 60px);
  }
}
.swiper:not(.is_shown) .swiper-slide .topFv__headline, .swiper.is_shown .swiper-slide:not(.swiper-slide-active) .topFv__headline {
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition-delay: var(--slider-content-hide-delay, 0s);
  transition-duration: 0s;
  visibility: hidden;
}
.topFv__headlineInner {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.7682458387vw 0.7682458387vw 0 0;
  display: grid;
  grid-template-areas: "date ..." "title arrow";
  grid-template-columns: 1fr 3.5851472471vw;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 2.1766965429vw 2.9449423816vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topFv__headlineInner {
    border-radius: 0 12px 0 0;
    grid-template-areas: "date arrow" "title arrow";
    grid-template-columns: 1fr 28px;
    padding: 16px 20px;
  }
}
.topFv__headlineInner::after {
  align-self: center;
  border-right: 0.2560819462vw solid #00bfd3;
  border-top: 0.2560819462vw solid #00bfd3;
  content: "";
  display: block;
  grid-area: arrow;
  height: 0.7042253521vw;
  justify-self: end;
  -webkit-transform: translate(-25%, 0) rotate(45deg);
          transform: translate(-25%, 0) rotate(45deg);
  width: 0.7042253521vw;
}
@media screen and (max-width: 768px) {
  .topFv__headlineInner::after {
    border-right-width: 3px;
    border-top-width: 3px;
    height: 9px;
    width: 9px;
  }
}
.topFv__date {
  color: #575756;
  font-family: mundial, sans-serif;
  font-size: max(1rem, 0.8962868118vw);
  font-weight: 600;
  grid-area: date;
  line-height: 1;
  margin: 0 0 0.5121638924vw;
}
@media screen and (max-width: 768px) {
  .topFv__date {
    font-size: 1rem;
    margin: 0 0 4px;
  }
}
.topFv__title {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: max(1.7rem, 1.6005121639vw);
  grid-area: title;
  line-height: 1.52;
}
@media screen and (max-width: 768px) {
  .topFv__title {
    font-size: 1.5rem;
    line-height: 1.5333333333;
  }
}
.topFv__pagination {
  --swiper-pagination-bullet-horizontal-gap: 0;
  align-self: start;
  grid-area: scroll;
  justify-self: start;
  margin: 22px 44px;
  width: calc(50% - 140px);
}
@media screen and (max-width: 768px) {
  .topFv__pagination {
    grid-area: pagination;
    margin: 20px 28px 10px;
    width: auto;
  }
}
.topFv__pagination .swiper-pagination-bullets {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px 12px;
  position: static;
}
@media screen and (max-width: 768px) {
  .topFv__pagination .swiper-pagination-bullets {
    gap: 12px 8px;
  }
}
.topFv__pagination .swiper-pagination-bullet {
  --my-swiper-slide-progress: 0;
  background: #99e3e9;
  border-radius: 0;
  cursor: pointer;
  height: 1px;
  opacity: 1;
  position: relative;
  width: 4.0973111396vw;
}
@media screen and (max-width: 768px) {
  .topFv__pagination .swiper-pagination-bullet {
    width: 40px;
  }
}
.topFv__pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  inset: -6px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .topFv__pagination .swiper-pagination-bullet::before {
    inset: -4px;
  }
}
.topFv__pagination .swiper-pagination-bullet::after {
  background: #fff;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: -1px;
  -webkit-transform: scaleX(var(--my-swiper-slide-progress)) translateZ(0);
          transform: scaleX(var(--my-swiper-slide-progress)) translateZ(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  transition: opacity 0.1s, visibility 0.1s;
  visibility: hidden;
}
.topFv__pagination .swiper-pagination-bullet:hover {
  opacity: 0.6;
}
.topFv__pagination .swiper-pagination-bullet-active {
  pointer-events: none;
}
.topFv__pagination .swiper-pagination-bullets.is_animationEnabled .swiper-pagination-bullet-active::after {
  opacity: 1;
  visibility: visible;
}
.topFv__scroll {
  align-self: center;
  color: #fff;
  grid-area: scroll;
  justify-self: center;
  margin: 12px 0;
  padding: 0 0 24px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .topFv__scroll {
    margin: 12px 0 20px;
  }
}
.topFv__scroll::after {
  -webkit-animation: 1.5s topFvScrollIcon linear infinite both alternate;
          animation: 1.5s topFvScrollIcon linear infinite both alternate;
  border-bottom: 4px solid;
  border-right: 4px solid;
  bottom: 0;
  content: "";
  display: block;
  height: 11px;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -25%) rotate(45deg);
          transform: translate(-50%, -25%) rotate(45deg);
  width: 11px;
}
@media screen and (max-width: 768px) {
  .topFv__scroll::after {
    border-bottom-width: 3px;
    border-right-width: 3px;
    height: 9px;
    width: 9px;
  }
}
.topFv__scrollTxt {
  display: block;
  font-family: mundial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
@-webkit-keyframes topFvScrollIcon {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 0 8px;
  }
}
@keyframes topFvScrollIcon {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 0 8px;
  }
}

.topIntro {
  background: linear-gradient(to bottom, #00bfd3, transparent) no-repeat;
  overflow: hidden;
  padding: 150px 0 110px;
}
@media screen and (max-width: 768px) {
  .topIntro {
    padding: 86px 0 110px;
  }
}
.topIntro__container {
  margin: 0 auto;
  max-width: 1170px;
  padding: 0 45px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .topIntro__container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
.topIntro__title {
  color: #fff;
  font-family: mundial, sans-serif;
  font-size: 9rem;
  font-weight: 600;
  margin-bottom: 58px;
}
@media screen and (max-width: 768px) {
  .topIntro__title {
    font-size: 4.8rem;
    margin-bottom: 20px;
    -webkit-order: 1;
            order: 1;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .topIntro__title {
    padding: 0 15px 0 55px;
    text-align: left;
  }
}
.topIntro__text {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .topIntro__text {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .topIntro__text {
    padding: 0 35px 0 55px;
    text-align: left;
  }
}
.topIntro__text_size_small {
  font-size: 2rem;
  line-height: 2.5;
  margin-bottom: 58px;
}
@media screen and (max-width: 768px) {
  .topIntro__text_size_small {
    font-size: 1.4rem;
    line-height: 2.4;
    margin-bottom: 20px;
    -webkit-order: 2;
            order: 2;
  }
}
.topIntro__text_size_large {
  font-size: 3.1rem;
  font-weight: 600;
  line-height: 1.93;
  margin-bottom: 126px;
}
@media screen and (max-width: 768px) {
  .topIntro__text_size_large {
    font-size: 2.2rem;
    line-height: 1.8;
    margin-bottom: 36px;
    -webkit-order: 3;
            order: 3;
  }
}
.topIntro__text_size_midium {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.95;
}
@media screen and (max-width: 768px) {
  .topIntro__text_size_midium {
    font-size: 1.9rem;
    line-height: 1.76;
    -webkit-order: 5;
            order: 5;
  }
}
.topIntro__text_lang_en {
  font-family: mundial, sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .topIntro__text_lang_en {
    font-size: 2.1rem;
  }
}
.topIntro__fig {
  display: grid;
  grid-template-areas: "pic";
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  position: absolute;
  right: -118px;
  top: 148px;
  width: 68.3760683761%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .topIntro__fig {
    height: auto;
    margin: 0 auto 36px;
    -webkit-order: 4;
            order: 4;
    position: static;
    width: 100%;
  }
}
.topIntro__fig.jsAnimation .topIntro__pic {
  transition-duration: 1s;
  transition-property: translate, opacity, visibility;
}
.topIntro__fig.jsAnimation .topIntro__pic:nth-child(1) {
  transition-delay: 0ms;
}
.topIntro__fig.jsAnimation .topIntro__pic:nth-child(2) {
  transition-delay: 200ms;
}
.topIntro__fig.jsAnimation .topIntro__pic:nth-child(3) {
  transition-delay: 400ms;
}
.topIntro__fig:not(.has_reached) .topIntro__pic {
  opacity: 0;
  visibility: hidden;
}
.topIntro__fig:not(.has_reached) .topIntro__pic:nth-child(1) {
  translate: -80px 0;
}
@media screen and (max-width: 768px) {
  .topIntro__fig:not(.has_reached) .topIntro__pic:nth-child(1) {
    translate: -40px 0;
  }
}
.topIntro__fig:not(.has_reached) .topIntro__pic:nth-child(2) {
  translate: -60px 0;
}
@media screen and (max-width: 768px) {
  .topIntro__fig:not(.has_reached) .topIntro__pic:nth-child(2) {
    translate: -30px 0;
  }
}
.topIntro__fig:not(.has_reached) .topIntro__pic:nth-child(3) {
  translate: -40px 0;
}
@media screen and (max-width: 768px) {
  .topIntro__fig:not(.has_reached) .topIntro__pic:nth-child(3) {
    translate: -20px 0;
  }
}
.topIntro__pic {
  display: block;
  grid-area: pic;
}
.topIntro__img {
  height: auto;
  width: 100%;
}
.topMessage {
  margin: 148px 0 220px;
}
@media screen and (max-width: 768px) {
  .topMessage {
    margin: 28px 0 88px;
  }
}
.topMessage__container {
  margin: 0 auto;
  max-width: 1562px;
}
.topMessage__content {
  display: grid;
  grid-template-areas: "... header ..." "... detail ...";
  grid-template-columns: 1fr min(100% - 90px, 1080px) 1fr;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 768px) {
  .topMessage__content {
    grid-template-areas: "... header ..." "visual visual visual" "... detail ...";
    grid-template-columns: 26px 1fr 26px;
    grid-template-rows: auto auto 1fr;
  }
}
.topMessage__header {
  grid-area: header;
  justify-self: end;
  margin: 0 0 80px;
  width: 56.8518518519%;
}
@media screen and (max-width: 768px) {
  .topMessage__header {
    justify-self: stretch;
    margin: 0 0 32px;
    width: unset;
  }
}
.topMessage__body {
  display: contents;
}
.topMessage__visual {
  align-self: flex-start;
  grid-area: 1/1/-1/-1;
  margin-top: 147px;
  width: 35.2112676056%;
}
@media screen and (max-width: 768px) {
  .topMessage__visual {
    grid-area: visual;
    margin: 0 0 48px;
    width: 78.6666666667%;
  }
}
.topMessage__img {
  width: 100%;
}
.topMessage__detail {
  grid-area: detail;
  justify-self: end;
  width: 56.8518518519%;
}
@media screen and (max-width: 768px) {
  .topMessage__detail {
    justify-self: stretch;
    width: unset;
  }
}
.topMessage__txt {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .topMessage__txt {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .topNav {
    -webkit-align-items: flex-end;
            align-items: flex-end;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
.topNav__btmBnr {
  display: -webkit-flex;
  display: flex;
  gap: 40px;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin: 0 auto;
  margin-top: 110px;
  max-width: 1170px;
  padding: 0 45px;
}
@media screen and (max-width: 768px) {
  .topNav__btmBnr {
    -webkit-align-items: flex-end;
            align-items: flex-end;
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    -webkit-justify-content: unset;
            justify-content: unset;
    margin: 35px 0 0;
    padding: 0;
  }
}
.topNav__textJa {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
}

.topBnr,
.topSecBnr {
  background-color: #00bfd3;
}
.topBnr__link,
.topSecBnr__link {
  display: -webkit-flex;
  display: flex;
  height: 100%;
}
.topBnr__link:hover .topBnr__textEn::after {
  translate: 8px 0;
}
.topBnr__link:hover .topBnr__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.topSecBnr__link:hover .topSecBnr__textEn::after {
  translate: 8px 0;
}
.topSecBnr__link:hover .topSecBnr__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.topBnr__fig,
.topSecBnr__fig {
  overflow: hidden;
}
.topBnr__img,
.topSecBnr__img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transition: 0.5s;
}
.topBnr__textEn, .topBnr__textJa,
.topSecBnr__textEn,
.topSecBnr__textJa {
  color: #fff;
}
.topBnr__textEn,
.topSecBnr__textEn {
  font-family: mundial, sans-serif;
  font-size: 3.3rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  padding: 0 20px 0 0;
  position: relative;
}
.topBnr__textEn::after,
.topSecBnr__textEn::after {
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  bottom: 4px;
  content: "";
  display: block;
  height: 11px;
  position: absolute;
  right: 0;
  -webkit-transform: translate(-25%, 0%) rotate(45deg);
          transform: translate(-25%, 0%) rotate(45deg);
  transition: translate 0.2s;
  width: 11px;
}
@media screen and (max-width: 768px) {
  .topBnr__textEn::after,
  .topSecBnr__textEn::after {
    border-right-width: 2px;
    border-top-width: 2px;
    height: 8px;
    width: 8px;
  }
}
.topBnr__textEn_link_ext::after,
.topSecBnr__textEn_link_ext::after {
  background: no-repeat center url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2013.87%2013.87%22%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.cls-1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20none%3B%0A%20%20%20%20%20%20%20%20stroke%3A%20%23fff%3B%0A%20%20%20%20%20%20%20%20stroke-miterlimit%3A%2010%3B%0A%20%20%20%20%20%20%20%20stroke-width%3A%201.27px%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cg%20id%3D%22design%22%3E%0A%20%20%20%20%3Cg%3E%0A%20%20%20%20%20%20%3Cpolyline%20class%3D%22cls-1%22%20points%3D%2213.23%208.08%2013.23%2013.23%20.64%2013.23%20.64%20.64%205.78%20.64%22%2F%3E%0A%20%20%20%20%20%20%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.23%22%20y1%3D%22.64%22%20x2%3D%226.93%22%20y2%3D%226.93%22%2F%3E%0A%20%20%20%20%20%20%3Cpolyline%20class%3D%22cls-1%22%20points%3D%228.13%20.64%2013.23%20.64%2013.23%205.74%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  border: none;
  height: 13px;
  right: -7px;
  -webkit-transform: none;
          transform: none;
  width: 13px;
}
@media screen and (max-width: 768px) {
  .topBnr__textEn_link_ext::after,
  .topSecBnr__textEn_link_ext::after {
    height: 10px;
    width: 10px;
  }
}
@media screen and (max-width: 768px) {
  .topBnr__textEn,
  .topSecBnr__textEn {
    font-size: 2.1rem;
  }
}
.topBnr__textJa,
.topSecBnr__textJa {
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .topBnr__textJa,
  .topSecBnr__textJa {
    font-size: 1.3rem;
  }
}
.topBnr__fig, .topBnr__textArea,
.topSecBnr__fig,
.topSecBnr__textArea {
  height: 100%;
}
.topBnr__textArea,
.topSecBnr__textArea {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
}
.topBnr__text,
.topSecBnr__text {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .topBnr__text,
  .topSecBnr__text {
    gap: 8px;
  }
}

.topBnr {
  height: 366px;
}
@media screen and (max-width: 768px) {
  .topBnr {
    height: 132px;
    width: calc(100vw - 55px);
  }
}
.topBnr__fig, .topBnr__textArea {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .topBnr__fig {
    width: 58.8%;
  }
  .topBnr__textArea {
    width: 41.2%;
  }
}
.topBnr__textArea {
  padding: 42px 39px 0;
}
@media screen and (max-width: 768px) {
  .topBnr__textArea {
    padding: 0 10px;
  }
}

.topSecBnr {
  height: 206px;
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .topSecBnr {
    height: 132px;
    max-width: none;
    width: calc(100vw - 55px);
  }
}
.topSecBnr__fig {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: max(100% - 206px, 40%);
}
@media screen and (max-width: 768px) {
  .topSecBnr__fig {
    width: 58.8%;
  }
}
.topSecBnr__textArea {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0 17px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .topSecBnr__textArea {
    padding: 0 10px;
    width: 41.2%;
  }
}
.topSecBnr__text {
  gap: 8px;
}
.topSecBnr__textEn {
  letter-spacing: -0.05em;
}

.topNews {
  background: #00bfd3;
  padding-top: 85px;
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
}
.topNews__container {
  margin: 0 auto;
  max-width: 1370px;
  padding: 0 45px;
}
@media screen and (max-width: 768px) {
  .topNews__container {
    padding: 0 33px 0 0;
  }
}
.topNews__inner {
  background: #fff;
  padding: 60px 100px 63px;
}
@media screen and (max-width: 1050px) {
  .topNews__inner {
    padding: 60px 27px 63px;
  }
}
@media screen and (max-width: 768px) {
  .topNews__inner {
    padding: 34px 27px;
  }
}
.topNews__title {
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.topNews__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #00bfd3;
  bottom: -10px;
}
.topNews__list {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .topNews__list {
    margin-top: 18px;
  }
}
.topNews__item {
  padding: 30px 0 15px;
  border-bottom: 1px solid #b9bec3;
}
@media screen and (max-width: 768px) {
  .topNews__item {
    padding: 20px 0 12px;
  }
}
.topNews__wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .topNews__wrapper {
    -webkit-column-gap: 13px;
       -moz-column-gap: 13px;
            column-gap: 13px;
  }
}
.topNews__time {
  font-family: mundial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #595757;
  line-height: 1;
  padding: 5px 12px;
  background: #f1f2f3;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.topNews__cat {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.03em;
}
.topNews__detailLink {
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  padding: 15px 0;
  display: block;
  line-height: 1.7;
}
.topNews__detailLink:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .topNews__detailLink {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}
.topNews__btn {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .topNews__btn {
    margin-top: 28px;
  }
}
.topNews__listLink {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .topNews__listLink {
    font-size: 1.4rem;
  }
}

.topSustainability {
  margin: 170px 0 250px;
}
@media screen and (max-width: 768px) {
  .topSustainability {
    margin: 92px 0 114px;
  }
}
.topSustainability__container {
  margin: 0 auto;
  max-width: 1562px;
}
.topSustainability__content {
  display: grid;
  grid-template-areas: "... header ..." "... detail ...";
  grid-template-columns: 1fr min(100% - 90px, 1080px) 1fr;
  grid-template-rows: auto 1fr auto;
}
@media screen and (max-width: 768px) {
  .topSustainability__content {
    grid-template-areas: "visual visual visual" "... header ..." "... detail ...";
    grid-template-columns: 26px 1fr 26px;
    grid-template-rows: auto auto 1fr;
  }
}
.topSustainability__header {
  grid-area: header;
  margin: 0 0 80px;
  width: 42.5925925926%;
}
@media screen and (max-width: 768px) {
  .topSustainability__header {
    justify-self: stretch;
    margin: 0 0 32px;
    width: unset;
  }
}
.topSustainability__body {
  display: contents;
}
.topSustainability__visual {
  align-self: center;
  grid-area: 1/1/-1/-1;
  justify-self: end;
  width: 48.0153649168%;
}
@media screen and (max-width: 768px) {
  .topSustainability__visual {
    grid-area: visual;
    justify-self: stretch;
    margin: 0 0 32px;
    width: unset;
  }
}
.topSustainability__img {
  width: 100%;
}
.topSustainability__detail {
  grid-area: detail;
  width: 42.5925925926%;
}
@media screen and (max-width: 768px) {
  .topSustainability__detail {
    width: unset;
  }
}
.topSustainability__leadTxt {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin: 0 0 48px;
}
@media screen and (max-width: 768px) {
  .topSustainability__leadTxt {
    font-size: 1.6rem;
    margin: 0 0 16px;
  }
}
.topSustainability__txt {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .topSustainability__txt {
    font-size: 1.4rem;
  }
}
.topSustainability__btn {
  margin: 52px 0 0;
}
@media screen and (max-width: 768px) {
  .topSustainability__btn {
    margin: 28px 0 0;
  }
}

.topTitle__txtEn {
  color: #00bfd3;
  display: block;
  font-family: mundial, sans-serif;
  font-size: 3.3rem;
  font-weight: 600;
  line-height: 1;
}
.topTitle__txtEn_c_inherit {
  color: inherit;
}
.topTitle__txtJa {
  font-family: m-plus-1p, "M PLUS 1p", "Noto Sans JP", sans-serif;
  color: #000;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 16px 0 0;
}
.topTitle__txtJa_c_inherit {
  color: inherit;
}

.newsDetail__container {
  margin: 80px auto 70px;
  max-width: 1170px;
  padding: 0 45px;
}
@media screen and (max-width: 768px) {
  .newsDetail__container {
    padding: 0;
    margin: 30px 0 100px;
  }
}
.newsDetail__body {
  margin-top: 75px;
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .newsDetail__body {
    margin-top: 40px;
    margin-bottom: 110px;
  }
}
.newsDetail__footer {
  margin-top: 110px;
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .newsDetail__footer {
    margin-top: 0;
    margin-bottom: 100px;
  }
}
.newsDetail__returnBtn {
  margin: 30px auto;
  width: 390px;
}
@media screen and (max-width: 768px) {
  .newsDetail__returnBtn {
    margin: 30px 25px;
    width: calc(100% - 50px);
  }
}

.newsHeader {
  border-bottom: 1px solid #00bfd3;
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .newsHeader {
    margin: 0 25px;
    padding-bottom: 40px;
  }
}
.newsHeader__topInner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media screen and (max-width: 768px) {
  .newsHeader__topInner {
    -webkit-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
.newsHeader__bottomInner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .newsHeader__bottomInner {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
.newsHeader__heading {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.66;
}
@media screen and (max-width: 768px) {
  .newsHeader__heading {
    font-size: 1.7rem;
    line-height: 1.59;
  }
}
.newsHeader__catch {
  font-size: 1.7rem;
  color: #858585;
  margin-top: 14px;
  line-height: 1.83;
}
@media screen and (max-width: 768px) {
  .newsHeader__catch {
    font-size: 1.2rem;
  }
}
.newsHeader__tag {
  font-size: 1.3rem;
  font-weight: 700;
  background: #66d5de;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
  padding: 8px 10px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .newsHeader__tag {
    -webkit-order: -1;
            order: -1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
    font-size: 1rem;
    padding: 5px 9px;
  }
}
.newsHeader__time {
  font-family: mundial, sans-serif;
  color: #595757;
  font-weight: 600;
  font-size: 1.5rem;
}
.newsHeader__company {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .newsHeader__company {
    margin-top: 10px;
    font-size: 1.4rem;
    line-height: 1.86;
  }
}
.newsHeader__icons {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .newsHeader__icons {
    -webkit-justify-content: center;
            justify-content: center;
    margin-top: 40px;
  }
}
.newsHeader__txt {
  font-size: 1.4rem;
}
.newsHeader__txt + .newsHeader__link {
  margin-left: 13px;
}
.newsHeader__link {
  cursor: pointer;
  transition: 0.2s;
}
.newsHeader__link + .newsHeader__link {
  margin-left: 15px;
}
.newsHeader__link + .newsHeader__txt {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .newsHeader__link + .newsHeader__txt {
    margin-left: 20px;
  }
}
.newsHeader__link:hover {
  opacity: 0.6;
}
.newsHeader__img {
  width: 35px;
  height: 35px;
}

.news .main {
  position: relative;
}
.news__container {
  margin: 80px auto 70px;
  max-width: 1170px;
  padding: 0 45px;
}
@media screen and (max-width: 768px) {
  .news__container {
    padding: 0 25px;
    margin: 30px 0 100px;
  }
}
.news__inner {
  margin: 86px auto 0;
}
@media screen and (max-width: 768px) {
  .news__inner {
    margin-top: 40px;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .news__tab {
    padding: 0;
    border: none;
  }
}
.news__tab .news__tabItem {
  padding: 0;
}
.news__tabList {
  margin: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex: 0 1 680px;
          flex: 0 1 680px;
}
.news__tabItem {
  display: block;
  width: 100%;
}
.news__tabItem + .news__tabItem {
  margin: 0;
}
.news__tabLink {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  padding: 7px 0;
  font-weight: 700;
  font-size: 2rem;
  border: 1px solid #66d5de;
  transition: 0.2s;
}
.news__tabLink_is_current {
  background: #66d5de;
}
.news__tabLink:hover {
  opacity: 1;
}
.news__tabLink:not(.news__tabLink_is_current):hover {
  background: #ccf1f4;
  border: 1px solid #ccf1f4;
}
@media screen and (max-width: 768px) {
  .news__tabLink {
    font-size: 1.4rem;
    padding: 9px;
  }
}
.news__search {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .news__search {
    -webkit-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
    margin-top: 30px;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
}
.news__catList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .news__catList {
    -webkit-order: 1;
            order: 1;
  }
}
.news__catItem {
  padding: 8px 12px;
  background: #ccf1f4;
  font-weight: 1.2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .news__catItem {
    font-size: 1rem;
    padding: 5px 8px;
  }
}
.news__articleList {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .news__articleList {
    margin-top: 18px;
  }
}
.news__articleItem {
  padding: 30px 0 15px;
  border-bottom: 1px solid #b9bec3;
}
@media screen and (max-width: 768px) {
  .news__articleItem {
    padding: 20px 0 12px;
  }
}
.news__articleItem:nth-of-type(n + 9) {
  display: none;
}
.news__button {
  display: -webkit-flex;
  display: flex;
  border: 1px solid #e3e5e7;
  font-size: 1.6rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 11px 20px 11px 27px;
  position: relative;
  line-height: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: 0.2s;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
.news__button::after {
  content: "";
  display: block;
  background: url(../../../images/common/icon_search_turquoise.svg) no-repeat;
  width: 16px;
  height: 16px;
}
.news__button:hover {
  background: #e3e5e7;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .news__button {
    width: 100%;
    font-size: 1.4rem;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    padding-left: 0;
    padding-right: 0;
  }
}
.news__wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .news__wrapper {
    -webkit-column-gap: 13px;
       -moz-column-gap: 13px;
            column-gap: 13px;
  }
}
.news__time {
  font-family: mundial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #595757;
  line-height: 1;
  padding: 5px 12px;
  background: #f1f2f3;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.news__cat {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.03em;
}
.news__detailLink {
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  padding: 15px 0;
  display: block;
  line-height: 1.53;
}
.news__detailLink:hover {
  text-decoration: underline;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .news__detailLink {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}
.news__more {
  margin: auto;
  width: 600px;
}
@media screen and (max-width: 768px) {
  .news__more {
    width: 100%;
  }
}
.news__result {
  margin-top: 50px;
  margin-bottom: 100px;
}

/* ページ共有 */
.policy {
  margin-bottom: 192px;
  margin-top: 142px;
}
@media screen and (max-width: 768px) {
  .policy {
    margin-bottom: 83px;
    margin-top: 45px;
  }
}
.policy__contact {
  border: 1px solid rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
  padding: 28px 39px;
}
@media screen and (max-width: 768px) {
  .policy__contact {
    margin-bottom: 35px;
    padding: 19px 24px;
  }
}
.policy__container {
  margin: 0 auto;
  max-width: 1170px;
  padding: 0 45px;
}
@media screen and (max-width: 768px) {
  .policy__container {
    max-width: 100%;
    padding: 0 26px;
  }
}
.policy__headingTtl {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .policy__headingTtl {
    font-size: 2rem;
  }
}
.policy__nav {
  display: -webkit-flex;
  display: flex;
  gap: 37px;
  margin: 80px 0 78px;
}
@media screen and (max-width: 1050px) {
  .policy__nav {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 21px;
    margin: 55px 0 60px;
  }
}
.policy__navItem {
  width: 100%;
}
.policy__pageTtl {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .policy__pageTtl {
    font-size: 1.8rem;
    line-height: 1.75;
    margin-bottom: 31px;
  }
}
.policy__sign, .policy__text {
  line-height: 2.265625;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .policy__sign, .policy__text {
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 29px;
  }
}
.policy__text {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
.policy__text_margin_thin {
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .policy__text_margin_thin {
    margin-bottom: 37px;
  }
}
.policy__contactTxt, .policy__subTtl, .policy__subsubTTl, .policy__listTtl, .policy__listTxt, .policy__listItem {
  line-height: 2.265625;
}
@media screen and (max-width: 768px) {
  .policy__contactTxt, .policy__subTtl, .policy__subsubTTl, .policy__listTtl, .policy__listTxt, .policy__listItem {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.policy__subTtl {
  font-weight: 500;
}
.policy__subSubTtl {
  display: block;
  font-weight: 500;
}
.policy__list {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .policy__list {
    margin-bottom: 36px;
  }
}
.policy__link {
  opacity: 1;
  transition: 0.3s;
  word-wrap: break-word;
}
.policy__link:hover {
  opacity: 0.6;
}
.policy__top {
  margin-bottom: 78px;
}
@media screen and (max-width: 768px) {
  .policy__top {
    margin-bottom: 39px;
  }
}

/* ページ固有 */
.privacyprotection__section,
.specificprivacy__section,
.security__section,
.susPolicy__section {
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  padding-top: 45px;
}
.privacyprotection__section_no_border,
.specificprivacy__section_no_border,
.security__section_no_border,
.susPolicy__section_no_border {
  border: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .privacyprotection__section,
  .specificprivacy__section,
  .security__section,
  .susPolicy__section {
    padding-top: 27px;
  }
  .privacyprotection__section_no_border,
  .specificprivacy__section_no_border,
  .security__section_no_border,
  .susPolicy__section_no_border {
    padding: 0;
  }
}

.security {
  margin-top: 134px;
}
@media screen and (max-width: 768px) {
  .security {
    margin-top: 44px;
  }
}
.security__pageTtl {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .security__pageTtl {
    font-size: 2rem;
    margin-bottom: 48px;
  }
}
.security .basicBtn {
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .security .basicBtn {
    font-size: 1.6rem;
  }
}

.environmentBiodiversity .susTable {
  margin-top: 30px;
}
@media screen and (max-width: 1050px) {
  .environmentBiodiversity .susTable {
    width: 100%;
    margin-top: 0;
    height: auto;
  }
}
.environmentBiodiversity .susTable__th, .environmentBiodiversity .susTable__td {
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 1050px) {
  .environmentBiodiversity .susTable__th, .environmentBiodiversity .susTable__td {
    padding-left: 2px;
    padding-right: 2px;
  }
}
.environmentBiodiversity .susTable tbody td {
  width: 7.5em;
}
.environmentBiodiversity .susVoice {
  margin-top: 75px;
}
@media screen and (max-width: 1050px) {
  .environmentBiodiversity .susVoice {
    margin-top: 38px;
  }
}
.environmentBiodiversity .sustainability__section:last-child {
  margin-top: 90px;
}
@media screen and (max-width: 1050px) {
  .environmentBiodiversity .sustainability__section:last-child {
    margin-top: 65px;
  }
}

.environmentClimateChange .sustainability__section + .sustainability__section:has(.sustainability__subSubSubTtl),
.environmentClimateChange .sustainability__section:last-child {
  margin-top: 80px;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .sustainability__section + .sustainability__section:has(.sustainability__subSubSubTtl),
  .environmentClimateChange .sustainability__section:last-child {
    margin-top: 62px;
  }
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .sustainability__section:has(.sustainability__subSubSubSubTtl) {
    margin-top: 48px;
  }
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .sustainability__inner:first-child {
    margin-top: 0;
  }
}
.environmentClimateChange .sustainability__fig + .sustainability__txt {
  margin-top: 70px;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .sustainability__fig + .sustainability__txt {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .environmentClimateChange .susLinkList {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (max-width: 1200px) {
  .environmentClimateChange .susLinkList__item {
    width: calc(50% - 18.5px);
  }
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .susLinkList__item {
    width: 100%;
  }
}
.environmentClimateChange .susLinkList__link {
  padding-left: 20px;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .susLinkList__link {
    padding-left: 0;
  }
}
.environmentClimateChange .susLinkList__link::after {
  right: 21px;
}
.environmentClimateChange .sustainability__intro {
  margin-top: 90px;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .sustainability__intro {
    margin-top: 60px;
  }
}
.environmentClimateChange .sustainability__intro + .sustainability__txt {
  margin-top: 50px;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .sustainability__intro + .sustainability__txt {
    margin-top: 40px;
  }
}
.environmentClimateChange .sustainability__intro:has(+ .sustainability__small) {
  margin-bottom: 0;
}
.environmentClimateChange .sustainability__extension {
  grid-area: ex;
  margin-top: 60px;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .sustainability__extension {
    margin-top: 40px;
  }
}
.environmentClimateChange .susTable {
  width: auto;
}
.environmentClimateChange .susTable thead th,
.environmentClimateChange .susTable tbody {
  border: 1px solid #00bfd3;
}
.environmentClimateChange .susTable__th,
.environmentClimateChange .susTable__td {
  border: 1px solid #00bfd3;
  font-size: 1.4rem;
  vertical-align: middle;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .susTable__th,
  .environmentClimateChange .susTable__td {
    font-size: 1.1rem;
  }
}
.environmentClimateChange .susTable__th {
  font-weight: 500;
  padding-bottom: 12px;
  padding-top: 11px;
  text-align: center;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .susTable__th {
    padding: 11px 0 12px;
  }
}
.environmentClimateChange .susTable__td {
  padding: 7px 15px 9px;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .susTable__td {
    padding: 7px 5px 9px;
  }
}
.environmentClimateChange .susTable__td_writing_vertical {
  white-space: nowrap;
}
.environmentClimateChange .susTable__td_writing_vertical span {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.5;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
.environmentClimateChange .susTable__td_type_low {
  background: #ccf1f4;
}
.environmentClimateChange .susTable__td_type_low::before {
  content: "低";
}
.environmentClimateChange .susTable__td_type_middle {
  background: #a1e3d7;
}
.environmentClimateChange .susTable__td_type_middle::before {
  content: "中";
}
.environmentClimateChange .susTable__td_type_high {
  background: #ffc9b5;
}
.environmentClimateChange .susTable__td_type_high::before {
  content: "高";
}
.environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(1) {
  font-weight: 700;
  min-width: 56px;
  text-align: center;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(1) {
    min-width: 44px;
  }
}
.environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(2) {
  min-width: 134px;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(2) {
    min-width: 105px;
  }
}
.environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(3) {
  min-width: 585px;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(3) {
    min-width: 460px;
  }
}
.environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(4),
.environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(5),
.environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(6),
.environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(7) {
  min-width: 76px;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(4),
  .environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(5),
  .environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(6),
  .environmentClimateChange .susTable tbody tr:first-child td:nth-of-type(7) {
    min-width: 60px;
  }
}
.environmentClimateChange .susTable tbody td:nth-last-of-type(1),
.environmentClimateChange .susTable tbody td:nth-last-of-type(2),
.environmentClimateChange .susTable tbody td:nth-last-of-type(3),
.environmentClimateChange .susTable tbody td:nth-last-of-type(4) {
  text-align: center;
}
.environmentClimateChange .susTable__itemWrap {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .susTable__itemWrap {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.environmentClimateChange .susTable__item:not(:only-child) {
  max-width: 350px;
}
@media screen and (max-width: 1050px) {
  .environmentClimateChange .susTable__item:not(:only-child) {
    max-width: 265px;
  }
}

::-webkit-full-page-media, :future, :root .environmentClimateChange .susTable__td_writing_vertical span {
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 1050px) {
  ::-webkit-full-page-media, :future, :root .environmentClimateChange .susTable__td_writing_vertical span {
    line-height: 2;
  }
}

.environmentManagement .sustainability__section + .sustainability__section {
  margin-top: 80px;
}
@media screen and (max-width: 1050px) {
  .environmentManagement .sustainability__section + .sustainability__section {
    margin-top: 62px;
  }
}

.environmentResourceCirculating .sustainability__section + .sustainability__section {
  margin-top: 80px;
}
@media screen and (max-width: 1050px) {
  .environmentResourceCirculating .sustainability__section + .sustainability__section {
    margin-top: 62px;
  }
}
.environmentResourceCirculating .susVoice__txtWrap {
  margin-top: 0;
}
@media screen and (max-width: 1050px) {
  .environmentResourceCirculating .susVoice__txtWrap {
    margin-top: 20px;
  }
}
.environmentResourceCirculating .sustainability__section:has(.susVoice) {
  margin-top: 0;
}

.governanceCompliance .sustainability__section + .sustainability__section {
  margin-top: 80px;
}
@media screen and (max-width: 1050px) {
  .governanceCompliance .sustainability__section + .sustainability__section {
    margin-top: 62px;
  }
}

.governanceCorporateGovernance .sustainability__section + .sustainability__section {
  margin-top: 80px;
}
@media screen and (max-width: 1050px) {
  .governanceCorporateGovernance .sustainability__section + .sustainability__section {
    margin-top: 62px;
  }
}
.governanceCorporateGovernance .sustainability__fig {
  margin: 0 44px;
}
@media screen and (max-width: 1050px) {
  .governanceCorporateGovernance .sustainability__fig {
    min-width: 714px;
    width: 100%;
    margin: 0;
  }
}
.governanceCorporateGovernance .sustainability__section strong {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 1050px) {
  .governanceCorporateGovernance .sustainability__section strong {
    font-size: 1.4rem;
  }
}
.governanceCorporateGovernance .sustainability__extension {
  grid-area: ex;
  max-width: 1125px;
}
@media screen and (max-width: 1050px) {
  .governanceCorporateGovernance .sustainability__extension {
    max-width: 100%;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.governanceCorporateGovernance .sustainability__extension .sustainability__subSubSubSubTtl {
  margin-top: 44px;
  margin-left: 44px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1050px) {
  .governanceCorporateGovernance .sustainability__extension .sustainability__subSubSubSubTtl {
    display: block;
    width: 100%;
    margin-top: 32px;
    margin-left: 0;
    font-size: 1.4rem;
  }
}

.governanceRiskManagement .sustainability__section + .sustainability__section {
  margin-top: 80px;
}
@media screen and (max-width: 1050px) {
  .governanceRiskManagement .sustainability__section + .sustainability__section {
    margin-top: 62px;
  }
}
.governanceRiskManagement .sustainability__txt + .sustainability__txt {
  margin-top: 60px;
}
@media screen and (max-width: 1050px) {
  .governanceRiskManagement .sustainability__txt + .sustainability__txt {
    margin-top: 40px;
  }
}

.hr .sustainability__linkList {
  gap: 20px 16px;
}
.hr .susLinkList__link {
  padding-left: 28px;
}
@media screen and (max-width: 1050px) {
  .hr .susLinkList__link {
    padding-left: 0;
  }
}
.hr .sustainability__section + .sustainability__section,
.hr .sustainability__section + .sustainability__sectionWrap {
  margin-top: 92px;
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__section + .sustainability__section,
  .hr .sustainability__section + .sustainability__sectionWrap {
    margin-top: 62px;
  }
}
.hr .sustainability__section + .sustainability__section:has(.susVoice) {
  margin-top: 76px;
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__section + .sustainability__section:has(.susVoice) {
    margin-top: 62px;
  }
}
.hr .sustainability__section:first-of-type:not(.sustainability__section_sec_01) .componentLink {
  margin-top: -23px;
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__section:first-of-type:not(.sustainability__section_sec_01) .componentLink {
    margin-top: 35px;
  }
}
.hr .sustainability__section_sec_02 .susVoice__fig {
  margin-top: -40px;
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__section_sec_02 .susVoice__fig {
    margin-top: 0;
  }
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__section_sec_07 .sustainability__fig + .componentLink {
    margin-top: 38px;
  }
}
.hr .sustainability__section_sec_08 .componentLink {
  grid-column: 2/-2;
  grid-row: 5/span 1;
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__section_sec_08 .sustainability__fig + .componentLink {
    margin-top: 46px;
  }
}
.hr .sustainability__section_sec_09 .susVoice__ttl {
  margin-bottom: 52px;
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__section_sec_09 .susVoice__ttl {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__inner {
    margin-top: 53px;
  }
}
.hr .sustainability__intro {
  margin-bottom: 0;
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__intro {
    margin-top: 35px;
  }
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__subSubSubSubTtl {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 1em;
    text-align: justify;
  }
}
.hr .sustainability__intro + .sustainability__contain {
  margin-top: 60px;
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__intro + .sustainability__contain {
    margin-top: 53px;
  }
}
.hr .sustainability__txt + .sustainability__subSubSubSubTtl {
  margin-top: 58px;
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__txt + .sustainability__subSubSubSubTtl {
    margin-top: 52px;
  }
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__txt + .sustainability__fig {
    margin-top: 30px;
  }
}
.hr .sustainability__inner + .sustainability__fig {
  -webkit-align-self: center;
          align-self: center;
  margin-top: 82px;
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__inner + .sustainability__fig {
    margin-top: 44px;
  }
}
.hr .sustainability__inner + .sustainability__fig + .componentLink {
  margin-top: 36px;
}
.hr .sustainability__fig {
  margin-top: 50px;
}
.hr .sustainability__fig + .sustainability__subSubSubSubTtl {
  margin-top: 70px;
}
@media screen and (max-width: 1050px) {
  .hr .sustainability__fig + .sustainability__subSubSubSubTtl {
    margin-top: 60px;
  }
}
.hr .sustainability__fig + .sustainability__contain {
  margin-top: 67px;
}
.hr .sustainability__fig + .componentLink {
  margin-top: 57px;
}
.hr .componentLink:where(:not(:first-child)) {
  margin-top: 35px;
}
@media screen and (max-width: 1050px) {
  .hr .componentLink:where(:not(:first-child)) {
    margin-top: 24px;
  }
}
.hr .componentLink__inner {
  margin-top: 0;
}
.hr .componentLink + .componentLink {
  margin-top: 14px;
}
@media screen and (max-width: 1050px) {
  .hr .componentLink + .componentLink {
    margin-top: 10px;
  }
}
.hr .componentLink + .componentLink .componentLink__inner {
  margin-top: 0;
}
.hr .componentLink + .sustainability__contain {
  margin-top: 68px;
}
@media screen and (max-width: 1050px) {
  .hr .componentLink + .sustainability__contain {
    margin-top: 57px;
  }
}
.hr .susVoice__inner {
  -webkit-align-items: center;
          align-items: center;
}
.hr .susVoice__ttl {
  margin-bottom: 9px;
  margin-left: 81px;
  margin-top: 0px;
  width: 302px;
}
@media screen and (max-width: 1050px) {
  .hr .susVoice__ttl {
    margin-bottom: 26px;
    margin-left: 24px;
    width: 179px;
  }
}
.hr .susVoice__intro {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 1050px) {
  .hr .susVoice__intro {
    font-size: 1.5rem;
  }
}
.hr .susVoice__intro:not(:last-child) {
  margin-bottom: 0.7em;
}
@media screen and (max-width: 1050px) {
  .hr .susVoice__intro:not(:last-child) {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 1050px) {
  .hr .susVoice__intro:has(+ .susVoice__intro) {
    margin-bottom: 1.3em;
  }
}
.hr .susVoice__txtWrap {
  margin-top: 0;
}
@media screen and (max-width: 1050px) {
  .hr .susVoice__txtWrap {
    margin-top: 21px;
  }
}
.hr .susVoice__txtWrap .susVoice__intro:first-child {
  margin-top: 0;
}

.sustainability__grid {
  display: grid;
  grid-template-columns: 1fr min(100% - 90px, 1080px) 1fr;
  grid-template-areas: "... header ..." "body body body" "... footer ...";
  grid-template-rows: auto 1fr auto;
}
@media screen and (max-width: 1050px) {
  .sustainability__grid {
    grid-template-columns: 26px min(100% - 52px) 26px;
    grid-template-areas: "... header ..." "body body body" "footer footer footer";
  }
}
.sustainability__header {
  grid-area: header;
  padding-top: 50px;
  padding-bottom: 76px;
}
@media screen and (max-width: 1050px) {
  .sustainability__header {
    padding-top: 8px;
    padding-bottom: 44px;
  }
}
.sustainability__body {
  grid-area: body;
}
.sustainability__section {
  display: grid;
  grid-template-columns: minmax(45px, 1fr) min(47.4% - 30px, 512px) min(9.8% - 30px, 105px) min(42.8% - 30px, 463px) minmax(45px, 1fr);
  grid-template-areas: "... title title title ..." "... intro intro intro ..." "... visualInner ... visual visual" "... figureInner ... figure ..." "... voice voice voice voice" "... contain contain contain ..." "... ex ex ex ex";
}
@media screen and (max-width: 1050px) {
  .sustainability__section {
    grid-template-columns: 26px min(100% - 52px) 26px;
    grid-template-areas: "... title title" "... intro ..." "... text ..." "... figure ..." "... voice voice" "... visual visual" "... contain ..." "... ex ex";
  }
}
.sustainability__footer {
  grid-area: footer;
}
.sustainability__en {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: mundial, sans-serif;
  color: #00bfd3;
  font-weight: 600;
  font-size: 9.294rem;
  letter-spacing: 0;
}
@media screen and (max-width: 1050px) {
  .sustainability__en {
    font-size: 4.8rem;
    letter-spacing: -0.01em;
  }
}
.sustainability__jp {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 3px solid #00bfd3;
  line-height: 1.3;
  padding-bottom: 8px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1050px) {
  .sustainability__jp {
    font-size: 1.4rem;
    padding-bottom: 4px;
  }
}
.sustainability__subTtl {
  font-size: 2.2rem;
  font-weight: 500;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 75px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1050px) {
  .sustainability__subTtl {
    font-size: 1.4rem;
    margin-top: 42px;
  }
}
.sustainability__subTtl::after {
  content: "";
  width: 13.38px;
  height: 6.26px;
  background: #00bfd3;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  left: auto;
  right: -25px;
  position: absolute;
}
@media screen and (max-width: 1050px) {
  .sustainability__subTtl::after {
    width: 9.09px;
    height: 4.26px;
    right: -17.5px;
  }
}
.sustainability__subSubTtl {
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: 14px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1050px) {
  .sustainability__subSubTtl {
    font-size: 1.7rem;
    margin-top: 8px;
  }
}
.sustainability__subSubSubTtl {
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 1px solid #00bfd3;
  padding-bottom: 20px;
  letter-spacing: 0.03em;
  grid-area: title;
}
@media screen and (max-width: 1050px) {
  .sustainability__subSubSubTtl {
    font-size: 1.5rem;
    padding-bottom: 13px;
    padding-right: 26px;
  }
}
.sustainability__subSubSubTtl + .sustainability__intro {
  grid-area: intro;
}
.sustainability__subSubSubTtl + .sustainability__contain {
  margin-top: 57px;
}
@media screen and (max-width: 1050px) {
  .sustainability__subSubSubTtl + .sustainability__contain {
    margin-top: 40px;
  }
}
.sustainability__subSubSubSubTtl {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 18px;
}
@media screen and (max-width: 1050px) {
  .sustainability__subSubSubSubTtl {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
}
.sustainability__txt + .sustainability__subSubSubSubTtl, .componentLink + .sustainability__subSubSubSubTtl, .componentLink + .sustainability__txt {
  margin-top: 40px;
}
@media screen and (max-width: 1050px) {
  .sustainability__txt + .sustainability__subSubSubSubTtl, .componentLink + .sustainability__subSubSubSubTtl, .componentLink + .sustainability__txt {
    margin-top: 32px;
  }
}
.sustainability__inner {
  margin-top: 60px;
  display: block;
  grid-area: text;
}
@media screen and (max-width: 1050px) {
  .sustainability__inner {
    width: 100%;
    margin-top: 42px;
  }
}
.sustainability__inner .sustainability__txt:first-child {
  margin-top: -10px;
}
.sustainability__inner .sustainability__intro:first-child {
  margin-top: -8px;
}
.sustainability__inner_type_visual {
  grid-area: visualInner;
}
@media screen and (max-width: 1050px) {
  .sustainability__inner_type_visual {
    grid-area: text;
  }
}
.sustainability__inner_type_figure {
  grid-area: figureInner;
}
@media screen and (max-width: 1050px) {
  .sustainability__inner_type_figure {
    grid-area: text;
  }
}
.sustainability__visual {
  grid-area: visual;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 60px;
}
@media screen and (max-width: 1050px) {
  .sustainability__visual {
    width: 100%;
    margin-top: 40px;
  }
}
.sustainability__pic {
  width: 100%;
  height: auto;
}
.sustainability__img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.sustainability__fig {
  grid-area: figure;
  display: -webkit-flex;
  display: flex;
  -webkit-column-gap: 105px;
     -moz-column-gap: 105px;
          column-gap: 105px;
  margin-top: 60px;
}
@media screen and (max-width: 1050px) {
  .sustainability__fig {
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
}
.sustainability__extension {
  grid-area: voice;
  padding-right: 45px;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .sustainability__extension {
    padding-right: 0;
    display: -webkit-flex;
    display: flex;
  }
}
.sustainability__contain {
  grid-area: contain;
}
.sustainability__contain .sustainability__txt:first-of-type {
  margin-top: -10px;
}
.sustainability__contain .sustainability__subSubSubSubTtl + .sustainability__txt:first-of-type {
  margin-top: 0;
}
.sustainability__flex {
  display: -webkit-flex;
  display: flex;
  -webkit-column-gap: 68px;
     -moz-column-gap: 68px;
          column-gap: 68px;
}
@media screen and (max-width: 768px) {
  .sustainability__flex {
    -webkit-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
  }
}
.sustainability__left {
  width: calc(63.8% - 34px);
}
@media screen and (max-width: 768px) {
  .sustainability__left {
    width: 100%;
  }
}
.sustainability__right {
  width: calc(36.2% - 34px);
}
@media screen and (max-width: 768px) {
  .sustainability__right {
    width: 100%;
    -webkit-order: -1;
            order: -1;
  }
}
.sustainability__intro {
  margin-top: 48px;
  margin-bottom: -20px;
  font-size: 2.8rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1050px) {
  .sustainability__intro {
    font-size: 1.7rem;
    line-height: 1.76;
  }
}
.sustainability__inner .sustainability__intro {
  margin-top: -6px;
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1050px) {
  .sustainability__inner .sustainability__intro {
    font-size: 1.7rem;
    line-height: 1.76;
    text-align: justify;
  }
}
.sustainability__txt {
  font-size: 1.6rem;
  line-height: 2.25;
  letter-spacing: 0.03em;
  text-align: justify;
}
@media screen and (max-width: 1050px) {
  .sustainability__txt {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.sustainability__txt_align_right {
  text-align: right;
}
.sustainability__txt_font_large {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 18px;
}
@media screen and (max-width: 1050px) {
  .sustainability__txt_font_large {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
}
.sustainability__txt_font_large + .sustainability__txt {
  margin-top: 0;
}
.sustainability__intro + .sustainability__txt {
  margin-top: 28px;
}
.sustainability__small {
  font-size: 1.2rem;
  line-height: 2.083;
  letter-spacing: 0.06em;
  display: inline-block;
}
@media screen and (max-width: 1050px) {
  .sustainability__small {
    font-size: 1.2rem;
    line-height: 1.91;
  }
}
.sustainability__txt + .sustainability__small, .sustainability__intro + .sustainability__small {
  margin-top: 30px;
}
@media screen and (max-width: 1050px) {
  .sustainability__txt + .sustainability__small, .sustainability__intro + .sustainability__small {
    margin-top: 24px;
  }
}
.sustainability__scroll {
  overflow-x: auto;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .sustainability__scroll {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.sustainability__scroll::after {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.sustainability__scroll .scroll-hint-icon {
  top: 200px;
}
@media screen and (max-width: 1050px) {
  .sustainability__scroll .scroll-hint-icon {
    top: 80px;
  }
}
.sustainability__scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sustainability__scroll::-webkit-scrollbar {
  display: none;
}
.sustainability__shadow {
  display: block;
  width: calc(100% - 45px);
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.2s;
  background: linear-gradient(270deg, white 0, rgba(255, 255, 255, 0) 30px, rgba(255, 255, 255, 0));
}
@media screen and (max-width: 1050px) {
  .sustainability__shadow {
    width: 100%;
    background: linear-gradient(270deg, white 0, rgba(255, 255, 255, 0) 10px, rgba(255, 255, 255, 0));
  }
}
.sustainability__scroll.scroll-hint.is-right-scrollable {
  background: none;
}
.sustainability__scroll.scroll-hint.is-right-scrollable + .sustainability__shadow {
  opacity: 1;
}
.sustainability__scroll.scroll-hint.is-right-scrollable.is-left-scrollable, .sustainability__scroll.scroll-hint.is-left-scrollable {
  background: none;
}
.sustainability__list {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
}
@media screen and (max-width: 1050px) {
  .sustainability__list {
    font-size: 1.4rem;
  }
}
.sustainability__list:has(+ .sustainability__txt) {
  margin-bottom: 36px;
}
@media screen and (max-width: 1050px) {
  .sustainability__list:has(+ .sustainability__txt) {
    margin-bottom: 29px;
  }
}
.sustainability__listItem {
  line-height: 2.25;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 1050px) {
  .sustainability__listItem {
    line-height: 2;
  }
}
.sustainability__listItem::before {
  content: "・";
}
@media screen and (max-width: 1050px) {
  .sustainability .componentLink__inner {
    margin-left: 0;
    margin-right: 0;
  }
}

.managementAccreditedList .sustainability__section + .sustainability__section {
  margin-top: 80px;
}
@media screen and (max-width: 1050px) {
  .managementAccreditedList .sustainability__section + .sustainability__section {
    margin-top: 62px;
  }
}

@media screen and (max-width: 768px) {
  .managementMateriality .sustainability__header {
    padding-bottom: 51px;
  }
}
.managementMateriality .sustainability__section:not(:last-child) {
  margin-bottom: 83px;
}
@media screen and (max-width: 768px) {
  .managementMateriality .sustainability__section:not(:last-child) {
    margin-bottom: 58px;
  }
}
.managementMateriality .accordion {
  display: grid;
  grid-template-rows: -webkit-max-content 0fr;
  grid-template-rows: max-content 0fr;
  transition-duration: 0.5s;
  transition-property: grid-template-rows;
  transition-timing-function: ease-out;
}
.managementMateriality .accordion:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (max-width: 1050px) {
  .managementMateriality .accordion:not(:last-child) {
    margin-bottom: 6px;
  }
}
.managementMateriality .accordion__btn {
  grid-template-columns: minmax(0, 1fr);
  height: auto;
  min-height: 94px;
  padding: 16px 50px;
}
@media screen and (max-width: 1050px) {
  .managementMateriality .accordion__btn {
    height: auto;
    min-height: 50px;
    padding: 8px 40px 8px 20px;
  }
}
.managementMateriality .accordion__btn::after {
  top: 50%;
  transition-property: translate, -webkit-transform;
  transition-property: transform, translate;
  transition-property: transform, translate, -webkit-transform;
  translate: 0 -71.5%;
}
@media screen and (max-width: 1050px) {
  .managementMateriality .accordion__btn::after {
    height: 9px;
    right: 24px;
    width: 9px;
  }
}
@media screen and (max-width: 768px) {
  .managementMateriality .accordion__btn::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
.managementMateriality .accordion__btn.open::after {
  translate: 0 -28.5%;
}
@media screen and (max-width: 768px) {
  .managementMateriality .accordion__btn.open::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.managementMateriality .accordion__ja {
  font-size: 2rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1050px) {
  .managementMateriality .accordion__ja {
    font-size: 1.3rem;
  }
}
.managementMateriality .accordion__itm {
  background: transparent;
  height: auto;
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 1050px) {
  .managementMateriality .accordion__itm {
    display: block;
  }
}
.managementMateriality .accordion__itmWrap {
  padding: 17px 0;
  row-gap: 0;
}
@media screen and (max-width: 1050px) {
  .managementMateriality .accordion__itmWrap {
    display: grid;
    gap: 8px;
    padding: 5px 0;
  }
}
@media screen and (max-width: 768px) {
  .managementMateriality .accordion__itmWrap {
    gap: 6px;
    grid-template-columns: minmax(0, 1fr);
  }
}
.managementMateriality .accordion.open {
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  transition-timing-function: ease-in;
}

.managementNonFinancialData .sustainability__section:nth-of-type(n + 2) {
  margin-top: 98px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .sustainability__section:nth-of-type(n + 2) {
    margin-top: 68px;
  }
}
.managementNonFinancialData .sustainability__subSubSubTtl {
  border: none;
}
.managementNonFinancialData .sustainability__subSubSubTtl + .sustainability__contain {
  margin-top: 0;
}
.managementNonFinancialData .sustainability__contain {
  margin-top: 20px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .sustainability__contain {
    margin-top: 12px;
  }
}
.managementNonFinancialData .susLinkList {
  margin-top: 60px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susLinkList {
    margin-top: 40px;
  }
}
.managementNonFinancialData .susLinkList__link {
  padding-left: 30px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susLinkList__link {
    padding-left: 0;
  }
}
.managementNonFinancialData .susTable {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.managementNonFinancialData .susTable__th, .managementNonFinancialData .susTable__td {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1.58;
  padding-top: 8px;
  padding-bottom: 9px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable__th, .managementNonFinancialData .susTable__td {
    font-size: 1.1rem;
    padding-top: 6px;
    padding-bottom: 7px;
  }
}
.managementNonFinancialData .susTable__th span, .managementNonFinancialData .susTable__td span {
  font-size: 1.2rem;
  line-height: 1;
}
.managementNonFinancialData .susTable__th {
  vertical-align: middle;
  text-align: center;
}
.managementNonFinancialData .susTable__td {
  vertical-align: middle;
  text-align: center;
}
.managementNonFinancialData .susTable__td_type_q {
  vertical-align: top;
  text-align: left;
}
.managementNonFinancialData .susTable tbody th {
  font-weight: 500;
}
.managementNonFinancialData .susTable_type_environment tbody tr:first-child th {
  min-width: 172px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_environment tbody tr:first-child th {
    min-width: 135px;
  }
}
.managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(1) {
  min-width: 218px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(1) {
    min-width: 171px;
  }
}
.managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(2) {
  min-width: 254px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(2) {
    min-width: 200px;
  }
}
.managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(3),
.managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(4),
.managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(5),
.managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(6) {
  min-width: 136px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(3),
  .managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(4),
  .managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(5),
  .managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(6) {
    min-width: 107px;
  }
}
.managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(7) {
  min-width: 118px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_environment tbody tr:first-child td:nth-of-type(7) {
    min-width: 93px;
  }
}
.managementNonFinancialData .susTable_type_social tbody tr:first-child th {
  min-width: 172px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_social tbody tr:first-child th {
    min-width: 135px;
  }
}
.managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(1) {
  min-width: 194px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(1) {
    min-width: 152px;
  }
}
.managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(2) {
  min-width: 118px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(2) {
    min-width: 93px;
  }
}
.managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(3) {
  min-width: 162px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(3) {
    min-width: 127px;
  }
}
.managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(4),
.managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(5),
.managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(6),
.managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(7) {
  min-width: 136px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(4),
  .managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(5),
  .managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(6),
  .managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(7) {
    min-width: 107px;
  }
}
.managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(8) {
  min-width: 118px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_social tbody tr:first-child td:nth-of-type(8) {
    min-width: 93px;
  }
}
.managementNonFinancialData .susTable_type_governance tbody tr:first-child th {
  min-width: 172px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_governance tbody tr:first-child th {
    min-width: 135px;
  }
}
.managementNonFinancialData .susTable_type_governance tbody tr:first-child td:nth-of-type(1) {
  min-width: 194px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_governance tbody tr:first-child td:nth-of-type(1) {
    min-width: 152px;
  }
}
.managementNonFinancialData .susTable_type_governance tbody tr:first-child td:nth-of-type(2) {
  min-width: 118px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_governance tbody tr:first-child td:nth-of-type(2) {
    min-width: 93px;
  }
}
.managementNonFinancialData .susTable_type_governance tbody tr:first-child td:nth-of-type(3) {
  min-width: 162px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_governance tbody tr:first-child td:nth-of-type(3) {
    min-width: 127px;
  }
}
.managementNonFinancialData .susTable_type_governance tbody tr:first-child td:nth-of-type(4),
.managementNonFinancialData .susTable_type_governance tbody tr:first-child td:nth-of-type(5) {
  min-width: 136px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_governance tbody tr:first-child td:nth-of-type(4),
  .managementNonFinancialData .susTable_type_governance tbody tr:first-child td:nth-of-type(5) {
    min-width: 107px;
  }
}
.managementNonFinancialData .susTable_type_governance tbody tr:first-child td:nth-of-type(6) {
  min-width: 118px;
}
@media screen and (max-width: 1050px) {
  .managementNonFinancialData .susTable_type_governance tbody tr:first-child td:nth-of-type(6) {
    min-width: 93px;
  }
}

.managementPolicy .sustainability__section + .sustainability__section {
  margin-top: 85px;
}

.socialCsr .sustainability__section + .sustainability__section {
  margin-top: 80px;
}
@media screen and (max-width: 1050px) {
  .socialCsr .sustainability__section + .sustainability__section {
    margin-top: 62px;
  }
}
.socialCsr .sustainability__txt_align_right span {
  display: inline-block;
}
.socialCsr .sustainability__section:has(.sustainability__voice) {
  margin-top: 55px;
}
@media screen and (max-width: 1050px) {
  .socialCsr .sustainability__section:has(.sustainability__voice) {
    margin-top: 35px;
  }
}
.socialCsr .sustainability__section:has(.sustainability__voice) .susVoice__txtWrap {
  margin-top: 0;
}
@media screen and (max-width: 1050px) {
  .socialCsr .sustainability__section:has(.sustainability__voice) .susVoice__txtWrap {
    margin-top: 20px;
  }
}
.socialCsr .sustainability__txt_align_right {
  margin-top: 36px;
}
@media screen and (max-width: 1050px) {
  .socialCsr .sustainability__txt_align_right {
    margin-top: 28px;
  }
}

.socialHumanRights .sustainability__section + .sustainability__section {
  margin-top: 80px;
}
@media screen and (max-width: 1050px) {
  .socialHumanRights .sustainability__section + .sustainability__section {
    margin-top: 62px;
  }
}

.socialSupplyChain .sustainability__section_type_02 {
  grid-template-areas: "... title title title ..." "... intro intro intro ..." "... contain contain contain ..." "... text ... visual visual" "... text ... figure ..." "... voice voice voice voice";
}
@media screen and (max-width: 1050px) {
  .socialSupplyChain .sustainability__section_type_02 {
    grid-template-areas: "... title title" "... intro ..." "... contain ..." "... text ..." "... figure ..." "... visual visual" "... voice voice";
  }
}
.socialSupplyChain .sustainability__section + .sustainability__section {
  margin-top: 80px;
}
@media screen and (max-width: 1050px) {
  .socialSupplyChain .sustainability__section + .sustainability__section {
    margin-top: 62px;
  }
}
.socialSupplyChain .sustainability__txt b {
  font-weight: 500;
}

html.windows {
  /* ********************
      rotate追加でシャギーを防ぐ */
  /* components */
}
html.windows body .header,
html.windows body .footer {
  font-family: "Noto Sans JP", sans-serif;
}
html.windows .mainTtl__en,
html.windows .mainTtl__jp,
html.windows .subTtl,
html.windows .breadcrumb__item:nth-child(n+2) .breadcrumb__link,
html.windows .navBnr__textJa,
html.windows .accordion__ja,
html.windows .businessCard__ttl,
html.windows .businessCard__specTtl,
html.windows .businessCard__specTxt,
html.windows .topFv__subHeading,
html.windows .topTitle__txtJa,
html.windows .topIntro__text,
html.windows .topMessage__txt,
html.windows .topBusiness__leadTxt,
html.windows .topBusiness__txt,
html.windows .topNav__textJa,
html.windows .topSustainability__leadTxt,
html.windows .topSustainability__txt,
html.windows .topSustainability__link,
html.windows .topContact__text,
html.windows .topContact__link,
html.windows .topNews__title,
html.windows .topNews__cat,
html.windows .topNews__detailLink,
html.windows .companyMessage__txt,
html.windows .companyProfile__listTerm,
html.windows .companyProfile__listDetail,
html.windows .companyHistory__txt,
html.windows .companyHistory__subSubTtl,
html.windows .business__intro,
html.windows .policy__headingTtl,
html.windows .policy__navtext,
html.windows .policy__pageTtl,
html.windows .policy__text,
html.windows .policy__subTtl,
html.windows .policy__subsubTTl,
html.windows .policy__listItem,
html.windows .policy__listTtl,
html.windows .policy__listTxt,
html.windows .policy__contactTxt,
html.windows .policy__sign,
html.windows .security__pageTtl,
html.windows .security__text,
html.windows .culture__subTtl,
html.windows .culture__headTxt,
html.windows .culture__text,
html.windows .article__title,
html.windows .article__text,
html.windows .article__more,
html.windows .article__close,
html.windows .article__link,
html.windows .contact__subTtl,
html.windows .contact__stepItem,
html.windows .contact__headTxt,
html.windows .contact__faqLink,
html.windows .contact__noteTtl,
html.windows .contact__noteTxt,
html.windows .contact__noteItem,
html.windows .form__note,
html.windows .form__dt,
html.windows .form__dd,
html.windows .form__purposeTtl,
html.windows .form__purposeItem,
html.windows .form__text,
html.windows .form__submitBtn,
html.windows .form__back,
html.windows .contactTop__text,
html.windows .contactTop__main,
html.windows .contactTop__sub,
html.windows .contactTop__btnLink,
html.windows .contactTop__link,
html.windows .contactTop__time,
html.windows .news__tabLink,
html.windows .news__button,
html.windows .news__cat,
html.windows .news__detailLink,
html.windows .news__result p,
html.windows .newsSearchModal__ttl,
html.windows .newsSearchModal__annotation,
html.windows .newsSearchModal__label,
html.windows .newsSearchModal__submit,
html.windows .newsHeader__tag,
html.windows .newsHeader__heading,
html.windows .newsHeader__catch,
html.windows .newsHeader__company,
html.windows .newsHeader__txt,
html.windows .newsDetail__body h1,
html.windows .newsDetail__body h2,
html.windows .newsDetail__body h3,
html.windows .newsDetail__body h4,
html.windows .newsDetail__body h5,
html.windows .newsDetail__body h6,
html.windows .newsDetail__body p,
html.windows .newsDetail__body span,
html.windows .newsDetail__body a,
html.windows .newsDetail__body figcaption,
html.windows .newsDetail__body li,
html.windows .sustainability__mainTtl,
html.windows .sustainability__subTtl,
html.windows .sustainability__subSubTtl,
html.windows .sustainability__subSubSubTtl,
html.windows .sustainability__subSubSubSubTtl,
html.windows .sustainability__txt,
html.windows .sustainability__intro,
html.windows .sustainability__small,
html.windows .susFooter__mainTtl,
html.windows .susFooter__subTtl,
html.windows .susFooter__link,
html.windows .susLinkList__link,
html.windows .susPagination__cat,
html.windows .susPagination__ttl,
html.windows .susVoice__intro,
html.windows .susCard__title,
html.windows .susCard__unitTitle,
html.windows .susCard__text,
html.windows .susCard__resultTerm,
html.windows .susCard__resultListText,
html.windows .susCard__resultDescText,
html.windows .susCard__resultNote,
html.windows .susCard__resultBreakdown,
html.windows .susCard__resultListText,
html.windows .susProcess__stepText,
html.windows .susProcess__stepNum,
html.windows .susProcess__termText,
html.windows .susProcess__desc,
html.windows .susProcess__descListItem {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}

body {
  /* ********************
      ナビ スクロールバー非表示 */
}
body .header__sub::-webkit-scrollbar {
  display: none;
}

.u_d_n {
  display: none;
}
.u_d_b {
  display: block;
}
.u_d_f {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 321px) {
  .u_se_d_n {
    display: none;
  }
  .u_se_d_b {
    display: block;
  }
  .u_se_d_f {
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  .u_spm_d_n {
    display: none;
  }
  .u_spm_d_b {
    display: block;
  }
  .u_spm_d_f {
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .u_sp_d_n {
    display: none;
  }
  .u_sp_d_b {
    display: block;
  }
  .u_sp_d_f {
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (max-width: 1050px) {
  .u_tab_d_n {
    display: none;
  }
  .u_tab_d_b {
    display: block;
  }
  .u_tab_d_f {
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (min-width: 1051px) {
  .u_tabMin_d_n {
    display: none;
  }
  .u_tabMin_d_b {
    display: block;
  }
  .u_tabMin_d_f {
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (max-width: 1400px) {
  .u_pc_d_n {
    display: none;
  }
  .u_pc_d_b {
    display: block;
  }
  .u_pc_d_f {
    display: -webkit-flex;
    display: flex;
  }
}
.u_ta_l {
  text-align: left;
}
.u_ta_c {
  text-align: center;
}
.u_ta_r {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .u_sp_ta_l {
    text-align: left;
  }
  .u_sp_ta_c {
    text-align: center;
  }
  .u_sp_ta_r {
    text-align: right;
  }
}
@media screen and (max-width: 1050px) {
  .u_tab_ta_l {
    text-align: left;
  }
  .u_tab_ta_c {
    text-align: center;
  }
  .u_tab_ta_r {
    text-align: right;
  }
}
@media screen and (max-width: 1400px) {
  .u_pc_ta_l {
    text-align: left;
  }
  .u_pc_ta_c {
    text-align: center;
  }
  .u_pc_ta_r {
    text-align: right;
  }
}
.u_jc_fs {
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.u_jc_c {
  -webkit-justify-content: center;
          justify-content: center;
}
.u_jc_fe {
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.u_jc_sb {
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.u_jc_sa {
  -webkit-justify-content: space-around;
          justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .u_sp_jc_fs {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
  .u_sp_jc_c {
    -webkit-justify-content: center;
            justify-content: center;
  }
  .u_sp_jc_fe {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
  }
  .u_sp_jc_sb {
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .u_sp_jc_sa {
    -webkit-justify-content: space-around;
            justify-content: space-around;
  }
}
@media screen and (max-width: 1050px) {
  .u_tab_jc_fs {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
  .u_tab_jc_c {
    -webkit-justify-content: center;
            justify-content: center;
  }
  .u_tab_jc_fe {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
  }
  .u_tab_jc_sb {
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .u_tab_jc_sa {
    -webkit-justify-content: space-around;
            justify-content: space-around;
  }
}
@media screen and (max-width: 1400px) {
  .u_pc_jc_fs {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
  .u_pc_jc_c {
    -webkit-justify-content: center;
            justify-content: center;
  }
  .u_pc_jc_fe {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
  }
  .u_pc_jc_sb {
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .u_pc_jc_sa {
    -webkit-justify-content: space-around;
            justify-content: space-around;
  }
}