@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700,900&display=swap");
@-webkit-keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadein-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadein-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* Eric Meyer’s "Reset CSS" 2.0 // */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* // Eric Meyer’s "Reset CSS" 2.0 */
* {
  background: none;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  outline: 0;
  padding: 0;
  text-decoration: none;
}

html {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  width: 100%;
}
html body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #4d4d4d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  text-align: center;
  width: 100%;
}
html body._open {
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  html body {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  html body {
    font-size: 12px;
  }
}

a {
  -webkit-transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  color: #4d4d4d;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

#_entry a,
#_entry a:hover,
#_entry a:active {
  text-decoration: none !important;
}

._pc {
  display: block !important;
}

._sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  ._pc {
    display: none !important;
  }
  ._sp {
    display: block !important;
  }
}
._inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 30px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  ._inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  ._inner {
    width: 100%;
  }
}

._title {
  color: #fff;
  font-size: 50px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  ._title {
    font-size: 24px;
  }
}

.section {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------------------
header
--------------------------------------------------------------------------*/
.header {
  /*@include fadein_header;
  animation-delay: .6s;*/
  background: rgba(0, 0, 0, 0.8);
  /*opacity: 0;*/
  padding: 15px 0 0;
  position: fixed;
  /*top: -100px;*/
  top: 0;
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 15px 0 0;
  }
}
.header ._in {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__logo img {
  height: auto;
  width: 160px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    margin-bottom: 10px;
  }
  .header__logo img {
    height: auto;
    width: 95px;
  }
}
.header__nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
}
.header__nav__area {
  margin-left: auto;
}
.header__nav ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.header__nav ul li {
  padding: 12px 20px 8px;
}
.header__nav ul li._on, .header__nav ul li:hover {
  background: rgba(52, 52, 52, 0.98);
}
.header__nav ul li._on a, .header__nav ul li:hover a {
  color: #e74000;
}
.header__nav ul li a, .header__nav ul li p {
  color: #fff;
  font-size: 21px;
}
.header__nav ul li a:hover, .header__nav ul li p:hover {
  color: #e74000;
}
.header__nav ul li.nav_social {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__nav ul li {
    padding: 16px 13px 12px;
  }
  .header__nav ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: block;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header__nav__area {
    display: none;
    overflow-y: auto;
    position: relative;
    height: 100%;
    margin-top: 53px;
  }
  .header__nav ul {
    -webkit-transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: block;
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    opacity: 0;
    overflow-y: auto;
    position: absolute;
    top: -100%;
    left: 0;
    visibility: hidden;
    width: 100%;
  }
  .header__nav ul li {
    background: rgba(52, 52, 52, 0.98);
    border-top: solid 1px #fff;
    height: auto;
    padding: 0;
    position: relative;
    width: 100%;
  }
  .header__nav ul li span {
    background-color: #fff;
    display: inline-block;
    height: 1px;
    position: absolute;
    top: 27px;
    width: 12px;
  }
  .header__nav ul li span:nth-child(1) {
    right: 29px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .header__nav ul li span:nth-child(2) {
    right: 37px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header__nav ul li._open span:nth-child(1) {
    right: 29px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header__nav ul li._open span:nth-child(2) {
    right: 37px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .header__nav ul li._on, .header__nav ul li:hover {
    background: rgba(52, 52, 52, 0.98);
  }
  .header__nav ul li a, .header__nav ul li p {
    display: block;
    font-size: 20px;
    line-height: 1;
    padding: 20px 0 15px 20px;
    text-align: left;
  }
  .header__nav ul li.nav_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header__nav ul li.nav_social a {
    margin: 0 3px;
  }
  .header__nav ul li.nav_social a img {
    height: 27px;
  }
  .header__nav ul li.nav_social a:nth-child(3) img {
    height: 22px;
    margin-top: 3px;
  }
  .header__nav._open {
    height: 100%;
  }
  .header__nav._open .header__nav__area {
    display: block;
  }
  .header__nav._open ul {
    opacity: 1;
    -webkit-animation: nav_open 0.5s both;
    animation: nav_open 0.5s both;
  }
  @-webkit-keyframes nav_open {
    0% {
      opacity: 0;
      top: -100%;
      visibility: visible;
    }
    1% {
      opacity: 0;
      top: 0;
      visibility: visible;
    }
    50% {
      opacity: 0;
      top: 0;
      visibility: visible;
    }
    100% {
      opacity: 1;
      top: 0;
      visibility: visible;
    }
  }
  @keyframes nav_open {
    0% {
      opacity: 0;
      top: -100%;
      visibility: visible;
    }
    1% {
      opacity: 0;
      top: 0;
      visibility: visible;
    }
    50% {
      opacity: 0;
      top: 0;
      visibility: visible;
    }
    100% {
      opacity: 1;
      top: 0;
      visibility: visible;
    }
  }
}

@-webkit-keyframes menu-bar {
  49% {
    background-color: #fff;
  }
  50% {
    background-color: #45af36;
  }
  100% {
    background-color: #45af36;
  }
}

@keyframes menu-bar {
  49% {
    background-color: #fff;
  }
  50% {
    background-color: #45af36;
  }
  100% {
    background-color: #45af36;
  }
}
@-webkit-keyframes menu-bar-top {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(13px) rotate(0);
            transform: translateY(13px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(13px) rotate(45deg);
            transform: translateY(13px) rotate(45deg);
  }
}
@keyframes menu-bar-top {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(13px) rotate(0);
            transform: translateY(13px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(13px) rotate(45deg);
            transform: translateY(13px) rotate(45deg);
  }
}
@-webkit-keyframes menu-bar-bottom {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-13px) rotate(0);
            transform: translateY(-13px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-13px) rotate(-45deg);
            transform: translateY(-13px) rotate(-45deg);
  }
}
@keyframes menu-bar-bottom {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-13px) rotate(0);
            transform: translateY(-13px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-13px) rotate(-45deg);
            transform: translateY(-13px) rotate(-45deg);
  }
}
.header-pc {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-right: solid 1px #45af36;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .header-pc {
    display: none;
  }
}
.header-pc .menu {
  -ms-flex-item-align: start;
      align-self: flex-start;
  background-color: #45af36;
  cursor: pointer;
  height: 100px;
  position: relative;
  width: 100%;
}
.header-pc .menu span {
  background-color: #fff;
  display: inline-block;
  height: 1px;
  position: absolute;
  top: 38px;
  left: 28px;
  width: 43px;
}
.header-pc .menu span:before, .header-pc .menu span:after {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  left: 0;
  width: 43px;
}
.header-pc .menu span:before {
  top: -13px;
}
.header-pc .menu span:after {
  top: 13px;
}
.header-pc .menu p {
  color: #fff;
  font-size: 14.5px;
  position: absolute;
  bottom: 17px;
  left: 0;
  text-align: center;
  width: 100%;
}
.header-pc .menu p:nth-child(3) {
  display: none;
}
.header-pc .menu._open p:nth-child(2) {
  display: none;
}
.header-pc .menu._open p:nth-child(3) {
  display: block;
}
.header-pc .menu._open span {
  -webkit-animation-name: menu-bar;
          animation-name: menu-bar;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.header-pc .menu._open span:before, .header-pc .menu._open span:after {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  background-color: #fff;
}
.header-pc .menu._open span:before {
  -webkit-animation-name: menu-bar-top;
          animation-name: menu-bar-top;
}
.header-pc .menu._open span:after {
  -webkit-animation-name: menu-bar-bottom;
          animation-name: menu-bar-bottom;
}
.header-pc .text {
  height: 125px;
  text-align: center;
  width: 100px;
}
.header-pc .pagetop {
  -ms-flex-item-align: end;
      align-self: flex-end;
  height: 73px;
  margin-bottom: 20px;
  text-align: center;
  width: 100px;
}

@-webkit-keyframes menu-sp-bar-top {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
}

@keyframes menu-sp-bar-top {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
}
@-webkit-keyframes menu-sp-bar-bottom {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}
@keyframes menu-sp-bar-bottom {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}
.header-sp {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-bottom: solid 1px #45af36;
  height: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .header-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header-sp ._inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-sp h1 {
  height: 28px;
  margin-left: 20px;
}
.header-sp h1 img {
  height: 100%;
  width: auto;
}
.header-sp .text {
  color: #000;
  font-size: 10px;
  font-weight: 700;
  width: auto;
}
.header-sp .menu {
  -ms-flex-item-align: start;
      align-self: flex-start;
  background-color: #45af36;
  cursor: pointer;
  height: 50px;
  position: relative;
  width: 50px;
}
.header-sp .menu span {
  background-color: #fff;
  display: inline-block;
  height: 1px;
  position: absolute;
  top: 20px;
  left: 12.5px;
  width: 25px;
}
.header-sp .menu span:before, .header-sp .menu span:after {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  left: 0;
  width: 25px;
}
.header-sp .menu span:before {
  top: -8px;
}
.header-sp .menu span:after {
  top: 8px;
}
.header-sp .menu p {
  color: #fff;
  font-size: 10px;
  position: absolute;
  bottom: 3px;
  left: 0;
  text-align: center;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  width: 100%;
}
.header-sp .menu p:nth-child(3) {
  display: none;
}
.header-sp .menu._open p:nth-child(2) {
  display: none;
}
.header-sp .menu._open p:nth-child(3) {
  display: block;
}
.header-sp .menu._open span {
  -webkit-animation-name: menu-sp-bar;
          animation-name: menu-sp-bar;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes menu-sp-bar {
  49% {
    background-color: #fff;
  }
  50% {
    background-color: #45af36;
  }
  100% {
    background-color: #45af36;
  }
}
@keyframes menu-sp-bar {
  49% {
    background-color: #fff;
  }
  50% {
    background-color: #45af36;
  }
  100% {
    background-color: #45af36;
  }
}
.header-sp .menu._open span:before, .header-sp .menu._open span:after {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  background-color: #fff;
}
.header-sp .menu._open span:before {
  -webkit-animation-name: menu-sp-bar-top;
          animation-name: menu-sp-bar-top;
}
.header-sp .menu._open span:after {
  -webkit-animation-name: menu-sp-bar-bottom;
          animation-name: menu-sp-bar-bottom;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/*--------------------------------------------------------------------------
nav
--------------------------------------------------------------------------*/
@-webkit-keyframes nav-fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes nav-fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes nav-fadeout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes nav-fadeout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes nav-in-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes nav-in-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes nav-1-slideout {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  99% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes nav-1-slideout {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  99% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes nav-1-slidein {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  1% {
    opacity: 0;
    -webkit-transform: translateX(calc(100% - 30px));
            transform: translateX(calc(100% - 30px));
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes nav-1-slidein {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  1% {
    opacity: 0;
    -webkit-transform: translateX(calc(100% - 30px));
            transform: translateX(calc(100% - 30px));
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes nav-2-slidein {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  1% {
    opacity: 0;
    -webkit-transform: translateX(calc(-100% + 30px));
            transform: translateX(calc(-100% + 30px));
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes nav-2-slidein {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  1% {
    opacity: 0;
    -webkit-transform: translateX(calc(-100% + 30px));
            transform: translateX(calc(-100% + 30px));
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes nav-2-slideout {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  99% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes nav-2-slideout {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  99% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.nav._open {
  /*animation-name: nav-fadein;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;*/
  opacity: 1;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.nav._open ._title,
.nav._open nav {
  -webkit-animation-name: nav-in-fadein;
          animation-name: nav-in-fadein;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.nav._close {
  /*animation-name: nav-fadeout;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;*/
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(69, 175, 54, 0.96);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  position: fixed;
  top: 100%;
  left: 100px;
  width: calc(100% - 100px);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .nav {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: calc(100% - 50px);
    opacity: 0;
    overflow-y: auto;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    padding-top: 30px;
    left: 0;
    width: 100%;
  }
}
.nav ._title {
  opacity: 0;
}
.nav ._title h2 {
  color: #fff;
}
.nav nav {
  opacity: 0;
  overflow: hidden;
  padding: 40px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .nav nav {
    height: 1160px;
    padding: 0;
  }
}
.nav nav .nav-1 {
  position: relative;
}
.nav nav .nav-1._slideout, .nav nav .nav-1._slidein {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.nav nav .nav-1._slideout {
  -webkit-animation-name: nav-1-slideout;
          animation-name: nav-1-slideout;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}
.nav nav .nav-1._slidein {
  -webkit-animation-name: nav-1-slidein;
          animation-name: nav-1-slidein;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  left: -100%;
  opacity: 0;
}
.nav nav .nav-1 ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 790px;
  padding: 0;
}
.nav nav .nav-1 dl {
  width: calc(33.3333333333% - 25px);
}
@media screen and (max-width: 768px) {
  .nav nav .nav-1 dl {
    width: 100%;
  }
}
.nav nav .nav-1 dl dt, .nav nav .nav-1 dl dd {
  color: #fff;
  font-size: 0;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
}
.nav nav .nav-1 dl dt a, .nav nav .nav-1 dl dt p, .nav nav .nav-1 dl dd a, .nav nav .nav-1 dl dd p {
  color: #fff;
  display: block;
  height: 100%;
  padding: 14px 0;
  width: 100%;
}
.nav nav .nav-1 dl dt a.r2, .nav nav .nav-1 dl dd a.r2 {
  line-height: 1.3;
}
.nav nav .nav-1 dl dt {
  border-top: solid 1px #fff;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
}
.nav nav .nav-1 dl dt a,
.nav nav .nav-1 dl dt #entry-newgrads {
  background-image: url(../img/nav/arrow.png);
  background-position: 97% center;
  background-repeat: no-repeat;
  background-size: 7px auto;
}
.nav nav .nav-1 dl dt #entry-newgrads {
  -webkit-transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}
.nav nav .nav-1 dl dt #entry-newgrads:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .nav nav .nav-1 dl dt {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .nav nav .nav-1 dl dt {
    font-size: 13px;
  }
}
.nav nav .nav-1 dl ._parent p {
  padding-bottom: 5px;
}
.nav nav .nav-1 dl ._parent + dd {
  border-top: none;
}
.nav nav .nav-1 dl dd {
  border-top: solid 1px #fff;
  font-size: 12px;
  padding: 3px 0;
}
.nav nav .nav-1 dl dd a {
  background-image: url(../img/nav/arrow-child.png);
  background-position: 0 8px;
  background-repeat: no-repeat;
  background-size: 5px auto;
  line-height: 1.5;
  padding: 3px 0 3px 12px;
}
.nav nav .nav-1 dl dd a small {
  display: block;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .nav nav .nav-1 dl dd a small {
    font-size: 9px;
  }
}
@media screen and (max-width: 1024px) {
  .nav nav .nav-1 dl dd {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .nav nav .nav-1 dl dd {
    padding: 5px 0 10px;
  }
  .nav nav .nav-1 dl dd a {
    background-position: 0 10px;
    padding: 5px 0 5px 12px;
  }
}
.nav nav .nav-1 dl ._blank {
  margin-top: 17px;
  padding-top: 7px;
}
.nav nav .nav-1 dl ._blank a {
  background-image: url(../img/nav/blank.png);
  background-size: 7px;
}
@media screen and (max-width: 768px) {
  .nav nav .nav-1 dl ._blank {
    margin-top: 0;
  }
}
.nav nav .nav-1 dl:nth-child(1) dd:nth-child(3) {
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .nav nav .nav-1 dl:nth-child(1) dd:nth-child(3) {
    padding-bottom: 10px;
  }
}
.nav nav .nav-1 dl:nth-child(2) dd:nth-child(2) {
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .nav nav .nav-1 dl:nth-child(2) dd:nth-child(2) {
    padding-bottom: 10px;
  }
}
.nav nav .nav-1 dl:nth-child(2) {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .nav nav .nav-1 dl:nth-child(2) {
    width: 100%;
  }
}
.nav nav .nav-1 .nav-entry {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .nav nav .nav-1 .nav-entry {
    padding-top: 17px;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.nav nav .nav-1 .nav-entry li a {
  background-image: url(../img/nav/arrow.png);
  background-position: 95% center;
  background-repeat: no-repeat;
  background-size: 7px auto;
  border: solid 1px #fff;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 15px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .nav nav .nav-1 .nav-entry li a {
    font-size: 14px;
  }
}
.nav nav .nav-slide-gt1 {
  margin: 50px auto;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
}
.nav nav .nav-slide-gt1._slidein, .nav nav .nav-slide-gt1._slideout {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.nav nav .nav-slide-gt1._slidein {
  -webkit-animation-name: nav-2-slidein;
          animation-name: nav-2-slidein;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.nav nav .nav-slide-gt1._slideout {
  left: 0;
  opacity: 0;
  -webkit-animation-name: nav-2-slideout;
          animation-name: nav-2-slideout;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}
.nav nav .nav-slide-gt1 ._inner {
  max-width: 600px;
  padding: 0;
  position: relative;
}
.nav nav .nav-list {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 240px 20px 240px;
  grid-template-columns: repeat(2, 240px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  place-items: center;
}
@media screen and (min-width: 769px) {
  .nav nav .nav-list.--3col {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .nav nav .nav-list.--3col + .close-entry-arrow {
    left: -20px;
  }
}
@media screen and (max-width: 768px) {
  .nav nav .nav-list {
    -ms-grid-columns: (240px)[1];
    grid-template-columns: repeat(1, 240px);
  }
}
.nav nav .nav-list li {
  font-size: 0;
  width: 100%;
}
.nav nav .nav-list li a {
  display: block;
}
.nav nav .nav-list li a:hover {
  opacity: 0.7 !important;
}
.nav nav .nav-list li img {
  height: auto;
  width: 100%;
}
.nav nav .close-entry-arrow {
  background-image: url(../img/nav/arrow-back.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px auto;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  width: 30px;
}
@media screen and (max-width: 768px) {
  .nav nav .close-entry-arrow {
    left: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

/*--------------------------------------------------------------------------
main
--------------------------------------------------------------------------*/
._title {
  color: #000;
  font-size: 17px;
  font-weight: 700;
}
._title h1 {
  padding-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  ._title {
    font-size: 15px;
  }
  ._title img {
    height: 48px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  ._title {
    font-size: 11px;
  }
  ._title img {
    height: 30px;
    width: auto;
  }
}

._page .main {
  padding: 100px 0 0 100px;
}
@media screen and (max-width: 1024px) {
  ._page .main {
    padding: 70px 0 0 100px;
  }
}
@media screen and (max-width: 768px) {
  ._page .main {
    padding: 80px 0 0 0;
  }
}

.main {
  height: 100%;
  padding-left: 100px;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 50px;
    padding-left: 0;
  }
}
.main .logo {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2;
}
.main .logo h1 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100px;
  width: 100px;
}
@media screen and (max-width: 768px) {
  .main .logo {
    display: none;
  }
}
.main ._button {
  background-color: #45af36;
  border-radius: 40px;
  color: #fff;
  display: block;
  font-size: 0;
  margin: 50px auto 0;
  padding: 15px 0 17px;
  width: 210px;
}
.main ._button span {
  background-image: url(../img/main/arrow-button.png);
  background-position: right 75%;
  background-repeat: no-repeat;
  background-size: 9px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding-right: 20px;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .main ._button {
    margin-top: 30px;
    margin-left: 20px;
    padding: 15px 25px 15px 30px;
    text-align: left;
    width: 180px;
  }
  .main ._button span {
    background-position: right 90%;
    background-size: 7.5px auto;
    font-size: 14px;
    padding-left: 0;
    text-align: left;
    width: 100%;
  }
}
.main ._smile {
  background-image: url(../img/main/smile-lady.png), url(../img/main/smile-man.png);
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-size: 230px auto;
}
@media screen and (max-width: 1024px) {
  .main ._smile {
    background-size: 180px auto;
  }
}
@media screen and (max-width: 768px) {
  .main ._smile {
    background-size: 130px auto;
  }
}
.main .item {
  margin-bottom: 30px;
  padding-top: 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .main .item {
    padding-top: 22px;
  }
}
.main .item__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.main .item__title h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  text-shadow: 1px 1px 0 #333, -1px 1px 0 #333, 1px -1px 0 #333, -1px -1px 0 #333;
}
@media screen and (max-width: 1024px) {
  .main .item__title h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .main .item__title h2 {
    text-shadow: 1px 1px 0 #333, -1px 1px 0 #333, 1px -1px 0 #333, -1px -1px 0 #333;
  }
}
.main .item__title .line-wave {
  -webkit-animation-name: line-wave;
          animation-name: line-wave;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  background-image: url(../img/main/line-wave.png);
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: auto 6px;
  height: 6px;
  margin: 10px auto 0;
  max-width: 240px;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .main .item__title .line-wave {
    max-width: 160px;
  }
}
@-webkit-keyframes line-wave {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -20px 0;
  }
}
@keyframes line-wave {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -20px 0;
  }
}

#_home .visual {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../../img/home/visual-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 550px;
  position: relative;
  width: 100%;
  z-index: -1;
}
#_home .visual__copy {
  -webkit-animation-name: copy-fadein;
          animation-name: copy-fadein;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes copy-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes copy-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  #_home .visual {
    height: 350px;
  }
  #_home .visual__copy {
    z-index: 1;
  }
  #_home .visual__copy img {
    height: 150px;
    width: auto;
  }
}
#_home .visual__bubble {
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
#_home .visual__bubble ._bubble {
  -webkit-animation-name: bubble-fadein-pc;
          animation-name: bubble-fadein-pc;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  position: absolute;
}
@media screen and (max-width: 768px) {
  #_home .visual__bubble ._bubble {
    -webkit-animation-name: bubble-fadein-sp;
            animation-name: bubble-fadein-sp;
  }
}
@-webkit-keyframes bubble-fadein-pc {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bubble-fadein-pc {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bubble-fadein-sp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bubble-fadein-sp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#_home .visual__bubble #bubble-1 {
  -webkit-animation-delay: 0;
          animation-delay: 0;
  left: 8vw;
  top: 250px;
}
@media screen and (max-width: 768px) {
  #_home .visual__bubble #bubble-1 {
    display: none;
  }
}
#_home .visual__bubble #bubble-2 {
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
  left: 21vw;
  top: 70px;
}
@media screen and (max-width: 768px) {
  #_home .visual__bubble #bubble-2 {
    left: 70vw;
    top: 10px;
    height: 110px;
    width: 110px;
  }
}
#_home .visual__bubble #bubble-3 {
  -webkit-animation-delay: 0.27s;
          animation-delay: 0.27s;
  left: 26vw;
  top: 370px;
}
@media screen and (max-width: 768px) {
  #_home .visual__bubble #bubble-3 {
    display: none;
  }
}
#_home .visual__bubble #bubble-4 {
  -webkit-animation-delay: 0;
          animation-delay: 0;
  left: 57vw;
  top: 40px;
}
@media screen and (max-width: 768px) {
  #_home .visual__bubble #bubble-4 {
    left: 8vw;
    top: 200px;
    height: 100px;
    width: 100px;
  }
}
#_home .visual__bubble #bubble-5 {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
  left: 62vw;
  top: 330px;
}
@media screen and (max-width: 768px) {
  #_home .visual__bubble #bubble-5 {
    display: none;
  }
}
#_home .visual__bubble #bubble-6 {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  left: 73vw;
  top: 160px;
}
@media screen and (max-width: 768px) {
  #_home .visual__bubble #bubble-6 {
    left: -1vw;
    top: -10px;
    height: 80px;
    width: 80px;
  }
}
#_home .visual__bubble #bubble-7 {
  -webkit-animation-delay: 0.44s;
          animation-delay: 0.44s;
  display: none;
}
@media screen and (max-width: 768px) {
  #_home .visual__bubble #bubble-7 {
    display: block;
    left: 60vw;
    top: 220px;
  }
}
#_home .intro {
  padding: 120px 0 70px;
}
#_home .intro ._inner {
  opacity: 0;
}
#_home .intro ._inner._scrollin {
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#_home .intro h2 {
  font-size: 25px;
  font-weight: 700;
}
#_home .intro p {
  font-weight: 400;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  #_home .intro {
    padding: 90px 0 50px;
  }
  #_home .intro h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #_home .intro {
    padding: 30px 0 30px;
  }
  #_home .intro h2, #_home .intro p {
    text-align: left;
  }
  #_home .intro h2 {
    font-size: 16px;
  }
  #_home .intro p {
    padding-top: 10px;
  }
}
#_home .people {
  background-image: url(../../img/home/people-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #_home .people {
    background-image: url(../../img/home/people-bg-sp.jpg);
    background-position: center top;
    padding: 40px 0 10px;
  }
}
#_home .people ._inner {
  max-width: none;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  #_home .people ._inner {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  #_home .people ._inner {
    margin-top: 10px;
  }
}
#_home .people .swiper-container {
  margin: 50px auto 0;
  padding: 0 50px;
  width: 100%;
}
#_home .people .swiper-container .swiper-slide {
  padding: 20px 50px 0 0;
}
#_home .people ._people {
  height: 440px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #_home .people ._people {
    height: 350px;
    width: calc(33.3333333333% - 15px);
  }
}
@media screen and (max-width: 768px) {
  #_home .people ._people {
    height: 460px;
    margin-bottom: 20px;
    width: 100%;
  }
}
#_home .people ._people__picture, #_home .people ._people__head, #_home .people ._people__bg, #_home .people ._people__text {
  position: absolute;
}
#_home .people ._people__picture {
  bottom: 100px;
  left: 7%;
}
#_home .people ._people__picture img {
  height: 320px;
  -webkit-filter: drop-shadow(0 35px 30px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 35px 30px rgba(0, 0, 0, 0.3));
  opacity: 0;
  width: auto;
}
#_home .people ._people__picture img._scrollin {
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 1024px) {
  #_home .people ._people__picture img {
    height: 240px;
  }
}
@media screen and (max-width: 768px) {
  #_home .people ._people__picture {
    left: 0;
    text-align: center;
    width: 100%;
  }
  #_home .people ._people__picture img {
    height: 340px;
  }
}
#_home .people ._people__head {
  top: 0;
  right: 20px;
}
#_home .people ._people__head img {
  height: 310px;
  opacity: 0;
  width: auto;
}
#_home .people ._people__head img._scrollin {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@media screen and (max-width: 1024px) {
  #_home .people ._people__head {
    right: 15px;
  }
  #_home .people ._people__head img {
    height: 230px;
  }
}
#_home .people ._people__bg {
  background-color: #ffb599;
  height: 50%;
  bottom: 110px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #_home .people ._people__bg {
    bottom: 90px;
  }
}
#_home .people ._people__text {
  background-color: #fff;
  bottom: 0;
  width: 100%;
}
#_home .people ._people__text p {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  padding: 20px 0 20px 20px;
  text-align: left;
}
#_home .people ._people__text p span {
  display: block;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  #_home .people ._people__text p {
    font-size: 13px;
  }
}
#_home .people .people-2 ._people__bg,
#_home .people .people-3 ._people__bg,
#_home .people .people-4 ._people__bg {
  background-color: #ceffdf;
}
#_home .pickup {
  padding: 70px 0 0;
}
@media screen and (max-width: 768px) {
  #_home .pickup {
    padding: 50px 0 0;
  }
}
#_home .pickup ._title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
}
#_home .pickup ._title h2 {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  #_home .pickup ._title {
    display: block;
  }
  #_home .pickup ._title h2 {
    padding-left: 0;
  }
}
#_home .pickup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 0 0;
}
#_home .pickup__content picture {
  font-size: 0;
  opacity: 0;
}
#_home .pickup__content picture._scrollin {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 1024px) {
  #_home .pickup__content picture img {
    height: 420px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  #_home .pickup__content {
    padding: 20px 0 0;
  }
  #_home .pickup__content picture {
    display: none;
  }
}
#_home .pickup__content ul {
  margin-right: auto;
  padding-right: 50px;
  padding-left: 50px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #_home .pickup__content ul {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  #_home .pickup__content ul {
    padding-right: 0;
    padding-left: 0;
  }
}
#_home .pickup__content ul li {
  background-position: 20px center;
  background-repeat: no-repeat;
  background-size: 67.5px;
  border-bottom: solid 1px #afafaf;
  opacity: 0;
  text-align: left;
}
#_home .pickup__content ul li._scrollin {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#_home .pickup__content ul li:nth-child(1) {
  background-image: url(../../img/home/pickup-1-picture.jpg);
}
#_home .pickup__content ul li:nth-child(2) {
  background-image: url(../../img/home/pickup-2-picture.jpg);
}
#_home .pickup__content ul li:nth-child(3) {
  background-image: url(../../img/home/pickup-3-picture.jpg);
}
#_home .pickup__content ul li:nth-child(4) {
  background-image: url(../../img/home/pickup-4-picture.jpg);
  border-bottom: none;
}
#_home .pickup__content ul li a {
  background-image: url(../../img/home/pickup-arrow.png);
  background-position: 95% center;
  background-repeat: no-repeat;
  background-size: 9px auto;
  color: #333;
  display: block;
  font-size: 18px;
  font-weight: 500;
  opacity: 0;
  padding: 42px 25px 42px 135px;
}
#_home .pickup__content ul li a._scrollin {
  -webkit-animation-name: fadein-right;
          animation-name: fadein-right;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
#_home .pickup__content ul li a:hover {
  background-position: 97% center;
  opacity: 0.7 !important;
}
@media screen and (max-width: 1024px) {
  #_home .pickup__content ul li {
    background-size: 55px;
  }
  #_home .pickup__content ul li a {
    font-size: 15px;
    padding: 31px 15px 31px 105px;
  }
}
@media screen and (max-width: 768px) {
  #_home .pickup__content ul li {
    background-position: 15px center;
    background-size: 50px;
  }
  #_home .pickup__content ul li a {
    background-size: 6px auto;
    font-size: 13px;
  }
}

#_welfare .welfare ._inner {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 860px;
  padding: 70px 0 0;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  #_welfare .welfare ._inner {
    padding: 50px 0 0;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 768px) {
  #_welfare .welfare ._inner {
    padding: 30px 20px 0;
    width: 100%;
  }
}
#_welfare .welfare ._inner._pc {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 768px) {
  #_welfare .welfare ._inner._pc {
    display: none !important;
  }
}
#_welfare .welfare ._inner._sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  #_welfare .welfare ._inner._sp {
    display: block !important;
  }
}
#_welfare .welfare ._inner ._left {
  padding-right: 20px;
  width: 50%;
}
#_welfare .welfare ._inner ._right {
  padding-left: 20px;
  width: 50%;
}
#_welfare .welfare .item__content {
  background-color: #fff6f2;
  border-radius: 35px;
  padding: 80px 40px 30px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #_welfare .welfare .item__content {
    padding: 60px 30px 20px;
  }
}
#_welfare .welfare .item__content dl {
  margin-bottom: 10px;
  text-align: left;
}
#_welfare .welfare .item__content dl dt {
  font-size: 15px;
  font-weight: 700;
}
#_welfare .welfare .item__content dl dd {
  font-size: 11px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #_welfare .welfare .item__content dl dt {
    font-size: 13px;
  }
  #_welfare .welfare .item__content dl dd {
    font-size: 9px;
  }
}

#_training ._section .item {
  margin-top: 50px;
  padding: 30px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #_training ._section .item {
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  #_training ._section .item {
    margin-top: 30px;
    padding: 20px 0;
  }
}
#_training ._section .item__title h2 {
  font-size: 38px;
}
@media screen and (max-width: 1024px) {
  #_training ._section .item__title h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  #_training ._section .item__title h2 {
    font-size: 24px;
  }
}
#_training ._section .item__content {
  margin: 0 auto;
  width: 90%;
}
#_training ._section .item__content .text {
  padding-top: 100px;
}
#_training ._section .item__content .text p {
  font-size: 18.5px;
  margin: 0 auto;
  text-align: left;
  max-width: 750px;
  width: 70%;
}
#_training ._section .item__content figure {
  display: inline-block;
  max-width: 750px;
  padding-top: 30px;
  width: 70%;
}
#_training ._section .item__content figure img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #_training ._section .item__content .text {
    padding-top: 90px;
  }
  #_training ._section .item__content .text p {
    font-size: 16px;
    width: 80%;
  }
  #_training ._section .item__content figure {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #_training ._section .item__content .text {
    padding-top: 70px;
  }
  #_training ._section .item__content .text p {
    font-size: 12px;
    width: 90%;
  }
  #_training ._section .item__content figure {
    width: 90%;
  }
}
#_training ._section .item__bg {
  background-color: #fff6f2;
  height: 100%;
  position: absolute;
  top: 40px;
  width: 90%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #_training ._section .item__bg {
    top: 35px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 768px) {
  #_training ._section .item__bg {
    top: 25px;
  }
}
#_training .training-1 {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  #_training .training-1 {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 768px) {
  #_training .training-1 {
    margin-bottom: 70px;
  }
}
#_training .training-1 .item ._smile {
  background-position: left -10%, right 110%;
}
#_training .training-1 .item__bg {
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #_training .training-1 .item__bg {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
#_training .training-2 {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  #_training .training-2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  #_training .training-2 {
    margin-bottom: 50px;
  }
}
#_training .training-2 .item ._smile {
  background-position: left 110%, right -10%;
}
#_training .training-2 .item__bg {
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #_training .training-2 .item__bg {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}

#_message ._section .item {
  margin-top: 50px;
  padding: 30px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #_message ._section .item {
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  #_message ._section .item {
    margin-top: 30px;
    padding: 20px 0;
  }
}
#_message ._section .item__title h2 {
  font-size: 38px;
}
@media screen and (max-width: 1024px) {
  #_message ._section .item__title h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  #_message ._section .item__title h2 {
    font-size: 24px;
  }
}
#_message ._section .item__content {
  margin: 0 auto;
  width: 90%;
}
#_message ._section .item__content picture {
  display: inline-block;
  padding-top: 120px;
}
#_message ._section .item__content picture img {
  border-radius: 10px;
}
#_message ._section .item__content .text {
  padding-top: 30px;
}
#_message ._section .item__content .text p {
  font-size: 18.5px;
  margin: 0 auto;
  text-align: left;
  max-width: 750px;
  width: 70%;
}
#_message ._section .item__content figure {
  display: inline-block;
  max-width: 750px;
  padding-top: 30px;
  width: 70%;
}
#_message ._section .item__content figure img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #_message ._section .item__content picture {
    padding-top: 100px;
    width: 80%;
  }
  #_message ._section .item__content picture img {
    height: auto;
    width: 100%;
  }
  #_message ._section .item__content .text {
    padding-top: 30px;
  }
  #_message ._section .item__content .text p {
    font-size: 16px;
    width: 80%;
  }
  #_message ._section .item__content figure {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #_message ._section .item__content picture {
    padding-top: 80px;
    width: 90%;
  }
  #_message ._section .item__content picture img {
    border-radius: 7px;
  }
  #_message ._section .item__content .text {
    padding-top: 20px;
  }
  #_message ._section .item__content .text p {
    font-size: 12px;
    width: 90%;
  }
  #_message ._section .item__content figure {
    width: 90%;
  }
}
#_message ._section .item__bg {
  background-color: #fff6f2;
  height: 100%;
  position: absolute;
  top: 40px;
  width: 90%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #_message ._section .item__bg {
    top: 35px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 768px) {
  #_message ._section .item__bg {
    top: 25px;
  }
}
#_message .message-1 {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  #_message .message-1 {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 768px) {
  #_message .message-1 {
    margin-bottom: 70px;
  }
}
#_message .message-1 .item ._smile {
  background-position: left 50%, right 50%;
}
#_message .message-1 .item__bg {
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #_message .message-1 .item__bg {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
#_message .message-2 {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  #_message .message-2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  #_message .message-2 {
    margin-bottom: 50px;
  }
}
#_message .message-2 .item ._smile {
  background-position: left 50%, right 50%;
}
#_message .message-2 .item__bg {
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #_message .message-2 .item__bg {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}
#_message .message-2 .item__content {
  text-align: left;
  margin: 0 auto;
  width: 90%;
}
#_message .message-2 .item__content ul {
  margin: 0 auto;
  padding: 180px 0 80px;
  text-align: left;
  max-width: 750px;
  width: 70%;
}
#_message .message-2 .item__content ul li {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 1.5;
  margin-top: 30px;
}
#_message .message-2 .item__content ul li span {
  padding: 2px 15px 0 0;
}
#_message .message-2 .item__content ul li img {
  height: auto;
  width: 17px;
}
@media screen and (max-width: 1024px) {
  #_message .message-2 .item__content ul {
    padding: 150px 0 50px;
    width: 80%;
  }
  #_message .message-2 .item__content ul li {
    font-size: 18px;
  }
  #_message .message-2 .item__content ul li span {
    padding: 2px 12px 0 0;
  }
  #_message .message-2 .item__content ul li img {
    width: 15px;
  }
}
@media screen and (max-width: 768px) {
  #_message .message-2 .item__content ul {
    padding: 100px 0 30px;
    width: 100%;
  }
  #_message .message-2 .item__content ul li {
    font-size: 13px;
    margin-top: 20px;
  }
  #_message .message-2 .item__content ul li span {
    padding: 1px 8px 0 0;
  }
  #_message .message-2 .item__content ul li img {
    width: 11px;
  }
}

#_store ._section .item {
  margin-top: 50px;
  padding: 30px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #_store ._section .item {
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  #_store ._section .item {
    margin-top: 30px;
    padding: 20px 0;
  }
}
#_store ._section .item__title h2 {
  font-size: 38px;
}
@media screen and (max-width: 1024px) {
  #_store ._section .item__title h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  #_store ._section .item__title h2 {
    font-size: 24px;
  }
}
#_store ._section .item__content {
  margin: 0 auto;
  width: 90%;
}
#_store ._section .item__content .data {
  margin: 0 auto;
  max-width: 830px;
  width: 75%;
}
@media screen and (max-width: 1024px) {
  #_store ._section .item__content .data {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content .data {
    width: 90%;
  }
}
#_store ._section .item__content #data-1 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 120px 0 0;
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content #data-1 {
    padding: 60px 0 0;
  }
}
#_store ._section .item__content #data-1 ._data {
  background-color: #fff;
  width: calc(33.3333333333% - 17px);
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content #data-1 ._data {
    margin: 20px 0 0;
    width: 100%;
  }
}
#_store ._section .item__content #data-1 ._data__logo, #_store ._section .item__content #data-1 ._data__pic {
  font-size: 0;
}
#_store ._section .item__content #data-1 ._data__logo img, #_store ._section .item__content #data-1 ._data__pic img {
  height: auto;
  width: 100%;
}
#_store ._section .item__content #data-1 ._data__logo {
  background-color: #fff6f2;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content #data-1 ._data__logo img {
    height: 36px;
    margin: 0 auto;
    width: auto;
  }
}
#_store ._section .item__content #data-1 ._data__pic {
  display: block;
}
#_store ._section .item__content #data-1 ._data__text {
  font-size: 0;
  padding: 10px;
}
#_store ._section .item__content #data-1 ._data__text p {
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content #data-1 ._data__text p {
    font-size: 10px;
  }
}
#_store ._section .item__content #data-2 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 25px;
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content #data-2 {
    padding-top: 15px;
  }
}
#_store ._section .item__content .data__map, #_store ._section .item__content .data__table {
  width: calc(50% - 12px);
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content .data__map, #_store ._section .item__content .data__table {
    width: 100%;
  }
}
#_store ._section .item__content .data__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 5px;
  margin-left: auto;
  text-align: right;
  width: calc(50% - 12px);
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content .data__date {
    width: 100%;
  }
}
#_store ._section .item__content .data__date span {
  background-color: #fff;
  color: #000;
  font-size: 12px;
  letter-spacing: 0.01em;
  line-height: 1.4;
  padding: 2px 5px;
  text-align: left;
}
#_store ._section .item__content .data__date span:nth-child(1) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  #_store ._section .item__content .data__date span:nth-child(1) {
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content .data__date span:nth-child(1) {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  #_store ._section .item__content .data__date span {
    font-size: 11px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content .data__date span {
    font-size: 10px;
    padding: 1px 3px;
    width: auto;
  }
}
#_store ._section .item__content .data__map {
  background-image: url(../../about/img/store/data-map.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  font-size: 0;
}
#_store ._section .item__content .data__map img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content .data__table {
    margin-top: 6px;
  }
}
#_store ._section .item__content .data__table th, #_store ._section .item__content .data__table td {
  background-color: #fff;
  border-right: solid 5px #fff6f2;
  border-bottom: solid 5px #fff6f2;
}
#_store ._section .item__content .data__table th:nth-last-child(1), #_store ._section .item__content .data__table td:nth-last-child(1) {
  border-right: none;
}
#_store ._section .item__content .data__table thead th {
  font-size: 9px;
  line-height: 1.4;
  vertical-align: middle;
  width: 18.75%;
}
#_store ._section .item__content .data__table thead th:nth-child(1) {
  width: 25%;
}
#_store ._section .item__content .data__table thead th:nth-last-child(1) {
  color: #000;
  font-weight: 500;
}
#_store ._section .item__content .data__table tbody th, #_store ._section .item__content .data__table tbody td {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
}
#_store ._section .item__content .data__table tbody th sup, #_store ._section .item__content .data__table tbody td sup {
  font-size: 10px;
  vertical-align: top;
}
@media screen and (max-width: 1024px) {
  #_store ._section .item__content .data__table tbody th, #_store ._section .item__content .data__table tbody td {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content .data__table tbody th, #_store ._section .item__content .data__table tbody td {
    font-size: 11px;
  }
  #_store ._section .item__content .data__table tbody th sup, #_store ._section .item__content .data__table tbody td sup {
    font-size: 9px;
  }
}
#_store ._section .item__content .data__table tbody th {
  color: #fff;
}
#_store ._section .item__content .data__table tbody tr:nth-child(1) th {
  background-color: #ffa31f;
}
#_store ._section .item__content .data__table tbody tr:nth-child(2) th {
  background-color: #f7b92c;
}
#_store ._section .item__content .data__table tbody tr:nth-child(3) th {
  background-color: #fc6d03;
}
#_store ._section .item__content .data__table tbody tr:nth-child(4) th {
  background-color: #a3af35;
}
#_store ._section .item__content .data__table tbody tr:nth-child(5) th {
  background-color: #5ca63c;
}
#_store ._section .item__content .data__table tbody tr:nth-child(6) th {
  background-color: #009e41;
}
#_store ._section .item__content .data__table tbody tr:nth-child(7) th {
  background-color: #ff0000;
}
#_store ._section .item__content .data__table tbody tr:nth-child(8) th {
  padding: 0.1rem 0;
}
#_store ._section .item__content .data__table tbody td {
  color: #808080;
}
#_store ._section .item__content .usmh {
  margin: 0 auto;
  max-width: 830px;
  padding: 90px 0 0;
  width: 75%;
}
@media screen and (max-width: 1024px) {
  #_store ._section .item__content .usmh {
    padding: 70px 0 0;
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content .usmh {
    padding: 50px 0 0;
    width: 90%;
  }
}
#_store ._section .item__content .usmh h2 {
  margin: 0 auto;
  padding-right: 15px;
  width: 100%;
}
#_store ._section .item__content .usmh h2 img {
  height: auto;
  margin: auto;
  max-width: 431px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content .usmh h2 img {
    width: 80%;
  }
}
#_store ._section .item__content .usmh p {
  font-size: 18px;
  padding-top: 30px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  #_store ._section .item__content .usmh p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content .usmh p {
    font-size: 12px;
  }
}
#_store ._section .item__content .usmh__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
#_store ._section .item__content .usmh__group a {
  margin: 0 20px;
}
#_store ._section .item__content .usmh__group a img {
  height: 6vw;
  max-height: 74px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  #_store ._section .item__content .usmh__group a {
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #_store ._section .item__content .usmh__group {
    padding-top: 20px;
    width: 100%;
  }
  #_store ._section .item__content .usmh__group a {
    margin: 10px auto;
    width: 80%;
  }
  #_store ._section .item__content .usmh__group a img {
    height: 50px;
  }
}
#_store ._section .item__bg {
  background-color: #fff6f2;
  height: 100%;
  position: absolute;
  top: 40px;
  width: 90%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #_store ._section .item__bg {
    top: 35px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 768px) {
  #_store ._section .item__bg {
    top: 25px;
  }
}
#_store .store-1 {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  #_store .store-1 {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 768px) {
  #_store .store-1 {
    margin-bottom: 50px;
  }
}
#_store .store-1 .item__bg {
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #_store .store-1 .item__bg {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
#_store .store-2 {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  #_store .store-2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  #_store .store-2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  #_store .store-2 .item {
    padding-bottom: 0;
  }
}
#_store .store-2 .item__bg {
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #_store .store-2 .item__bg {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}

#_careerpass ._section .item {
  margin-top: 50px;
  padding: 30px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #_careerpass ._section .item {
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item {
    margin-top: 30px;
    padding: 20px 0;
  }
}
#_careerpass ._section .item__title h2 {
  font-size: 38px;
}
@media screen and (max-width: 1024px) {
  #_careerpass ._section .item__title h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__title h2 {
    font-size: 24px;
  }
}
#_careerpass ._section .item__content {
  margin: 0 auto;
  width: 90%;
}
#_careerpass ._section .item__content .text {
  padding-top: 100px;
}
#_careerpass ._section .item__content .text p {
  font-size: 18.5px;
  margin: 0 auto;
  text-align: left;
  max-width: 875px;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  #_careerpass ._section .item__content .text {
    padding-top: 90px;
  }
  #_careerpass ._section .item__content .text p {
    font-size: 16px;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content .text {
    padding-top: 70px;
  }
  #_careerpass ._section .item__content .text p {
    font-size: 12px;
    width: 90%;
  }
}
#_careerpass ._section .item__content .table-1-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 50px auto 0;
  max-width: 875px;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  #_careerpass ._section .item__content .table-1-legend {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content .table-1-legend {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 30px auto 0;
    width: 90%;
  }
}
#_careerpass ._section .item__content .table-1-legend li {
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  padding: 5px;
  width: 100px;
}
#_careerpass ._section .item__content .table-1-legend li:nth-child(1) {
  background-color: #e74000;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content .table-1-legend li:nth-child(1) {
    margin-right: 7px;
  }
}
#_careerpass ._section .item__content .table-1-legend li:nth-child(2) {
  background-color: #ff8500;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content .table-1-legend li {
    border-radius: 3px;
    font-size: 10px;
    width: 80px;
  }
}
#_careerpass ._section .item__content table {
  border-collapse: collapse;
  margin: 10px auto 0;
  max-width: 875px;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  #_careerpass ._section .item__content table {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content table {
    width: 90%;
  }
}
#_careerpass ._section .item__content table th {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  min-width: 60px;
  padding: 10px 0;
  vertical-align: middle;
  width: 8%;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content table th {
    font-size: 11px;
  }
}
#_careerpass ._section .item__content table td {
  background-color: #fff;
  border: solid 1px #4d4d4d;
  color: #808080;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 10px 15px;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content table td {
    padding: 10px 10px;
  }
}
#_careerpass ._section .item__content table td._t {
  color: #45af36;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content table td._t {
    font-size: 11px;
  }
}
#_careerpass ._section .item__content table td._d {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content table td._d {
    font-size: 10px;
  }
}
#_careerpass ._section .item__content .table-1_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content .table-1_pc {
    display: none;
  }
}
#_careerpass ._section .item__content .table-1_pc tr:nth-child(1) th {
  background-color: #45af36;
}
#_careerpass ._section .item__content .table-1_pc tr:nth-child(2) th {
  background-color: #808080;
}
#_careerpass ._section .item__content .table-1_pc tr:nth-child(3) th {
  background-color: #ff8500;
}
#_careerpass ._section .item__content .table-1_pc tr:nth-child(3) td {
  padding: 0;
}
#_careerpass ._section .item__content .table-1_pc td {
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  width: 14%;
}
#_careerpass ._section .item__content .table-1_pc td ._base {
  position: relative;
}
#_careerpass ._section .item__content .table-1_pc td ._base ._block {
  position: absolute;
}
#_careerpass ._section .item__content .table-1_pc td ._block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
  margin: 7px;
}
#_careerpass ._section .item__content .table-1_pc td ._block._r {
  background-color: #e74000;
}
#_careerpass ._section .item__content .table-1_pc td ._block._o {
  background-color: #ffb800;
}
#_careerpass ._section .item__content .table-1_pc td ._block._2 {
  height: 103px;
}
#_careerpass ._section .item__content .table-1_pc td ._block._4 {
  height: 212px;
}
#_careerpass ._section .item__content .table-1_pc tr:nth-child(1) td,
#_careerpass ._section .item__content .table-1_pc tr:nth-child(2) td {
  vertical-align: middle;
}
#_careerpass ._section .item__content .table-1_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content .table-1_sp {
    display: block;
  }
}
#_careerpass ._section .item__content .table-1_sp th:nth-child(1) {
  background-color: #45af36;
  min-width: 60px;
  width: 8%;
}
#_careerpass ._section .item__content .table-1_sp th:nth-child(2) {
  background-color: #808080;
  min-width: 60px;
  width: 8%;
}
#_careerpass ._section .item__content .table-1_sp th:nth-child(3) {
  background-color: #ff8500;
  width: 84%;
}
#_careerpass ._section .item__content .table-1_sp td {
  font-size: 12px;
  font-weight: 700;
  height: 60px;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}
#_careerpass ._section .item__content .table-1_sp td._t {
  font-size: 12px;
}
#_careerpass ._section .item__content .table-1_sp td ._base {
  position: relative;
  width: 97%;
}
#_careerpass ._section .item__content .table-1_sp td ._base ._block {
  position: absolute;
}
#_careerpass ._section .item__content .table-1_sp td ._block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 7px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 10.5px;
  height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
  margin: 5px 3%;
}
#_careerpass ._section .item__content .table-1_sp td ._block._r {
  background-color: #e74000;
}
#_careerpass ._section .item__content .table-1_sp td ._block._o {
  background-color: #ffb800;
}
#_careerpass ._section .item__content .table-1_sp td ._block._v {
  height: 110px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
#_careerpass ._section .item__content .table-1_sp td:nth-child(3) {
  padding: 0 !important;
  vertical-align: top !important;
}
#_careerpass ._section .item__content .table-1_sp tr:nth-last-child(1) td:nth-child(2) {
  padding: 0 !important;
  vertical-align: top !important;
}
#_careerpass ._section .item__content .table-2,
#_careerpass ._section .item__content .table-3 {
  margin-top: 20px;
}
#_careerpass ._section .item__content .table-2 th,
#_careerpass ._section .item__content .table-3 th {
  background-color: #e74000;
}
#_careerpass ._section .item__content .table-2 td,
#_careerpass ._section .item__content .table-3 td {
  color: #4d4d4d;
  line-height: 1.4;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content .table-2 td,
  #_careerpass ._section .item__content .table-3 td {
    padding: 10px 5px;
  }
}
#_careerpass ._section .item__content .table-2 td:nth-child(1),
#_careerpass ._section .item__content .table-3 td:nth-child(1) {
  padding: 15px 5px;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content .table-2 td:nth-child(1),
  #_careerpass ._section .item__content .table-3 td:nth-child(1) {
    padding: 10px 5px;
  }
}
#_careerpass ._section .item__content .table-2 td._t,
#_careerpass ._section .item__content .table-3 td._t {
  max-width: 200px;
  text-align: center;
  width: 26%;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content .table-2 td._t,
  #_careerpass ._section .item__content .table-3 td._t {
    width: 33%;
  }
}
#_careerpass ._section .item__content .table-2 td._d,
#_careerpass ._section .item__content .table-3 td._d {
  width: 66%;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content .table-2 td._d,
  #_careerpass ._section .item__content .table-3 td._d {
    width: 61%;
  }
}
#_careerpass ._section .item__content .table-2 td ul li,
#_careerpass ._section .item__content .table-3 td ul li {
  padding: 5px 15px;
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content .table-2 td ul li,
  #_careerpass ._section .item__content .table-3 td ul li {
    padding: 5px 5px;
  }
}
#_careerpass ._section .item__content .table-2 td ul li:nth-child(1),
#_careerpass ._section .item__content .table-3 td ul li:nth-child(1) {
  border-bottom: dashed 1px #4d4d4d;
  padding-bottom: 10px;
}
#_careerpass ._section .item__content .table-2 td ul li:nth-child(2),
#_careerpass ._section .item__content .table-3 td ul li:nth-child(2) {
  padding-top: 10px;
}
#_careerpass ._section .item__content .table-2 tr:nth-child(1) td:nth-child(3) {
  padding: 5px 0;
}
#_careerpass ._section .item__content .table-3 th {
  background-color: #ffb800;
}
@media screen and (max-width: 1024px) {
  #_careerpass ._section .item__content figure {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__content figure {
    width: 90%;
  }
}
#_careerpass ._section .item__bg {
  background-color: #fff6f2;
  height: 100%;
  position: absolute;
  top: 40px;
  width: 90%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #_careerpass ._section .item__bg {
    top: 35px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 768px) {
  #_careerpass ._section .item__bg {
    top: 25px;
  }
}
#_careerpass .career {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  #_careerpass .career {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 768px) {
  #_careerpass .career {
    margin-bottom: 50px;
  }
}
#_careerpass .career .item__bg {
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #_careerpass .career .item__bg {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}

#_map ._section .item {
  margin-top: 50px;
  padding: 30px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #_map ._section .item {
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  #_map ._section .item {
    margin-top: 30px;
    padding: 20px 0 0;
  }
}
#_map ._section .item__title h2 {
  font-size: 38px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #_map ._section .item__title h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  #_map ._section .item__title h2 {
    font-size: 24px;
  }
}
#_map ._section .item__bg {
  background-color: #fff6f2;
  background-image: url(../../work/img/map/map-bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 720px;
  height: 720px;
  position: absolute;
  top: 40px;
  width: 90%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #_map ._section .item__bg {
    background-size: auto 520px;
    height: 520px;
    top: 35px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 768px) {
  #_map ._section .item__bg {
    background-size: auto 440px;
    height: 440px;
    top: 25px;
  }
}
#_map ._section .item__content {
  height: 720px;
  margin: 0 0 0 auto;
  overflow: hidden;
  position: relative;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #_map ._section .item__content {
    background-size: auto 520px;
    height: 520px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 768px) {
  #_map ._section .item__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-size: auto 440px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 440px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: visible;
    padding: 70px 0 0;
  }
}
#_map ._section .item__content ._map {
  -webkit-animation-name: map-fadein;
          animation-name: map-fadein;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  cursor: pointer;
  height: 193px;
  opacity: 0;
  position: absolute;
  width: 169.5px;
}
#_map ._section .item__content ._map:hover {
  opacity: 0.7 !important;
}
@media screen and (max-width: 1024px) {
  #_map ._section .item__content ._map {
    height: 130px;
    width: 114px;
  }
}
@media screen and (max-width: 768px) {
  #_map ._section .item__content ._map {
    display: block;
    height: 93px;
    position: static;
    width: 85px;
  }
}
#_map ._section .item__content ._map img {
  height: auto;
  width: 100%;
}
@-webkit-keyframes map-fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes map-fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#_map ._section .item__content #map1 {
  left: calc(50% - 220px);
  top: 120px;
}
#_map ._section .item__content #map2 {
  left: calc(50% - 290px);
  top: 400px;
}
#_map ._section .item__content #map3 {
  left: calc(50% + 200px);
  top: 90px;
}
#_map ._section .item__content #map4 {
  left: calc(50% - 455px);
  top: 195px;
}
#_map ._section .item__content #map5 {
  left: calc(50% + 360px);
  top: 270px;
}
#_map ._section .item__content #map6 {
  left: calc(50% + 220px);
  top: 345px;
}
#_map ._section .item__content #map7 {
  left: calc(50% - 110px);
  top: 335px;
}
#_map ._section .item__content #map8 {
  left: calc(50% - 445px);
  top: 525px;
}
#_map ._section .item__content #map9 {
  left: calc(50% + 280px);
  top: 525px;
}
#_map ._section .item__content #map10 {
  left: calc(50% + 45px);
  top: 170px;
}
@media screen and (max-width: 1024px) {
  #_map ._section .item__content #map1 {
    left: calc(50% - 155px);
    top: 100px;
  }
  #_map ._section .item__content #map2 {
    left: calc(50% - 205px);
    top: 305px;
  }
  #_map ._section .item__content #map3 {
    left: calc(50% + 150px);
    top: 80px;
  }
  #_map ._section .item__content #map4 {
    left: calc(50% - 325px);
    top: 160px;
  }
  #_map ._section .item__content #map5 {
    left: calc(50% + 260px);
    top: 210px;
  }
  #_map ._section .item__content #map6 {
    left: calc(50% + 160px);
    top: 265px;
  }
  #_map ._section .item__content #map7 {
    left: calc(50% - 75px);
    top: 255px;
  }
  #_map ._section .item__content #map8 {
    left: calc(50% - 310px);
    top: 393px;
  }
  #_map ._section .item__content #map9 {
    left: calc(50% + 215px);
    top: 393px;
  }
  #_map ._section .item__content #map10 {
    left: calc(50% + 35px);
    top: 135px;
  }
}
@media screen and (max-width: 768px) {
  #_map ._section .item__content #map1 {
    left: calc(50% - 135px);
    top: 110px;
  }
  #_map ._section .item__content #map2 {
    left: calc(50% - 205px);
    top: 305px;
  }
  #_map ._section .item__content #map3 {
    left: calc(50% + 160px);
    top: 105px;
  }
  #_map ._section .item__content #map4 {
    left: calc(50% - 275px);
    top: 210px;
  }
  #_map ._section .item__content #map5 {
    left: calc(50% + 260px);
    top: 210px;
  }
  #_map ._section .item__content #map6 {
    left: calc(50% + 160px);
    top: 265px;
  }
  #_map ._section .item__content #map7 {
    left: calc(50% + 10px);
    top: 210px;
  }
  #_map ._section .item__content #map8 {
    left: calc(50% - 310px);
    top: 393px;
  }
  #_map ._section .item__content #map9 {
    left: calc(50% + 215px);
    top: 393px;
  }
}
#_map .map {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #_map .map {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #_map .map {
    margin-bottom: 10px;
  }
}
#_map .map .item__bg {
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #_map .map .item__bg {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
#_map ._modal {
  display: none;
  height: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
#_map ._modal._open {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation-name: modal-open;
          animation-name: modal-open;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 5;
}
#_map ._modal._open._close {
  opacity: 1;
}
#_map ._modal._close {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation-name: modal-close;
          animation-name: modal-close;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#_map ._modal__bg {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#_map ._modal__content {
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 90%;
  border: solid 6px #e74000;
  border-radius: 10px;
  height: auto;
  margin-left: 100px;
  max-width: 600px;
  opacity: 0;
  padding: 30px;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  #_map ._modal__content {
    padding: 25px;
  }
}
@media screen and (max-width: 768px) {
  #_map ._modal__content {
    border: solid 4px #e74000;
    border-radius: 8px;
    margin-left: 0;
    max-width: 400px;
    padding: 20px;
    width: 90%;
  }
}
#_map ._modal__content ._close-modal {
  background-color: #fff;
  cursor: pointer;
  display: block;
  height: 25px;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
}
#_map ._modal__content ._close-modal:hover {
  opacity: 0.7;
}
#_map ._modal__content ._close-modal span {
  background-color: #4d4d4d;
  display: inline-block;
  height: 0.75px;
  position: absolute;
  top: 12.5px;
  right: 0;
  width: 25px;
}
#_map ._modal__content ._close-modal span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#_map ._modal__content ._close-modal span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#_map ._modal__content h2 {
  color: #e74000;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  #_map ._modal__content h2 {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  #_map ._modal__content h2 {
    font-size: 11px;
  }
}
#_map ._modal__content p {
  font-size: 18px;
  padding-top: 15px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  #_map ._modal__content p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  #_map ._modal__content p {
    font-size: 13px;
  }
}
#_map ._modal__content ._button {
  background-color: #45af36;
  border-radius: 20px;
  color: #fff;
  display: block;
  font-size: 16px;
  margin-top: 50px;
  padding: 2px 0;
  width: 260px;
}
#_map ._modal__content ._button span {
  background-image: url(../img/main/arrow-button.png);
  background-position: 96% 55%;
  background-repeat: no-repeat;
  background-size: auto 16px;
  display: inline-block;
  padding: 0 25px 0 15px;
}
@media screen and (max-width: 1024px) {
  #_map ._modal__content ._button {
    font-size: 13px;
    margin-top: 40px;
    width: 210px;
  }
  #_map ._modal__content ._button span {
    background-size: auto 14px;
    padding: 0 20px 0 12px;
  }
}
@media screen and (max-width: 768px) {
  #_map ._modal__content ._button {
    margin-top: 30px;
  }
}
#_map ._modal__content._open {
  -webkit-animation-name: modal-content-open;
          animation-name: modal-content-open;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#_map ._modal__content._open._close {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#_map ._modal__content._close {
  -webkit-animation-name: modal-content-close;
          animation-name: modal-content-close;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes modal-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modal-content-open {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes modal-content-open {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes modal-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modal-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes modal-content-close {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
@keyframes modal-content-close {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}

._info ._interview {
  padding-top: 70px;
}
@media screen and (max-width: 1024px) {
  ._info ._interview {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  ._info ._interview {
    padding-top: 30px;
  }
}
._info ._interview h2 {
  color: #4d4d4d;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  ._info ._interview h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  ._info ._interview h2 {
    font-size: 15px;
  }
}
._info ._interview__image {
  display: block;
  margin: 40px auto 0;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  ._info ._interview__image {
    margin-top: 30px;
  }
}
._info ._interview__image img {
  height: auto;
  max-width: 800px;
  width: 100%;
}
._info ._interview__button {
  background-color: #45af36;
  background-image: url(../img/main/arrow-button.png);
  background-position: 91% 55%;
  background-repeat: no-repeat;
  background-size: auto 17px;
  border-radius: 30px;
  color: #fff;
  display: block;
  font-size: 16px;
  margin: 40px auto 0;
  padding: 12px 25px 12px 0;
  text-align: center;
  width: 340px;
}
@media screen and (max-width: 768px) {
  ._info ._interview__button {
    background-position: 92% 55%;
    background-size: auto 15px;
    font-size: 13px;
    margin-top: 25px;
    padding: 9px 20px 9px 0;
    width: 300px;
  }
}
._info ._interview__button span {
  display: inline-block;
  margin: 0 auto;
  padding: 0 15px 0 15px;
}
._info ._section .item {
  margin-top: 70px;
  padding: 30px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  ._info ._section .item {
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  ._info ._section .item {
    margin-top: 40px;
    padding: 20px 0 0;
  }
}
._info ._section .item__title h2 {
  font-size: 38px;
}
@media screen and (max-width: 1024px) {
  ._info ._section .item__title h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  ._info ._section .item__title h2 {
    font-size: 24px;
  }
}
._info ._section .item__content {
  margin: 0 auto;
  width: 90%;
}
._info ._section .item__content table {
  margin: 100px auto 0;
  max-width: 750px;
  width: 70%;
}
._info ._section .item__content table th, ._info ._section .item__content table td {
  border-bottom: solid 25px #fff6f2;
  font-size: 15px;
  padding: 20px 20px;
}
._info ._section .item__content table th {
  background-color: #45af36;
  color: #fff;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
._info ._section .item__content table th span {
  display: block;
  font-size: 11px;
  font-weight: 400;
}
._info ._section .item__content table td {
  background-color: #fff;
  text-align: left;
}
._info ._section .item__content table td a {
  color: #45af36;
}
._info ._section .item__content table td span {
  font-weight: 700;
}
._info ._section .item__content table td ul {
  width: auto;
}
@media screen and (max-width: 1024px) {
  ._info ._section .item__content table {
    width: 90%;
  }
  ._info ._section .item__content table th, ._info ._section .item__content table td {
    border-bottom-width: 20px;
    font-size: 13px;
    padding: 20px 15px;
  }
  ._info ._section .item__content table th span {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  ._info ._section .item__content table {
    margin: 70px auto 0;
  }
  ._info ._section .item__content table th, ._info ._section .item__content table td {
    display: block;
    font-size: 11px;
    padding: 10px 15px;
  }
  ._info ._section .item__content table th {
    border-bottom: none;
  }
  ._info ._section .item__content table th span {
    font-size: 9px;
  }
}
._info ._section .item__content #btn-entry {
  background-color: #45af36;
  background-image: url(../img/main/arrow-button.png);
  background-position: 91% 55%;
  background-repeat: no-repeat;
  background-size: auto 14px;
  border-radius: 20px;
  color: #fff;
  display: block;
  font-size: 16px;
  margin-top: 20px;
  padding: 4px 0;
  text-align: center;
  width: 200px;
}
@media screen and (max-width: 768px) {
  ._info ._section .item__content #btn-entry {
    background-size: auto 12px;
    font-size: 13px;
    margin: 15px 0 5px;
  }
}
._info ._section .item__content #btn-entry span {
  display: inline-block;
  margin: 0 auto;
  padding: 0 15px 0 15px;
}
._info ._section .item__bg {
  background-color: #fff6f2;
  height: 100%;
  position: absolute;
  top: 40px;
  width: 90%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  ._info ._section .item__bg {
    top: 35px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 768px) {
  ._info ._section .item__bg {
    top: 25px;
  }
}
._info .info-1 {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  ._info .info-1 {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 768px) {
  ._info .info-1 {
    margin-bottom: 50px;
  }
}
._info .info-1 .item__bg {
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
  right: 0;
}
@media screen and (max-width: 768px) {
  ._info .info-1 .item__bg {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
._info .info-2 {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  ._info .info-2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  ._info .info-2 {
    margin-bottom: 50px;
  }
}
._info .info-2 .item__bg {
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
  left: 0;
}
@media screen and (max-width: 768px) {
  ._info .info-2 .item__bg {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}
._info .info-2 .item__content {
  text-align: left;
  margin: 0 auto;
  width: 90%;
}
._info .info-2 .item__content .flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 750px;
  padding-top: 100px;
  width: 70%;
}
._info .info-2 .item__content .flow__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #45af36;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 60%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 150px;
  position: relative;
  width: 17.5%;
  /*&__num {
    color: $white;
    font-size: 120px;
    font-weight: $bold;
    line-height: 1;
    height: 100%;
    opacity: .2;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
  }*/
}
._info .info-2 .item__content .flow__item__text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.7;
  height: 100%;
  text-align: center;
  width: 100%;
}
._info .info-2 .item__content .flow__item__text p {
  width: 100%;
}
._info .info-2 .item__content .flow__arrow {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 150px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3%;
}
._info .info-2 .item__content .flow ._caution {
  font-size: 15px;
  padding-top: 30px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  ._info .info-2 .item__content .flow ._caution {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  ._info .info-2 .item__content .flow ._caution {
    font-size: 11px;
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  ._info .info-2 .item__content .flow {
    width: 90%;
  }
  ._info .info-2 .item__content .flow__item__text {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  ._info .info-2 .item__content .flow {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 70px;
  }
  ._info .info-2 .item__content .flow__item {
    margin: 0 auto;
    width: 45%;
  }
  ._info .info-2 .item__content .flow__item__text {
    font-size: 11px;
  }
  ._info .info-2 .item__content .flow__arrow {
    padding: 10px 0;
    width: 100%;
  }
}
._info .entry {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  ._info .entry {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  ._info .entry {
    margin-bottom: 0;
  }
}
._info .entry ._inner {
  padding: 0;
}
._info .entry .form-group {
  text-align: left;
}
._info .entry .form-title {
  color: #424242;
  font-size: 1.9rem;
  font-weight: normal;
  margin-bottom: 2rem;
  text-align: center;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  ._info .entry .form-title {
    font-size: 1.4rem;
  }
}
._info .entry legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
._info .entry legend {
  color: #424242;
  font-size: 1.1rem;
  font-weight: bold;
  word-break: break-word;
  text-align: left;
}
@media screen and (max-width: 768px) {
  ._info .entry label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
._info .entry small {
  line-height: 1.2;
}
._info .entry small, ._info .entry .small {
  font-size: 70%;
  font-weight: normal;
}
._info .entry .card-body {
  font-size: 1em;
}
._info .entry iframe {
  border: solid 1px #45af36;
  height: 3160px;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  ._info .entry iframe {
    height: 3350px;
  }
}

#_newgrads ._section .item__bg {
  background-color: #fff6f2;
}

#_faq .faq ._inner {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 860px;
  padding: 70px 0 0;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  #_faq .faq ._inner {
    padding: 50px 0 0;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 768px) {
  #_faq .faq ._inner {
    padding: 30px 20px 0;
    width: 100%;
  }
}
#_faq .faq ._inner._pc {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 768px) {
  #_faq .faq ._inner._pc {
    display: none !important;
  }
}
#_faq .faq ._inner._sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  #_faq .faq ._inner._sp {
    display: block !important;
  }
}
#_faq .faq ._inner ._left {
  padding-right: 20px;
  width: 50%;
}
#_faq .faq ._inner ._right {
  padding-left: 20px;
  width: 50%;
}
#_faq .faq .item {
  margin-bottom: 40px;
  padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  #_faq .faq .item {
    margin-bottom: 30px;
    padding-top: 80px;
  }
}
#_faq .faq .item__content {
  width: 100%;
}
#_faq .faq .item__content .qa {
  cursor: pointer;
  margin-bottom: 25px;
}
#_faq .faq .item__content .q, #_faq .faq .item__content .a {
  background-color: #fff6f2;
  padding: 20px 20px;
}
#_faq .faq .item__content .q dl, #_faq .faq .item__content .a dl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../../img/faq/q-icon.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 23px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#_faq .faq .item__content .q dl dt, #_faq .faq .item__content .a dl dt {
  padding-top: 5px;
  width: 17px;
}
#_faq .faq .item__content .q dl dd, #_faq .faq .item__content .a dl dd {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  padding-right: 30px;
  text-align: left;
  width: calc(100% - 35px);
}
@media screen and (max-width: 1024px) {
  #_faq .faq .item__content .q dl, #_faq .faq .item__content .a dl {
    background-size: 19px auto;
  }
  #_faq .faq .item__content .q dl dt, #_faq .faq .item__content .a dl dt {
    width: 15px;
  }
  #_faq .faq .item__content .q dl dd, #_faq .faq .item__content .a dl dd {
    font-size: 13px;
    padding-right: 25px;
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  #_faq .faq .item__content .q, #_faq .faq .item__content .a {
    padding: 15px 15px;
  }
  #_faq .faq .item__content .q dl, #_faq .faq .item__content .a dl {
    background-size: 17px auto;
  }
  #_faq .faq .item__content .q dl dt img, #_faq .faq .item__content .a dl dt img {
    height: auto;
    width: 14px;
  }
  #_faq .faq .item__content .q dl dd, #_faq .faq .item__content .a dl dd {
    font-size: 12px;
    padding-right: 20px;
    width: calc(100% - 25px);
  }
}
#_faq .faq .item__content .q:hover {
  opacity: 0.7;
}
#_faq .faq .item__content .q._on dl {
  background-image: url(../../img/faq/q-icon_on.png);
}
#_faq .faq .item__content .a {
  background-color: #fff;
  display: none;
  opacity: 0;
  padding: 20px 0 0 20px;
}
@media screen and (max-width: 768px) {
  #_faq .faq .item__content .a {
    padding: 15px 0 0 15px;
  }
}
#_faq .faq .item__content .a dl {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: none;
}
#_faq .faq .item__content .a dl dt {
  padding-top: 0;
}
#_faq .faq .item__content .a dl dd {
  color: #45af36;
  padding-right: 0;
}
#_faq .faq .item__content .a dl dd a {
  color: #45af36;
  text-decoration: underline;
}
#_faq .faq .item__content .a._on {
  -webkit-animation-name: faq-a;
          animation-name: faq-a;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: block;
}
@-webkit-keyframes faq-a {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes faq-a {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

._people main ._inner {
  max-width: 860px;
  padding: 0;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  ._people main ._inner {
    width: calc(100% - 40px);
  }
}
._people .visual {
  font-size: 0;
  padding-top: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  ._people .visual {
    padding-top: 20px;
  }
}
._people .visual picture {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  max-height: 500px;
  height: 40vw;
  width: 100%;
}
._people .visual ._inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@-webkit-keyframes fadein-slide-left {
  0% {
    opacity: 0;
    width: 0;
  }
  50% {
    opacity: 0.2;
    width: 376px;
  }
  100% {
    opacity: 1;
    width: 376px;
  }
}
@keyframes fadein-slide-left {
  0% {
    opacity: 0;
    width: 0;
  }
  50% {
    opacity: 0.2;
    width: 376px;
  }
  100% {
    opacity: 1;
    width: 376px;
  }
}
._people .visual__catch {
  margin-top: -120px;
  opacity: 0;
  overflow: hidden;
}
._people .visual__catch._scrollin {
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
._people .visual__catch div {
  background: rgba(231, 64, 0, 0.9);
  color: #fff;
  font-size: 27px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding: 30px 35px;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  ._people .visual__catch {
    margin-top: -100px;
  }
  ._people .visual__catch div {
    font-size: 23px;
    padding: 25px　30px;
  }
}
@media screen and (max-width: 768px) {
  ._people .visual__catch {
    margin-top: -50px;
  }
  ._people .visual__catch div {
    font-size: 12px;
    padding: 13px 8px;
  }
}
._people .visual__data {
  opacity: 0;
}
._people .visual__data._scrollin {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
._people .visual__data h2 {
  color: #e74000;
  font-size: 21px;
  line-height: 1.8;
  padding-top: 15px;
  text-align: right;
}
._people .visual__data h2 span {
  font-weight: 900;
}
._people .visual__data h2 small {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  ._people .visual__data h2 small {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  ._people .visual__data h2 small {
    font-size: 9px;
  }
}
._people .visual__data p {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  padding-top: 10px;
  text-align: right;
}
._people .visual__data p span {
  font-weight: 500;
}
._people .visual__data p.note {
  font-size: 12px;
  padding-top: 6px;
}
@media screen and (max-width: 1024px) {
  ._people .visual__data h2 {
    font-size: 17px;
  }
  ._people .visual__data p {
    font-size: 16px;
  }
  ._people .visual__data p.note {
    font-size: 10px;
    padding-top: 4px;
  }
  ._people .visual__data small {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  ._people .visual__data h2 {
    font-size: 9.5px;
    padding-top: 10px;
  }
  ._people .visual__data p {
    font-size: 9px;
    padding-top: 3px;
  }
  ._people .visual__data p.note {
    font-size: 6px;
  }
}
._people .visual__button {
  position: absolute;
  top: -120px;
  right: 0;
}
._people .visual__button a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
._people .visual__button a p {
  background-color: #fff;
  color: #45af36;
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-right: 7px;
  padding: 12px;
}
._people .visual__button a span {
  background-color: #fff;
  display: inline-block;
  padding: 12px 14px;
}
@media screen and (max-width: 1024px) {
  ._people .visual__button {
    top: -100px;
  }
  ._people .visual__button a p {
    font-size: 18px;
    margin-right: 6px;
    padding: 10px;
  }
  ._people .visual__button a span {
    padding: 10px 12px;
  }
  ._people .visual__button a span img {
    height: 18px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  ._people .visual__button {
    top: -50px;
  }
  ._people .visual__button a p {
    font-size: 12px;
    margin-right: 5px;
    padding: 8px;
  }
  ._people .visual__button a span {
    padding: 8px 10px;
  }
  ._people .visual__button a span img {
    height: 12px;
  }
}
._people .qa ._qa {
  cursor: pointer;
  opacity: 0;
  padding-top: 50px;
}
._people .qa ._qa._scrollin {
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 1024px) {
  ._people .qa ._qa {
    padding-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  ._people .qa ._qa {
    padding-top: 25px;
  }
}
._people .qa ._qa__q {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
._people .qa ._qa__q .question {
  background-image: url(../../people/img/balloon.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 114px 102px;
  height: 102px;
  width: 114px;
}
._people .qa ._qa__q .question p {
  color: #e74000;
  font-size: 32px;
  line-height: 1;
  padding-top: 35px;
  padding-right: 11px;
  text-align: center;
}
._people .qa ._qa__q .question .line-wave {
  -webkit-animation-name: q-line-wave-pc;
          animation-name: q-line-wave-pc;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  background-image: url(../../people/img/line-wave.png);
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: auto 4px;
  height: 4px;
  margin: 13px 26px 0 22px;
  width: 60px;
}
@-webkit-keyframes q-line-wave-pc {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -10px 0;
  }
}
@keyframes q-line-wave-pc {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -10px 0;
  }
}
@media screen and (max-width: 1024px) {
  ._people .qa ._qa__q .question {
    background-size: 88px 79px;
    height: 79px;
    width: 88px;
  }
  ._people .qa ._qa__q .question p {
    font-size: 26px;
    padding-top: 25px;
    padding-right: 8px;
  }
  ._people .qa ._qa__q .question .line-wave {
    -webkit-animation-name: q-line-wave-tb;
            animation-name: q-line-wave-tb;
    background-size: auto 3px;
    margin: 12px 20px 0 16px;
    width: 46px;
  }
  @-webkit-keyframes q-line-wave-tb {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -7px 0;
    }
  }
  @keyframes q-line-wave-tb {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -7px 0;
    }
  }
}
@media screen and (max-width: 768px) {
  ._people .qa ._qa__q .question {
    background-size: 55px 49px;
    height: 49px;
    width: 55px;
  }
  ._people .qa ._qa__q .question p {
    font-size: 16px;
    padding-top: 17px;
    padding-right: 3px;
  }
  ._people .qa ._qa__q .question .line-wave {
    -webkit-animation-name: q-line-wave-sp;
            animation-name: q-line-wave-sp;
    background-size: auto 2px;
    margin: 6px 13px 0 11px;
    width: 27px;
  }
  @-webkit-keyframes q-line-wave-sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -5px 0;
    }
  }
  @keyframes q-line-wave-sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -5px 0;
    }
  }
}
._people .qa ._qa__q .text {
  width: calc(100% - 140px);
}
._people .qa ._qa__q .text p {
  font-size: 18.5px;
  text-align: left;
}
._people .qa ._qa__q .text p span {
  background-image: url(../../people/img/text-underline.png);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 12.5px;
}
@media screen and (max-width: 1024px) {
  ._people .qa ._qa__q .text {
    width: calc(100% - 110px);
  }
  ._people .qa ._qa__q .text p {
    font-size: 16px;
  }
  ._people .qa ._qa__q .text p span {
    background-size: 10.5px;
  }
}
@media screen and (max-width: 768px) {
  ._people .qa ._qa__q .text {
    width: calc(100% - 65px);
  }
  ._people .qa ._qa__q .text p {
    font-size: 12px;
    line-height: 1.7;
  }
  ._people .qa ._qa__q .text p span {
    background-size: 7.5px;
  }
}
._people .qa ._qa__q:hover {
  opacity: 0.7;
}
._people .qa ._qa__q:hover .question, ._people .qa ._qa__q._on .question {
  background-image: url(../../people/img/balloon_on.png);
}
._people .qa ._qa__q:hover .question p, ._people .qa ._qa__q._on .question p {
  color: #fff;
}
._people .qa ._qa__q:hover .question .line-wave, ._people .qa ._qa__q._on .question .line-wave {
  background-image: url(../../people/img/line-wave_on.png);
}
._people .qa ._qa__a {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0;
}
._people .qa ._qa__a .answer {
  padding-top: 25px;
  padding-right: 11px;
  width: 114px;
}
._people .qa ._qa__a .text {
  padding-top: 15px;
  width: calc(100% - 140px);
}
._people .qa ._qa__a .text p {
  color: #e74000;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}
._people .qa ._qa__a .text p span {
  background-image: url(../../people/img/text-underline.png);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 9.5px;
}
._people .qa ._qa__a .line {
  background-image: url(../../people/img/line-qa.png);
  background-position: 0;
  background-repeat: repeat-x;
  background-size: auto 4px;
  margin-top: 40px;
  height: 4px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  ._people .qa ._qa__a .answer {
    padding-top: 20px;
    padding-right: 8px;
    width: 88px;
  }
  ._people .qa ._qa__a .answer img {
    height: auto;
    width: 100%;
  }
  ._people .qa ._qa__a .text {
    padding-top: 10px;
    width: calc(100% - 110px);
  }
  ._people .qa ._qa__a .text p {
    font-size: 13px;
  }
  ._people .qa ._qa__a .text p span {
    background-size: 8.5px;
  }
}
@media screen and (max-width: 768px) {
  ._people .qa ._qa__a .answer {
    padding-top: 19px;
    padding-right: 3px;
    width: 53px;
  }
  ._people .qa ._qa__a .answer img {
    height: auto;
    width: 100%;
  }
  ._people .qa ._qa__a .text {
    padding-top: 10px;
    width: calc(100% - 65px);
  }
  ._people .qa ._qa__a .text p {
    font-size: 12px;
  }
  ._people .qa ._qa__a .text p span {
    background-size: 6.5px;
  }
  ._people .qa ._qa__a .line {
    background-size: auto 2px;
    margin-top: 20px;
    height: 2px;
  }
}
._people .qa ._qa__a._on {
  -webkit-animation-name: faq-a;
          animation-name: faq-a;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
._people .qa ._comment {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 0;
  padding-top: 50px;
}
._people .qa ._comment._scrollin {
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 1024px) {
  ._people .qa ._comment {
    padding-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  ._people .qa ._comment {
    padding-top: 25px;
  }
}
._people .qa ._comment__picture picture {
  display: inline-block;
  height: 102px;
  padding-top: 7px;
  width: 114px;
}
@media screen and (max-width: 1024px) {
  ._people .qa ._comment__picture picture {
    height: 79px;
    width: 88px;
  }
}
@media screen and (max-width: 768px) {
  ._people .qa ._comment__picture picture {
    height: 49px;
    width: 55px;
  }
}
._people .qa ._comment__picture picture img {
  height: auto;
  width: 100%;
}
._people .qa ._comment__text {
  font-size: 0;
  width: calc(100% - 140px);
}
._people .qa ._comment__text p {
  color: #45af36;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}
._people .qa ._comment__text p span:nth-child(1) {
  color: #4d4d4d;
  display: block;
  font-size: 18.5px;
  font-weight: 300;
  padding-bottom: 10px;
}
._people .qa ._comment__text p span:nth-child(n+2) {
  background-image: url(../../people/img/2/text-underline.png);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 9.5px;
}
@media screen and (max-width: 1024px) {
  ._people .qa ._comment__text {
    width: calc(100% - 110px);
  }
  ._people .qa ._comment__text p {
    font-size: 13px;
  }
  ._people .qa ._comment__text p span:nth-child(1) {
    font-size: 16px;
    padding-bottom: 7.5px;
  }
  ._people .qa ._comment__text p span:nth-child(n+2) {
    background-size: 8.5px;
  }
}
@media screen and (max-width: 768px) {
  ._people .qa ._comment__text {
    width: calc(100% - 65px);
  }
  ._people .qa ._comment__text p {
    font-size: 12px;
  }
  ._people .qa ._comment__text p span:nth-child(1) {
    font-size: 13px;
    padding-bottom: 5px;
  }
  ._people .qa ._comment__text p span:nth-child(n+2) {
    background-size: 6.5px;
  }
}
._people ._image {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  height: 40vw;
  margin-top: 50px;
  max-height: 400px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  ._people ._image {
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  ._people ._image {
    margin-top: 30px;
  }
}
._people .message {
  border: solid 1px #e74000;
  margin-top: 70px;
  opacity: 0;
  padding: 10px 25px 20px;
}
._people .message._scrollin {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
._people .message h2 {
  background-image: url(../../people/img/message-balloon.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 75px auto;
  color: #e74000;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
  padding-bottom: 15px;
}
._people .message h2 span {
  display: block;
}
._people .message p {
  color: #e74000;
  font-size: 14px;
  padding-top: 15px;
}
@media screen and (max-width: 1024px) {
  ._people .message {
    margin-top: 50px;
    padding: 10px 20px 15px;
  }
  ._people .message h2 {
    background-size: 70px auto;
    font-size: 19px;
  }
  ._people .message p {
    font-size: 12px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  ._people .message {
    margin-top: 30px;
    padding: 10px 15px 15px;
  }
  ._people .message h2 {
    background-size: 40px auto;
    font-size: 12px;
    padding-bottom: 10px;
  }
  ._people .message h2 span img {
    height: 9px;
    width: auto;
  }
  ._people .message p {
    font-size: 11px;
    text-align: left;
  }
}
._people ._modal {
  display: none;
  height: 100%;
  opacity: 0;
  padding: 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  ._people ._modal {
    padding: 20px;
  }
}
._people ._modal._open {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation-name: modal-open;
          animation-name: modal-open;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 5;
}
._people ._modal._open._close {
  opacity: 1;
}
._people ._modal._close {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation-name: modal-close;
          animation-name: modal-close;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
._people ._modal__bg {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
._people ._modal__content {
  height: auto;
  max-width: 800px;
  opacity: 0;
  position: relative;
  width: 75%;
}
@media screen and (max-width: 768px) {
  ._people ._modal__content {
    margin-left: 0;
    width: 100%;
  }
}
._people ._modal__content ._close-modal {
  cursor: pointer;
  display: block;
  height: 30px;
  position: absolute;
  top: -40px;
  right: -3px;
  width: 30px;
}
._people ._modal__content ._close-modal:hover {
  opacity: 0.7;
}
._people ._modal__content ._close-modal span {
  background-color: #fff;
  display: inline-block;
  height: 1px;
  position: absolute;
  top: 14.5px;
  right: 0;
  width: 30px;
}
._people ._modal__content ._close-modal span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
._people ._modal__content ._close-modal span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
._people ._modal__content .movie-wrap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
._people ._modal__content .movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
._people ._modal__content._open {
  -webkit-animation-name: modal-content-open;
          animation-name: modal-content-open;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: block;
}
._people ._modal__content._open._close {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
._people ._modal__content._close {
  -webkit-animation-name: modal-content-close;
          animation-name: modal-content-close;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@keyframes modal-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-content-open {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes modal-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modal-content-close {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}

#_people-2 .visual__catch div,
#_people-3 .visual__catch div,
#_people-4 .visual__catch div {
  background: rgba(69, 175, 54, 0.9);
}
#_people-2 .visual__data h2,
#_people-3 .visual__data h2,
#_people-4 .visual__data h2 {
  color: #45af36;
}
#_people-2 .visual__button a p,
#_people-3 .visual__button a p,
#_people-4 .visual__button a p {
  color: #e74000;
}
#_people-2 .qa ._qa__q .question,
#_people-3 .qa ._qa__q .question,
#_people-4 .qa ._qa__q .question {
  background-image: url(../../people/img/2/balloon.png);
}
#_people-2 .qa ._qa__q .question p,
#_people-3 .qa ._qa__q .question p,
#_people-4 .qa ._qa__q .question p {
  color: #45af36;
}
#_people-2 .qa ._qa__q .question .line-wave,
#_people-3 .qa ._qa__q .question .line-wave,
#_people-4 .qa ._qa__q .question .line-wave {
  background-image: url(../../people/img/2/line-wave.png);
}
#_people-2 .qa ._qa__q .text p span,
#_people-3 .qa ._qa__q .text p span,
#_people-4 .qa ._qa__q .text p span {
  background-image: url(../../people/img/2/text-underline.png);
}
#_people-2 .qa ._qa__q:hover .question, #_people-2 .qa ._qa__q._on .question,
#_people-3 .qa ._qa__q:hover .question,
#_people-3 .qa ._qa__q._on .question,
#_people-4 .qa ._qa__q:hover .question,
#_people-4 .qa ._qa__q._on .question {
  background-image: url(../../people/img/2/balloon_on.png);
}
#_people-2 .qa ._qa__q:hover .question p, #_people-2 .qa ._qa__q._on .question p,
#_people-3 .qa ._qa__q:hover .question p,
#_people-3 .qa ._qa__q._on .question p,
#_people-4 .qa ._qa__q:hover .question p,
#_people-4 .qa ._qa__q._on .question p {
  color: #fff;
}
#_people-2 .qa ._qa__q:hover .question .line-wave, #_people-2 .qa ._qa__q._on .question .line-wave,
#_people-3 .qa ._qa__q:hover .question .line-wave,
#_people-3 .qa ._qa__q._on .question .line-wave,
#_people-4 .qa ._qa__q:hover .question .line-wave,
#_people-4 .qa ._qa__q._on .question .line-wave {
  background-image: url(../../people/img/line-wave_on.png);
}
#_people-2 .qa ._qa__a .text p,
#_people-3 .qa ._qa__a .text p,
#_people-4 .qa ._qa__a .text p {
  color: #45af36;
}
#_people-2 .qa ._qa__a .text p span,
#_people-3 .qa ._qa__a .text p span,
#_people-4 .qa ._qa__a .text p span {
  background-image: url(../../people/img/2/text-underline.png);
}
#_people-2 .qa ._qa__a .line,
#_people-3 .qa ._qa__a .line,
#_people-4 .qa ._qa__a .line {
  background-image: url(../../people/img/2/line-qa.png);
}
#_people-2 .message,
#_people-3 .message,
#_people-4 .message {
  border: solid 1px #45af36;
}
#_people-2 .message h2,
#_people-3 .message h2,
#_people-4 .message h2 {
  background-image: url(../../people/img/2/message-balloon.png);
  color: #45af36;
}
#_people-2 .message p,
#_people-3 .message p,
#_people-4 .message p {
  color: #45af36;
}

#_people-4 .visual__data h2 {
  line-height: 1.7;
  padding-left: 10px;
}
#_people-4 .message h2 {
  letter-spacing: 0.15em;
}

#_people-5 .visual__catch div {
  letter-spacing: 0;
  padding: 30px 30px;
}
@media screen and (max-width: 1024px) {
  #_people-5 .visual__catch div {
    padding: 25px　25px;
  }
}
@media screen and (max-width: 768px) {
  #_people-5 .visual__catch div {
    padding: 13px 8px;
  }
}
@media screen and (max-width: 768px) {
  #_people-5 .visual__catch div span {
    letter-spacing: 0;
  }
}

/*-------------------- .modal --------------------*/
.modal {
  padding: 50px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .modal {
    padding: 20px 0;
  }
}
.modal .close-entry1Modal,
.modal .close-entry2Modal {
  height: 65px;
}
.modal .close-entry1Modal .closebt,
.modal .close-entry2Modal .closebt {
  cursor: pointer;
  height: 65px;
  margin-right: 50px;
  margin-left: auto;
  position: relative;
  width: 65px;
}
.modal .close-entry1Modal span,
.modal .close-entry2Modal span {
  background-color: #fff;
  height: 1px;
  position: absolute;
  top: 31px;
  right: -13px;
  width: 90px;
}
.modal .close-entry1Modal span:nth-child(1),
.modal .close-entry2Modal span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal .close-entry1Modal span:nth-child(2),
.modal .close-entry2Modal span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .modal .close-entry1Modal,
  .modal .close-entry2Modal {
    height: 32px;
  }
  .modal .close-entry1Modal .closebt,
  .modal .close-entry2Modal .closebt {
    height: 32px;
    margin-right: 20px;
    width: 32px;
  }
  .modal .close-entry1Modal span,
  .modal .close-entry2Modal span {
    top: 15px;
    right: -6px;
    width: 45px;
  }
}
.modal .closeSet {
  padding: 0 0 100px;
}
.modal .closeSet .closebt {
  margin: 80px 0 0;
}
.modal .closeSet span {
  color: #fff;
  display: block;
  font-size: 26px;
  font-weight: normal;
}
.modal .modal-container {
  margin: 70px auto 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .modal .modal-container {
    margin: 30px auto 0;
  }
}
.modal .modal-container .disp {
  display: none;
}
.modal .modal-container ._title h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .modal .modal-container ._title h2 {
    font-size: 18px;
  }
}
.modal .modal-container ._list {
  border-top: solid 2px #f2ad8b;
  border-bottom: solid 2px #f2ad8b;
  margin: 50px auto;
  width: 600px;
}
.modal .modal-container ._list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .modal .modal-container ._list ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.modal .modal-container ._list ul li {
  font-size: 0;
  margin: 10px 20px;
  max-width: 240px;
  width: 240px;
}
.modal .modal-container ._list ul li a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal .modal-container ._list ul li img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .modal .modal-container ._list {
    margin: 30px auto;
    width: calc(100% - 40px);
  }
  .modal .modal-container ._list ul {
    padding: 20px 0;
  }
  .modal .modal-container ._list ul li {
    display: block;
    margin: 10px 20px;
    width: 100%;
  }
}

/*-------------------- #entryModal --------------------*/
#entry1Modal {
  background-color: rgba(231, 64, 0, 0.96) !important;
}
#entry2Modal {
  background-color: rgba(231, 64, 0, 0.96) !important;
}
#entry2Modal .modal-container ._list ul li {
  margin: 11.5px 10px;
  max-width: 180px;
  width: 180px;
}
@media screen and (max-width: 768px) {
  #entry2Modal .modal-container ._list ul li {
    margin: 10px 20px;
    max-width: 240px;
    width: 100%;
  }
}

/*--------------------------------------------------------------------------
footer
--------------------------------------------------------------------------*/
#_home .footer {
  margin-top: -50px;
}
@media screen and (max-width: 1024px) {
  #_home .footer {
    margin-top: -40px;
  }
}
@media screen and (max-width: 768px) {
  #_home .footer {
    margin-top: 0;
  }
}

._page .footer {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  ._page .footer {
    margin-top: 30px;
  }
}

.footer {
  background-color: #e74000;
  height: 100%;
  margin: 0;
  padding: 70px 0 0;
  padding-left: 100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer ._inner {
    padding: 0;
    width: 100%;
  }
}
.footer h2 {
  color: #fff;
  font-size: 29px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .footer h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .footer h2._pc {
    display: none;
  }
}
.footer h2._sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer h2._sp {
    display: block;
  }
  .footer h2._sp img {
    height: 30px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0 0;
  }
}
.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0 90px;
}
@media screen and (min-width: 769px) {
  .footer ul {
    gap: 30px;
  }
}
.footer ul li {
  width: 100%;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
}
.footer ul li a {
  background-image: url(../img/footer/arrow.png);
  background-position: 96% center;
  background-repeat: no-repeat;
  background-size: 9px auto;
  color: #fff;
  display: block;
  font-weight: 500;
  padding: 30px 10px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .footer ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 0 50px;
  }
  .footer ul li {
    border-bottom: none;
    width: 100%;
  }
  .footer ul li:nth-last-child(1) {
    border-bottom: solid 2px #fff;
  }
  .footer ul li a {
    background-size: 6px auto;
    padding: 20px 10px;
    text-align: center;
  }
}
.footer__nav {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__nav ul {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .footer__nav ul {
    margin: 0 auto;
    padding: 15px;
    /*margin: 0 auto;
    padding: 20px 20px 20px 32px;
    width: 85%;*/
  }
}
.footer__nav ul li {
  margin-right: 25px;
  width: auto;
}
.footer__nav ul li a {
  background-image: url(../img/footer/blank.png);
  background-position: 0 55%;
  background-repeat: no-repeat;
  background-size: 8px;
  color: #808080;
  display: block;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  padding: 0 0 0 12px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .footer__nav ul li {
    margin-right: 15px;
  }
  .footer__nav ul li a {
    font-size: 10px;
    padding: 0 0 0 10px;
    text-align: left;
  }
}
.footer__nav .copyright {
  background-color: #fff6f2;
  padding: 30px 30px;
}
.footer__nav .copyright p {
  color: #808080;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .footer__nav .copyright {
    padding: 0;
    width: 100%;
  }
  .footer__nav .copyright p {
    font-size: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
  }
}