@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%;
  background: #245a81;
}
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;
  font-weight: 500;
  color: #2f3d4e;
  -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;
  background: #fff;
}

a {
  color: inherit;
}

a,
button {
  -webkit-transition: color 0.3s ease, opacity 0.3s ease, background 0.3s ease, transform 0.2s ease;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease, background 0.3s ease, -webkit-transform 0.2s ease;
  transition: color 0.3s ease, opacity 0.3s ease, background 0.3s ease, -webkit-transform 0.2s ease;
  transition: color 0.3s ease, opacity 0.3s ease, background 0.3s ease, transform 0.2s ease;
  transition: color 0.3s ease, opacity 0.3s ease, background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s 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;
  font-weight: 500;
  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;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 4px;
  padding: 5px 12px 3px;
  font-size: 1.6rem;
  width: 100%;
  max-width: 290px;
  height: 34px;
  -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: #fff;
}
input[type=text]:visited,
input[type=email]:visited,
input[type=tel]:visited,
textarea:visited,
select:visited {
  color: #333;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  font-size: 1.6rem;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  font-size: 1.6rem;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  font-size: 1.6rem;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder {
  font-size: 1.6rem;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder,
select::placeholder {
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
    font-size: 1.5rem;
  }
  input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
    font-size: 1.5rem;
  }
  input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
    font-size: 1.5rem;
  }
  input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder {
    font-size: 1.5rem;
  }
  input[type=text]::placeholder,
  input[type=email]::placeholder,
  input[type=tel]::placeholder,
  textarea::placeholder,
  select::placeholder {
    font-size: 1.5rem;
  }
}
input[type=text].error,
input[type=email].error,
input[type=tel].error,
textarea.error,
select.error {
  border: 1px solid #f00;
  background-color: #ffdede;
}
input[type=text]:-moz-placeholder, input[type=email]:-moz-placeholder, input[type=tel]:-moz-placeholder, textarea:-moz-placeholder, select:-moz-placeholder {
  background-color: #ffdede;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  background-color: #ffdede;
}
input[type=text]:placeholder-shown,
input[type=email]:placeholder-shown,
input[type=tel]:placeholder-shown,
textarea:placeholder-shown,
select:placeholder-shown {
  background-color: #ffdede;
}
input[type=text]:-moz-placeholder:focus, input[type=email]:-moz-placeholder:focus, input[type=tel]:-moz-placeholder:focus, textarea:-moz-placeholder:focus, select:-moz-placeholder:focus {
  background-color: #fff;
}
input[type=text]:-ms-input-placeholder:focus, input[type=email]:-ms-input-placeholder:focus, input[type=tel]:-ms-input-placeholder:focus, textarea:-ms-input-placeholder:focus, select:-ms-input-placeholder:focus {
  background-color: #fff;
}
input[type=text]:placeholder-shown:focus,
input[type=email]:placeholder-shown:focus,
input[type=tel]:placeholder-shown:focus,
textarea:placeholder-shown:focus,
select:placeholder-shown:focus {
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  textarea,
  select {
    font-size: 1.5rem;
    padding: 3px 10px 3px;
    max-width: none;
  }
}

input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-size: 1.3rem;
  padding: 0;
}
input[type=file]::-webkit-file-upload-button {
  border: 1px solid #707070;
  border-radius: 4px;
  padding: 5px 12px 3px;
  font-size: 1.3rem;
  margin-right: 10px;
  font-weight: 700;
  color: #333;
}
input[type=file]::file-selector-button, input[type=file]::-webkit-file-upload-button {
  border: 1px solid #707070;
  border-radius: 4px;
  padding: 5px 12px 3px;
  font-size: 1.3rem;
  margin-right: 10px;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 599px) {
  input[type=file]::-webkit-file-upload-button {
    font-size: 1.3rem;
  }
  input[type=file]::file-selector-button, input[type=file]::-webkit-file-upload-button {
    font-size: 1.3rem;
  }
}
input[type=file].error::-webkit-file-upload-button {
  background-color: #ffdede;
}
input[type=file].error::file-selector-button, input[type=file].error::-webkit-file-upload-button {
  background-color: #ffdede;
}

input[type=radio] {
  margin: 2px 0 0;
}

input[type=checkbox] {
  position: relative;
  top: 2px;
}

textarea {
  min-height: 220px;
  padding: 10px;
  resize: vertical;
  width: 100%;
  max-width: none;
  background: #fff;
}

select {
  background: #fff url(/assets/imgs/_common/pulldown_arrow.svg) no-repeat right center/auto 100%;
  background-color: light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4));
  cursor: pointer;
  color: #333;
}
select:invalid {
  background-color: #ffdede !important;
}

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

.error_messe {
  margin-bottom: 5px;
}

.error_area {
  border: 2px solid red;
  padding: 20px;
}

label.error {
  display: block;
  position: absolute;
  left: 0;
  bottom: -20px;
  color: #f00;
  font-size: 1.1rem;
  background: #fff;
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 599px) {
  label.error {
    bottom: -18px;
    font-size: 0.8rem;
    padding: 2px 0 2px 5px;
  }
}
label.error[for=name1], label.error[for=name2], label.error[for=name1_kana], label.error[for=name2_kana], label.error[for=zip_code] {
  padding-left: 26px;
}
@media screen and (max-width: 599px) {
  label.error[for=name1], label.error[for=name2], label.error[for=name1_kana], label.error[for=name2_kana], label.error[for=zip_code] {
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  label.error[for=birth_year], label.error[for=birth_day] {
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  label.error[for=birth_month] {
    padding-left: 0;
    margin-left: -20px;
  }
}
label.error[for=terms_check] {
  width: 100%;
  text-align: center;
}

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

/* header --------------------------*/
.l-header {
  height: 78px;
  padding: 26.5px 0 0;
  background: #fff;
  position: fixed;
  z-index: 21;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .l-header {
    height: 60px;
    padding: 10px 0 0;
  }
}
.l-header__inner {
  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) {
  .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: 152.325px;
    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;
}
@media screen and (max-width: 960px) {
  .l-header__logo {
    display: block;
  }
}
.l-header__logo:hover {
  opacity: 0.8;
}
.l-header__logo-jp {
  width: 169.25px;
  height: 30.52px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  background: url("/assets/imgs/_common/logo.svg") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .l-header__logo-jp {
    width: 152.325px;
    height: 27.468px;
    margin: 0 auto 5px;
  }
}
.l-header__logo-en {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1;
}
@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: 22;
}
@media screen and (max-width: 960px) {
  .global-nav {
    z-index: 20;
    background: #245a81;
    padding: 60px 0 0;
    height: 100vh;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  .global-nav.transition {
    -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;
  }
  .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: 35px 20px 27px;
  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;
}
@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;
  }
}
@media screen and (max-width: 599px) {
  .global-nav__link {
    padding: 12px 20px;
  }
}
.global-nav__link::before {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  background: #aaa9a9;
  position: absolute;
  top: 30px;
  right: 0;
}
@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: #245a81;
  color: #fff;
  padding: 36px 0 10px;
  overflow: hidden;
}
.l-footer__inner {
  margin: 0 auto;
  padding: 0 183px 0 147px;
  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;
  }
}
.l-footer__logo {
  width: 169.25px;
  height: 30.52px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  background: url("/assets/imgs/_common/logo_white.svg") no-repeat center/contain;
}
.l-footer__logo:hover {
  opacity: 0.5;
}
.l-footer__address {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.71;
  white-space: nowrap;
  -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;
}
@media screen and (max-width: 599px) {
  .l-footer-nav {
    margin-bottom: 50px;
  }
}
.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;
  left: 492px;
  top: 105px;
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
@media screen and (max-width: 1170px) {
  .l-footer-nav__item--privacy {
    left: 455px;
  }
}
@media screen and (max-width: 599px) {
  .l-footer-nav__item--privacy {
    left: 0;
    top: 270px;
  }
}
.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: 1px;
  right: 0;
}
.l-footer-nav__link {
  font-size: 1.8rem;
  margin-bottom: 17px;
  display: 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-burger-menu {
  cursor: pointer;
  position: fixed;
  right: 8px;
  top: 8px;
  width: 44px;
  height: 44px;
  background: #245a81;
  display: none;
  z-index: 30;
}
@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;
}
.c-company-table {
  width: 100%;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .c-company-table {
    font-size: 1.6rem;
  }
}
.c-company-table tr {
  border-bottom: 1px solid #245a81;
}
.c-company-table tr:first-child {
  border-top: 1px solid #245a81;
}
.c-company-table th,
.c-company-table td {
  padding: 15px 0;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .c-company-table th,
  .c-company-table td {
    padding: 12px 0;
  }
}
.c-company-table th {
  width: 187px;
  padding-right: 20px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .c-company-table th {
    width: 90px;
    padding-right: 10px;
  }
}
.c-company-table h5 {
  font-weight: 700;
}
.c-company-table p {
  margin-bottom: 0;
}

.c-link-tel {
  text-decoration: underline;
  color: #245a81;
}
.c-link-tel:hover {
  text-decoration: none;
}

.c-link-tel {
  pointer-events: none;
  text-decoration: none !important;
  color: inherit;
}
@media screen and (max-width: 599px) {
  .c-link-tel {
    pointer-events: all;
    text-decoration: underline !important;
  }
}

.c-link-fax {
  color: inherit;
  pointer-events: none;
  text-decoration: none !important;
}

.c-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 140px;
}
@media screen and (max-width: 960px) {
  .c-inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 599px) {
  .c-inner {
    padding: 0 4.8vw;
  }
}

.c-section {
  padding: 90px 0;
}
@media screen and (max-width: 960px) {
  .c-section {
    padding: 70px 0;
  }
}
@media screen and (max-width: 599px) {
  .c-section {
    padding: 50px 0;
  }
}

.c-breadcrumb {
  padding: 10px 0;
}
@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 4.8vw;
  }
}
.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-ttl2 {
  color: #245a81;
  text-align: center;
  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-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  line-height: 1;
  padding-bottom: 8px;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .c-ttl2 {
    padding-bottom: 5px;
  }
}
.c-ttl2::after {
  background: #245a81;
  width: 160px;
  height: 7px;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: -10px;
}
@media screen and (max-width: 599px) {
  .c-ttl2::after {
    height: 3px;
    width: 120px;
  }
}
.c-ttl2--white {
  color: #fff;
}
.c-ttl2--white::after {
  background: #fff;
}
.c-ttl2__jp {
  font-size: 4rem;
}
@media screen and (max-width: 599px) {
  .c-ttl2__jp {
    font-size: 2.8rem;
  }
}
.c-ttl2__en {
  font-size: 2.4rem;
  font-weight: 600;
  font-family: Helvetica, Arial, sans-serif;
  padding: 0 25px;
  text-transform: capitalize;
  position: relative;
}
@media screen and (max-width: 599px) {
  .c-ttl2__en {
    font-size: 1.6rem;
  }
}
.c-ttl2:has(+ p) {
  margin-bottom: 30px;
}
.c-ttl2 + p {
  text-align: center;
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .c-ttl2 + p {
    font-size: 1.4rem;
    text-align: left;
  }
}

.c-cover {
  position: relative;
  background: #eee;
}
@media screen and (max-width: 960px) {
  .c-cover {
    height: 50vw;
  }
}
@media screen and (max-width: 960px) {
  .c-cover__fig {
    height: 100%;
  }
  .c-cover__fig img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.c-cover__txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-cover__ttl {
  text-align: center;
  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;
  color: #245a81;
}
.c-cover__ttl-jp {
  font-size: 4.8rem;
  font-weight: 800;
}
@media screen and (max-width: 599px) {
  .c-cover__ttl-jp {
    font-size: 3.2rem;
  }
}
.c-cover__ttl-en {
  font-size: 2.4rem;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .c-cover__ttl-en {
    font-size: 1.8rem;
  }
}

.c-btn-pagetop {
  position: fixed;
  bottom: 83px;
  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: #245a81;
  color: #fff;
  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;
  transition: font-size 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/arrow_btn.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;
}

.c-btn2 {
  display: inline-block;
  background: #0076ff;
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  padding: 9px 40px 11px 40px;
  position: relative;
  text-decoration: none;
  min-width: 240px;
  text-align: center;
  -webkit-transition: font-size 0.5s ease;
  transition: font-size 0.5s ease;
}
@media screen and (max-width: 1300px) {
  .c-btn2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .c-btn2 {
    min-width: 0;
    width: 100%;
    font-size: 1.4rem;
  }
}
.c-btn2::after {
  content: "";
  display: block;
  width: 12px;
  height: 22px;
  background: url("/assets//imgs/_common/arrow_btn2.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-btn2::after {
    width: 15.4px;
    height: 12.6px;
  }
}
.c-btn2:hover {
  background: #245a81;
}

.c-btn-submit {
  display: inline-block;
  min-width: 300px;
  background: #0076ff;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  padding: 8px;
  pointer-events: all;
}
.c-btn-submit:hover {
  background: #245a81;
}
.c-btn-submit.submited {
  pointer-events: none;
  opacity: 0.3;
}
.c-btn-submit--entry {
  pointer-events: none;
  opacity: 0.3;
}
@media screen and (max-width: 599px) {
  .c-btn-submit {
    width: 100%;
  }
}

.c-btn-back {
  display: inline-block;
  min-width: 200px;
  background: #ccc;
  color: #333;
  border-radius: 6px;
  font-weight: 600;
  padding: 8px;
  pointer-events: all;
}
.c-btn-back:hover {
  background: #eee;
}
@media screen and (max-width: 599px) {
  .c-btn-back {
    width: 100%;
  }
}

.c-megamenu__open {
  padding-right: 40px !important;
  position: relative;
}
.c-megamenu__open::after {
  width: 14px;
  height: 8px;
  content: "";
  display: block;
  background: url("/assets/imgs/_common/arrow_menu.svg") no-repeat center/contain;
  position: absolute;
  right: 20px;
  top: 40px;
}
@media screen and (max-width: 960px) {
  .c-megamenu__open::after {
    top: 20px;
    background-image: url("/assets/imgs/_common/arrow_menu_white.svg");
  }
}
.c-megamenu__open span {
  width: 30px;
  height: 15px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 77px;
  z-index: 100;
  content: "";
  display: block;
  background: url("/assets/imgs/_common/megamenu_arrow.svg") no-repeat center/contain;
  -webkit-transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}
@media screen and (max-width: 960px) {
  .c-megamenu__open span {
    display: none;
  }
}

.c-megamenu.is-open .c-megamenu__navigation {
  -webkit-clip-path: inset(0 -50vw);
  clip-path: inset(0 -50vw);
  visibility: visible;
}

.c-megamenu__navigation {
  -webkit-clip-path: inset(0 -50vw 100%);
  clip-path: inset(0 -50vw 100%);
  left: 0;
  top: 77px;
  z-index: 999;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
  width: 100%;
  height: 75px;
  background: #e1e9ef;
}
@media screen and (max-width: 960px) {
  .c-megamenu__navigation {
    -webkit-clip-path: inset(0 -50vw);
    clip-path: inset(0 -50vw);
    visibility: visible;
    position: static;
    height: auto;
    background: rgba(255, 255, 255, 0.1);
    -webkit-transition: none;
    transition: none;
  }
}
.c-megamenu__navigation-list {
  max-width: 1366px;
  margin: 0 auto;
  padding: 23px 0;
  height: 100%;
  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: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  .c-megamenu__navigation-list {
    display: block;
    padding: 10px 0;
  }
}
@media screen and (max-width: 599px) {
  .c-megamenu__navigation-list {
    padding: 5px 0;
  }
}
.c-megamenu__navigation-list li {
  height: 32px;
  border-right: 1px solid #aaa9a9;
}
@media screen and (max-width: 960px) {
  .c-megamenu__navigation-list li {
    height: auto;
  }
}
.c-megamenu__navigation-list li:last-child {
  border-right: none;
}
.c-megamenu__navigation-list a {
  color: #2f3d4e;
  font-size: 1.8rem;
  height: 100%;
  display: block;
  text-decoration: none;
  padding: 2px 40px;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .c-megamenu__navigation-list a {
    color: #fff;
    padding: 10px 40px;
    font-size: 1.5rem;
  }
}
.c-megamenu__navigation-list a.current, .c-megamenu__navigation-list a:hover {
  color: #0076ff;
}
@media screen and (max-width: 599px) {
  .c-megamenu__navigation-list a.current, .c-megamenu__navigation-list a:hover {
    color: #bbb;
  }
}
@media (min-width: 599px) and (hover: hover) {
  .c-megamenu.current .c-megamenu__open span,
  .c-megamenu:hover .c-megamenu__open span,
  .c-megamenu:focus-within .c-megamenu__open span {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .c-megamenu.current .c-megamenu__navigation,
  .c-megamenu:hover .c-megamenu__navigation,
  .c-megamenu:focus-within .c-megamenu__navigation {
    -webkit-clip-path: inset(0 -50vw);
    clip-path: inset(0 -50vw);
    visibility: visible;
  }
}
/* 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: 20px;
  }
}
.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: 20px;
  }
  .c-modal__next::after, .c-modal__prev::after {
    font-size: 2.2rem;
    font-weight: 700;
  }
}
.c-modal__prev {
  margin-left: -400px;
}
@media screen and (max-width: 599px) {
  .c-modal__prev {
    margin-left: 0;
    left: 15px;
  }
}
.c-modal__next {
  margin-left: 400px;
}
@media screen and (max-width: 599px) {
  .c-modal__next {
    margin-left: 0;
    right: 15px;
  }
}

/* Project */
.p-home .l-main {
  padding-bottom: 150px;
}
@media screen and (max-width: 599px) {
  .p-home .l-main {
    padding-bottom: 100px;
  }
}
.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: 5px;
}
.p-home__ttl span:nth-child(2) {
  font-size: 1.6rem;
}
.p-home__ttl a {
  text-decoration: none;
  display: inline-block;
  background: #245a81;
  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/arrow_btn.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 {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .p-home-cover {
    margin-bottom: 50px;
  }
}
.p-home-cover__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 80px;
  z-index: 2;
  color: #fff;
  pointer-events: none;
  margin-top: -100px;
}
@media screen and (max-width: 960px) {
  .p-home-cover__content {
    padding-left: 8.3333333333vw;
    margin-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .p-home-cover__content {
    padding-left: 5.3333333333vw;
  }
}
.p-home-cover__p1 {
  font-size: 8.58rem;
  margin-bottom: 26px;
  line-height: 1;
  font-weight: 700;
}
@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: 10.1333333333vw;
    margin-bottom: 10px;
  }
}
.p-home-cover__p2 {
  font-size: 2.4rem;
  font-family: Helvetica, Arial, sans-serif;
  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 {
    font-size: 5.3333333333vw;
  }
}
.p-home-cover__p3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.67;
}
@media screen and (max-width: 960px) {
  .p-home-cover__p3 {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 599px) {
  .p-home-cover__p3 {
    line-height: 1.5;
    font-size: 5.3333333333vw;
    margin-bottom: 10px;
  }
}
.p-home-about {
  background: rgba(36, 90, 129, 0.15);
}
.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;
}
@media screen and (max-width: 599px) {
  .p-home-about__p1 {
    font-size: 6.1333333333vw;
  }
}
.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;
}
@media screen and (max-width: 599px) {
  .p-home-business {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.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;
  white-space: nowrap;
  cursor: pointer;
}
.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), .p-home-business__item:nth-child(2), .p-home-business__item:nth-child(3) {
  width: calc((100% - 60px) / 3);
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .p-home-business__item:nth-child(1), .p-home-business__item:nth-child(2), .p-home-business__item:nth-child(3) {
    width: 100%;
    height: 200px;
  }
}
.p-home-business__item:nth-child(1) .p-home-business__fig::after, .p-home-business__item:nth-child(2) .p-home-business__fig::after, .p-home-business__item:nth-child(3) .p-home-business__fig::after {
  content: "";
  display: block;
  background: rgba(47, 61, 78, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .p-home-business__item:nth-child(1) .p-home-business__fig, .p-home-business__item:nth-child(2) .p-home-business__fig, .p-home-business__item:nth-child(3) .p-home-business__fig {
    width: 100%;
    height: 100%;
  }
  .p-home-business__item:nth-child(1) .p-home-business__fig img, .p-home-business__item:nth-child(2) .p-home-business__fig img, .p-home-business__item:nth-child(3) .p-home-business__fig img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-home-business__item:nth-child(1) .p-home-business__content, .p-home-business__item:nth-child(2) .p-home-business__content, .p-home-business__item:nth-child(3) .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;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-home-business__item:nth-child(1) .p-home-business__content h3, .p-home-business__item:nth-child(2) .p-home-business__content h3, .p-home-business__item:nth-child(3) .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, .p-home-business__item:nth-child(2) .p-home-business__content h3, .p-home-business__item:nth-child(3) .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), .p-home-business__item:nth-child(2) .p-home-business__content h3 span:nth-child(1), .p-home-business__item:nth-child(3) .p-home-business__content h3 span:nth-child(1) {
    font-size: 2.8rem;
    margin-bottom: 5px;
  }
  .p-home-business__item:nth-child(1) .p-home-business__content h3 span:nth-child(2), .p-home-business__item:nth-child(2) .p-home-business__content h3 span:nth-child(2), .p-home-business__item:nth-child(3) .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, .p-home-business__item:nth-child(2) .p-home-business__content h3 span, .p-home-business__item:nth-child(3) .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), .p-home-business__item:nth-child(2) .p-home-business__content h3 span:nth-child(1), .p-home-business__item:nth-child(3) .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), .p-home-business__item:nth-child(2) .p-home-business__content h3 span:nth-child(2), .p-home-business__item:nth-child(3) .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, .p-home-business__item:nth-child(2) .p-home-business__content p, .p-home-business__item:nth-child(3) .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, .p-home-business__item:nth-child(2) .p-home-business__content p, .p-home-business__item:nth-child(3) .p-home-business__content p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-home-business__item:nth-child(4), .p-home-business__item:nth-child(5) {
  width: calc((100% - 30px) / 2);
  color: #245a81;
}
@media screen and (max-width: 599px) {
  .p-home-business__item:nth-child(4), .p-home-business__item:nth-child(5) {
    width: 100%;
    height: 200px;
  }
}
@media screen and (max-width: 599px) {
  .p-home-business__item:nth-child(4) .p-home-business__fig, .p-home-business__item:nth-child(5) .p-home-business__fig {
    width: 100%;
    height: 100%;
  }
  .p-home-business__item:nth-child(4) .p-home-business__fig img, .p-home-business__item:nth-child(5) .p-home-business__fig img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-home-business__item:nth-child(4) .p-home-business__content, .p-home-business__item:nth-child(5) .p-home-business__content {
  background: none;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-home-business__item:nth-child(4) .p-home-business__content h3, .p-home-business__item:nth-child(5) .p-home-business__content h3 {
  font-size: 2.8rem;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02;
  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(4) .p-home-business__content h3, .p-home-business__item:nth-child(5) .p-home-business__content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
}
.p-home-business__item:nth-child(4) .p-home-business__content ul, .p-home-business__item:nth-child(5) .p-home-business__content ul {
  list-style: disc;
  padding-left: 1.3em;
  z-index: 3;
  position: relative;
}
.p-home-business__item:nth-child(4) .p-home-business__content li, .p-home-business__item:nth-child(5) .p-home-business__content li {
  margin-bottom: 12px;
  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(4) .p-home-business__content li:last-child, .p-home-business__item:nth-child(5) .p-home-business__content li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1300px) {
  .p-home-business__item:nth-child(4) .p-home-business__content li, .p-home-business__item:nth-child(5) .p-home-business__content li {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.p-home-business__item:nth-child(4) .p-home-business__content li a, .p-home-business__item:nth-child(5) .p-home-business__content li a {
  position: relative;
  z-index: 2;
}
.p-home-business__item:nth-child(4) .p-home-business__content li a:hover, .p-home-business__item:nth-child(5) .p-home-business__content li a:hover {
  text-decoration: underline;
}
.p-home-business__fig {
  overflow: hidden;
  z-index: 1;
}
.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;
}
.p-home-business__content {
  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: rgba(36, 90, 129, 0.15);
}
.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;
}
@media screen and (max-width: 599px) {
  .p-home-recruit__p1 {
    font-size: 6.1333333333vw;
  }
}
.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: 700px;
  height: 51.2445095168vw;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .slider-wrapper {
    height: 150vw;
  }
}

/*左右のスライダー枠の幅と高さ位置など*/
.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: -96vw;
       object-position: -96vw;
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}

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

.p-about-intro {
  padding-top: 50px;
  padding-bottom: 0;
}
.p-about-intro__p1 {
  text-align: center;
  font-weight: 800;
  font-size: 3.2rem;
  margin-bottom: 40px;
  line-height: 1.56;
  color: #245a81;
}
@media screen and (max-width: 599px) {
  .p-about-intro__p1 {
    font-size: 2.3rem;
    text-align: left;
  }
}
.p-about-intro__p2 {
  max-width: 770px;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: justify;
}
@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: 44px;
}
@media screen and (max-width: 599px) {
  .p-about-strengths__list {
    gap: 20px;
  }
}
.p-about-strengths__item {
  width: calc((100% - 44px) / 2);
  background: #245a81;
  border-radius: 10px;
  padding: 18px 20px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .p-about-strengths__item {
    width: 100%;
  }
}
.p-about-strengths__ttl2 {
  font-family: Helvetica, Arial, sans-serif;
  margin-bottom: 10px;
  border-bottom: 3px solid #fff;
  padding-bottom: 17px;
  padding-left: 80px;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .p-about-strengths__ttl2 {
    padding-bottom: 5px;
  }
}
.p-about-strengths__ttl2--1 > span::before {
  background-image: url("/assets/imgs/about/point_icon01.svg");
  width: 50px;
  height: 50px;
}
.p-about-strengths__ttl2--2 > span::before {
  background-image: url("/assets/imgs/about/point_icon02.svg");
  width: 92.88px;
  height: 34.77px;
}
.p-about-strengths__ttl2--3 > span::before {
  background-image: url("/assets/imgs/about/point_icon03.svg");
  width: 71.2px;
  height: 40px;
}
.p-about-strengths__ttl2--4 > span::before {
  background-image: url("/assets/imgs/about/point_icon04.svg");
  width: 47.49px;
  height: 46.25px;
}
.p-about-strengths__ttl2 > span {
  display: inline-block;
  position: relative;
}
.p-about-strengths__ttl2 > span::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  right: 110%;
  background: center no-repeat/contain;
}
@media screen and (max-width: 599px) {
  .p-about-strengths__ttl2 > span::before {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    bottom: 2px;
  }
}
.p-about-strengths__ttl2 > span > span {
  display: inline-block;
  position: relative;
  line-height: 1;
}
.p-about-strengths__ttl2 > span > span:nth-child(1) {
  font-size: 4rem;
  margin-right: 20px;
}
@media screen and (max-width: 599px) {
  .p-about-strengths__ttl2 > span > span:nth-child(1) {
    font-size: 3rem;
    margin-right: 10px;
  }
}
.p-about-strengths__ttl2 > span > span:nth-child(2) {
  font-size: 6rem;
  font-weight: 700;
  position: relative;
  bottom: -2px;
}
@media screen and (max-width: 599px) {
  .p-about-strengths__ttl2 > span > span:nth-child(2) {
    font-size: 5rem;
  }
}
.p-about-strengths__p {
  font-size: 3rem;
  line-height: 1.81;
  margin-bottom: 0;
}
@media screen and (max-width: 1330px) {
  .p-about-strengths__p {
    font-size: 2.196193265vw;
    white-space: nowrap;
  }
}
@media screen and (max-width: 599px) {
  .p-about-strengths__p {
    font-size: 2rem;
    line-height: 1.6;
  }
}
.p-about-features {
  background: #eae8e8;
}
.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: 44px;
}
@media screen and (max-width: 1330px) {
  .p-about-features__list {
    gap: 3.2210834553vw;
  }
}
@media screen and (max-width: 599px) {
  .p-about-features__list {
    gap: 20px;
  }
}
.p-about-features__item {
  width: calc((100% - 44px) / 2);
  background: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -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;
}
.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;
}
.p-about-features__content {
  width: 50%;
  padding: 10px;
  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;
  gap: 5px;
}
@media screen and (max-width: 1330px) {
  .p-about-features__content {
    gap: 3px;
  }
}
@media screen and (max-width: 599px) {
  .p-about-features__content {
    gap: 2px;
  }
}
.p-about-features__ttl2 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1330px) {
  .p-about-features__ttl2 {
    font-size: 2.3426061493vw;
  }
}
@media screen and (max-width: 599px) {
  .p-about-features__ttl2 {
    font-size: 2.2rem;
  }
}
.p-about-features__ttl2--2 {
  font-size: 1.8rem;
  margin-bottom: -10px;
}
@media screen and (max-width: 1330px) {
  .p-about-features__ttl2--2 {
    font-size: 1.317715959vw;
  }
}
@media screen and (max-width: 599px) {
  .p-about-features__ttl2--2 {
    font-size: 1.4rem;
    margin-bottom: -10px;
  }
}
@media screen and (max-width: 599px) {
  .p-about-features__ttl2--2-modal {
    margin-bottom: 0;
    position: relative;
    top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .p-about-features__ttl1 {
    font-size: 2.2rem;
  }
}
.p-about-features__p {
  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;
  position: relative;
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .p-about-features__p {
    gap: 5px;
  }
}
.p-about-features__p--2 {
  margin-bottom: 15px;
  gap: 5px;
}
@media screen and (max-width: 1330px) {
  .p-about-features__p--2 {
    margin-bottom: 10px;
  }
}
.p-about-features__note {
  font-size: 1.6rem;
  line-height: 1.2em;
  margin-bottom: 0;
  margin-top: 10px;
}
.p-about-features__num {
  display: in-block;
  font-size: 7.2rem;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #245a81;
  line-height: 1;
  position: relative;
  bottom: -10px;
}
@media screen and (max-width: 1330px) {
  .p-about-features__num {
    font-size: 5.270863836vw;
  }
}
@media screen and (max-width: 599px) {
  .p-about-features__num {
    font-size: 4.5rem;
  }
}
.p-about-features__num span {
  font-size: 4.5rem;
  list-style: 1;
}
@media screen and (max-width: 599px) {
  .p-about-features__num span {
    font-size: 2rem;
    position: relative;
    top: -2px;
  }
}
.p-about-features__num--2 {
  font-size: 5.2rem;
}
@media screen and (max-width: 1330px) {
  .p-about-features__num--2 {
    font-size: 3.8067349927vw;
  }
}
@media screen and (max-width: 599px) {
  .p-about-features__num--2 {
    font-size: 3.2rem;
  }
}
.p-about-features__num--2 span {
  font-size: 1.8rem;
  display: inline-block;
  margin: 0 3px;
}
@media screen and (max-width: 599px) {
  .p-about-features__num--2 span {
    font-size: 1.4rem;
  }
}
.p-about-features__txt {
  display: inline-block;
  white-space: nowrap;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1330px) {
  .p-about-features__txt {
    font-size: 2.3426061493vw;
  }
}
@media screen and (max-width: 599px) {
  .p-about-features__txt {
    font-size: 2.2rem;
  }
}
.p-about-features__txt--2 {
  font-size: 2.2rem;
  top: 2px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .p-about-features__txt--2 {
    font-size: 1.4rem;
    top: 5px;
  }
}
.p-about-modal-contents {
  height: 460px;
  padding: 30px 0;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents {
    height: 520px;
    padding: 20px 0;
    margin-top: -10px;
  }
}
.p-about-modal-contents__item {
  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;
}
.p-about-modal-contents__layout {
  width: 720px;
  height: 100%;
  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-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
          box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__layout {
    width: calc(100vw - 40px);
    height: 480px;
    -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: 280px;
  height: 100%;
  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;
}
@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;
  }
}
.p-about-modal-contents__layout2 {
  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;
  gap: 5px;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__layout2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    padding: 0 20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: -15px;
    width: 70%;
  }
}
.p-about-modal-contents__ttl1 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__ttl1 {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.p-about-modal-contents__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__content {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
}
.p-about-modal-contents__content * {
  color: #fff !important;
}
.p-about-modal-contents__fig {
  position: relative;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__fig {
    border-radius: 10px 10px 0 0;
  }
}
.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 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about-modal-contents__p {
  font-size: 2rem;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__p {
    font-size: 1.4rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 10px;
  }
}
.p-about-modal-contents__nav {
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__nav {
    margin-bottom: 3px;
  }
}
.p-about-modal-contents__nav:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .p-about-modal-contents__nav:last-child {
    margin-bottom: 0;
  }
}

.p-business_fisheries .l-main {
  padding-bottom: 50px;
}
.p-business_fisheries__ttl {
  color: #fff;
}
.p-business_feed .l-main {
  padding-bottom: 50px;
}
.p-business-modal-contents__list {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 780px;
  max-height: 90vh;
}
@media screen and (max-width: 599px) {
  .p-business-modal-contents__list {
    height: 500px;
  }
}
@media screen and (max-width: 599px) {
  .p-business-modal-contents__list--feed {
    height: 420px;
  }
}
.p-business-modal-contents__layout {
  width: 500px;
  height: 100%;
  background: #245a81;
  padding: 30px;
  border-radius: 10px;
  border: 3px solid #fff;
  color: #fff;
  margin: 0 auto;
  pointer-events: all;
  position: relative;
  -webkit-box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.16);
  overflow: auto;
}
@media screen and (max-width: 599px) {
  .p-business-modal-contents__layout {
    width: calc(100% - 40px);
    padding: 10px;
    border-width: 2px;
  }
}
.p-business-modal-contents__layout--grass {
  border: none;
  background: #fff;
  color: #2f3d4e;
}
.p-business-modal-contents__fig {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .p-business-modal-contents__fig {
    margin-bottom: 10px;
  }
}
.p-business-modal-contents__ttl {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .p-business-modal-contents__ttl {
    margin-bottom: 10px;
  }
}
.p-business-modal-contents__ttl span {
  display: block;
  line-height: 1;
}
.p-business-modal-contents__ttl span:nth-child(1) {
  font-size: 3rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .p-business-modal-contents__ttl span:nth-child(1) {
    font-size: 2.2rem;
    margin-bottom: 5px;
  }
}
.p-business-modal-contents__ttl span:nth-child(2) {
  font-size: 2rem;
  font-weight: 700;
  font-family: Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 599px) {
  .p-business-modal-contents__ttl span:nth-child(2) {
    font-size: 1.4rem;
  }
}
.p-business-modal-contents__p {
  margin: 0 15px;
  font-size: 2rem;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .p-business-modal-contents__p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 0 10px;
  }
}
.p-business-modal__prev--sp, .p-business-modal__next--sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .p-business-modal__prev--sp, .p-business-modal__next--sp {
    display: block;
  }
}
.p-business-intro__layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 599px) {
  .p-business-intro__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-business-intro__layout--2 {
    -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__float {
  zoom: 1;
}
@media screen and (max-width: 599px) {
  .p-business-intro__float {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-business-intro__float .p-business-intro__fig {
  width: 50%;
  float: right;
  margin-left: 40px;
  margin-bottom: 0px;
}
@media screen and (max-width: 599px) {
  .p-business-intro__float .p-business-intro__fig {
    width: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .p-business-intro__float .p-business-intro__content {
    margin-bottom: 40px;
  }
}
.p-business-intro__float:after {
  display: table;
  clear: both;
  content: "";
}
.p-business-intro__float:before {
  display: table;
  content: "";
}
.p-business-intro__fig {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-business-intro__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-business-intro__p1 {
  font-weight: 800;
  font-size: 3.2rem;
  color: #245a81;
  margin-bottom: 20px;
  line-height: 1.56;
}
@media screen and (max-width: 599px) {
  .p-business-intro__p1 {
    font-size: 2.4rem;
  }
}
.p-business-intro__p2 {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .p-business-intro__p2 {
    font-size: 1.6rem;
  }
}
.p-business-commitment {
  background: #245a81;
  color: #fff;
}
.p-business-commitment__list {
  font-weight: 700;
  width: auto;
  padding-left: 2em;
  padding-left: 0;
}
@media screen and (max-width: 599px) {
  .p-business-commitment__list {
    padding-left: 0;
  }
}
.p-business-commitment__item {
  font-size: 2.8rem;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .p-business-commitment__item {
    font-size: 1.8rem;
  }
}
.p-business-commitment__item:last-child {
  margin-bottom: 0;
}
.p-business-commitment__item--grid {
  padding-left: 0;
  text-indent: 0;
}
.p-business-commitment__item > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.2rem;
}
@media screen and (max-width: 860px) {
  .p-business-commitment__item > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
    gap: 10px;
  }
}
.p-business-commitment__item > div > div:nth-child(1) {
  width: 300px;
  background: #fff;
  color: #245a81;
  padding: 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 860px) {
  .p-business-commitment__item > div > div:nth-child(1) {
    width: 100%;
  }
}
.p-business-commitment__item > div > div:nth-child(1) figure {
  width: 60px;
}
.p-business-commitment__item > div > div:nth-child(1) h3 {
  text-align: left;
}
@media screen and (max-width: 860px) {
  .p-business-commitment__item > div > div:nth-child(1) h3 br {
    display: none;
  }
}
.p-business-commitment__item > div > div:nth-child(2) {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-business-main-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .p-business-main-list {
    gap: 3px;
    margin-bottom: 5px;
  }
}
.p-business-main-list-txt__ttl {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 1300px) {
  .p-business-main-list-txt__ttl {
    font-size: 2.0497803807vw;
  }
}
@media screen and (max-width: 599px) {
  .p-business-main-list-txt__ttl {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
    text-align: center;
  }
}
.p-business-main-list-txt__p {
  font-size: 2.2rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1300px) {
  .p-business-main-list-txt__p {
    font-size: 1.6105417277vw;
  }
}
@media screen and (max-width: 599px) {
  .p-business-main-list-txt__p {
    font-size: 1.1rem;
  }
}
.p-business-main-list-txt__list {
  padding-left: 1.5em;
}
@media screen and (max-width: 1300px) {
  .p-business-main-list-txt__list {
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .p-business-main-list-txt__list {
    padding-left: 0;
  }
}
.p-business-main-list-txt__item {
  margin-bottom: 10px;
  font-size: 2.2rem;
}
@media screen and (max-width: 1300px) {
  .p-business-main-list-txt__item {
    font-size: 1.6105417277vw;
    display: inline-block;
  }
}
.p-business-main-list-txt__item:last-child {
  margin-bottom: 0;
}
.p-business-main-list-txt__item::before {
  content: "・";
}
@media screen and (max-width: 599px) {
  .p-business-main-list-txt__item {
    font-size: 1rem;
    margin-bottom: 3px;
  }
}
.p-business-main-list-txt__item span {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: Helvetica, Arial, sans-serif;
  display: inline-block;
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .p-business-main-list-txt__item span {
    font-size: 0.9rem;
    margin-left: 3px;
  }
}
.p-business-main-list__item {
  position: relative;
  width: calc((100% - 40px) / 3);
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .p-business-main-list__item {
    width: calc((100% - 10px) / 3);
    border-radius: 8px;
  }
}
.p-business-main-list__item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.p-business-main-list__item--1 {
  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: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(36, 90, 129, 0.15);
  color: #2f3d4e;
  padding: 10px;
}
@media screen and (max-width: 599px) {
  .p-business-main-list__item--1 {
    padding: 10px;
  }
}
.p-business-main-list__item--2 {
  padding: 30px;
  background: rgba(36, 90, 129, 0.15);
  color: #2f3d4e;
  -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-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;
}
@media screen and (max-width: 599px) {
  .p-business-main-list__item--2 {
    padding: 5px 2px;
  }
}
.p-business-main-list__fig {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.p-business-main-list__fig::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.2);
}
.p-business-main-list__fig img {
  display: block;
  -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;
}
.p-business-main-list__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
  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;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .p-business-main-list__ttl {
    gap: 5px;
  }
}
.p-business-main-list__ttl > span {
  text-align: center;
}
.p-business-main-list__ttl > span:nth-child(1) {
  font-size: 2.6rem;
  line-height: 1;
}
@media screen and (max-width: 1100px) {
  .p-business-main-list__ttl > span:nth-child(1) {
    font-size: 1.9033674963vw;
  }
}
@media screen and (max-width: 599px) {
  .p-business-main-list__ttl > span:nth-child(1) {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
  }
  .p-business-main-list__ttl > span:nth-child(1).small {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .p-business-main-list__ttl > span:nth-child(1) span {
    font-size: 1rem;
  }
}
.p-business-main-list__ttl > span:nth-child(2) {
  font-size: 1.8rem;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .p-business-main-list__ttl > span:nth-child(2) {
    font-size: 0.9rem;
  }
}
.p-business-main-list__ttl .pc2 {
  display: inline;
}
@media screen and (max-width: 1300px) {
  .p-business-main-list__ttl .pc2 {
    display: none;
  }
}
.p-business-main-list__ttl .sp2 {
  display: none;
}
@media screen and (max-width: 1300px) {
  .p-business-main-list__ttl .sp2 {
    display: inline;
  }
}
.p-business-main-fig {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .p-business-main-fig {
    margin-bottom: 30px;
  }
}
.p-business-main-country {
  border: 3px solid #245a81;
  padding: 20px 42px;
}
@media screen and (max-width: 599px) {
  .p-business-main-country {
    padding: 10px 20px;
  }
}
.p-business-main-country__ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #245a81;
  border-bottom: 3px solid #245a81;
  padding-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .p-business-main-country__ttl {
    font-size: 2rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-width: 2px;
  }
}
.p-business-main-country__p {
  font-size: 2.2rem;
  font-weight: 500;
  color: #2f3d4e;
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .p-business-main-country__p {
    font-size: 1.8rem;
  }
}
.p-business-processing {
  background: #eae8e8;
}
.p-business-processing__layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .p-business-processing__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
    gap: 20px;
  }
}
.p-business-processing__txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-business-processing__p {
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .p-business-processing__p {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.p-business-processing__fig {
  width: 51.6129032258%;
}
@media screen and (max-width: 599px) {
  .p-business-processing__fig {
    width: 100%;
  }
}
.p-business-processing-products {
  background: #245a81;
  color: #fff;
  padding: 20px 42px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .p-business-processing-products {
    padding: 10px 20px;
  }
}
.p-business-processing-products__ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 3px solid #fff;
  padding-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .p-business-processing-products__ttl {
    font-size: 2rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-width: 2px;
  }
}
.p-business-processing-products__list {
  font-size: 2.2rem;
  font-weight: 500;
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .p-business-processing-products__list {
    font-size: 1.8rem;
    padding-left: 0;
  }
}
.p-business-processing-products__item {
  margin-bottom: 20px;
  text-indent: -1.2rem;
  padding-left: 1.2rem;
}
@media screen and (max-width: 599px) {
  .p-business-processing-products__item {
    margin-bottom: 10px;
    line-height: 1.5;
    text-indent: -2rem;
    padding-left: 2rem;
  }
}
.p-business-overseas__layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -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-business-overseas__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 20px;
    gap: 20px;
  }
}
.p-business-overseas__txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-business-overseas__p {
  font-size: 1.8rem;
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .p-business-overseas__p {
    font-size: 1.6rem;
  }
}
.p-business-overseas__fig {
  width: 51.6129032258%;
}
@media screen and (max-width: 599px) {
  .p-business-overseas__fig {
    width: 100%;
  }
}
.p-business-safety {
  background: #eae8e8;
  padding-bottom: 190px;
}
.p-business-safety__item {
  margin-bottom: 130px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 599px) {
  .p-business-safety__item {
    margin-bottom: 80px;
  }
}
.p-business-safety__item:last-child {
  margin-bottom: 0;
}
.p-business-safety__item:last-child::after {
  display: none;
}
.p-business-safety__item::after {
  width: 100px;
  height: 50px;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: -90px;
  background: url("/assets/imgs/business/grass/safety_arrow.svg") no-repeat center/contain;
}
@media screen and (max-width: 599px) {
  .p-business-safety__item::after {
    width: 50px;
    height: 25px;
    bottom: -55px;
  }
}
.p-business-safety__ttl {
  background: #245a81;
  color: #fff;
  padding: 15px;
  text-align: center;
  line-height: 1;
  font-weight: 800;
  font-size: 3.2rem;
}
@media screen and (max-width: 599px) {
  .p-business-safety__ttl {
    font-size: 2.2rem;
    padding: 10px;
  }
}
.p-business-safety__layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 599px) {
  .p-business-safety__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-business-safety__fig {
  width: 50%;
}
@media screen and (max-width: 599px) {
  .p-business-safety__fig {
    width: 100%;
  }
}
.p-business-safety__fig img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-business-safety__txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 50px;
}
@media screen and (max-width: 599px) {
  .p-business-safety__txt {
    padding: 15px;
  }
}
.p-business-safety__p {
  font-size: 1.8rem;
  margin-bottom: 0;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .p-business-safety__p {
    font-size: 1.4rem;
  }
}

.p-company-access {
  background: #f5f2f2;
}
.p-company-access__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding: 40px 0;
  border-bottom: 1px solid #245a81;
}
@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: 30px;
    padding: 20px 0;
  }
}
.p-company-access__item:last-child {
  margin-bottom: 0;
}
.p-company-access__txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-company-access__fig {
  position: relative;
  overflow: hidden;
  width: 100%;
  width: 54.3778801843%;
}
.p-company-access__fig:before {
  content: "";
  display: block;
  padding-top: 61.0169491525%;
}
.p-company-access__fig iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .p-company-access__fig {
    width: 100%;
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .p-company-access__fig:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .p-company-access__fig iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.p-company-access__ttl2 {
  font-weight: 700;
  font-size: 2.8rem;
  border-left: 8px solid #245a81;
  padding-left: 20px;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .p-company-access__ttl2 {
    font-size: 2.4rem;
  }
}
.p-company-access__address {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .p-company-access__address {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.p-company_greetings-greetings__p1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  color: #245a81;
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .p-company_greetings-greetings__p1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-align: left;
  }
}
.p-company_greetings-greetings__p2 {
  font-size: 1.8rem;
  max-width: 770px;
  margin: 0 auto 30px;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .p-company_greetings-greetings__p2 {
    font-size: 1.6rem;
  }
}
.p-company_greetings-greetings__p3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
  max-width: 770px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 599px) {
  .p-company_greetings-greetings__p3 {
    font-size: 1.4rem;
  }
}
.p-company_greetings-greetings__p3 span {
  font-size: 2.6rem;
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .p-company_greetings-greetings__p3 span {
    font-size: 2.2rem;
  }
}
.p-company_greetings-history__ttl {
  background: #245a81;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 30px 0;
  font-size: 3.5rem;
  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;
  line-height: 1;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .p-company_greetings-history__ttl {
    font-size: 2.8rem;
    padding: 20px 0;
  }
}
.p-company_greetings-history__ttl span {
  font-weight: 500;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
}
@media screen and (max-width: 599px) {
  .p-company_greetings-history__ttl span {
    font-size: 1.8rem;
  }
}
.p-company_greetings-history__timeline {
  padding: 70px 0 210px;
}
@media screen and (max-width: 599px) {
  .p-company_greetings-history__timeline {
    padding: 50px 0 100px;
  }
}
.p-company_greetings-history__timeline dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  font-size: 1.8rem;
  border-bottom: 1px solid #245a81;
}
.p-company_greetings-history__timeline dl:first-child {
  border-top: 1px solid #245a81;
}
@media screen and (max-width: 599px) {
  .p-company_greetings-history__timeline dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.p-company_greetings-history__timeline dt {
  width: 257px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .p-company_greetings-history__timeline dt {
    width: 100%;
  }
}
.p-company_greetings-history__timeline dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 599px) {
  .p-company_greetings-history__timeline dd {
    font-size: 1.5rem;
    line-height: 1.8;
    padding: 10px;
    border-left: 2px solid #245a81;
    margin-left: 5px;
  }
}

.p-recruit__ttl {
  color: #fff;
}
.p-recruit-message {
  padding-top: 60px;
  text-align: center;
}
.p-recruit-message__p1 {
  font-size: 3.5rem;
  color: #245a81;
}
@media screen and (max-width: 599px) {
  .p-recruit-message__p1 {
    font-size: 2.4rem;
    text-align: left;
  }
}
.p-recruit-message__p2 {
  display: inline-block;
  text-align: left;
  font-size: 2.4rem;
}
@media screen and (max-width: 599px) {
  .p-recruit-message__p2 {
    font-size: 1.6rem;
    text-align: left;
  }
}
.p-recruit-introduction__item {
  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;
  gap: 40px;
  margin-bottom: 55px;
}
@media screen and (max-width: 599px) {
  .p-recruit-introduction__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
    margin-bottom: 30px;
  }
}
.p-recruit-introduction__item:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 599px) {
  .p-recruit-introduction__item:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-recruit-introduction__item:nth-child(2) .p-recruit-introduction__txt {
  padding: 0 0 0 25px;
}
.p-recruit-introduction__item:nth-child(2) .p-recruit-introduction__ttl1 {
  margin-left: 0;
  margin-right: -72px;
  padding: 3px 0 2px 15px;
}
.p-recruit-introduction__item:nth-child(2) .p-recruit-introduction__ttl2 {
  margin-left: 15px;
}
.p-recruit-introduction__item:nth-child(2) .p-recruit-introduction__p {
  margin-left: 15px;
}
.p-recruit-introduction__item:last-child {
  margin-bottom: 0;
}
.p-recruit-introduction__fig {
  width: 50.9677419355%;
}
@media screen and (max-width: 599px) {
  .p-recruit-introduction__fig {
    width: 100%;
    margin-bottom: -35px;
  }
}
.p-recruit-introduction__txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 25px 0 0;
  z-index: 2;
}
.p-recruit-introduction__ttl1 {
  background: #0076ff;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 300;
  font-family: Helvetica, Arial, sans-serif;
  padding: 3px 0 2px 72px;
  margin-top: 15px;
  margin-bottom: 25px;
  margin-left: -72px;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .p-recruit-introduction__ttl1 {
    font-size: 2.98rem;
  }
}
.p-recruit-introduction__ttl2 {
  color: #245a81;
  font-size: 3.5rem;
  margin-bottom: 40px;
  margin-right: 15px;
}
@media screen and (max-width: 599px) {
  .p-recruit-introduction__ttl2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}
.p-recruit-introduction__ttl2 span {
  display: inline-block;
  font-size: 2rem;
  margin-left: 18px;
}
@media screen and (max-width: 599px) {
  .p-recruit-introduction__ttl2 span {
    font-size: 1.6rem;
  }
}
.p-recruit-introduction__p {
  font-size: 2rem;
  margin-right: 15px;
}
@media screen and (max-width: 599px) {
  .p-recruit-introduction__p {
    margin-right: 10px;
    font-size: 1.6rem;
  }
}
.p-recruit-description {
  background: #f5f2f2;
  padding-bottom: 193px;
}
@media screen and (max-width: 599px) {
  .p-recruit-description {
    padding-bottom: 100px;
  }
}
.p-recruit-description-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.p-recruit-description-tab__item {
  height: 44px;
  border-radius: 8px 8px 0px 0px;
  background: rgba(36, 90, 129, 0.5);
  border: 1px solid rgba(112, 112, 112, 0.5);
  border-bottom: none;
  color: #fff;
  padding: 12px 55px 2px;
  font-size: 2rem;
  font-weight: 600;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
  cursor: pointer;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .p-recruit-description-tab__item {
    padding: 5px 20px 5px;
    height: auto;
    font-size: 1.6rem;
    width: calc((100% - 4px) / 3);
    text-align: center;
  }
}
.p-recruit-description-tab__item:hover {
  background: rgba(36, 90, 129, 0.8);
  border: 1px solid rgba(112, 112, 112, 0.8);
}
.p-recruit-description-tab__item.current {
  background: #0076ff;
  pointer-events: none;
  border: 1px solid #707070;
}
.p-recruit-description__table-wrap {
  border: 1px solid #245a81;
  border-radius: 0px 8px 8px 8px;
  overflow: hidden;
  margin-bottom: 50px;
  background: #fff;
}
@media screen and (max-width: 599px) {
  .p-recruit-description__table-wrap {
    border-radius: 0px 0 8px 8px;
  }
}
.p-recruit-description__table {
  width: 100%;
  table-layout: fixed;
  display: none;
}
.p-recruit-description__table.current {
  display: table;
  position: static;
}
.p-recruit-description__table.current tbody {
  width: 1035px;
}
.p-recruit-description__table.current td {
  width: auto;
}
.p-recruit-description__table tr {
  border-bottom: 1px dashed #707070;
}
.p-recruit-description__table tr:last-child {
  border-bottom: none !important;
}
.p-recruit-description__table th,
.p-recruit-description__table td {
  padding: 20px 35px;
  line-height: 2.06;
}
@media screen and (max-width: 599px) {
  .p-recruit-description__table th,
  .p-recruit-description__table td {
    padding: 10px 20px;
    line-height: 1.6;
    display: block;
    font-size: 1.4rem;
  }
}
.p-recruit-description__table th {
  background: rgba(0, 118, 255, 0.2);
  color: #245a81;
  font-weight: 600;
  width: 200px;
}
.p-recruit-description__table td {
  background: #fff;
}
.p-recruit-description__table h5 {
  margin-top: 20px;
}
.p-recruit-description__table h5:first-child {
  margin-top: 0;
  font-weight: 800;
}
.p-recruit-description__table h5 + h6 {
  margin-top: 10px;
}
.p-recruit-description__table h6 {
  font-weight: 800;
  margin-top: 20px;
}
.p-recruit-description__table h6.kakko {
  text-indent: -0.5em;
}
.p-recruit-description__table ul.disc {
  list-style: disc;
  padding-left: 1em;
}
.p-recruit-description__table ol.arrow li:last-child::after {
  display: none;
}
.p-recruit-description__table ol.arrow li::after {
  content: "↓";
  display: block;
}
.p-recruit-description__table p:last-child {
  margin-bottom: 0;
}
.p-recruit-description__nav {
  text-align: center;
}
.p-recruit-description__btn {
  width: 73.732718894%;
  height: 100px;
  display: inline-block;
  background: #0076ff;
  color: #fff;
  border-radius: 10px;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 30px;
  text-decoration: none;
  -webkit-transition: transform 0.5s ease, box-shadow 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
}
@media screen and (max-width: 599px) {
  .p-recruit-description__btn {
    width: 100%;
    font-size: 2.8rem;
    padding: 20px;
    height: auto;
  }
}
.p-recruit-description__btn:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.p-recruit_entry__ttl {
  color: #fff;
}
.p-recruit_entry-form-flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  width: auto;
  margin: 0 0 50px;
  gap: 5px;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-flow {
    font-size: 1.2rem;
    gap: 2px;
  }
}
.p-recruit_entry-form-flow__item {
  padding: 8px 0;
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1;
  position: relative;
  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: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-flow__item {
    padding: 8px;
  }
}
.p-recruit_entry-form-flow__item span {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.p-recruit_entry-form-flow__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  -webkit-transform: skewX(-37deg);
          transform: skewX(-37deg);
  background: #245a81;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-flow__item::before {
    -webkit-transform: skewX(-20deg);
            transform: skewX(-20deg);
  }
}
.p-recruit_entry-form-flow__item.current {
  color: #fff;
}
.p-recruit_entry-form-flow__item.current::before {
  background: #245a81;
}
.p-recruit_entry-form-flow__item.current::after {
  background: #245a81;
}
.p-recruit_entry-form-flow__item--1 {
  color: rgba(34, 34, 34, 0.7);
  margin-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-flow__item--1 {
    margin-left: 10px;
  }
}
.p-recruit_entry-form-flow__item--1::before {
  background: #dcdcdc;
}
.p-recruit_entry-form-flow__item--1::after {
  height: 100%;
  width: 50px;
  content: "";
  display: block;
  background: #dcdcdc;
  position: absolute;
  top: 0;
  left: -20px;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-flow__item--1::after {
    width: 30px;
    left: -10px;
  }
}
.p-recruit_entry-form-flow__item--2 {
  color: rgba(34, 34, 34, 0.7);
}
.p-recruit_entry-form-flow__item--2::before {
  background: #aaa9a9;
}
.p-recruit_entry-form-flow__item--3 {
  color: rgba(34, 34, 34, 0.7);
  margin-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-flow__item--3 {
    margin-right: 10px;
  }
}
.p-recruit_entry-form-flow__item--3::before {
  background: #dcdcdc;
}
.p-recruit_entry-form-flow__item--3::after {
  height: 100%;
  width: 50px;
  content: "";
  display: block;
  background: #dcdcdc;
  position: absolute;
  top: 0;
  right: -20px;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-flow__item--3::after {
    right: -10px;
    width: 30px;
  }
}
.p-recruit_entry-form-lead {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-lead {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 30px;
  }
}
.p-recruit_entry-form-form label:hover {
  text-decoration: underline;
  cursor: pointer;
}
.p-recruit_entry-form-form dl {
  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: 77px;
  padding: 30px 0;
  border-bottom: 1px dashed rgba(112, 112, 112, 0.75);
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-form dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px 0;
    gap: 15px;
    font-size: 1.4rem;
  }
}
.p-recruit_entry-form-form dl:first-child {
  border-top: 1px dashed rgba(112, 112, 112, 0.75);
}
.p-recruit_entry-form-form dl.is-noborder {
  border-bottom: none;
  padding-bottom: 0;
}
.p-recruit_entry-form-form dt,
.p-recruit_entry-form-form dd {
  line-height: 1.5;
}
.p-recruit_entry-form-form dt {
  position: relative;
  width: 255px;
  padding-left: 25px;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-form dt {
    width: 100%;
    padding: 0 5px;
    font-weight: 700;
  }
}
.p-recruit_entry-form-form dt p {
  font-size: 1.4rem;
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-form dt p {
    font-size: 1.2rem;
  }
}
.p-recruit_entry-form-form dt p:last-child {
  margin-bottom: 0;
}
.p-recruit_entry-form-form dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-form dd {
    padding: 0 5px;
    width: 100%;
  }
}
.p-recruit_entry-form-form dd .address {
  max-width: none;
}
.p-recruit_entry-form-form dd .note {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-form dd .note {
    font-size: 1.1rem;
  }
}
.p-recruit_entry-form-form dd.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: 67px;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-form dd.layout {
    gap: 10px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.p-recruit_entry-form-form dd.layout div {
  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: 10px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-form dd.layout div {
    gap: 5px;
  }
}
.p-recruit_entry-form-form dd.layout div.ml {
  margin-left: -1.7em;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-form dd.layout div.ml {
    margin-left: 0;
  }
}
.p-recruit_entry-form-form dd.layout div span {
  font-weight: 400;
}
.p-recruit_entry-form-form dd.layout div input {
  max-width: 290px;
}
.p-recruit_entry-form-form dd.layout div .note {
  position: absolute;
  left: 0;
  bottom: -30px;
  font-size: 1.2rem;
}
.p-recruit_entry-form-form dd.layout--birth {
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-form dd.layout--birth {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-form dd.layout--birth div {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-recruit_entry-form-form dd.layout--birth input {
  width: 110px;
}
.p-recruit_entry-form-form dd.layout--birth select {
  min-width: 110px;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-form dd.layout--birth select {
    min-width: 0;
  }
}
.p-recruit_entry-form-form dd.layout--gender {
  gap: 30px;
}
.p-recruit_entry-form-form dd.layout--gender div {
  gap: 7px;
  position: static;
}
.p-recruit_entry-form-form .required {
  display: inline-block;
  background: #fd3506;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 4px;
  padding: 2px 7px;
  line-height: 1;
  font-weight: 300;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-form .required {
    right: 10px;
    font-size: 1.2rem;
  }
}
.p-recruit_entry-form-foot {
  padding: 30px;
  max-width: 670px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-foot {
    padding: 15px 0;
    max-width: none;
  }
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-foot__p1 {
    font-size: 1.4rem;
  }
}
.p-recruit_entry-form-foot__p2 {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-foot__p2 {
    font-size: 1.3rem;
  }
}
.p-recruit_entry-form-foot__p3 {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-foot__p3 {
    font-size: 1.3rem;
  }
}
.p-recruit_entry-form-foot__nav {
  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;
  gap: 30px;
}
.p-recruit_entry-form-foot__nav--confirm {
  padding-top: 50px;
}
.p-recruit_entry-form-terms {
  height: 220px;
  padding: 20px;
  overflow: auto;
  border: 1px solid #707070;
  border-radius: 4px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .p-recruit_entry-form-terms {
    padding: 15px;
  }
}
.p-recruit_entry-form-terms h3 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.4rem;
  text-indent: -0.5em;
}
.p-recruit_entry-form-terms h4 {
  margin-bottom: 10px;
  padding-left: 1.1em;
  text-indent: -1.1em;
  font-size: 1.4rem;
}
.p-recruit_entry-form-terms p {
  margin-bottom: 10px;
  font-size: 1.4rem;
  padding-left: 1em;
}
.p-recruit_entry-form-terms p:last-child {
  margin-bottom: 0;
}
.p-recruit_entry-form-terms ul {
  margin-bottom: 10px;
  padding-left: 0.5em;
}
.p-recruit_entry-form-terms li {
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.p-recruit_entry-thanks {
  text-align: center;
}
.p-recruit_entry-thanks__ttl {
  font-size: 2.8rem;
  margin-bottom: 50px;
}
.p-recruit_entry-thanks__p1 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.p-recruit_entry-thanks__p2 {
  font-size: 1.8rem;
  margin-bottom: 50px;
}

.p-privacy .c-inner {
  max-width: 976px;
  padding: 0 80px;
  margin: 0 auto;
}
.p-privacy__ttl {
  color: #fff;
}
.p-privacy-p1 {
  line-height: 2;
  margin-bottom: 50px;
}
.p-privacy-list {
  margin-bottom: 40px;
  line-height: 2;
}
.p-privacy-list__item {
  margin-bottom: 36px;
  text-indent: -32px;
  padding-left: 32px;
  font-weight: 400;
}
.p-privacy-list__item span {
  font-weight: 700;
  display: inline-block;
  width: 32px;
  text-indent: 0;
}
.p-privacy-ttl2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.p-privacy-foot dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 2;
}
.p-privacy-foot dt {
  width: 100px;
}

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