@charset "UTF-8";
/*=============================================
Foundation
=============================================*/
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

main {
  display: block;
}

th {
  text-align: left;
}

@-webkit-keyframes flag {
  0% {
    -webkit-transform: rotate(-45deg) translateY(-10%);
    transform: rotate(-45deg) translateY(-10%);
  }
  100% {
    -webkit-transform: rotate(-45deg) translateY(10%);
    transform: rotate(-45deg) translateY(10%);
  }
}
@keyframes flag {
  0% {
    -webkit-transform: rotate(-45deg) translateY(-10%);
    transform: rotate(-45deg) translateY(-10%);
  }
  100% {
    -webkit-transform: rotate(-45deg) translateY(10%);
    transform: rotate(-45deg) translateY(10%);
  }
}
@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
/* 点滅 */
.blinking {
  -webkit-animation: blink 0.5s ease-out infinite alternate;
  animation: blink 0.5s ease-out infinite alternate;
}

.js-fadein {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: transform 1s ease , opacity 1s ease , visibility 1s ease;
  -webkit-transition: opacity 1s ease , visibility 1s ease , -webkit-transform 1s ease;
  transition: opacity 1s ease , visibility 1s ease , -webkit-transform 1s ease;
  transition: transform 1s ease , opacity 1s ease , visibility 1s ease;
  transition: transform 1s ease , opacity 1s ease , visibility 1s ease , -webkit-transform 1s ease;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
.js-fadein.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* base --------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*
@supports(-webkit-touch-callout: none){
	html{
		height: -webkit-fill-available;
	}
	body{
		min-height: 100vh;
		min-height: -webkit-fill-available;
	}
}
*/
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
html.wf-active *, html.loading-delay * {
  visibility: visible;
}

body {
  height: 100vh;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #333333;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@supports (-webkit-touch-callout: none) {
  body {
    height: -webkit-fill-available;
  }
}

main {
  display: block;
}

a {
  color: inherit;
}

a,
button {
  -webkit-transition: color 0.3s ease, opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease, background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

figure img {
  width: 100%;
}

img {
  width: auto;
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
  border: none;
}

p {
  line-height: 1.8;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  p {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.clearfix,
section {
  zoom: 1;
}

.clearfix:before,
.clearfix:after,
.section:before,
.section:after {
  content: "";
  display: table;
}

.clearfix:after,
.section:after {
  clear: both;
}

.noscroll {
  overflow: hidden;
  height: 100%;
}

.pc {
  display: inline;
}
@media screen and (max-width: 599px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp {
    display: inline;
  }
}

figure.pc {
  display: block;
}
@media screen and (max-width: 599px) {
  figure.pc {
    display: none;
  }
}

figure.sp {
  display: none;
}
@media screen and (max-width: 599px) {
  figure.sp {
    display: block;
  }
}

.disabled {
  opacity: 0.2;
  pointer-events: none;
}

*:focus {
  outline: none;
}

/*form*/
input[type=text],
input[type=email],
input[type=tel],
input[type=submit],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 0 !important;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  width: 100% !important;
  background-color: #fff;
  padding: 15px !important;
  font-size: 1.6rem !important;
  -webkit-transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, filter 0.4s ease;
  -webkit-transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, -webkit-filter 0.4s ease;
  transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, -webkit-filter 0.4s ease;
  transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, filter 0.4s ease;
  transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, filter 0.4s ease, -webkit-filter 0.4s ease;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  background-color: rgba(149, 132, 69, 0.1);
}

input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0;
}

textarea {
  min-height: 200px;
  padding: 10px;
  resize: vertical;
}

select {
  background: #fff url(../imgs/common/select_arrow.svg) no-repeat right center/auto 100%;
  cursor: pointer;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
}

.swiper-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100% !important;
  width: auto !important;
  gap: 10px;
  overflow: visible;
  right: 5px !important;
}

.swiper-pagination-bullet {
  border: 1px solid #fff;
  margin: 0;
}

/*=============================================
Layout
=============================================*/
.l-main {
  min-height: 70vh;
}
@media screen and (max-width: 960px) {
  .l-main {
    overflow: hidden;
  }
}

/* header --------------------------*/
.l-header {
  padding: 12px 0 0;
  width: 100%;
  height: 70px;
  position: fixed;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
  z-index: 19;
}
@media screen and (max-width: 960px) {
  .l-header {
    position: fixed;
    z-index: 21;
    background: rgba(0, 0, 0, 0.5);
    height: 60px;
    padding: 10px 0 0;
  }
}
.l-header--second {
  background: rgba(0, 0, 0, 0.8);
}
.l-header__inner {
  height: 100%;
  padding: 0 80px;
  margin: 0 auto;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}
@media screen and (max-width: 1280px) {
  .l-header__inner {
    padding: 0 30px;
  }
}
.l-header__ttl {
  display: inline-block;
  margin: 0 !important;
}
@media screen and (max-width: 960px) {
  .l-header__ttl {
    display: block;
    width: 192.855px;
    margin: 0 auto !important;
  }
}
.l-header__logo {
  width: auto;
  height: 33.52px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .l-header__logo {
    display: block;
  }
}
.l-header__logo:hover {
  opacity: 0.8;
}
.l-header__logo-jp {
  width: 257.14px;
  height: 60px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  background: url("/assets/imgs/_common/logo@2x.png") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .l-header__logo-jp {
    width: 192.855px;
    height: 45px;
  }
}
.l-header__logo-en {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
}
@media screen and (max-width: 960px) {
  .l-header__logo-en {
    font-size: 1.4rem;
    text-align: center;
    display: block;
  }
}

.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 78px;
  width: 100%;
  pointer-events: none;
  z-index: 20;
}
@media screen and (max-width: 960px) {
  .global-nav {
    background: #1e89d8;
    padding: 60px 0 0;
    height: 100vh;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  .global-nav.active {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
  }
}
.global-nav__nav {
  height: 100%;
  padding: 0 83px;
  margin: 0 auto;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}
@media screen and (max-width: 1280px) {
  .global-nav__nav {
    padding: 0 30px;
  }
}
@media screen and (max-width: 960px) {
  .global-nav__nav {
    padding: 0;
  }
}
.global-nav__list {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  .global-nav__list {
    display: block;
    height: auto;
  }
}
.global-nav__item {
  pointer-events: all;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .global-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
}
.global-nav__item:last-child .global-nav__link::before {
  display: none;
}
.global-nav__link {
  display: block;
  padding: 33px 42px 25px;
  padding: 33px 30px 25px;
  height: 100%;
  line-height: 1;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.8rem;
  position: relative;
  -webkit-transition: font-size 0.5s ease;
  transition: font-size 0.5s ease;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .global-nav__link {
    font-size: 1.6rem;
    height: auto;
  }
}
@media screen and (max-width: 960px) {
  .global-nav__link {
    color: #fff;
    padding: 15px 20px 15px;
  }
}
.global-nav__link::before {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  background: #aaa9a9;
  position: absolute;
  top: 30px;
  right: 0;
  display: none;
}
@media screen and (max-width: 960px) {
  .global-nav__link::before {
    display: none;
  }
}
.global-nav__link.current, .global-nav__link:hover {
  color: #0076ff;
}
@media screen and (max-width: 960px) {
  .global-nav__link.current, .global-nav__link:hover {
    color: #fff;
    opacity: 0.8;
  }
}

/* footer --------------------------*/
.l-footer {
  background: #fff;
  color: #1e89d8;
  padding: 36px 0 10px;
  overflow: hidden;
}
.l-footer__inner {
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}
@media screen and (max-width: 1152px) {
  .l-footer__inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__inner {
    padding: 0 18px;
  }
}
.l-footer__layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .l-footer__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.l-footer__ttl {
  display: block;
  margin-bottom: 20px;
  width: 169.25px;
}
@media screen and (max-width: 599px) {
  .l-footer__ttl {
    margin: 0 auto;
    text-align: center;
  }
}
.l-footer__logo {
  width: 96.98px;
  height: 30.25px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  background: url("/assets/imgs/_common/logo_blue.svg") no-repeat center/contain;
}
.l-footer__logo:hover {
  opacity: 0.5;
}
@media screen and (max-width: 599px) {
  .l-footer__logo {
    width: 116.376px;
    height: 36.3px;
    margin-bottom: 10px;
  }
}
.l-footer__address {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.71;
  white-space: nowrap;
  color: #333333;
  -webkit-transition: font-size 0.5s ease;
  transition: font-size 0.5s ease;
}
@media screen and (max-width: 1170px) {
  .l-footer__address {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__address {
    text-align: center;
    margin-bottom: 30px;
    display: block;
  }
}
.l-footer-nav {
  margin-bottom: 25px;
}
.l-footer-nav a {
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
  display: inline-block;
}
.l-footer-nav a:hover {
  opacity: 0.5;
}
.l-footer-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 60px;
  padding-bottom: 37px;
}
@media screen and (max-width: 599px) {
  .l-footer-nav__list {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .l-footer-nav__item {
    margin-bottom: 30px;
  }
  .l-footer-nav__item:last-child {
    margin-bottom: 0;
  }
}
.l-footer-nav__item--contact {
  position: absolute;
  left: 505px;
  bottom: 30px;
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
@media screen and (max-width: 1170px) {
  .l-footer-nav__item--contact {
    left: 455px;
  }
}
@media screen and (max-width: 599px) {
  .l-footer-nav__item--contact {
    left: auto;
    bottom: auto;
    top: 0;
    right: 0;
  }
}
.l-footer-nav__item--contact a {
  font-size: 1.4rem;
  padding-left: 20px;
  position: relative;
  -webkit-transition: font-size 0.5s ease;
  transition: font-size 0.5s ease;
}
@media screen and (max-width: 1170px) {
  .l-footer-nav__item--contact a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .l-footer-nav__item--contact a {
    font-size: 1.3rem;
  }
}
.l-footer-nav__item--contact a::before {
  width: 14px;
  height: 14px;
  content: "";
  display: block;
  background: url("/assets/imgs/_common/icon_contact.svg");
  position: absolute;
  top: 1px;
  left: 0;
}
.l-footer-nav__item--privacy {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
@media screen and (max-width: 599px) {
  .l-footer-nav__item--privacy {
    left: auto;
    bottom: auto;
    top: 0px;
    right: 0;
  }
}
.l-footer-nav__item--privacy a {
  font-size: 1.3rem;
  padding-right: 20px;
  position: relative;
  -webkit-transition: font-size 0.5s ease;
  transition: font-size 0.5s ease;
}
@media screen and (max-width: 1170px) {
  .l-footer-nav__item--privacy a {
    font-size: 1.2rem;
  }
}
.l-footer-nav__item--privacy a::after {
  width: 13.01px;
  height: 12.87px;
  content: "";
  display: block;
  background: url("/assets/imgs/_common/icon_blank.svg");
  position: absolute;
  top: 0px;
  right: 0;
}
.l-footer-nav__link {
  font-size: 1.8rem;
  margin-bottom: 17px;
  display: inline-block;
  -webkit-transition: font-size 0.5s ease;
  transition: font-size 0.5s ease;
}
@media screen and (max-width: 1170px) {
  .l-footer-nav__link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .l-footer-nav__link {
    margin-bottom: 10px;
  }
}
.l-footer-nav-sub a {
  font-size: 1.4rem;
  display: block;
  padding-left: 15px;
  line-height: 1.5;
  position: relative;
  -webkit-transition: font-size 0.5s ease;
  transition: font-size 0.5s ease;
}
@media screen and (max-width: 1170px) {
  .l-footer-nav-sub a {
    font-size: 1.2rem;
  }
}
.l-footer-nav-sub a::before {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .l-footer-nav-sub__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
}
.l-footer-nav-sub__list li {
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .l-footer-nav-sub__list li {
    margin-bottom: 0;
  }
}
.l-footer__copyright {
  font-weight: 300;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .l-footer__copyright {
    font-size: 1.2rem;
  }
}

/*=============================================
Object
=============================================*/
/* Component */
.c-inner {
  max-width: 1366px;
  padding: 0 10.6881405564vw;
  margin: 0 auto;
}
@media screen and (min-width: 1367px) {
  .c-inner {
    padding: 0 146px;
  }
}
@media screen and (max-width: 599px) {
  .c-inner {
    padding: 0 3.0050083472vw;
  }
}

.c-section {
  padding: 80px 0;
}
@media screen and (max-width: 599px) {
  .c-section {
    padding: 50px 0;
  }
}
.c-section:nth-child(odd) {
  background: #eae8e8;
}

.c-breadcrumb {
  padding: 10px 0;
  background: #eae8e8;
}
@media screen and (max-width: 599px) {
  .c-breadcrumb {
    padding: 5px 0;
  }
}
.c-breadcrumb__inner {
  padding: 0 83px;
}
@media screen and (max-width: 960px) {
  .c-breadcrumb__inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 599px) {
  .c-breadcrumb__inner {
    padding: 0 3.0050083472vw;
  }
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-breadcrumb__item:nth-child(n+2)::before {
  display: inline-block;
  margin: 0 5px;
  content: ">";
  position: relative;
}
@media screen and (max-width: 599px) {
  .c-breadcrumb__item:nth-child(n+2)::before {
    font-size: 1.1rem;
  }
}
.c-breadcrumb__link {
  text-decoration: none;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .c-breadcrumb__link {
    font-size: 1.1rem;
  }
}
.c-breadcrumb__link.current, .c-breadcrumb__link:hover {
  text-decoration: underline;
}

.c-cover {
  position: relative;
}
@media screen and (max-width: 599px) {
  .c-cover__fig {
    height: 80vw;
  }
}
@media screen and (max-width: 599px) {
  .c-cover__fig img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.c-cover__ttl {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  max-width: 1366px;
  padding: 0 10.6881405564vw;
  margin-top: 35px;
  color: #fff;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.33);
}
@media screen and (min-width: 1367px) {
  .c-cover__ttl {
    padding: 0 146px;
  }
}
@media screen and (max-width: 599px) {
  .c-cover__ttl {
    margin-top: 20px;
    padding: 0 30px;
  }
}
.c-cover__ttl--en {
  display: block;
  font-weight: 500;
  font-size: 6rem;
  letter-spacing: -0.02em;
  font-family: Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 599px) {
  .c-cover__ttl--en {
    font-size: 3.5rem;
  }
}
.c-cover__ttl--jp {
  display: block;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .c-cover__ttl--jp {
    font-size: 1.4rem;
  }
}

.c-ttl2 {
  text-align: center;
  color: #1e89d8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 50px;
}
.c-ttl2__jp {
  font-size: 4rem;
}
@media screen and (max-width: 599px) {
  .c-ttl2__jp {
    font-size: 3.2rem;
  }
}
.c-ttl2__en {
  color: #053d78;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .c-ttl2__en {
    font-size: 1.4rem;
  }
}
.c-ttl2--left {
  text-align: left;
}

.c-lead {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .c-lead {
    text-align: left;
  }
}

.c-btn-pagetop {
  position: fixed;
  bottom: 63px;
  right: 83px;
  z-index: 10;
  width: 50px;
  height: 50px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url("/assets/imgs/_common/btn_pagetop.svg") no-repeat center/contain;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: right 0.5s ease, bottom 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
  transition: right 0.5s ease, bottom 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
}
.c-btn-pagetop.show {
  visibility: visible;
  opacity: 1;
}
.c-btn-pagetop:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1170px) {
  .c-btn-pagetop {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .c-btn-pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
  }
}

.c-btn1 {
  display: inline-block;
  background: #fff;
  color: #1e89d8;
  border: 1px solid #1e89d8;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  padding: 9px 62px 11px 58px;
  position: relative;
  text-decoration: none;
  border-radius: 5px;
  min-width: 300px;
  text-align: center;
  -webkit-transition: font-size 0.5s ease, background 0.5s ease, color 0.5s ease;
  transition: font-size 0.5s ease, background 0.5s ease, color 0.5s ease;
}
@media screen and (max-width: 1300px) {
  .c-btn1 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .c-btn1 {
    min-width: 0;
    width: 100%;
  }
}
.c-btn1::after {
  content: "";
  display: block;
  width: 22px;
  height: 18px;
  background: url("/assets//imgs/_common/btn_arrow.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 13px;
  -webkit-transition: width 0.5s ease, height 0.5s ease;
  transition: width 0.5s ease, height 0.5s ease;
}
@media screen and (max-width: 1300px) {
  .c-btn1::after {
    width: 15.4px;
    height: 12.6px;
  }
}
.c-btn1:hover {
  background: #0076ff;
  color: #fff;
}
.c-btn1:hover::after {
  background-image: url("/assets//imgs/_common/btn_arrow_white.svg");
}
.c-btn1[target=_blank]::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: url("/assets//imgs/_common/icon_blank.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 13px;
}
.c-btn1[target=_blank]:hover::after {
  background-image: url("/assets//imgs/_common/icon_blank_white.svg");
}

.c-burger-menu {
  cursor: pointer;
  position: fixed;
  right: 8px;
  top: 8px;
  width: 44px;
  height: 44px;
  background: #1e89d8;
  display: none;
  z-index: 22;
}
@media screen and (max-width: 960px) {
  .c-burger-menu {
    display: block;
  }
}
.c-burger-menu span {
  -webkit-transition: transform 0.2s ease,  width 0.2s ease, top 0.2s ease 0.2s, left 0.2s ease , bottom 0.2s ease 0.2s, margin 0.2s ease 0.2s, opacity 0.2s ease;
  -webkit-transition: width 0.2s ease, top 0.2s ease 0.2s, left 0.2s ease , bottom 0.2s ease 0.2s, margin 0.2s ease 0.2s, opacity 0.2s ease,  -webkit-transform 0.2s ease;
  transition: width 0.2s ease, top 0.2s ease 0.2s, left 0.2s ease , bottom 0.2s ease 0.2s, margin 0.2s ease 0.2s, opacity 0.2s ease,  -webkit-transform 0.2s ease;
  transition: transform 0.2s ease,  width 0.2s ease, top 0.2s ease 0.2s, left 0.2s ease , bottom 0.2s ease 0.2s, margin 0.2s ease 0.2s, opacity 0.2s ease;
  transition: transform 0.2s ease,  width 0.2s ease, top 0.2s ease 0.2s, left 0.2s ease , bottom 0.2s ease 0.2s, margin 0.2s ease 0.2s, opacity 0.2s ease,  -webkit-transform 0.2s ease;
  display: block;
  background: #fff;
  height: 2px;
  position: absolute;
  right: 10px;
  border-radius: 100px;
}
.c-burger-menu span:first-child {
  top: 13px;
  width: 24px;
}
.c-burger-menu span:nth-child(2) {
  top: 50%;
  width: 18px;
  margin-top: -1px;
}
.c-burger-menu span:last-child {
  bottom: 13px;
  width: 12px;
}
.c-burger-menu.active span {
  width: 24px;
  background: #fff;
  -webkit-transition: transform 0.2s ease 0.2s, width 0.2s ease, top 0.2s ease, left 0.2s ease , bottom 0.2s ease, margin 0.2s ease, opacity 0.2s ease;
  -webkit-transition: width 0.2s ease, top 0.2s ease, left 0.2s ease , bottom 0.2s ease, margin 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease 0.2s;
  transition: width 0.2s ease, top 0.2s ease, left 0.2s ease , bottom 0.2s ease, margin 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease 0.2s;
  transition: transform 0.2s ease 0.2s, width 0.2s ease, top 0.2s ease, left 0.2s ease , bottom 0.2s ease, margin 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease 0.2s, width 0.2s ease, top 0.2s ease, left 0.2s ease , bottom 0.2s ease, margin 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease 0.2s;
}
.c-burger-menu.active span:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -1px;
}
.c-burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.c-burger-menu.active span:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 50%;
  margin-bottom: -1px;
}
/* modal --------------------------*/
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 1s ease, visibility 1s ease;
  transition: opacity 1s ease, visibility 1s ease;
}
.c-modal.show {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 599px) {
  .c-modal {
    padding: 0;
  }
}
.c-modal__bg {
  background: rgba(0, 0, 0, 0.8);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
}
.c-modal__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 100%;
}
.c-modal__btn-close {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1002;
}
@media screen and (max-width: 599px) {
  .c-modal__btn-close {
    top: auto;
    right: auto;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    bottom: 30px;
  }
}
.c-modal__btn-close::before, .c-modal__btn-close::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
}
@media screen and (max-width: 599px) {
  .c-modal__btn-close::before, .c-modal__btn-close::after {
    width: 30px;
    left: 7px;
  }
}
.c-modal__btn-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-modal__next, .c-modal__prev {
  color: #fff;
  left: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: fixed;
  margin-top: 0px;
  pointer-events: all;
  z-index: 9999;
}
.c-modal__next::after, .c-modal__prev::after {
  font-weight: 100;
}
@media screen and (max-width: 599px) {
  .c-modal__next, .c-modal__prev {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: fixed;
    top: auto;
    bottom: 30px;
  }
  .c-modal__next::after, .c-modal__prev::after {
    font-size: 2.2rem;
    font-weight: 700;
  }
}
.c-modal__prev {
  margin-left: -580px;
}
@media screen and (max-width: 599px) {
  .c-modal__prev {
    margin-left: 0;
    left: 15px;
  }
}
.c-modal__next {
  margin-left: 580px;
}
@media screen and (max-width: 599px) {
  .c-modal__next {
    margin-left: 0;
    right: 15px;
  }
}

/* Project */
.p-home__ttl {
  margin-bottom: 28px;
}
.p-home__ttl span {
  display: block;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
}
.p-home__ttl span:nth-child(1) {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  margin-bottom: 10px;
}
.p-home__ttl span:nth-child(2) {
  font-size: 1.8rem;
}
.p-home__ttl a {
  text-decoration: none;
  display: inline-block;
  background: #1e89d8;
  padding: 10px 60px 10px 15px;
  border-radius: 5px;
  position: relative;
  width: 100%;
}
.p-home__ttl a:hover {
  background: #0076ff;
}
.p-home__ttl a::after {
  content: "";
  display: block;
  width: 22px;
  height: 18px;
  background: url("/assets/imgs/_common/btn_arrow_white.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 13px;
  -webkit-transition: width 0.5s ease, height 0.5s ease;
  transition: width 0.5s ease, height 0.5s ease;
}
@media screen and (max-width: 1300px) {
  .p-home__ttl a::after {
    width: 15.4px;
    height: 12.6px;
  }
}
.p-home-cover {
  background: #eee;
  position: relative;
}
.p-home-cover::after {
  width: 100%;
  height: 11.1537335286vw;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  z-index: 10;
  background: url("/assets/imgs/home/cover_parts.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 599px) {
  .p-home-cover__fig {
    height: 130vw;
  }
}
@media screen and (max-width: 599px) {
  .p-home-cover__fig img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-home-cover__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 146px;
  z-index: 2;
  color: #fff;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-home-cover__content {
    padding-left: 8.3333333333vw;
  }
}
@media screen and (max-width: 599px) {
  .p-home-cover__content {
    padding-left: 5.0083472454vw;
    padding-top: 8.347245409vw;
  }
}
.p-home-cover__p1 {
  font-size: 6rem;
  margin-bottom: 26px;
  line-height: 1.47;
}
@media screen and (max-width: 960px) {
  .p-home-cover__p1 {
    font-size: 6.875vw;
  }
}
@media screen and (max-width: 599px) {
  .p-home-cover__p1 {
    font-size: 8.347245409vw;
    margin-bottom: 10px;
  }
}
.p-home-cover__p2 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-home-cover__p2 {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 599px) {
  .p-home-cover__p2 {
    line-height: 1.5;
    font-size: 3.67278798vw;
    margin-bottom: 10px;
  }
}
.p-home-cover__p3 {
  font-size: 2.4rem;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-home-cover__p3 {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 599px) {
  .p-home-cover__p3 {
    font-size: 3.67278798vw;
  }
}
.p-home-about {
  background: #eae8e8;
  padding: 80px 0 60px;
}
@media screen and (max-width: 599px) {
  .p-home-about {
    padding: 50px 0 30px;
  }
}
.p-home-about__layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 599px) {
  .p-home-about__layout {
    display: block;
  }
}
.p-home-about__content {
  padding: 28px 6.149341142vw 24px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 599px) {
  .p-home-about__content {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.p-home-about__p1 {
  font-size: 2.8rem;
  line-height: 1.67;
  font-weight: 500;
  -webkit-transition: font-size 0.5s ease;
  transition: font-size 0.5s ease;
}
.p-home-about__p2 {
  font-size: 1.8rem;
}
.p-home-about__fig {
  width: 55.6368960469%;
}
@media screen and (max-width: 599px) {
  .p-home-about__fig {
    width: 100%;
  }
}
.p-home-about__fig img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-business {
  padding-top: 110px;
  padding-bottom: 110px;
  background: #1e89d8;
}
@media screen and (max-width: 599px) {
  .p-home-business {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.p-home-business .p-home__ttl span {
  color: #fff !important;
}
.p-home-business__inner {
  padding: 0 83px;
}
@media screen and (max-width: 599px) {
  .p-home-business__inner {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.p-home-business__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  .p-home-business__list {
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-home-business__list a {
  text-decoration: none;
}
.p-home-business__item {
  position: relative;
  cursor: pointer;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-home-business__item:hover .p-home-business__fig img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.p-home-business__item:nth-child(1) {
  color: #fff;
  text-align: center;
}
.p-home-business__item:nth-child(1) .p-home-business__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(47, 61, 78, 0.6);
}
.p-home-business__item:nth-child(1) .p-home-business__content h3 {
  margin-bottom: 20px;
  -webkit-transition: font-size 0.5s ease, margin 0.5s ease;
  transition: font-size 0.5s ease, margin 0.5s ease;
}
@media screen and (max-width: 1300px) {
  .p-home-business__item:nth-child(1) .p-home-business__content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .p-home-business__item:nth-child(1) .p-home-business__content h3 span:nth-child(1) {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }
  .p-home-business__item:nth-child(1) .p-home-business__content h3 span:nth-child(2) {
    font-size: 1.6rem;
  }
}
.p-home-business__item:nth-child(1) .p-home-business__content h3 span {
  display: block;
  font-weight: 500;
}
.p-home-business__item:nth-child(1) .p-home-business__content h3 span:nth-child(1) {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.p-home-business__item:nth-child(1) .p-home-business__content h3 span:nth-child(2) {
  font-size: 1.6rem;
  font-family: Helvetica, Arial, sans-serif;
}
.p-home-business__item:nth-child(1) .p-home-business__content p {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 600;
  -webkit-transition: font-size 0.5s ease, line-height 0.5s ease;
  transition: font-size 0.5s ease, line-height 0.5s ease;
}
@media screen and (max-width: 1300px) {
  .p-home-business__item:nth-child(1) .p-home-business__content p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-home-business__item:nth-child(2) {
  color: #1e89d8;
}
.p-home-business__item:nth-child(2) .p-home-business__content {
  background: none;
  padding: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-home-business__item:nth-child(2) .p-home-business__content h3 {
  font-size: 2.8rem;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02;
  margin-bottom: 30px;
  -webkit-transition: font-size 0.5s ease, margin 0.5s ease;
  transition: font-size 0.5s ease, margin 0.5s ease;
}
@media screen and (max-width: 1300px) {
  .p-home-business__item:nth-child(2) .p-home-business__content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
}
.p-home-business__item:nth-child(2) .p-home-business__content ul {
  list-style: disc;
  margin-left: -50px;
}
.p-home-business__item:nth-child(2) .p-home-business__content li {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  -webkit-transition: font-size 0.5s ease, margin 0.5s ease;
  transition: font-size 0.5s ease, margin 0.5s ease;
}
.p-home-business__item:nth-child(2) .p-home-business__content li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1300px) {
  .p-home-business__item:nth-child(2) .p-home-business__content li {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.p-home-business__item:nth-child(2) .p-home-business__content li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 599px) {
  .p-home-business__item:nth-child(2) .p-home-business__fig img {
    -o-object-position: 30% 0;
       object-position: 30% 0;
  }
}
.p-home-business__fig {
  overflow: hidden;
  height: 300px;
}
@media screen and (max-width: 599px) {
  .p-home-business__fig {
    height: 200px;
  }
}
.p-home-business__fig img {
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-business__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.p-home-business__content li a {
  position: relative;
  z-index: 2;
}
.p-home-business__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-home-recruit {
  background: #eae8e8;
  padding: 60px 0 150px;
}
@media screen and (max-width: 599px) {
  .p-home-recruit {
    padding: 30px 0 80px;
  }
}
.p-home-recruit__layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 599px) {
  .p-home-recruit__layout {
    display: block;
  }
}
.p-home-recruit__content {
  padding: 28px 84px 24px 93px;
  padding: 28px 6.149341142vw 24px 6.8081991215vw;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-home-recruit__p1 {
  font-size: 2.8rem;
  line-height: 1.67;
  font-weight: 500;
}
.p-home-recruit__p2 {
  font-size: 1.8rem;
}
.p-home-recruit__fig {
  width: 55.6368960469%;
}
@media screen and (max-width: 599px) {
  .p-home-recruit__fig {
    width: 100%;
  }
}
.p-home-recruit__fig img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*スライダー全体の高さを指定*/
.slider-wrapper {
  height: 778px;
  height: 56.9546120059vw;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .slider-wrapper {
    height: 80vw;
  }
}
@media screen and (max-width: 599px) {
  .slider-wrapper {
    height: 100vw;
  }
}

/*左右のスライダー枠の幅と高さ位置など*/
.slider-left,
.slider-right {
  width: 50%;
  height: 100%;
  float: left;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.slider-right {
  float: right;
}

/*左右１枚ずつのスライド画像の位置*/
.sld-left,
.sld-right {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
}
.sld-left img,
.sld-right img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .sld-left img,
  .sld-right img {
    width: auto;
    height: 100%;
    max-width: none;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media screen and (max-width: 960px) {
  .sld-left img {
    -o-object-position: -20vw;
       object-position: -20vw;
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}
@media screen and (max-width: 599px) {
  .sld-left img {
    -o-object-position: -37.8vw;
       object-position: -37.8vw;
  }
}

@media screen and (max-width: 960px) {
  .sld-right img {
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

.p-about-intro {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .p-about-intro {
    text-align: left;
  }
}
.p-about-intro__p1 {
  color: #1e89d8;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .p-about-intro__p1 {
    font-size: 2.4rem;
  }
}
.p-about-intro__p2 {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .p-about-intro__p2 {
    font-size: 1.6rem;
  }
}
.p-about-strengths__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px;
}
.p-about-strengths__item {
  width: calc((100% - 15px) / 2);
  background: #1e89d8;
  border-radius: 30px;
  padding: 30px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  .p-about-strengths__item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    gap: 10px;
  }
}
.p-about-strengths__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Helvetica, Arial, sans-serif;
  padding-top: 10px;
}
.p-about-strengths__ttl span {
  line-height: 1;
}
.p-about-strengths__ttl span:nth-child(1) {
  font-weight: 500;
  font-size: 3rem;
  font-size: min(2.196193265vw, 3rem);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 599px) {
  .p-about-strengths__ttl span:nth-child(1) {
    font-size: 2.4rem;
  }
}
.p-about-strengths__ttl span:nth-child(2) {
  font-weight: 700;
  font-size: 11.4rem;
  font-size: min(8.345534407vw, 11.4rem);
}
@media screen and (max-width: 599px) {
  .p-about-strengths__ttl span:nth-child(2) {
    font-size: 8rem;
  }
}
.p-about-strengths__p {
  margin-bottom: 0;
  font-size: 2.4rem;
  font-size: min(1.9033674963vw, 2.6rem);
  min-height: 0vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .p-about-strengths__p {
    font-size: 2.2rem;
    text-align: center;
  }
}
.p-about-features__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px;
}
.p-about-features__item {
  width: calc((100% - 15px) / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .p-about-features__item {
    width: 100%;
  }
}
.p-about-features__item:hover {
  background: #eee;
}
.p-about-features__item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.p-about-features__fig {
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .p-about-features__fig {
    height: 45vw;
  }
}
.p-about-features__fig img {
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width: 599px) {
  .p-about-features__fig img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-about-features__content {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.p-about-features__txt1 {
  font-size: 2.8rem;
  font-size: min(2.0497803807vw, 2.8rem);
  position: relative;
  top: -10px;
}
@media screen and (max-width: 599px) {
  .p-about-features__txt1 {
    font-size: 1.8rem;
  }
}
.p-about-features__txt1--en {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 3.8rem;
  top: -5px;
}
@media screen and (max-width: 599px) {
  .p-about-features__txt1--en {
    font-size: 2.4rem;
  }
}
.p-about-features__txt {
  font-size: 2.8rem;
  font-size: min(2.0497803807vw, 2.8rem);
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .p-about-features__txt {
    font-size: 1.8rem;
  }
}
.p-about-features__num {
  font-size: 7.2rem;
  font-size: min(5.1244509517vw, 7rem);
  font-weight: 700;
  color: #053d78;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 599px) {
  .p-about-features__num {
    font-size: 4.5rem;
  }
}
.p-about-features__ttl {
  font-size: 3.2rem;
  font-size: min(2.3426061493vw, 3.2rem);
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .p-about-features__ttl {
    font-size: 2.2rem;
  }
}
.p-about-features__ttl--bold {
  font-weight: 700;
}
.p-about-features__ttl--small {
  font-size: min(1.756954612vw, 2.4rem);
}
.p-about-features__p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  margin-bottom: 0;
  line-height: 1;
}
.p-about-features__note {
  font-size: 2rem;
  margin-bottom: 0;
  line-height: 1;
}
.p-about-modal-contents {
  height: 424px;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.p-about-modal-contents__item {
  width: 100%;
}
.p-about-modal-contents__layout {
  max-width: 1074px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__layout {
    width: calc(100vw - 40px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about-modal-contents__left {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__left {
    width: 100%;
    height: 50%;
  }
}
.p-about-modal-contents__right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 34px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__right {
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
  }
}
.p-about-modal-contents__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(1.6);
  transform: scale(1.6);
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__content {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
}
.p-about-modal-contents__content * {
  color: #fff !important;
}
.p-about-modal-contents__fig {
  position: relative;
  overflow: hidden;
  height: 424px;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__fig {
    height: 100%;
  }
}
.p-about-modal-contents__fig::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
}
.p-about-modal-contents__fig img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.p-about-modal-contents__p {
  font-size: 1.8rem;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__p {
    font-size: 1.5rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-business-intro-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 107px;
}
@media screen and (max-width: 599px) {
  .p-business-intro-layout {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-business-intro-layout__txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-business-intro-layout__p1 {
  font-size: 3rem;
  color: #1e89d8;
  margin-bottom: 35px;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .p-business-intro-layout__p1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}
.p-business-intro-layout__p2 {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 0;
}
.p-business-intro-layout__fig {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-business-fish__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.p-business-fish__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 107px;
}
@media screen and (max-width: 599px) {
  .p-business-fish__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.p-business-fish__left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.p-business-fish__right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-business-fish__ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(59, 59, 59, 0.8);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 10px;
}
.p-business-fish__table {
  width: 100%;
}
.p-business-fish__table thead {
  background: rgba(30, 137, 216, 0.1);
}
.p-business-fish__table thead tr {
  border-top: 1px solid #17a7e2;
  border-bottom: 1px solid #17a7e2;
}
.p-business-fish__table thead th {
  color: #1e89d8;
  font-weight: 700;
}
.p-business-fish__table tbody tr {
  border-bottom: 1px solid #999999;
}
.p-business-fish__table th,
.p-business-fish__table td {
  padding: 12px;
  font-size: 1.8rem;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .p-business-fish__table th,
  .p-business-fish__table td {
    font-size: 1.5rem;
  }
}
.p-business-fish__table th:nth-child(1),
.p-business-fish__table td:nth-child(1) {
  width: 35%;
  white-space: nowrap;
}
.p-business-arocessing__layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 107px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .p-business-arocessing__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-business-arocessing__txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-business-arocessing__txt-p {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 40px;
}
.p-business-arocessing__txt-ttl {
  display: inline-block;
  border: 1px solid #053d78;
  font-size: 2rem;
  margin-bottom: 10px;
  padding: 2px 10px;
  line-height: 1;
  font-weight: 700;
}
.p-business-arocessing__txt-dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.p-business-arocessing__txt-dl dt {
  font-weight: 700;
  white-space: nowrap;
}
.p-business-arocessing__txt-dl dt::after {
  content: ":";
}
.p-business-arocessing__fig {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-business-arocessing-main__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 599px) {
  .p-business-arocessing-main__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-business-arocessing-main__item {
  border-radius: 30px;
  background: #edf7ff;
  border: 3px solid #1e89d8;
  padding: 30px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #1e89d8;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .p-business-arocessing-main__item {
    padding: 20px;
  }
}
.p-business-arocessing-main__item-ttl {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .p-business-arocessing-main__item-ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
.p-business-arocessing-main__item-list {
  list-style: disc;
  margin-left: 1.2em;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .p-business-arocessing-main__item-list {
    gap: 5px;
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
}
.p-business-arocessing-main__item-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-business-arocessing-main__item-layout .p-business-arocessing-main__item-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 599px) {
  .p-business-arocessing-main__item-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.p-business-arocessing-main__item-item {
  line-height: 1.5;
}
.p-business-arocessing-main__item-note {
  font-size: 1.4rem;
  margin-bottom: 0;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 599px) {
  .p-business-arocessing-main__item-note {
    font-size: 1.2rem;
  }
}

.p-company__table {
  width: 100%;
}
.p-company__table tr {
  border-bottom: 1px solid #999999;
}
.p-company__table tr:first-child {
  border-top: 1px solid #999999;
}
.p-company__table th,
.p-company__table td {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .p-company__table th,
  .p-company__table td {
    display: block;
    font-size: 1.6rem;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.p-company__table th {
  padding-left: 70px;
  width: 360px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .p-company__table th {
    padding-left: 10px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .p-company__table td {
    padding-left: 20px;
    padding-top: 0;
  }
}
.p-company-access__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: rgba(30, 137, 216, 0.1);
  font-weight: 700;
  padding: 8px 25px;
  line-height: 1;
  color: #053d78;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .p-company-access__ttl {
    margin-bottom: 30px;
  }
}
.p-company-access__ttl span:nth-child(1) {
  font-size: 2.4rem;
}
@media screen and (max-width: 599px) {
  .p-company-access__ttl span:nth-child(1) {
    font-size: 2rem;
  }
}
.p-company-access__ttl span:nth-child(2) {
  font-size: 1.4rem;
}
.p-company-access__list {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.p-company-access__list:last-child {
  margin-bottom: 0;
  gap: 80px;
}
.p-company-access__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
}
@media screen and (max-width: 599px) {
  .p-company-access__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-company-access__txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 90px;
}
@media screen and (max-width: 599px) {
  .p-company-access__txt {
    padding-left: 10px;
    padding-bottom: 10px;
  }
}
.p-company-access__fig {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-company-access__fig--iframe {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.p-company-access__fig--iframe:before {
  content: "";
  display: block;
  padding-top: 64.6502835539%;
}
.p-company-access__fig--iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .p-company-access__fig--iframe {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .p-company-access__fig--iframe:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .p-company-access__fig--iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.p-company-access__fig--img {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.p-company-access__fig--img:before {
  content: "";
  display: block;
  padding-top: 64.6502835539%;
}
.p-company-access__fig--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto;
}
.p-company-access__ttl2 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .p-company-access__ttl2 {
    font-size: 1.8rem;
  }
}
.p-company-access__ttl2:last-child {
  margin-bottom: 0;
}
.p-company-access__ttl2 span:nth-child(2) {
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .p-company-access__ttl2 span:nth-child(2) {
    font-size: 1.4rem;
  }
}
.p-company-access__address {
  font-size: 1.8rem;
  display: block;
  line-height: 1.78;
}
@media screen and (max-width: 599px) {
  .p-company-access__address {
    font-size: 1.5rem;
  }
}

/* Utility *//*# sourceMappingURL=style.css.map */