@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@700&display=swap");
@media all and (max-width: 960px) {
  .pc {
    display: none; } }

.tablet {
  display: none; }
  @media all and (max-width: 960px) {
    .tablet {
      display: block; } }

.sp {
  display: none; }
  @media all and (max-width: 520px) {
    .sp {
      display: block; } }

html {
  font-size: 62.5%;
  font-family: "Inter", "Noto Sans JP",sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  font-weight: 400; }

body {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  overflow-x: hidden; }
  @media all and (max-width: 960px) {
    body {
      font-size: 1.4rem; } }

body.fixed {
  position: fixed;
  width: 100%; }

img {
  max-width: 100%;
  height: auto; }

a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none; }
  @media all and (max-width: 960px) {
    a[href^="tel:"] {
      pointer-events: auto;
      text-decoration: underline; } }

sup {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em; }

/*******************************/
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 104px;
  width: 100%;
  background: #fff;
  padding: 25px 30px;
  box-sizing: border-box; }
  @media all and (max-width: 960px) {
    #header {
      padding: 15px 20px;
      height: 73px; } }

#logo {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
  align-items: center; }
  #logo img {
    display: block;
    width: 100px;
    margin: 0 15px 0 0; }
    @media all and (max-width: 960px) {
      #logo img {
        width: 80px; } }
    @media all and (max-width: 320px) {
      #logo img {
        width: 80px; } }
  #logo > div {
    font-size: 2rem;
    font-size: calc(100vw * 16 / 1200);
    font-size: clamp(1.4rem, calc( 100vw * 15 / 1200 ), 2rem); }
    #logo > div span {
      display: block;
      line-height: 1.2em;
      font-weight: 500; }
  #logo a {
    vertical-align: middle;
    text-decoration: none;
    color: #000; }

#pagetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; }
  @media all and (max-width: 960px) {
    #pagetop {
      bottom: 10px;
      right: 10px; } }

#pagetop a {
  display: block;
  width: 90px;
  height: 90px;
  transition: all .2s ease-in-out;
  box-sizing: border-box;
  border-radius: 50%;
  z-index: 300;
  background: url("../images/pagetop.svg") no-repeat center center;
  background-size: 80px auto; }
  @media all and (max-width: 960px) {
    #pagetop a {
      width: 80px;
      height: 80px; } }
  #pagetop a:hover {
    background: #fff url("../images/pagetop_on.svg") no-repeat center center;
    background-size: 80px auto; }

#fixbtn {
  position: fixed;
  bottom: 0;
  left: 5%; }
  #fixbtn a {
    background: #000;
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 5px 20px;
    transition: all .2s ease-in-out; }
    #fixbtn a span {
      background: url("../images/icon_more.svg") no-repeat right center;
      background-size: 18px auto;
      padding-right: 25px; }
    #fixbtn a:hover {
      opacity: 0.5; }

#nav {
  display: none;
  transition: all .2s;
  box-sizing: border-box;
  cursor: pointer;
  position: fixed;
  top: 17px;
  right: 5px;
  z-index: 101;
  transition: all .2s ease-in-out;
  width: 70px;
  height: 70px; }
  @media all and (max-width: 960px) {
    #nav {
      display: block;
      top: 3px;
      right: 3px; } }
  @media all and (max-width: 320px) {
    #nav {
      top: 0px;
      right: 0px; } }
  #nav.show {
    visibility: visible;
    opacity: 1; }
  @media all and (max-width: 960px) {
    #nav {
      visibility: visible;
      opacity: 1; } }
  #nav span {
    display: block;
    transition: all .4s;
    box-sizing: border-box;
    position: absolute;
    left: 21px;
    width: 30px;
    height: 2px;
    background-color: #000;
    border-radius: 2px; }
  #nav span:nth-of-type(1) {
    top: 19px; }
  #nav span:nth-of-type(2) {
    top: 32px; }
  #nav span:nth-of-type(3) {
    top: 45px; }
  #nav:hover span {
    background-color: #237ea5; }
  #nav.active {
    background: none;
    display: block; }
    #nav.active span:nth-of-type(1) {
      transform: translateY(13px) rotate(-45deg); }
    #nav.active span:nth-of-type(2) {
      opacity: 0; }
    #nav.active span:nth-of-type(3) {
      transform: translateY(-13px) rotate(45deg); }
    #nav.active:hover span {
      background-color: #fff; }

#globalnav {
  position: fixed;
  top: 35px;
  right: 10px;
  z-index: 11;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  visibility: visible; }
  #globalnav.hide {
    transition: all 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden; }
  @media all and (max-width: 960px) {
    #globalnav {
      display: none; } }
  #globalnav > ul {
    display: flex;
    justify-content: flex-end;
    line-height: 1;
    z-index: 100; }
    #globalnav > ul > li {
      position: relative; }
      #globalnav > ul > li:before {
        content: '';
        display: block;
        width: 1px;
        height: 20px;
        background: #000;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%); }
      #globalnav > ul > li:nth-child(1):before {
        content: none; }
      #globalnav > ul > li a {
        display: inline-block;
        padding: 9px 10px 9px 11px;
        box-sizing: border-box;
        font-size: 1.8rem;
        font-size: clamp(1rem, calc( 100vw * 15 / 1200 ), 1.8rem);
        font-weight: 600;
        letter-spacing: -0.03em;
        line-height: 1;
        text-decoration: none;
        color: #000;
        text-align: center;
        transition: all .2s ease-in-out;
        position: relative; }
        #globalnav > ul > li a:before {
          content: '';
          display: block;
          width: 0%;
          height: 2px;
          background: #1eb7cd;
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          transition: all .2s ease-in-out; }
        #globalnav > ul > li a:hover:before {
          width: calc( 100% - 20px ); }
      #globalnav > ul > li ul {
        display: none;
        width: 200px;
        border-radius: 0px 0 20px 20px;
        padding: 10px 10px;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.8);
        position: absolute;
        top: 36px;
        left: 0; }
        #globalnav > ul > li ul a {
          font-size: clamp(1rem, calc( 100vw * 14 / 1200 ), 1.6rem); }
      #globalnav > ul > li:hover ul {
        display: block; }
        #globalnav > ul > li:hover ul a:before {
          content: none; }
        #globalnav > ul > li:hover ul a:hover {
          color: #1eb7cd; }

#gnav {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  color: #000;
  transition: all 0.2s ease-in-out;
  overflow: auto; }
  @media all and (max-width: 960px) {
    #gnav {
      display: block; } }
  #gnav > div {
    position: absolute;
    top: 0;
    right: 0;
    background: #237ea5;
    height: 100%;
    width: 480px;
    padding: 40px 50px 0;
    box-sizing: border-box;
    color: #fff; }
    @media all and (max-width: 520px) {
      #gnav > div {
        width: 100%;
        padding: 30px 30px 0; } }
    @media all and (max-width: 320px) {
      #gnav > div {
        padding: 30px; } }
    #gnav > div a {
      color: #fff;
      text-decoration: none; }
    #gnav > div .footlogo {
      position: absolute;
      z-index: 903;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      top: 15px;
      left: 20px; }
      #gnav > div .footlogo img {
        display: block;
        width: 100px;
        margin: 0 15px 0 0; }
        @media all and (max-width: 960px) {
          #gnav > div .footlogo img {
            width: 80px; } }
        @media all and (max-width: 320px) {
          #gnav > div .footlogo img {
            width: 80px; } }
      #gnav > div .footlogo > div {
        font-size: 2rem;
        font-size: calc(100vw * 16 / 1200);
        font-size: clamp(1.4rem, calc( 100vw * 15 / 1200 ), 2rem); }
        #gnav > div .footlogo > div span {
          display: block;
          line-height: 1.2em;
          font-weight: 500; }
      #gnav > div .footlogo a {
        vertical-align: middle;
        text-decoration: none;
        color: #fff; }
    #gnav > div .sitemap {
      display: flex;
      flex-wrap: wrap;
      text-align: left; }
    #gnav > div .corpsite {
      margin-bottom: 20px; }
      #gnav > div .corpsite ul {
        list-style: none; }
      #gnav > div .corpsite a[target="_blank"] {
        background: url("../images/icon_footblank.svg") no-repeat right center;
        background-size: 12px auto;
        padding-right: 17px;
        transition: all .2s ease-in-out;
        color: #fff; }
    #gnav > div .careersite {
      margin: 0 0 30px; }
      #gnav > div .careersite > ul {
        list-style: none; }
        #gnav > div .careersite > ul ul {
          list-style: none; }
        #gnav > div .careersite > ul li {
          margin: 5px 0; }
        #gnav > div .careersite > ul li li {
          margin-left: 15px; }
          #gnav > div .careersite > ul li li a {
            background: none;
            padding: 0;
            position: relative;
            padding-left: 14px;
            font-size: 1.4rem; }
            #gnav > div .careersite > ul li li a:before {
              content: '';
              display: block;
              width: 3px;
              height: 3px;
              border-radius: 50%;
              background: #fff;
              position: absolute;
              top: calc( 50% - 1px );
              left: 0;
              transition: all .2s ease-in-out; }
        #gnav > div .careersite > ul:nth-child(1) {
          margin-right: 30px; }
      #gnav > div .careersite a {
        background: url("../images/icon_footlink.svg") no-repeat left center;
        background-size: 12px auto;
        padding-left: 20px;
        transition: all .2s ease-in-out;
        color: #fff; }
  #gnav.active {
    opacity: 1;
    visibility: visible; }
    #gnav.active ul li {
      margin-right: 0px;
      opacity: 1; }

#sidenav {
  background: rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px 0px 0px 20px;
  width: 210px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 1.4rem;
  letter-spacing: 0;
  font-weight: 600;
  text-align: right;
  line-height: 1;
  position: absolute;
  top: 300px;
  right: 0;
  display: none; }
  #sidenav ul li a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 10px 22px 10px 0;
    position: relative; }
    #sidenav ul li a:after {
      content: '';
      display: block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #e5e5e5;
      position: absolute;
      top: 0;
      right: 0;
      margin-top: 10px;
      transition: all .2s ease-in-out; }
  #sidenav ul li.active a:after, #sidenav ul li:hover a:after {
    background: #f00; }

#footer {
  z-index: 2;
  background: #237ea5;
  padding: 0 50px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.2s ease-in-out; }
  @media all and (max-width: 960px) {
    #footer {
      padding: 0 15px 20px; } }
  #footer .wrapper {
    width: 100%;
    max-width: 1000px;
    margin: auto; }
  #footer .container {
    padding: 40px 15px 20px; }
    @media all and (max-width: 960px) {
      #footer .container {
        margin: auto !important;
        padding: 30px 15px 20px; } }
  #footer a {
    text-decoration: none; }
    #footer a:hover {
      opacity: 0.5; }
  #footer .footlogo {
    margin: 0 0 20px; }
    @media all and (max-width: 960px) {
      #footer .footlogo {
        margin-bottom: 0px; } }
    #footer .footlogo img {
      width: 100px;
      vertical-align: middle;
      margin-right: 20px;
      margin-bottom: 5px; }
      @media all and (max-width: 960px) {
        #footer .footlogo img {
          width: 100px;
          margin-bottom: 5px; } }
    #footer .footlogo span {
      display: inline-block;
      font-size: 1.8rem;
      letter-spacing: 0em;
      color: #fff;
      vertical-align: middle; }
      @media all and (max-width: 960px) {
        #footer .footlogo span {
          font-size: 1.4rem; } }
  #footer .sitemap {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    justify-content: space-between; }
  #footer .corpsite {
    width: calc( 100% - 610px); }
    @media all and (max-width: 960px) {
      #footer .corpsite {
        width: 100%;
        margin-bottom: 20px; } }
    #footer .corpsite ul {
      list-style: none; }
    #footer .corpsite a[target="_blank"] {
      background: url("../images/icon_footblank.svg") no-repeat right center;
      background-size: 12px auto;
      padding-right: 17px;
      transition: all .2s ease-in-out;
      color: #fff; }
    #footer .corpsite.sp {
      margin-bottom: 50px; }
      @media all and (max-width: 960px) {
        #footer .corpsite.sp ul {
          display: block; } }
  #footer .careersite {
    width: 610px;
    margin: 0 0 40px;
    display: flex;
    justify-content: flex-end; }
    @media all and (max-width: 960px) {
      #footer .careersite {
        display: block;
        margin-bottom: 30px; } }
    @media all and (max-width: 960px) {
      #footer .careersite {
        width: 100%; } }
    #footer .careersite > ul {
      list-style: none;
      margin-left: 30px; }
      @media all and (max-width: 960px) {
        #footer .careersite > ul {
          margin-left: 0px; } }
      #footer .careersite > ul:first-child {
        margin-left: 0; }
      #footer .careersite > ul ul {
        list-style: none; }
      #footer .careersite > ul li {
        margin: 5px 0; }
      #footer .careersite > ul li li {
        margin-left: 15px; }
        #footer .careersite > ul li li a {
          background: none;
          padding: 0;
          position: relative;
          padding-left: 14px;
          font-size: 1.4rem; }
          #footer .careersite > ul li li a:before {
            content: '';
            display: block;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: #fff;
            position: absolute;
            top: calc( 50% - 1px );
            left: 0;
            transition: all .2s ease-in-out; }
    #footer .careersite a {
      background: url("../images/icon_footlink.svg") no-repeat left center;
      background-size: 12px auto;
      padding-left: 20px;
      transition: all .2s ease-in-out;
      color: #fff; }
  #footer .sns {
    margin: 0 0 0px; }
    #footer .sns li {
      display: inline-block;
      margin: 5px; }
      #footer .sns li img {
        display: block;
        height: 40px; }
  #footer .copyright {
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: #fff; }
    @media all and (max-width: 960px) {
      #footer .copyright {
        font-size: 1.2rem; } }

.pagenav {
  padding: 0 15px;
  margin: auto;
  text-align: center; }
  .pagenav a + a {
    margin-top: 0;
    margin-left: 20px; }
    @media all and (max-width: 960px) {
      .pagenav a + a {
        margin-left: 0px; } }

.btn {
  margin: 50px auto 50px;
  display: block;
  display: inline-block;
  width: calc( 50% - 20px );
  background: #237ea5;
  border-radius: 60px;
  color: #fff;
  padding: 30px 20px;
  box-sizing: border-box;
  font-size: 2.8rem;
  line-height: 1;
  transition: all .2s ease-in-out;
  background: #237ea5 url("../images/icon_more.svg") no-repeat right 35px center;
  background-size: 25px auto;
  max-width: 100%; }
  @media all and (max-width: 960px) {
    .btn {
      font-size: 1.8rem;
      width: 100%;
      max-width: 500px;
      background: #237ea5 url("../images/icon_more.svg") no-repeat right 20px center;
      background-size: 20px auto; } }
  .btn.frame {
    border: 1px #fff solid; }
  .btn:hover {
    background-color: #1eb7cd; }
  .btn.back {
    background: #237ea5 url("../images/icon_more_back.svg") no-repeat left 35px center;
    background-size: 25px auto; }
    @media all and (max-width: 960px) {
      .btn.back {
        background: #237ea5 url("../images/icon_more_back.svg") no-repeat left 20px center;
        background-size: 20px auto; } }
    .btn.back:hover {
      background-color: #1eb7cd; }
  .btn.denki {
    margin-top: -100px !important;
    font-size: 2.6rem;
    line-height: 1.4;
    background-color: #ff9900; }
    @media all and (max-width: 960px) {
      .btn.denki {
        margin-top: -50px !important;
        font-size: 1.8rem; } }
    .btn.denki:hover {
      background-color: #ffbb00; }

/************************************************/
main {
  display: block;
  width: 100%;
  margin: 0px auto 0;
  padding-top: 104px;
  box-sizing: border-box; }
  @media all and (max-width: 960px) {
    main {
      padding-top: 73px; } }
  main a {
    text-decoration: none; }

#mv {
  background: url("../images/top/mv.jpg") no-repeat center center;
  background-size: cover;
  height: 690px;
  max-height: calc( 100vh - 104px);
  margin: auto;
  position: relative;
  text-align: center;
  overflow: hidden; }
  @media all and (max-width: 960px) {
    #mv {
      background: url("../images/top/mvs.jpg") no-repeat center center;
      background-size: cover;
      padding-bottom: 0;
      height: calc( ( 390 / 415 ) * 100vw ); } }
  #mv > img {
    display: block;
    margin: auto;
    opacity: 0.5; }
  #mv .mvwrapper {
    max-width: 1100px;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%;
    box-sizing: border-box; }
    #mv .mvwrapper > div {
      text-align: center;
      max-width: 100%;
      margin: 0 auto 0; }
      #mv .mvwrapper > div img, #mv .mvwrapper > div #svg {
        display: block;
        width: 80%;
        margin: auto; }
    #mv .mvwrapper img, #mv .mvwrapper #svg {
      display: block;
      max-width: 1100px;
      width: calc( ( 600 / 1100 ) * 100% );
      width: 600px;
      max-height: 70vh; }
      @media all and (max-width: 960px) {
        #mv .mvwrapper img, #mv .mvwrapper #svg {
          margin: 20px;
          width: 70%;
          max-height: none; } }

.border {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #333;
  vertical-align: middle; }

.c-scrolldown {
  width: 1px;
  height: 50px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin: 0 auto;
  overflow: hidden; }
  .c-scrolldown .c-line {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 50%);
    background-position: 0 -50px;
    background-size: 100% 200%;
    animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite; }

p.scrolldowntxt {
  position: absolute;
  bottom: 90px;
  right: 0px;
  font-size: 1.2rem;
  color: #fff;
  transform: rotate(90deg); }

@keyframes scrolldown {
  0% {
    background-position: 0 -50px; }
  75% {
    background-position: 0 0; }
  100% {
    background-position: 0 50px; } }
.arrows {
  width: 60px;
  height: 72px;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: 0px;
  transform: scale(0.6);
  opacity: 0.5;
  display: none; }

.arrows path {
  stroke: #fff;
  fill: transparent;
  stroke-width: 2px;
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite; }

@keyframes arrow {
  0% {
    opacity: 0; }
  40% {
    opacity: 1; }
  80% {
    opacity: 0; }
  100% {
    opacity: 0; } }
@-webkit-keyframes arrow /*Safari and Chrome*/ {
  0% {
    opacity: 0; }
  40% {
    opacity: 1; }
  80% {
    opacity: 0; }
  100% {
    opacity: 0; } }
.arrows path.a1 {
  animation-delay: -1s;
  -webkit-animation-delay: -1s;
  /* Safari 和 Chrome */ }

.arrows path.a2 {
  animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
  /* Safari 和 Chrome */ }

.arrows path.a3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  /* Safari 和 Chrome */ }

#loading {
  width: 100%;
  height: 100%;
  background: #237ea5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000; }
  #loading .spinner {
    width: 40px;
    height: 40px;
    position: relative;
    position: absolute;
    top: calc( 50% - 20px);
    left: calc( 50% - 20px); }
  #loading .double-bounce1, #loading .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out; }
  #loading .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s; }
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }
#toppage .btn {
  margin: 80px auto 120px; }
  @media all and (max-width: 960px) {
    #toppage .btn {
      margin: 40px auto 60px; } }
#toppage .container {
  max-width: 960px;
  margin: auto; }
  @media all and (max-width: 960px) {
    #toppage .container {
      margin: 0 20px; } }
#toppage .container {
  padding: 60px 0; }
  @media all and (max-width: 960px) {
    #toppage .container {
      padding: 30px 0 60px; } }
#toppage .container {
  text-align: center;
  position: relative; }
  #toppage .container .indexno {
    display: block;
    margin: auto;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #f00;
    text-align: center;
    font-size: 4.8rem;
    line-height: 70px;
    letter-spacing: -0.01em;
    color: #fff;
    font-family: "Barlow", serif;
    font-weight: 700;
    font-style: normal;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%); }
  #toppage .container h1 span {
    display: block;
    font-size: 3.6rem;
    font-weight: 700;
    color: #fff;
    margin: 60px auto;
    position: relative; }
    @media all and (max-width: 960px) {
      #toppage .container h1 span {
        font-size: 2.8rem;
        margin-bottom: 30px; } }
  #toppage .container h1 + p {
    font-size: 1.8rem;
    margin-bottom: 80px; }
    @media all and (max-width: 960px) {
      #toppage .container h1 + p {
        font-size: 1.6rem;
        margin-bottom: 40px;
        text-align: left; } }

#first {
  padding: 60px 0;
  background: url("../images/top/bg1.jpg") repeat-y center top -730px; }
  @media all and (max-width: 960px) {
    #first {
      padding: 0px 0 20px; } }
  #first h1 {
    font-size: 3.6rem;
    font-weight: 600;
    border-top: 5px #237ea5 solid;
    border-bottom: 5px #237ea5 solid;
    margin: 0 auto 70px;
    padding: 10px 0;
    max-width: 700px; }
    @media all and (max-width: 960px) {
      #first h1 {
        font-size: 2.4rem;
        margin: 0 auto 30px; } }
    @media all and (max-width: 520px) {
      #first h1 {
        font-size: 1.9rem; } }
  #first h1 + p,
  #first p {
    font-size: 2.2rem !important;
    font-weight: 600;
    line-height: 2;
    margin-bottom: 50px !important; }
    @media all and (max-width: 960px) {
      #first h1 + p,
      #first p {
        font-size: 1.6rem !important;
        margin-bottom: 30px !important;
        text-align: center !important; } }

#index01 {
  background: #237ea5;
  text-align: center; }
  #index01 .container {
    padding: 160px 0 60px; }
    @media all and (max-width: 960px) {
      #index01 .container {
        padding: 160px 0 60px; } }
    #index01 .container .indexno {
      transform: translateX(0%);
      position: static; }
      @media all and (max-width: 960px) {
        #index01 .container .indexno {
          margin-bottom: -20px; } }
  #index01 .message {
    border: 5px #000 solid;
    border-radius: 15px;
    background: #fff;
    padding: 30px 10px;
    box-sizing: border-box;
    font-size: 3.6rem;
    font-weight: 600;
    position: relative;
    width: 800px;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%); }
    @media all and (max-width: 960px) {
      #index01 .message {
        width: 100%;
        font-size: 2.4rem; } }
    @media all and (max-width: 520px) {
      #index01 .message {
        font-size: 2rem; } }
    #index01 .message:before {
      content: "";
      position: absolute;
      background: #000;
      width: 70px;
      height: 66px;
      clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
      z-index: 1;
      bottom: -66px;
      left: calc( 50% - 35px ); }
    #index01 .message:after {
      content: "";
      position: absolute;
      background: #fff;
      width: 70px;
      height: 66px;
      clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
      z-index: 1;
      bottom: -57px;
      left: calc( 50% - 35px ); }
  #index01 ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    #index01 ul li {
      width: calc( ( 100% - 48px ) / 3 );
      background: #fff;
      border-radius: 20px;
      margin: 8px 8px 30px;
      padding: 50px 20px 20px;
      box-sizing: border-box;
      position: relative; }
      @media all and (max-width: 960px) {
        #index01 ul li {
          width: calc( ( 100% - 32px ) / 2 ); } }
      @media all and (max-width: 520px) {
        #index01 ul li {
          width: 100%; } }
      #index01 ul li .num {
        font-size: 6rem;
        color: #f00;
        font-family: "Barlow", serif;
        font-weight: 700;
        font-style: normal;
        position: absolute;
        top: -45px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        text-shadow: 2px  2px 0px #ffffff, -2px  2px 0px #ffffff, 2px -2px 0px #ffffff, -2px -2px 0px #ffffff, 2px  0px 0px #ffffff, 0px  2px 0px #ffffff, -2px  0px 0px #ffffff, 0px -2px 0px #ffffff; }
      #index01 ul li p {
        font-size: 1.8rem;
        margin-bottom: 15px; }
        @media all and (max-width: 960px) {
          #index01 ul li p {
            font-size: 1.4rem; } }
      #index01 ul li img {
        display: block;
        border-radius: 20px; }

#index02 {
  background: #d3e5ed;
  position: relative; }
  #index02 h1 span {
    color: #000 !important; }
  #index02 .figflow {
    display: block;
    position: relative;
    z-index: 3; }
  #index02 .figtxt {
    display: block;
    width: 100%;
    height: 80px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #fff;
    margin-top: -30px;
    padding: 50px 0 30px;
    position: relative;
    z-index: 2; }
    @media all and (max-width: 520px) {
      #index02 .figtxt {
        height: 60px; }
        #index02 .figtxt img {
          width: 50px; }
        #index02 .figtxt p {
          font-size: 2.2rem !important; } }
    #index02 .figtxt p {
      font-size: 3rem;
      font-weight: 600;
      margin-top: 5px; }
  #index02 ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
    margin-bottom: 30px;
    padding: 20px;
    box-sizing: border-box;
    position: relative; }
    #index02 ul li {
      width: calc( ( 100% - 32px ) / 3 ); }
      @media all and (max-width: 960px) {
        #index02 ul li {
          width: 100%;
          max-width: 610px;
          margin: 0 auto 30px; }
          #index02 ul li:last-child {
            margin-bottom: 0; } }
      #index02 ul li img {
        border-radius: 20px; }
      #index02 ul li p {
        font-size: 1.8rem;
        padding: 0 5px; }
        #index02 ul li p:nth-of-type(1) {
          font-weight: 700; }
        #index02 ul li p:nth-of-type(2) {
          text-align: left; }
      @media all and (max-width: 960px) {
        #index02 ul li {
          display: flex;
          flex-wrap: wrap; }
          #index02 ul li img {
            width: calc( 50% - 15px);
            order: 2; }
          #index02 ul li p {
            font-size: 1.6rem;
            padding: 0; }
            #index02 ul li p:nth-of-type(1) {
              text-align: left;
              width: 100%;
              margin-bottom: 5px;
              order: 1; }
            #index02 ul li p:nth-of-type(2) {
              order: 3;
              width: 50%;
              margin-left: 15px; } }

#index03 {
  background: url("../images/top/bg1.jpg") repeat-y center top -750px; }
  #index03 .container:nth-child(1) {
    width: 100%;
    max-width: none;
    margin: 0; }
    #index03 .container:nth-child(1) > section {
      width: 100%; }
  #index03 .container:nth-child(2) {
    padding: 0 0 60px; }
  #index03 h1 span {
    color: #000 !important; }
  #index03 h1 + p {
    padding: 0 15px; }
  #index03 .slick {
    margin-bottom: 0px; }
    #index03 .slick .slick-prev, #index03 .slick .slick-next {
      z-index: 1; }
    #index03 .slick .slick-prev:before, #index03 .slick .slick-next:before {
      content: "";
      display: block;
      width: 18px;
      height: 18px;
      margin-top: -55px;
      border-left: 4px solid #fff;
      border-bottom: 4px solid #fff;
      transform: rotate(45deg);
      opacity: 1; }
      @media all and (max-width: 960px) {
        #index03 .slick .slick-prev:before, #index03 .slick .slick-next:before {
          margin-top: -40px; } }
    #index03 .slick .slick-next:before {
      transform: rotate(-135deg); }
    #index03 .slick .slick-dots {
      bottom: -50px; }
    #index03 .slick li {
      padding: 0.5px;
      box-sizing: border-box; }
    #index03 .slick a {
      color: #000;
      transition: all .2s ease-in-out; }
      #index03 .slick a:hover {
        opacity: 0.7; }
      #index03 .slick a img {
        display: block;
        border-radius: 20px; }
      #index03 .slick a p {
        font-size: 1.8rem;
        font-weight: 600;
        text-align: left;
        margin: 10px 0 0 10px; }
        @media all and (max-width: 960px) {
          #index03 .slick a p {
            font-size: 1.4rem; }
            #index03 .slick a p span {
              display: inline-block; } }
        @media all and (max-width: 520px) {
          #index03 .slick a p {
            font-size: 1.2rem; } }
    #index03 .slick .slick-prev {
      left: 25px;
      z-index: 100; }
    #index03 .slick .slick-next {
      right: 25px;
      z-index: 100; }

#index04 {
  background: #237ea5; }
  #index04 h1 + p {
    color: #fff; }
  #index04 ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 840px;
    margin: 0 auto 80px; }
    @media all and (max-width: 960px) {
      #index04 ul {
        margin-bottom: 60px; } }
    #index04 ul li {
      width: calc( ( 100% - 40px ) / 2 );
      margin: 0 0 40px; }
      @media all and (max-width: 960px) {
        #index04 ul li {
          width: 100%;
          max-width: 700px;
          margin: 0 auto 40px; } }
      #index04 ul li:last-child {
        margin-bottom: 0; }
    #index04 ul img {
      display: block;
      border-radius: 20px;
      margin-bottom: 15px; }
    #index04 ul a {
      color: #000;
      display: block;
      background: #fff url("../images/top/icon_link_l.svg") no-repeat center bottom 35px;
      background-size: 95px auto;
      padding: 35px 35px 85px;
      box-sizing: border-box;
      border-radius: 20px;
      transition: all .2s ease-in-out; }
      #index04 ul a:hover {
        background-color: rgba(255, 255, 255, 0.8); }
  #index04 dl dt {
    font-size: 2.8rem;
    letter-spacing: 0;
    border-bottom: 1px #999 dashed;
    display: inline-block;
    padding: 0 5px 0px;
    margin-bottom: 15px; }
    @media all and (max-width: 960px) {
      #index04 dl dt {
        font-size: 2rem; } }
  #index04 dl dd {
    text-align: left; }

@media all and (max-width: 960px) {
  #index05 .container {
    padding-bottom: 60px; } }
#index05 h1 span {
  color: #000 !important; }
#index05 .pic {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 945px;
  margin: 0 auto 50px; }
  #index05 .pic > div {
    width: calc( 100% - 420px );
    text-align: left; }
    #index05 .pic > div:nth-child(1) {
      width: 400px; }
  #index05 .pic h2 {
    background: url("../images/top/05_icon_comment.svg") no-repeat left center;
    background-size: 25px auto;
    padding: 0 0 0 30px;
    font-size: 2rem;
    margin-bottom: 10px; }
  #index05 .pic p {
    font-size: 2.4rem; }
  #index05 .pic img {
    border-radius: 20px; }
#index05 ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media all and (max-width: 960px) {
    #index05 ul {
      border-radius: 20px;
      padding-bottom: 0px;
      margin-bottom: -10px; } }
  #index05 ul li {
    width: calc( ( 100% - 48px ) / 3 );
    background: #fff;
    border-radius: 20px;
    margin: 8px 8px 20px;
    padding: 20px 20px 20px;
    box-sizing: border-box;
    border: 8px #237ea5 solid;
    position: relative; }
    @media all and (max-width: 960px) {
      #index05 ul li {
        width: 100%;
        max-width: 700px;
        border: none;
        margin: 0px auto 1px;
        padding: 0px 0px 0px;
        display: flex; } }
    #index05 ul li figure {
      border-radius: 20px;
      margin: 0 auto 15px;
      overflow: hidden;
      position: relative; }
      #index05 ul li figure figcaption {
        display: none; }
      @media all and (max-width: 960px) {
        #index05 ul li figure {
          width: calc( 50% - 15px);
          margin-right: 15px;
          background: #000; }
          #index05 ul li figure figcaption {
            display: block;
            width: 100%;
            position: absolute;
            top: 50%;
            left: 0;
            text-align: center;
            transform: translateY(-50%);
            color: #fff;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 0.02em; } }
    #index05 ul li img {
      display: block;
      width: 100%; }
      @media all and (max-width: 960px) {
        #index05 ul li img {
          width: 100%;
          margin-bottom: 0px;
          opacity: 0.7; } }
    @media all and (max-width: 960px) {
      #index05 ul li dl {
        width: 50%; } }
    #index05 ul li dl dt {
      font-size: 2.8rem;
      letter-spacing: 0;
      border-bottom: 1px #999 dashed;
      display: inline-block;
      padding: 0 5px 0px;
      margin-bottom: 15px; }
      @media all and (max-width: 960px) {
        #index05 ul li dl dt {
          display: none; } }
    #index05 ul li dl dd {
      text-align: left; }

#index06 {
  background: #e9f2f6; }
  #index06 h1 span {
    color: #000 !important; }
  #index06 h2 {
    margin-bottom: 30px; }
    #index06 h2 span {
      display: block; }
      #index06 h2 span:nth-child(1) {
        font-size: 3.6rem; }
        @media all and (max-width: 960px) {
          #index06 h2 span:nth-child(1) {
            font-size: 1.8rem; } }
      #index06 h2 span:nth-child(2) {
        font-size: 2.6rem; }
        @media all and (max-width: 960px) {
          #index06 h2 span:nth-child(2) {
            font-size: 1.7rem; } }
  #index06 img {
    border-radius: 20px;
    display: block;
    margin: 0 auto 30px; }
  #index06 .mes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 945px;
    margin: 0 auto 50px; }
    #index06 .mes > div {
      width: calc( 100% - 280px );
      text-align: left; }
      @media all and (max-width: 960px) {
        #index06 .mes > div {
          width: 100% !important; } }
      #index06 .mes > div:nth-child(1) {
        width: 260px; }
      #index06 .mes > div p {
        font-size: 2.2rem; }
        @media all and (max-width: 960px) {
          #index06 .mes > div p {
            font-size: 1.4rem; } }
        #index06 .mes > div p:nth-of-type(2) {
          text-align: right;
          font-size: 2rem;
          font-weight: 500;
          margin-top: 50px; }
          @media all and (max-width: 960px) {
            #index06 .mes > div p:nth-of-type(2) {
              margin-top: 30px;
              font-size: 1.4rem; } }
  #index06 .lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start; }
  #index06 ul.txt {
    width: 360px;
    list-style: none;
    text-align: left;
    font-size: 2.8rem;
    font-weight: 500; }
    #index06 ul.txt li {
      background: url("../images/top/icon_check.svg") no-repeat left center;
      background-size: 25px auto;
      padding: 0 0 0 30px;
      margin: 5px 0; }
  #index06 ul.img {
    width: calc( 100% - 360px );
    max-width: 500px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    #index06 ul.img li {
      width: calc( 50% - 5px );
      margin-bottom: 10px; }

#index07 .container {
  padding: 60px 0 160px; }
  @media all and (max-width: 960px) {
    #index07 .container {
      padding: 30px 0 100px; } }
#index07 h1 span {
  color: #000 !important; }
#index07 ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }
  #index07 ul li {
    width: calc( 50% - 20px ); }
    @media all and (max-width: 960px) {
      #index07 ul li {
        width: 100%;
        margin: 15px auto; } }
    #index07 ul li a {
      display: block;
      background: #237ea5;
      border-radius: 60px;
      color: #fff;
      padding: 30px 20px;
      box-sizing: border-box;
      font-size: 2.8rem;
      line-height: 1;
      transition: all .2s ease-in-out;
      background: #237ea5 url("../images/icon_more.svg") no-repeat right 35px center;
      background-size: 25px auto; }
      @media all and (max-width: 960px) {
        #index07 ul li a {
          font-size: 1.8rem;
          width: 100%;
          max-width: 500px;
          margin: auto;
          background: #237ea5 url("../images/icon_more.svg") no-repeat right 20px center;
          background-size: 20px auto; } }
      #index07 ul li a:hover {
        background-color: #1eb7cd; }

.contentsheader {
  margin-bottom: 20px;
  height: 400px;
  position: relative; }
  @media all and (max-width: 960px) {
    .contentsheader {
      height: 250px; } }
  @media all and (max-width: 520px) {
    .contentsheader {
      height: 200px; } }
  .contentsheader h1 {
    margin: auto;
    font-size: 3rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    @media all and (max-width: 960px) {
      .contentsheader h1 {
        font-size: 4rem; } }
    @media all and (max-width: 520px) {
      .contentsheader h1 {
        padding: 0px 30px 0;
        font-size: 3rem; } }
    .contentsheader h1 > span {
      display: block;
      line-height: 1; }
      .contentsheader h1 > span:nth-child(1) {
        color: #1eb7cd !important;
        font-size: 2rem;
        margin-bottom: 15px; }
        @media all and (max-width: 960px) {
          .contentsheader h1 > span:nth-child(1) {
            font-size: 1.8rem; } }
      @media all and (max-width: 960px) {
        .contentsheader h1 > span:nth-child(2) {
          font-size: 2.4rem; } }

.people .contentsheader, .flow .contentsheader, .parents .contentsheader, .information .contentsheader {
  height: auto;
  margin: 15px auto 0; }
  @media all and (max-width: 960px) {
    .people .contentsheader, .flow .contentsheader, .parents .contentsheader, .information .contentsheader {
      height: 150px; } }
  .people .contentsheader h1, .flow .contentsheader h1, .parents .contentsheader h1, .information .contentsheader h1 {
    color: #000; }
  .people .contentsheader h1, .flow .contentsheader h1, .parents .contentsheader h1, .information .contentsheader h1 {
    position: static;
    transform: translate(0); }

#path {
  background: #efefef;
  margin: auto;
  padding: 2px 15px;
  font-size: 1.4rem; }
  @media all and (max-width: 960px) {
    #path {
      font-size: 1.2rem; } }
  #path div {
    max-width: 1400px;
    margin: auto; }
  #path a {
    color: #000;
    transition: all .2s ease-in-out; }
    #path a:hover {
      color: #237ea5; }

.container {
  max-width: 1000px;
  padding: 50px 15px;
  margin: auto;
  text-align: center; }

h2.home {
  margin-bottom: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 72px; }
  h2.home span {
    background: url("../images/h-icon.svg") no-repeat left center;
    background-size: 52px auto;
    padding: 15px 5px 15px 68px;
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 500;
    border-bottom: 2px #1eb7cd solid; }
    @media all and (max-width: 960px) {
      h2.home span {
        background-size: 40px auto;
        padding: 15px 5px 15px 55px;
        font-size: 2rem; } }
  h2.home.white {
    color: #fff; }
    h2.home.white span {
      background: url("../images/h-icon-white.svg") no-repeat left center;
      background-size: 52px auto;
      border-bottom: 2px #fff solid; }
  h2.home + p {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 50px; }
    @media all and (max-width: 960px) {
      h2.home + p {
        font-size: 1.4rem;
        text-align: left; }
        h2.home + p.center {
          text-align: center; } }

.lead {
  margin: 20px auto 20px; }
  .lead .container {
    padding: 20px 15px; }
  .lead p {
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    font-weight: 500; }
    @media all and (max-width: 960px) {
      .lead p {
        font-size: 1.4rem;
        text-align: left; } }
  .lead .lbframe {
    border: #237ea5 2px solid;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 30px 40px;
    margin: 50px auto 0;
    color: #237ea5;
    text-align: left;
    max-width: 900px; }
    @media all and (max-width: 960px) {
      .lead .lbframe {
        padding: 20px 30px;
        margin: 30px auto 0; } }
    .lead .lbframe a {
      color: #003aa8;
      text-decoration: underline; }
      .lead .lbframe a[target="_blank"] {
        background: #ffff00 url("../images/icon_blank_blue.svg") no-repeat right 4px center;
        background-size: 16px auto;
        padding-right: 24px; }
        @media all and (max-width: 960px) {
          .lead .lbframe a[target="_blank"] {
            background-size: 14px auto;
            padding-right: 22px; } }
      .lead .lbframe a:hover {
        color: #1eb7cd; }

@media all and (max-width: 960px) {
  .ichijo {
    overflow: hidden; } }
.ichijo .contentsheader {
  background: url("../images/ichijo/head.jpg") no-repeat center center;
  background-size: cover; }

.ichijo .wrapper {
  padding: 0px 0 100px; }
  .ichijo .wrapper:nth-child(2n) {
    background: rgba(35, 126, 165, 0.2); }
.ichijo .pagenav .container {
  padding: 50px 15px; }
.ichijo .container {
  padding: 0px 15px; }
.ichijo .lead {
  margin: 40px auto 10px; }
  @media all and (max-width: 960px) {
    .ichijo .lead {
      margin: 30px auto -20px; } }
.ichijo .container > section h1 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 40px; }
  @media all and (max-width: 960px) {
    .ichijo .container > section h1 {
      font-size: 1.6rem;
      margin-bottom: 30px; } }
  .ichijo .container > section h1 span {
    display: inline-block;
    border-bottom: 3px #f00 solid;
    vertical-align: middle;
    margin: 0 25px; }
    @media all and (max-width: 960px) {
      .ichijo .container > section h1 span {
        padding-bottom: 5px; } }
  .ichijo .container > section h1 strong {
    font-size: 3rem;
    font-weight: 600;
    color: #f00;
    margin: 0 10px; }
    @media all and (max-width: 960px) {
      .ichijo .container > section h1 strong {
        font-size: 2.2rem; } }
  .ichijo .container > section h1 em {
    font-size: 3rem;
    font-weight: 500;
    font-style: normal; }
    @media all and (max-width: 960px) {
      .ichijo .container > section h1 em {
        font-size: 2.2rem; } }
.ichijo .container > section p {
  text-align: left;
  font-size: 1.6rem;
  margin: 25px 0; }
  @media all and (max-width: 960px) {
    .ichijo .container > section p {
      font-size: 1.4rem; } }
.ichijo .container > section .center {
  text-align: center; }
  @media all and (max-width: 960px) {
    .ichijo .container > section .center {
      text-align: left; } }
.ichijo .bubble {
  width: 266px;
  height: 125px;
  background: url("../images/ichijo/bubble.svg") no-repeat center center;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto -10px;
  position: relative;
  top: -40px; }
  @media all and (max-width: 960px) {
    .ichijo .bubble {
      width: 200px;
      height: 100px; } }
  .ichijo .bubble span {
    display: block;
    line-height: 1;
    font-size: 3rem; }
    @media all and (max-width: 960px) {
      .ichijo .bubble span {
        font-size: 2.4rem; } }
.ichijo img {
  display: block;
  border-radius: 20px; }
.ichijo .imgarea {
  border: 1.5px #1eb7cd solid;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  background: #fff; }
  .ichijo .imgarea.nb {
    border: none; }
  .ichijo .imgarea img {
    border-radius: 0px; }
    .ichijo .imgarea img.fig {
      width: 100%;
      max-width: 800px;
      margin: auto; }
  .ichijo .imgarea .pop {
    display: block;
    position: absolute;
    width: 18%;
    top: 15%;
    right: 10%; }
    @media all and (max-width: 960px) {
      .ichijo .imgarea .pop {
        width: 26%;
        top: 18%;
        right: 3%; } }

.ichijo6 .container {
  padding: 50px 15px; }
  @media all and (max-width: 960px) {
    .ichijo6 .container {
      padding: 30px 15px; } }
.ichijo6 p {
  font-size: 3rem;
  margin: 50px auto 30px;
  letter-spacing: 0.03em;
  font-weight: 500; }
  @media all and (max-width: 960px) {
    .ichijo6 p {
      font-size: 1.6rem;
      text-align: left; } }
.ichijo6 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 20px auto 0px; }
  .ichijo6 ul li {
    width: calc( ( 100% - 48px ) / 4 ); }
    @media all and (max-width: 960px) {
      .ichijo6 ul li {
        width: calc( ( 100% - 18px ) / 2 );
        margin-bottom: 18px; } }
    .ichijo6 ul li:nth-child(2n) {
      margin-top: -20px; }

.ichijo4 .note {
  display: block;
  margin-top: 5px;
  font-size: 1.4rem; }
  @media all and (max-width: 960px) {
    .ichijo4 .note {
      font-size: 1.2rem; } }
.ichijo4 .slick .slick-list {
  overflow: visible !important; }
.ichijo4 .slick li {
  padding-top: 50px; }
.ichijo4 .slick .slick-dots {
  bottom: -90px; }
.ichijo4 .slick .slick-next {
  right: 0px; }
.ichijo4 .slick .slick-prev {
  left: 0;
  z-index: 1; }
.ichijo4 .slick .slick-prev:before, .ichijo4 .slick .slick-next:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-left: 4px solid #237ea5;
  border-bottom: 4px solid #237ea5;
  transform: rotate(45deg);
  opacity: 1; }
.ichijo4 .slick .slick-next:before {
  transform: rotate(-135deg); }
.ichijo4 ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 25px;
  margin: 50px auto 0; }
  @media all and (max-width: 960px) {
    .ichijo4 ul {
      display: block; } }
  .ichijo4 ul li.slickitem {
    padding: 0 10px !important;
    box-sizing: border-box; }
    .ichijo4 ul li.slickitem:nth-child(1) {
      padding-left: 0px; }
    .ichijo4 ul li.slickitem:nth-child(3) {
      padding-right: 0px; }
    @media all and (max-width: 960px) {
      .ichijo4 ul li.slickitem {
        width: 100%;
        max-width: 300px;
        margin: 0px 10px 60px;
        padding: 0; }
        .ichijo4 ul li.slickitem:last-child {
          margin-bottom: 0; } }
    .ichijo4 ul li.slickitem .itemwrapper {
      border: 1.5px #1eb7cd solid;
      border-radius: 20px;
      box-sizing: border-box;
      padding: 35px 25px 25px;
      position: relative; }
      .ichijo4 ul li.slickitem .itemwrapper > p {
        font-size: 6rem !important;
        color: #f00;
        font-weight: 600;
        line-height: 1;
        font-style: oblique;
        text-align: center !important;
        position: absolute;
        top: -55px !important;
        left: 50%;
        transform: translateX(-50%); }
      .ichijo4 ul li.slickitem .itemwrapper > div.txt {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px; }
        @media all and (max-width: 960px) {
          .ichijo4 ul li.slickitem .itemwrapper > div.txt {
            margin: 0 auto 20px; } }
        .ichijo4 ul li.slickitem .itemwrapper > div.txt span:nth-child(1) {
          width: 50px; }
          .ichijo4 ul li.slickitem .itemwrapper > div.txt span:nth-child(1) img {
            border-radius: 0;
            display: block;
            margin: 5px auto; }
        .ichijo4 ul li.slickitem .itemwrapper > div.txt span:nth-child(2) {
          width: calc(  100% - 65px );
          text-align: left; }
      .ichijo4 ul li.slickitem .itemwrapper > img {
        margin: auto; }

.ichijo4 ul li.slickitem {
  width: calc( ( 100% - 32px ) / 3 );
  padding: 0 0px !important; }

.ichijo5 {
  padding-bottom: 0 !important; }
  .ichijo5 .bubble {
    width: 310px;
    height: 145px; }

.work .contentsheader {
  background: url("../images/work/head.jpg") no-repeat center center;
  background-size: cover;
  margin-bottom: 0; }
.work .lead .container {
  padding-bottom: 0;
  margin-bottom: -50px; }
  @media all and (max-width: 960px) {
    .work .lead .container {
      margin-bottom: -30px; } }

.tabnav {
  margin: 50px auto 50px; }
  @media all and (max-width: 960px) {
    .tabnav {
      margin: 0px auto; } }
  .tabnav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .tabnav ul li {
      width: calc(  50% - 10px  ); }
      @media all and (max-width: 960px) {
        .tabnav ul li {
          width: calc(  50% - 5px  ); } }
      .tabnav ul li a {
        display: block;
        border: 1px #003aa8 solid;
        border-radius: 40px;
        padding: 20px 5px;
        box-sizing: border-box;
        line-height: 1;
        color: #003aa8;
        position: relative; }
      .tabnav ul li.active a {
        pointer-events: none;
        background: #003aa8;
        color: #fff; }
        .tabnav ul li.active a:before {
          content: "";
          position: absolute;
          background: #003aa8;
          width: 20px;
          height: 20px;
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          z-index: 1;
          bottom: -20px;
          left: calc( 50% - 10px ); }
  .tabnav.foot li.active a:before {
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    top: -20px; }

.workflow {
  background: #d2e8ef; }
  .workflow ul.chart {
    list-style: none; }
    .workflow ul.chart > li {
      background: #fff;
      border-radius: 20px;
      position: relative;
      margin: 80px 0 80px 30px;
      padding: 0px 30px 0px 130px;
      box-sizing: border-box;
      text-align: left;
      display: flex;
      align-items: center;
      min-height: 110px; }
      @media all and (max-width: 960px) {
        .workflow ul.chart > li {
          min-height: 100px;
          padding: 10px 10px 10px 70px; } }
      .workflow ul.chart > li:before {
        content: "";
        position: absolute;
        background: #f00;
        width: 20px;
        height: 15px;
        clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
        z-index: 1;
        bottom: -48px;
        left: 35px; }
        @media all and (max-width: 960px) {
          .workflow ul.chart > li:before {
            left: calc( 50% - 10px ) !important; } }
      .workflow ul.chart > li:last-of-type:before {
        content: none; }
      .workflow ul.chart > li:nth-child(3) {
        display: block;
        margin-top: 110px;
        border: 5px #1eb7cd solid;
        padding: 20px 30px 20px 30px; }
        .workflow ul.chart > li:nth-child(3):before {
          left: 30px; }
        .workflow ul.chart > li:nth-child(3) > div {
          display: block; }
        @media all and (max-width: 960px) {
          .workflow ul.chart > li:nth-child(3) {
            padding: 20px 20px; } }
        .workflow ul.chart > li:nth-child(3) > img {
          width: 180px;
          display: block;
          position: absolute;
          top: -45px;
          left: -50px;
          transform: translateY(0); }
          @media all and (max-width: 960px) {
            .workflow ul.chart > li:nth-child(3) > img {
              width: 120px;
              top: -45px;
              left: -35px; } }
        .workflow ul.chart > li:nth-child(3) > div:nth-of-type(2) {
          position: relative;
          margin-top: 60px; }
          .workflow ul.chart > li:nth-child(3) > div:nth-of-type(2) > img {
            width: 180px;
            display: block;
            position: absolute;
            top: -45px;
            left: -90px;
            transform: translateY(0); }
            @media all and (max-width: 960px) {
              .workflow ul.chart > li:nth-child(3) > div:nth-of-type(2) > img {
                width: 120px;
                top: -45px;
                left: -65px; } }
          .workflow ul.chart > li:nth-child(3) > div:nth-of-type(2) > ul {
            padding-top: 20px; }
            @media all and (max-width: 960px) {
              .workflow ul.chart > li:nth-child(3) > div:nth-of-type(2) > ul {
                padding-top: 0px; } }
      .workflow ul.chart > li > img {
        width: 140px;
        display: block;
        position: absolute;
        top: 50%;
        left: -25px;
        transform: translateY(-50%); }
        @media all and (max-width: 960px) {
          .workflow ul.chart > li > img {
            width: 100px;
            left: -30px; } }
      .workflow ul.chart > li > div {
        margin-left: 10px;
        box-sizing: border-box; }
        @media all and (max-width: 960px) {
          .workflow ul.chart > li > div {
            position: static;
            transform: translateY(0);
            hanging-punctuation: last force-end; } }
        .workflow ul.chart > li > div > ul {
          list-style: none;
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          margin: 0 0 0 -10px; }
          .workflow ul.chart > li > div > ul li {
            width: calc( ( 100% - 40px ) / 3 );
            background: none;
            margin: 10px 0;
            padding: 0; }
            @media all and (max-width: 960px) {
              .workflow ul.chart > li > div > ul li {
                width: calc( ( 100% - 20px ) / 2 ); } }
            @media all and (max-width: 520px) {
              .workflow ul.chart > li > div > ul li {
                width: 100%; } }
            .workflow ul.chart > li > div > ul li:before {
              content: none; }
            .workflow ul.chart > li > div > ul li:nth-child(3) {
              border: none;
              padding: 0px;
              margin: 10px 0; }
            .workflow ul.chart > li > div > ul li:last-child {
              background: rgba(30, 183, 206, 0.3);
              padding: 20px 25px;
              box-sizing: border-box;
              border-radius: 20px; }
              .workflow ul.chart > li > div > ul li:last-child p {
                font-size: 1.8rem;
                font-weight: 500;
                color: #000;
                line-height: 1.7;
                margin-bottom: 15px;
                letter-spacing: 0.01em; }
                @media all and (max-width: 960px) {
                  .workflow ul.chart > li > div > ul li:last-child p {
                    font-size: 1.4rem; } }
                .workflow ul.chart > li > div > ul li:last-child p:last-child {
                  margin-bottom: 0; }
            .workflow ul.chart > li > div > ul li img {
              display: block;
              border-radius: 20px;
              margin-bottom: 10px; }
            @media all and (max-width: 960px) {
              .workflow ul.chart > li > div > ul li figcaption {
                margin: 0 10px; } }
        .workflow ul.chart > li > div > p {
          margin-bottom: 20px;
          margin-left: 110px; }
          @media all and (max-width: 960px) {
            .workflow ul.chart > li > div > p {
              margin-left: 0px; } }
          .workflow ul.chart > li > div > p img.bubble {
            display: inline-block;
            width: 290px;
            vertical-align: middle;
            margin: 0 20px 5px 0;
            position: relative;
            z-index: 2; }
            @media all and (max-width: 960px) {
              .workflow ul.chart > li > div > p img.bubble {
                margin-bottom: 15px;
                margin-left: 80px; } }
            @media all and (max-width: 520px) {
              .workflow ul.chart > li > div > p img.bubble {
                display: block;
                margin: 0 auto 15px;
                width: 200px;
                padding-left: 30px; } }
          .workflow ul.chart > li > div > p span {
            display: inline-block;
            vertical-align: middle; }

.movie a {
  transition: all .2s ease-in-out; }
  .movie a img {
    display: block; }
  .movie a:hover {
    opacity: 0.5; }

.keyword {
  background: rgba(35, 126, 165, 0.8); }
  .keyword .home + p {
    color: #fff; }

.cards {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; }

.card {
  width: 32%;
  width: 32.5%;
  position: relative;
  cursor: pointer;
  margin-bottom: 1.25%; }
  @media all and (max-width: 960px) {
    .card {
      width: 49%; } }

.card::before {
  content: "";
  display: block;
  padding-top: 80%;
  padding-top: 94%;
  padding-top: 82%; }
  @media all and (max-width: 960px) {
    .card::before {
      padding-top: 95%; } }

.card .back img {
  display: block;
  width: 100%;
  margin: auto;
  position: relative;
  top: 50%;
  left: 0;
  transform: translateY(-50%); }

.card .front img {
  display: block;
  width: 50%;
  margin: -5px auto -8px; }

.cards2 .card .front img {
  display: block;
  width: 83%;
  margin: 15px auto 10px; }
.cards2 .card .front p {
  width: 85%;
  font-size: 1.5rem;
  letter-spacing: 0em; }

.cards2 .card:nth-child(5) .front p {
  font-size: 1.4rem; }

.card p {
  width: 80%;
  margin: auto;
  text-align: left;
  width: 86%;
  font-size: 1.5rem;
  letter-spacing: 0em;
  z-index: 2;
  position: relative; }
.card:nth-child(5) p {
  font-size: 1.3rem; }

.card .back,
.card .front {
  background: #fff;
  transition: all 0.6s;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  border: 3px #1eb7cd solid;
  border-radius: 20px;
  box-sizing: border-box; }
  @media all and (max-width: 520px) {
    .card .back,
    .card .front {
      border: 2px #1eb7cd solid; } }

.card .front {
  transform: rotateY(-180deg); }

.card:hover .back,
.card.hover .back {
  transform: rotateY(180deg); }
  @media all and (max-width: 960px) {
    .card:hover .back,
    .card.hover .back {
      transform: rotateY(0); } }

.card:hover .front,
.card.hover .front {
  transform: rotateY(0); }
  @media all and (max-width: 960px) {
    .card:hover .front,
    .card.hover .front {
      transform: rotateY(-180deg); } }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 500;
  display: none; }
  .modal.active {
    display: block; }
  .modal .js-close-modal {
    cursor: pointer;
    width: 90px;
    height: 90px;
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 3;
    transition: all 0.2s; }
    .modal .js-close-modal:hover {
      opacity: 0.5; }
    @media all and (max-width: 960px) {
      .modal .js-close-modal {
        width: 25px;
        height: 25px;
        top: 10px;
        right: 10px; } }
  .modal .closebtn {
    width: 80vw;
    margin: auto;
    position: relative;
    background: #f00; }
  .modal .modal-nav {
    position: static;
    z-index: 3;
    display: flex;
    width: 80vw;
    margin: 10px auto;
    padding-left: 10px; }
    @media all and (max-width: 960px) {
      .modal .modal-nav {
        bottom: 25px;
        right: 25px; } }
  .modal .modalitem {
    display: none; }
    .modal .modalitem.active {
      display: block; }
  .modal .next {
    cursor: pointer;
    width: 50px;
    height: auto;
    margin-left: 20px;
    transition: all 0.2s; }
    @media all and (max-width: 960px) {
      .modal .next {
        width: 14px;
        height: auto;
        margin-left: 0px; } }
    .modal .next:hover {
      opacity: 0.5; }
      @media all and (max-width: 960px) {
        .modal .next:hover {
          opacity: 1; } }
  .modal .prev {
    cursor: pointer;
    width: 50px;
    height: auto;
    transition: all 0.2s; }
    @media all and (max-width: 960px) {
      .modal .prev {
        width: 14px;
        height: auto;
        margin-left: 0px;
        margin-bottom: 10px;
        margin-right: 20px; } }
    .modal .prev:hover {
      opacity: 0.5; }
      @media all and (max-width: 960px) {
        .modal .prev:hover {
          opacity: 1; } }

.cardsp {
  margin: 50px auto 0;
  width: 80vw; }
  .cardsp .front {
    border: 3px #1eb7cd solid;
    border-radius: 20px;
    box-sizing: border-box;
    background: #fff;
    padding: 0 30px 40px;
    animation: flipcard 1s; }
    .cardsp .front > div {
      opacity: 0;
      animation: fadecard 1s 0.8s forwards; }
      .cardsp .front > div img {
        display: block;
        margin: 0 auto -10px; }
    .cardsp .front > p {
      opacity: 0;
      animation: fadecard 1s 1.3s forwards; }
  .cardsp .back {
    background: #237ea5;
    display: none; }

@keyframes flipcard {
  0% {
    transform: rotateY(180deg); }
  100% {
    transform: rotateY(0); } }
@keyframes fadecard {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.people .lead .container {
  padding: 0 15px; }

.peopleindex ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: left;
  justify-content: space-between; }
  .peopleindex ul li {
    width: calc( 50% - 10px );
    margin-bottom: 25px;
    position: relative; }
    @media all and (max-width: 520px) {
      .peopleindex ul li {
        width: 100%; } }
    .peopleindex ul li a {
      display: block;
      text-decoration: none;
      color: #000;
      font-size: 1.8rem;
      font-weight: 500;
      transition: all .3s ease-in-out; }
      .peopleindex ul li a div {
        position: relative;
        border-radius: 20px;
        background: #000;
        margin-bottom: 10px;
        overflow: hidden; }
        .peopleindex ul li a div > img {
          display: block;
          transition: all .5s ease-in-out; }
      .peopleindex ul li a:hover div:after {
        content: "";
        width: 100%;
        height: 120%;
        background: rgba(0, 0, 4, 0.4) url("../images/h-icon.svg") no-repeat center center;
        background-size: 70px auto;
        position: absolute;
        top: -10%;
        left: 0;
        animation: popup 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
@keyframes popup {
  0% {
    transform: translateY(40px);
    opacity: 0; }
  100% {
    transform: translateY(0px); }
  80%, 100% {
    opacity: 1; } }
        @media all and (max-width: 960px) {
          .peopleindex ul li a:hover div:after {
            background-image: none; } }
      .peopleindex ul li a:hover div > img {
        transform: scale(1.1); }
    .peopleindex ul li:nth-child(1) a div p.ptxtimg {
      animation-delay: 0; }
    .peopleindex ul li:nth-child(2) a div p.ptxtimg {
      animation-delay: 0.2s; }
    .peopleindex ul li:nth-child(3) a div p.ptxtimg {
      animation-delay: 0.4s; }
    .peopleindex ul li:nth-child(4) a div p.ptxtimg {
      animation-delay: 0.6s; }
.peopleindex .ptxtimg {
  position: absolute;
  left: 0;
  bottom: 33px;
  height: 46px;
  display: inline-block;
  display: block;
  width: 0px;
  overflow: hidden;
  animation: mask 1.2s cubic-bezier(0.8, 0, 0.17, 1) forwards; }
  @media all and (max-width: 960px) {
    .peopleindex .ptxtimg {
      left: -5px;
      bottom: 10%;
      height: 25px;
      height: 15%; } }
  .peopleindex .ptxtimg img {
    display: block;
    max-width: none;
    height: 46px; }
    @media all and (max-width: 960px) {
      .peopleindex .ptxtimg img {
        height: 25px;
        height: 100%; } }
@keyframes mask {
  0% {
    width: 0%; }
  100% {
    width: 100%; } }
.peopleindex .ptxt {
  font-size: 1.8rem; }
  @media all and (max-width: 960px) {
    .peopleindex .ptxt {
      font-size: 1.4rem; } }

.peoplemv {
  background: url("../images/people/p1-mv.jpg") no-repeat center center;
  background-size: cover;
  height: 500px; }
  @media all and (max-width: 960px) {
    .peoplemv {
      height: 400px;
      background: url("../images/people/p1-mv-sp.jpg") no-repeat;
      background-size: cover;
      background-position: center center;
      margin-bottom: 260px; } }
  .people02 .peoplemv {
    background: url("../images/people/p2-mv.jpg") no-repeat center center;
    background-size: cover; }
    @media all and (max-width: 960px) {
      .people02 .peoplemv {
        background: url("../images/people/p2-mv-sp.jpg") no-repeat;
        background-size: cover; } }
    .people02 .peoplemv p {
      justify-content: flex-end !important; }
  .people03 .peoplemv {
    background: url("../images/people/p3-mv.jpg") no-repeat center center;
    background-size: cover; }
    @media all and (max-width: 960px) {
      .people03 .peoplemv {
        background: url("../images/people/p3-mv-sp.jpg") no-repeat;
        background-size: cover; } }
    .people03 .peoplemv p {
      justify-content: flex-end !important; }
  .people04 .peoplemv {
    background: url("../images/people/p4-mv.jpg") no-repeat center center;
    background-size: cover; }
    @media all and (max-width: 960px) {
      .people04 .peoplemv {
        background: url("../images/people/p4-mv-sp.jpg") no-repeat;
        background-size: cover; } }
    .people04 .peoplemv p {
      justify-content: flex-end !important; }
  @media all and (max-width: 520px) {
    .peoplemv {
      height: 280px;
      margin-bottom: 220px;
      margin-bottom: calc( 100vw * ( 300 / 578 ) ); } }
  .peoplemv .container {
    max-width: 1100px;
    height: 100%;
    box-sizing: border-box;
    position: relative; }
    .peoplemv .container p img {
      max-width: 578px; }
    @media all and (max-width: 960px) {
      .peoplemv .container {
        position: relative;
        padding: 0; }
        .peoplemv .container p {
          position: absolute;
          bottom: -260px;
          left: 0;
          width: 100%;
          display: block;
          height: auto; }
          .peoplemv .container p img {
            display: block;
            width: 100%;
            max-height: 260px;
            max-width: none;
            margin: auto; } }
    @media all and (max-width: 520px) {
      .peoplemv .container {
        position: relative; }
        .peoplemv .container p {
          bottom: calc( -100vw * ( 300 / 578 ) ); }
          .peoplemv .container p img {
            max-height: calc( 100vw * ( 300 / 578 ) ); } }
  .peoplemv p {
    display: flex;
    align-items: center;
    height: 100%; }
    .peoplemv p img {
      display: block;
      max-width: 60%; }

.pr {
  background: #237ea5;
  color: #fff; }
  .pr .container {
    padding: 20px 15px; }
  .pr section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    padding: 30px 0; }
    @media all and (max-width: 960px) {
      .pr section {
        padding: 0px 0; } }
  .pr h2 {
    width: 150px;
    font-size: 2rem;
    font-weight: 300; }
    @media all and (max-width: 960px) {
      .pr h2 {
        width: 100%;
        font-size: 1.6rem; } }
  .pr p {
    width: calc( 100% - 220px);
    box-sizing: border-box;
    border-left: 1px #fff solid;
    padding-left: 40px; }
    @media all and (max-width: 960px) {
      .pr p {
        border-left: none;
        width: 100%;
        padding-left: 0px;
        margin-top: 4px; } }

.interview {
  border-top: 1px #ccc solid;
  background: url("../images/top/bg1.jpg") repeat-y center top 0px; }
  @media all and (max-width: 960px) {
    .interview {
      background-size: 1500px auto; } }
  .interview ul {
    list-style: none;
    max-width: 900px;
    margin: auto; }
    .interview ul li {
      position: relative;
      margin: 0 0 30px;
      text-align: left; }
      .interview ul li:before {
        content: "";
        position: absolute;
        width: 50px;
        height: 50px;
        background: url("../images/people/icon_q.svg") no-repeat left center;
        background-size: contain;
        position: absolute;
        top: 5px;
        left: 0px; }
        @media all and (max-width: 960px) {
          .interview ul li:before {
            top: 1px; } }
      .interview ul li p {
        position: relative;
        max-width: 680px;
        padding: 13px 25px;
        box-sizing: border-box;
        background: #fff;
        border: 1px #003aa8 solid;
        border-radius: 20px;
        margin: 0 0 0 70px;
        display: inline-block;
        font-size: 2rem;
        font-weight: 500;
        color: #003aa8; }
        @media all and (max-width: 960px) {
          .interview ul li p {
            font-size: 1.4rem; } }
        .interview ul li p:before {
          content: "";
          position: absolute;
          background: #003aa8;
          width: 14px;
          height: 18px;
          clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
          top: 21px;
          left: -15px; }
          @media all and (max-width: 960px) {
            .interview ul li p:before {
              top: 16px; } }
        .interview ul li p:after {
          content: "";
          position: absolute;
          background: #fff;
          width: 14px;
          height: 18px;
          clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
          top: 21px;
          left: -13px; }
          @media all and (max-width: 960px) {
            .interview ul li p:after {
              top: 16px; } }
        .interview ul li p .note {
          display: block;
          margin-top: 10px;
          font-size: 1.4rem;
          font-weight: normal; }
      .interview ul li.a {
        text-align: right; }
        .interview ul li.a:before {
          background: url("../images/people/p1-icon.png") no-repeat right center;
          background-size: contain;
          left: auto;
          right: 0px; }
          .people02 .interview ul li.a:before {
            background: url("../images/people/p2-icon.png") no-repeat right center;
            background-size: contain; }
          .people03 .interview ul li.a:before {
            background: url("../images/people/p3-icon.png") no-repeat right center;
            background-size: contain; }
          .people04 .interview ul li.a:before {
            background: url("../images/people/p4-icon.png") no-repeat right center;
            background-size: contain; }
        .interview ul li.a p {
          margin: 0 70px 0 0;
          padding: 20px 25px;
          text-align: left;
          font-size: 1.6rem;
          font-weight: 500;
          color: #000; }
          @media all and (max-width: 960px) {
            .interview ul li.a p {
              font-size: 1.4rem; } }
          .interview ul li.a p:before {
            clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
            left: auto;
            right: -15px; }
          .interview ul li.a p:after {
            clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
            left: auto;
            right: -13px; }
    .interview ul img {
      display: block;
      border-radius: 20px;
      margin: 50px auto; }
      @media all and (max-width: 960px) {
        .interview ul img {
          margin: 30px auto; } }
      .interview ul img.small {
        width: 600px;
        max-width: 100%; }

.tostudent {
  background: #237ea5;
  color: #fff; }
  .tostudent h2 {
    font-size: 2.6rem;
    background: url("../images/people/h_tostudent.svg") no-repeat center bottom;
    padding-bottom: 20px;
    margin-bottom: 50px; }
    @media all and (max-width: 960px) {
      .tostudent h2 {
        font-size: 2.2rem;
        background-size: 200px auto; } }
  .tostudent p {
    text-align: left; }
  .tostudent img {
    display: block;
    border-radius: 20px;
    margin: 50px auto; }

#schedule {
  border-top: 1px #ccc solid; }

.scheduleday h2, .scheduleoff h2 {
  margin: 0px auto 60px; }
  @media all and (max-width: 960px) {
    .scheduleday h2, .scheduleoff h2 {
      margin: 0px auto 30px; } }
  .scheduleday h2 img, .scheduleoff h2 img {
    display: block;
    margin: 0 auto 10px; }

.scheduleday .container {
  max-width: 700px;
  margin: auto; }
.scheduleday ul {
  list-style: none; }
  .scheduleday ul li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px; }
  .scheduleday ul .time {
    background: #237ea5;
    font-weight: 500;
    line-height: 1;
    padding: 5px;
    color: #fff;
    width: 70px;
    border-radius: 50px; }
    @media all and (max-width: 960px) {
      .scheduleday ul .time {
        width: 55px; } }
  .scheduleday ul .txt {
    width: calc( 100% - 100px);
    text-align: left; }
    @media all and (max-width: 960px) {
      .scheduleday ul .txt {
        width: calc( 100% - 80px); } }
    .scheduleday ul .txt > div {
      display: inline-block;
      border: 1px #237ea5 solid;
      border-radius: 10px;
      font-size: 1.5rem;
      color: #237ea5;
      padding: 5px 15px;
      margin: 10px 0 0;
      position: relative; }
      @media all and (max-width: 960px) {
        .scheduleday ul .txt > div {
          font-size: 1.4rem; } }
      .scheduleday ul .txt > div:before {
        content: "";
        position: absolute;
        background: #003aa8;
        width: 12px;
        height: 10px;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        top: -10px;
        left: 20px; }
      .scheduleday ul .txt > div:after {
        content: "";
        position: absolute;
        background: #fff;
        width: 12px;
        height: 10px;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        top: -8px;
        left: 20px; }
    .scheduleday ul .txt p {
      margin-bottom: 5px; }
      .scheduleday ul .txt p:first-child {
        font-weight: 500; }
      .scheduleday ul .txt p .note {
        display: block;
        margin-top: 10px;
        font-size: 1.4rem; }
  .scheduleday ul img {
    display: block;
    border-radius: 20px;
    margin: 40px auto; }
    @media all and (max-width: 960px) {
      .scheduleday ul img {
        margin: 20px auto; } }

.scheduleoff {
  margin: 0 15px; }
  .scheduleoff .container {
    border: 1px #000 solid;
    border-radius: 20px;
    max-width: 840px;
    padding-top: 30px;
    padding-bottom: 0; }
  .scheduleoff h2 {
    margin: 0px auto 20px; }
    @media all and (max-width: 960px) {
      .scheduleoff h2 {
        margin: 0px auto 20px; } }
  .scheduleoff h2 + p {
    max-width: 680px;
    margin: 0  auto -30px;
    text-align: left; }
  .scheduleoff .slick {
    list-style: none;
    max-width: 600px;
    margin: auto; }
    @media all and (max-width: 960px) {
      .scheduleoff .slick {
        padding: 0 0 30px; } }
    .scheduleoff .slick .slick-prev, .scheduleoff .slick .slick-next {
      z-index: 1;
      left: 0px; }
    .scheduleoff .slick .slick-prev {
      left: -2px;
      z-index: 100; }
    .scheduleoff .slick .slick-next {
      left: auto;
      right: 0px;
      z-index: 100; }
    .scheduleoff .slick .slick-prev:before, .scheduleoff .slick .slick-next:before {
      content: "";
      display: block;
      width: 18px;
      height: 18px;
      border-left: 4px solid #237ea5;
      border-bottom: 4px solid #237ea5;
      transform: rotate(45deg);
      opacity: 1; }
    .scheduleoff .slick .slick-next:before {
      transform: rotate(-135deg); }
    .scheduleoff .slick .slick-dots {
      bottom: 0px; }
    .scheduleoff .slick li figure {
      max-width: 430px;
      margin: auto;
      text-align: left;
      padding: 50px; }
      @media all and (max-width: 960px) {
        .scheduleoff .slick li figure {
          padding: 50px 20px;
          padding-bottom: 0;
          margin: 0 auto; } }
    .scheduleoff .slick li img {
      display: block;
      border-radius: 20px;
      margin: auto; }
    .scheduleoff .slick li figcaption {
      margin: 10px 0 0; }

.peoplenav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 20px; }
  @media all and (max-width: 960px) {
    .peoplenav ul {
      margin-bottom: 0px; } }
  .peoplenav ul li {
    width: calc( ( 100% - 36px ) / 3 );
    margin-bottom: 20px; }
    @media all and (max-width: 960px) {
      .peoplenav ul li {
        width: calc( ( 100% - 20px ) / 3 );
        font-size: 1.4rem; } }
    @media all and (max-width: 520px) {
      .peoplenav ul li {
        width: 100%; } }
    .peoplenav ul li a {
      display: block;
      color: #000;
      transition: all .2s ease-in-out; }
      @media all and (max-width: 960px) {
        .peoplenav ul li a {
          font-size: 1.4rem; } }
      .peoplenav ul li a:hover {
        opacity: 0.5; }

.flow1 .container, .flow2 .container, .flow3 .container, .flow4 .container {
  padding: 50px 15px 0; }

.flow1 section > table {
  display: block; }
  .flow1 section > table > tbody > tr {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative; }
    .flow1 section > table > tbody > tr:last-child {
      margin-bottom: 0; }
    .flow1 section > table > tbody > tr:before {
      content: "";
      position: absolute;
      background: #f00;
      width: 16px;
      height: 12px;
      clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
      z-index: 1;
      bottom: -21px;
      left: calc( 50% - 8px ); }
    .flow1 section > table > tbody > tr:last-of-type:before {
      content: none; }
    .flow1 section > table > tbody > tr:first-child > th {
      font-size: 2.6rem;
      font-weight: 600;
      padding: 5px 10px; }
    .flow1 section > table > tbody > tr:nth-last-child(2) {
      margin-bottom: 0px; }
      .flow1 section > table > tbody > tr:nth-last-child(2):before {
        content: none; }
      .flow1 section > table > tbody > tr:nth-last-child(2) > th {
        border-radius: 20px 0 0 0;
        border-bottom: 1px #fff solid; }
        @media all and (max-width: 960px) {
          .flow1 section > table > tbody > tr:nth-last-child(2) > th {
            border-radius: 20px 20px 0 0;
            border-bottom: 2px #237ea5 solid; } }
      .flow1 section > table > tbody > tr:nth-last-child(2) > td {
        border-radius: 0 20px 0 0;
        border-bottom-width: 1px; }
        @media all and (max-width: 960px) {
          .flow1 section > table > tbody > tr:nth-last-child(2) > td {
            border-radius: 0;
            border-bottom-width: 2px; } }
    .flow1 section > table > tbody > tr:last-child > th {
      border-radius: 0 0 0 20px;
      border-top: 1px #fff solid;
      font-size: 1.8rem;
      font-weight: 600;
      padding: 10px 0px; }
      .flow1 section > table > tbody > tr:last-child > th p {
        line-height: 1.6; }
      @media all and (max-width: 960px) {
        .flow1 section > table > tbody > tr:last-child > th {
          border-radius: 0;
          border-top: 2px #237ea5 solid;
          font-size: 1.7rem;
          padding: 10px 5px; } }
    .flow1 section > table > tbody > tr:last-child > td {
      border-radius: 0 0 20px 0;
      border-top-width: 1px; }
      @media all and (max-width: 960px) {
        .flow1 section > table > tbody > tr:last-child > td {
          border-radius: 0 0 20px 20px;
          border-top-width: 2px; } }
    .flow1 section > table > tbody > tr th {
      width: 200px;
      box-sizing: border-box;
      background: #237ea5;
      color: #fff;
      border: 2px #237ea5 solid;
      border-right: 0;
      border-radius: 20px  0 0 20px;
      position: relative; }
      @media all and (max-width: 960px) {
        .flow1 section > table > tbody > tr th {
          width: 100%;
          border-radius: 20px 20px 0 0; } }
      .flow1 section > table > tbody > tr th p {
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        line-height: 1.4; }
        @media all and (max-width: 960px) {
          .flow1 section > table > tbody > tr th p {
            position: static;
            transform: translateY(0); } }
      .flow1 section > table > tbody > tr th span {
        display: block; }
        @media all and (max-width: 960px) {
          .flow1 section > table > tbody > tr th span {
            display: inline-block;
            margin-right: 5px; } }
        .flow1 section > table > tbody > tr th span strong {
          font-size: 3.6rem;
          font-style: italic;
          font-weight: 600; }
    .flow1 section > table > tbody > tr td {
      width: calc( 100% - 200px);
      box-sizing: border-box;
      border: 2px #237ea5 solid;
      border-radius: 0 20px 20px 0;
      text-align: left;
      padding: 20px;
      position: relative; }
      @media all and (max-width: 960px) {
        .flow1 section > table > tbody > tr td {
          width: 100%;
          border-radius: 0 0 20px 20px; }
          .flow1 section > table > tbody > tr td p.addp {
            margin-top: 15px; } }
      .flow1 section > table > tbody > tr td p:not(:last-child) {
        margin-bottom: 15px; }
  .flow1 section > table ul {
    list-style: none;
    display: flex;
    width: 50%; }
    @media all and (max-width: 960px) {
      .flow1 section > table ul {
        width: 100%;
        justify-content: space-between;
        margin: 10px auto 0; } }
    .flow1 section > table ul li {
      margin: 0 0 10px 10px; }
      @media all and (max-width: 960px) {
        .flow1 section > table ul li {
          margin: 0;
          width: calc( ( 100% - 10px ) / 2 ); } }
      .flow1 section > table ul li img {
        display: block;
        margin: auto;
        border-radius: 20px; }
    .flow1 section > table ul.pbubble {
      position: relative; }
      @media all and (max-width: 960px) {
        .flow1 section > table ul.pbubble {
          margin-top: 80px; } }
      .flow1 section > table ul.pbubble:before {
        content: "";
        position: absolute;
        background: url("../images/flow/flow1-p5comment.png") no-repeat top center;
        background-size: contain;
        width: 300px;
        height: 100px;
        z-index: 1;
        top: -80px;
        right: -45px; }
        @media all and (max-width: 960px) {
          .flow1 section > table ul.pbubble:before {
            top: -65px;
            right: -20px;
            width: 280px;
            height: 80px; } }
      .flow1 section > table ul.pbubble.pbubble5:before {
        background: url("../images/flow/flow1-p4comment.png") no-repeat top center;
        background-size: contain; }
  .flow1 section > table div {
    display: flex; }
    @media all and (max-width: 960px) {
      .flow1 section > table div {
        display: block; } }
    .flow1 section > table div p {
      width: 50%; }
      @media all and (max-width: 960px) {
        .flow1 section > table div p {
          width: 100%; } }
  .flow1 section > table table {
    display: table;
    border-collapse: collapse;
    width: 100%;
    margin-top: 15px; }
    .flow1 section > table table tr {
      display: table-row;
      margin-bottom: 0px;
      border-top: 1px #ccc solid; }
      .flow1 section > table table tr:before {
        content: none; }
      .flow1 section > table table tr th {
        display: table-cell;
        background: none;
        color: #003aa8;
        border: none;
        border-radius: 0;
        text-align: center;
        vertical-align: middle;
        width: 150px; }
        @media all and (max-width: 960px) {
          .flow1 section > table table tr th {
            width: 70px;
            white-space: nowrap; } }
      .flow1 section > table table tr td {
        display: table-cell;
        background: none;
        border: none;
        border-radius: 0;
        width: calc( 100% - 150px ); }
        @media all and (max-width: 960px) {
          .flow1 section > table table tr td {
            width: calc( 100% - 70px );
            padding-right: 0; } }
        .flow1 section > table table tr td dt {
          font-weight: 600; }
          .flow1 section > table table tr td dt:before {
            content: "";
            display: inline-block;
            background: #1eb7cd;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 4px; }
        .flow1 section > table table tr td dd .note {
          display: block;
          margin-top: 10px;
          font-size: 1.4rem; }
  .flow1 section > table .builder {
    display: inline-block;
    background: #1eb7cd;
    color: #fff;
    border-radius: 50px;
    padding: 2px 20px;
    margin-bottom: 10px; }

.flow2 h2.home {
  margin-bottom: 0px; }
.flow2 .tabwrapper > p {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 50px; }
  @media all and (max-width: 960px) {
    .flow2 .tabwrapper > p {
      font-size: 1.4rem;
      text-align: left;
      margin-top: 50px; } }
.flow2 section {
  position: relative; }
  .flow2 section section {
    background: #e9f2f6;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px; }
    .flow2 section section:last-of-type {
      margin-bottom: 0; }
    @media all and (max-width: 960px) {
      .flow2 section section {
        padding: 15px; } }
    .flow2 section section .awrapper {
      display: none; }
    .flow2 section section .history {
      text-align: left;
      position: relative; }
      .flow2 section section .history:before {
        content: "";
        position: absolute;
        background: #003aa8;
        width: 3px;
        height: 100%;
        z-index: 0;
        top: 0;
        left: 40px; }
        @media all and (max-width: 960px) {
          .flow2 section section .history:before {
            content: none; } }
      .flow2 section section .history dt {
        background: #003aa8;
        border-radius: 50px;
        color: #fff;
        width: 220px;
        padding: 7px 25px;
        box-sizing: border-box;
        font-size: 1.6rem;
        position: relative;
        z-index: 1;
        line-height: 1; }
        @media all and (max-width: 960px) {
          .flow2 section section .history dt {
            width: 100%; } }
        .flow2 section section .history dt strong {
          font-size: 2rem;
          margin-right: 3px; }
      .flow2 section section .history dd {
        margin: 25px 0 50px 80px; }
        .flow2 section section .history dd::after {
          content: "";
          display: block;
          clear: both; }
        @media all and (max-width: 960px) {
          .flow2 section section .history dd {
            margin: 15px 0 30px 0px; } }
        .flow2 section section .history dd img {
          display: block;
          border-radius: 20px;
          width: 320px;
          max-width: 50%;
          margin: 0 0 20px 40px;
          float: right; }
          @media all and (max-width: 960px) {
            .flow2 section section .history dd img {
              width: 100%;
              max-width: 640px;
              float: none;
              margin: 0 auto 20px; } }
  .flow2 section .year {
    position: absolute;
    top: 10px;
    left: 10px;
    width: auto;
    z-index: 2; }
    @media all and (max-width: 960px) {
      .flow2 section .year {
        top: 5px;
        left: 5px; } }
  .flow2 section .prof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    margin-bottom: 40px;
    overflow: hidden; }
    .flow2 section .prof > div:nth-child(1) {
      width: 436px;
      position: relative; }
      @media all and (max-width: 960px) {
        .flow2 section .prof > div:nth-child(1) {
          width: 100%;
          max-height: 400px;
          overflow: hidden; } }
      .flow2 section .prof > div:nth-child(1) img {
        display: block;
        width: 100%; }
    .flow2 section .prof > div:nth-child(2) {
      width: calc( 100% - 436px );
      color: #000;
      text-align: left;
      padding-left: 30px;
      box-sizing: border-box; }
      @media all and (max-width: 960px) {
        .flow2 section .prof > div:nth-child(2) {
          width: 100%;
          padding: 20px 20px; } }
    .flow2 section .prof h3 {
      font-size: 2.2rem;
      margin: 0px auto 20px; }
      @media all and (max-width: 960px) {
        .flow2 section .prof h3 {
          margin: 0px auto 10px;
          font-size: 1.8rem; } }
    .flow2 section .prof dl {
      font-size: 1.8rem; }
      @media all and (max-width: 960px) {
        .flow2 section .prof dl {
          font-size: 1.4rem; } }
      .flow2 section .prof dl dt {
        color: #237ea5;
        font-weight: 500; }
      @media all and (max-width: 960px) {
        .flow2 section .prof dl dd br {
          display: none; } }
  .flow2 section .advice {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 20px;
    text-align: left;
    padding: 40px;
    align-items: center;
    margin-bottom: 40px; }
    @media all and (max-width: 960px) {
      .flow2 section .advice {
        padding: 30px; } }
    .flow2 section .advice h4 {
      width: 320px;
      margin-right: 35px; }
      @media all and (max-width: 960px) {
        .flow2 section .advice h4 {
          margin: 0 auto 30px;
          width: 100%; }
          .flow2 section .advice h4 img {
            width: 300px;
            max-width: 100%;
            display: block;
            margin: auto; } }
    .flow2 section .advice p {
      width: calc( 100% - 355px ); }
      @media all and (max-width: 960px) {
        .flow2 section .advice p {
          width: 100%; } }
  .flow2 section .abtn {
    margin: 20px auto 10px; }
    .flow2 section .abtn div {
      display: block;
      margin: auto;
      background: #fff;
      border-radius: 30px;
      font-size: 1.8rem;
      width: 280px;
      color: #000;
      position: relative;
      padding: 5px; }
      @media all and (max-width: 960px) {
        .flow2 section .abtn div {
          width: 200px;
          font-size: 1.4rem; } }
      .flow2 section .abtn div:before {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: #1eb7cd;
        transform: translateY(-50%) rotate(90deg);
        position: absolute;
        top: 50%;
        right: 20px;
        transition: all .2s ease-in-out; }
        @media all and (max-width: 960px) {
          .flow2 section .abtn div:before {
            width: 16px;
            right: 10px; } }
      .flow2 section .abtn div:after {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: #1eb7cd;
        transform: translateY(-50%) rotate(180deg);
        position: absolute;
        top: 50%;
        right: 20px;
        transition: all .2s ease-in-out; }
        @media all and (max-width: 960px) {
          .flow2 section .abtn div:after {
            width: 16px;
            right: 10px; } }
      .flow2 section .abtn div.close {
        display: block;
        display: none; }
        .flow2 section .abtn div.close:before {
          content: none; }

.flow3 section section {
  border: 2px #237ea5 solid;
  border-radius: 20px;
  overflow: hidden;
  padding: 35px;
  margin-bottom: 50px; }
  .flow3 section section:last-of-type {
    margin-bottom: 0; }
  @media all and (max-width: 960px) {
    .flow3 section section {
      padding: 35px 20px 20px; } }
  .flow3 section section h2 {
    width: 350px;
    margin: -35px 0 30px -35px;
    background: #237ea5;
    border-bottom-right-radius: 20px;
    font-size: 2.4rem;
    font-weight: 500;
    color: #fff;
    padding: 10px 10px;
    box-sizing: border-box; }
    @media all and (max-width: 960px) {
      .flow3 section section h2 {
        width: 220px;
        font-size: 2rem;
        margin-bottom: 20px;
        padding: 5px 10px; } }
  .flow3 section section p {
    text-align: left;
    margin-bottom: 30px; }
    .flow3 section section p .note {
      display: block;
      margin-top: 10px;
      font-size: 1.4rem; }
.flow3 section ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .flow3 section ul li {
    width: calc( ( 100% - 20px ) / 3 ); }
    @media all and (max-width: 960px) {
      .flow3 section ul li {
        width: 100%;
        margin-bottom: 20px; }
        .flow3 section ul li:last-child {
          margin-bottom: 0; } }
    .flow3 section ul li img {
      display: block;
      margin: auto;
      border-radius: 20px; }

.flow4 section section {
  border: 2px #ddd solid;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: left; }
  .flow4 section section:last-of-type {
    margin-bottom: 0; }
  @media all and (max-width: 960px) {
    .flow4 section section {
      padding: 20px; } }
  .flow4 section section > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 820px;
    margin: 0 auto 50px; }
    .flow4 section section > div > div:nth-child(1) {
      display: flex;
      align-items: center;
      width: 240px; }
      @media all and (max-width: 960px) {
        .flow4 section section > div > div:nth-child(1) {
          display: block;
          width: 100%;
          order: 2; } }
      .flow4 section section > div > div:nth-child(1) img {
        width: 200px;
        display: block;
        border-radius: 50%; }
        @media all and (max-width: 960px) {
          .flow4 section section > div > div:nth-child(1) img {
            margin: auto; } }
    .flow4 section section > div > div:nth-child(2) {
      width: calc( 100% - 320px );
      border-left: 1px #237ea5 solid;
      position: relative;
      margin: 0 0 0 20px;
      padding-left: 50px; }
      @media all and (max-width: 960px) {
        .flow4 section section > div > div:nth-child(2) {
          width: 100%;
          order: 1;
          border-left: none;
          border-bottom: 1px #237ea5 solid;
          max-width: 540px;
          padding-left: 0px;
          padding-bottom: 20px;
          margin: 0 0 30px; } }
      .flow4 section section > div > div:nth-child(2):before {
        content: "";
        position: absolute;
        background: #237ea5;
        width: 18px;
        height: 24px;
        clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
        z-index: 1;
        top: calc( 50% - 12px );
        left: -19px; }
        @media all and (max-width: 960px) {
          .flow4 section section > div > div:nth-child(2):before {
            width: 24px;
            height: 18px;
            clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
            top: auto;
            bottom: -18px;
            left: calc( 50% - 12px ); } }
      .flow4 section section > div > div:nth-child(2):after {
        content: "";
        position: absolute;
        background: #fff;
        width: 18px;
        height: 24px;
        clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
        z-index: 1;
        top: calc( 50% - 12px );
        left: -17px; }
        @media all and (max-width: 960px) {
          .flow4 section section > div > div:nth-child(2):after {
            width: 24px;
            height: 18px;
            clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
            top: auto;
            bottom: -17px;
            left: calc( 50% - 12px ); } }
    .flow4 section section > div h3 {
      color: #237ea5;
      font-size: 2.6rem;
      margin-bottom: 30px; }
      @media all and (max-width: 960px) {
        .flow4 section section > div h3 {
          font-size: 2rem; } }
    .flow4 section section > div dl dt {
      font-size: 2.2rem; }
      @media all and (max-width: 960px) {
        .flow4 section section > div dl dt {
          font-size: 1.8rem; } }
    .flow4 section section > div dl dd {
      font-size: 1.8rem; }
      @media all and (max-width: 960px) {
        .flow4 section section > div dl dd {
          font-size: 1.4rem; } }
.flow4 section p {
  margin-bottom: 30px; }
  .flow4 section p strong {
    background: #ffff00; }
.flow4 section ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .flow4 section ul li {
    width: calc( ( 100% - 20px ) / 3 ); }
    @media all and (max-width: 520px) {
      .flow4 section ul li {
        width: 100%;
        margin-bottom: 20px; }
        .flow4 section ul li:last-child {
          margin-bottom: 0; } }
    .flow4 section ul li img {
      display: block;
      border-radius: 20px; }

.env .contentsheader {
  background: url("../images/env/head.jpg") no-repeat center center;
  background-size: cover; }
.env ul.img {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
  margin: auto; }
  .env ul.img li {
    width: calc( ( 100% - 20px ) / 3 ); }
    .env ul.img li img {
      display: block;
      border-radius: 20px; }
    @media all and (max-width: 960px) {
      .env ul.img li {
        width: calc( ( 100% - 10px ) / 2 ); } }
  .env ul.img.item2 li {
    width: calc( ( 100% - 10px ) / 2 ); }
  .env ul.img.item4 li {
    width: calc( ( 100% - 30px ) / 4 ); }
    @media all and (max-width: 960px) {
      .env ul.img.item4 li {
        width: calc( ( 100% - 10px ) / 2 ); } }
.env .dorm {
  background: rgba(35, 126, 165, 0.15); }
  .env .dorm div {
    padding-bottom: 60px; }
    @media all and (max-width: 960px) {
      .env .dorm div {
        padding-bottom: 30px; } }
  .env .dorm p {
    margin-bottom: 25px;
    text-align: left; }
  .env .dorm ul.img.item2 {
    max-width: 630px; }
.env .system section {
  margin-bottom: 60px; }
  @media all and (max-width: 960px) {
    .env .system section {
      margin-bottom: 30px; } }
  .env .system section > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left; }
    .env .system section > div section {
      width: calc( ( 100% - 20px ) / 2 );
      border: 1.5px #237ea5 solid;
      border-radius: 20px;
      padding: 25px 30px;
      box-sizing: border-box;
      margin-bottom: 20px; }
      @media all and (max-width: 960px) {
        .env .system section > div section {
          width: 100%;
          padding: 20px 20px; } }
      .env .system section > div section h3 {
        color: #237ea5;
        font-size: 1.8rem;
        margin-bottom: 10px;
        padding-left: 19px;
        position: relative; }
        @media all and (max-width: 960px) {
          .env .system section > div section h3 {
            font-size: 1.6rem; } }
        .env .system section > div section h3:before {
          position: absolute;
          content: '';
          display: block;
          width: 14px;
          height: 14px;
          background: #237ea5;
          top: 9px;
          left: 0; }
          @media all and (max-width: 960px) {
            .env .system section > div section h3:before {
              width: 13px;
              height: 13px;
              top: 8px; } }
      .env .system section > div section ul {
        margin: 0 0 10px 1em; }
  .env .system section > section {
    text-align: left;
    border: 1.5px #237ea5 solid;
    border-radius: 20px;
    padding: 25px  30px;
    box-sizing: border-box;
    position: relative;
    margin-top: 30px; }
    @media all and (max-width: 960px) {
      .env .system section > section {
        margin-top: 0px;
        padding: 20px 20px; } }
    .env .system section > section > img {
      display: block;
      width: 114px;
      position: absolute;
      top: -30px;
      left: 10px;
      border-radius: 50%;
      border: 1.5px #237ea5 solid; }
      @media all and (max-width: 960px) {
        .env .system section > section > img {
          top: -10px;
          left: -10px;
          width: 80px; } }
    .env .system section > section h3 {
      text-align: center;
      color: #237ea5;
      margin: 10px auto 30px;
      font-size: 2rem; }
      @media all and (max-width: 960px) {
        .env .system section > section h3 {
          margin-bottom: 20px;
          font-size: 1.8rem; } }
    .env .system section > section p {
      margin-bottom: 20px; }

.gallery .container {
  padding-bottom: 0; }
.gallery .parent {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 18px; }
  @media all and (max-width: 960px) {
    .gallery .parent {
      gap: 5px;
      gap: calc( 18px / 1000px ); } }
  .gallery .parent > div img {
    display: block;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover; }
    @media all and (max-width: 960px) {
      .gallery .parent > div img {
        border-radius: 10px; } }
  .gallery .parent > div a {
    transition: all .2s ease-in-out; }
    .gallery .parent > div a:hover {
      opacity: 0.5; }
.gallery .div1 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2; }
.gallery .div2 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 3; }
.gallery .div3 {
  grid-column: span 4 / span 4;
  grid-row: span 2 / span 2;
  grid-column-start: 5; }
.gallery .div4 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-row-start: 3; }
.gallery .div5 {
  grid-column: span 3 / span 3;
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 3; }
.gallery .div6 {
  grid-row: span 2 / span 2;
  grid-column-start: 6;
  grid-row-start: 3; }
.gallery .div7 {
  grid-column: span 2 / span 2;
  grid-column-start: 7;
  grid-row-start: 3; }
.gallery .div8 {
  grid-column: span 2 / span 2;
  grid-column-start: 7;
  grid-row-start: 4; }
.gallery .div9 {
  grid-row: span 2 / span 2;
  grid-row-start: 5; }
.gallery .div10 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-row-start: 5; }
.gallery .div11 {
  grid-column: span 3 / span 3;
  grid-row: span 2 / span 2;
  grid-column-start: 4;
  grid-row-start: 5; }
.gallery .div12 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 7; }
.gallery .div13 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 7; }
.gallery .div14 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 5;
  grid-row-start: 7; }
.gallery .div15 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 7;
  grid-row-start: 7; }
.gallery .div16 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 7;
  grid-row-start: 5; }
.gallery .div17 {
  grid-column: span 3 / span 3;
  grid-row: span 2 / span 2;
  grid-row-start: 9; }
.gallery .div18 {
  grid-column: span 2 / span 2;
  grid-column-start: 4;
  grid-row-start: 9; }
.gallery .div19 {
  grid-column: span 2 / span 2;
  grid-column-start: 4;
  grid-row-start: 10; }
.gallery .div20 {
  grid-column: span 3 / span 3;
  grid-row: span 2 / span 2;
  grid-column-start: 6;
  grid-row-start: 9; }

.parents .lead .container {
  padding: 0 15px 50px; }

.pmessage {
  background: rgba(35, 126, 165, 0.08); }
  .pmessage section {
    max-width: 800px;
    margin: auto; }
    .pmessage section img {
      display: block;
      border-radius: 20px;
      max-width: 100%;
      margin: 0 auto 25px; }
    .pmessage section p {
      text-align: left; }
      .pmessage section p:last-child {
        font-weight: 500;
        margin-top: 25px;
        text-align: right; }

.support {
  padding: 60px 0;
  background: rgba(35, 126, 165, 0.15); }
  @media all and (max-width: 960px) {
    .support {
      padding: 0px 0 20px; } }
  .support section > section {
    position: relative;
    background: #fff;
    border: 13px #e3e5e8 solid;
    border-radius: 20px;
    margin-bottom: 45px;
    padding: 40px; }
    @media all and (max-width: 960px) {
      .support section > section {
        padding: 40px 20px; } }
  .support h2 {
    font-size: 3rem;
    margin-bottom: 80px; }
    .support h2 strong {
      font-size: 4.8rem;
      font-weight: 600;
      display: block; }
    @media all and (max-width: 960px) {
      .support h2 {
        font-size: 1.8rem;
        margin-bottom: 40px; }
        .support h2 strong {
          font-size: 1.9rem; } }
  .support h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #003aa8; }
    @media all and (max-width: 960px) {
      .support h3 {
        font-size: 1.9rem; } }
    .support h3:after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: #d9e1f0;
      margin: 20px auto 40px; }
    .support h3 img {
      display: block;
      position: absolute;
      top: -15px;
      left: 10px;
      width: 84px; }
      @media all and (max-width: 960px) {
        .support h3 img {
          width: 60px; } }
  .support .flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .support .flexbox > div:nth-child(1) {
      width: 310px; }
      @media all and (max-width: 960px) {
        .support .flexbox > div:nth-child(1) {
          width: 100%; } }
      .support .flexbox > div:nth-child(1) img {
        display: block;
        margin: 0 auto 20px;
        border-radius: 20px; }
        .support .flexbox > div:nth-child(1) img.bd {
          border: 1px #1eb7cd solid; }
    .support .flexbox > div:nth-child(2) {
      width: calc( 100% - 350px ); }
      @media all and (max-width: 960px) {
        .support .flexbox > div:nth-child(2) {
          width: 100%; } }
      .support .flexbox > div:nth-child(2) p {
        text-align: left;
        margin-bottom: 10px; }
    .support .flexbox .btn {
      width: 100%;
      font-size: 1.9rem;
      padding: 30px 10px;
      letter-spacing: 0.02em; }
      @media all and (max-width: 960px) {
        .support .flexbox .btn {
          font-size: 1.6rem;
          line-height: 1.6;
          margin: 20px auto 0; } }
      @media all and (max-width: 520px) {
        .support .flexbox .btn {
          padding: 15px 10px;
          font-size: 1.4rem; }
          .support .flexbox .btn span {
            display: none; } }

.lmessage {
  max-width: 800px;
  margin: auto; }
  .lmessage .container {
    padding-bottom: 0; }
  .lmessage .titlemessage {
    background: #237ea5;
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    border-radius: 70px;
    position: relative;
    padding: 20px 10px; }
    @media all and (max-width: 960px) {
      .lmessage .titlemessage {
        font-size: 2rem; } }
    .lmessage .titlemessage:before {
      content: "";
      position: absolute;
      background: #237ea5;
      width: 24px;
      height: 20px;
      clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
      z-index: 1;
      bottom: -20px;
      left: 120px; }
  .lmessage p {
    text-align: left;
    margin-bottom: 20px; }
    .lmessage p:last-child {
      font-weight: 500;
      margin-bottom: 0;
      text-align: right; }
  .lmessage strong {
    background: #ffff00; }
  .lmessage img {
    display: block;
    border-radius: 20px;
    margin: 30px auto; }

.information p.note {
  text-indent: -1.1em;
  margin: 5px 0 0 1em; }
  .information p.note:first-of-type {
    margin-top: 10px; }

.recruit {
  /*
  .tabnav{
  	margin: 50px auto 50px;
  	@include media(tablet) {
  		margin: 0px auto;
  	}
  }*/ }
  .recruit h2.home {
    margin-bottom: 100px; }
    @media all and (max-width: 960px) {
      .recruit h2.home {
        margin-bottom: 50px; } }
  .recruit .infonav {
    margin: 50px auto 80px; }
    @media all and (max-width: 960px) {
      .recruit .infonav {
        margin: 40px auto 40px; } }
    .recruit .infonav ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      .recruit .infonav ul li {
        width: calc(  ( 100% - 30px ) / 4  ); }
        @media all and (max-width: 960px) {
          .recruit .infonav ul li {
            width: calc(  ( 100% - 10px ) / 2  );
            margin-bottom: 10px; } }
        @media all and (max-width: 520px) {
          .recruit .infonav ul li {
            width: calc(  ( 100% - 5px ) / 2  ); } }
        .recruit .infonav ul li a {
          display: block;
          letter-spacing: 0;
          border: 1px #003aa8 solid;
          border-radius: 40px;
          padding: 15px 10px 15px 5px;
          box-sizing: border-box;
          line-height: 1;
          color: #003aa8;
          position: relative;
          transition: all .2s ease-in-out; }
          @media all and (max-width: 520px) {
            .recruit .infonav ul li a {
              font-size: 1.3rem;
              letter-spacing: -0.05em; } }
          .recruit .infonav ul li a:before {
            content: "";
            display: block;
            width: 8px;
            height: 8px;
            position: absolute;
            top: 16px;
            right: 12px;
            border-left: 1px solid #003aa8;
            border-bottom: 1px solid #003aa8;
            transform: rotate(-45deg);
            opacity: 1;
            transition: all .2s ease-in-out; }
            @media all and (max-width: 520px) {
              .recruit .infonav ul li a:before {
                width: 4px;
                height: 4px;
                top: 18px;
                right: 8px; } }
          .recruit .infonav ul li a:hover {
            background: #003aa8;
            color: #fff; }
            .recruit .infonav ul li a:hover:before {
              border-color: #fff; }
  .recruit section > section {
    margin-bottom: 100px; }
    @media all and (max-width: 960px) {
      .recruit section > section {
        margin-bottom: 50px; } }
  .recruit h3 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px; }
    @media all and (max-width: 960px) {
      .recruit h3 {
        font-size: 2rem;
        padding-left: 20px; } }
  .recruit h4 {
    text-align: left;
    color: #237ea5;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 22px;
    position: relative; }
    @media all and (max-width: 960px) {
      .recruit h4 {
        font-size: 1.7rem;
        padding-left: 20px; } }
    .recruit h4:before {
      position: absolute;
      content: '';
      display: block;
      width: 16px;
      height: 16px;
      background: #237ea5;
      top: 10px;
      left: 0; }
      @media all and (max-width: 960px) {
        .recruit h4:before {
          width: 13px;
          height: 13px;
          top: 9px; } }
  .recruit #d3 li, .recruit #e3 li {
    text-indent: -1.2em;
    margin: 5px 0 0 1.2em; }
    .recruit #d3 li span:nth-child(1), .recruit #e3 li span:nth-child(1) {
      margin-right: 3px; }
  .recruit table {
    width: 100%;
    margin: 0 auto 80px;
    border-collapse: collapse;
    text-align: left; }
    @media all and (max-width: 960px) {
      .recruit table {
        border-top: 1px #ccc solid; } }
    .recruit table th, .recruit table td {
      border: 1px #ccc solid;
      padding: 15px 0px 15px 15px;
      border-width: 1px 0; }
      @media all and (max-width: 960px) {
        .recruit table th, .recruit table td {
          display: block;
          padding: 10px 5px; } }
    .recruit table th {
      white-space: nowrap;
      width: 150px; }
      @media all and (max-width: 960px) {
        .recruit table th {
          width: 100%;
          border-bottom: none;
          border: none; } }
    @media all and (max-width: 960px) {
      .recruit table td {
        border-top: 1px #ccc dotted; } }
    .recruit table ul {
      list-style: none;
      margin: 10px 0 0; }
      .recruit table ul li {
        margin: 0 0 0 36px;
        text-indent: -36px; }
    .recruit table dl dt {
      margin-bottom: 5px;
      color: #237ea5;
      font-weight: 500; }
    .recruit table dl dd {
      margin: 0 0 15px 1em; }
      .recruit table dl dd:last-child {
        margin-bottom: 0; }
    .recruit table .mt10 {
      margin-top: 10px; }
    .recruit table .mb10 {
      margin-bottom: 10px; }
  .recruit .jobdetail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px; }
    .recruit .jobdetail > section {
      width: calc( 50% - 10px ); }
      .recruit .jobdetail > section h1 {
        margin-bottom: 5px;
        color: #237ea5;
        font-weight: 500; }
      .recruit .jobdetail > section img {
        display: block;
        border-radius: 20px;
        margin-bottom: 10px; }
  .recruit .contact {
    border: 2px #237ea5 solid;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-sizing: border-box;
    margin: 0 auto 100px;
    padding: 30px 0; }
    @media all and (max-width: 960px) {
      .recruit .contact {
        margin-bottom: 50px; } }
    .recruit .contact h4 {
      text-align: center;
      width: 220px;
      margin-bottom: 0;
      font-size: 2.4rem;
      padding: 0 10px 0 20px;
      box-sizing: border-box;
      font-weight: 500;
      line-height: 1; }
      .recruit .contact h4:before {
        content: none; }
      @media all and (max-width: 960px) {
        .recruit .contact h4 {
          width: 100%;
          padding: 0 10px 0 10px;
          margin-bottom: 15px;
          font-size: 2rem; } }
    .recruit .contact p {
      width: calc( 100% - 250px );
      box-sizing: border-box;
      text-align: left;
      font-size: 1.8rem;
      padding: 0 20px 0 40px;
      border-left: 1px #ccc solid; }
      @media all and (max-width: 960px) {
        .recruit .contact p {
          width: 100%;
          border: none;
          font-size: 1.4rem;
          padding: 0 20px 0 20px;
          letter-spacing: 0.02em; } }

.faq section {
  border-top: 1px #aaa solid;
  margin-bottom: 0 !important; }
  .faq section:last-child {
    border-bottom: 1px #aaa solid;
    margin-bottom: 100px; }
.faq h5 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 20px 45px 20px 5px;
  position: relative; }
  @media all and (max-width: 960px) {
    .faq h5 {
      font-size: 1.6rem;
      padding: 15px 35px 15px 5px; } }
  .faq h5:before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #1eb7cd;
    transform: translateY(-50%) rotate(90deg);
    position: absolute;
    top: 50%;
    right: 20px;
    transition: all .2s ease-in-out; }
  .faq h5:after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #1eb7cd;
    transform: translateY(-50%) rotate(180deg);
    position: absolute;
    top: 50%;
    right: 20px;
    transition: all .2s ease-in-out; }
  .faq h5:hover {
    background: rgba(35, 126, 165, 0.1);
    cursor: pointer; }
  .faq h5.open:before {
    transform: translateY(-50%) rotate(180deg); }
.faq dl {
  display: none;
  text-align: left;
  /*
  a[target="_blank"]{
  	background: url('../images/icon_blank_blue.svg') no-repeat right 4px center;
  	background-size: 14px auto;
  	padding-right: 22px;
  }*/ }
  .faq dl dt {
    border-top: 1px #aaa dashed;
    font-size: 1.8rem;
    padding: 20px 10px 20px 10px;
    position: relative; }
    @media all and (max-width: 960px) {
      .faq dl dt {
        font-size: 1.4rem;
        padding: 15px 5px 15px 5px; } }
    .faq dl dt > div {
      display: inline-block;
      vertical-align: middle; }
      .faq dl dt > div:nth-child(1) {
        border: 2px #003aa8 solid;
        border-radius: 50%;
        font-size: 2.6rem;
        line-height: 1;
        color: #003aa8;
        width: 40px;
        height: 40px;
        line-height: 1;
        margin: 0 10px 0 0;
        text-align: center;
        position: relative;
        box-sizing: border-box; }
        @media all and (max-width: 960px) {
          .faq dl dt > div:nth-child(1) {
            font-size: 2.2rem;
            width: 35px;
            height: 35px;
            margin-top: 4px; } }
        .faq dl dt > div:nth-child(1) span {
          display: block;
          width: 100%;
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%); }
      .faq dl dt > div:nth-child(2) {
        width: calc( 100% - 50px ); }
        @media all and (max-width: 960px) {
          .faq dl dt > div:nth-child(2) {
            width: calc( 100% - 50px ); } }
  .faq dl dd {
    padding: 10px 0 20px 10px; }
    @media all and (max-width: 960px) {
      .faq dl dd {
        padding: 5px 0 15px 5px; } }
    .faq dl dd > div {
      display: inline-block;
      vertical-align: top; }
      .faq dl dd > div:nth-child(1) {
        border: 2px #003aa8 solid;
        background: #003aa8;
        border-radius: 50%;
        font-size: 2.6rem;
        line-height: 1;
        color: #fff;
        width: 40px;
        height: 40px;
        line-height: 1;
        margin: 0 10px 0 0;
        box-sizing: border-box;
        text-align: center;
        position: relative; }
        @media all and (max-width: 960px) {
          .faq dl dd > div:nth-child(1) {
            font-size: 2.2rem;
            width: 35px;
            height: 35px;
            margin-top: 4px; } }
        .faq dl dd > div:nth-child(1) span {
          display: block;
          width: 100%;
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%); }
      .faq dl dd > div:nth-child(2) {
        width: calc( 100% - 50px );
        margin-top: 5px; }
        @media all and (max-width: 960px) {
          .faq dl dd > div:nth-child(2) {
            margin-top: 8px;
            width: calc( 100% - 50px ); } }
    .faq dl dd dl {
      display: block; }
      .faq dl dd dl dt {
        border: none;
        padding: 0;
        font-size: 1.6rem;
        margin: 10px 0 0; }
      .faq dl dd dl dd {
        padding: 0;
        margin-left: 0.5em; }
  .faq dl a {
    color: #237ea5;
    border-bottom: 1px #fff solid; }
    .faq dl a:hover {
      border-bottom: 1px #237ea5 solid; }
  .faq dl br + a {
    line-height: 2.5; }
