@charset "UTF-8";
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

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

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

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

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

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

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

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

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

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

blockquote, q {
  quotes: none;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

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

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

input, select {
  vertical-align: middle;
}

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

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

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

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

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

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

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

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

html {
  font-size: 62.5%;
  height: auto;
  overflow: visible;
}

body {
  font-family: "Roboto", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #060510;
  height: auto;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  body.is__fix {
    overflow: hidden;
    height: 100%;
    position: static;
  }
}

img {
  vertical-align: bottom;
}

.footer {
  padding-top: 130px;
  position: relative;
  border-top: 1px solid #e2e2e2;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 38px;
  }
}
.footer__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 1060px) {
  .footer__inner {
    display: block;
  }
}
.footer__inn2 {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 1060px) {
  .footer__inn2 {
    display: none;
  }
}
.footer__logo {
  width: 285px;
}
@media screen and (max-width: 1060px) {
  .footer__logo {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 200px;
  }
}
@media screen and (min-width: 1061px) {
  .footer__logoImg--sp {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  .footer__logoImg--pc {
    display: none;
  }
}
.footer__list:first-child {
  width: 200px;
  margin-right: 60px;
  border-right: 1px solid #dedede;
}
.footer__item:nth-child(n+2) {
  margin-top: 10px;
}
.footer__link {
  display: block;
  color: inherit;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 500;
}
a.footer__link:hover {
  text-decoration: underline;
}
.footer__link--sub {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2;
}
.footer__link--sub::before {
  content: " - ";
}
.footer__bt {
  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;
  border: 1px solid #e50012;
  color: #e50012;
  width: 245px;
  height: 58px;
  text-decoration: none;
  border-radius: 58px;
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 1060px) {
  .footer__bt {
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__bt {
    width: 190px;
    height: 44px;
    font-size: 1.4rem;
    margin: 25px auto 0;
  }
}
.footer__bt:hover {
  background-color: #e50012;
  color: #fff;
}
.footer__bt:hover:after {
  background: url(../images/common/arrow_right_white.png) no-repeat center center/cover;
}
.footer__bt:after {
  content: "";
  display: block;
  width: 4.3px;
  height: 8.7px;
  background: url(../images/common/arrow_right_red.png) no-repeat center center/cover;
  position: absolute;
  right: 15px;
  top: calc(50% - 4.3px);
}
@media screen and (max-width: 768px) {
  .footer__bt:after {
    width: 3.5px;
    height: 7px;
    top: calc(50% - 3.5px);
    right: 12px;
  }
}
.footer__copy {
  background-color: #e50012;
  padding: 35px 0;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    margin-top: 30px;
    padding: 20px 0;
  }
}
.footer__copyInner {
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__copyPrivacy {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}
@media screen and (max-width: 1060px) {
  .footer__copyPrivacy {
    display: none;
  }
}
.footer__copyPrivacy:hover {
  text-decoration: underline;
}
.footer__copyTxt {
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 1060px) {
  .footer__copyTxt {
    text-align: center;
    line-height: 1;
    display: block;
    width: 100%;
  }
}

.gnav {
  margin-left: auto;
}
@media screen and (max-width: 1170px) {
  .gnav {
    display: none;
  }
}
.gnav__list {
  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;
}
.gnav__item {
  margin-left: 20px;
  position: relative;
}
.gnav__item_type_sp {
  display: none;
}
@media screen and (max-width: 1170px) {
  .gnav__item_type_sp {
    display: block;
  }
}
.gnav__item_type_entry {
  width: 168px;
  height: 75px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -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;
  background: #ff6700;
  background: -webkit-gradient(linear, left top, right top, from(#ff6700), to(#e50012));
  background: linear-gradient(to right, #ff6700 0%, #e50012 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ff6700", endColorstr="#e50012",GradientType=1 );
  border-radius: 0 0 0 6px;
  margin-left: 40px;
}
.gnav__item_type_corp {
  display: none;
}
@media screen and (max-width: 1170px) {
  .gnav__item_type_corp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.gnav__itemImg {
  height: 15.84px;
}
.gnav__link {
  display: inline-block;
  padding: 8px 4px;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.gnav__link_type_entry {
  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;
}
@media screen and (min-width: 1171px) {
  .gnav__item:hover .gnav__link::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #e50012;
    border-radius: 2px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .gnav__mm {
    padding-top: 20px;
    width: 490px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .gnav__item:not(:hover) .gnav__mm {
    display: none;
  }
  .gnav__mmInn {
    padding: 32px 34px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  }
  .gnav__mmLink {
    width: calc(50% - 12px);
    color: inherit;
    text-decoration: none;
  }
  .gnav__mmFig {
    width: 100%;
    font-size: 0;
    margin-bottom: 15px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
  }
  .gnav__mmImg {
    width: 100%;
    height: auto;
  }
  .gnav__mmTtl {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    background: url(../images/common/ic_arw02.svg) no-repeat right center/11px;
  }
  .gnav__mmLink:hover .gnav__mmFig::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #e50012;
    opacity: .5;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  .gnav__mmLink:hover .gnav__mmTtl {
    background-image: url(../images/common/ic_arw02_red.svg);
  }
}

.hum {
  display: none;
}
@media screen and (max-width: 1170px) {
  .hum {
    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-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 75px;
    height: 75px;
    background: #060510;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .hum {
    height: 44px;
    width: 44px;
  }
}
.hum__bars {
  width: 22px;
  height: 18px;
  position: relative;
  margin: 0 auto 3px auto;
}
@media screen and (max-width: 768px) {
  .hum__bars {
    width: 14px;
    height: 12px;
  }
}
.hum__bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 1px;
  position: absolute;
  left: 0;
}
.hum__bar:nth-of-type(1) {
  top: 0;
}
.hum__bar:nth-of-type(2) {
  top: calc(50% - 0.5px);
}
.hum__bar:nth-of-type(3) {
  top: 100%;
}
.hum__txt {
  font-size: 1rem;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  color: #fff;
}

.header {
  padding: 0 0 0 40px;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 5;
}
@media screen and (max-width: 1260px) {
  .header {
    padding-left: 25px;
  }
}
@media screen and (max-width: 1060px) {
  .header {
    padding: 0;
  }
}
.header__inner {
  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;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1170px) {
  .header__inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__logo {
  width: 290px;
  -webkit-flex-basis: 290px;
      -ms-flex-preferred-size: 290px;
          flex-basis: 290px;
  padding-top: 10px;
  position: relative;
  z-index: 2;
}
.header__logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    width: 185px;
    -webkit-flex-basis: 185px;
        -ms-flex-preferred-size: 185px;
            flex-basis: 185px;
  }
}
@media screen and (max-width: 1170px) {
  .header__logo {
    width: 165px;
    -webkit-flex-basis: 165px;
        -ms-flex-preferred-size: 165px;
            flex-basis: 165px;
    padding: 14px 0 0 0;
  }
}
@media screen and (max-width: 1060px) {
  .header__logo {
    width: 185px;
    -webkit-flex-basis: 185px;
        -ms-flex-preferred-size: 185px;
            flex-basis: 185px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 100px;
    -webkit-flex-basis: 100px;
        -ms-flex-preferred-size: 100px;
            flex-basis: 100px;
    padding-left: 10px;
    padding-top: 9px;
  }
}
.header__logoLink {
  display: block;
}
.header__logoImg {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1171px) {
  .header__logoImg--sp {
    display: none;
  }
}
@media screen and (max-width: 1170px) {
  .header__logoImg--pc {
    display: none;
  }
}
.header__brochure {
  width: 104px;
  height: 75px;
  display: block;
  padding: 0;
  background: #4d4d4d url(../images/common/ic_book.svg) no-repeat top 17px center/32px;
  border-radius: 0 0 0 6px;
  margin-left: 40px;
  position: relative;
  z-index: 2;
  padding-top: 47px;
  text-align: center;
  text-decoration: none;
}
.header__brochure span {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.header__brochure:hover {
  opacity: .7;
}
@media screen and (max-width: 1170px) {
  .header__brochure {
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .header__brochure {
    height: 44px;
    width: 44px;
    padding-top: 29px;
    background: #4d4d4d url(../images/common/ic_book.svg) no-repeat top 10px center/20px;
    border-radius: 0 0 0 4px;
  }
  .header__brochure span {
    width: 200%;
    margin-left: -22px;
    transform-origin: top center;
    transform: scale(.5);
  }
}

.header__entry {
  width: 168px;
  height: 75px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -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;
  background: #ff6700;
  background: -webkit-gradient(linear, left top, right top, from(#ff6700), to(#e50012));
  background: linear-gradient(to right, #ff6700 0%, #e50012 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ff6700", endColorstr="#e50012",GradientType=1 );
  position: relative;
  z-index: 2;
}
.header__entry:hover {
  background: #e50012;
}
@media screen and (max-width: 1170px) {
  .header__entry {
    margin-right: 75px;
  }
}
@media screen and (max-width: 768px) {
  .header__entry {
    height: 44px;
    width: 82px;
    margin-right: 44px;
  }
}
.header__entryImg {
  height: 15.84px;
}
@media screen and (max-width: 768px) {
  .header__entryImg {
    height: 11px;
  }
}
.header.isScrolled {
  background-color: rgba(255, 255, 255, 0.9);
}
.header.isScrolled .header__logo {
  padding-top: 0;
}
@media screen and (max-width: 1170px) {
  .header.jsActive .gnav {
    background: #fff;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    padding-top: 140px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 40px;
    height: 100vh;
    padding-bottom: 120px;
    overflow: scroll;
  }
}
@media screen and (max-width: 1170px) and (max-width: 768px) {
  .header.jsActive .gnav {
    padding-left: 34px;
    padding-right: 34px;
    padding-top: 65px;
  }
}
@media screen and (max-width: 1170px) {
  .header.jsActive .gnav__list {
    display: block;
  }
}
@media screen and (max-width: 1170px) {
  .header.jsActive .gnav__item {
    margin-left: 0;
    width: 100%;
    border-bottom: 1px solid #000;
  }
  .header.jsActive .gnav__item:last-of-type {
    border-bottom: none;
  }
}
@media screen and (max-width: 1170px) {
  .header.jsActive .gnav__link {
    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;
    line-height: 1;
    padding: 25px 0;
    width: 100%;
    font-size: 1.9rem;
    color: #222222;
    position: relative;
  }
  .header.jsActive .gnav__link:after {
    content: "";
    display: block;
    width: 4px;
    height: 8px;
    background: url(../images/common/arrow_right_black.svg) no-repeat center center/contain;
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 4px);
  }
  .header.jsActive .gnav__link_type_corp {
    width: 230px;
    height: 44px;
    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;
    border: 1px solid #e50012;
    color: #e50012;
    border-radius: 44px;
    font-size: 1.7rem;
    margin: 30px auto 0 auto;
  }
  .header.jsActive .gnav__link_type_corp:after {
    content: "";
    display: block;
    width: 3.6px;
    height: 7px;
    background: url(../images/common/arrow_right_red.png) no-repeat center center/contain;
    display: block;
    position: absolute;
    right: 12px;
    top: calc(50% - 3.5px);
  }

  .header.jsActive .gnav__mm {
    padding-left: 25px;
    border-top: 1px solid #000;
  }
  .header.jsActive .gnav__mmInn {
  }
  .header.jsActive .gnav__mmLink {
    display: flex;
    align-items: center;
    line-height: 1;
    padding: 25px 0;
    width: 100%;
    font-size: 1.9rem;
    font-weight: bold;
    color: #222222;
    text-decoration: none;
    position: relative;
    background: url(../images/common/arrow_right_black.svg) no-repeat right center/4px;
  }
  .header.jsActive .gnav__mmLink:nth-child(n+2) {
    border-top: 1px solid #000;
  }
  .header.jsActive .gnav__mmFig {
    display: none;
  }
  .header.jsActive .gnav__mmTtl {
    font-size: 1.9rem;
    font-weight: bold;
    color: #222222;
    line-height: 1;
  }
}
.header.jsActive .hum__bar:nth-of-type(1) {
  top: calc(50% + 2px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header.jsActive .hum__bar:nth-of-type(2) {
  display: none;
}
.header.jsActive .hum__bar:nth-of-type(3) {
  top: calc(50% + 2px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.main {
  display: block;
}

.breadcrumb {
  margin-top: 25px;
}
@media screen and (max-width: 1060px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb__list {
  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;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .breadcrumb__list {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0 15px;
  }
}
.breadcrumb__item:after {
  content: ">";
  padding: 0 1em;
  color: #9ca0a0;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item:after {
    padding: 0 0.5em;
  }
}
.breadcrumb__item:last-of-type:after {
  display: none;
}
.breadcrumb a {
  text-decoration: underline;
}
.breadcrumb a:hover {
  text-decoration: none;
}
.breadcrumb__link {
  color: #9ca0a0;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .breadcrumb__link {
    font-size: 1rem;
  }
}

.roundBt {
  font-size: 1.7rem;
  width: 392px;
  border: 2px solid #fff;
  height: 79px;
  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;
  border-radius: 79px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .roundBt {
    width: 100%;
    border-width: 1px;
    height: 40px;
    font-size: 1.2rem;
    max-width: 200px;
  }
}
.roundBt:hover {
  background-color: #fff;
  color: #282828;
}
.roundBt:hover:after {
  background: url(../images/parts/arrow_right_black.svg) no-repeat center center/cover;
}
.roundBt:after {
  content: "";
  width: 7px;
  height: 12px;
  background: url(../images/parts/arrow_right_white.svg) no-repeat center center/cover;
  display: block;
  position: absolute;
  right: 25px;
  top: calc(50% - 6px);
}
@media screen and (max-width: 768px) {
  .roundBt:after {
    width: 4px;
    height: 7.5px;
    right: 15px;
    top: calc(50% - 3.75px);
  }
}
.roundBt_type_black {
  border-color: #282828;
  color: #282828;
  background-color: #fff;
}
.roundBt_type_black:hover {
  background-color: #232323;
  color: #fff;
}
.roundBt_type_black:hover:after {
  background: url(../images/parts/arrow_right_white.svg) no-repeat center center/cover;
}
.roundBt_type_black:after {
  background: url(../images/parts/arrow_right_black.svg) no-repeat center center/cover;
}

.arrowLink {
  color: #282828;
  font-size: 1.4rem;
  position: relative;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 80px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .arrowLink {
    font-size: 1.2rem;
    width: 50px;
  }
}
.arrowLink:before {
  background-color: #282828;
  bottom: -4px;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .arrowLink:before {
    height: 1px;
  }
}
.arrowLink:after {
  border-right: 2px solid #282828;
  border-top: 2px solid #282828;
  bottom: 0;
  content: "";
  display: block;
  height: 8px;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 8px;
}
@media screen and (max-width: 768px) {
  .arrowLink:after {
    width: 5px;
    height: 5px;
    border-top: 1px solid #282828;
    border-right: 1px solid #282828;
  }
}
.arrowLink:hover {
  opacity: 0.8;
}
.arrowLink:hover:before {
  opacity: 0.8;
}
.arrowLink:hover:after {
  opacity: 0.8;
  -webkit-transform: rotate(45deg) translate(2px, -2px);
          transform: rotate(45deg) translate(2px, -2px);
}

.sqBt {
  width: 234px;
  height: 63px;
  background-color: #060510;
  color: #fff;
  border-radius: 6px;
  border: 1px solid #060510;
  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;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sqBt {
    width: 158px;
    height: 45px;
    font-size: 1.6rem;
    border-radius: 4px;
  }
}
.sqBt:hover {
  background-color: #fff;
  color: #060510;
}
.sqBt:hover:after {
  background: url(../images/common/arrow_right_black.png) no-repeat center center/cover;
}
.sqBt:after {
  content: "";
  display: block;
  width: 4.3px;
  height: 8.7px;
  background: url(../images/common/arrow_right_white.png) no-repeat center center/cover;
  position: absolute;
  right: 20px;
  top: calc(50% - 4.3px);
}
@media screen and (max-width: 768px) {
  .sqBt:after {
    background-size: 4.2px 8.5px;
    right: 10px;
  }
}

.container {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.pcnon {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcnon {
    display: block;
  }
}

.spnon {
  display: block;
}
@media screen and (max-width: 768px) {
  .spnon {
    display: none;
  }
}

.lowPage {
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .lowPage {
    padding-top: 90px;
  }
}
.lowPage__header {
  padding-bottom: 90px;
  border-bottom: 1px solid #e2e2e2;
}
@media screen and (max-width: 768px) {
  .lowPage__header {
    padding-bottom: 30px;
  }
}
.lowPage__ttl {
  text-align: center;
}
.lowPage__ttlJp {
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1;
  display: block;
  font-family: "yu-mincho-pr6n", sans-serif;
  margin-bottom: 25px;
  letter-spacing: 0.03em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .lowPage__ttlJp {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
}
.lowPage__ttlEn {
  font-size: 1.6rem;
  font-weight: bold;
  color: #e50012;
  line-height: 1;
  display: block;
  font-family: "yu-mincho-pr6n", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .lowPage__ttlEn {
    font-size: 1.3rem;
  }
}

.col2Ttl {
  font-family: "Kiwi Maru", serif;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
.col2Ttl__jp {
  display: block;
  font-size: 5.2rem;
  line-height: 1.2;
  margin-bottom: 6px;
  font-weight: bold;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
@media screen and (max-width: 768px) {
  .col2Ttl__jp {
    font-size: 2.6rem;
    line-height: 1.34;
    margin-bottom: 4px;
  }
}
.col2Ttl__en {
  display: block;
  font-weight: bold;
  padding-left: 11px;
  letter-spacing: 0.1em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
@media screen and (max-width: 768px) {
  .col2Ttl__en {
    letter-spacing: 0;
    font-size: 1.1rem;
    padding-left: 4px;
  }
}

.department {
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .department {
    padding-bottom: 60px;
  }
}
.department__inner {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .department__inner {
    margin-top: 30px;
  }
}
.department__item {
  margin-bottom: 95px;
}
@media screen and (max-width: 768px) {
  .department__item {
    margin-bottom: 45px;
  }
}
.department__item:last-of-type {
  margin-bottom: 0;
}

.departmentDetails__fig {
  margin-left: calc(-50vw + 550px);
}
@media screen and (max-width: 1170px) {
  .departmentDetails__fig {
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media screen and (max-width: 768px) {
  .departmentDetails__fig {
    height: 40vw;
    margin-bottom: 30px;
  }
}
.departmentDetails__img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .departmentDetails__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.departmentDetails__ttl {
  background-color: #fff;
  position: relative;
  z-index: 2;
  margin-top: -145px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 0;
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .departmentDetails__ttl {
    padding: 0;
    margin-bottom: 20px;
  }
}
.departmentDetails__ttl:after {
  content: "";
  display: block;
  width: calc(50vw - 270px);
  position: absolute;
  left: calc(-50vw + 550px);
  top: 0;
  height: 100%;
  background-color: #fff;
}
@media screen and (max-width: 1170px) {
  .departmentDetails__ttl:after {
    left: -30px;
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .departmentDetails__ttl:after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .departmentDetails__ttl {
    position: static;
    margin-top: 0;
    text-align: center;
    width: 100%;
  }
}
.departmentDetails__ttlJp {
  font-size: 3.6rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif !important;
  line-height: 1;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .departmentDetails__ttlJp {
    font-size: 2.2rem;
  }
}
.departmentDetails__ttlEn {
  font-size: 1.4rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif !important;
  letter-spacing: 0.1em;
  line-height: 1;
  display: block;
  color: #e50012;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .departmentDetails__ttlEn {
    font-size: 1.3rem;
  }
}
.departmentDetails__desc {
  line-height: 1.875;
  margin-bottom: 1.5em;
}
.departmentDetails__dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .departmentDetails__dl {
    display: block;
    margin-bottom: 1.5em;
  }
  .departmentDetails__dl:last-of-type {
    margin-bottom: 0;
  }
}
.departmentDetails__dt {
  font-weight: bold;
  line-height: 1.875;
  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;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.departmentDetails__dt:after {
  content: "：";
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .departmentDetails__dt:after {
    display: none;
  }
}
.departmentDetails__dd {
  line-height: 1.875;
}

.details {
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .details {
    padding-bottom: 60px;
  }
}
.details__inner {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .details__inner {
    padding-top: 30px;
  }
}
.details__intro {
  margin-bottom: 90px;
  text-align: center;
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  .details__intro {
    margin-bottom: 40px;
    text-align: left;
  }
}
.details__introSm {
  font-size: 1.4rem;
}
.details__list {
  position: relative;
  border-top: 1px solid #e2e2e2;
}
.details__list:before {
  content: "";
  width: 300px;
  height: 1px;
  background-color: #e50012;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1060px) {
  .details__list:before {
    width: 150px;
  }
}
.details__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;
  border-bottom: 1px solid #e2e2e2;
  padding: 30px 0;
  position: relative;
}
.details__dl:before {
  content: "";
  width: 300px;
  height: 1px;
  background-color: #e50012;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1060px) {
  .details__dl:before {
    width: 150px;
  }
}
@media screen and (max-width: 1060px) {
  .details__dl {
    display: block;
    padding: 20px 0;
  }
}
.details__dt {
  font-size: 2rem;
  width: 300px;
  -webkit-flex-basis: 300px;
      -ms-flex-preferred-size: 300px;
          flex-basis: 300px;
  font-weight: bold;
  position: relative;
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 30px;
}
@media screen and (max-width: 1060px) {
  .details__dt {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  .details__dt br {
    display: none;
  }
}
.details__dd {
  width: calc(100% - 300px);
  -webkit-flex-basis: calc(100% - 300px);
      -ms-flex-preferred-size: calc(100% - 300px);
          flex-basis: calc(100% - 300px);
  padding-left: 30px;
  line-height: 1.875;
}
@media screen and (max-width: 1060px) {
  .details__dd {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding-left: 0;
  }
}
.details__ddSm {
  font-size: 1.4rem;
}

.details__tabWrap {
  width: 100%; }
  .details__tabList {
    width: 100%;
    border-bottom: 2px solid #e50012;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .details__tabBtn {
    width: calc(33.33% - 30px);
    max-width: 320px;
    height: 55px;
    margin: 0 15px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #999;
    text-align: center;
    border-radius: 6px 6px 0 0;
    background-color: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .details__tabBtn.active {
    color: #fff;
    background-color: #e50012;
  }
  .details__tabContent {
    display: none;
  }
  .details__tabContent.active {
    display: block;
  }
  .details__tabContent .details__list {
    border: none;
  }
  .details__tabContent .details__list::before {
    content: none;
  }
  .details__tabTxt {
    margin-top: 90px;
    text-align: center;
    line-height: 1.65;
  }
@media screen and (max-width: 768px) {
  .details__tabBtn {
    width: calc(33.33% - 14px);
    max-width: 160px;
    margin: 0 7px;
    padding: 0 3px;
    border-radius: 6px 6px 0 0;
  }
  .details__tabWrap {
    margin-bottom: 40px;
    text-align: left;
  }
  .details__tabTxt {
    margin-top: 40px;
    text-align: left;
  }
}

.entry {
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .entry {
    padding-bottom: 60px;
  }
}
.entry__inner {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .entry__inner {
    padding-top: 30px;
  }
}
.entry__intro {
  margin-bottom: 90px;
  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;
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  .entry__intro {
    margin-bottom: 40px;
  }
}
.entry__form {
  position: relative;
  border-top: 1px solid #e2e2e2;
}
.entry__form:before {
  content: "";
  width: 300px;
  height: 1px;
  background-color: #e50012;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1060px) {
  .entry__form:before {
    width: 150px;
  }
}
.entry__form_type_confirm .entry__dt_type_req:after {
  display: none;
}
.entry__form_type_confirm .entry__dd {
  padding-left: 40px;
}
@media screen and (max-width: 1060px) {
  .entry__form_type_confirm .entry__dd {
    padding-left: 0;
  }
}
.entry__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;
  border-bottom: 1px solid #e2e2e2;
  padding: 30px 0;
  position: relative;
}
.entry__dl:before {
  content: "";
  width: 300px;
  height: 1px;
  background-color: #e50012;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1060px) {
  .entry__dl:before {
    width: 150px;
  }
}
@media screen and (max-width: 1060px) {
  .entry__dl {
    display: block;
    padding: 20px 0;
  }
}
.entry__dt {
  font-size: 2rem;
  width: 300px;
  -webkit-flex-basis: 300px;
      -ms-flex-preferred-size: 300px;
          flex-basis: 300px;
  font-weight: bold;
  position: relative;
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 30px;
}
@media screen and (max-width: 1060px) {
  .entry__dt {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin-bottom: 15px;
    font-size: 1.8rem;
    padding-right: 0;
    width: 100%;
  }
  .entry__dt br {
    display: none;
  }
}
.entry__dt_type_req:after {
  content: "必須";
  min-width: 50px;
  height: 28px;
  background-color: #e50012;
  color: #fff;
  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;
  border-radius: 4px;
  font-weight: 300;
  font-size: 1.4rem;
}
@media screen and (max-width: 1060px) {
  .entry__dt_type_req:after {
    min-width: 42px;
    -webkit-flex-basis: 24px;
        -ms-flex-preferred-size: 24px;
            flex-basis: 24px;
    font-size: 1.2rem;
    margin-left: 20px;
  }
}
.entry__dd {
  width: calc(100% - 300px);
  -webkit-flex-basis: calc(100% - 300px);
      -ms-flex-preferred-size: calc(100% - 300px);
          flex-basis: calc(100% - 300px);
}
@media screen and (max-width: 1060px) {
  .entry__dd {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.entry__lab {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
}
.entry__lab:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 8px 0 8px;
  border-color: #231815 transparent transparent transparent;
  display: block;
  position: absolute;
  right: 25px;
  top: calc(50% - 7px);
}
@media screen and (max-width: 768px) {
  .entry__lab:after {
    border-width: 10px 6px 0 6px;
    right: 15px;
    top: calc(50% - 5px);
  }
}
.entry__lab_type_sm {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.entry__lab_type_sm:after {
  border-width: 10px 6px 0 6px;
  right: 15px;
  top: calc(50% - 5px);
}
@media screen and (max-width: 768px) {
  .entry__lab_type_sm:after {
    right: 10px;
    border-width: 8px 5px 0 5px;
    top: calc(50% - 4px);
  }
}
.entry__select {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 6px;
  display: block;
  width: 100%;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #060510;
}
@media screen and (max-width: 1060px) {
  .entry__select {
    padding: 20px 15px;
    font-size: 1.4rem;
  }
}
.entry__select_type_year {
  width: 127px;
}
@media screen and (max-width: 1060px) {
  .entry__select_type_year {
    width: 90px;
  }
}
.entry__select_type_month, .entry__select_type_day {
  width: 102px;
}
@media screen and (max-width: 1060px) {
  .entry__select_type_month, .entry__select_type_day {
    width: 70px;
  }
}
.entry__input {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 6px;
  display: block;
  width: 100%;
  border: none;
}
@media screen and (max-width: 1060px) {
  .entry__input {
    padding: 20px 15px;
    font-size: 1.4rem;
  }
}
.entry__input::-webkit-input-placeholder {
  color: #9fa0a0;
}
.entry__input::-moz-placeholder {
  color: #9fa0a0;
}
.entry__input:-ms-input-placeholder {
  color: #9fa0a0;
}
.entry__input::-ms-input-placeholder {
  color: #9fa0a0;
}
.entry__input::placeholder {
  color: #9fa0a0;
}
.entry__birth {
  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;
}
.entry__birthBlock {
  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;
  padding-left: 20px;
}
.entry__birthBlock:first-of-type {
  padding-left: 0;
}
@media screen and (max-width: 1060px) {
  .entry__birthBlock {
    padding-left: 10px;
  }
}
.entry__unit {
  display: block;
  padding-left: 10px;
}
@media screen and (max-width: 1060px) {
  .entry__unit {
    padding-left: 5px;
    font-size: 1.4rem;
  }
}
.entry__privacy {
  text-align: center;
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .entry__privacy {
    line-height: 1.65;
    font-size: 1.4rem;
    margin-top: 30px;
  }
}
.entry__privacyLink {
  color: inherit;
}
.entry__privacyLink:hover {
  text-decoration: none;
}
.entry__bts {
  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;
  margin-top: 45px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .entry__bts {
    margin-top: 30px;
    gap: 15px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.entry__btn {
  width: 300px;
  height: 58px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -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;
  background: #ff6700;
  background: -webkit-gradient(linear, left top, right top, from(#ff6700), to(#e50012));
  background: linear-gradient(to right, #ff6700 0%, #e50012 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ff6700", endColorstr="#e50012",GradientType=1 );
  border-radius: 0 0 0 6px;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border: none;
  border-radius: 58px;
  position: relative;
}
.entry__btn:after {
  content: "";
  display: block;
  width: 4.3px;
  height: 8.7px;
  background: url(../images/common/arrow_right_white.png) no-repeat center center/cover;
  position: absolute;
  right: 30px;
  top: calc(50% - 4.3px);
}
@media screen and (max-width: 768px) {
  .entry__btn:after {
    width: 3.5px;
    height: 7px;
    top: calc(50% - 3.5px);
    right: 12px;
  }
}
.entry__btn:hover {
  background: #e50012;
}
@media screen and (max-width: 1060px) {
  .entry__btn {
    width: 150px;
    height: 44px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1060px) and (max-width: 768px) {
  .entry__btn {
    width: 230px;
  }
}
.entry__btn_type_submit {
  width: 400px;
}
@media screen and (max-width: 1060px) {
  .entry__btn_type_submit {
    width: 230px;
    height: 44px;
    font-size: 1.4rem;
  }
}
.entry__btn_type_back {
  border: 1px solid #e50012;
  background: transparent;
  color: #e50012;
}
@media screen and (max-width: 768px) {
  .entry__btn_type_back {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.entry__btn_type_back:after {
  background: url(../images/common/arrow_right_red.png) no-repeat center center/cover;
}
.entry__btn_type_back:hover {
  background-color: #e50012;
  color: #fff;
}
.entry__btn_type_back:hover:after {
  background: url(../images/common/arrow_right_white.png) no-repeat center center/cover;
}
.entry__thanks {
  font-size: 3.6rem;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
  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;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .entry__thanks {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.entry__desc {
  line-height: 1.875;
  margin-bottom: 60px;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 1060px) {
  .entry__desc {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .entry__desc {
    line-height: 1.65;
    margin-bottom: 30px;
  }
}
.entry__topBt {
  width: 400px;
  height: 58px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -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;
  background: #ff6700;
  background: -webkit-gradient(linear, left top, right top, from(#ff6700), to(#e50012));
  background: linear-gradient(to right, #ff6700 0%, #e50012 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ff6700", endColorstr="#e50012",GradientType=1 );
  border-radius: 0 0 0 6px;
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 58px;
  position: relative;
  text-decoration: none;
  margin: 0 auto 0 auto;
}
.entry__topBt:after {
  content: "";
  display: block;
  width: 4.3px;
  height: 8.7px;
  background: url(../images/common/arrow_right_white.png) no-repeat center center/cover;
  position: absolute;
  right: 30px;
  top: calc(50% - 4.3px);
}
@media screen and (max-width: 768px) {
  .entry__topBt:after {
    width: 3.5px;
    height: 7px;
    top: calc(50% - 3.5px);
    right: 12px;
  }
}
.entry__topBt:hover {
  background: #e50012;
}
@media screen and (max-width: 1060px) {
  .entry__topBt {
    width: 230px;
    height: 44px;
    font-size: 1.4rem;
  }
}

.form-err {
  margin-top: .5em;
  color: #f00;
}

.faq {
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .faq {
    padding-bottom: 60px;
  }
}
.faq__inner {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .faq__inner {
    padding-top: 30px;
  }
}
.localNav {
  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;
}
@media screen and (max-width: 768px) {
  .localNav {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
  }
}
.localNav__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .localNav__item {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    font-size: 1.4rem;
  }
}
.localNav__item:after {
  content: "｜";
  padding: 0 1em;
}
@media screen and (max-width: 768px) {
  .localNav__item:after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .localNav__item:nth-of-type(even):after {
    display: none;
  }
}
.localNav__item:last-of-type:after {
  display: none;
}
.localNav__link {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .localNav__link {
    display: block;
    width: 100%;
    padding: 10px;
    text-decoration: underline;
  }
  .localNav__link:hover {
    text-decoration: none;
  }
}
.localNav__link:hover {
  text-decoration: underline;
}

.faqItem {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .faqItem {
    margin-top: 45px;
  }
}
.faqItem__ttl {
  font-size: 3.6rem;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 20px;
  border-bottom: 1px solid #e50012;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .faqItem__ttl {
    font-size: 2.2rem;
  }
}
.faqItem__dl {
  border-bottom: 1px solid #e2e2e2;
}
.faqItem__dt {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 500;
  padding: 25px 0;
  cursor: pointer;
}
.faqItem__dt:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .faqItem__dt {
    font-size: 1.6rem;
  }
}
.faqItem__dt.jsActive .faqItem__arrow:after {
  display: none;
}
.faqItem__arrow {
  min-width: 24px;
  min-height: 24px;
  border: 1px solid #060510;
  border-radius: 24px;
  position: relative;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .faqItem__arrow {
    min-width: 20px;
    min-height: 20px;
  }
}
.faqItem__arrow:before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #060510;
  position: absolute;
  left: calc(50% - 6px);
  top: calc(50% - 0.5px);
}
@media screen and (max-width: 768px) {
  .faqItem__arrow:before {
    width: 10px;
    left: calc(50% - 5px);
  }
}
.faqItem__arrow:after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #060510;
  position: absolute;
  left: calc(50% - 0.5px);
  top: calc(50% - 6px);
}
@media screen and (max-width: 768px) {
  .faqItem__arrow:after {
    height: 10px;
    left: calc(50% - 0.5px);
  }
}
.faqItem__dd {
  display: block;
  padding: 35px 50px;
  background-color: #f9f9f9;
  border-radius: 6px;
  line-height: 1.875;
  display: none;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .faqItem__dd {
    padding: 20px 30px;
    margin-top: 20px;
  }
}

.top {
  margin-bottom: 130px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top {
    margin-bottom: 60px;
  }
}

.topMv {
  position: relative;
}
.topMv__list {
  z-index: 2;
  position: relative;
}
.topMv__item {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topMv .slick-slide:nth-of-type(1) .topMv__bgImg {
    -o-object-position: 55% center;
       object-position: 55% center;
  }
  .topMv .slick-slide:nth-of-type(2) .topMv__bgImg {
    -o-object-position: 53% center;
       object-position: 53% center;
  }
  .topMv .slick-slide:nth-of-type(3) .topMv__bgImg {
    -o-object-position: 55% center;
       object-position: 55% center;
  }
  .topMv .slick-slide:nth-of-type(4) .topMv__bgImg {
    -o-object-position: 55% center;
       object-position: 55% center;
  }
}
.topMv__catch {
  font-size: 5.2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "ten-mincho", serif;
  font-weight: 300;
  font-style: normal;
  position: absolute;
  right: 7.57vw;
  z-index: 2;
  padding-top: 125px;
  line-height: 1.75;
}
@media screen and (max-width: 1060px) {
  .topMv__catch {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 768px) {
  .topMv__catch {
    font-size: 3.2rem;
    position: absolute;
    right: 4px;
    top: 4vh;
    line-height: 1.6;
    padding-top: 50px;
  }
}
.topMv .slick-list {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .topMv .slick-list {
    padding-bottom: 17px;
  }
}
.topMv__bg {
  width: 86vw;
  -webkit-flex-basis: 86vw;
      -ms-flex-preferred-size: 86vw;
          flex-basis: 86vw;
  min-height: 811px;
  height: 57.9vw;
}
@media screen and (max-width: 768px) {
  .topMv__bg {
    height: 540px;
    min-height: auto;
    width: 80vw;
  }
}
.topMv__bgItem {
  width: 100%;
  height: 100%;
}
.topMv__bgImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 768px) {
  .topMv__bgImg {
    -o-object-position: 53% center;
       object-position: 53% center;
  }
}
.topMv__object {
  width: 30vw;
  min-width: 425px;
  position: absolute;
  right: 0;
  bottom: -50px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .topMv__object {
    width: 200px;
    min-width: auto;
    bottom: -16px;
  }
}

.topAbout {
  padding-top: 150px;
  padding-bottom: 665px;
  background: url(../images/bg_section_01.png) no-repeat bottom center/cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topAbout {
    padding-top: 48px;
    padding-bottom: 270px;
    background-size: contain;
  }
}
.topAbout__ttl {
  text-align: center;
}
.topAbout__ttlJp {
  font-size: 3.6rem;
  display: block;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .topAbout__ttlJp {
    font-size: 2.5rem;
    font-weight: bold;
  }
}
.topAbout__ttlEn {
  display: block;
  font-size: 1.4rem;
  color: #e50012;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .topAbout__ttlEn {
    font-size: 1.3rem;
  }
}
.topAbout__intro {
  text-align: center;
  font-size: 1.9rem;
  line-height: 2.36;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .topAbout__intro {
    margin-top: 15px;
    font-size: 1.6rem;
    line-height: 1.75;
    text-align: left;
  }
  .topAbout__intro br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .topAbout__bg_type_pc {
    display: none;
  }
}
.topAbout__bg_type_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .topAbout__bg_type_sp {
    display: block;
  }
  .topAbout__bg_type_sp .topAbout__bgItem_no_01 {
    width: 108px;
    left: -5.3vw;
    bottom: 82px;
  }
  .topAbout__bg_type_sp .topAbout__bgItem_no_02 {
    width: 42px;
    left: 24.2vw;
    bottom: 135px;
  }
  .topAbout__bg_type_sp .topAbout__bgItem_no_03 {
    width: 58px;
    left: 35.2vw;
    bottom: 25px;
  }
  .topAbout__bg_type_sp .topAbout__bgItem_no_04 {
    width: 107px;
    left: -5.3vw;
    bottom: 40px;
  }
  .topAbout__bg_type_sp .topAbout__bgItem_no_05 {
    width: 101px;
    right: 9.3vw;
    bottom: 15px;
    left: auto;
  }
  .topAbout__bg_type_sp .topAbout__bgItem_no_06 {
    width: 69px;
    right: -5.3vw;
    bottom: 120px;
    left: auto;
  }
  .topAbout__bg_type_sp .topAbout__bgItem_no_07 {
    width: 87px;
    right: 24vw;
    bottom: 125px;
    left: auto;
  }
}
.topAbout__bgItem {
  position: absolute;
}
.topAbout__bgItem:nth-of-type(odd) {
  -webkit-animation: horizontal1 1s ease-in-out infinite alternate;
          animation: horizontal1 1s ease-in-out infinite alternate;
}
.topAbout__bgItem:nth-of-type(even) {
  -webkit-animation: horizontal2 1s ease-in-out infinite alternate;
          animation: horizontal2 1s ease-in-out infinite alternate;
}
.topAbout__bgItem_no_01 {
  width: 202px;
  left: calc(50% - 600px);
  bottom: 898px;
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
}
.topAbout__bgImg {
  -webkit-animation: vertical 1s ease-in-out infinite alternate;
          animation: vertical 1s ease-in-out infinite alternate;
}
.topAbout__bgItem_no_02 {
  width: 77px;
  left: calc(50% - 620px);
  bottom: 556px;
}
.topAbout__bgItem_no_02 img {
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
}
.topAbout__bgItem_no_03 {
  width: 156px;
  left: calc(50% - 400px);
  bottom: 384px;
}
.topAbout__bgItem_no_03 img {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.topAbout__bgItem_no_04 {
  width: 92px;
  left: calc(50% - 115px);
  bottom: 330px;
}
.topAbout__bgItem_no_04 img {
  -webkit-animation-duration: 1.7s;
          animation-duration: 1.7s;
}
.topAbout__bgItem_no_05 {
  width: 150px;
  right: calc(50% - 270px);
  bottom: 367px;
}
.topAbout__bgItem_no_05 img {
  -webkit-animation-duration: 1.7s;
          animation-duration: 1.7s;
}
.topAbout__bgItem_no_06 {
  width: 158px;
  right: calc(50% - 560px);
  bottom: 480px;
}
.topAbout__bgItem_no_06 img {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
.topAbout__bgItem_no_07 {
  width: 76px;
  right: calc(50% - 540px);
  bottom: 830px;
}
.topAbout__bgItem_no_07 img {
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
}
.topAbout__bgItem_no_08 {
  width: 155px;
  right: calc(50% - 556px);
  bottom: 475px;
}
.topAbout__bgItem_no_08 img {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
@-webkit-keyframes horizontal1 {
  0% {
    -webkit-transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0px);
  }
}
@-webkit-keyframes horizontal2 {
  0% {
    -webkit-transform: translateX(3px);
  }
  100% {
    -webkit-transform: translateX(0px);
  }
}
@-webkit-keyframes vertical {
  0% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
  }
}

.topInterview {
  background: url(../images/bg_section_02.png) no-repeat center center/cover;
  position: relative;
  z-index: 1;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .topInterview {
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center 150px;
  }
}
.topInterview__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: -135px;
  padding-left: calc(50% - 550px);
  margin-bottom: -135px;
}
@media screen and (max-width: 1170px) {
  .topInterview__inner {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .topInterview__inner {
    display: block;
    top: 0;
    margin-bottom: 0;
    padding-right: 30px;
  }
}
.topInterview__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 80px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .topInterview__ttl {
    padding-right: 0;
    display: block;
    width: 100%;
  }
}
.topInterview__ttlJp {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 3.6rem;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  line-height: 1;
  padding-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .topInterview__ttlJp {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 2.5rem;
    text-align: center;
    display: block;
    font-weight: 600;
  }
}
.topInterview__ttlEn {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  color: #e50012;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .topInterview__ttlEn {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 1.3rem;
    text-align: center;
    display: block;
    margin-top: 15px;
  }
}
.topInterview__bt {
  margin: 90px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .topInterview__bt {
    margin-top: 30px;
  }
}

.interviewList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -32px -17px;
}
@media screen and (max-width: 768px) {
  .interviewList {
    margin: 0;
  }
}
.interviewList__item {
  width: 50%;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  padding: 32px 17px;
}
@media screen and (max-width: 768px) {
  .interviewList__item {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding: 0;
    margin-bottom: 25px;
  }
  .interviewList__item:last-of-type {
    margin-bottom: 0;
  }
}
.interviewList__inner {
  color: inherit;
  text-decoration: none;
  position: relative;
  display: block;
}
.interviewList__inner:hover .interviewList__img {
  opacity: 0.7;
}
@media screen and (max-width: 1060px) {
  .interviewList__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.interviewList__text {
  width: 72%;
  background-color: #fff;
  padding: 25px 20px 20px 25px;
  border-radius: 6px;
  position: absolute;
  left: -15px;
  bottom: -25px;
  z-index: 1;
}
@media screen and (max-width: 1060px) {
  .interviewList__text {
    position: static;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    border-radius: 0 0 6px 6px;
    padding: 17px 20px;
  }
}
.interviewList__ttl {
  font-size: 1.9rem;
  line-height: 1.57;
  color: inherit;
  text-decoration: none;
  font-family: "yu-mincho-pr6n", sans-serif;
  border-left: 2px solid #e50012;
  padding-left: 10px;
  font-weight: bold;
}
@media screen and (max-width: 1060px) {
  .interviewList__ttl {
    font-size: 1.9rem;
    line-height: 1.31;
  }
}
.interviewList__name {
  color: inherit;
  text-decoration: none;
  margin-top: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 1060px) {
  .interviewList__name {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.interviewList__fig {
  border-radius: 6px;
  background-color: #fff;
}
@media screen and (max-width: 1060px) {
  .interviewList__fig {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: -45px;
  }
}
.interviewList__img {
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .interviewList__img {
    border-radius: 0;
  }
}

.topMessage {
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .topMessage {
    margin-bottom: 50px;
  }
}
.topMessage__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #e50012;
  position: relative;
  height: 40vw;
}
@media screen and (max-width: 768px) {
  .topMessage__inner {
    display: block;
    padding: 50px 30px;
    height: auto;
  }
}
.topMessage__texts {
  width: 50%;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: calc(50% - 550px);
}
@media screen and (max-width: 1170px) {
  .topMessage__texts {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .topMessage__texts {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.topMessage__ttl {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .topMessage__ttl {
    margin-bottom: 20px;
  }
}
.topMessage__ttlJp {
  font-size: 3.6rem;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  color: #fff;
  font-weight: bold;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .topMessage__ttlJp {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 2.5rem;
    text-align: center;
    display: block;
  }
}
.topMessage__ttlEn {
  font-size: 1.4rem;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  color: #fff;
  font-weight: bold;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .topMessage__ttlEn {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 1.3rem;
    text-align: center;
    display: block;
  }
}
.topMessage__intro {
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .topMessage__intro {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.56;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .topMessage__bt {
    margin: 30px auto 0 auto;
  }
}
.topMessage__fig {
  width: 50vw;
  -webkit-flex-basis: 50vw;
      -ms-flex-preferred-size: 50vw;
          flex-basis: 50vw;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .topMessage__fig {
    width: calc(100% + 30px);
    -webkit-flex-basis: calc(100% + 30px);
        -ms-flex-preferred-size: calc(100% + 30px);
            flex-basis: calc(100% + 30px);
    position: static;
    margin-right: -30px;
  }
}
.topMessage__img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .topMessage__img {
    border-radius: 9px 0 0 9px;
  }
}

@media screen and (min-width: 769px) {
  .topMessage__fig {
    height: 100%;
  }
  .topMessage__img {
    height: 100%;
    object-fit: cover;
  }
}

.topOthers__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -5px -38px;
}
@media screen and (max-width: 1060px) {
  .topOthers__list {
    margin: -5px -20px;
  }
}
@media screen and (max-width: 768px) {
  .topOthers__list {
    margin: 0;
  }
}
.topOthers__item {
  width: 50%;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  padding: 5px 38px;
}
@media screen and (max-width: 1060px) {
  .topOthers__item {
    padding: 5px 20px;
  }
}
@media screen and (max-width: 768px) {
  .topOthers__item {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding: 0;
    margin-bottom: 45px;
  }
  .topOthers__item:last-of-type {
    margin-bottom: 0;
  }
}
.topOthers__item:nth-of-type(even) {
  margin-top: 85px;
}
@media screen and (max-width: 1060px) {
  .topOthers__item:nth-of-type(even) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1060px) and (max-width: 768px) {
  .topOthers__item:nth-of-type(even) {
    margin-top: inherit;
  }
}
.topOthers__ttl {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .topOthers__ttl {
    margin-bottom: 7px;
  }
}
.topOthers__ttlJp {
  font-size: 3.6rem;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .topOthers__ttlJp {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 2.5rem;
    display: block;
  }
}
.topOthers__ttlEn {
  font-size: 1.4rem;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #e50012;
}
@media screen and (max-width: 768px) {
  .topOthers__ttlEn {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 1.3rem;
    display: block;
  }
}
.topOthers__detailsInner {
  text-decoration: none;
  color: inherit;
  position: relative;
  display: block;
}
.topOthers__detailsInner:hover .topOthers__detailsImg {
  opacity: 0.7;
}
.topOthers__detailsInner:hover .topOthers__detailsBt {
  background-color: #fff;
  color: #060510;
  border: none;
}
.topOthers__detailsInner:hover .topOthers__detailsBt:after {
  background: url(../images/common/arrow_right_black.png) no-repeat center center/cover;
}
.topOthers__detailsDesc {
  line-height: 1.875;
  position: absolute;
  top: 0;
  left: 0;
  width: 64%;
  background-color: #fff;
  padding: 5px 20px 20px 0;
  border-radius: 0 0 6px 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .topOthers__detailsDesc {
    width: 79%;
    font-size: 1.6rem;
    line-height: 1.56;
    padding: 10px 15px 15px 0;
  }
}
.topOthers__detailsImg {
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .topOthers__detailsImg {
    width: 100%;
    height: 64vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.topOthers__detailsBt {
  width: 234px;
  height: 63px;
  background-color: #060510;
  color: #fff;
  border-radius: 6px 0;
  border: 1px solid #060510;
  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;
  text-decoration: none;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .topOthers__detailsBt {
    width: 92px;
    height: 29px;
    font-size: 1.1rem;
    border-radius: 4px 0;
  }
}
.topOthers__detailsBt:after {
  content: "";
  display: block;
  width: 4.3px;
  height: 8.7px;
  background: url(../images/common/arrow_right_white.png) no-repeat center center/cover;
  position: absolute;
  right: 20px;
  top: calc(50% - 4.3px);
}
@media screen and (max-width: 768px) {
  .topOthers__detailsBt:after {
    width: 2.2px;
    height: 4.4px;
    right: 8px;
    top: calc(50% - 2.2px);
  }
}

.topDownload {
  padding-top: 150px;
  padding-bottom: 20px;
}
.topDownload__ttl {
  margin-bottom: 55px;
}
.topDownload__ttlJp {
  font-size: 3.6rem;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  text-align: center;
}
.topDownload__ttlEn {
  font-size: 1.4rem;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #e50012;
  text-align: center;
}
.topDownload__itms {
  width: 100%;
  max-width: 630px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.topDownload__itm {
  width: calc(50% - 30px);
  max-width: 254px;
}
.topDownload__itmLink {
  color: inherit;
  text-decoration: none;
}
.topDownload__itmLink:hover {
  text-decoration: underline;
}
.topDownload__itmFig {
  width: 100%;
  font-size: 0;
  margin-bottom: 15px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, .2);
}
.topDownload__itmImg {
  width: 100%;
  height: auto;
}
.topDownload__itmTtl {
  font-size: 1.4rem;
}
.topDownload__itmTtl--pdf::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 2px;
  background: url(../images/icon_pdf.png) no-repeat center/contain;
  transform: translateY(3px);
}
@media screen and (max-width: 768px) {
  .topDownload {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .topDownload__ttl {
    margin-bottom: 20px;
  }
  .topDownload__ttlJp {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .topDownload__ttlEn {
    font-size: 1.3rem;
  }
  .topDownload__itms {
    max-width: 320px;
  }
  .topDownload__itm {
    width: calc(50% - 10px);
    max-width: 150px;
  }
  .topDownload__itmFig {
    margin-bottom: 10px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, .2);
  }
  .topDownload__itmTtl {
    font-size: 1.4rem;
  }
  .topDownload__itmTtl--pdf::after {
    width: 17px;
    height: 17px;
    margin-left: 2px;
    transform: translateY(4px);
  }
}

.interview {
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .interview {
    padding-bottom: 60px;
  }
}
.interview__inner {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .interview__inner {
    padding-top: 30px;
  }
}
.interview__intro {
  margin-bottom: 90px;
  text-align: center;
  line-height: 1.65;
}
@media screen and (max-width: 1060px) {
  .interview__intro {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .interview__intro {
    margin-bottom: 40px;
    text-align: left;
  }
}
.interview__introSm {
  font-size: 1.4rem;
}
.interviewItem {
  margin-bottom: 90px;
}
@media screen and (max-width: 1060px) {
  .interviewItem {
    margin-bottom: 60px;
  }
}
.interviewItem__inner {
  color: inherit;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
  display: block;
}
.interviewItem__inner:hover {
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
  color: #e50012;
}
.interviewItem__inner:hover .interviewItem__name {
  border-color: #e50012;
  -webkit-transition: border-color 0.5s 0s ease;
  transition: border-color 0.5s 0s ease;
}
.interviewItem__inner:hover .interviewItem__num {
  color: #e50012;
  -webkit-transition: color 0.5s 0s ease;
  transition: color 0.5s 0s ease;
}
.interviewItem__inner:hover .interviewItem__img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  -webkit-transition: -webkit-transform 0.5s 0s ease;
  transition: -webkit-transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease, -webkit-transform 0.5s 0s ease;
}
.interviewItem__images {
  position: relative;
  width: 803px;
  -webkit-flex-basis: 803px;
      -ms-flex-preferred-size: 803px;
          flex-basis: 803px;
}
@media screen and (max-width: 1060px) {
  .interviewItem__images {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin-bottom: 25px;
  }
}
.interviewItem__num {
  font-size: 14.4rem;
  color: #dcdce0;
  font-style: italic;
  font-family: "ten-mincho", serif;
  line-height: 1;
  position: absolute;
  top: -0.4em;
  left: 0;
  display: inline-block;
  -webkit-transition: color 0.5s 0s ease;
  transition: color 0.5s 0s ease;
  z-index: 2;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1060px) {
  .interviewItem__num {
    font-size: 6.4rem;
    left: -20px;
  }
}
.interviewItem__imgBlock {
  overflow: hidden;
}
.interviewItem__img {
  -webkit-transition: -webkit-transform 0.5s 0s ease;
  transition: -webkit-transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease, -webkit-transform 0.5s 0s ease;
}
.interviewItem__texts {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  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: 1060px) {
  .interviewItem__texts {
    position: static;
    display: block;
  }
}
.interviewItem__ttl {
  font-size: 3.6rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  line-height: 1.66;
}
@media screen and (max-width: 1060px) {
  .interviewItem__ttl {
    font-size: 2rem;
  }
  .interviewItem__ttl br {
    display: none;
  }
}
.interviewItem__name {
  font-size: 1.5rem;
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
  -webkit-transition: border-color 0.5s 0s ease;
  transition: border-color 0.5s 0s ease;
}
@media screen and (max-width: 1060px) {
  .interviewItem__name {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.interviewItem:nth-of-type(odd) .interviewItem__texts {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  padding-left: 40px;
}
@media screen and (max-width: 1060px) {
  .interviewItem:nth-of-type(odd) .interviewItem__texts {
    padding-left: 0;
  }
}
.interviewItem:nth-of-type(odd) .interviewItem__images {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  margin-left: auto;
}
.interviewItem:nth-of-type(odd) .interviewItem__num {
  right: 0;
  left: auto;
}
@media screen and (max-width: 1060px) {
  .interviewItem:nth-of-type(odd) .interviewItem__num {
    left: -20px;
    right: auto;
  }
}
.interviewItem:nth-of-type(odd) .interviewItem__imgBlock {
  margin-right: 40px;
}
@media screen and (max-width: 1060px) {
  .interviewItem:nth-of-type(odd) .interviewItem__imgBlock {
    margin-right: 0;
  }
}
.interviewItem:nth-of-type(even) .interviewItem__texts {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1060px) {
  .interviewItem:nth-of-type(even) .interviewItem__num {
    right: -20px;
    left: auto;
  }
}
.interviewItem:nth-of-type(even) .interviewItem__images {
  margin-right: auto;
}
.interviewItem:nth-of-type(even) .interviewItem__imgBlock {
  margin-left: 40px;
}
@media screen and (max-width: 1060px) {
  .interviewItem:nth-of-type(even) .interviewItem__imgBlock {
    margin-left: 0;
  }
}
.interviewItem:last-of-type {
  margin-bottom: 0;
}

.single {
  padding-top: 0;
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .single {
    padding-bottom: 60px;
  }
}
.single__header {
  position: relative;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 1060px) {
  .single__header {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .single__header {
    margin-bottom: 0;
  }
}
.single__fig {
  height: 786px;
}
@media screen and (max-width: 1060px) {
  .single__fig {
    height: auto;
  }
}
.single__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single__headerTxt {
  position: absolute;
  left: 90px;
  bottom: -90px;
}
@media screen and (max-width: 1060px) {
  .single__headerTxt {
    position: static;
    padding: 0 30px;
    margin-top: 60px;
  }
  .single__headerTxt br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .single__headerTxt {
    margin-top: 30px;
  }
}
.single__ttl {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.7;
  font-family: "yu-mincho-pr6n", sans-serif;
}
@media screen and (max-width: 768px) {
  .single__ttl {
    font-size: 2.2rem;
  }
}
.single__name {
  font-size: 1.6rem;
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
}
@media screen and (max-width: 1060px) {
  .single__name {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.single__nums {
  position: absolute;
  right: 0;
  bottom: 1em;
  padding-right: 30px;
}
@media screen and (max-width: 1060px) {
  .single__nums {
    position: static;
    margin-top: -200px;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .single__nums {
    margin-top: -92px;
    padding-right: 20px;
  }
}
.single__numsDt {
  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;
  font-size: 1.3rem;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .single__numsDt {
    font-size: 1rem;
  }
}
.single__numsDt:after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #fff;
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .single__numsDt:after {
    width: 26px;
  }
}
.single__numsDd {
  font-size: 14.4rem;
  font-style: italic;
  font-family: "ten-mincho", serif;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .single__numsDd {
    font-size: 6.4rem;
  }
}
.singleBody {
  padding-top: 130px;
}
@media screen and (max-width: 1060px) {
  .singleBody {
    padding-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .singleBody {
    padding-top: 30px;
  }
}
.singleBody__section {
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .singleBody__section {
    margin-bottom: 45px;
  }
}
.singleBody__section:nth-of-type(1) .singleBody__txt {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  padding-right: 80px;
}
@media screen and (max-width: 1060px) {
  .singleBody__section:nth-of-type(1) .singleBody__txt {
    padding-right: 0;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.singleBody__section:nth-of-type(1) .singleBody__fig {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 1060px) {
  .singleBody__section:nth-of-type(1) .singleBody__fig {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.singleBody__section:nth-of-type(2) .singleBody__txt {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  padding-left: 80px;
}
@media screen and (max-width: 1060px) {
  .singleBody__section:nth-of-type(2) .singleBody__txt {
    padding-left: 0;
  }
}
.singleBody__section:nth-of-type(2) .singleBody__fig {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.singleBody__section_type_bg:after {
  content: "";
  display: block;
  width: 100vw;
  height: 510px;
  background-color: #f4f4f4;
  position: absolute;
  left: calc(-50vw + 550px);
  top: 150px;
  z-index: -1;
}
@media screen and (max-width: 1170px) {
  .singleBody__section_type_bg:after {
    left: -30px;
  }
}
@media screen and (max-width: 768px) {
  .singleBody__section_type_bg:after {
    top: 27vw;
    height: calc(100% - 27vw + 40px);
  }
}
.singleBody__col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .singleBody__col {
    margin-bottom: 45px;
  }
}
.singleBody__col_type_txt {
  margin-left: -25px;
  margin-right: -25px;
}
@media screen and (max-width: 1060px) {
  .singleBody__col_type_txt {
    margin-left: 0;
    margin-right: 0;
  }
}
.singleBody__section_type_row {
  width: 50%;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 1060px) {
  .singleBody__section_type_row {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .singleBody__section_type_row:first-of-type {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1060px) and (max-width: 768px) {
  .singleBody__section_type_row:first-of-type {
    margin-bottom: 45px;
  }
}
.singleBody__fig {
  width: 500px;
  -webkit-flex-basis: 500px;
      -ms-flex-preferred-size: 500px;
          flex-basis: 500px;
}
@media screen and (max-width: 1060px) {
  .singleBody__fig {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin-bottom: 30px;
  }
}
.singleBody__img {
  border-radius: 6px;
}
.singleBody__txt {
  width: calc(100% - 500px);
  -webkit-flex-basis: calc(100% - 500px);
      -ms-flex-preferred-size: calc(100% - 500px);
          flex-basis: calc(100% - 500px);
}
@media screen and (max-width: 1060px) {
  .singleBody__txt {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.singleBody__num {
  font-size: 1.4rem;
  color: #e50012;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  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;
  margin-bottom: 15px;
}
.singleBody__num:after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #e50012;
  margin-left: 8px;
}
.singleBody__ttl {
  font-size: 2.9rem;
  line-height: 1.71;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 25px;
}
@media screen and (max-width: 1060px) {
  .singleBody__ttl {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .singleBody__ttl {
    font-size: 2.2rem;
  }
}
.singleBody__desc {
  padding-left: 25px;
}
@media screen and (max-width: 1060px) {
  .singleBody__desc {
    padding-left: 0;
  }
}
.singleBody__descPara {
  line-height: 1.875;
  margin-bottom: 1.5em;
}
.singleBody__descPara:last-of-type {
  margin-bottom: 0;
}
.singleBody__txt_w_full {
  width: 100%;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
}

.schedule {
  background-color: #f4f4f4;
  margin-top: 130px;
  padding-bottom: 110px;
  margin-bottom: 95px;
}
@media screen and (max-width: 1060px) {
  .schedule {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .schedule {
    margin-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
.schedule__ttl {
  text-align: center;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif !important;
  font-weight: bold;
  position: relative;
  top: -1.5em;
  margin-bottom: calc(40px - 1.5em);
}
@media screen and (max-width: 768px) {
  .schedule__ttl {
    top: -0.75em;
  }
}
.schedule__ttlEn {
  font-size: 5rem;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .schedule__ttlEn {
    font-size: 2.5rem;
  }
}
.schedule__ttlEnRed {
  color: #e50012;
}
.schedule__ttlJp {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .schedule__ttlJp {
    font-size: 1.3rem;
    margin-top: 10px;
  }
}
.schedule__inner {
  background-color: #fff;
  padding: 75px 98px 60px 98px;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .schedule__inner {
    padding: 35px 20px;
  }
}
.schedule__list {
  position: relative;
}
.schedule__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;
  flex-wrap: wrap;
  line-height: 1.65;
  padding: .86em 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .schedule__dl {
    line-height: 1.65;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 15px;
    padding: 0;
  }
  .schedule__dl:last-of-type {
    margin-bottom: 0;
  }
}
.schedule__dl:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #e50012;
  position: absolute;
  left: 121px;
  top: 0;
  z-index: 0;
}
.schedule__dl:first-child:after {
  height: 50%;
  top: 50%;
}
.schedule__dl:last-child:after {
  height: 50%;
}
@media screen and (max-width: 768px) {
  .schedule__dl:after {
    display: none;
  }
}
.schedule__dt {
  width: 172px;
  font-size: 1.8rem;
  font-weight: bold;
  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;
}
@media screen and (max-width: 768px) {
  .schedule__dt {
    font-size: 1.8rem;
    width: 100%;
    margin-bottom: 5px;
  }
}
.schedule__dtTxt {
  display: block;
  min-width: 4em;
  text-align: right;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .schedule__dtTxt {
    text-align: left;
    min-width: 3em;
  }
}
.schedule__dtIcon {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .schedule__dtIcon {
    margin: 0 0;
  }
}
.schedule__dd {
  width: calc(100% - 172px);
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .schedule__dd {
    width: 100%;
    font-size: 1.6rem;
  }
}
.schedule__desc {
  font-size: 1.5rem;
  line-height: 2;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .schedule__desc {
    padding-top: 25px;
    border-top: 1px solid #eee;
  }
}

.otherPosts {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .otherPosts {
    margin-top: 75px;
  }
}
.otherPosts__ttl {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  font-family: "yu-mincho-pr6n", sans-serif;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .otherPosts__ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.otherPosts__ttlRed {
  color: #e50012;
  font-weight: bold;
}
.otherPosts__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -28px;
  margin-right: -28px;
}
@media screen and (max-width: 1060px) {
  .otherPosts__list {
    margin-left: 0;
    margin-right: 0;
  }
}
.otherPosts__item {
  width: 33.333%;
  -webkit-flex-basis: 33.333%;
      -ms-flex-preferred-size: 33.333%;
          flex-basis: 33.333%;
  padding: 0 28px;
}
@media screen and (max-width: 1060px) {
  .otherPosts__item {
    padding: 0;
    margin-bottom: 30px;
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
  .otherPosts__item:last-of-type {
    margin-bottom: 0;
  }
}
.otherPosts__link {
  color: inherit;
  text-decoration: none;
  display: block;
  -webkit-transition: color 0.5s 0s ease;
  transition: color 0.5s 0s ease;
}
.otherPosts__link:hover {
  color: #e50012;
  -webkit-transition: color 0.5s 0s ease;
  transition: color 0.5s 0s ease;
}
.otherPosts__link:hover .otherPosts__img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}
.otherPosts__fig {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.otherPosts__img {
  border-radius: 6px;
  -webkit-transition: -webkit-transform 0.5s 0s ease;
  transition: -webkit-transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease, -webkit-transform 0.5s 0s ease;
}
@media screen and (max-width: 1060px) {
  .otherPosts__img {
    width: 100%;
  }
}
.otherPosts__head {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .otherPosts__head {
    margin-top: 15px;
  }
}

.message {
  overflow: hidden;
  width: 100%;
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .message {
    padding-bottom: 60px;
  }
}
.message__inner {
  position: relative;
  margin-top: 130px;
  height: calc(81vw - 60px);
  max-height: 1340px;
}
.message__inner.message__inner--nofig {
  height: auto;
  max-height: none;
}
@media screen and (max-width: 1130px) {
  .message__inner {
    height: auto;
    max-height: none;
  }
}
@media screen and (max-width: 768px) {
  .message__inner {
    margin-top: 30px;
  }
}
.message__catch {
  line-height: 1.66;
  position: relative;
  width: 560px;
  z-index: 2;
  padding: 30px 0;
  margin-bottom: 70px;
}
@media screen and (max-width: 1130px) {
  .message__catch {
    width: 60%;
    position: absolute;
    top: calc(137vw - 360px);
    padding: 20px 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .message__catch {
    top: calc(137vw - 260px);
  }
  .message__catch.message__catch--nofig {
    width: calc(60% + 36px);
    top: 0;
    position: relative;
  }
  .message__catch.message__catch--nofig + .message__desc {
    margin-top: 20px;
  }
}
.message__catchTxt {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 3.5rem;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .message__catchTxt {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }
}
.message__catch:before {
  content: "";
  width: calc(50vw - 500px + 100% + 40px);
  left: calc(-50vw + 500px);
  height: 100%;
  display: block;
  background-color: #e50013;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1130px) {
  .message__catch:before {
    width: calc(100% + 60px);
    left: -30px;
  }
}
.message__fig {
  width: 59vw;
  position: absolute;
  top: -60px;
  right: calc(-50vw + 550px);
  max-height: 1400px;
}
@media screen and (max-width: 1130px) {
  .message__fig {
    position: static;
    top: 0;
    right: 0;
    height: auto;
    width: auto;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .message__fig {
    margin-bottom: 20px;
  }
}
.message__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  max-height: 1400px;
}
.message__fig + .message__desc {
  width: 550px;
}
.message__desc {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1130px) {
  .message__desc {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .message__desc {
    font-size: 1.6rem;
    line-height: 1.56;
  }
}
.message__descPara {
  line-height: 1.875;
  margin-bottom: 1.5em;
}
.message__descPara:last-of-type {
  margin-bottom: 0;
}

.system {
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .system {
    padding-bottom: 60px;
  }
}
.system__inner {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .system__inner {
    padding-top: 30px;
  }
}
.system__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -15px;
}
@media screen and (max-width: 768px) {
  .system__list {
    margin: 0;
  }
}
.system__item {
  width: 33.333%;
  -webkit-flex-basis: 33.333%;
      -ms-flex-preferred-size: 33.333%;
          flex-basis: 33.333%;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .system__item {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .system__item:last-of-type {
    margin-bottom: 0;
  }
}
.system__item:nth-of-type(-n + 6) .systemDetails__fig {
  height: 117px;
  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;
}
@media screen and (max-width: 768px) {
  .system__item:nth-of-type(-n + 6) .systemDetails__fig {
    height: auto;
  }
}
.system__item .systemDetails__ttl {
  height: calc(2em + 25px);
}
@media screen and (max-width: 768px) {
  .system__item .systemDetails__ttl {
    height: auto;
  }
}
.system__item:nth-of-type(n + 7) .systemDetails__fig {
  height: 114px;
  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;
}
@media screen and (max-width: 768px) {
  .system__item:nth-of-type(n + 7) .systemDetails__fig {
    height: auto;
  }
}

.systemDetails__inner {
  background-color: #f4f4f4;
  height: 100%;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .systemDetails__inner {
    padding: 20px;
  }
}
.systemDetails__ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .systemDetails__ttl {
    margin-bottom: 1.8rem;
    margin-bottom: 20px;
  }
}
.systemDetails__img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.systemDetails__img_num_01 {
  width: 43%;
}
.systemDetails__desc {
  margin-top: 25px;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .systemDetails__desc {
    margin: 25px 0 0 0;
    line-height: 1.56;
  }
}
.systemDetails__img_num_02 {
  width: 43%;
}
.systemDetails__img_num_03 {
  width: 28%;
}
.systemDetails__img_num_04 {
  width: 26.3%;
}
.systemDetails__img_num_05 {
  width: 28.5%;
}
.systemDetails__img_num_06 {
  width: 34.3%;
}
.systemDetails__img_num_07 {
  width: 55.7%;
}
.systemDetails__img_num_08 {
  width: 33.5%;
}
