@charset "UTF-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
#container {
  position: relative;
}

#container .inner {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  #container .inner {
    width: 100%;
  }
}

header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}

header .header {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 70px;
}

header .header h1 a {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #fff;
  padding: 10px 20px;
  border-radius: 0 0 10px 0;
  display: inline-block;
}

header .header h1 a:hover {
  opacity: 0.7;
}

header .header h1 a img {
  width: 140px;
}

header .header .extend {
  height: 100%;
}

header .header .extend ul {
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding-right: 20px;
}

header .header .extend ul li {
  width: 150px;
  margin-left: 5px;
}

header .header .extend ul li a {
  display: block;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 45px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

header .header .extend ul li a:hover {
  opacity: 0.7;
}

header .header .extend ul li a.text-link {
  background: #00c388;
  color: #fff;
  border-radius: 0.5em;
}

@media screen and (max-width: 1440px) {
  header .header h1 {
    width: 14%;
  }
  header .header .extend {
    width: 22%;
  }
  header .header .extend ul li {
    width: 48%;
  }
  header .header .extend ul li a.text-link {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  header .header {
    height: 12vw;
  }
  header .header h1 {
    width: auto;
  }
  header .header h1 a {
    padding: 2vw 3vw;
  }
  header .header h1 a img {
    width: 25vw;
  }
  header .header .extend {
    padding-right: 18vw;
    width: auto;
  }
  header .header .extend ul li {
    width: 25vw;
  }
  header .header .extend ul li a {
    font-size: 2.5vw !important;
    height: 8vw;
  }
}

.arrow {
  display: inline-block;
  position: relative;
  padding-right: 2em;
}

.arrow:after {
  content: "";
  width: 1em;
  height: 1em;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%23f00' d='M488,320c-13.2,0-24,10.8-24,24v112c0,4.4-3.6,8-8,8H56c-4.4,0-8-3.6-8-8V56c0-4.4,3.6-8,8-8h112c13.2,0,24-10.8,24-24S181.2,0,168,0H56C25.1,0,0,25.1,0,56v400c0,30.9,25.1,56,56,56h400c30.9,0,56-25.1,56-56V344C512,330.8,501.2,320,488,320z M488,0H320c-13.2,0-24,10.8-24,24s10.8,24,24,24h110.1L183,295c-9.4,9.4-9.4,24.6,0,33.9c4.7,4.7,10.8,7,17,7s12.3-2.3,17-7l247-247V192c0,13.2,10.8,24,24,24s24-10.8,24-24V24C512,10.8,501.2,0,488,0z'/></svg>") center center/contain no-repeat;
  position: absolute;
  top: calc(50% - 0.6em);
  right: 0.5em;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.arrow:hover:after {
  right: 0.2em;
}

nav#gnav .gnav-inner {
  position: fixed;
  z-index: 8;
  top: 15px;
  width: 880px;
  margin: auto;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  left: calc(50% - 460px);
  padding: 0 20px;
  border-radius: 40px;
  z-index: 10;
}

nav#gnav .gnav-inner > ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

nav#gnav .gnav-inner > ul > li {
  position: relative;
}

nav#gnav .gnav-inner > ul > li > a {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 15px;
  padding: 10px 0.5em;
  white-space: nowrap;
  color: #000;
}

nav#gnav .gnav-inner > ul > li > a:hover {
  background: #3fa9f5;
  color: #fff;
}

nav#gnav .gnav-inner > ul > li:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #3fa9f5;
  position: absolute;
  right: -0.8em;
  top: calc(50% - 3px);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav#gnav .gnav-inner > ul > li:last-child:after {
  display: none;
}

nav#gnav .gnav-inner > ul > li .child {
  background: #fff;
  position: absolute;
  left: 0;
  top: 100%;
  width: auto;
  overflow: hidden;
  height: 0;
  display: none;
  padding: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

nav#gnav .gnav-inner > ul > li .child ul li {
  font-size: 14px;
}

nav#gnav .gnav-inner > ul > li .child ul li a {
  white-space: nowrap;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: inherit;
  display: block;
  padding: 0.5em;
}

nav#gnav .gnav-inner > ul > li .child ul li a:hover {
  background: #3fa9f5;
  color: #fff;
}

@media screen and (max-width: 1600px) {
  nav#gnav .gnav-inner {
    left: calc(50% - 460px - 80px);
  }
}

@media screen and (max-width: 1440px) {
  nav#gnav .gnav-inner {
    width: 60%;
    left: 180px;
  }
  nav#gnav .gnav-inner > ul li a {
    font-size: 13.5px;
  }
}

@media screen and (max-width: 768px) {
  nav#gnav {
    position: fixed;
    right: 0;
    top: 0;
    width: 0;
    height: 100vh;
    background: none;
    display: none;
  }
  nav#gnav .gnav-inner {
    width: 0;
    height: 100vh;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f1f1f1;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    margin-left: 0;
  }
  nav#gnav .gnav-inner > ul {
    width: 100vw;
  }
  nav#gnav .gnav-inner > ul > li .child {
    position: static;
  }
  nav#gnav.active .gnav-inner {
    width: 100vw;
    margin-left: -100vw;
  }
}

.hbg {
  display: none;
  z-index: 12;
  border-radius: 100px;
}

@media screen and (max-width: 768px) {
  .hbg {
    display: block;
    position: fixed;
    right: 2vw;
    top: 2vw;
    width: 13vw;
    height: 13vw;
    background: #fff;
  }
  .hbg span {
    background: #3fa9f5;
  }
}

nav#spnav {
  position: fixed;
  right: -100vw;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: #fff;
  padding-top: 16vw;
  display: none;
  -webkit-transition: 0.3s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: 0.3s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: 0.3s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

nav#spnav .gnav-inner {
  width: 100%;
  height: calc(100% - 16vw);
  overflow: auto;
  padding: 0 5% 5vw;
}

nav#spnav .gnav-inner > ul > li {
  padding-bottom: 2vw;
}

nav#spnav .gnav-inner > ul > li a {
  color: #000;
  font-size: 3.8vw;
  margin-bottom: 1.8vw;
  display: block;
}

nav#spnav .gnav-inner > ul > li > a:before {
  content: "";
  width: 2em;
  height: 0.5vw;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#3fa9f5), to(#00c388));
  background: -webkit-linear-gradient(left, #3fa9f5, #00c388);
  background: -o-linear-gradient(left, #3fa9f5, #00c388);
  background: linear-gradient(90deg, #3fa9f5, #00c388);
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0.3em;
}

nav#spnav .gnav-inner > ul > li .child ul {
  list-style: disc;
  padding-left: 3.5em;
}

@media screen and (max-width: 768px) {
  nav#spnav {
    display: block;
  }
  nav#spnav.on {
    right: 0;
  }
}

#bottom {
  background: #fff;
  position: relative;
  z-index: 2;
}

#bottom #pagetop {
  text-align: center;
  margin-bottom: 60px;
}

#bottom #pagetop a {
  display: block;
}

#bottom footer {
  background: #f5f5f5;
  position: relative;
  padding: 60px 0 0;
}

#bottom footer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#3fa9f5), to(#00c388));
  background: -webkit-linear-gradient(left, #3fa9f5, #00c388);
  background: -o-linear-gradient(left, #3fa9f5, #00c388);
  background: linear-gradient(90deg, #3fa9f5, #00c388);
}

#bottom footer h3 {
  text-align: center;
  margin-bottom: 60px;
}

#bottom footer h3 img {
  width: 580px;
}

#bottom footer #sitemap {
  width: 960px;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: auto;
  padding-bottom: 60px;
}

#bottom footer #sitemap > ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#bottom footer #sitemap > ul > li a {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  color: #000;
  font-weight: bold;
  margin-bottom: 1em;
  display: inline-block;
  font-size: 16px;
}

#bottom footer #sitemap > ul > li a:hover {
  color: #3fa9f5;
}

#bottom footer #sitemap > ul > li > a:before {
  content: "";
  width: 2em;
  height: 2px;
  display: inline-block;
  vertical-align: middle;
  background: -webkit-gradient(linear, left top, right top, from(#3fa9f5), to(#00c388));
  background: -webkit-linear-gradient(left, #3fa9f5, #00c388);
  background: -o-linear-gradient(left, #3fa9f5, #00c388);
  background: linear-gradient(90deg, #3fa9f5, #00c388);
  margin-right: 0.5em;
}

#bottom footer #sitemap > ul > li .child ul {
  font-size: 16px;
  list-style: disc;
  padding-left: 4em;
}

#bottom footer #sitemap > ul > li .banner {
  padding-top: 30px;
  padding-left: 40px;
}

#bottom footer #sitemap > ul > li .banner a img {
  width: 160px;
}

#bottom footer #sitemap > ul > li .text-link {
  padding-left: 40px;
}

#bottom footer #sitemap > ul > li .text-link a {
  background: #00c388;
  color: #fff;
  font-size: 16px;
  width: 160px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 45px;
  border-radius: 0.3em;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#bottom footer #sitemap > ul > li .text-link a:hover {
  opacity: 0.7;
}

#bottom footer #copyright {
  text-align: center;
  color: #fff;
  font-size: 16px;
  background: #014a9e;
  padding: 1em 0;
  position: relative;
}

#bottom footer #copyright a {
  display: inline-block;
  position: relative;
  padding-right: 2em;
  position: absolute;
  left: 1em;
  top: 0;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

#bottom footer #copyright a:after {
  content: "\e5e1";
  position: absolute;
  right: 0.5em;
  top: calc(50% - 0.5em);
  font-family: "Material Icons";
  color: inherit;
  font-size: inherit;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#bottom footer #copyright a:hover:after {
  right: 0.1em;
}

@media screen and (max-width: 768px) {
  #bottom #pagetop {
    margin-bottom: 10vw;
  }
  #bottom #pagetop img {
    width: 18vw;
  }
  #bottom footer {
    padding-top: 0;
  }
  #bottom footer:before {
    display: none;
  }
  #bottom footer h3 {
    display: none;
  }
  #bottom footer #sitemap {
    display: none;
  }
  #bottom footer #copyright {
    font-size: 3vw;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #bottom footer #copyright a {
    position: relative;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    margin-bottom: 1em;
  }
}

main {
  padding-top: 80px;
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 16vw;
  }
}

#kv-basic {
  margin-bottom: 80px;
}

#kv-basic .kv {
  height: 320px;
  background-position: center center;
  background-size: cover;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#kv-basic #lead p {
  width: 520px;
  background: #fff;
  padding: 1em;
  margin: auto;
  margin-top: -2em;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  #kv-basic {
    margin-bottom: 10vw;
  }
  #kv-basic .kv {
    height: 70vw;
  }
  #kv-basic .kv h2 img {
    height: 20vw;
  }
  #kv-basic #lead p {
    margin-top: -3em;
    width: calc(90% - 2em);
  }
}

section.basic {
  margin-bottom: 80px;
}

section.basic:last-child {
  margin-bottom: 0;
}

section.basic article {
  margin-bottom: 80px;
}

section.basic article h3.border {
  font-size: 30px;
  color: #3fa9f5;
  text-align: center;
  padding-bottom: 1em;
  margin-bottom: 1em;
  background: url(../images/h3-border.png) center bottom/4em no-repeat;
}

section.basic article h4.border {
  font-size: 20px;
  border-left: solid 3px #014a9e;
  height: 2em;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1em 0em 1em 1em;
  font-weight: 500;
  margin-bottom: 1em;
}

section.basic article p.h3 {
  width: 820px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  section.basic {
    margin-bottom: 20vw;
    width: 90%;
    margin: auto;
  }
  section.basic article {
    margin-bottom: 20vw;
  }
  section.basic article h3.border {
    font-size: 4.5vw;
  }
  section.basic article h4.border {
    font-size: 4vw;
  }
  section.basic article p.h3 {
    width: 100%;
  }
}

#nextcontents {
  width: 960px;
  margin: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../images/nextcontents/borer.png) center top/100% no-repeat;
}

#nextcontents h3 {
  width: 750px;
  margin: auto;
  position: relative;
  z-index: 2;
}

#nextcontents a {
  display: block;
  position: relative;
  width: 640px;
  margin: auto;
  margin-top: -20px;
}

#nextcontents a figure {
  overflow: hidden;
}

#nextcontents a figure img {
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#nextcontents a > div {
  width: 280px;
  height: 220px;
  position: absolute;
  right: -30px;
  bottom: -30px;
}

#nextcontents a > div .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#3fa9f5), to(#00c388));
  background: -webkit-linear-gradient(left, #3fa9f5, #00c388);
  background: -o-linear-gradient(left, #3fa9f5, #00c388);
  background: linear-gradient(90deg, #3fa9f5, #00c388);
  mix-blend-mode: multiply;
}

#nextcontents a > div h4 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 10px;
}

#nextcontents a > div h4 img {
  height: 90%;
}

#nextcontents a:hover figure img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  #nextcontents {
    width: 90%;
    padding: 15vw 0;
    background-size: 250vw;
  }
  #nextcontents h3 {
    width: 100%;
  }
  #nextcontents h3 img {
    width: 80%;
  }
  #nextcontents a {
    width: 100%;
    margin-top: -3vw;
  }
  #nextcontents a figure {
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 90%;
  }
  #nextcontents a figure img {
    width: 140vw;
    max-width: initial;
  }
  #nextcontents a > div {
    width: 60vw;
    height: 50vw;
    right: 0;
    bottom: -5vw;
  }
}

.top header .header .extend ul li:last-child {
  display: block;
}

.top main {
  padding-top: 0;
}

.top #kv .bg {
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
}

.top #kv .icon {
  width: 100%;
  height: calc(100vh - 80px);
  position: fixed;
  left: 0;
  top: 0;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  mix-blend-mode: multiply;
}

.top #kv .icon img {
  width: 820px;
}

.top #kv .kv {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.top #kv .kv h2 {
  text-align: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: calc(100vh - 80px);
}

.top #kv .kv nav#gnav .gnav-inner {
  position: absolute;
  top: calc(100vh - 80px);
  margin-bottom: 50px;
}

.top #kv .kv nav#gnav.fixed .gnav-inner {
  position: fixed;
  top: 15px;
}

.top #kv .kv .lead {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 70px;
}

.top #kv .kv .lead p {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  line-height: 3em;
  padding-top: 1em;
}

.top #kv .kv .lead p span {
  display: block;
  margin-bottom: 2.5em;
  line-height: 1em;
  opacity: 0;
  -webkit-transform: translateX(-1em);
  -ms-transform: translateX(-1em);
  transform: translateX(-1em);
  -webkit-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.top #kv .kv .lead p span.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@media screen and (max-width: 768px) {
  .top #kv .icon {
    height: 100vh;
  }
  .top #kv .icon img {
    width: 80%;
  }
  .top #kv .kv {
    padding-bottom: 0;
  }
  .top #kv .kv h2 {
    height: 100vh;
  }
  .top #kv .kv h2 img {
    width: 90%;
  }
  .top #kv .kv nav#gnav {
    display: none;
  }
  .top #kv .kv .lead {
    padding-top: 0;
    padding-bottom: 10vw;
  }
  .top #kv .kv .lead p {
    width: 90%;
    font-size: 4vw;
    margin: auto;
  }
}

.top .top-detail {
  background: #fff;
  position: relative;
  z-index: 2;
}

.top #news {
  width: 960px;
  margin: auto;
  padding-top: 60px;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top #news h3 {
  font-size: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  width: 40%;
  position: relative;
}

.top #news h3:after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background: -webkit-linear-gradient(315deg, #00D966, #00A6B9);
  background: -o-linear-gradient(315deg, #00D966, #00A6B9);
  background: linear-gradient(135deg, #00D966, #00A6B9);
  margin-top: 0.2em;
}

.top #news ul {
  width: 55%;
  border-top: dotted 1px #000;
  margin-top: 26px;
}

.top #news ul li {
  border-bottom: dotted 1px #000;
  padding: 20px 0;
}

.top #news ul li dl {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top #news ul li dl dt, .top #news ul li dl dd {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

.top #news ul li dl dt {
  width: 7em;
  color: #3fa9f5;
  font-weight: bold;
}

.top #news ul li dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.6em;
}

@media screen and (max-width: 768px) {
  .top #news {
    width: 90%;
    display: block;
    padding-top: 10vw;
  }
  .top #news h3 {
    width: 60%;
    font-size: 4vw;
  }
  .top #news ul {
    width: 100%;
  }
  .top #news ul li {
    padding: 5vw 0;
  }
  .top #news ul li dl dt, .top #news ul li dl dd {
    font-size: 3.5vw;
  }
  .top #news ul li dl dt {
    padding-top: 0.2em;
  }
  .top #news ul li dl dd {
    text-align: justify;
    text-align-last: left;
  }
}

.top #top-index {
  width: 1280px;
  margin: auto;
  padding: 100px 0;
}

.top #top-index h3 {
  text-align: center;
  margin-bottom: 60px;
}

.top #top-index ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  /* 3 列 */
  gap: 20px;
}

.top #top-index ul li a {
  display: block;
  overflow: hidden;
  position: relative;
}

.top #top-index ul li a .ceo {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 96%;
}

.top #top-index ul li a .ceo img {
  height: 100%;
}

.top #top-index ul li a > div .grad {
  background: -webkit-gradient(linear, left top, right top, from(#3fa9f5), to(#00c388));
  background: -webkit-linear-gradient(left, #3fa9f5, #00c388);
  background: -o-linear-gradient(left, #3fa9f5, #00c388);
  background: linear-gradient(90deg, #3fa9f5, #00c388);
  position: absolute;
  left: calc(50% - 145px);
  top: 3%;
  width: 290px;
  height: 94%;
  mix-blend-mode: multiply;
}

.top #top-index ul li a > div .detail {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: calc(50% - 122px);
}

.top #top-index ul li a > div .detail img {
  height: 186px;
}

@media screen and (max-width: 768px) {
  .top #top-index {
    padding: 15vw 0;
    width: 100%;
  }
  .top #top-index h3 {
    margin-bottom: 10vw;
  }
  .top #top-index h3 img {
    width: 50%;
  }
  .top #top-index ul {
    display: block;
  }
  .top #top-index ul li {
    width: 94%;
    margin: auto;
    margin-bottom: 2vw;
  }
  .top #top-index ul li a > div .grad {
    width: 50%;
    left: 25%;
  }
  .top #top-index ul li a > div .detail {
    padding-left: 28%;
  }
  .top #top-index ul li a > div .detail img {
    height: 85%;
  }
}

.message #kv {
  position: relative;
  margin-bottom: 80px;
}

.message #kv .bg {
  width: 100%;
  height: 440px;
  background: -webkit-gradient(linear, left top, right top, from(#3fa9f5), to(#00c388));
  background: -webkit-linear-gradient(left, #3fa9f5, #00c388);
  background: -o-linear-gradient(left, #3fa9f5, #00c388);
  background: linear-gradient(90deg, #3fa9f5, #00c388);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.1;
}

.message #kv figure {
  width: 1280px;
  text-align: right;
  display: block;
  position: relative;
  z-index: 1;
  margin: auto;
}

.message #kv figure img {
  width: 960px;
}

.message #kv #lead {
  width: 580px;
  position: absolute;
  left: calc(50% - 480px);
  top: 100px;
  z-index: 2;
}

.message #kv #lead h2 {
  margin-bottom: 40px;
}

.message #kv #lead .lead h3 {
  font-size: 22px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#3fa9f5), to(#00c388));
  background: -webkit-linear-gradient(left, #3fa9f5, #00c388);
  background: -o-linear-gradient(left, #3fa9f5, #00c388);
  background: linear-gradient(90deg, #3fa9f5, #00c388);
  line-height: 1em;
  padding: 0.3em 0.2em;
  text-align: center;
  margin-bottom: 0.2em;
}

.message #kv #lead .lead p {
  background: rgba(255, 255, 255, 0.8);
  padding: 1em;
  line-height: 2.5em;
}

@media screen and (max-width: 768px) {
  .message #kv {
    margin-bottom: 10vw;
  }
  .message #kv .bg {
    height: 65vw;
  }
  .message #kv figure {
    width: 100%;
  }
  .message #kv figure img {
    width: 100%;
    margin-right: -10%;
  }
  .message #kv #lead {
    position: relative;
    width: 90%;
    margin-left: 5%;
    margin-top: -30vw;
    left: 0;
    top: 0;
  }
  .message #kv #lead h2 {
    margin-bottom: 5vw;
  }
  .message #kv #lead h2 img {
    width: 40vw;
  }
  .message #kv #lead .lead h3 {
    font-size: 3.5vw;
    line-height: 1.5em;
  }
  .message #kv #lead .lead p {
    line-height: 1.8em;
  }
}

.message section {
  padding-bottom: 1px;
  margin-bottom: 80px;
}

.message section figure {
  margin: auto;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 80px;
  width: 960px;
}

.message section figure img {
  width: 25%;
}

.message section .name {
  width: 860px;
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .message section {
    margin-bottom: 10vw;
  }
  .message section figure {
    width: 90%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .message section figure img {
    width: 50%;
  }
  .message section .name {
    width: 90%;
    font-size: 3.4vw;
  }
  .message section .name img {
    width: 30vw;
  }
}

.about #subnav {
  width: 960px;
  margin: auto;
  margin-bottom: 80px;
}

.about #subnav ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.about #subnav ul li {
  width: 24%;
}

.about #subnav ul li a {
  display: block;
  overflow: hidden;
}

.about #subnav ul li a img {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.about #subnav ul li a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.about #subnav ul li a figure {
  display: block;
  overflow: hidden;
}

.about #subnav ul li a span {
  display: block;
  text-align: center;
  color: #000;
  padding-top: 0.7em;
  font-size: 15px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .about #subnav {
    width: 90%;
    margin-bottom: 10vw;
  }
  .about #subnav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about #subnav ul li {
    width: 48%;
    margin-bottom: 5vw;
  }
  .about #subnav ul li a span {
    font-size: 3vw;
  }
}

.about article {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .about article {
    margin-bottom: 10vw;
  }
}

.about #philosophy .philosophy {
  padding-top: 80px;
  background: url(../../images/about/philosophy-bg.png) center top 100px/100% 660px no-repeat;
}

.about #philosophy .philosophy ul {
  width: 820px;
  margin: auto;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about #philosophy .philosophy ul li {
  width: 45%;
  position: relative;
  margin-bottom: 60px;
}

.about #philosophy .philosophy ul li .num {
  position: absolute;
  left: 20px;
  top: 30px;
  z-index: 1;
}

.about #philosophy .philosophy ul li figure {
  -webkit-transform: skewY(-6deg);
  -ms-transform: skewY(-6deg);
  transform: skewY(-6deg);
  overflow: hidden;
  height: 240px;
}

.about #philosophy .philosophy ul li figure span {
  display: block;
  -webkit-transform: skewY(6deg);
  -ms-transform: skewY(6deg);
  transform: skewY(6deg);
  margin-top: -20px;
}

.about #philosophy .philosophy ul li h3 {
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 3em;
  font-size: 20px;
  margin-bottom: 1em;
}

.about #philosophy .philosophy ul li h3 span {
  display: block;
  padding-top: 0.5em;
  font-size: inherit;
  color: #3fa9f5;
  line-height: 1.6em;
  font-weight: 500;
}

.about #philosophy .philosophy ul li p {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .about #philosophy .philosophy {
    padding-top: 10vw;
  }
  .about #philosophy .philosophy ul {
    width: 90%;
    display: block;
  }
  .about #philosophy .philosophy ul li {
    width: 100%;
    margin-bottom: 10vw;
  }
  .about #philosophy .philosophy ul li .num {
    left: 5vw;
    top: 5vw;
  }
  .about #philosophy .philosophy ul li .num img {
    height: 15vw;
  }
  .about #philosophy .philosophy ul li figure {
    height: 45vw;
  }
  .about #philosophy .philosophy ul li figure span {
    margin-top: -8vw;
  }
  .about #philosophy .philosophy ul li h3 {
    font-size: 5vw;
  }
}

.about #field #field-nav {
  width: 960px;
  margin: auto;
  padding-top: 20px;
  margin-bottom: 60px;
}

.about #field #field-nav ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.about #field #field-nav ul li {
  width: 25%;
}

.about #field #field-nav ul li a {
  overflow: hidden;
  position: relative;
}

.about #field #field-nav ul li a img {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.about #field #field-nav ul li a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.about #field #field-nav ul li a figure {
  overflow: hidden;
}

.about #field #field-nav ul li a p {
  font-size: 14px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.about #field #field-nav ul li a p:before {
  content: "";
  width: 100%;
  height: 2em;
  background: #014a9e;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  mix-blend-mode: multiply;
}

.about #field #field-nav ul li a p span {
  font-size: inherit;
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-weight: bold;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
  height: 2em;
}

.about #field .field {
  margin: auto;
  position: relative;
  padding: 40px 0;
}

.about #field .field .field-inner {
  width: 960px;
  margin: auto;
  position: relative;
}

.about #field .field .block {
  position: relative;
  z-index: 2;
  width: 60%;
}

.about #field .field .block p {
  background: #f5f5f5;
  padding: 1em;
  width: calc(100% - 2em);
}

.about #field .field figure {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
}

.about #field .field:nth-of-type(odd) {
  background: #eef5f5;
}

.about #field .field:nth-of-type(odd) .block p {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .about #field #field-nav {
    width: 90%;
    padding-top: 5vw;
    margin-bottom: 5vw;
  }
  .about #field #field-nav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about #field #field-nav ul li {
    width: 50%;
  }
  .about #field #field-nav ul li a p {
    font-size: 3.2vw;
  }
  .about #field .field {
    padding: 5vw 0;
  }
  .about #field .field .field-inner {
    width: 90%;
  }
  .about #field .field .field-inner .block {
    width: 100%;
  }
  .about #field .field .field-inner figure {
    position: static;
    width: 100%;
  }
}

.about #keywords h3.border {
  margin-bottom: 80px;
}

.about #keywords .note {
  width: 960px;
  margin: auto;
  margin-bottom: 2em;
  font-size: 14px;
}

.about #keywords .keyword-index {
  width: 960px;
  margin: auto;
}

.about #keywords .keyword-index ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about #keywords .keyword-index ul li {
  width: 31%;
  margin-bottom: 40px;
}

.about #keywords .keyword-index ul li:nth-child(3n+2) {
  margin-top: -21px;
}

.about #keywords .keyword-index ul li:nth-child(3n) {
  margin-top: -42px;
}

.about #keywords .keyword-index ul li a {
  width: 100%;
  display: block;
  position: relative;
}

.about #keywords .keyword-index ul li a ins {
  background: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 95%;
  text-align: right;
}

.about #keywords .keyword-index ul li a figure {
  -webkit-transform: skewY(-4deg);
  -ms-transform: skewY(-4deg);
  transform: skewY(-4deg);
  overflow: hidden;
}

.about #keywords .keyword-index ul li a figure span {
  -webkit-transform: skewY(4deg) scale(1.1);
  -ms-transform: skewY(4deg) scale(1.1);
  transform: skewY(4deg) scale(1.1);
  height: 200px;
  display: block;
  background-position: center center;
  background-size: cover;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.about #keywords .keyword-index ul li a figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #3fa9f5;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.about #keywords .keyword-index ul li a h4 {
  position: absolute;
  left: 1em;
  bottom: 1em;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4em;
}

.about #keywords .keyword-index ul li a:hover figure span {
  -webkit-transform: skewY(4deg) scale(1.2);
  -ms-transform: skewY(4deg) scale(1.2);
  transform: skewY(4deg) scale(1.2);
}

.about #keywords .keyword-index ul li .detail {
  display: none;
}

@media screen and (max-width: 768px) {
  .about #keywords h3.border {
    margin-bottom: 10vw;
  }
  .about #keywords .note {
    font-size: 3.3vw;
  }
  .about #keywords .keyword-index {
    width: 100%;
  }
  .about #keywords .keyword-index ul li {
    width: 100%;
    margin-bottom: 4vw;
    margin-top: 0 !important;
  }
  .about #keywords .keyword-index ul li a ins img {
    height: 15vw;
  }
  .about #keywords .keyword-index ul li a figure span {
    height: 45vw;
  }
  .about #keywords .keyword-index ul li a h4 {
    font-size: 5vw;
  }
}

.about #more .more {
  width: 960px;
  margin: auto;
  margin-bottom: 50px;
}

.about #more .more h4 {
  background: url(../../images/about/point.svg) left center no-repeat;
  height: 2em;
  font-size: 20px;
  font-weight: 500;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 2em;
  margin-bottom: 1em;
}

.about #more .more h4 a {
  color: #000;
}

.about #more .more h4 a:hover {
  color: #3fa9f5;
}

.about #more .more ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px;
}

.about #more .more ul li a {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: solid 1px #000;
  height: 4em;
  font-size: 18px;
  color: #000;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  position: relative;
  line-height: 1.4em;
  font-weight: bold;
}

.about #more .more ul li a:after {
  content: "";
  width: 1.4em;
  height: 1.4em;
  display: block;
  position: absolute;
  right: 0.4em;
  top: calc(50% - 0.5em);
  background: url(../../images/about/more.svg) center center/contain no-repeat;
}

.about #more .more ul li a:hover {
  background-color: #f5f5f5;
}

.about #more .more ul li:nth-child(-n + 3) a {
  border-top: solid 1px #000;
}

@media screen and (max-width: 768px) {
  .about #more .more {
    margin-bottom: 5vw;
    width: 90%;
  }
  .about #more .more h4 {
    font-size: 4vw;
    background-size: 1.5em;
  }
  .about #more .more ul {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .about #more .more ul li a {
    border-top: 0 !important;
    font-size: 3.5vw;
  }
  .about #more .more ul li:first-child {
    border-top: solid 1px #000 !important;
  }
}

#modal.modal-keyword #modal_inner {
  background: none;
  position: static;
}

@media screen and (max-width: 768px) {
  #modal.modal-keyword #modal_inner {
    padding: 0;
    max-width: 90%;
  }
}

#modal.modal-keyword #modal_inner #modal_container {
  overflow: visible;
}

#modal.modal-keyword #modal_inner #modal_container .keyword {
  width: 820px;
  height: 500px;
  margin: auto;
  position: relative;
}

#modal.modal-keyword #modal_inner #modal_container .keyword figure {
  height: 100%;
  -webkit-transform: skewY(-4deg);
  -ms-transform: skewY(-4deg);
  transform: skewY(-4deg);
  position: relative;
}

#modal.modal-keyword #modal_inner #modal_container .keyword figure span {
  display: block;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

#modal.modal-keyword #modal_inner #modal_container .keyword figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #014a9e;
  mix-blend-mode: multiply;
}

#modal.modal-keyword #modal_inner #modal_container .keyword .detail {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 80%;
  left: 10%;
}

#modal.modal-keyword #modal_inner #modal_container .keyword .detail ins {
  background: none;
}

#modal.modal-keyword #modal_inner #modal_container .keyword .detail h4 {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1em;
}

#modal.modal-keyword #modal_inner #modal_container .keyword .detail p {
  font-weight: bold;
  color: #fff;
}

#modal.modal-keyword #modal_inner #modal_container .keyword .detail p a {
  display: inline-block;
  background: #ef8b2d;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  white-space: nowrap;
  color: #fff;
  border-radius: 0.2em;
}

#modal.modal-keyword #modal_inner #modal_container .keyword .detail p a.blank {
  display: inline-block;
  position: relative;
  padding-right: 2em;
}

#modal.modal-keyword #modal_inner #modal_container .keyword .detail p a.blank:after {
  content: "";
  width: 1em;
  height: 1em;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%23ffffff' d='M488,320c-13.2,0-24,10.8-24,24v112c0,4.4-3.6,8-8,8H56c-4.4,0-8-3.6-8-8V56c0-4.4,3.6-8,8-8h112c13.2,0,24-10.8,24-24S181.2,0,168,0H56C25.1,0,0,25.1,0,56v400c0,30.9,25.1,56,56,56h400c30.9,0,56-25.1,56-56V344C512,330.8,501.2,320,488,320z M488,0H320c-13.2,0-24,10.8-24,24s10.8,24,24,24h110.1L183,295c-9.4,9.4-9.4,24.6,0,33.9c4.7,4.7,10.8,7,17,7s12.3-2.3,17-7l247-247V192c0,13.2,10.8,24,24,24s24-10.8,24-24V24C512,10.8,501.2,0,488,0z'/></svg>") center center/contain no-repeat;
  position: absolute;
  top: calc(50% - 0.6em);
  right: 0.5em;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#modal.modal-keyword #modal_inner #modal_container .keyword .detail p a.blank:hover:after {
  right: 0.2em;
}

@media screen and (max-width: 768px) {
  #modal.modal-keyword #modal_inner #modal_container .keyword {
    width: 90vw;
    height: 85vh;
  }
  #modal.modal-keyword #modal_inner #modal_container .keyword .detail ins img {
    height: 15vw;
  }
  #modal.modal-keyword #modal_inner #modal_container .keyword .detail h4 {
    font-size: 4.5vw;
  }
  #modal.modal-keyword #modal_inner #modal_container .keyword .detail p {
    font-size: 3.5vw;
  }
}

#modal.modal-keyword #modal_inner #modal_close {
  background: #fff;
  width: 50px;
  height: 50px;
  right: 20px;
  top: 20px;
  border-radius: 100px;
}

#modal.modal-keyword #modal_inner #modal_close:before, #modal.modal-keyword #modal_inner #modal_close:after {
  background: #3fa9f5;
  width: 50%;
  left: 25%;
}

@media screen and (max-width: 768px) {
  #modal.modal-keyword #modal_inner #modal_close {
    width: 15vw;
    height: 15vw;
    right: 3vw;
    top: 3vw;
  }
}

.interview-index #interview-index {
  width: 960px;
  margin: auto;
  margin-bottom: 180px;
}

.interview-index #interview-index ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.interview-index #interview-index ul li {
  width: 50%;
  margin-top: -30px;
}

.interview-index #interview-index ul li a {
  width: 380px;
  height: 380px;
  display: block;
  position: relative;
}

.interview-index #interview-index ul li a .bg {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: auto 100%;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.interview-index #interview-index ul li a .bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #3fa9f5;
  mix-blend-mode: multiply;
}

.interview-index #interview-index ul li a figure {
  position: absolute;
  left: 0;
  top: -20px;
  z-index: 2;
}

.interview-index #interview-index ul li a figure img {
  height: 490px;
}

.interview-index #interview-index ul li a .detail {
  position: absolute;
  left: 43%;
  top: 0;
  width: 57%;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.interview-index #interview-index ul li a .detail h3 {
  color: #fff;
  font-size: 70px;
  font-weight: 500;
}

.interview-index #interview-index ul li a .detail p {
  color: #fff;
  font-weight: bold;
  line-height: 1.4em;
}

.interview-index #interview-index ul li a:hover .bg {
  background-size: auto 110%;
}

.interview-index #interview-index ul li:nth-child(3n+2) {
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.interview-index #interview-index ul li:nth-child(3n) {
  width: 100%;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .interview-index #interview-index {
    padding-top: 5vw;
    margin-bottom: 15vw;
    width: 100%;
  }
  .interview-index #interview-index ul li {
    margin-top: 1vw;
  }
  .interview-index #interview-index ul li a {
    width: 45vw;
    height: 45vw;
    margin: auto;
  }
  .interview-index #interview-index ul li a figure {
    top: 0;
    left: 0;
  }
  .interview-index #interview-index ul li a figure img {
    height: 50vw;
  }
  .interview-index #interview-index ul li a .detail {
    left: 35%;
    width: 65%;
  }
  .interview-index #interview-index ul li a .detail h3 {
    font-size: 9vw;
  }
  .interview-index #interview-index ul li a .detail p {
    font-size: 2.2vw;
  }
}

.interview #kv {
  position: relative;
  margin-top: 80px;
  margin-bottom: 300px;
}

.interview #kv .bg {
  height: 580px;
  position: relative;
  background-position: center center;
  background-size: cover;
}

.interview #kv .bg:after {
  content: "";
  background-color: #3fa9f5;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

.interview #kv .kv {
  width: 960px;
  position: absolute;
  left: calc(50% - 580px);
  top: 0;
  height: 100%;
}

.interview #kv .kv h2 {
  position: absolute;
  top: 20px;
  left: 0;
}

.interview #kv .kv .detail {
  position: absolute;
  left: 0;
  top: 380px;
}

.interview #kv .kv .detail .title {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.interview #kv .kv .detail .title span {
  display: inline-block;
  font-size: 36px;
  color: #014a9e;
  background: #fff;
  font-weight: 500;
  padding: 0.2em;
  margin-bottom: 0.2em;
}

.interview #kv .kv .detail .info {
  width: 400px;
  background: #014a9e;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 15px;
}

.interview #kv .kv .detail .info .meta {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #fff;
  font-size: 13px;
  line-height: 1.4em;
}

.interview #kv .kv .detail .info .name {
  white-space: nowrap;
  color: #fff;
  font-size: 70px;
}

.interview #kv .kv figure {
  position: absolute;
  top: -80px;
  right: 0;
}

.interview #kv .kv figure img {
  height: 1000px;
}

@media screen and (max-width: 768px) {
  .interview #kv {
    margin-top: 10vw;
    margin-bottom: 30vw;
  }
  .interview #kv .bg {
    height: 80vw;
  }
  .interview #kv .kv {
    width: 100%;
    left: 0;
  }
  .interview #kv .kv h2 {
    width: 40vw;
    padding-left: 3vw;
  }
  .interview #kv .kv .detail {
    top: 45vw;
    left: 3vw;
  }
  .interview #kv .kv .detail .title {
    margin-bottom: 5vw;
  }
  .interview #kv .kv .detail .title span {
    font-size: 4.5vw;
  }
  .interview #kv .kv .detail .info {
    padding: 5vw;
    width: 80vw;
  }
  .interview #kv .kv .detail .info .meta {
    font-size: 2.8vw;
  }
  .interview #kv .kv .detail .info .name {
    font-size: 12vw;
  }
  .interview #kv .kv figure {
    top: -10vw;
  }
  .interview #kv .kv figure img {
    height: 115vw;
  }
}

.interview section {
  background: url(../../images/interview/bg.png) left top 50px/100% 420px no-repeat;
  margin-bottom: 60px;
}

.interview section article {
  width: 820px;
  margin: auto;
}

.interview section article h3 {
  margin-bottom: 30px;
}

.interview section article .oneday {
  padding-left: 80px;
}

.interview section article .oneday ul {
  width: 80%;
}

.interview section article .oneday ul li {
  padding-bottom: 20px;
}

.interview section article .oneday ul li dl {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.interview section article .oneday ul li dl dt {
  font-size: 30px;
  color: #014a9e;
  font-weight: 500;
  width: 3.9em;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.interview section article .oneday ul li dl dt:after {
  content: "";
  width: 1em;
  height: 1px;
  display: block;
  background: #000;
  margin-left: 0.2em;
  margin-right: 0.2em;
  margin-top: 0.2em;
}

.interview section article .oneday ul li dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 0.5em;
  line-height: 1.6em;
}

.interview section article.type1 h3 {
  text-align: left;
}

.interview section article.type1 p {
  padding-left: 130px;
}

.interview section article.type1 figure {
  padding-left: 130px;
  text-align: center;
}

.interview section article.type1 figure img {
  max-height: 450px;
}

.interview section article.type2 {
  padding-left: 280px;
  position: relative;
  width: calc(820px - 280px);
  padding-bottom: 140px;
}

.interview section article.type2 figure {
  position: absolute;
  left: 0;
  top: -60px;
}

.interview section article.type2 figure img {
  height: 800px;
}

@media screen and (max-width: 768px) {
  .interview section {
    margin-bottom: 10vw;
    background-position: left top 15vw;
  }
  .interview section article {
    width: 90% !important;
  }
  .interview section article h3 img {
    height: 12vw;
  }
  .interview section article .oneday {
    padding-left: 0;
  }
  .interview section article .oneday ul li dl dt {
    font-size: 5vw;
  }
  .interview section article .oneday ul li dl dd {
    font-size: 3.5vw;
    padding-top: 0.2em;
  }
  .interview section article.type1 p {
    padding-left: 0;
  }
  .interview section article.type1 figure {
    width: 100% !important;
    padding-left: 0;
  }
  .interview section article.type1 figure img {
    max-height: 50vw;
  }
  .interview section article.type2 {
    padding-left: 25vw;
    width: calc(90% - 25vw) !important;
    padding-bottom: 0;
  }
  .interview section article.type2 figure {
    top: -5vw;
    left: -2vw;
  }
  .interview section article.type2 figure img {
    height: 100vw;
  }
}

.interview figure.image {
  width: 1280px;
  margin: auto;
  margin-bottom: 120px;
}

.interview figure.image img {
  width: 920px;
}

.interview figure.image.right {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .interview figure.image {
    width: 100%;
    margin-bottom: 10vw;
  }
}

.interview #index2 {
  width: 960px;
  margin: auto;
  margin-bottom: 80px;
}

.interview #index2 ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.interview #index2 ul li {
  width: 23%;
  margin-bottom: 30px;
}

.interview #index2 ul li a {
  overflow: hidden;
}

.interview #index2 ul li a img {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.interview #index2 ul li a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.interview #index2 ul li a figure {
  overflow: hidden;
  margin-bottom: 20px;
}

.interview #index2 ul li a .detail span {
  display: block;
  font-size: 15px;
  margin-bottom: 0.3em;
}

.interview #index2 ul li a .detail strong {
  display: block;
  font-size: 33px;
  color: #014a9e;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .interview #index2 {
    width: 90%;
  }
  .interview #index2 ul li {
    width: 48%;
    margin-bottom: 5vw;
  }
  .interview #index2 ul li a figure {
    margin-bottom: 3vw;
  }
  .interview #index2 ul li a .detail span {
    font-size: 3vw;
  }
  .interview #index2 ul li a .detail strong {
    font-size: 7vw;
  }
}

.job #kv {
  position: relative;
  background: url(../../images/job/kv.jpg) center center/cover no-repeat;
  margin-bottom: 80px;
}

.job #kv .kv {
  width: 1280px;
  margin: auto;
  position: relative;
}

.job #kv .kv h2 {
  position: absolute;
  left: 10px;
  top: 30px;
}

.job #kv .kv figure {
  text-align: center;
}

.job #kv .kv figure img {
  height: 770px;
}

.job #kv .kv ins {
  background: none;
  position: absolute;
  left: calc(50% - 420px);
  bottom: 70px;
  width: 840px;
  text-align: right;
}

.job #kv .kv ins img {
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.job #kv .kv dl {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  left: calc(50% - 420px);
  bottom: -30px;
  width: 840px;
}

.job #kv .kv dl dt {
  background: #014a9e;
  color: #fff;
  font-size: 36px;
  padding: 0.2em;
  font-weight: 500;
}

.job #kv .kv dl dd {
  background: #3fa9f5;
  color: #fff;
  padding: 0.8em 0.5em;
  font-size: 30px;
  font-weight: 500;
  width: calc(100% - 1em);
}

@media screen and (max-width: 768px) {
  .job #kv {
    margin-bottom: 10vw;
  }
  .job #kv .kv {
    width: 100%;
  }
  .job #kv .kv h2 {
    top: 3vw;
    left: 3vw;
  }
  .job #kv .kv h2 img {
    width: 30vw;
  }
  .job #kv .kv figure {
    padding-top: 16vw;
  }
  .job #kv .kv figure img {
    height: auto;
    width: 100%;
  }
  .job #kv .kv ins {
    position: absolute;
    left: initial;
    right: 5vw;
    bottom: initial;
    top: 3vw;
    display: block;
  }
  .job #kv .kv ins img {
    width: 40vw;
    text-align: right;
  }
  .job #kv .kv dl {
    width: 100%;
    position: static;
    margin-top: -7.2vw;
  }
  .job #kv .kv dl dt {
    font-size: 5vw;
  }
  .job #kv .kv dl dd {
    font-size: 4vw;
    line-height: 1.6em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
}

.job #prof {
  width: 960px;
  margin: auto;
  margin-bottom: 80px;
}

.job #prof ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.job #prof ul li {
  width: 48%;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.job #prof ul li figure {
  border-radius: 90px;
  overflow: hidden;
  width: 235px;
}

.job #prof ul li .prof {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 1em;
}

.job #prof ul li .prof .prof-detail small {
  font-size: 13px;
  display: block;
  font-weight: 500;
  line-height: 1.6em;
}

.job #prof ul li .prof .prof-detail strong {
  display: block;
  font-size: 30px;
  color: #014a9e;
  padding: 0.2em 0;
}

.job #prof ul li:first-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.job #prof ul li:first-child .prof {
  padding-left: 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .job #prof {
    width: 90%;
    margin-bottom: 10vw;
  }
  .job #prof ul li {
    display: block;
  }
  .job #prof ul li figure {
    width: 41vw;
    margin-bottom: 2vw;
  }
  .job #prof ul li .prof .prof-detail small {
    font-size: 2.8vw;
  }
  .job #prof ul li .prof .prof-detail strong {
    font-size: 7vw;
  }
}

.job section {
  width: 960px;
  margin: auto;
  margin-bottom: 80px;
}

.job section h3 {
  font-size: 28px;
  background: -webkit-gradient(linear, left top, right top, from(#3fa9f5), to(#00c388));
  background: -webkit-linear-gradient(left, #3fa9f5, #00c388);
  background: -o-linear-gradient(left, #3fa9f5, #00c388);
  background: linear-gradient(90deg, #3fa9f5, #00c388);
  padding: 0.5em;
  color: #fff;
  font-weight: 500;
  width: calc(800px - 1em);
  margin: auto;
  margin-bottom: 1em;
}

.job section article {
  width: calc(800px - 1em);
  margin: auto;
  margin-bottom: 80px;
}

.job section article dl {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: dotted 1px #ccc;
  padding: 20px 0;
}

.job section article dl dt {
  font-size: 20px;
  color: #014a9e;
  font-weight: bold;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 160px;
}

.job section article dl dt:after {
  content: "";
  display: block;
  width: 1.1em;
  height: 1px;
  background: #014a9e;
  margin-left: 0.5em;
}

.job section article dl dt figure {
  width: 60px;
  overflow: hidden;
  border-radius: 30px;
  margin-right: 5px;
}

.job section article dl dt figure img {
  width: 100%;
}

.job section article dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
  padding-top: 0.5em;
  line-height: 1.8em;
}

.job section figure.image {
  text-align: center;
}

.job section figure.image img {
  height: 320px;
}

@media screen and (max-width: 768px) {
  .job section {
    width: 90%;
    margin-bottom: 10vw;
  }
  .job section h3 {
    font-size: 5vw;
    width: calc(100% - 1em);
  }
  .job section article {
    width: calc(100%);
    margin-bottom: 10vw;
  }
  .job section article dl {
    padding: 3vw 0;
    display: block;
  }
  .job section article dl dt {
    font-size: 4vw;
  }
  .job section article dl dt:after {
    display: none;
  }
  .job section article dl dt figure img {
    width: 15vw;
  }
  .job section article dl dd {
    font-size: 3.5vw;
  }
  .job section figure.image img {
    height: auto;
    width: 100%;
  }
}

.job #job-index {
  width: 960px;
  margin: auto;
  margin-bottom: 80px;
}

.job #job-index ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.job #job-index ul li {
  width: 48%;
}

.job #job-index ul li a {
  display: block;
}

.job #job-index ul li a ins {
  background: none;
  margin-bottom: 10px;
  display: block;
}

.job #job-index ul li a figure {
  overflow: hidden;
}

.job #job-index ul li a figure img {
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.job #job-index ul li a h3 {
  font-size: 20px;
  line-height: 1.6em;
  border-left: solid 3px #3fa9f5;
  padding: 2em 0 0.8em 1em;
  margin-top: -1.3em;
  margin-left: 0.5em;
  position: relative;
  z-index: 1;
}

.job #job-index ul li a span {
  display: block;
  text-align: right;
}

.job #job-index ul li a:hover figure img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .job #job-index {
    margin-bottom: 10vw;
    width: 90%;
  }
  .job #job-index ul {
    display: block;
  }
  .job #job-index ul li {
    width: 100%;
    margin-bottom: 6vw;
  }
  .job #job-index ul li a ins img {
    height: 10vw;
  }
  .job #job-index ul li a h3 {
    font-size: 4vw;
  }
  .job #job-index ul li a span img {
    width: 40vw;
  }
}

.career #tab {
  width: 680px;
  margin: auto;
}

.career #tab ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.career #tab ul li {
  width: 48%;
}

.career #tab ul li a {
  display: block;
}

.career #tab ul li a span {
  background: #a7a7a7;
  color: #fff;
  height: 3em;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  border-radius: 0.4em;
  font-size: 22px;
}

.career #tab ul li a.active span {
  background: #3fa9f5;
}

.career #tab ul li a.active:after {
  content: "";
  background: url(../../images/career/tab.svg) center center/contain no-repeat;
  height: 18px;
  display: block;
}

@media screen and (max-width: 768px) {
  .career #tab {
    width: 90%;
    margin-bottom: 10vw;
  }
  .career #tab ul li a span {
    font-size: 3.5vw;
  }
  .career #tab ul li a.active:after {
    height: 3vw;
  }
}

.career #recruit-nav {
  width: 680px;
  margin: auto;
}

.career #recruit-nav ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.career #recruit-nav ul li {
  width: 48%;
}

.career #recruit-nav ul li a {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  color: #fff;
  background: url(../../images/recruit/nav.svg) right 0.7em center/1.3em no-repeat #3fa9f5;
  height: 3em;
  border-radius: 0.4em;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.career #recruit-nav ul li a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .career #recruit-nav {
    width: 90%;
    margin-bottom: 10vw;
  }
  .career #recruit-nav ul li a {
    font-size: 3.5vw;
  }
}

.career section.basic {
  padding-top: 100px;
  margin-bottom: 80px;
  width: 960px;
  margin: auto;
  display: none;
}

.career section.basic.active {
  display: block;
}

.career section.basic#recruit {
  display: block;
}

.career section.basic h2 {
  font-size: 40px;
  text-align: center;
  font-weight: normal;
  color: #014a9e;
  position: relative;
  margin-bottom: 2em;
}

.career section.basic h2:after {
  content: "";
  background: #f5f5f5;
  width: 10em;
  height: 0.7em;
  display: block;
  position: absolute;
  left: calc(50% - 5em);
  bottom: -0.5em;
  mix-blend-mode: multiply;
}

.career section.basic article figure {
  margin-bottom: 60px;
}

.career section.basic article .block {
  margin-bottom: 60px;
}

.career section.basic article .block ul li {
  text-indent: -1.4em;
  padding-left: 1.4em;
  line-height: 1.6em;
  margin-bottom: 1em;
}

.career section.basic article .block ul li:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: #014a9e;
  border-radius: 2em;
  vertical-align: middle;
  margin-bottom: 0.3em;
  margin-right: 0.5em;
}

.career section.basic article .block .voice {
  background: #f5f5f5;
  padding: 1em;
  border-radius: 1em;
}

.career section.basic article .block .voice h5 {
  font-size: 16px;
  background: #014a9e;
  color: #fff;
  padding: 0.4em 0.5em;
  border-radius: 0.4em;
  margin-bottom: 0.5em;
}

.career section.basic article .block dl dt, .career section.basic article .block dl dd {
  line-height: 2em;
}

.career section.basic article .block dl dt:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: #014a9e;
  border-radius: 2em;
  vertical-align: middle;
  margin-bottom: 0.3em;
  margin-right: 0.5em;
}

.career section.basic article .block dl dd {
  padding-left: 1.4em;
}

.career section.basic article .block table {
  width: 100%;
  border-top: solid 1px #014a9e;
  margin-bottom: 40px;
}

.career section.basic article .block table tr th, .career section.basic article .block table tr td {
  background: #f5f5f5;
  font-size: 16px;
  line-height: 1.6em;
  text-align: left;
  border-bottom: solid 1px #014a9e;
}

.career section.basic article .block table tr th {
  width: 10em;
  font-weight: 500;
  padding: 0.5em 1em;
  vertical-align: middle;
  background: url(../../images/recruit/th.png) right center/1px calc(100% - 1em) no-repeat #f5f5f5;
}

.career section.basic article .block table tr th span {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 1em 0;
  font-size: inherit;
}

.career section.basic article .block table tr td {
  padding: 1.5em 1em;
}

@media screen and (max-width: 768px) {
  .career section.basic {
    width: 90%;
    padding-top: 10vw;
  }
  .career section.basic h2 {
    font-size: 6vw;
    margin-bottom: 1.5em;
  }
  .career section.basic article .block {
    margin-bottom: 5vw;
  }
  .career section.basic article .block .voice h5 {
    font-size: 4vw;
  }
  .career section.basic article .block dl dt, .career section.basic article .block dl dd {
    font-size: 3.5vw;
  }
  .career section.basic article .block ul li {
    font-size: 3.5vw;
  }
  .career section.basic article .block table {
    display: block;
  }
  .career section.basic article .block table tr {
    display: block;
  }
  .career section.basic article .block table tr th, .career section.basic article .block table tr td {
    font-size: 3.5vw;
    display: block;
    width: calc(100% - 2em);
    background: #f5f5f5 !important;
  }
  .career section.basic article .block table tr td {
    background: #fff !important;
  }
}
