@charset "UTF-8";
/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
html {
  color: #000;
  background: #FFF;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

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

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%;
}

legend {
  color: #000;
}

#yui3-css-stamp.cssreset {
  display: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/*--変数--*/
/*----*/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  background: #FFF;
  font-size: 16px;
  color: #383838;
}

a {
  color: #383838;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  text-decoration: underline;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 765px) {
  .sp {
    display: block;
  }
}
@media (min-width: 766px) {
  .sp {
    display: none;
  }
}

@media (max-width: 765px) {
  .pc {
    display: none;
  }
}
@media (min-width: 766px) {
  .pc {
    display: block;
  }
}

.site-header {
  position: fixed;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 0;
}
.site-header.hide {
  top: -125px;
  opacity: 0;
}
@media (min-width: 766px) {
  .sp-hidden {
    display: block;
  }
  .pc-hidden {
    display: none !important;
  }
}
@media (max-width: 765px) {
  .sp-hidden {
    display: none !important;
  }
  .pc-hidden {
    display: block;
  }
}
@media (max-width: 765px) {
  /*　ハンバーガーボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 5vw;
    top: 3vh;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 16px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(36, 103, 164, 0.9);
    text-align: center;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    height: 100vh;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10vh 0 0;
    display: none;
  }
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  nav.globalMenuSp ul li:hover {
    background: #ddd;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    opacity: 100;
    display: block;
  }
}
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  position: fixed;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1000;
}
@media (min-width: 766px) {
  header {
    padding: 5vh 5vw;
  }
}
@media (max-width: 765px) {
  header {
    padding: 3vh 5vw;
  }
}
@media (min-width: 766px) {
  header .logo {
    width: 15vw;
  }
}
@media (min-width: 766px) {
  header .global-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  header .global-nav li {
    margin-right: 2.5em;
    font-weight: bold;
  }
  header .global-nav li:last-child {
    margin-right: 0;
  }
}

footer {
  border-top: 1px solid #F7F7F5;
  padding: 2em 0;
}
footer .copyrights {
  text-align: center;
  color: #A2A2A2;
  letter-spacing: 0.2em;
  font-size: 0.8em;
}

#mv {
  background: rgb(224, 239, 242);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(224, 239, 242)), to(rgb(255, 255, 255)));
  background: linear-gradient(180deg, rgb(224, 239, 242) 0%, rgb(255, 255, 255) 100%);
  overflow: hidden;
  width: 100%;
  position: relative;
}
@media (min-width: 766px) {
  #mv {
    height: 100vh;
  }
}
@media (max-width: 765px) {
  #mv {
    height: 85vh;
  }
}
@media (min-width: 766px) {
  #mv .wrap--copy {
    position: absolute;
    top: 40vh;
    left: 12vw;
  }
}
@media (max-width: 765px) {
  #mv .wrap--copy {
    position: absolute;
    top: 25vh;
    left: 10vw;
    width: 80vw;
  }
}
@media (max-width: 765px) {
  #mv .wrap--copy .logo {
    width: 60vw;
  }
  #mv .wrap--copy .logo img {
    width: 60%;
    height: auto;
  }
}
#mv .wrap--copy .catch-copy {
  letter-spacing: 0.3em;
  color: #2467A4;
}
@media (min-width: 766px) {
  #mv .wrap--copy .catch-copy {
    font-size: 2.2em;
    line-height: 1.5;
    margin-top: 2em;
  }
}
@media (max-width: 765px) {
  #mv .wrap--copy .catch-copy {
    font-size: 1.3em;
    line-height: 1.75;
    margin-top: 1em;
  }
}
#mv .elm-logo {
  position: absolute;
}
@media (min-width: 766px) {
  #mv .elm-logo {
    right: -10vw;
    bottom: 0;
    width: 40vw;
  }
}
@media (max-width: 765px) {
  #mv .elm-logo {
    right: -20vw;
    bottom: 0;
    width: 70vw;
  }
}
#mv .elm-logo img {
  width: 100%;
  height: auto;
}

.sec {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
@media (min-width: 766px) {
  .sec {
    padding: 40vh 15vw 0;
  }
  .sec:first-child {
    padding: 30vh 15vw;
  }
}
@media (max-width: 765px) {
  .sec {
    padding: 15vh 7vw 0;
  }
  .sec:first-child {
    padding: 20vh 15vw;
  }
}
@media (min-width: 766px) {
  .sec.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sec .mb-1em {
  margin-bottom: 1em;
}
.sec .mb-2em {
  margin-bottom: 2em;
}
.sec .mb-3em {
  margin-bottom: 3em;
}
.sec .mb-4em {
  margin-bottom: 4em;
}
.sec .mb-5em {
  margin-bottom: 5em;
}
.sec .btn {
  border: 1px solid #2467A4;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: bold;
}
@media (max-width: 765px) {
  .sec .btn {
    width: 100%;
  }
}
.sec .btn a {
  display: inline-block;
  padding: 1em 5em;
  color: #2467A4;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 765px) {
  .sec .btn a {
    padding: 1em 0;
    width: 100%;
  }
}
.sec .btn a:hover {
  background: #2467A4;
  color: #fff;
}
.sec .copy--p {
  font-size: 1em;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 765px) {
  .sec .copy--p {
    font-size: 0.9em;
  }
}
.sec .copy--list {
  margin-bottom: 4em;
}
.sec .copy--list li {
  line-height: 1.75;
  letter-spacing: 0.1em;
/*  margin-left: 1em;*/
/*  text-indent: -1em;*/
  margin-top: 1em;
  border-top: 1px dotted #ccc;
  padding-top: 1em;
}



.sec .copy--list li:last-child {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 1.5em;
}


.sec .copy--list.list__seminor{
}

.sec .copy--list.list__seminor .caption {
  margin-top: 1em;
}

.sec .copy--list.list__seminor li:first-child {
  border-top: none;
  margin-top: 0;
}


.sec .copy--list.list__seminor img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 766px) {
  .sec .copy--list li {
    font-size: .9em;
  }
}
@media (max-width: 765px) {
  .sec .copy--list li {
    font-size: 0.9em;
    line-height: 1.55;
    margin-top: 1.5em;
  }
}

@media (max-width: 765px) {
  .sec .copy--list li .small {
    margin-top: .5em;
  }
}
.sec .copy--list li .small {
  font-size: .8em;
  display: inline-block;
}




.sec h2 {
  font-size: 2em;
  font-weight: bold;
  color: #2467A4;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}
@media (max-width: 765px) {
  .sec h2 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 2em;
  }
}
.sec h3 {
  font-size: 1.2em;
  font-weight: bold;
  color: #383838;
  letter-spacing: 0em;
  margin-bottom: 1em;
  border-bottom: 3px solid #2467A4;
  padding-bottom: 1em;
}

.sec h3.border {
  border-top: 1px solid #ccc;
  padding-top: 3em;
}

.sec h4 {
  font-size: 1em;
  font-weight: bold;
  color: #383838;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}

.sec h5 {
  font-size: 1em;
  font-weight: bold;
  color: #383838;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}

.sec .mt12 {
  margin-top: 12vh;
}

#about .wrap--photo {
  text-align: center;
}
@media (min-width: 766px) {
  #about .wrap--photo {
    width: 40%;
  }
}
#about .wrap--photo img {
  width: 50%;
  height: auto;
}
@media (max-width: 765px) {
  #about .wrap--photo img {
    margin: 3vh 0 8vh;
  }
}
@media (min-width: 766px) {
  #about .wrap--info {
    width: 50%;
  }
}
@media (max-width: 765px) {
  #about .wrap--info {
    width: 100%;
  }
}

@media (min-width: 766px) {
  #profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
  }
}
#profile a {
  color: #2467A4;
  text-decoration: underline;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#profile a:hover {
  text-decoration: none;
  opacity: 0.5;
}
#profile strong {
  font-weight: bold;
}
#profile .wrap--photo {
  text-align: center;
}
@media (min-width: 766px) {
  #profile .wrap--photo {
    width: 40%;
    position: sticky;
    top: 4vh;
    right: 0;
  }
  #profile .wrap--photo img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 765px) {
  #profile .wrap--photo {
    width: 100%;
  }
  #profile .wrap--photo img {
    width: 70%;
    height: auto;
  }
}
@media (min-width: 766px) {
  #profile .wrap--info {
    width: 50%;
  }
}
@media (max-width: 765px) {
  #profile .wrap--info {
    width: 100%;
  }
}
#profile .wrap--info .wrap--name {
  letter-spacing: 0.2em;
  margin-bottom: 2em;
}
@media (max-width: 765px) {
  #profile .wrap--info .wrap--name {
    text-align: center;
    margin: 2em 0;
  }
}
#profile .wrap--info .position {
  font-size: 1em;
  margin-bottom: 1em;
}
@media (max-width: 765px) {
  #profile .wrap--info .position {
    font-size: 0.8em;
  }
}
#profile .wrap--info .name {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 0.3em;
}
@media (max-width: 765px) {
  #profile .wrap--info .name {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
}
#profile .wrap--info .yomi {
  font-size: 1em;
  color: #A2A2A2;
}
@media (max-width: 765px) {
  #profile .wrap--info .yomi {
    font-size: 0.8em;
  }
}

@media (min-width: 766px) {
  #book {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#book .book-list {
  margin-top: 10%;
}
#book .book-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 5%;
}
@media (max-width: 765px) {
  #book .book-list li {
    margin-bottom: 25%;
  }
}
#book .book-list .wrap--photo {
  text-align: center;
}
@media (min-width: 766px) {
  #book .book-list .wrap--photo {
    width: 30%;
  }
}
@media (max-width: 765px) {
  #book .book-list .wrap--photo {
    margin-bottom: 10%;
  }
}
#book .book-list .wrap--photo img {
  display: inline-block;
  width: 50%;
  height: auto;
}
@media (min-width: 766px) {
  #book .book-list .wrap--info {
    width: 70%;
  }
}
@media (min-width: 766px) {
  #book .book-list .wrap--info h3 {
    font-size: 2em;
    margin-bottom: 1em;
  }
}
@media (max-width: 765px) {
  #book .book-list .wrap--info h3 {
    font-size: 1.1em;
    margin-bottom: 2em;
  }
}
#book .book-list .wrap--info h3 span {
  font-size: 0.8em;
}
#book .book-list .wrap--info .topics {
  background: #2467A4;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  font-size: 1em;
  margin-bottom: 1em;
}

#service {
  background: rgb(42, 87, 140);
  background: linear-gradient(315deg, rgb(42, 87, 140) 0%, rgb(36, 76, 132) 100%);
  margin-top: 40vh;
}
@media (min-width: 766px) {
  #service {
    padding: 20vh 15vw;
  }
}
@media (max-width: 765px) {
  #service {
    padding: 10vh 10vw;
    margin-top: 20vh;
  }
}
#service h2 {
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
  color: #fff;
}
@media (max-width: 765px) {
  #service h2 {
    font-size: 1.5em;
  }
}
#service .list--service {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 3;
  color: #fff;
}
@media (max-width: 765px) {
  #service .list--service {
    line-height: 1.5;
    font-size: 1em;
  }
  #service .list--service li {
    margin-bottom: 1em;
    margin-left: 1em;
    text-indent: -1em;
  }
  #service .list--service li:last-child {
    margin-bottom: 0;
  }
}

#company {
  background: rgb(224, 239, 242);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(224, 239, 242)), to(rgb(255, 255, 255)));
  background: linear-gradient(180deg, rgb(224, 239, 242) 0%, rgb(255, 255, 255) 100%);
}
@media (min-width: 766px) {
  #company {
    padding: 20vh 15vw;
  }
}
@media (max-width: 765px) {
  #company {
    padding: 10vh 10vw;
  }
}
#company h2 {
  font-size: 2em;
  font-weight: bold;
  color: #2467A4;
  letter-spacing: 0.2em;
  margin-bottom: 1.5em;
}
@media (max-width: 765px) {
  #company h2 {
    font-size: 1.5em;
  }
}
#company h3 {
  font-size: 1.1em;
  font-weight: bold;
  color: #383838;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}
#company h4 {
  font-size: 1.1em;
  font-weight: bold;
  color: #383838;
  letter-spacing: 0.2em;
  margin-bottom: 0.5em;
}
#company .address {
  font-size: 1.1em;
  line-height: 2;
  letter-spacing: 0.2em;
  margin-bottom: 2em;
}
@media (max-width: 765px) {
  #company .address {
    font-size: 1em;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin-bottom: 2em;
  }
}
#company .address:last-child {
  margin-bottom: 2em;
}
#company #job-offer {
  margin-top: 15vh;
}
#company #job-offer .copy {
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
#company #job-offer .mail {
  font-size: 1.3em;
  font-weight: bold;
}