@charset "UTF-8";

/* ----------loading--------------------------------------------------------------------*/
/* ローディングの背景部分のCSS */
.loader {
  background: #fff;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  transition: all 0.5s;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
/* ローディングのアニメーション部分のCSS (https://projects.lukehaas.me/css-loaders/) */
.loader-animation {
  font-size: 11px;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  position: absolute;
  text-indent: -9999em;
  animation: load5 1.1s infinite ease;
  transform: translateZ(0);
  left: 50%;
  top: 50%;
  margin-top: 0.5rem;
  margin-left: -0.5rem;
}
@keyframes load5 {
  0%,
  100% {
    box-shadow:
      0em -2.6em 0em 0em #dbdbdb,
      1.8em -1.8em 0 0em rgba(219, 219, 219, 0.2),
      2.5em 0em 0 0em rgba(219, 219, 219, 0.2),
      1.75em 1.75em 0 0em rgba(219, 219, 219, 0.2),
      0em 2.5em 0 0em rgba(219, 219, 219, 0.2),
      -1.8em 1.8em 0 0em rgba(219, 219, 219, 0.2),
      -2.6em 0em 0 0em rgba(219, 219, 219, 0.5),
      -1.8em -1.8em 0 0em rgba(219, 219, 219, 0.7);
  }
  12.5% {
    box-shadow:
      0em -2.6em 0em 0em rgba(219, 219, 219, 0.7),
      1.8em -1.8em 0 0em #dbdbdb,
      2.5em 0em 0 0em rgba(219, 219, 219, 0.2),
      1.75em 1.75em 0 0em rgba(219, 219, 219, 0.2),
      0em 2.5em 0 0em rgba(219, 219, 219, 0.2),
      -1.8em 1.8em 0 0em rgba(219, 219, 219, 0.2),
      -2.6em 0em 0 0em rgba(219, 219, 219, 0.2),
      -1.8em -1.8em 0 0em rgba(219, 219, 219, 0.5);
  }
  25% {
    box-shadow:
      0em -2.6em 0em 0em rgba(219, 219, 219, 0.5),
      1.8em -1.8em 0 0em rgba(219, 219, 219, 0.7),
      2.5em 0em 0 0em #dbdbdb,
      1.75em 1.75em 0 0em rgba(219, 219, 219, 0.2),
      0em 2.5em 0 0em rgba(219, 219, 219, 0.2),
      -1.8em 1.8em 0 0em rgba(219, 219, 219, 0.2),
      -2.6em 0em 0 0em rgba(219, 219, 219, 0.2),
      -1.8em -1.8em 0 0em rgba(219, 219, 219, 0.2);
  }
  37.5% {
    box-shadow:
      0em -2.6em 0em 0em rgba(219, 219, 219, 0.2),
      1.8em -1.8em 0 0em rgba(219, 219, 219, 0.5),
      2.5em 0em 0 0em rgba(219, 219, 219, 0.7),
      1.75em 1.75em 0 0em #dbdbdb,
      0em 2.5em 0 0em rgba(219, 219, 219, 0.2),
      -1.8em 1.8em 0 0em rgba(219, 219, 219, 0.2),
      -2.6em 0em 0 0em rgba(219, 219, 219, 0.2),
      -1.8em -1.8em 0 0em rgba(219, 219, 219, 0.2);
  }
  50% {
    box-shadow:
      0em -2.6em 0em 0em rgba(219, 219, 219, 0.2),
      1.8em -1.8em 0 0em rgba(219, 219, 219, 0.2),
      2.5em 0em 0 0em rgba(219, 219, 219, 0.5),
      1.75em 1.75em 0 0em rgba(219, 219, 219, 0.7),
      0em 2.5em 0 0em #dbdbdb,
      -1.8em 1.8em 0 0em rgba(219, 219, 219, 0.2),
      -2.6em 0em 0 0em rgba(219, 219, 219, 0.2),
      -1.8em -1.8em 0 0em rgba(219, 219, 219, 0.2);
  }
  62.5% {
    box-shadow:
      0em -2.6em 0em 0em rgba(219, 219, 219, 0.2),
      1.8em -1.8em 0 0em rgba(219, 219, 219, 0.2),
      2.5em 0em 0 0em rgba(219, 219, 219, 0.2),
      1.75em 1.75em 0 0em rgba(219, 219, 219, 0.5),
      0em 2.5em 0 0em rgba(219, 219, 219, 0.7),
      -1.8em 1.8em 0 0em #dbdbdb,
      -2.6em 0em 0 0em rgba(219, 219, 219, 0.2),
      -1.8em -1.8em 0 0em rgba(219, 219, 219, 0.2);
  }
  75% {
    box-shadow:
      0em -2.6em 0em 0em rgba(219, 219, 219, 0.2),
      1.8em -1.8em 0 0em rgba(219, 219, 219, 0.2),
      2.5em 0em 0 0em rgba(219, 219, 219, 0.2),
      1.75em 1.75em 0 0em rgba(219, 219, 219, 0.2),
      0em 2.5em 0 0em rgba(219, 219, 219, 0.5),
      -1.8em 1.8em 0 0em rgba(219, 219, 219, 0.7),
      -2.6em 0em 0 0em #dbdbdb,
      -1.8em -1.8em 0 0em rgba(219, 219, 219, 0.2);
  }
  87.5% {
    box-shadow:
      0em -2.6em 0em 0em rgba(219, 219, 219, 0.2),
      1.8em -1.8em 0 0em rgba(219, 219, 219, 0.2),
      2.5em 0em 0 0em rgba(219, 219, 219, 0.2),
      1.75em 1.75em 0 0em rgba(219, 219, 219, 0.2),
      0em 2.5em 0 0em rgba(219, 219, 219, 0.2),
      -1.8em 1.8em 0 0em rgba(219, 219, 219, 0.5),
      -2.6em 0em 0 0em rgba(219, 219, 219, 0.7),
      -1.8em -1.8em 0 0em #dbdbdb;
  }
}
/* ----------peopleの切り替えmediaQuery内では動かないため--------------------------------------------------------------------*/
@keyframes album {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
$_COLOR_MAIN: #008DCB; //ブルー
$_COLOR_BLUEGRAY: #B7D0DB; //ブルーグレー
*/
@media screen and (max-width: 959px) {
  body {
    font-size: 1.6rem;
  }
  /* body::before {
    content: "";
    position: absolute;
    top: 0;
    right: 2.5%;
    width: 95%;
    height: 200px;
    display: block;
    background: #f5f6f9;
    z-index: -1;
  } */
  #ph-mv::before {
    height: 250px;
  }
  #ph-mvL::before {
    left: 0;
    right: auto;
    width: 85%;
    height: 600px;
  }
  #ph-mvR::before {
    left: auto;
    right: 0;
    width: 85%;
    height: 600px;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .att {
    color: #2F3D41;
    padding: 0 0 0 5px;
    margin: 0;
  }
  .fontyu {
    font-weight: 500;
  }
  .viewmore {
    margin: 0px auto;
    width: auto;
    display: inline-block;
    border: 1px solid #000;
    padding: 1rem 1rem;
    position: relative;
    color: #000;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0;
    transition-duration: 0.2s;
  }
  .viewmore:hover {
    opacity: 0.5;
    text-decoration: none;
  }
  .viewmore span {
    color: #000;
    padding: 0;
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
  }
  .viewmore .short {
    width: 90% !important;
    margin: 40px auto;
  }
  .baBtn {
    font-size: 1rem;
    letter-spacing: 0;
    font-weight: 400;
    padding: 1rem 2rem;
  }
  .intop {
    display: block;
    margin: 4rem auto 4rem auto;
    border: 1px solid #5d5d5d;
    padding: 2rem 1.5rem;
    font-size: 1.6rem;
    width: 80%;
    transition-duration: 0.2s;
  }
  .intop:hover {
    text-decoration: none;
    background: #fafafa;
  }
 
  /* ---------contents 共通---------------------------------------------------------------------*/
  main {
    z-index: 2;
  }
  article {
    text-align: center;
    /* padding: 50px 0 0 0; */
  }
  article section {
    overflow: hidden;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    width: 94%;
  }
  article h2 {
    letter-spacing: 0.1rem;
    text-align: center;
    display: inline-block;
    padding: 45px 0 0px 0;
    font-size: 2.6rem;
    line-height: 1.4;
    font-weight: 500;
  }

  .mvE {
    padding-top: 30px;
  }
  article h3 {
    font-size: 1.4rem;
    padding: 0px 0 40px 0;
    margin: 0 0 0px 0;
    display: block;
    letter-spacing: 0.1rem;
  }
  article h4 {
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    margin: 2rem 0rem 0rem 0rem;
    position: relative;
    letter-spacing: 0.1rem;
    line-height: 1.4;
    padding: 2rem 1rem 2rem 1rem;
    display: block;
    /*&::before {
        font-size: if($type==sp,4rem, 6rem);
    	content: "\201c";
        color: $beiged;
        position: absolute;
        top: -2rem;
        left: 0;

    }
   &::after {
        font-size:  if($type==sp,4rem, 6rem);
    	content: "\201d";
     color: $beiged;
    position: absolute;
    top: -2rem;
    right: 0;
    
    
    }*/
  }
  article h4::before {
    position: absolute;
    content: "";
    top: 0%;
    left: 50%;
    width: 100px;
    transform: translateX(-50%);
    display: block;
    border-top: 1px solid #2F3D41;
  }
  article h4 small {
    font-size: 70%;
    display: inline-block;
  }
  article h5 {
    font-size: 2.2rem;
    font-weight: 400;
    padding: 0px 0 0px 0px;
    margin: 10px 0 10px 0;
    display: inline-block;
    position: relative;
    color: #2F3D41;
    letter-spacing: 0.05rem;
    line-height: 1.8;
    /*&::before {
  position: absolute;
  content: "";
  border: 0;
  center: 0;
  bottom: -1rem;
  width: 100%;
  border-top: 1px solid #000;
}
&::after {
  position: absolute;
  content: "";
  border: 0;
  right: 40%;
  top: 0;
  width: 10%;
  border-top: 1px solid #000;
}*/
  }
  article .mv {
    margin: 4rem auto 3rem auto;
    max-height: 200px;
    object-fit: cover;
    object-position: 0 0%;
    width: 90%;
  }
  article span {
    display: inline-block;
    padding: 5px 15px;
    margin: 10px;
    font-size: 1.3rem;
    color: #fff;
  }
  article span.color02 {
    padding: 0;
    margin: 0;
    color: #2F3D41;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
  }
  article p {
    font-size: 1.5rem;
    max-width: 100%;
    margin: 1em auto;
    font-weight: 300;
    line-height: 2;
    line-height: 1.8;
  }
  article .exc {
    padding: 0 0.3rem !important;
    margin: 0 !important;
    font-size: 105% !important;
    color: #393939 !important;
    display: inline !important;
    font-family: serif;
  }
  article img {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  article .contW {
    width: 96%;
    margin: 0 auto;
  }
  .textL {
    text-align: left !important;
  }
  .textC {
    text-align: left !important;
  }
  /* IEハック用mixin */

  /*==============================================================
    #トップページ
    ==============================================================*/
  #top {
    width: 100%;
    /*============================
    #MV
    ============================*/
    /*============================
    #メッセージ
    ============================*/
    /*============================
    理由
    ============================*/
    /*============================
      FAQ
      ============================*/
    /*============================
     MOVIE
      ============================*/
  }
  #top #requirements table th {
    font-size: 1.6rem;
    width: 100%;
  }
  #top .endTxt {
    padding: 2rem;
    color: #faa500;
    background: #fef9ee;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #top .flex-control-nav {
    width: 100%;
    margin: 1rem 0 0 0;
    text-align: center;
  }
  #top .flex-control-nav li {
    margin: 0 6px;
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
  #top .flex-control-paging li a {
    width: 11px;
    height: 11px;
    display: block;
    background: #e6b6b9;
    cursor: pointer;
    text-indent: -9999px;
    border-radius: 20px;
  }
  #top .flex-control-paging li a:hover {
    background: #2F3D41;
  }
  #top .flex-control-paging li a.flex-active {
    background: #2F3D41;
    cursor: default;
  }
  #top .pc {
    display: none;
  }
  #top .sp {
    display: block;
  }
  #top #mv {
    height: auto;
    margin: 0rem;
    box-sizing: border-box;
    position: relative;
  }
  #top #mv .scroll {
    position: absolute;
    bottom: 0px;
    right: 0;
    height: 100px;
    text-align: justify;
    width: auto;
    z-index: 1;
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 1.2rem;
    border-left: 1px solid #d8d8d8;
    padding: 0 5px;
  }
  #top #mv .scroll span {
    margin: 0;
    padding: 0 0 10px 0;
    letter-spacing: 0.1rem;
    font-size: 1.1rem;
  }
  #top #mv .scroll::after {
    content: "aaaa";
    position: absolute;
    bottom: -30px;
    right: 0;
    height: 30px;
    padding: 0 5px;
    border-left: 1px solid #d8d8d8;
  }
  #top #mv .video-container {
    position: relative;
    width: 100%;
    min-height: 250px;
    /*height: if($type==sp, auto,  90vh);*/
    display: block;
    overflow: hidden;
    z-index: 1;
    border: none;
  }
  #top #mv .video-container .mvwoman {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    min-height: auto;
    height: 400px;
    overflow: hidden;
    animation-name: fadeOut;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-delay: 2.5s;
    border: none;
    background: rgba(0, 0, 0, 0.5);
  }
  #top #mv .video-container .video-sidebar {
    position: absolute;
    left: 0%;
    top: 0%;
    height: 100%;
    width: 100%;
    color: #fff;
    z-index: 3;
    background: rgba(0, 0, 0, 0.2);
  }
  #top #mv .video-container .toptxtBox {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 3;
    width: 95%;
  }
  #top #mv .video-container img,
  #top #mv .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #top #mv .video-container h2 {
    padding: 0;
    margin: 0px 0 0px 0;
    font-size: 2rem;
    font-weight: 500;
    color: #e6e6e6;
    letter-spacing: 0.3;
    border: none;
  }
  #top #mv .video-container h2 img,
  #top #mv .video-container h2 video {
    width: 90% !important;
    height: 90% !important;
  }
  #top #mv .video-container strong {
    display: block !important;
    font-size: 2rem;
    font-weight: 500;
    padding: 2rem 0 2rem 0 !important;
  }
  #top #mv .video-container p {
    text-align: left;
  }
  #top .video-container2 {
    margin: 20px 0;
    text-align: center;
    position: relative;
    width: 100%;
    min-height: auto;
  }
  #top .video-container2 .toptxtBox {
    z-index: 3;
    width: 100%;
    box-sizing: border-box;
    padding: 2rem 2rem;
    display: flex;
    margin: 0 auto;
    flex-direction: column-reverse;
    writing-mode: horizontal-tt;
    align-items: center;
    text-orientation: upright;
  }
  #top .video-container2 .toptxtBox strong {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    text-align: justify;
    padding: 1rem 0 1rem 0;
    font-weight: 500;
    margin: 40px 0 0px 0;
    line-height: 1.8;
    padding: 0;
    text-align: center;
  }
  #top .video-container2 .toptxtBox span {
    color: #393939;
    padding: 10px 0 10px 0;
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
  }
  #top .video-container2 .toptxtBox span::before {
    content: "";
    height: 0;
    width: 30px;
    bottom: 0;
    left: 0;
    display: block;
    margin: 0 1rem 0 0;
    border-left: none;
    border-bottom: 1px solid #393939;
  }
  #top .video-container2 .toptxtBox span::after {
    content: "";
    height: 0;
    width: 30px;
    bottom: 0;
    left: 0;
    display: block;
    border-left: none;
    border-bottom: 1px solid #393939;
    margin: 0 0 0 1rem;
  }
  #top .video-container2 .toptxtBox p {
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
  }
  #top #TopReason {
    margin: 20px 0;
    text-align: center;
    position: relative;
    width: 100%;
  }
  #top #TopReason .intop {
    margin: 0 auto 40px auto;
  }
  #top #TopReason a {
    transition-duration: 0.2s;
  }
  #top #TopReason a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  #top #TopReason .moreBtn {
    display: inline-block;
    color: #393939;
    font-size: 1.4rem;
    border: 1px solid #393939;
    text-indent: -0.5rem;
    margin: 20px 20px 10px 20px;
    padding: 1rem 4rem;
    position: relative;
  }
  #top #TopReason .moreBtn::after {
    content: "";
    position: absolute;
    top: 47%;
    right: 5%;
    width: 6px;
    height: 6px;
    border-top: 1px solid #393939;
    border-right: 1px solid #393939;
    transform: rotate(45deg);
  }
  #top #TopReason ul .bgimg {
    position: absolute;
    top: -30px;
    left: -60px;
    width: 170px;
  }
  #top #TopReason ul .bgimg img {
    width: 100%;
  }
  #top #TopReason ul .bgimg2 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
  }
  #top #TopReason ul .bgimg2 img {
    width: 100%;
  }
  #top #TopReason ul li {
    position: relative;
    background: linear-gradient(90deg, #f5f6f9 0%, #f5f6f9 50%, #fff 50%, #fff 100%);
    margin: 0 0 40px 0;
  }
  #top #TopReason ul li .item2 {
    align-items: flex-end;
    width: 95%;
  }
  #top #TopReason ul li .item2 b {
    padding: 0 20px;
    text-align: right;
  }
  #top #TopReason ul li:nth-child(even) {
    background: linear-gradient(270deg, #f5f6f9 0%, #f5f6f9 50%, #fff 50%, #fff 100%);
  }
  #top #TopReason ul li:nth-child(even) .item2 {
    align-items: flex-start;
  }
  #top #TopReason ul li:nth-child(even) .item2 b {
    text-align: left;
  }
  #top #TopReason ul li .item3 {
    margin: 20px 0 0 0;
    z-index: 2;
    width: 85%;
  }
  #top #TopReason ul li .item3 b {
    padding: 0 20px;
  }
  #top #TopReason .part2 {
    display: none;
  }
  #top #TopReason .part2 li:nth-child(even) {
    background: linear-gradient(90deg, #f5f6f9 0%, #f5f6f9 50%, #fff 50%, #fff 100%);
  }
  #top #TopReason .part2 li:nth-child(even) .item2 {
    align-items: flex-end;
    text-align: right;
  }
  #top #TopReason .part2 li:nth-child(even) .item2 b {
    padding: 0 0px 0 20px;
    text-align: right;
  }
  #top #TopReason .part2 li:nth-child(odd) {
    background: linear-gradient(270deg, #f5f6f9 0%, #f5f6f9 50%, #fff 50%, #fff 100%);
  }
  #top #TopReason .part2 li:nth-child(odd) .item2 {
    align-items: flex-start;
    text-align: left;
  }
  #top #TopReason .part2 li:nth-child(odd) .item2 b {
    padding: 0 20px 0 0px;
    text-align: left;
  }
  #top #TopReason .part2 li .moreBtn {
    margin: 20px 10px 10px 10px !important;
  }
  #top #TopReason .reason1 {
    width: 100%;
    margin: 0 auto;
    justify-content: space-around;
    align-items: flex-end;
  }
  #top #TopReason .reason1 .item1 {
    display: none;
  }
  #top #TopReason .reason1 .item2 {
    padding: 0 20px;
  }
  #top #TopReason .reason1 .item2 strong {
    height: 100px;
  }
  #top #TopReason .reason1 .item2 strong img {
    height: 100%;
  }
  #top #TopReason .reason1 .item2 b {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #top #TopReason .odd1 {
    align-items: flex-start;
  }
  #top #TopFaq {
    margin: 40px auto 80px auto;
    text-align: center;
    position: relative;
    width: 100%;
  }
  #top #TopFaq a {
    transition-duration: 0.2s;
    display: flex;
    align-items: center;
    background-image: url("../images/topfaq_img.png");
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 300px;
    text-align: center;
    position: relative;
    margin: 0 auto;
  }
  #top #TopFaq a p {
    margin: 0 auto;
    padding: 0 0 60px 0;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.2rem;
  }
  #top #TopFaq a p strong {
    font-size: 150%;
    color: #fff;
    font-weight: 500;
  }
  #top #TopFaq a p span {
    display: block;
    padding: 0 0 20px 0;
    margin: 0;
    color: #393939;
    font-size: 1.8rem;
  }
  #top #TopFaq a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0%;
    top: 50%;
    right: 5%;
    width: 9px;
    height: 9px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
  }
  #top #TopFaq a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  #top .movieW {
    text-align: center;
    padding: 0px 0;
  }
  #top .movieW video {
    margin: 10px auto 40px auto;
    width: 50%;
    width: 100%;
  }
  /* ----------people---------------------------------------------------------------------*/
  #people .interviewBox {
    width: 96%;
    margin: 0 auto;
  }
  #people .interviewBox .tit {
    position: relative;
  }
  #people .interviewBox .tit h4 {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 200;
    text-align: left;
    padding: 0;
    font-family: source-han-serif-japanese, serif;
  }
  #people .interviewBox .tit h4::before,
  #people .interviewBox .tit h4::after {
    content: none;
  }
  #people .interviewBox .tit h4 strong {
    font-size: 1.6rem;
    font-weight: 500;
    display: block;
  }
  #people .interviewBox h5 {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 500;
    border-top: 1px solid #2F3D41;
    text-align: left;
    padding: 1rem 0 0 0;
    margin: 2rem auto 0rem auto;
    font-family: source-han-serif-japanese, serif;
  }
  #people .interviewBox h5::before {
    content: none;
  }
  #people .interviewBox p {
    text-align: left;
    margin: 1rem auto;
  }
  #people .interviewBox .fr {
    float: none;
    margin: 1rem 0;
  }
  #people .interviewBox .fb_rr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #people .interviewBox .fb_rr div {
    margin: 0;
    padding: 0;
  }
  #people .interviewBox .fb_rr img {
    margin: 0;
  }
  #people .interviewBox .fb_r {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #people .interviewBox .fb_r div {
    margin: 0;
    padding: 0;
  }
  #people .interviewBox .fb_r img {
    margin: 0;
  }
  #people .interviewBox .fb_rs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #people .interviewBox .fb_rs div {
    margin: 0;
    padding: 0;
  }
  #people .interviewBox .fb_rs img {
    margin: 0;
    width: 100%;
  }
  #people .interviewBox .sph {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #people .interviewBox .sph img {
    width: 49%;
    margin: 1rem 0;
    box-sizing: border-box;
  }
  #people .wrap {
    width: 96%;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  #people .wrap .box {
    width: 46%;
    margin: 0 0 20px 0;
  }
  #people .wrap .box a {
    display: block;
    transition-duration: 0.2s;
  }
  #people .wrap .box a .name {
    line-height: 1.8;
  }
  #people .wrap .box a .imgbox {
    position: relative;
    height: 450px;
    width: auto;
    margin: 0 auto;
  }
  #people .wrap .box a .imgbox img {
    position: absolute;
    height: 100%;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    object-fit: cover;
  }
  #people .wrap .box a .imgbox img:nth-last-of-type(2) {
    opacity: 1;
  }
  #people .wrap .box a .imgbox img:nth-last-of-type(1) {
    animation-name: album;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    opacity: 1;
  }
  #people .wrap .box a:hover {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
  }
  /* ----------toward---------------------------------------------------------------------*/
  .toward_for_family {
    width: 100%;
    margin: 0 auto;
  }
  .toward_for_family ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0 30px 0;
  }
  .toward_for_family ul li {
    margin: 10px;
    width: 250px;
    height: 250px;
    background: #fff;
    border-radius: 50%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .toward_for_family ul li p {
    margin: 0;
    padding: 0 !important;
    line-height: 1.2;
  }
  .toward_for_family ul li .tit {
    font-size: 2.4rem;
    text-align: center !important;
  }
  .toward_for_family ul li .tit small {
    font-size: 1.8rem;
    display: block;
    text-align: center;
    margin-top: 5px;
  }
  .toward_for_family ul li .num {
    font-size: 5.4rem;
    color: #2F3D41;
    margin-bottom: 12px;
  }
  .toward_for_family ul li .num small {
    font-size: 2rem;
  }
  .toward_for_family ul li .note {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .toward_for_family .circle {
    text-align: center;
    margin: 0px 0 30px 0;
  }
  .toward_for_family .circle img {
    width: 80%;
  }
  .toward_education {
    text-align: center;
  }
  .toward_education .zu {
    margin: 0px auto 0 auto;
    padding: 20px 0;
  }
  .toward_education .zu img {
    width: auto;
    height: auto;
  }
  .toward_education .box {
    display: flex;
    flex-direction: column;
    width: 96%;
    margin: 2rem auto 5rem auto;
    border: 1px solid #fafafa;
    background: #fff;
  }
  .toward_education .box ul {
    margin: 0rem 0 2rem 0;
  }
  .toward_education .box ul li {
    text-align: left;
    margin: 0 3rem 0.5rem 4rem;
    line-height: 1.6;
    padding: 0 0 0rem 0rem;
    list-style-position: outside;
    list-style-type: disc;
    font-size: 1.4rem;
  }
  .toward_education .box .tit {
    background: #f5f6f9;
    padding: 1rem;
    width: 100%;
    font-size: 1.5rem;
    padding: 1rem !important;
    display: flex;
  }
  .toward_education .box p {
    width: 100%;
    display: block;
    text-align: left !important;
    margin: 0;
    padding: 0rem 2rem 2rem 2rem !important;
    font-size: 1.4rem;
  }
  .toward_education .box span {
    display: block;
    padding: 0;
    margin: 0;
  }
  .toward_education .box span img {
    margin: 5px;
    width: 100%;
  }
  .toward_education .box strong {
    font-weight: 500 !important;
    font-size: 1.5rem !important;
    padding: 2rem 0 1rem 0 !important;
    margin: 0 !important;
    display: block !important;
  }
  .toward-data {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .toward-data--item {
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 4%;
    border-left: none;
    border-top: 1px solid #bfbfbf;
    margin: 0;
  }
  .toward-data--item h6 {
    font-size: 2.2rem;
    font-weight: 500;
    padding: 0px 0 0px 0px;
    margin: 0px 0 0px 0;
    display: inline-block;
    position: relative;
    color: #000;
  }
  .toward-data--item strong {
    font-size: 3.2rem !important;
    color: #393939;
    font-weight: 500;
    line-height: 1.2 !important;
  }
  .toward-data--item:nth-of-type(3n) {
    width: 100%;
    padding-right: 4%;
  }
  .toward-data--item:nth-of-type(3n-1) {
    width: 100%;
  }
  .toward-data--item:nth-of-type(3n-2) {
    width: 100%;
    padding-left: 4%;
    border-left: none;
  }
  .toward-way {
    margin: 10px 0 60px 0;
    background: #fff;
    padding: 2rem 2rem;
  }
  .toward-way p {
    text-align: center !important;
    color: #000;
  }
  .toward-way a {
    display: block;
    transition-duration: 0.2s;
  }
  .toward-way a:hover {
    opacity: 0.5;
    text-decoration: none;
  }
  .toward-way .btn-contact {
    background: #2F3D41;
    margin: 1rem auto 2rem auto;
    width: 90%;
  }
  .toward-way .btn-contact span {
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    color: #fff;
  }
  .event .hsc {
    line-height: 2;
    padding: 1rem 0;
  }
  .event h5::before {
    border: none;
  }
  .event .eventWrap {
    text-align: center;
    padding: 30px 10px;
    width: 100%;
    text-align: center;
    background: #fff9f2;
  }
  .event .eventWrap strong {
    font-size: 1.8rem;
    color: #ffa500;
    padding: 0 0 1rem 0;
    font-weight: 500;
  }
  .event .eventWrap p {
    font-size: 1.5rem;
    text-align: center;
    padding: 0.5rem 0;
  }
  .event .eventWrap a {
    background: #ffa500;
    color: #fff;
    display: block;
    margin: 0 auto;
    width: 80%;
    font-size: 1.6rem;
    padding: 1rem;
    transition: all 0.3s ease-out;
  }
  .event .eventWrap a:hover {
    background-color: #eacc91;
    text-decoration: none;
  }
  .event sp {
    display: block;
  }
  .event .ore {
    color: #ffa500;
    font-weight: 400;
    font-size: 1.8rem;
    padding: 0 !important;
    display: block;
    margin: 0 !important;
    line-height: 1.5;
    display: block;
  }
  .event .eventWrap_event {
    text-align: center;
    margin: 40px auto 20px auto;
    width: 90%;
    text-align: center;
  }
  .event .eventWrap_event strong {
    font-size: 1.8rem;
    padding: 0 0 1rem 0;
    font-weight: 500;
  }
  .event .eventWrap_event p {
    font-size: 1.5rem;
    text-align: center;
    padding: 0.5rem 0;
    line-height: 1.5;
    margin: 0;
  }
  .event .eventWrap_event strong {
    font-size: 1.8rem;
    margin: 0 !important;
    padding: 0;
  }
  .event .eventWrap_event a {
    background: #2F3D41;
    color: #fff;
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 1.6rem;
    padding: 20px 10px;
    transition: all 0.3s ease-out;
    line-height: 1.8;
  }
  .event .eventWrap_event a:hover {
    background-color: #eacc91;
    text-decoration: none;
  }
  /* ----------message---------------------------------------------------------------------*/
  #message p {
    text-align: left;
  }
  #message a {
    width: 90%;
    display: block;
    margin: 0 auto;
    border: 1px solid #000;
    padding: 0px 0;
    position: relative;
    color: #000;
    transition-duration: 0.2s;
  }
  #message a:hover {
    opacity: 0.5;
  }
  #message a::after {
    content: "\f105";
    font-size: 2rem;
    font-family: FontAwesome;
    position: absolute;
    top: calc(50% - 1rem);
    right: 5%;
    color: #000;
  }
  #message a span {
    color: #000;
    font-size: 1.3rem;
    letter-spacing: 0.3rem;
    font-weight: 500;
  }
  #message .copy {
    text-align: center;
    margin: 4rem 0 2rem 0;
  }
  #message .copy img {
    height: auto;
    width: 60%;
  }
  #message .name {
    padding: 20px 0;
    text-align: right;
  }
  /* ----------career---------------------------------------------------------------------*/
  #career .att {
    font-size: 1.2rem;
    margin: -20px 0 0 0;
    display: block;
  }
  #career .modelcase {
    margin: 40px 0 20px 0;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-direction: column;
    width: 96%;
    margin: 40px auto 20px auto;
  }
  #career .modelcase .txt {
    width: 100%;
    text-align: left;
  }
  #career .modelcase b {
    font-size: 1.6rem;
    margin: 1rem 0 0 0;
    display: inline-block;
  }
  #career .modelcase img {
    object-fit: contain;
    width: 100%;
  }
  #career .modelcase2 {
    margin: 0px auto 40px auto;
    width: 96%;
  }
  #career h6 {
    font-size: 140%;
  }
  #career .case {
    display: flex;
    width: 96%;
    margin: 0 auto;
    flex-direction: column;
  }
  #career .case .flow {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 96%;
    padding: 0 0 10px 0;
    margin: 0 auto;
    position: relative;
    font-size: 1.5rem;
    line-height: 1.8;
  }
  #career .case .flow::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background-color: #e6e6e6;
    position: absolute;
    top: 0px;
    left: 25px;
  }
  #career .case .flow:last-child {
    padding: 0 0 50px 0;
    align-items: flex-start;
  }
  #career .case .flow:last-child::before {
    display: none;
  }
  #career .case .flow .year {
    position: relative;
    width: 12%;
  }
  #career .case .flow .year span {
    display: block;
    background: #8b8b8b;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    width: 50px;
    white-space: nowrap;
    margin: 0;
    line-height: 1;
    font-size: 1.2rem;
  }
  #career .case .flow .txt {
    margin: 0 0 0 1rem;
    text-align: left;
    width: 100%;
    padding: 1rem;
  }
  #career .case .model {
    background: #f5f6f9;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    margin: 0 0 2rem 0;
  }
  #career .case .model .pc {
    display: none;
  }
  #career .case .model .sp {
    display: block;
  }
  #career .case .model a {
    display: block;
    border: 1px solid #2F3D41;
    color: #2F3D41;
    padding: 1rem;
    text-align: center;
    position: relative;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 1rem 0 0 0;
    width: 100%;
    /*&::after{
        content: "";
            font-family: FontAwesome;
      content: "\f054";
       position: absolute;
        top: 30%;
        right: 2%;
        color: $gold;
       }*/
  }
  #career .case .model img {
    width: auto;
  }
  #career .case .model .txt {
    width: 100%;
    padding: 2rem 2rem 1rem 2rem;
    text-align: left;
  }
  #career .case .model .txt .gaiyo {
    display: flex;
  }
  #career .case .model .txt .gaiyo .num {
    font-size: 2rem;
    padding: 0 0 0rem 0;
    margin: 0;
    color: #2F3D41;
    display: block;
    font-weight: normal;
  }
  #career .case .model .txt .gaiyo .num strong {
    font-size: 4rem;
    font-weight: normal;
  }
  #career .case .model .txt .gaiyo .tbox {
    margin: 0 0 0 20px;
  }
  #career .case .model .txt .gaiyo .nyusya {
    font-size: 1.4rem;
    padding: 0.2rem 0;
    margin: 0;
    color: #393939;
  }
  #career .case .model .txt .gaiyo .syokusyu {
    font-size: 2rem;
    font-weight: normal;
    padding: 0 0 0rem 0;
    display: block;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.1rem;
    color: #000;
  }
  #career .case .model .txt p {
    display: block;
    padding: 0rem 0;
    font-size: 1.5rem;
    line-height: 1.8;
  }
  /* ---------step---------------------------------------------------------------------*/
  #step h4 {
    font-size: 2rem;
    margin-top: 6rem;
  }
  #step .flow {
    width: 100%;
    text-align: center;
    padding: 0rem 0 5rem 0;
    margin: 0 auto 0rem auto;
    /*background: $grayl;*/
  }
  #step .flow .jiseki {
    width: 96%;
    margin: 20px auto;
    background: #f5f6f9;
    padding: 2rem;
  }
  #step .flow .jiseki strong {
    font-size: 1.2rem;
    text-align: center;
    padding: 0.5rem 0 1rem 0;
  }
  #step .flow .jiseki p {
    font-size: 1.1rem;
    text-align: left;
  }
  #step .flow .flowMi {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 0;
    margin: 0 auto;
  }
  #step .flow .box {
    width: 96%;
    margin: 2rem auto 5rem auto;
    border: 1px solid #2F3D41;
    background: #fff;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
  }
  #step .flow .box::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #2F3D41 transparent transparent transparent;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    bottom: -4rem;
    left: 50%;
    margin: -20px 0 0 -20px;
  }
  #step .flow .box:last-child {
    margin: 2rem auto 0rem auto;
  }
  #step .flow .box:last-child::after {
    display: none;
  }
  #step .flow .box .tit {
    width: 100%;
    margin: 0 0 0.5rem 0;
    padding: 0;
    vertical-align: middle;
  }
  #step .flow .box .num {
    color: #2F3D41;
    display: block;
    font-size: 1.5rem;
    margin: 0;
    padding: 0 0 0.5rem 0;
    line-height: 1;
  }
  #step .flow .box .num b {
    font-size: 150%;
  }
  #step .flow .box p {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
    width: 100%;
  }
  #step .flow .box strong {
    font-weight: 500;
    font-size: 1.6rem;
    display: block;
    padding: 0;
  }
  #step .flow .noyaji::after {
    display: none;
  }
  #step .flowbg {
    width: 100%;
    background: #epeat;
    padding: 40px 0;
    margin: 0 0 40px 0;
  }
  #step .voice {
    background: #fbf6ed;
    width: 96%;
    margin: 40px auto 0 auto;
    padding: 40px 0;
  }
  #step .voice .inner {
    overflow: hidden;
    z-index: 1;
    width: 96%;
    margin: 0 auto;
  }
  #step .voice .inner .tit {
    padding: 0 0 40px 0;
    width: 80%;
    margin: 0 auto;
  }
  #step .voice .inner .cus img {
    float: left;
    margin: 0 0 10px 0;
  }
  #step .voice .inner .cus img:nth-of-type(2n) {
    float: right;
  }
  #step ul li {
    margin: 20px 0;
    padding: 20px 0 30px 0;
    border-top: 1px solid #2F3D41;
    display: flex;
    width: 96%;
    margin: 0 auto;
    flex-direction: column;
  }
  #step ul li .tit {
    width: 100%;
    vertical-align: middle;
    text-align: left;
    padding: 0 0 20px 0;
    display: inline;
  }
  #step ul li p {
    text-align: left;
    display: table-cell;
    padding: 0;
    margin: 0;
  }
  #step ul li:last-child {
    border-bottom: 1px solid #2F3D41;
  }
  #step .tit {
    font-size: 1.4rem;
    line-height: 2;
    font-weight: 500;
    padding: 2rem 0 0 0;
  }
  #step .tit span {
    color: #2F3D41;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 3rem;
    font-weight: 500;
    font-family: source-han-serif-japanese, serif;
  }
  #step .box {
    display: flex;
    width: 96%;
    margin: 20px auto;
    flex-direction: column;
  }
  #step .box img {
    height: 100%;
  }
  #step .box p {
    text-align: left;
    display: inline-block;
    padding: 0;
  }
  #step .box p span {
    display: block;
    padding: 30px 0 0 0;
    margin: 30px 0 0 0;
    background-image: url(../images/step_pointtit.png), url(../images/step_pointtitbg.png);
    background-repeat: no-repeat, repeat-x;
    background-position:
      left top,
      left top;
    color: inherit;
    font-size: inherit;
  }
  /* ---------education---------------------------------------------------------------------*/
  #education {
    text-align: center;
  }
  #education .zu {
    margin: 10px auto 40px auto;
  }
  #education .zu img {
    width: 90%;
  }
  #education h5 {
    padding: 0;
    margin: 2rem 0;
  }
  #education .box {
    display: flex;
    flex-direction: row;
    width: 96%;
    margin: 10px auto 40px auto;
    border: 1px solid #fafafa;
    background: #fff;
  }
  #education .box .tit {
    background: #f5f6f9;
    padding: 1rem;
    width: 120px;
    font-size: 1.5rem;
    padding: 15px;
    justify-content: center;
    display: flex;
    position: relative;
  }
  #education .box .tit::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    color: #333;
    line-height: 1;
    bottom: -30px;
    width: 60px;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 30px 60px;
    border-top-color: #f5f6f9;
    border-bottom: 0;
  }
  #education .box .last::after {
    display: none;
  }
  #education .box p {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 0px;
    row-gap: 10px;
    text-align: left;
    margin: 0;
    padding: 15px;
    font-size: 1.4rem;
    border: 1px solid #f5f6f9;
  }
  #education .box p span {
    color: #393939;
    font-size: 1.5rem;
    padding: 0;
    margin: 0;
  }
  #education .box p span b {
    font-weight: 500;
  }
  #education .box p span strong {
    font-weight: 500;
    font-size: 1.5rem;
    padding: 0rem 0 0rem 0;
    margin: 0;
    display: block;
    color: #2F3D41;
  }
  /* ---------work---------------------------------------------------------------------*/
  #work .about {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 40px auto;
    flex-direction: column;
    width: 96%;
  }
  #work .about p {
    text-align: left;
    font-size: 1.5rem;
    margin: 0;
  }
  #work .about p span {
    display: inline-block;
    margin: 10px 0 0 0;
    font-size: 1.5rem;
    color: #000;
  }
  #work .about img {
    width: 100%;
    margin: 0 0 20px 0;
    height: 100%;
  }
  #work .mainwork {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 96%;
    margin: 10px auto;
  }
  #work .mainwork .box2 {
    margin: 0 0 10px 0;
    padding: 1rem 2rem;
    width: 100%;
    border: 1px solid #2F3D41;
    font-size: 1.5rem;
  }
  #work .mainwork .boxkiki {
    margin: 0 0 10px 0;
    padding: 1rem 2rem;
    width: 48%;
  }
  #work .mainwork .boxkiki img {
    width: auto;
    max-height: 150px;
  }
  #work .mainwork .boxkiki p {
    font-size: 1.5rem;
  }
  #work .mainwork .box {
    margin: 0 0 10px 0;
    padding: 1rem 0rem;
    width: 33%;
    font-size: 1.5rem;
  }
  #work .mainwork .box img {
    width: 100%;
  }
  #work .mainwork .box p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 10px auto;
  }
  #work .mainwork .box p strong {
    font-size: 110%;
    font-weight: 500;
    display: block;
    padding: 0 0 0.5rem 0;
  }
  #work .flowbg {
    width: 100%;
    position: relative;
    margin: 2rem 0 0 0;
    padding: 0 0 5rem 0;
  }
  #work .flowbg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #fbf6ed;
    z-index: -1;
  }
  #work .flow {
    width: 96%;
    text-align: center;
    margin: 0 auto;
  }
  #work .flow .box {
    margin: 2rem 0 5rem 0;
    border: 1px solid #2F3D41;
    background: #fff;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  #work .flow .box::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #2F3D41 transparent transparent transparent;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    bottom: -4rem;
    left: 50%;
    margin: -20px 0 0 -20px;
  }
  #work .flow .box:last-child {
    margin: 2rem 0 0rem 0;
  }
  #work .flow .box:last-child::after {
    display: none;
  }
  #work .flow .box .tit {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
  #work .flow .box .num {
    color: #2F3D41;
    display: block;
    font-size: 1.6rem;
    margin: 0;
    padding: 0 0 0.5rem 0;
    line-height: 1;
  }
  #work .flow .box .num b {
    font-size: 150%;
  }
  #work .flow .box p {
    text-align: left;
    margin: 0;
    padding: 0;
  }
  #work .flow .box strong {
    font-weight: 500;
    font-size: 1.6rem;
  }
  #work .day {
    width: 96%;
    text-align: center;
    margin: 0 auto;
  }
  #work .day .text {
    margin: 0 0 50px 0;
  }
  #work .day .text .box {
    width: 100%;
    top: 0px;
    right: 0;
    text-align: left;
  }
  #work .day .text .box table {
    font-size: 1.5rem;
  }
  #work .day .text .box table th {
    color: #2F3D41;
    font-size: 1.8rem;
    text-align: right;
    padding: 15px 20px 10px 0;
    width: 12%;
    box-sizing: content-box;
    border-bottom: 1px dotted #d0ba8f;
  }
  #work .day .text .box table th::before {
    font-family: FontAwesome;
    content: "\f017";
    padding: 0 1rem 0 0;
  }
  #work .day .text .box table td {
    padding: 15px 20px 10px 25px;
    line-height: 2;
    border-bottom: 1px dotted #d0ba8f;
  }
  #work .day .text .box table td img {
    margin: 1rem 0;
  }
  #work .day .text .box table td strong {
    display: block;
    font-weight: 500;
    text-indent: 0;
    padding: 0 0 1rem 0;
    font-size: 1.7rem;
  }
  #work .day .text .box table td strong::before {
    /*content: url(../images/work_icon.png);
vertical-align: middle;
margin: 0px 1rem 0 -25px;
display: inline-block;*/
  }
  /* ---------beforeafter---------------------------------------------------------------------*/
  #beforeafter .ba {
    display: flex;
    margin: 5rem auto;
    width: 100%;
    justify-content: space-between;
  }
  #beforeafter .baph {
    margin: 0 auto;
  }
  #beforeafter .baph img {
    display: block;
  }
  #beforeafter .bgphNum {
    text-align: left;
    color: #2F3D41 !important;
    display: block;
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-family: source-han-serif-japanese, serif;
    font-size: 2rem;
  }
  #beforeafter .bgphNum2 {
    text-align: right;
    color: #2F3D41 !important;
    display: block;
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-size: 2rem;
    font-family: source-han-serif-japanese, serif;
  }
  #beforeafter .yaji {
    width: 30px;
    height: 30px;
    border-style: solid;
    border-width: 20px 0 20px 20px;
    border-color: transparent transparent transparent #2F3D41;
    display: block;
    margin: 25% 0 0 2rem;
  }
  /* ---------faq--------------------------------------------------------------------*/
  #faq .cont {
    width: 96%;
    text-align: left;
    margin: 0 auto;
    padding: 40px 0;
    /* 縦線（after）だけ縦回転させる */
    /********* 下層メニュー *********/
    /* 下層メニューアイコン */
    /* 下層メニュー内テキストエリア */
    /* 下層アイコン変化（openクラスを付与） */
  }
  #faq .cont .ac {
    width: 100%;
    margin: 0 auto;
  }
  #faq .cont .ac-parent {
    text-align: left;
    border-bottom: 1px solid #000;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    padding: 2.5rem 1rem;
    font-size: 1.6rem;
    font-weight: 600;
  }
  #faq .cont .ac-parent:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    /*横線*/
    width: 14px;
    height: 2px;
    background: #000;
  }
  #faq .cont .ac-parent:after {
    content: "";
    position: absolute;
    top: 50%;
    /* 8px+12px-1px(幅2pxの半分) */
    right: 14px;
    transform: translateY(-50%);
    transition: all 0.3s;
    /*縦線*/
    width: 2px;
    height: 15px;
    background: #000;
  }
  #faq .cont .ac-parent.open:after {
    top: 25%;
    transform: rotate(90deg);
    opacity: 0;
  }
  #faq .cont .ac-child__item {
    position: relative;
    padding: 2rem 3rem;
    border-bottom: 1px dotted #adadad;
    background-color: #fff;
    cursor: pointer;
    line-height: 1.8;
  }
  #faq .cont .ac-child__item:after {
    content: "";
    display: block;
    position: absolute;
    top: 40%;
    right: 16px;
    width: 8px;
    height: 8px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: translateY(-50%);
    transform: rotate(135deg);
    transition: all 0.3s;
  }
  #faq .cont .ac-child__item:before {
    content: "Q. ";
    margin-left: -2rem;
  }
  #faq .cont .ac-child__description {
    padding: 1rem 2rem;
    background-color: #fff;
    line-height: 1;
  }
  #faq .cont .ac-child__description p {
    line-height: 1.8;
  }
  #faq .cont .ac-child__description .cont-flex {
    display: flex;
    margin: 1rem 0;
    align-items: center;
    justify-content: space-around;
  }
  #faq .cont .ac-child__description .cont-flex img {
    width: 20%;
    height: auto;
  }
  #faq .cont .ac-child__description .cont-flex .fukidashi {
    width: 75%;
    background: #fff;
    border-radius: 5px;
    position: relative;
    padding: 2rem;
    display: block;
    margin: 10px 10px 10px 30px;
  }
  #faq .cont .ac-child__description .cont-flex .fukidashi::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -15px;
    border: 15px solid #f7f7f7;
    border-right: 15px solid #fff;
  }
  #faq .cont .ac-child__description a {
    color: #2F3D41;
    text-decoration: underline;
  }
  #faq .cont .ac-child__description a:hover {
    text-decoration: none;
  }
  #faq .cont .ac-child__item.open:after {
    top: 50%;
    transform: rotate(315deg);
  }
  /* ----------requirements---------------------------------------------------------------------*/
  #requirements {
    margin: 0px auto 60px auto;
  }
  #requirements strong {
    font-weight: 500;
    font-size: 1.2em;
    margin: 3rem auto 2rem auto;
    display: block;
    line-height: 1.8;
  }
  #requirements table {
    width: 96%;
    margin: 20px auto;
    text-align: left;
    background: #fff;
  }
  #requirements table tr {
    border-bottom: 1px solid #e6e6e6;
  }
  #requirements table tr:first-child {
    border-top: 1px solid #e6e6e6;
  }
  #requirements table th {
    padding: 20px;
    width: 100%;
    font-size: 1.5rem;
    vertical-align: top;
    line-height: 1.8;
    /*color: $gold;*/
    background-color: #fafafa;
    display: block;
  }
  #requirements table th strong {
    font-size: 1.6rem;
    display: inline;
    margin: 0;
    padding: 0;
  }
  #requirements table td {
    padding: 20px;
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.8;
    vertical-align: top;
    display: block;
  }
  #requirements table td b {
    font-size: 1.6rem;
    padding: 0 0 1rem 0;
    font-weight: 500;
    display: block;
    line-height: 1.8;
    color: #393939;
  }
  #requirements table td img {
    width: 80%;
    margin: 10px auto 20px auto;
  }
  #requirements .midashi_s {
    font-size: 1.8rem;
    font-weight: 500;
    color: #2F3D41;
    padding: 0 0 1rem 0;
    letter-spacing: 0.1rem;
  }
  #requirements .event2Wrap {
    width: 100%;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    b {
      font-weight: 900;
    }
  }

  #requirements .event2Wrap h4 {
    line-height: 1.5;
    font-family: "Shippori Mincho", system-ui;
    margin-top: 6rem;
  }
  #requirements .onlineEveRec {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    margin: 10px auto 20px auto;
    background: #f4f4f4;
    padding: 20px 20px;
    width: 100%;
  }
  #requirements .onlineEveRec .highlight {
    /*text-decoration: underline; 
        text-decoration-thickness: 0.5em;
        text-decoration-color: rgba(199, 163, 88, 0.2); 
        text-underline-offset: -0.2em; 
        text-decoration-skip-ink: none;  */
  }
  #requirements .onlineEveRec li {
    text-align: center;
    font-size: 1.6rem;
    padding: 0.3rem 0;
    margin: 0 0 0 0rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
  }
  #requirements .eventGaiyo {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 20px 0 60px 0;
  }
  #requirements .eventGaiyo a {
    display: block;
    width: 45%;
    transition: all 0.3s ease-out;
  }
  #requirements .eventGaiyo a b {
    display: block;
    background: #2F3D41;
    color: #fff;
    padding: 1rem 0.5rem;
    position: relative;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    line-height: 1.6;
  }
  #requirements .eventGaiyo a b::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 85%;
    margin: auto;
  }
  #requirements .eventGaiyo a:hover {
    opacity: 0.6;
    text-decoration: none;
  }
  #requirements .taisyo {
    padding: 0px 0px;
    margin: 20px auto 10px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    line-height: 1.8;
  }
  #requirements .taisyo b {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    font-weight: 400;
  }
  #requirements .taisyo p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #2F3D41;
    text-align: left;
  }
  #requirements .mi-Noto {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
  #requirements .eventWrap_event2 {
    text-align: center;
    margin: 20px auto 60px auto;
    width: 100%;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
  #requirements .eventWrap_event2 strong {
    font-size: 1.8rem;
    padding: 0 0 1rem 0;
    font-weight: 400;
  }
  #requirements .eventWrap_event2 p {
    font-size: 1.5rem;
    text-align: center;
    padding: 0.5rem 0;
    line-height: 1.5;
    margin: 0;
  }
  #requirements .eventWrap_event2 strong {
    font-size: 1.8rem;
    margin: 0 !important;
    padding: 0;
  }
  #requirements .eventWrap_event2 a {
    border: 1px solid #bd9d4e;
    color: #bd9d4e;
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 1.6rem;
    font-family: "Shippori Mincho", system-ui;
    padding: 20px 10px;
    transition: all 0.3s ease-out;
    line-height: 1.8;
  }
  #requirements .eventWrap_event2 a:hover {
    /* background-color: #eacc91; */
    opacity: 0.5;
    text-decoration: none;
  }
  #requirements .short {
    margin: 20px auto 30px auto !important;
  }
  #requirements .onlineEve {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 50px;
    margin-bottom: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
  }

  #requirements .onlineEve .onlineEve_title {
    font-size: 2.6rem;
    font-family: "Shippori Mincho", system-ui;
    color: #2F3D41;
    line-height: 1.4;
  }
  #requirements .onlineEve .get3 {
    font-size: 1.7rem;
    font-weight: 600;
    border: 2px solid #4f63a5;
    margin: 20px auto 20px auto;
    padding: 20px 20px;
  }
  #requirements .onlineEve .get3 .midashi_s {
    color: #000;
  }
  #requirements .onlineEve .get3 strong {
    margin: 0;
    padding: 0.6rem 0;
    display: block;
    font-size: 1.7rem;
    color: #4f63a5;
  }
  #requirements .onlineEve p {
    line-height: 2;
  }
  #requirements .onlineEve p strong {
    font-weight: 500;
    font-size: 1.5rem;
    margin: 20px 0;
  }
  #requirements .onlineEve b {
    font-size: 2.4rem;
    color: #2F3D41;
    padding: 1.5rem 0 1.4rem 0;
    line-height: 1.6;
    font-weight: 500;
    margin: 0 auto 20px auto;
    display: block;
    position: relative;
  }
  #requirements .onlineEve b::before {
    position: absolute;
    content: "";
    top: 0%;
    left: 50%;
    width: 100px;
    transform: translateX(-50%);
    display: block;
    border-top: 3px solid #2F3D41;
  }
  #requirements .onlineEve small {
    font-size: 90%;
  }
  #requirements .onlineEve img {
    margin: 10px auto;
    width: 100%;
  }
  #requirements .onlineEve ul {
    margin: 15px auto;
    background: #fafafa;
    padding: 20px 30px;
    width: 100%;
  }
  #requirements .onlineEve ul li {
    text-align: left;
    list-style-type: square;
    list-style-position: outside;
    padding: 0.5rem 0;
    margin: 0 0 0 2rem;
    font-weight: 600;
  }
  #requirements .onlineEve .gold {
    color: #2F3D41;
    margin: 0;
    padding: 0;
    font-size: 100%;
  }
  #requirements .onlineEve .gold .exc {
    color: #2F3D41 !important;
  }
  #requirements .sckBoxCont {
    width: 96%;
    margin: 0 auto 20px auto;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
  }
  #requirements .sckBoxCont .prg {
    width: 100%;
    border: 2px solid #2F3D41;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    line-height: 2;
    text-align: left;
    background: #fffdf5;
    margin: 10px 0 0 0;
  }
  #requirements .sckBoxCont .prg b {
    color: #2F3D41;
  }
  #requirements .sckBoxCont .sckBox {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  #requirements .sckBoxCont .sckBox table {
    border: 1px solid #dde1ea;
    width: 100%;
    margin: 0px auto 10px auto;
  }
  #requirements .sckBoxCont .sckBox table tr td {
    text-align: center;
    padding: 1rem 1rem;
    border: 1px solid #dde1ea;
    width: auto;
    display: table-cell;
  }
  #requirements .sckBoxCont .sckBox table tr:nth-child(odd) {
    background: #f5f6f9;
  }
  #requirements .sckBoxCont .sckBox p {
    display: block;
    width: 100%;
    text-align: left;
    margin: 1rem auto 2rem auto !important;
  }
  #requirements .Calendar {
    margin: 20px 0;
    display: block;
    justify-content: space-between;
    column-gap: 40px;
    height: 440px;
    position: relative;
  }
  #requirements .Calendar h3 {
    font-size: 18px;
    line-height: 1.4;
    padding: 0 0 5px 0;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
    height: 50px;
  }
  #requirements .Calendar h3 strong {
    margin: 0;
  }
  #requirements .Calendar h3 .Cyaji1,
  #requirements .Calendar h3 .Cyaji2 {
    display: inline-block;
    color: #000;
    padding: 0;
  }
  #requirements .Calendar h3 .Cyaji1:hover,
  #requirements .Calendar h3 .Cyaji2:hover {
    color: #ffa500;
  }
  #requirements .Calendar h3 .Cyaji1 {
    position: absolute;
    right: 0;
    cursor: pointer;
  }
  #requirements .Calendar h3 .Cyaji2 {
    position: absolute;
    left: 0;
    cursor: pointer;
  }
  #requirements .Calendar .Calendar-wrap {
    margin: 0 0 20px 0;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  #requirements .Calendar .calendar {
    padding: 20px 0;
    width: 100%;
    table-layout: fixed;
  }
  #requirements .Calendar th,
  #requirements .Calendar td {
    text-align: center;
    padding: 10px;
    line-height: 1.5;
    width: auto;
    display: table-cell;
    color: #565656;
  }
  #requirements .Calendar th span,
  #requirements .Calendar td span {
    display: inline-block;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    color: #ffa500;
  }
  #requirements .Calendar th {
    font-size: 16px;
  }
  #requirements .Calendar .sun {
    color: red;
  }
  #requirements .Calendar .sat {
    color: blue;
  }
  #requirements .voicep {
    margin: 2rem auto 0 auto;
    display: flex;
    width: 96%;
    align-items: center;
    justify-content: space-between;
  }
  #requirements .voicep p {
    display: block;
    background: #f5f6f9;
    box-sizing: border-box;
    padding: 3rem;
    font-size: 1.3rem;
    text-align: left;
    width: 80%;
  }
  #requirements .voicep img {
    width: 112px;
    height: 100%;
    margin: 0 5px 0 auto;
  }

  
  #requirements .event2Wrap .block02 h4:before {
    display: none;
  }
  #requirements .event2Wrap .block02 h4 .fontL {
    font-size: 110%;
  }
  #requirements .event2Wrap .block02 h4 small {
    display: block;
    font-size: 80%;
  }
  #requirements .event2Wrap .block02 .onlineEveRec {
    padding: 40px 20px 30px;
  }
  #requirements .event2Wrap .block02 dl > div {
    margin-bottom: 25px;
  }
  #requirements .event2Wrap .block02 dl > div:last-child {
    margin-bottom: 0;
  }
  #requirements .event2Wrap .block02 dl dt {
    font-weight: bold;
    margin-bottom: 5px;
  }
  #requirements .event2Wrap .block02 .onlineEveRec .border-b {
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  #requirements .event2Wrap .block02 .onlineEveRec strong{
    color: #2F3D41;
    margin-bottom: 0;
  }
  #requirements .event2Wrap .block02 .eventWrap_event2 a {
    background: #2F3D41;
    border: none;
    color: #fff;
  }
  /* ----------PHILOSOPHY---------------------------------------------------------------------*/
  #PHILOSOPHY .wfBox {
    display: flex;
    flex-direction: column;
  }
  #PHILOSOPHY .wfBox img {
    padding: 2rem;
  }
  #PHILOSOPHY .wfBox p {
    display: block;
  }
  #PHILOSOPHY .wfBox2 {
    display: flex;
    flex-direction: column;
  }
  #PHILOSOPHY .wfBox2 img {
    padding: 2rem;
  }
  /* ----------PHILOSOPHY / studySystem---------------------------------------------------------------------*/
  #recruitpolicy .sysTable {
    width: 100%;
    margin: 20px auto 30px auto;
    border: 1px solid #e6e6e6;
  }
  #recruitpolicy .sysTable th {
    width: 25%;
    line-height: 1.5;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    background: #fafafa;
    padding: 1rem 1rem;
  }
  #recruitpolicy .sysTable td {
    text-align: left;
    line-height: 1.8;
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
    padding: 1rem 1rem;
  }
  #recruitpolicy .sysTable td a {
    color: #2F3D41;
  }
  #recruitpolicy .sysTable td ul li {
    list-style: decimal;
    list-style-position: outside;
    margin: 0 0 0 2rem;
  }
  #recruitpolicy .visionImg {
    width: 100%;
    margin: 20px auto 40px auto;
  }
  #recruitpolicy .visionImg02 {
    width: 90%;
    margin: 20px auto 40px auto;
  }
  #recruitpolicy .vision-point {
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    gap: 20px;
    flex-direction: column;
  }
  #recruitpolicy .vision-point .vision-point--item {
    padding: 0 0px;
    width: 100%;
  }
  #recruitpolicy .vision-point .vision-point--item .mi {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: normal;
    padding: 2rem 2rem;
    color: #4bac98;
    background-color: #ecf6f4;
    position: relative;
    display: inline-block;
  }
  #recruitpolicy .vision-point .vision-point--item .mi::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #ecf6f4;
  }
  #recruitpolicy .vision-point .vision-point--item .mi b {
    font-weight: bold;
  }
  #recruitpolicy h4 {
    margin: 6rem 1rem 2rem 1rem;
  }
  #recruitpolicy p {
    text-align: left;
    padding: 0 0 15px 0;
  }
  #recruitpolicy b {
    font-size: 1.6rem;
    font-weight: bold;
  }
  #recruitpolicy strong {
    display: block;
    font-size: 1.5rem;
    line-height: 2;
    color: #000;
    font-weight: 400;
    margin: 0 0 1rem 0;
  }
  #recruitpolicy .catch {
    font-size: 1.4rem !important;
    line-height: 2 !important;
    font-weight: 400;
    text-align: center;
  }
  #recruitpolicy .fl {
    float: none;
    padding: 2rem 0;
    box-sizing: border-box;
  }
  #recruitpolicy .fr {
    float: none;
    padding: 2rem 0;
    box-sizing: border-box;
  }
  #recruitpolicy .policyAction {
    padding: 0;
    margin: 20px auto;
    text-align: center;
  }
  #recruitpolicy .policyAction strong {
    width: 100%;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: left;
    display: block;
    margin: 0;
    color: #2c2c2c;
  }
  #recruitpolicy .policyAction .box {
    display: block;
    justify-content: space-between;
    gap: 20px;
    flex-direction: column;
  }
  #recruitpolicy .policyAction .box .policyActionTd {
    padding: 1rem 0;
    width: 100%;
  }
  #recruitpolicy .policyAction .box .policyActionTd b {
    font-size: 1.7rem;
    display: inline-block;
    border-bottom: 1px solid #4bac98;
    padding: 1rem 0;
    color: #2c2c2c;
    text-align: left;
    width: 100%;
  }
  #recruitpolicy .policyAction .box .policyActionTd span {
    color: #2c2c2c;
    display: block;
    width: 20%;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 0;
    margin: 0;
  }
  #recruitpolicy .policyAction .box .policyActionTd p {
    text-align: left;
    display: block;
    width: 100%;
    font-size: 1.5rem;
    padding: 0;
  }
  #recruitpolicy .vision {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }
  #recruitpolicy .vision .box {
    margin: 10px auto 0 auto;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
  }
  #recruitpolicy .vision .box .ok {
    background: #4bac98;
    color: #fff;
    text-align: center;
    font-size: 1.7rem;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    display: inline-block !important;
  }
  #recruitpolicy .vision .box img {
    margin: 0 auto;
    width: auto;
    max-height: 200px;
  }
  #recruitpolicy .vision .box span {
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 1.6rem;
    color: #2c2c2c;
    line-height: 2;
    font-weight: 500;
    display: block;
  }
  #recruitpolicy .vision .box strong {
    color: #2c2c2c;
    display: block;
    font-size: 1.9rem;
    font-weight: 500;
    text-align: left;
  }
  /* ----------welfare---------------------------------------------------------------------*/
  #welfare p {
    text-align: left;
  }
  #welfare .wfBox {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 10px auto 50px auto;
  }
  #welfare .wfBox p {
    width: 100%;
    margin: 0 0 10px 0;
    text-align: left;
  }
  #welfare .wfBox .imgbox {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  #welfare .wfBox .imgbox img {
    width: 100%;
  }
  #welfare .rev {
    flex-direction: column;
  }
  #welfare .wfBoxG {
    background-color: #fff;
    padding: 20px 20px;
  }
  #welfare .wfBoxG ul li {
    padding: 10px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #d3d3d3;
  }
  #welfare .wfBoxG ul li:last-child {
    border-bottom: none;
  }
  #welfare .wfBoxG ul li p {
    width: 100%;
    text-align: left;
    margin: 0 0 10px 0;
  }
  #welfare .wfBoxG ul li p strong {
    font-weight: 600;
    font-size: 110%;
    padding: 1rem 0;
    display: block;
  }
  #welfare .wfBoxG ul li .w100 {
    width: 100% !important;
  }
  #welfare .wfBoxG ul li img {
    width: 100%;
  }
  #welfare .wfBoxG ul li .naka {
    list-style-type: circle;
    text-align: left;
    line-height: 1.8;
    margin: 0 0 0 2rem;
  }
  #welfare .wfBoxG ul li .naka li {
    border: none;
    padding: 5px 0;
    display: list-item;
  }
  #welfare .youtube {
    width: 100%;
    margin: 20px auto 0 auto;
  }
  #welfare .youtube iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  #welfare .noflex {
    display: block !important;
  }
  #welfare .rr {
    flex-direction: column !important;
  }
  /* ----------infograph---------------------------------------------------------------------*/
  #graf {
    margin: 0 auto;
    /*スクロールフェードイン下から*/
  }
  #graf .container {
    /* background: $grayl;*/
    padding: 30px 0;
  }
  #graf .container .odometer {
    position: relative;
    margin: 0 auto;
    z-index: 3;
  }
  #graf .container .fade_off {
    opacity: 0;
    transition: all 1s;
  }
  #graf .container .fade_on {
    opacity: 1;
  }
  #graf .container .graph {
    display: flex;
  }
  #graf .container .graph .ninzu_bar {
    max-height: 400px;
    height: 300px;
    margin: 2em;
    color: #fff;
    padding: 0.25em;
    animation: bar-animation 1 2s;
    background: #0091ea;
  }
  #graf .container .graph .bar1 {
    height: 70%;
  }
  @keyframes bar-animation {
    0% {
      transform: scaleY(0);
    }
    100% {
      transform: scaleY(1);
    }
  }
  #graf .container .show {
    /* animation: bar-animation_op 2s;*/
    opacity: 1 !important;
    z-index: 1;
  }
  @keyframes bar-animation_op {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #graf .container .pos_jyugyoin {
    position: relative;
    margin: 20px auto;
    /* background: url(../images/graph_jyugyoin_bg.png) no-repeat;
    background-size: 100%;
    background-position: 0 center; */
    height: 290px;
    width: 300px;
  }
  #graf .container .jyugyoinG {
    position: absolute;
    top: 0;
    left: 0;
    width: 354px;
  }
  #graf .container .jyugyoinG .posAb_jyugyo {
    width: 300px;
    position: absolute;
    top: 2px;
    left: 0;
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: center bottom;
    transition: all 0.4s ease-out 1s;
    /*transform: translate3d(0, 20px, 0);
animation: bar-animation 1 1s;
  transform-origin: center bottom;*/
  }
  #graf .container .jyugyoinG .animated_scale {
    opacity: 1;
    transform: scale(1, 1);
  }
  #graf .container .jyugyoinG .posAb2_jyugyo {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    transform: translate3d(0, 10px, 0);
    transition: all 0.4s ease-out 1.4s;
    /*animation: bar-animation_op 1.5 1s;*/
  }
  #graf .container .jyugyoinG .posAb2_jyugyo img {
    width: 300px;
  }
  #graf .container .syukusyu {
    position: relative;
    width: 90%;
    margin: 2rem auto;
    opacity: 0;
  }
  #graf .container .ninzu {
    position: relative;
    top: 0;
    left: 0;
    width: 300px;
    margin: 0 auto;
  }
  #graf .container .ninzu .ninzuNumL {
    position: absolute;
    top: 120px;
    left: 30px;
    text-align: center;
    line-height: 1.5;
    font-size: 1.5rem;
    letter-spacing: -0.1rem;
    color: #fff;
  }
  #graf .container .ninzu .ninzuNumL strong {
    padding: 0.2rem;
    font-size: 40px;
  }
  #graf .container .ninzu .ninzuNumL strong span {
    font-size: 40px;
    font-family: "Shippori Mincho", system-ui;
    font-weight: 400;
    color: #fff;
  }
  #graf .container .ninzu .ninzuNumR {
    position: absolute;
    top: 160px;
    right: 10px;
    text-align: center;
    line-height: 1.5;
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    color: #2F3D41;
  }
  #graf .container .ninzu .ninzuNumR strong {
    color: #2F3D41;
    padding: 0.2rem;
    font-size: 40px;
  }
  #graf .container .ninzu .ninzuNumR strong span {
    font-size: 40px;
    font-family: "Shippori Mincho", system-ui;
    font-weight: 400;
    color: #2F3D41;
  }
  #graf .container .kanri {
    position: relative;
    top: 0;
    left: 0;
    width: 300px;
    margin: 0 auto;
    color: #fff;
  }
  #graf .container .kanriNumM {
    position: absolute;
    top: 22px;
    left: 35px;
    text-align: center;
    line-height: 1.5;
    font-size: 2rem;
  }
  #graf .container .kanriNumM strong {
    padding: 0.2rem;
    font-size: 50px;
  }
  #graf .container .kanriNumM strong span {
    font-size: 50px;
    font-family: "Shippori Mincho", system-ui;
    font-weight: 400;
    color: #fff;
  }
  #graf .container .kanriNumW {
    position: absolute;
    top: 22px;
    right: 30px;
    text-align: center;
    line-height: 1.5;
    font-size: 2rem;
  }
  #graf .container .kanriNumW strong {
    padding: 0.2rem;
    font-size: 50px;
  }
  #graf .container .kanriNumW strong span {
    font-size: 50px;
    font-family: "Shippori Mincho", system-ui;
    font-weight: 400;
    color: #fff;
  }
  #graf .container span {
    padding: 0;
    margin: 0;
    color: #000;
  }
  #graf .container .cont-in {
    position: relative;
  }
  #graf .container .pos_nenrei {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 290px;
  }
  #graf .container .pos_nenrei .posAb {
    position: absolute;
            top: 20px;
        left: 30px;
    max-width: none;
    width: 75%;
    opacity: 0;
    transform: translate3d(0, 0px, 0);
    transition: all 0.4s ease-out 1.4s;
  }
  #graf .container .pos_nenrei .posAb img {
    width: 100%;
  }
  #graf .container .pos_yukyu {
    position: relative;
    margin: 0 auto 0px auto;
    width: 280px;
  }
  #graf .container .pos_yukyu .posAb_yukyu {
    position: absolute;
    top: 20%;
    left: 35%;
    height: 35%;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: all 0.4s ease-out 1.4s;
  }
  #graf .container .pos_danjyo {
    position: relative;
    margin: 10px auto;
    width: 280px;
  }
  #graf .container .pos_danjyo .posAb_danjyo {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: none;
    width: 100%;
    opacity: 0;
    transform: translate3d(0, 0px, 0);
    transition: all 0.4s ease-out 1.4s;
  }
  #graf .container .pos_danjyo .posAb_danjyo img {
    width: 100%;
  }
  #graf .container .pos_2019 {
    position: relative;
    margin: 20px auto;
    width: 290px;
  }
  #graf .container .pos_2019 .posAb_2019 {
    position: absolute;
    top: 35px;
    left: -20px;
    width: 80%;
    height: 80%;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: all 0.4s ease-out 1.4s;
  }
  #graf .container .pos_kanri {
    position: relative;
    margin: 10px auto;
    width: 290px;
  }
  #graf .container .pos_kanri .posAb_kanri {
    position: absolute;
    top: -20px;
    left: -10px;
    width: 90%;
    height: 90%;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: all 0.4s ease-out 1.4s;
  }
  #graf .container .nenrei {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 1.6rem;
  }
  #graf .container .nenrei li {
    width: 100% !important;
    display: flex;
    justify-content: space-between !important;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid #2F3D41 !important;
    margin: 0 1rem !important;
    padding: 0 !important;
    align-items: center;
    line-height: 1.3 !important;
  }
  #graf .container .nenrei li p {
    padding: 0;
    margin: 0;
  }
  #graf .container .nenrei li .name {
    color: #535252;
    text-align: left;
  }
  #graf .container .nenrei li .age {
    color: #2F3D41;
    text-align: right;
  }
  #graf .container .nenrei li .age strong {
    font-size: 3rem;
    font-weight: 400;
    font-family: "Shippori Mincho", system-ui;
  }
  #graf .container .keitai .tit {
    width: 80%;
    margin: 1rem auto;
  }
  #graf .container .keitaiImg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #graf .container .keitaiImg img {
    margin: 1rem 0.8rem;
    width: 40%;
    height: 100%;
  }
  #graf .container .in {
    width: 96%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
  }
  #graf .container .in li {
    border: 1px solid #2F3D41;
    margin: 1rem auto;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    width: 100%;
  }
  #graf .container .in li .num {
    color: #2F3D41;
    font-size: 1.6rem;
    padding: 0;
    margin: 1rem 0 0 0;
  }
  #graf .container .in li .num strong {
    padding: 0 1rem;
    vertical-align: sub;
    font-size: 6rem;
    font-family: "Shippori Mincho", system-ui;
    font-weight: 400;
  }
  #graf .container .in li .num strong span {
    font-size: 6rem;
    font-weight: 400;
    font-family: "Shippori Mincho", system-ui;
    padding: 0;
    margin: 0;
    line-height: 1;
    color: #2F3D41;
  }
  #graf .container .in li .mi {
    font-size: 1.2rem;
  }
  #graf .container .in li .mi strong {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.2;
    display: block;
  }
  #graf .container .in .liLong {
    width: 100% !important;
  }
  #graf .js-scroll-fade {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    transition: all 1s ease-out;
  }
  #graf .animated {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
  }
  #graf .engageTtl {
    font-size: 1.8rem;
    color: #2F3D41;
  }
  #graf .engageTxt {
    font-size: 1.5rem;
    padding: 10px;
    text-align: left;
  }
  .history-box {
    width: 50%;
    position: relative;
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
    display: flex;
    align-items: center;
  }
  .history-box .m-text {
    font-size: 1.5rem;
    line-height: 1.625;
    text-align: left;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box .m-text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 959px) {
  .history-box--wrap {
    overflow: hidden;
    position: relative;
    padding-bottom: 5rem;
    z-index: 0;
    margin: 0 4px 0 0;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box--wrap {
    padding-bottom: 1.25rem;
    margin: 0;
  }
}
@media screen and (max-width: 959px) {
  .history-box--wrap:before {
    content: "";
    width: 4px;
    height: 100%;
    background-color: #bfbfbf;
    background-color: #d6d6d6;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box--wrap:before {
    left: 0.625rem;
  }
}
@media screen and (max-width: 959px) {
  .history-box:nth-of-type(1):before {
    content: "";
    display: block;
    background-color: #eff8fb;
    position: absolute;
    top: 0;
    bottom: 50%;
    left: 0;
    right: -2px;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box {
    width: auto;
    display: block;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .history-box:nth-of-type(1) {
    padding-top: 0;
  }
  .history-box:nth-of-type(1):before {
    bottom: auto;
    height: 1.875rem;
    right: -4px;
  }
}
@media screen and (max-width: 959px) {
  .history-box--inner {
    width: 100%;
    background-color: #fff;
    padding: 2rem 3rem;
    position: relative;
    z-index: 3;
    position: relative;
  }
  .history-box--inner:before {
    content: "";
    display: block;
    width: 2.5rem;
    height: 1px;
    background-color: #bfbfbf;
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    z-index: 1;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box--inner:before {
    width: 1.25rem;
    top: 1.875rem;
  }
}
@media screen and (max-width: 959px) {
  .history-box--inner:after {
    content: "";
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #a39f9f;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    z-index: 2;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box--inner:after {
    width: 0.75rem;
    height: 0.75rem;
    top: 1.875rem;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box--inner {
    background-color: #fff;
    /*border: 1px solid $_COLOR_BORDER;*/
    padding: 1rem 1.5rem;
  }
}
@media screen and (max-width: 959px) {
  .history-box.is-left {
    padding-right: 2.5rem;
    float: left;
    clear: left;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box.is-left {
    float: none;
    padding-right: 0;
    padding-left: 1.875rem;
  }
}
@media screen and (max-width: 959px) {
  .history-box.is-left .history-box--inner:before {
    right: -2.5rem;
  }
  .history-box.is-left .history-box--inner:after {
    right: -2.5rem;
    transform: translate3d(50%, -50%, 0);
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box.is-left .history-box--inner:before {
    left: -1.3125rem;
    right: auto;
  }
  .history-box.is-left .history-box--inner:after {
    left: -1.5625rem;
    right: auto;
    transform: translate3d(0, -50%, 0);
  }
}
@media screen and (max-width: 959px) and (min-width: 981px) {
  .history-box.is-left.is-adjust2014 .history-box--inner:before {
    top: 15%;
  }
  .history-box.is-left.is-adjust2014 .history-box--inner:after {
    top: 15%;
  }
}
@media screen and (max-width: 959px) {
  .history-box.is-right {
    padding-left: 2.5rem;
    float: right;
    clear: right;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box.is-right {
    float: none;
    padding-left: 1.875rem;
  }
}
@media screen and (max-width: 959px) {
  .history-box.is-right .history-box--inner:before {
    left: -2.5rem;
  }
  .history-box.is-right .history-box--inner:after {
    left: -2.5rem;
    transform: translate3d(-50%, -50%, 0);
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box.is-right .history-box--inner:before {
    left: -1.3125rem;
    right: auto;
  }
  .history-box.is-right .history-box--inner:after {
    left: -1.5625rem;
    right: auto;
    transform: translate3d(0, -50%, 0);
  }
}
@media screen and (max-width: 959px) and (min-width: 981px) {
  .history-box.is-right.js-matchHeight--history {
    transform: translateY(50%);
  }
  .history-box.is-right.is-adjust2013 {
    padding-top: 9.375rem;
  }
  .history-box.is-right.is-adjust2017 .history-box--inner:before {
    top: 15%;
  }
  .history-box.is-right.is-adjust2017 .history-box--inner:after {
    top: 15%;
  }
  .history-box.is-right.is-adjust2019 .history-box--inner:before {
    top: 15%;
  }
  .history-box.is-right.is-adjust2019 .history-box--inner:after {
    top: 15%;
  }
}
@media screen and (max-width: 959px) {
  .history-box.is-last {
    clear: both;
    width: auto;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box.is-last {
    display: block;
    padding-left: 1.875rem;
  }
}
@media screen and (max-width: 959px) {
  .history-box.is-last .history-box--inner {
    border: none;
    background-color: transparent;
  }
}
@media screen and (max-width: 959px) and (min-width: 981px) {
  .history-box.is-last .history-box--inner {
    padding: 0;
  }
  .history-box.is-last .history-box--inner:before,
  .history-box.is-last .history-box--inner:after {
    display: none;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box.is-last .history-box--inner {
    padding-left: 1.875rem;
  }
  .history-box.is-last .history-box--inner:before {
    left: -1.3125rem;
    right: auto;
    width: 50%;
  }
  .history-box.is-last .history-box--inner:after {
    left: -1.5625rem;
    right: auto;
    transform: translate3d(0, -50%, 0);
  }
}
@media screen and (max-width: 959px) {
  .history-box.is-last .m-image {
    position: relative;
    z-index: 3;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box.is-last .m-image {
    width: 5.375rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box.js-matchHeight--history {
    height: auto !important;
  }
}
@media screen and (max-width: 959px) {
  .history-box--head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .history-box--head span {
    padding: 0 1rem 0rem 0;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box--head {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  .history-box--year {
    font-family: source-han-serif-japanese, serif;
    font-size: 1.8rem;
    line-height: 1;
    padding-right: 1.25rem;
    border-right: 1px solid #707070;
    margin-right: 1.25rem;
    color: #000;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box--year {
    font-size: 1.8rem;
    display: block;
    border-right: none;
    padding-right: 0;
  }
}
@media screen and (max-width: 959px) {
  .history-box--title {
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.3;
    color: #000;
    text-align: left;
    padding: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box--title {
    font-size: 2.6rem;
    display: block;
    text-align: center;
    margin-top: 0.625rem;
  }
}
@media screen and (max-width: 959px) {
  .history-box--list {
    margin-top: 0.9375rem;
    padding-left: 1.25em;
    list-style-type: disc;
    text-align: left;
  }
  .history-box--list li {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box--list li {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 959px) {
  .history-box--list li + li {
    margin-top: 0.625rem;
  }
  .history-box.js-effect .history-box--inner:before {
    opacity: 0;
  }
  .history-box.js-effect .history-box--inner:after {
    opacity: 0;
  }
  .history-box.js-effect.is-show .history-box--inner:before {
    animation: fadeIn 0.5s ease 0.3s both;
  }
  .history-box.js-effect.is-show .history-box--inner:after {
    animation: fadeIn 0.5s ease 0.6s both;
  }
  .history-box.js-effect.is-left .history-box--inner {
    opacity: 0;
    transform: translateX(-30px);
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-box.js-effect.is-left .history-box--inner {
    transform: translateX(30px);
  }
}
@media screen and (max-width: 959px) {
  .history-box.js-effect.is-left.is-show .history-box--inner {
    animation: fade-x 0.5s ease both;
  }
  .history-box.js-effect.is-right .history-box--inner {
    opacity: 0;
    transform: translateX(30px);
  }
  .history-box.js-effect.is-right.is-show .history-box--inner {
    animation: fade-x 0.5s ease both;
  }
  .history-box.js-effect.is-last .history-box--inner {
    opacity: 0;
  }
  .history-box.js-effect.is-last.is-show .history-box--inner {
    animation: fadeIn 0.5s ease both;
  }
  .history-future-section {
    /* background: linear-gradient(to bottom, #fafafa, #fafafa); */
    background: #fff;
    color: #000;
    padding-top: 3.75rem;
    padding-bottom: 5.3125rem;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-future-section {
    padding-top: 1.875rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 959px) {
  .history-future-section.l-section--inner {
    margin: 0 0 50px 0;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-future-section.l-section--inner {
    margin: 0 0 25px 0;
  }
}
@media screen and (max-width: 959px) {
  .history-future-box {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
  }
  .history-future-box span {
    padding: 0 1rem;
    color: #000;
  }
  .history-future-box--lead {
    text-align: center !important;
    font-size: 2.4rem;
    line-height: 1;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-future-box--lead {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 959px) {
  .history-future-box--head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-future-box--head {
    margin-top: 1.25rem;
    display: block;
  }
}
@media screen and (max-width: 959px) {
  .history-future-box--year {
    font-family: source-han-serif-japanese, serif;
    font-size: 2.4rem;
    line-height: 1;
    padding-right: 1.25rem;
    border-right: 1px solid #000;
    margin-right: 1.25rem;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-future-box--year {
    font-size: 2.2rem;
    display: block;
    text-align: center;
    padding-right: 0;
    border-right: none;
  }
}
@media screen and (max-width: 959px) {
  .history-future-box--title {
    font-size: 2.6rem;
    line-height: 1.625;
    text-align: left;
  }
}
@media screen and (max-width: 959px) and (max-width: 980px) {
  .history-future-box--title {
    font-size: 2.6rem;
    text-align: center;
    display: block;
  }
}
@media screen and (max-width: 959px) {
  @keyframes fade-x {
    to {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @keyframes fade-y {
    to {
      opacity: 1;
      transform: translateY(0%);
    }
  }
  @keyframes fadeIn {
    0% {
      opacity: 0%;
    }
    100% {
      opacity: 100%;
    }
  }
  /* ----------reason---------------------------------------------------------------------*/
  #reasonL {
    background-image: url("../images/reason_ftate.png");
    background-position: -20% 0;
    background-size: 150px;
    background-repeat: no-repeat;
    width: 100%;
  }
  #reasonL p {
    font-size: 1.5rem;
    line-height: 2;
    padding: 0;
    margin: 0;
  }
  #reasonL strong {
    width: 40%;
  }
  #reasonL b {
    font-size: 1.6rem;
    line-height: 2.2;
    padding: 0;
    margin: 0;
  }
  #reasonR {
    background-image: url("../images/reason_ftate.png");
    background-position: 108% 0;
    background-size: 150px;
    background-repeat: no-repeat;
    width: 100%;
  }
  #reasonR p {
    font-size: 1.5rem;
    line-height: 2;
    padding: 0;
    margin: 0;
  }
  #reasonR strong {
    width: 40%;
  }
  #reasonR b {
    font-size: 1.7rem;
    line-height: 2.2;
    padding: 0;
    margin: 0;
  }
  .reason1 {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    margin: 20px 0 40px 0;
    text-align: left;
    align-items: flex-end;
  }
  .reason1 .item1 {
    width: 10%;
  }
  .reason1 .item2 {
    width: 90%;
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .reason1 .item3 {
    width: 85%;
  }
  .reason1 .item3 img {
    width: 100%;
    object-fit: cover;
    min-height: 200px;
  }
  .reason2 {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    text-align: left;
    width: 100%;
    margin: 40px 0;
    align-items: center;
  }
  .reason2 .item1 {
    padding: 0 20px 20px 20px;
    width: 100%;
  }
  .reason2 .item2 {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .reason2 .item3 {
    width: 10%;
  }
  .reason2 .item3 img {
    width: 85%;
    object-fit: cover;
    min-height: 300px;
  }
  .odd1 {
    flex-direction: column !important;
  }
  .odd2 {
    flex-direction: column !important;
  }
  #reasonR .reason1 .item2 {
    text-align: left;
  }
  #reasonL .reason1 .item2 {
    text-align: right;
  }
  #reasonR .reason1 {
    align-items: flex-start;
  }
  #reasonR .reason1 .item2 {
    padding: 0 0 20px 20px;
    align-items: flex-start;
    text-align: left;
  }
  #reasonL .reason1 .item2 {
    text-align: right;
  }
  /* ---------TECHNIQUE---------------------------------------------------------------------*/
  #tech {
    text-align: center;
  }
  #tech .toolw {
    margin: 20px auto;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    gap: 40px;
  }
  #tech .toolw .box {
    display: block;
  }
  #tech .toolw .box p {
    margin: 0.5rem 0;
  }
  #tech .needW {
    margin: 10px auto 20px auto;
  }
  #tech .needW .photoW {
    display: flex;
    gap: 10px;
    margin: 0 0 20px 0;
  }
  #tech .needW .photoW img {
    width: 50%;
  }
  #tech .needW ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 10px;
    margin: 10px auto;
  }
  #tech .needW ul li {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    align-items: center;
  }
  #tech .needW ul img {
    width: 20%;
    margin: 0;
  }
  #tech .needW ul p {
    text-align: left;
    line-height: 1.5;
    font-size: 1.4rem;
    margin: 0;
  }
  #tech .needW ul p strong {
    font-weight: 600;
    display: block;
    line-height: 1.6;
    font-size: 1.5rem;
  }
  #tech .safeW {
    margin: 10px auto 20px auto;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  #tech .safeW img {
    width: 100%;
  }
  #tech .safeW p {
    display: flex;
    text-align: center;
    line-height: 1.8;
    font-size: 1.5rem;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    width: 100%;
    align-items: flex-start;
    gap: 15px;
  }
  #tech .safeW p span {
    display: block;
    color: #393939;
    text-align: left;
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
  }
  #tech .safeW p span strong {
    font-weight: 600;
    display: block;
    line-height: 1.6;
    margin: 5px 0;
    font-size: 1.6rem;
  }
  #tech .safeW p img {
    width: 20%;
  }
}
@media screen and (min-width: 960px) {
  body {
    font-size: 1.6rem;
  }
  /* body::before {
    content: "";
    position: absolute;
    top: 0;
    right: 2.5%;
    width: 95%;
    height: 300px;
    display: block;
    background: #f5f6f9;
    z-index: -1;
  } */
  #ph-mv::before {
    height: 500px;
  }
  #ph-mvL::before {
    left: 0;
    right: auto;
    width: 85%;
    height: 1200px;
  }
  #ph-mvR::before {
    left: auto;
    right: 0;
    width: 85%;
    height: 1200px;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .att {
    color: #2F3D41;
    padding: 0 0 0 5px;
    margin: 0;
  }
  .fontyu {
    font-weight: 500;
  }
  .viewmore {
    margin: 5px auto;
    width: auto;
    display: inline-block;
    border: 1px solid #000;
    padding: 1rem 4rem;
    position: relative;
    color: #000;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    transition-duration: 0.2s;
  }
  .viewmore:hover {
    opacity: 0.5;
    text-decoration: none;
  }
  .viewmore span {
    color: #000;
    padding: 0;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
  }
  .viewmore .short {
    width: 80% !important;
    margin: 40px auto;
  }
  .baBtn {
    font-size: 1.2rem;
    letter-spacing: 0;
    font-weight: 400;
    padding: 1rem 4rem;
  }
  .intop {
    display: block;
    margin: 4rem auto 4rem auto;
    border: 1px solid #5d5d5d;
    padding: 3rem 1.5rem;
    font-size: 1.8rem;
    width: 40%;
    transition-duration: 0.2s;
  }
  .intop:hover {
    text-decoration: none;
    background: #fafafa;
  }
  /* ---------contents 共通---------------------------------------------------------------------*/
  main {
    z-index: 2;
  }
  article {
    text-align: center;
    /* padding: 90px 0px 0px 0px; */
  }
  article section {
    overflow: hidden;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
  article h2 {
    letter-spacing: 0.1rem;
    text-align: center;
    display: inline-block;
    padding: 60px 0 0px 0;
    font-size: 4rem;
    line-height: 1.4;
    font-weight: 500;
  }
  article h3 {
    font-size: 1.5rem;
    padding: 0 0 60px 0;
    margin: 0 0 0px 0;
    display: block;
    letter-spacing: 0.1rem;
  }
  article h4 {
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin: 8rem 0rem 0rem 0rem;
    position: relative;
    letter-spacing: 0.1rem;
    line-height: 1.4;
    padding: 2rem 2rem 3rem 2rem;
    display: block;
    /*&::before {
        font-size: if($type==sp,4rem, 6rem);
    	content: "\201c";
        color: $beiged;
        position: absolute;
        top: -2rem;
        left: 0;

    }
   &::after {
        font-size:  if($type==sp,4rem, 6rem);
    	content: "\201d";
     color: $beiged;
    position: absolute;
    top: -2rem;
    right: 0;
    
    
    }*/
  }
  article h4::before {
    position: absolute;
    content: "";
    top: 0%;
    left: 50%;
    width: 100px;
    transform: translateX(-50%);
    display: block;
    border-top: 1px solid #2F3D41;
  }
  article h4 small {
    font-size: 70%;
    display: inline-block;
  }
  article h5 {
    font-size: 2.6rem;
    font-weight: 400;
    padding: 0px 0 0px 0px;
    margin: 20px 0 20px 0;
    display: inline-block;
    position: relative;
    color: #2F3D41;
    letter-spacing: 0.05rem;
    line-height: 1.8;
    /*&::before {
  position: absolute;
  content: "";
  border: 0;
  center: 0;
  bottom: -1rem;
  width: 100%;
  border-top: 1px solid #000;
}
&::after {
  position: absolute;
  content: "";
  border: 0;
  right: 40%;
  top: 0;
  width: 10%;
  border-top: 1px solid #000;
}*/
  }
  article .mv {
    margin: 5rem auto 4rem auto;
    max-height: 450px;
    object-fit: cover;
    object-position: 0 0%;
    width: 80%;
  }
  article span {
    display: inline-block;
    padding: 5px 15px;
    margin: 10px;
    font-size: 1.3rem;
    color: #fff;
  }
  article span.color02 {
    padding: 0;
    margin: 0;
    color: #2F3D41;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
  }
  article p {
    font-size: 1.6rem;
    max-width: 1000px;
    margin: 1em auto;
    font-weight: 300;
    line-height: 2;
    line-height: 2;
  }
  article .exc {
    padding: 0 0.3rem !important;
    margin: 0 !important;
    font-size: 105% !important;
    color: #393939 !important;
    display: inline !important;
    font-family: serif;
  }
  article img {
    width: auto;
    display: block;
    margin: 0 auto;
  }
  article .contW {
    width: 1000px;
    margin: 0 auto;
  }
  .textL {
    text-align: left !important;
  }
  .textC {
    text-align: center !important;
  }
  /* IEハック用mixin */
  
  /*==============================================================
    #トップページ
    ==============================================================*/
  #top {
    width: 100%;
    /*============================
    #MV
    ============================*/
    /*============================
    #メッセージ
    ============================*/
    /*============================
    理由
    ============================*/
    /*============================
      FAQ
      ============================*/
    /*============================
     MOVIE
      ============================*/
  }
  #top #requirements table th {
    font-size: 1.8rem;
    width: 25%;
  }
  #top .endTxt {
    padding: 2rem;
    color: #faa500;
    background: #fef9ee;
    font-size: 2rem;
    line-height: 1.8;
  }
  #top .flex-control-nav {
    width: 100%;
    margin: 1rem 0 0 0;
    text-align: center;
  }
  #top .flex-control-nav li {
    margin: 0 6px;
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
  #top .flex-control-paging li a {
    width: 11px;
    height: 11px;
    display: block;
    background: #e6b6b9;
    cursor: pointer;
    text-indent: -9999px;
    border-radius: 20px;
  }
  #top .flex-control-paging li a:hover {
    background: #2F3D41;
  }
  #top .flex-control-paging li a.flex-active {
    background: #2F3D41;
    cursor: default;
  }
  #top .pc {
    display: block;
  }
  #top .sp {
    display: none;
  }
  #top #mv {
    height: auto;
    margin: 0 3rem 3rem 3rem;
    box-sizing: border-box;
    position: relative;
  }
  #top #mv .scroll {
    position: absolute;
    bottom: 0px;
    right: 0;
    height: 100px;
    text-align: justify;
    width: auto;
    z-index: 1;
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 1.3rem;
    border-left: 1px solid #d8d8d8;
    padding: 0 5px;
  }
  #top #mv .scroll span {
    margin: 0;
    padding: 0 0 10px 0;
    letter-spacing: 0.1rem;
    font-size: 1.2rem;
  }
  #top #mv .scroll::after {
    content: "aaaa";
    position: absolute;
    bottom: -30px;
    right: 0;
    height: 30px;
    padding: 0 5px;
    border-left: 1px solid #d8d8d8;
  }
  #top #mv .video-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    /*height: if($type==sp, auto,  90vh);*/
    display: inherit;
    overflow: hidden;
    z-index: 1;
    border: none;
  }
  #top #mv .video-container .mvwoman {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    min-height: 400px;
    height: auto;
    overflow: hidden;
    animation-name: fadeOut;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-delay: 2.5s;
    border: none;
    background: rgba(0, 0, 0, 0.5);
  }
  #top #mv .video-container .video-sidebar {
    position: absolute;
    left: 0%;
    top: 0%;
    height: 100%;
    width: 100%;
    color: #fff;
    z-index: 3;
    background: rgba(0, 0, 0, 0.2);
  }
  #top #mv .video-container .toptxtBox {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 3;
    width: 100%;
  }
  #top #mv .video-container img,
  #top #mv .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #top #mv .video-container h2 {
    padding: 0px 0 0rem 0;
    margin: 0 0 0px 0;
    font-size: 3.4rem;
    font-weight: 500;
    color: #e6e6e6;
    letter-spacing: 0.3;
    border: none;
  }
  #top #mv .video-container h2 img,
  #top #mv .video-container h2 video {
    width: 60% !important;
    height: 60% !important;
  }
  #top #mv .video-container strong {
    display: block !important;
    font-size: 3.4rem;
    font-weight: 500;
    padding: 2rem 0 2rem 0 !important;
  }
  #top #mv .video-container p {
    text-align: center;
  }
  #top .video-container2 {
    margin: 60px 0;
    text-align: center;
    position: relative;
    width: 100%;
    min-height: auto;
  }
  #top .video-container2 .toptxtBox {
    z-index: 3;
    width: auto;
    box-sizing: border-box;
    padding: 3rem 3rem;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    writing-mode: vertical-rl;
    align-items: flex-start;
    text-orientation: upright;
  }
  #top .video-container2 .toptxtBox strong {
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    text-align: justify;
    padding: 1rem 0 1rem 0;
    font-weight: 500;
    margin: 0;
    line-height: 1.8;
    padding: 0;
    text-align: left;
  }
  #top .video-container2 .toptxtBox span {
    color: #393939;
    padding: 0 10px 0 50px;
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
  }
  #top .video-container2 .toptxtBox span::before {
    content: "";
    height: 30px;
    width: 0px;
    bottom: 0;
    left: 0;
    display: block;
    margin: 0 0 1rem 0;
    border-left: 1px solid #393939;
    border-bottom: none;
  }
  #top .video-container2 .toptxtBox span::after {
    content: "";
    height: 30px;
    width: 0px;
    bottom: 0;
    left: 0;
    display: block;
    border-left: 1px solid #393939;
    border-bottom: none;
    margin: 1rem 0 0 0;
  }
  #top .video-container2 .toptxtBox p {
    font-size: 1.8rem;
    text-align: left;
    letter-spacing: 0.1rem;
    margin: 0;
    padding: 0;
  }
  #top #TopReason {
    margin: 60px 0;
    text-align: center;
    position: relative;
    width: 100%;
  }
  #top #TopReason .intop {
    margin: 200px auto 150px auto;
  }
  #top #TopReason a {
    transition-duration: 0.2s;
  }
  #top #TopReason a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  #top #TopReason .moreBtn {
    display: inline-block;
    color: #393939;
    font-size: 1.6rem;
    border: 1px solid #393939;
    text-indent: -0.5rem;
    margin: 20px 20px 10px 20px;
    padding: 1rem 4rem;
    position: relative;
  }
  #top #TopReason .moreBtn::after {
    content: "";
    position: absolute;
    top: 47%;
    right: 5%;
    width: 6px;
    height: 6px;
    border-top: 1px solid #393939;
    border-right: 1px solid #393939;
    transform: rotate(45deg);
  }
  #top #TopReason ul .bgimg {
    position: absolute;
    top: -30px;
    left: -60px;
    width: 220px;
  }
  #top #TopReason ul .bgimg img {
    width: 100%;
  }
  #top #TopReason ul .bgimg2 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 220px;
  }
  #top #TopReason ul .bgimg2 img {
    width: 100%;
  }
  #top #TopReason ul li {
    position: relative;
    background: linear-gradient(90deg, #f5f6f9 0%, #f5f6f9 50%, #fff 50%, #fff 100%);
    margin: 180px 0;
  }
  #top #TopReason ul li .item2 {
    align-items: flex-end;
    width: 30%;
  }
  #top #TopReason ul li .item2 b {
    padding: 0 20px;
    text-align: right;
  }
  #top #TopReason ul li:nth-child(even) {
    background: linear-gradient(270deg, #f5f6f9 0%, #f5f6f9 50%, #fff 50%, #fff 100%);
  }
  #top #TopReason ul li:nth-child(even) .item2 {
    align-items: flex-start;
  }
  #top #TopReason ul li:nth-child(even) .item2 b {
    text-align: left;
  }
  #top #TopReason ul li .item3 {
    margin: 80px 0 -80px 0;
    z-index: 2;
    width: 60%;
  }
  #top #TopReason ul li .item3 b {
    padding: 0 20px;
  }
  #top #TopReason .part2 {
    display: none;
  }
  #top #TopReason .part2 li:nth-child(even) {
    background: linear-gradient(90deg, #f5f6f9 0%, #f5f6f9 50%, #fff 50%, #fff 100%);
  }
  #top #TopReason .part2 li:nth-child(even) .item2 {
    align-items: flex-end;
    text-align: right;
  }
  #top #TopReason .part2 li:nth-child(even) .item2 b {
    padding: 0 0px 0 20px;
    text-align: right;
  }
  #top #TopReason .part2 li:nth-child(odd) {
    background: linear-gradient(270deg, #f5f6f9 0%, #f5f6f9 50%, #fff 50%, #fff 100%);
  }
  #top #TopReason .part2 li:nth-child(odd) .item2 {
    align-items: flex-start;
    text-align: left;
  }
  #top #TopReason .part2 li:nth-child(odd) .item2 b {
    padding: 0 20px 0 0px;
    text-align: left;
  }
  #top #TopReason .part2 li .moreBtn {
    margin: 20px 10px 10px 10px !important;
  }
  #top #TopReason .reason1 {
    width: 80%;
    margin: 0 auto;
    justify-content: space-around;
    align-items: center;
  }
  #top #TopReason .reason1 .item1 {
    display: none;
  }
  #top #TopReason .reason1 .item2 {
    padding: 0;
  }
  #top #TopReason .reason1 .item2 strong {
    height: 200px;
  }
  #top #TopReason .reason1 .item2 strong img {
    height: 100%;
  }
  #top #TopReason .reason1 .item2 b {
    font-size: 1.8rem;
    line-height: 2.2;
  }
  #top #TopReason .odd1 {
    align-items: center;
  }
  #top #TopFaq {
    margin: 80px auto 160px auto;
    text-align: center;
    position: relative;
    width: 1024px;
  }
  #top #TopFaq a {
    transition-duration: 0.2s;
    display: flex;
    align-items: center;
    background-image: url("../images/topfaq_img.png");
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 400px;
    text-align: center;
    position: relative;
    margin: 0 auto;
  }
  #top #TopFaq a p {
    margin: 0 auto;
    padding: 0 0 60px 0;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0.2rem;
  }
  #top #TopFaq a p strong {
    font-size: 200%;
    color: #fff;
    font-weight: 500;
  }
  #top #TopFaq a p span {
    display: block;
    padding: 0 0 20px 0;
    margin: 0;
    color: #393939;
    font-size: 2rem;
  }
  #top #TopFaq a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0%;
    top: 50%;
    right: 5%;
    width: 9px;
    height: 9px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
  }
  #top #TopFaq a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  #top .movieW {
    text-align: center;
    padding: 0px 0;
  }
  #top .movieW video {
    margin: 40px auto 0 auto;
    width: 50%;
  }
  /* ----------people---------------------------------------------------------------------*/
  #people .interviewBox {
    width: 1000px;
    margin: 0 auto;
  }
  #people .interviewBox .tit {
    position: relative;
  }
  #people .interviewBox .tit h4 {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    font-size: 1.7rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 200;
    text-align: left;
    padding: 0;
    font-family: source-han-serif-japanese, serif;
  }
  #people .interviewBox .tit h4::before,
  #people .interviewBox .tit h4::after {
    content: none;
  }
  #people .interviewBox .tit h4 strong {
    font-size: 2.2rem;
    font-weight: 500;
    display: block;
  }
  #people .interviewBox h5 {
    width: 100%;
    font-size: 2rem;
    font-weight: 500;
    border-top: 1px solid #2F3D41;
    text-align: left;
    padding: 1rem 0 0 0;
    margin: 2rem auto 0rem auto;
    font-family: source-han-serif-japanese, serif;
  }
  #people .interviewBox h5::before {
    content: none;
  }
  #people .interviewBox p {
    text-align: left;
    margin: 1rem auto;
  }
  #people .interviewBox .fr {
    float: right;
    margin: 0 0 1rem 1rem;
  }
  #people .interviewBox .fb_rr {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  #people .interviewBox .fb_rr div {
    margin: 0 0 0 2rem;
    padding: 0;
  }
  #people .interviewBox .fb_rr img {
    margin: 2rem 0 0 0;
  }
  #people .interviewBox .fb_r {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  #people .interviewBox .fb_r div {
    margin: 0 2rem 0 0rem;
    padding: 0;
  }
  #people .interviewBox .fb_r img {
    margin: 2rem 0 0 0;
  }
  #people .interviewBox .fb_rs {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  #people .interviewBox .fb_rs div {
    margin: 0 2rem 0 0rem;
    padding: 0;
  }
  #people .interviewBox .fb_rs img {
    margin: 2rem 0 0 0;
    width: 30%;
  }
  #people .interviewBox .sph {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: center;
  }
  #people .interviewBox .sph img {
    width: 25%;
    margin: 1rem;
    box-sizing: border-box;
  }
  #people .wrap {
    width: 1000px;
    margin: 60px auto 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  #people .wrap .box {
    width: 32%;
    margin: 0 0px 20px 0px;
  }
  #people .wrap .box a {
    display: block;
    transition-duration: 0.2s;
  }
  #people .wrap .box a .name {
    line-height: 1.8;
  }
  #people .wrap .box a .imgbox {
    position: relative;
    height: 584px;
    width: auto;
    margin: 0 auto;
  }
  #people .wrap .box a .imgbox img {
    position: absolute;
    height: 100%;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    object-fit: cover;
  }
  #people .wrap .box a .imgbox img:nth-last-of-type(2) {
    opacity: 1;
  }
  #people .wrap .box a .imgbox img:nth-last-of-type(1) {
    animation-name: album;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    opacity: 1;
  }
  #people .wrap .box a:hover {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
  }
  /* ----------toward---------------------------------------------------------------------*/
  .toward_for_family {
    width: 100%;
    margin: 0 auto;
  }
  .toward_for_family ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0 30px 0;
  }
  .toward_for_family ul li {
    margin: 10px;
    width: 300px;
    height: 300px;
    background: #fff;
    border-radius: 50%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .toward_for_family ul li p {
    margin: 0;
    padding: 0 !important;
    line-height: 1.2;
  }
  .toward_for_family ul li .tit {
    font-size: 3rem;
    text-align: center !important;
  }
  .toward_for_family ul li .tit small {
    font-size: 2.2rem;
    display: block;
    text-align: center;
    margin-top: 5px;
  }
  .toward_for_family ul li .num {
    font-size: 6.8rem;
    color: #2F3D41;
    margin-bottom: 12px;
  }
  .toward_for_family ul li .num small {
    font-size: 2.4rem;
  }
  .toward_for_family ul li .note {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .toward_for_family .circle {
    text-align: center;
    margin: 0px 0 30px 0;
  }
  .toward_for_family .circle img {
    width: auto;
  }
  .toward_education {
    text-align: center;
  }
  .toward_education .zu {
    margin: 0px auto 0 auto;
    padding: 20px 0;
  }
  .toward_education .zu img {
    width: auto;
    height: auto;
  }
  .toward_education .box {
    display: flex;
    flex-direction: row;
    width: 1000px;
    margin: 2rem auto 3rem auto;
    border: 1px solid #fafafa;
    background: #fff;
  }
  .toward_education .box ul {
    margin: 0rem 0 2rem 0;
  }
  .toward_education .box ul li {
    text-align: left;
    margin: 0 3rem 0.5rem 4rem;
    line-height: 1.6;
    padding: 0 0 0rem 0rem;
    list-style-position: outside;
    list-style-type: disc;
    font-size: 1.5rem;
  }
  .toward_education .box .tit {
    background: #f5f6f9;
    padding: 1rem;
    width: 250px;
    font-size: 1.6rem;
    padding: 2rem !important;
    display: flex;
  }
  .toward_education .box p {
    width: 750px;
    display: block;
    text-align: left !important;
    margin: 0;
    padding: 0rem 2rem 2rem 2rem !important;
    font-size: 1.5rem;
  }
  .toward_education .box span {
    display: flex;
    padding: 0;
    margin: 0;
  }
  .toward_education .box span img {
    margin: 5px;
    width: 48%;
  }
  .toward_education .box strong {
    font-weight: 500 !important;
    font-size: 1.6rem !important;
    padding: 2rem 0 1rem 0 !important;
    margin: 0 !important;
    display: block !important;
  }
  .toward-data {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .toward-data--item {
    padding-left: 4%;
    padding-right: 4%;
    padding-top: none;
    border-left: 1px solid #bfbfbf;
    border-top: none;
    margin: 4rem 0;
  }
  .toward-data--item h6 {
    font-size: 2.2rem;
    font-weight: 500;
    padding: 0px 0 0px 0px;
    margin: 0px 0 0px 0;
    display: inline-block;
    position: relative;
    color: #000;
  }
  .toward-data--item strong {
    font-size: 4.2rem !important;
    color: #393939;
    font-weight: 500;
    line-height: 1.2 !important;
  }
  .toward-data--item:nth-of-type(3n) {
    width: 32%;
    padding-right: 0;
  }
  .toward-data--item:nth-of-type(3n-1) {
    width: 36%;
  }
  .toward-data--item:nth-of-type(3n-2) {
    width: 32%;
    padding-left: 0;
    border-left: none;
  }
  .toward-way {
    margin: 20px 0 120px 0;
    background: #fff;
    padding: 2rem 2rem;
  }
  .toward-way p {
    text-align: center !important;
    color: #000;
  }
  .toward-way a {
    display: block;
    transition-duration: 0.2s;
  }
  .toward-way a:hover {
    opacity: 0.5;
    text-decoration: none;
  }
  .toward-way .btn-contact {
    background: #2F3D41;
    margin: 1rem auto 2rem auto;
    width: 80%;
  }
  .toward-way .btn-contact span {
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 0.1rem;
    color: #fff;
  }
  .event .hsc {
    line-height: 2;
    padding: 1rem 0;
  }
  .event h5::before {
    border: none;
  }
  .event .eventWrap {
    text-align: center;
    padding: 40px;
    width: 100%;
    text-align: center;
    background: #fff9f2;
  }
  .event .eventWrap strong {
    font-size: 2.5rem;
    color: #ffa500;
    padding: 0 0 1rem 0;
    font-weight: 500;
  }
  .event .eventWrap p {
    font-size: 1.6rem;
    text-align: center;
    padding: 1rem 0;
  }
  .event .eventWrap a {
    background: #ffa500;
    color: #fff;
    display: block;
    margin: 0 auto;
    width: 50%;
    font-size: 1.8rem;
    padding: 1rem;
    transition: all 0.3s ease-out;
  }
  .event .eventWrap a:hover {
    background-color: #eacc91;
    text-decoration: none;
  }
  .event sp {
    display: none;
  }
  .event .ore {
    color: #ffa500;
    font-weight: 400;
    font-size: 2rem;
    padding: 0 !important;
    display: block;
    margin: 0 !important;
    line-height: 1.5;
    display: inline;
  }
  .event .eventWrap_event {
    text-align: center;
    margin: 40px auto 20px auto;
    width: 800px;
    text-align: center;
  }
  .event .eventWrap_event strong {
    font-size: 2.5rem;
    padding: 0 0 1rem 0;
    font-weight: 500;
  }
  .event .eventWrap_event p {
    font-size: 1.6rem;
    text-align: center;
    padding: 1rem 0;
    line-height: 1.5;
    margin: 0;
  }
  .event .eventWrap_event strong {
    font-size: 2.6rem;
    margin: 0 !important;
    padding: 0;
  }
  .event .eventWrap_event a {
    background: #2F3D41;
    color: #fff;
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 1.8rem;
    padding: 30px 10px;
    transition: all 0.3s ease-out;
    line-height: 1.8;
  }
  .event .eventWrap_event a:hover {
    background-color: #eacc91;
    text-decoration: none;
  }
  /* ----------message---------------------------------------------------------------------*/
  #message p {
    text-align: left;
  }
  #message a {
    width: 30%;
    display: block;
    margin: 0 auto;
    border: 1px solid #000;
    padding: 0px 0;
    position: relative;
    color: #000;
    transition-duration: 0.2s;
  }
  #message a:hover {
    opacity: 0.5;
  }
  #message a::after {
    content: "\f105";
    font-size: 2rem;
    font-family: FontAwesome;
    position: absolute;
    top: calc(50% - 1rem);
    right: 5%;
    color: #000;
  }
  #message a span {
    color: #000;
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
    font-weight: 500;
  }
  #message .copy {
    text-align: center;
    margin: 4rem 0 2rem 0;
  }
  #message .copy img {
    height: 53px;
    width: auto;
  }
  #message .name {
    padding: 40px 0;
    text-align: right;
  }
  /* ----------career---------------------------------------------------------------------*/
  #career .att {
    font-size: 1.4rem;
    margin: -20px 0 0 0;
    display: block;
  }
  #career .modelcase {
    margin: 40px 0 20px 0;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-direction: row;
    width: 1024px;
    margin: 40px auto;
  }
  #career .modelcase .txt {
    width: 40%;
    text-align: left;
  }
  #career .modelcase b {
    font-size: 1.8rem;
    margin: 1rem 0;
    display: inline-block;
  }
  #career .modelcase img {
    object-fit: contain;
    width: 60%;
  }
  #career .modelcase2 {
    margin: 40px auto 80px auto;
    width: 1024px;
  }
  #career h6 {
    font-size: 200%;
  }
  #career .case {
    display: flex;
    width: 800px;
    margin: 0 auto;
    flex-direction: column;
  }
  #career .case .flow {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 800px;
    padding: 0 0 30px 0;
    margin: 0 auto;
    position: relative;
    font-size: 1.5rem;
    line-height: 1.8;
  }
  #career .case .flow::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background-color: #e6e6e6;
    position: absolute;
    top: 0px;
    left: 100px;
  }
  #career .case .flow:last-child {
    padding: 0 0 100px 0;
    align-items: flex-start;
  }
  #career .case .flow:last-child::before {
    display: none;
  }
  #career .case .flow .year {
    position: relative;
    width: 200px;
  }
  #career .case .flow .year span {
    display: block;
    background: #8b8b8b;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    width: auto;
    white-space: nowrap;
    margin: 0;
    line-height: 1;
    font-size: 1.5rem;
  }
  #career .case .flow .txt {
    margin: 0 0 0 1rem;
    text-align: left;
    width: 80%;
    padding: 0 1rem;
  }
  #career .case .model {
    background: #f5f6f9;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    align-items: center;
    margin: 0 0 2rem 0;
  }
  #career .case .model .pc {
    display: block;
  }
  #career .case .model .sp {
    display: none;
  }
  #career .case .model a {
    display: block;
    border: 1px solid #2F3D41;
    color: #2F3D41;
    padding: 1rem;
    text-align: center;
    position: relative;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 1rem 0 0 0;
    width: auto;
    /*&::after{
        content: "";
            font-family: FontAwesome;
      content: "\f054";
       position: absolute;
        top: 30%;
        right: 2%;
        color: $gold;
       }*/
  }
  #career .case .model img {
    width: 50%;
  }
  #career .case .model .txt {
    width: 50%;
    padding: 2rem 2rem 2rem 4rem;
    text-align: left;
  }
  #career .case .model .txt .gaiyo {
    display: flex;
  }
  #career .case .model .txt .gaiyo .num {
    font-size: 3rem;
    padding: 0 0 0rem 0;
    margin: 0;
    color: #2F3D41;
    display: block;
    font-weight: normal;
  }
  #career .case .model .txt .gaiyo .num strong {
    font-size: 4rem;
    font-weight: normal;
  }
  #career .case .model .txt .gaiyo .tbox {
    margin: 0 0 0 20px;
  }
  #career .case .model .txt .gaiyo .nyusya {
    font-size: 1.5rem;
    padding: 0.2rem 0;
    margin: 0;
    color: #393939;
  }
  #career .case .model .txt .gaiyo .syokusyu {
    font-size: 2.5rem;
    font-weight: normal;
    padding: 0 0 0rem 0;
    display: block;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.1rem;
    color: #000;
  }
  #career .case .model .txt p {
    display: block;
    padding: 0rem 0;
    font-size: 1.5rem;
    line-height: 1.8;
  }
  /* ---------step---------------------------------------------------------------------*/
  #step h4 {
    font-size: 2.5rem;
  }
  #step .flow {
    width: 100%;
    text-align: center;
    padding: 0rem 0 5rem 0;
    margin: 0 auto 0rem auto;
    /*background: $grayl;*/
  }
  #step .flow .jiseki {
    width: 1000px;
    margin: 20px auto;
    background: #f5f6f9;
    padding: 2rem;
  }
  #step .flow .jiseki strong {
    font-size: 1.4rem;
    text-align: center;
    padding: 0.5rem 0 1rem 0;
  }
  #step .flow .jiseki p {
    font-size: 1.2rem;
    text-align: left;
  }
  #step .flow .flowMi {
    font-size: 2rem;
    font-weight: 500;
    padding: 0 0 1rem 0;
    margin: 0 auto;
  }
  #step .flow .box {
    width: 1000px;
    margin: 0rem auto 5rem auto;
    border: 1px solid #2F3D41;
    background: #fff;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: row;
    text-align: left;
    position: relative;
  }
  #step .flow .box::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #2F3D41 transparent transparent transparent;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    bottom: -4rem;
    left: 50%;
    margin: -20px 0 0 -20px;
  }
  #step .flow .box:last-child {
    margin: 0rem auto;
  }
  #step .flow .box:last-child::after {
    display: none;
  }
  #step .flow .box .tit {
    width: 15%;
    margin: 0 1rem 0 0;
    padding: 0;
    vertical-align: middle;
  }
  #step .flow .box .num {
    color: #2F3D41;
    display: block;
    font-size: 2rem;
    margin: 0;
    padding: 0 0 0.5rem 0;
    line-height: 1;
  }
  #step .flow .box .num b {
    font-size: 150%;
  }
  #step .flow .box p {
    text-align: left;
    margin: 0;
    padding: 0 0 0 0rem;
    font-size: 1.6rem;
    width: 85%;
  }
  #step .flow .box strong {
    font-weight: 500;
    font-size: 1.8rem;
    display: block;
    padding: 0;
  }
  #step .flow .noyaji::after {
    display: none;
  }
  #step .flowbg {
    width: 100%;
    background: #epeat;
    padding: 40px 0;
    margin: 0 0 40px 0;
  }
  #step .voice {
    background: #fbf6ed;
    width: 100%;
    margin: 40px 0 0 0;
    padding: 60px 0;
  }
  #step .voice .inner {
    overflow: hidden;
    z-index: 1;
    width: 1000px;
    margin: 0 auto;
  }
  #step .voice .inner .tit {
    padding: 0 0 40px 0;
    width: 45%;
    margin: 0 auto;
  }
  #step .voice .inner .cus img {
    float: left;
    margin: 0 0 10px 0;
  }
  #step .voice .inner .cus img:nth-of-type(2n) {
    float: right;
  }
  #step ul li {
    margin: 20px 0;
    padding: 20px 0 30px 0;
    border-top: 1px solid #2F3D41;
    display: table;
    width: 1000px;
    margin: 0 auto;
    flex-direction: row;
  }
  #step ul li .tit {
    width: 30%;
    vertical-align: middle;
    text-align: left;
    padding: 0 0 0px 0;
    display: table-cell;
  }
  #step ul li p {
    text-align: left;
    display: table-cell;
    padding: 0;
    margin: 0;
  }
  #step ul li:last-child {
    border-bottom: 1px solid #2F3D41;
  }
  #step .tit {
    font-size: 1.5rem;
    line-height: 2;
    font-weight: 500;
    padding: 2rem 0 0 0;
  }
  #step .tit span {
    color: #2F3D41;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 3.5rem;
    font-weight: 500;
    font-family: source-han-serif-japanese, serif;
  }
  #step .box {
    display: flex;
    width: 1000px;
    margin: 20px auto;
    flex-direction: row;
  }
  #step .box img {
    height: 100%;
  }
  #step .box p {
    text-align: left;
    display: inline-block;
    padding: 0 0 0 2rem;
  }
  #step .box p span {
    display: block;
    padding: 30px 0 0 0;
    margin: 30px 0 0 0;
    background-image: url(../images/step_pointtit.png), url(../images/step_pointtitbg.png);
    background-repeat: no-repeat, repeat-x;
    background-position:
      left top,
      left top;
    color: inherit;
    font-size: inherit;
  }
  /* ---------education---------------------------------------------------------------------*/
  #education {
    text-align: center;
  }
  #education .zu {
    margin: 20px auto 80px auto;
  }
  #education .zu img {
    width: 70%;
  }
  #education h5 {
    padding: 0;
    margin: 2rem 0;
  }
  #education .box {
    display: flex;
    flex-direction: row;
    width: 1000px;
    margin: 20px auto 80px auto;
    border: 1px solid #fafafa;
    background: #fff;
  }
  #education .box .tit {
    background: #f5f6f9;
    padding: 1rem;
    width: 260px;
    font-size: 1.6rem;
    padding: 20px;
    justify-content: center;
    display: flex;
    position: relative;
  }
  #education .box .tit::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    color: #333;
    line-height: 1;
    bottom: -50px;
    width: 130px;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 50px 130px;
    border-top-color: #f5f6f9;
    border-bottom: 0;
  }
  #education .box .last::after {
    display: none;
  }
  #education .box p {
    width: 750px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 20px;
    text-align: left;
    margin: 0;
    padding: 20px;
    font-size: 1.5rem;
    border: 1px solid #f5f6f9;
  }
  #education .box p span {
    color: #393939;
    font-size: 1.6rem;
    padding: 0;
    margin: 0;
  }
  #education .box p span b {
    font-weight: 500;
  }
  #education .box p span strong {
    font-weight: 500;
    font-size: 1.6rem;
    padding: 0rem 0 0rem 0;
    margin: 0;
    display: block;
    color: #2F3D41;
  }
  /* ---------work---------------------------------------------------------------------*/
  #work .about {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 auto 40px auto;
    flex-direction: row-reverse;
    width: 1000px;
  }
  #work .about p {
    text-align: left;
    font-size: 1.6rem;
    margin: 0;
  }
  #work .about p span {
    display: inline-block;
    margin: 10px 0 0 0;
    font-size: 1.6rem;
    color: #000;
  }
  #work .about img {
    width: 550px;
    margin: 0 0 0 30px;
    height: 100%;
  }
  #work .mainwork {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1000px;
    margin: 10px auto 30px auto;
  }
  #work .mainwork .box2 {
    margin: 10px 10px;
    padding: 1rem 2rem;
    width: 100%;
    border: 1px solid #2F3D41;
    font-size: 1.6rem;
  }
  #work .mainwork .boxkiki {
    margin: 10px 10px;
    padding: 1rem 2rem;
    width: 48%;
  }
  #work .mainwork .boxkiki img {
    width: unset;
    max-height: unset;
  }
  #work .mainwork .boxkiki p {
    font-size: 1.6rem;
  }
  #work .mainwork .box {
    margin: 10px 0px;
    padding: 1rem 0rem;
    width: 33%;
    font-size: 1.6rem;
  }
  #work .mainwork .box img {
    width: 100%;
  }
  #work .mainwork .box p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 10px auto;
  }
  #work .mainwork .box p strong {
    font-size: 110%;
    font-weight: 500;
    display: block;
    padding: 0 0 0.5rem 0;
  }
  #work .flowbg {
    width: 100%;
    position: relative;
    margin: 2rem 0 0 0;
    padding: 0 0 5rem 0;
  }
  #work .flowbg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #fbf6ed;
    z-index: -1;
  }
  #work .flow {
    width: 1000px;
    text-align: center;
    margin: 0 auto;
  }
  #work .flow .box {
    margin: 0rem 0 5rem 0;
    border: 1px solid #2F3D41;
    background: #fff;
    padding: 2.5rem 4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
  }
  #work .flow .box::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #2F3D41 transparent transparent transparent;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    bottom: -4rem;
    left: 50%;
    margin: -20px 0 0 -20px;
  }
  #work .flow .box:last-child {
    margin: 0rem 0 0rem 0;
  }
  #work .flow .box:last-child::after {
    display: none;
  }
  #work .flow .box .tit {
    width: 30%;
    margin: 0 1rem 0 0;
  }
  #work .flow .box .num {
    color: #2F3D41;
    display: block;
    font-size: 1.8rem;
    margin: 0;
    padding: 0 0 0.5rem 0;
    line-height: 1;
  }
  #work .flow .box .num b {
    font-size: 150%;
  }
  #work .flow .box p {
    text-align: left;
    margin: 0;
    padding: 0;
  }
  #work .flow .box strong {
    font-weight: 500;
    font-size: 1.8rem;
  }
  #work .day {
    width: 730px;
    text-align: center;
    margin: 0 auto;
  }
  #work .day .text {
    margin: 0px 0 100px 0;
  }
  #work .day .text .box {
    width: 100%;
    top: 0px;
    right: 0;
    text-align: left;
  }
  #work .day .text .box table {
    font-size: 1.6rem;
  }
  #work .day .text .box table th {
    color: #2F3D41;
    font-size: 2rem;
    text-align: right;
    padding: 15px 20px 10px 0;
    width: 12%;
    box-sizing: content-box;
    border-bottom: 1px dotted #d0ba8f;
  }
  #work .day .text .box table th::before {
    font-family: FontAwesome;
    content: "\f017";
    padding: 0 1rem 0 0;
  }
  #work .day .text .box table td {
    padding: 15px 20px 10px 25px;
    line-height: 2;
    border-bottom: 1px dotted #d0ba8f;
  }
  #work .day .text .box table td img {
    margin: 1rem 0;
  }
  #work .day .text .box table td strong {
    display: block;
    font-weight: 500;
    text-indent: 0;
    padding: 0 0 1rem 0;
    font-size: 1.8rem;
  }
  #work .day .text .box table td strong::before {
    /*content: url(../images/work_icon.png);
vertical-align: middle;
margin: 0px 1rem 0 -25px;
display: inline-block;*/
  }
  /* ---------beforeafter---------------------------------------------------------------------*/
  #beforeafter .ba {
    display: flex;
    margin: 5rem auto;
    width: 880px;
    justify-content: space-between;
  }
  #beforeafter .baph {
    margin: 0 auto;
  }
  #beforeafter .baph img {
    display: block;
  }
  #beforeafter .bgphNum {
    text-align: left;
    color: #2F3D41 !important;
    display: block;
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-family: source-han-serif-japanese, serif;
    font-size: 2rem;
  }
  #beforeafter .bgphNum2 {
    text-align: right;
    color: #2F3D41 !important;
    display: block;
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-size: 2rem;
    font-family: source-han-serif-japanese, serif;
  }
  #beforeafter .yaji {
    width: 30px;
    height: 30px;
    border-style: solid;
    border-width: 20px 0 20px 20px;
    border-color: transparent transparent transparent #2F3D41;
    display: block;
    margin: 25% 0 0 2rem;
  }
  /* ---------faq--------------------------------------------------------------------*/
  #faq .cont {
    width: 1024px;
    text-align: left;
    margin: 0 auto;
    padding: 40px 0;
    /* 縦線（after）だけ縦回転させる */
    /********* 下層メニュー *********/
    /* 下層メニューアイコン */
    /* 下層メニュー内テキストエリア */
    /* 下層アイコン変化（openクラスを付与） */
  }
  #faq .cont .ac {
    width: 100%;
    margin: 0 auto;
  }
  #faq .cont .ac-parent {
    text-align: left;
    border-bottom: 1px solid #000;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    padding: 2.5rem 1rem;
    font-size: 1.8rem;
    font-weight: 600;
  }
  #faq .cont .ac-parent:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    /*横線*/
    width: 14px;
    height: 2px;
    background: #000;
  }
  #faq .cont .ac-parent:after {
    content: "";
    position: absolute;
    top: 50%;
    /* 8px+12px-1px(幅2pxの半分) */
    right: 14px;
    transform: translateY(-50%);
    transition: all 0.3s;
    /*縦線*/
    width: 2px;
    height: 15px;
    background: #000;
  }
  #faq .cont .ac-parent.open:after {
    top: 25%;
    transform: rotate(90deg);
    opacity: 0;
  }
  #faq .cont .ac-child__item {
    position: relative;
    padding: 2rem 3rem;
    border-bottom: 1px dotted #adadad;
    background-color: #fff;
    cursor: pointer;
    line-height: 1.8;
  }
  #faq .cont .ac-child__item:after {
    content: "";
    display: block;
    position: absolute;
    top: 40%;
    right: 16px;
    width: 8px;
    height: 8px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: translateY(-50%);
    transform: rotate(135deg);
    transition: all 0.3s;
  }
  #faq .cont .ac-child__item:before {
    content: "Q. ";
    margin-left: -2rem;
  }
  #faq .cont .ac-child__description {
    padding: 1rem 3rem;
    background-color: #fff;
    line-height: 1;
  }
  #faq .cont .ac-child__description p {
    line-height: 1.8;
  }
  #faq .cont .ac-child__description .cont-flex {
    display: flex;
    margin: 1rem 0;
    align-items: center;
    justify-content: space-around;
  }
  #faq .cont .ac-child__description .cont-flex img {
    width: 10%;
    height: auto;
  }
  #faq .cont .ac-child__description .cont-flex .fukidashi {
    width: 85%;
    background: #fff;
    border-radius: 5px;
    position: relative;
    padding: 2rem;
    display: block;
    margin: 10px 10px 10px 30px;
  }
  #faq .cont .ac-child__description .cont-flex .fukidashi::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -15px;
    border: 15px solid #f7f7f7;
    border-right: 15px solid #fff;
  }
  #faq .cont .ac-child__description a {
    color: #2F3D41;
    text-decoration: underline;
  }
  #faq .cont .ac-child__description a:hover {
    text-decoration: none;
  }
  #faq .cont .ac-child__item.open:after {
    top: 50%;
    transform: rotate(315deg);
  }
  /* ----------requirements---------------------------------------------------------------------*/
  #requirements {
    margin: 0 auto 80px auto;
  }
  #requirements strong {
    font-weight: 500;
    font-size: 1.2em;
    margin: 3rem auto 2rem auto;
    display: block;
  }
  #requirements table {
    width: 1024px;
    margin: 40px auto;
    text-align: left;
    background: #fff;
  }
  #requirements table tr {
    border-bottom: 1px solid #e6e6e6;
  }
  #requirements table tr:first-child {
    border-top: 1px solid #e6e6e6;
  }
  #requirements table th {
    padding: 20px;
    width: 25%;
    font-size: 1.6rem;
    vertical-align: top;
    line-height: 1.8;
    /*color: $gold;*/
    background-color: #fafafa;
    display: table-cell;
  }
  #requirements table th strong {
    font-size: 1.8rem;
    display: inline;
    margin: 0;
    padding: 0;
  }
  #requirements table td {
    padding: 20px 40px;
    width: auto;
    font-size: 1.6rem;
    line-height: 1.8;
    vertical-align: top;
    display: table-cell;
  }
  #requirements table td b {
    font-size: 1.8rem;
    padding: 0 0 1rem 0;
    font-weight: 500;
    display: block;
    line-height: 1.8;
    color: #393939;
  }
  #requirements table td img {
    width: 80%;
    margin: 10px 0 20px 0;
  }
  #requirements .midashi_s {
    font-size: 2rem;
    font-weight: 500;
    color: #2F3D41;
    padding: 0 0 1rem 0;
    letter-spacing: 0.1rem;
  }

  #requirements .event2Wrap {
    width: 800px;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
  }
  #requirements .event2Wrap h4 {
    line-height: 1.5;
    font-family: "Shippori Mincho", system-ui;
  }
  #requirements .onlineEveRec {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    margin: 20px auto 40px auto;
    background: #f4f4f4;
    padding: 30px 20px;
    width: 100%;
  }
  #requirements .onlineEveRec .highlight {
    /*text-decoration: underline; 
        text-decoration-thickness: 0.5em;
        text-decoration-color: rgba(199, 163, 88, 0.2); 
        text-underline-offset: -0.2em; 
        text-decoration-skip-ink: none;  */
  }
  #requirements .onlineEveRec li {
    text-align: center;
    font-size: 1.8rem;
    padding: 0.8rem 0;
    margin: 0 0 0 0rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
  }
  #requirements .eventGaiyo {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 40px 0 120px 0;
  }
  #requirements .eventGaiyo a {
    display: block;
    width: 45%;
    transition: all 0.3s ease-out;
  }
  #requirements .eventGaiyo a b {
    display: block;
    background: #2F3D41;
    color: #fff;
    padding: 1rem 0.5rem;
    position: relative;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    line-height: 1.6;
  }
  #requirements .eventGaiyo a b::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 85%;
    margin: auto;
  }
  #requirements .eventGaiyo a:hover {
    opacity: 0.6;
    text-decoration: none;
  }
  #requirements .taisyo {
    padding: 0px 0px;
    margin: 20px auto 10px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    line-height: 1.8;
  }
  #requirements .taisyo b {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    font-weight: 400;
  }
  #requirements .taisyo p {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    color: #2F3D41;
    text-align: left;
  }
  #requirements .mi-Noto {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
  #requirements .eventWrap_event2 {
    text-align: center;
    margin: 20px auto 120px auto;
    width: 100%;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
  #requirements .eventWrap_event2 strong {
    font-size: 2.5rem;
    padding: 0 0 1rem 0;
    font-weight: 400;
  }
  #requirements .eventWrap_event2 p {
    font-size: 1.6rem;
    text-align: center;
    padding: 1rem 0;
    line-height: 1.5;
    margin: 0;
  }
  #requirements .eventWrap_event2 strong {
    font-size: 2.6rem;
    margin: 0 !important;
    padding: 0;
  }
  #requirements .eventWrap_event2 a {
    border: 1px solid #bd9d4e;
    color: #bd9d4e;
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 1.8rem;
    font-family: "Shippori Mincho", system-ui;
    padding: 30px 10px;
    transition: all 0.3s ease-out;
    line-height: 1.8;
    font-style: italic;
  }
  #requirements .eventWrap_event2 a:hover {
    /* background-color: #eacc91; */
    opacity: 0.5;
    text-decoration: none;
  }
  #requirements .short {
    margin: 20px auto 60px auto !important;
  }
  #requirements .onlineEve {
    text-align: center;
    font-size: 1.6rem;
    margin-top: 80px;
    margin-bottom: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
  }
  #requirements .onlineEve .onlineEve_title {
    font-size: 4.2rem;
    font-family: "Shippori Mincho", system-ui;
    color: #2F3D41;
    line-height: 1.4;
  }
  #requirements .onlineEve .get3 {
    font-size: 1.8rem;
    font-weight: 600;
    border: 2px solid #4f63a5;
    margin: 40px auto 40px auto;
    padding: 20px 20px;
  }
  #requirements .onlineEve .get3 .midashi_s {
    color: #000;
  }
  #requirements .onlineEve .get3 strong {
    margin: 0;
    padding: 1rem 0;
    display: block;
    font-size: 1.8rem;
    color: #4f63a5;
  }
  #requirements .onlineEve p {
    line-height: 2;
  }
  #requirements .onlineEve p strong {
    font-weight: 500;
    font-size: 1.6rem;
    margin: 40px 0;
  }
  #requirements .onlineEve b {
    font-size: 2.8rem;
    color: #2F3D41;
    padding: 2rem 0 2.4rem 0;
    line-height: 1.6;
    font-weight: 500;
    margin: 0 auto 20px auto;
    display: block;
    position: relative;
  }
  #requirements .onlineEve b::before {
    position: absolute;
    content: "";
    top: 0%;
    left: 50%;
    width: 100px;
    transform: translateX(-50%);
    display: block;
    border-top: 3px solid #2F3D41;
  }
  #requirements .onlineEve small {
    font-size: 90%;
  }
  #requirements .onlineEve img {
    margin: 10px auto;
    width: 100%;
  }
  #requirements .onlineEve ul {
    margin: 30px auto 30px auto;
    background: #fafafa;
    padding: 40px 40px;
    width: 800px;
  }
  #requirements .onlineEve ul li {
    text-align: center;
    list-style-type: square;
    list-style-position: inside;
    padding: 0.5rem 0;
    margin: 0 0 0 2rem;
    font-weight: 600;
  }
  #requirements .onlineEve .gold {
    color: #2F3D41;
    margin: 0;
    padding: 0;
    font-size: 100%;
  }
  #requirements .onlineEve .gold .exc {
    color: #2F3D41 !important;
  }
  #requirements .sckBoxCont {
    width: 800px;
    margin: 0 auto 40px auto;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
  }
  #requirements .sckBoxCont .prg {
    width: 100%;
    border: 2px solid #2F3D41;
    font-size: 1.7rem;
    padding: 2rem 3rem;
    line-height: 2;
    text-align: left;
    background: #fffdf5;
    margin: 10px 0 0 0;
  }
  #requirements .sckBoxCont .prg b {
    color: #2F3D41;
  }
  #requirements .sckBoxCont .sckBox {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  #requirements .sckBoxCont .sckBox table {
    border: 1px solid #dde1ea;
    width: 100%;
    margin: 0px auto 10px auto;
  }
  #requirements .sckBoxCont .sckBox table tr td {
    text-align: center;
    padding: 1rem 1rem;
    border: 1px solid #dde1ea;
    width: 30%;
    display: table-cell;
  }
  #requirements .sckBoxCont .sckBox table tr:nth-child(odd) {
    background: #f5f6f9;
  }
  #requirements .sckBoxCont .sckBox p {
    display: block;
    width: 800px;
    text-align: left;
    margin: 1rem auto 2rem auto !important;
  }
  #requirements .Calendar {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    height: auto;
    position: inherit;
  }
  #requirements .Calendar h3 {
    font-size: 18px;
    line-height: 1.4;
    padding: 0 0 5px 0;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
    height: 50px;
  }
  #requirements .Calendar h3 strong {
    margin: 0;
  }
  #requirements .Calendar h3 .Cyaji1,
  #requirements .Calendar h3 .Cyaji2 {
    display: none;
    color: #000;
    padding: 0;
  }
  #requirements .Calendar h3 .Cyaji1:hover,
  #requirements .Calendar h3 .Cyaji2:hover {
    color: #ffa500;
  }
  #requirements .Calendar h3 .Cyaji1 {
    position: absolute;
    right: 0;
    cursor: pointer;
  }
  #requirements .Calendar h3 .Cyaji2 {
    position: absolute;
    left: 0;
    cursor: pointer;
  }
  #requirements .Calendar .Calendar-wrap {
    margin: 0;
    width: 100%;
    position: inherit;
    top: 0;
    left: 0;
  }
  #requirements .Calendar .calendar {
    padding: 20px 0;
    width: 100%;
    table-layout: fixed;
  }
  #requirements .Calendar th,
  #requirements .Calendar td {
    text-align: center;
    padding: 10px 5px;
    line-height: 1.5;
    width: auto;
    display: table-cell;
    color: #565656;
  }
  #requirements .Calendar th span,
  #requirements .Calendar td span {
    display: inline-block;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    color: #ffa500;
  }
  #requirements .Calendar th {
    font-size: 16px;
  }
  #requirements .Calendar .sun {
    color: red;
  }
  #requirements .Calendar .sat {
    color: blue;
  }
  #requirements .voicep {
    margin: 2rem auto 0 auto;
    display: flex;
    width: 1024px;
    align-items: center;
    justify-content: space-between;
  }
  #requirements .voicep p {
    display: block;
    background: #f5f6f9;
    box-sizing: border-box;
    padding: 3rem;
    font-size: 1.5rem;
    text-align: left;
    width: 80%;
  }
  #requirements .voicep img {
    width: 112px;
    height: 100%;
    margin: 0 20px 0 auto;
  }
  #requirements .event2Wrap .block02 h4:before {
    display: none;
  }
  #requirements .event2Wrap .block02 h4 .fontL {
    font-size: 110%;
  }
  #requirements .event2Wrap .block02 h4 small {
    display: block;
    font-size: 80%;
  }
  #requirements .event2Wrap .block02 .onlineEveRec {
    padding: 40px 50px 30px;
  }
  #requirements .event2Wrap .block02 dl > div {
    margin-bottom: 25px;
  }
  #requirements .event2Wrap .block02 dl > div:last-child {
    margin-bottom: 0;
  }
  #requirements .event2Wrap .block02 dl dt {
    font-weight: bold;
    margin-bottom: 5px;
  }
  #requirements .event2Wrap .block02 .onlineEveRec .border-b {
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  #requirements .event2Wrap .block02 .onlineEveRec strong{
    color: #2F3D41;
    margin-bottom: 0;
  }
  #requirements .event2Wrap .block02 .eventWrap_event2 a {
    background: #2F3D41;
    border: none;
    color: #fff;
  }
  /* ----------PHILOSOPHY---------------------------------------------------------------------*/
  #PHILOSOPHY .wfBox {
    display: flex;
    flex-direction: row;
  }
  #PHILOSOPHY .wfBox img {
    padding: 2rem;
  }
  #PHILOSOPHY .wfBox p {
    display: block;
  }
  #PHILOSOPHY .wfBox2 {
    display: flex;
    flex-direction: row-reverse;
  }
  #PHILOSOPHY .wfBox2 img {
    padding: 2rem;
  }
  /* ----------PHILOSOPHY / studySystem---------------------------------------------------------------------*/
  #recruitpolicy .sysTable {
    width: 900px;
    margin: 40px auto 60px auto;
    border: 1px solid #e6e6e6;
  }
  #recruitpolicy .sysTable th {
    width: 20%;
    line-height: 1.5;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    background: #fafafa;
    padding: 2rem;
  }
  #recruitpolicy .sysTable td {
    text-align: left;
    line-height: 1.8;
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
    padding: 2rem;
  }
  #recruitpolicy .sysTable td a {
    color: #2F3D41;
  }
  #recruitpolicy .sysTable td ul li {
    list-style: decimal;
    list-style-position: outside;
    margin: 0 0 0 2rem;
  }
  #recruitpolicy .visionImg {
    width: 80%;
    margin: 40px auto 60px auto;
  }
  #recruitpolicy .visionImg02 {
    width: 50%;
    margin: 40px auto 60px auto;
  }
  #recruitpolicy .vision-point {
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    gap: 40px;
    flex-direction: row;
  }
  #recruitpolicy .vision-point .vision-point--item {
    padding: 0 0px;
    width: 100%;
  }
  #recruitpolicy .vision-point .vision-point--item .mi {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: normal;
    padding: 2rem 2rem;
    color: #4bac98;
    background-color: #ecf6f4;
    position: relative;
    display: inline-block;
  }
  #recruitpolicy .vision-point .vision-point--item .mi::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #ecf6f4;
  }
  #recruitpolicy .vision-point .vision-point--item .mi b {
    font-weight: bold;
  }
  #recruitpolicy h4 {
    margin: 8rem 1rem 2rem 1rem;
  }
  #recruitpolicy p {
    text-align: left;
    padding: 0 0 15px 0;
  }
  #recruitpolicy b {
    font-size: 1.8rem;
    font-weight: bold;
  }
  #recruitpolicy strong {
    display: block;
    font-size: 1.8rem;
    line-height: 2;
    color: #000;
    font-weight: 400;
    margin: 0 0 1rem 0;
  }
  #recruitpolicy .catch {
    font-size: 1.8rem !important;
    line-height: 2 !important;
    font-weight: 400;
    text-align: center;
  }
  #recruitpolicy .fl {
    float: left;
    padding: 2rem 2rem 2rem 0;
    box-sizing: border-box;
  }
  #recruitpolicy .fr {
    float: right;
    padding: 2rem 0rem 2rem 2rem;
    box-sizing: border-box;
  }
  #recruitpolicy .policyAction {
    padding: 0;
    margin: 40px auto;
    text-align: center;
  }
  #recruitpolicy .policyAction strong {
    width: 100%;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: left;
    display: block;
    margin: 0;
    color: #2c2c2c;
  }
  #recruitpolicy .policyAction .box {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-direction: row;
  }
  #recruitpolicy .policyAction .box .policyActionTd {
    padding: 1rem 0;
    width: 100%;
  }
  #recruitpolicy .policyAction .box .policyActionTd b {
    font-size: 1.9rem;
    display: inline-block;
    border-bottom: 1px solid #4bac98;
    padding: 1rem 0;
    color: #2c2c2c;
    text-align: left;
    width: 100%;
  }
  #recruitpolicy .policyAction .box .policyActionTd span {
    color: #2c2c2c;
    display: block;
    width: 20%;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0;
    margin: 0;
  }
  #recruitpolicy .policyAction .box .policyActionTd p {
    text-align: left;
    display: block;
    width: 100%;
    font-size: 1.6rem;
    padding: 0;
  }
  #recruitpolicy .vision {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-direction: row;
    text-align: center;
  }
  #recruitpolicy .vision .box {
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
  }
  #recruitpolicy .vision .box .ok {
    background: #4bac98;
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    display: inline-block !important;
  }
  #recruitpolicy .vision .box img {
    margin: 0 auto;
    width: auto;
    max-height: 220px;
  }
  #recruitpolicy .vision .box span {
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 2rem;
    color: #2c2c2c;
    line-height: 2;
    font-weight: 500;
    display: block;
  }
  #recruitpolicy .vision .box strong {
    color: #2c2c2c;
    display: block;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: left;
  }
  /* ----------welfare---------------------------------------------------------------------*/
  #welfare p {
    text-align: center;
  }
  #welfare .wfBox {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin: 30px auto 60px auto;
  }
  #welfare .wfBox p {
    width: 60%;
    margin: 0 0 10px 0;
    text-align: left;
  }
  #welfare .wfBox .imgbox {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #welfare .wfBox .imgbox img {
    width: 100%;
  }
  #welfare .rev {
    flex-direction: row-reverse;
  }
  #welfare .wfBoxG {
    background-color: #fff;
    padding: 20px 40px;
  }
  #welfare .wfBoxG ul li {
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #d3d3d3;
  }
  #welfare .wfBoxG ul li:last-child {
    border-bottom: none;
  }
  #welfare .wfBoxG ul li p {
    width: 60%;
    text-align: left;
    margin: 0 0 10px 0;
  }
  #welfare .wfBoxG ul li p strong {
    font-weight: 600;
    font-size: 110%;
    padding: 0 0 1rem 0;
    display: block;
  }
  #welfare .wfBoxG ul li .w100 {
    width: 100% !important;
  }
  #welfare .wfBoxG ul li img {
    width: 36%;
  }
  #welfare .wfBoxG ul li .naka {
    list-style-type: circle;
    text-align: left;
    line-height: 1.8;
    margin: 0 0 0 2rem;
  }
  #welfare .wfBoxG ul li .naka li {
    border: none;
    padding: 5px 0;
    display: list-item;
  }
  #welfare .youtube {
    width: 60%;
    margin: 20px auto 0 auto;
  }
  #welfare .youtube iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  #welfare .noflex {
    display: block !important;
  }
  #welfare .rr {
    flex-direction: row-reverse !important;
  }
  /* ----------infograph---------------------------------------------------------------------*/
  #graf {
    margin: 0 auto;
    /*スクロールフェードイン下から*/
  }
  #graf .container {
    /* background: $grayl;*/
    padding: 60px 0;
  }
  #graf .container .odometer {
    position: relative;
    margin: 0 auto;
    z-index: 3;
  }
  #graf .container .fade_off {
    opacity: 0;
    transition: all 1s;
  }
  #graf .container .fade_on {
    opacity: 1;
  }
  #graf .container .graph {
    display: flex;
  }
  #graf .container .graph .ninzu_bar {
    max-height: 400px;
    height: 300px;
    margin: 2em;
    color: #fff;
    padding: 0.25em;
    animation: bar-animation 1 2s;
    background: #0091ea;
  }
  #graf .container .graph .bar1 {
    height: 70%;
  }
  @keyframes bar-animation {
    0% {
      transform: scaleY(0);
    }
    100% {
      transform: scaleY(1);
    }
  }
  #graf .container .show {
    /* animation: bar-animation_op 2s;*/
    opacity: 1 !important;
    z-index: 1;
  }
  @keyframes bar-animation_op {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #graf .container .pos_jyugyoin {
    position: relative;
    margin: 20px auto;
    /* background: url(../images/graph_jyugyoin_bg.png) no-repeat; */
    /* background-size: 100%; */
    /* background-position: 0 center; */
    height: 340px;
    width: 354px;
  }
  #graf .container .jyugyoinG {
    position: absolute;
    top: 0;
    left: 0;
    width: 354px;
  }
  #graf .container .jyugyoinG .posAb_jyugyo {
    width: 100%;
    position: absolute;
    top: 2px;
    left: 0;
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: center bottom;
    transition: all 0.4s ease-out 1s;
    /*transform: translate3d(0, 20px, 0);
animation: bar-animation 1 1s;
  transform-origin: center bottom;*/
  }
  #graf .container .jyugyoinG .animated_scale {
    opacity: 1;
    transform: scale(1, 1);
  }
  #graf .container .jyugyoinG .posAb2_jyugyo {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    transform: translate3d(0, 10px, 0);
    transition: all 0.4s ease-out 1.4s;
    /*animation: bar-animation_op 1.5 1s;*/
  }
  #graf .container .jyugyoinG .posAb2_jyugyo img {
    width: auto;
  }
  #graf .container .syukusyu {
    position: relative;
    width: 90%;
    margin: 2rem auto;
    opacity: 0;
  }
  #graf .container .ninzu {
    position: relative;
    top: 20px;
    left: 0;
    width: 340px;
    margin: 0 auto;
  }
  #graf .container .ninzu .ninzuNumL {
    position: absolute;
    top: 120px;
    left: 30px;
    text-align: center;
    line-height: 1.5;
    font-size: 1.5rem;
    letter-spacing: -0.1rem;
    color: #fff;
  }
  #graf .container .ninzu .ninzuNumL strong {
    padding: 0.2rem;
    font-size: 50px;
  }
  #graf .container .ninzu .ninzuNumL strong span {
    font-size: 50px;
    font-family: "Shippori Mincho", system-ui;
    font-weight: 400;
    color: #fff;
  }
  #graf .container .ninzu .ninzuNumR {
    position: absolute;
    top: 180px;
    right: 10px;
    text-align: center;
    line-height: 1.5;
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    color: #2F3D41;
  }
  #graf .container .ninzu .ninzuNumR strong {
    color: #2F3D41;
    padding: 0.2rem;
    font-size: 50px;
  }
  #graf .container .ninzu .ninzuNumR strong span {
    font-size: 50px;
    font-family: "Shippori Mincho", system-ui;
    font-weight: 400;
    color: #2F3D41;
  }
  #graf .container .kanri {
    position: relative;
    top: 0;
    left: 0;
    width: 340px;
    margin: 0 auto;
    color: #fff;
  }
  #graf .container .kanriNumM {
    position: absolute;
    top: 22px;
    left: 35px;
    text-align: center;
    line-height: 1.5;
    font-size: 2rem;
  }
  #graf .container .kanriNumM strong {
    padding: 0.2rem;
    font-size: 70px;
  }
  #graf .container .kanriNumM strong span {
    font-size: 70px;
    font-family: "Shippori Mincho", system-ui;
    font-weight: 400;
    color: #fff;
  }
  #graf .container .kanriNumW {
    position: absolute;
    top: 22px;
    right: 30px;
    text-align: center;
    line-height: 1.5;
    font-size: 2rem;
  }
  #graf .container .kanriNumW strong {
    padding: 0.2rem;
    font-size: 70px;
  }
  #graf .container .kanriNumW strong span {
    font-size: 70px;
    font-family: "Shippori Mincho", system-ui;
    font-weight: 400;
    color: #fff;
  }
  #graf .container span {
    padding: 0;
    margin: 0;
    color: #000;
  }
  #graf .container .cont-in {
    position: relative;
  }
  #graf .container .pos_nenrei {
    position: relative;
    margin: 0 auto;
    padding: 0px 0 0 0;
    width: 300px;
  }
  #graf .container .pos_nenrei .posAb {
    position: absolute;
            top: 30px;
        left: 41px;
    max-width: none;
    /* width: 100%; */
    opacity: 0;
    transform: translate3d(0, 0px, 0);
    transition: all 0.4s ease-out 1.4s;
  }
  #graf .container .pos_nenrei .posAb img {
    width: 100%;
  }
  #graf .container .pos_yukyu {
    position: relative;
    margin: 10px auto;
    width: 300px;
  }
  #graf .container .pos_yukyu .posAb_yukyu {
    position: absolute;
    top: 50px;
    left: 100px;
    height: 75%;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: all 0.4s ease-out 1.4s;
  }
  #graf .container .pos_danjyo {
    position: relative;
    margin: 10px auto;
    width: 300px;
  }
  #graf .container .pos_danjyo .posAb_danjyo {
    position: absolute;
    top: -10px;
    left: 0px;
    max-width: none;
    width: 100%;
    opacity: 0;
    transform: translate3d(0, 0px, 0);
    transition: all 0.4s ease-out 1.4s;
  }
  #graf .container .pos_danjyo .posAb_danjyo img {
    width: 100%;
  }
  #graf .container .pos_2019 {
    position: relative;
    margin: 20px auto;
    width: 300px;
  }
  #graf .container .pos_2019 .posAb_2019 {
    position: absolute;
    top: 5px;
    left: -50px;
    width: 90%;
    height: 90%;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: all 0.4s ease-out 1.4s;
  }
  #graf .container .pos_kanri {
    position: relative;
    margin: 10px auto;
    width: 300px;
  }
  #graf .container .pos_kanri .posAb_kanri {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 95%;
    height: 95%;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: all 0.4s ease-out 1.4s;
  }
  #graf .container .nenrei {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 1.6rem;
  }
  #graf .container .nenrei li {
    width: 30% !important;
    display: flex;
    justify-content: space-between !important;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid #2F3D41 !important;
    margin: 0 1rem !important;
    padding: 0 !important;
    align-items: center;
    line-height: 1.3 !important;
  }
  #graf .container .nenrei li p {
    padding: 0;
    margin: 0;
  }
  #graf .container .nenrei li .name {
    color: #535252;
    text-align: left;
  }
  #graf .container .nenrei li .age {
    color: #2F3D41;
    text-align: right;
  }
  #graf .container .nenrei li .age strong {
    font-size: 3rem;
    font-weight: 400;
    font-family: "Shippori Mincho", system-ui;
  }
  #graf .container .keitai .tit {
    width: 100%;
    margin: 1rem auto;
  }
  #graf .container .keitaiImg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #graf .container .keitaiImg img {
    margin: 1rem 0.8rem;
    width: 22%;
    height: 100%;
  }
  #graf .container .in {
    width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
  }
  #graf .container .in li {
    border: 1px solid #2F3D41;
    margin: 2rem;
    border-radius: 8px;
    background: #fff;
    padding: 15px;
    width: 46%;
  }
  #graf .container .in li .num {
    color: #2F3D41;
    font-size: 1.6rem;
    padding: 0;
    margin: 1rem 0 0 0;
  }
  #graf .container .in li .num strong {
    padding: 0 1rem;
    vertical-align: sub;
    font-size: 6rem;
    font-family: "Shippori Mincho", system-ui;
    font-weight: 400;
  }
  #graf .container .in li .num strong span {
    font-size: 6rem;
    font-weight: 400;
    font-family: "Shippori Mincho", system-ui;
    padding: 0;
    margin: 0;
    line-height: 1;
    color: #2F3D41;
  }
  #graf .container .in li .mi {
    font-size: 1.2rem;
  }
  #graf .container .in li .mi strong {
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 1.2;
    display: block;
  }
  #graf .container .in .liLong {
    width: 100% !important;
  }
  #graf .js-scroll-fade {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    transition: all 1s ease-out;
  }
  #graf .animated {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
  }
  #graf .engageTtl {
    font-size: 2.4rem;
    color: #2F3D41;
  }
  #graf .engageTxt {
    font-size: 1.6rem;
    padding: 10px;
    text-align: left;
  }
  .history-box {
    width: 50%;
    position: relative;
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
    display: flex;
    align-items: center;
  }
  .history-box .m-text {
    font-size: 1.5rem;
    line-height: 1.625;
    text-align: left;
    padding: 0 1rem;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box .m-text {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 960px) {
  .history-box--wrap {
    overflow: hidden;
    position: relative;
    padding-bottom: 5rem;
    z-index: 0;
    margin: 0 4px 0 0;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box--wrap {
    padding-bottom: 1.25rem;
    margin: 0;
  }
}
@media screen and (min-width: 960px) {
  .history-box--wrap:before {
    content: "";
    width: 4px;
    height: 100%;
    background-color: #bfbfbf;
    background-color: #d6d6d6;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box--wrap:before {
    left: 0.625rem;
  }
}
@media screen and (min-width: 960px) {
  .history-box:nth-of-type(1):before {
    content: "";
    display: block;
    background-color: #eff8fb;
    position: absolute;
    top: 0;
    bottom: 50%;
    left: 0;
    right: -2px;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box {
    width: auto;
    display: block;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .history-box:nth-of-type(1) {
    padding-top: 0;
  }
  .history-box:nth-of-type(1):before {
    bottom: auto;
    height: 1.875rem;
    right: -4px;
  }
}
@media screen and (min-width: 960px) {
  .history-box--inner {
    width: 100%;
    background-color: #fff;
    padding: 2rem 2.5rem;
    position: relative;
    z-index: 3;
    position: relative;
  }
  .history-box--inner:before {
    content: "";
    display: block;
    width: 2.5rem;
    height: 1px;
    background-color: #bfbfbf;
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    z-index: 1;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box--inner:before {
    width: 1.25rem;
    top: 1.875rem;
  }
}
@media screen and (min-width: 960px) {
  .history-box--inner:after {
    content: "";
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #a39f9f;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    z-index: 2;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box--inner:after {
    width: 0.75rem;
    height: 0.75rem;
    top: 1.875rem;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box--inner {
    background-color: #fff;
    /*border: 1px solid $_COLOR_BORDER;*/
    padding: 1rem 1.5rem;
  }
}
@media screen and (min-width: 960px) {
  .history-box.is-left {
    padding-right: 2.5rem;
    float: left;
    clear: left;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box.is-left {
    float: none;
    padding-right: 0;
    padding-left: 1.875rem;
  }
}
@media screen and (min-width: 960px) {
  .history-box.is-left .history-box--inner:before {
    right: -2.5rem;
  }
  .history-box.is-left .history-box--inner:after {
    right: -2.5rem;
    transform: translate3d(50%, -50%, 0);
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box.is-left .history-box--inner:before {
    left: -1.3125rem;
    right: auto;
  }
  .history-box.is-left .history-box--inner:after {
    left: -1.5625rem;
    right: auto;
    transform: translate3d(0, -50%, 0);
  }
}
@media screen and (min-width: 960px) and (min-width: 981px) {
  .history-box.is-left.is-adjust2014 .history-box--inner:before {
    top: 15%;
  }
  .history-box.is-left.is-adjust2014 .history-box--inner:after {
    top: 15%;
  }
}
@media screen and (min-width: 960px) {
  .history-box.is-right {
    padding-left: 2.5rem;
    float: right;
    clear: right;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box.is-right {
    float: none;
    padding-left: 1.875rem;
  }
}
@media screen and (min-width: 960px) {
  .history-box.is-right .history-box--inner:before {
    left: -2.5rem;
  }
  .history-box.is-right .history-box--inner:after {
    left: -2.5rem;
    transform: translate3d(-50%, -50%, 0);
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box.is-right .history-box--inner:before {
    left: -1.3125rem;
    right: auto;
  }
  .history-box.is-right .history-box--inner:after {
    left: -1.5625rem;
    right: auto;
    transform: translate3d(0, -50%, 0);
  }
}
@media screen and (min-width: 960px) and (min-width: 981px) {
  .history-box.is-right.js-matchHeight--history {
    transform: translateY(50%);
  }
  .history-box.is-right.is-adjust2013 {
    padding-top: 9.375rem;
  }
  .history-box.is-right.is-adjust2017 .history-box--inner:before {
    top: 15%;
  }
  .history-box.is-right.is-adjust2017 .history-box--inner:after {
    top: 15%;
  }
  .history-box.is-right.is-adjust2019 .history-box--inner:before {
    top: 15%;
  }
  .history-box.is-right.is-adjust2019 .history-box--inner:after {
    top: 15%;
  }
}
@media screen and (min-width: 960px) {
  .history-box.is-last {
    clear: both;
    width: auto;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box.is-last {
    display: block;
    padding-left: 1.875rem;
  }
}
@media screen and (min-width: 960px) {
  .history-box.is-last .history-box--inner {
    border: none;
    background-color: transparent;
  }
}
@media screen and (min-width: 960px) and (min-width: 981px) {
  .history-box.is-last .history-box--inner {
    padding: 0;
  }
  .history-box.is-last .history-box--inner:before,
  .history-box.is-last .history-box--inner:after {
    display: none;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box.is-last .history-box--inner {
    padding-left: 1.875rem;
  }
  .history-box.is-last .history-box--inner:before {
    left: -1.3125rem;
    right: auto;
    width: 50%;
  }
  .history-box.is-last .history-box--inner:after {
    left: -1.5625rem;
    right: auto;
    transform: translate3d(0, -50%, 0);
  }
}
@media screen and (min-width: 960px) {
  .history-box.is-last .m-image {
    position: relative;
    z-index: 3;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box.is-last .m-image {
    width: 5.375rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box.js-matchHeight--history {
    height: auto !important;
  }
}
@media screen and (min-width: 960px) {
  .history-box--head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .history-box--head span {
    padding: 0 1rem 0rem 0;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box--head {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .history-box--year {
    font-family: source-han-serif-japanese, serif;
    font-size: 1.8rem;
    line-height: 1;
    padding-right: 1.25rem;
    border-right: 1px solid #707070;
    margin-right: 1.25rem;
    color: #000;
    margin-top: 15px;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box--year {
    display: block;
    border-right: none;
    padding-right: 0;
  }
}
@media screen and (min-width: 960px) {
  .history-box--title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.3;
    color: #000;
    text-align: left;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box--title {
    display: block;
    text-align: center;
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 960px) {
  .history-box--list {
    margin-top: 0.9375rem;
    padding-left: 1.25em;
    list-style-type: disc;
    text-align: left;
  }
  .history-box--list li {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box--list li {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 960px) {
  .history-box--list li + li {
    margin-top: 0.625rem;
  }
  .history-box.js-effect .history-box--inner:before {
    opacity: 0;
  }
  .history-box.js-effect .history-box--inner:after {
    opacity: 0;
  }
  .history-box.js-effect.is-show .history-box--inner:before {
    animation: fadeIn 0.5s ease 0.3s both;
  }
  .history-box.js-effect.is-show .history-box--inner:after {
    animation: fadeIn 0.5s ease 0.6s both;
  }
  .history-box.js-effect.is-left .history-box--inner {
    opacity: 0;
    transform: translateX(-30px);
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-box.js-effect.is-left .history-box--inner {
    transform: translateX(30px);
  }
}
@media screen and (min-width: 960px) {
  .history-box.js-effect.is-left.is-show .history-box--inner {
    animation: fade-x 0.5s ease both;
  }
  .history-box.js-effect.is-right .history-box--inner {
    opacity: 0;
    transform: translateX(30px);
  }
  .history-box.js-effect.is-right.is-show .history-box--inner {
    animation: fade-x 0.5s ease both;
  }
  .history-box.js-effect.is-last .history-box--inner {
    opacity: 0;
  }
  .history-box.js-effect.is-last.is-show .history-box--inner {
    animation: fadeIn 0.5s ease both;
  }
  .history-future-section {
    /* background: linear-gradient(to bottom, #fafafa, #fafafa); */
    background: #fff;
    color: #000;
    padding-top: 3.75rem;
    padding-bottom: 5.3125rem;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-future-section {
    padding-top: 1.875rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (min-width: 960px) {
  .history-future-section.l-section--inner {
    margin: 0 0 50px 0;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-future-section.l-section--inner {
    margin: 0 0 25px 0;
  }
}
@media screen and (min-width: 960px) {
  .history-future-box {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
  }
  .history-future-box span {
    padding: 0 1rem;
    color: #000;
  }
  .history-future-box--lead {
    text-align: center !important;
    font-size: 2.4rem;
    line-height: 1;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-future-box--lead {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 960px) {
  .history-future-box--head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-future-box--head {
    margin-top: 1.25rem;
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .history-future-box--year {
    font-family: source-han-serif-japanese, serif;
    font-size: 2.4rem;
    line-height: 1;
    padding-right: 1.25rem;
    border-right: 1px solid #000;
    margin-right: 1.25rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-future-box--year {
    font-size: 2.2rem;
    display: block;
    text-align: center;
    padding-right: 0;
    border-right: none;
  }
}
@media screen and (min-width: 960px) {
  .history-future-box--title {
    font-size: 2.8rem;
    line-height: 1.625;
    text-align: left;
  }
}
@media screen and (min-width: 960px) and (max-width: 980px) {
  .history-future-box--title {
    text-align: center;
    display: block;
  }
}
@media screen and (min-width: 960px) {
  @keyframes fade-x {
    to {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @keyframes fade-y {
    to {
      opacity: 1;
      transform: translateY(0%);
    }
  }
  @keyframes fadeIn {
    0% {
      opacity: 0%;
    }
    100% {
      opacity: 100%;
    }
  }
  /* ----------reason---------------------------------------------------------------------*/
  #reasonL {
    background-image: url("../images/reason_ftate.png");
    background-position: -10% 0;
    background-size: 300px;
    background-repeat: no-repeat;
    width: 100%;
  }
  #reasonL p {
    font-size: 1.8rem;
    line-height: 2.4;
    padding: 0;
    margin: 0;
  }
  #reasonL strong {
    width: 50%;
  }
  #reasonL b {
    font-size: 2rem;
    line-height: 2.6;
    padding: 0;
    margin: 0;
  }
  #reasonR {
    background-image: url("../images/reason_ftate.png");
    background-position: 108% 0;
    background-size: 300px;
    background-repeat: no-repeat;
    width: 100%;
  }
  #reasonR p {
    font-size: 1.8rem;
    line-height: 2.2;
    padding: 0;
    margin: 0;
  }
  #reasonR strong {
    width: 50%;
  }
  #reasonR b {
    font-size: 2rem;
    line-height: 2.6;
    padding: 0;
    margin: 0;
  }
  .reason1 {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    margin: 80px 0;
    text-align: left;
    align-items: center;
  }
  .reason1 .item1 {
    width: 10%;
  }
  .reason1 .item2 {
    width: 35%;
    padding: 0 30px 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .reason1 .item3 {
    width: 60%;
  }
  .reason1 .item3 img {
    width: 100%;
    object-fit: cover;
    min-height: 400px;
  }
  .reason2 {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    text-align: left;
    width: 100%;
    margin: 80px 0;
    align-items: center;
  }
  .reason2 .item1 {
    padding: 0 0 0 5vw;
    width: 40%;
  }
  .reason2 .item2 {
    display: flex;
    flex-direction: column;
    width: 50%;
  }
  .reason2 .item3 {
    width: 10%;
  }
  .reason2 .item3 img {
    width: 100%;
    object-fit: cover;
    min-height: 400px;
  }
  .odd1 {
    flex-direction: row-reverse !important;
  }
  .odd2 {
    flex-direction: row !important;
  }
  #reasonR .reason1 .item2 {
    text-align: left;
  }
  #reasonL .reason1 .item2 {
    text-align: right;
  }
  /* ---------TECHNIQUE---------------------------------------------------------------------*/
  #tech {
    text-align: center;
  }
  #tech .toolw {
    margin: 40px auto;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    gap: 40px;
  }
  #tech .toolw .box {
    display: block;
  }
  #tech .toolw .box p {
    margin: 0.5rem 0;
  }
  #tech .needW {
    margin: 20px auto 40px auto;
  }
  #tech .needW .photoW {
    display: flex;
    gap: 10px;
    margin: 0 0 20px 0;
  }
  #tech .needW .photoW img {
    width: 50%;
  }
  #tech .needW ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    margin: 10px auto;
  }
  #tech .needW ul li {
    width: 32%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
  }
  #tech .needW ul img {
    width: 25%;
    margin: 0;
  }
  #tech .needW ul p {
    text-align: left;
    line-height: 1.6;
    font-size: 1.5rem;
    margin: 0;
  }
  #tech .needW ul p strong {
    font-weight: 600;
    display: block;
    line-height: 1.8;
    font-size: 1.6rem;
  }
  #tech .safeW {
    margin: 20px auto 40px auto;
    display: flex;
    gap: 20px;
    flex-direction: row;
    align-items: center;
  }
  #tech .safeW img {
    width: 60%;
  }
  #tech .safeW p {
    display: flex;
    text-align: center;
    line-height: 2;
    font-size: 1.6rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin: 10px 0;
    width: 30%;
    align-items: center;
    gap: 10px;
  }
  #tech .safeW p span {
    display: block;
    color: #393939;
    text-align: center;
    font-size: 1.6rem;
    margin: 0;
    padding: 0;
  }
  #tech .safeW p span strong {
    font-weight: 600;
    display: block;
    line-height: 1.8;
    margin: 10px 0;
    font-size: 1.8rem;
  }
  #tech .safeW p img {
    width: 30%;
  }
}

/* ---------recruitpolicy addー---------------------------------------------------------------------*/

.addColor {
  background-color: #fff !important;
  color: #2F3D41 !important;
  &::before {
    border-top: 15px solid #f4f4f4 !important;
  }
}
.addColor-border {
  border-bottom: 1px solid #2F3D41 !important;
}

/* ---------towards addー---------------------------------------------------------------------*/

.youtube-wrapper {
  position: relative;
  width: 90%;
  /* 16:9の比率（高さ ÷ 幅 = 9 ÷ 16） */
  padding-bottom: 56.25%;
  height: 0;
  margin: 0 auto 10px auto;
  overflow: hidden;
}

.attTxt {
  color: #8e8e8e;
  display: block;
  font-size: 1.4rem;
  margin: 0 0 40px 0;
  padding: 0;
  text-align: center;
  line-height: 1.8;
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 959px) {
  .youtube-wrapper {
    width: 100%;
  }

  .attTxt {
    text-align: left;
  }
}

#requirements .midashi_s2 {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1rem 0;
  letter-spacing: 0.1rem;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0rem auto;
  width: 90%;
  color: #c7a358;
  &::before,
  &::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #c7a358;
  }

  &::before {
    margin-right: 1em;
  }

  &::after {
    margin-left: 1em;
  }
}

p.e2026 {
  padding: 0;
  margin: 0 0 2rem 0;
  font-weight: 400;
  font-weight: 600;
}

p.e2026 b {
  font-size: 120%;
  font-weight: 800;
  padding: 0;
  color: #c75858;
  margin: 0;
}

.fontMincho {
  font-family: "Shippori Mincho", system-ui !important;
}
.fontL {
  color: #2F3D41;
  display: inline;
  padding: 0;
  margin: 0;
  font-size: 140%;
}

.exc2 {
  padding: 0 0.3rem !important;
  margin: 0 !important;
  font-size: 105% !important;
  color: #2F3D41 !important;
  display: inline !important;
  font-family: serif;
}

@media screen and (max-width: 959px) {
  #requirements .midashi_s2 {
    width: 90%;
  }
}

