@charset "UTF-8";
/* --

 common.css - 共通スタイル

 ------------------------------------

 * normalize.......リセットCSS
 * base............ベースになるスタイル
 * header..........ヘッダー
 * nav     ........ナビゲーション
 * footer..........フッター

 ------------------------------------

 アイコンはアイコンフォント「Font Awesome」を使用。

 フォントサイズの指定は px と rem の2段指定（IE8対策）。

 テキスト使用フォント
 ・Noto Sans Japanese

 ブレイクポイントは以下の通り。
 ・タブレット：1023px（1024px未満をタブレットと設定）
 ・スマホ：639px（640px未満をタブレットと設定）

-- */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/earlyaccess/sawarabimincho.css);
@import url(https://fonts.googleapis.com/css?family=Cantarell:400i);
@import url(https://fonts.googleapis.com/css?family=Playfair+Display);
@import url(https://fonts.googleapis.com/css?family=Titillium+Web);
/* --

 * clearfix............float解除
 * font-size...........フォントサイズ指定（px指定はIE8対策）
 * layout-baseSize.....基本のコンテンツサイズ
 * layout-posMiddle....天地中央配置
 * moving-base.........基本のアニメーション
 * FontAwesome.........アイコンフォント使用（FontAwesome）
 * opacity.............透明度設定（IE対応含む）
 * tablet..............ブレイクポイント設定（タブレット）
 * mobile..............ブレイクポイント設定（スマホ）

 ------------------------------------

 * scroll..............スクロールアイコンのスタイル
 * m-title.............タイトル共通のスタイル
 * flex................フレックスボックス


-- */
/* --

 keyframes - アニメーションキーフレーム集

 ------------------------------------

 * fade................フェードで順に表示するアニメーション
 * scroll..............スクロールアイコンに関するアニメーション
 * toggle-.............ハンバーガーアイコンに関するアニメーション

-- */
@-webkit-keyframes fade {
  100% {
    opacity: 1;
    padding: 0;
  }
}

@keyframes fade {
  100% {
    opacity: 1;
    padding: 0;
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(33px);
  }
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(33px);
  }
}

@-moz-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(33px);
  }
}

@-webkit-keyframes toggle-top {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(0deg);
    transform: translateY(-10px) rotate(0deg);
  }
}

@keyframes toggle-top {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(0deg);
    transform: translateY(-10px) rotate(0deg);
  }
}

@-webkit-keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(0deg);
    transform: translateY(8px) rotate(0deg);
  }
}

@keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(0deg);
    transform: translateY(8px) rotate(0deg);
  }
}

@-webkit-keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-17px) rotate(0deg);
    transform: translateY(-17px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
}

@keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-17px) rotate(0deg);
    transform: translateY(-17px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
}

@-webkit-keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(15px) rotate(0deg);
    transform: translateY(15px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
}

@keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(15px) rotate(0deg);
    transform: translateY(15px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
}

/*-----------------------------------

	$top

-----------------------------------*/
.top .pagetitle {
  background: none;
}

.top .pagetitle__title {
  margin: 0;
}

.top__bookbox {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: -7em;
}

/*-----------------------------------

	$top - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .top__bookbox {
    position: static;
    margin: -15em auto 3em;
  }
}

/*-----------------------------------

	$top -tab

-----------------------------------*/
.tabs {
  margin-bottom: 6em;
}

.tabs__section {
  font-family: "Titillium Web", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.tabs__btn li {
  float: left;
  list-style-type: none;
  width: 33.3%;
}

.tabs__btn li a {
  font-size: 1em;
  font-weight: bold;
  color: #ccc;
  text-decoration: none;
  display: block;
  padding: 9% 0;
  text-align: center;
  width: 100%;
  border-bottom: solid 2px #ccc;
}

.tabs__btn li a:hover {
  color: #0290bf;
  border-bottom: solid 2px #0290bf;
}

.tabs__btn li .current {
  color: #0290bf;
  border-bottom: solid 2px #0290bf;
  position: relative;
}

.tabs__btn li .current:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border: solid 6px transparent;
  border-top: solid 6px #0290bf;
  position: absolute;
  bottom: -12px;
  left: 50%;
  margin-left: -6px;
}

#contents {
  clear: both;
}

#contents div {
  padding: 1% 0;
  background: #fff;
}

#contents dl {
  overflow: hidden;
  padding: 1em 0;
}

#contents dl:nth-of-type(even) {
  background: #f2f2f2;
}

#contents dt {
  width: 12%;
  float: left;
  text-align: center;
}

#contents dd {
  float: left;
}

#contents dd:nth-of-type(1) {
  font-size: 1.2rem;
  width: 10%;
  margin: 0 1%;
  color: #fff;
  display: inline-block;
  text-align: center;
}

#contents dd:nth-of-type(2) {
  width: 76%;
}

#contents dd span {
  padding: .2em 0;
  display: block;
}

#contents .c-blue {
  background: #003aa0;
}

#contents .c-green {
  background: #27ad50;
}

#contents p {
  margin-top: 20px;
  line-height: 2em;
  color: #c15757;
}

/*-----------------------------------

	$top - tab - tablet

-----------------------------------*/
/*-----------------------------------

	$top - tab - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  #contents dl {
    padding: 1em 2%;
  }
  #contents dt {
    width: 20%;
    margin: 0 5% 0 0;
  }
  #contents dd:nth-of-type(1) {
    width: 20%;
  }
  #contents dd:nth-of-type(2) {
    clear: left;
    width: 100%;
    margin: .2em 0 0;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/*-----------------------------------

	$top - solution

-----------------------------------*/
.solution {
  background: url(../images/common/service_main_bg.png) repeat;
  overflow: hidden;
  position: relative;
}

.solution h4 {
  font-size: 2.6rem;
  font-weight: 500;
  color: #0290bf;
  line-height: 1.5em;
  margin: 0 0 .5em;
}

.solution__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.solution__inner figure {
  width: 100%;
}

.solution__box {
  display: table;
  margin: 0 auto 20em;
  position: relative;
}

.solution__box .lay-btn {
  position: absolute;
}

.solution__title {
  position: relative;
  margin: -.6rem 0 1.17rem;
}

.solution__title:before {
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  width: 110px;
  height: 1px;
  background: #0290bf;
}

.solution__title span {
  font-family: "Titillium Web", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 0 120px;
}

.solution__text {
  display: table-cell;
  vertical-align: middle;
  width: 43%;
  padding: 0 2% 0 0;
}

.solution .lay-btn a {
  padding: .3em .7em .3em 1em;
}

.solution .lay-btn-red {
  top: 4em;
  left: 43%;
}

.solution .lay-btn-red a {
  background: #ed6464;
}

.solution .lay-btn-red a:hover {
  background: #e83636;
}

.solution .lay-btn-blue {
  top: 4em;
  left: 89%;
}

.solution .lay-btn-blue a {
  background: #1f6dc7;
}

.solution .lay-btn-blue a:hover {
  background: #18559b;
}

.solution .lay-btn-green {
  top: 23em;
  left: 89%;
}

.solution .lay-btn-green a {
  background: #27ad50;
}

.solution .lay-btn-green a:hover {
  background: #1e833d;
}

.solution .lay-btn-purple {
  top: 30.5em;
  left: 67%;
}

.solution .lay-btn-purple a {
  background: #af75bc;
}

.solution .lay-btn-purple a:hover {
  background: #9b53ab;
}

.solution .lay-btn-orange {
  top: 23em;
  left: 43%;
}

.solution .lay-btn-orange a {
  background: #f29b4c;
}

.solution .lay-btn-orange a:hover {
  background: #ef801c;
}

/*-----------------------------------

	$top - solution - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .solution__text {
    width: 100%;
    padding: 0;
    display: block;
    margin: 0 0 3em;
  }
  .solution__inner figure {
    width: 80%;
    margin: 0 auto;
  }
  .solution .lay-btn a {
    padding: .3em .7em .3em 1em;
  }
  .solution .lay-btn-red {
    top: 17em;
    left: 10%;
  }
  .solution .lay-btn-blue {
    top: 17em;
    left: 74.5%;
  }
  .solution .lay-btn-green {
    top: 37em;
    left: 74.5%;
  }
  .solution .lay-btn-purple {
    top: 45em;
    left: 50%;
    margin-left: -3.5em;
  }
  .solution .lay-btn-orange {
    top: 37em;
    left: 10%;
  }
}

/*-----------------------------------

	$top - solution - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .solution h4 {
    font-size: 2rem;
  }
  .solution__inner figure {
    width: 100%;
  }
  .solution__box .lay-btn {
    position: static;
  }
  .solution__box ul {
    margin: 3em 0 0;
  }
  .solution__box li {
    display: block;
    border-bottom: solid 1px #fff;
  }
  .solution__box li:last-child {
    border-bottom: none;
  }
  .solution .lay-btn a {
    display: block;
    position: relative;
    border-radius: 0;
    padding: 1em .7em 1em 1em;
  }
  .solution .lay-btn a:after {
    position: absolute;
    top: 30%;
    right: 2em;
  }
  .solution .lay-btn-purple {
    margin-left: 0;
  }
}

/*-----------------------------------

	$top - book

-----------------------------------*/
.book {
  width: 47%;
  display: table;
  position: relative;
}

.book figure {
  width: 30%;
  position: absolute;
  top: -5em;
  left: 5em;
  border: solid 1px #999999;
  box-sizing: border-box;
}

.book h4 {
  color: #444;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 1.5em 0 .5em;
}

.book__text {
  width: 50%;
  float: right;
  padding: 2em 4em 2em 0;
  box-sizing: border-box;
  display: table-cell;
  vertical-align: middle;
}

.book-info {
  float: left;
  background: #d8eadf;
}

.book-info .lay-btn a {
  background: #00a050;
}

.book-info .lay-btn a:hover {
  background: #006d37;
}

.book-intro {
  float: right;
  background: #dfe6ed;
}

.book__new {
  color: #fff;
}

.book__new span {
  background: #ed6464;
  padding: 0 .5em;
}

.book__vol {
  color: #aaa;
  margin: 0 0 2.5em;
}

.book .lay-btn {
  text-align: right;
  letter-spacing: normal;
}

/*-----------------------------------

	$top - book - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .book figure {
    top: -2em;
    left: 2em;
  }
  .book figure:nth-child(2) {
    margin: 0 0 0 100px;
  }
  .book__text {
    width: 55%;
    float: right;
    padding: 1em 2em 1em 0;
  }
  .book-info {
    float: left;
    background: #d8eadf;
  }
  .book-info .lay-btn a {
    background: #00a050;
  }
  .book-info .lay-btn a:hover {
    background: #006d37;
  }
  .book-intro {
    float: right;
    background: #dfe6ed;
  }
  .book__new {
    color: #fff;
  }
  .book__new span {
    background: #ed6464;
    padding: 0 .5em;
  }
  .book__vol {
    color: #aaa;
    margin: 0 0 2.5em;
  }
  .book .lay-btn {
    text-align: right;
    letter-spacing: normal;
  }
}

/*-----------------------------------

	$top - book - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .book {
    width: 100%;
    display: table;
  }
  .book figure {
    position: static;
    display: table-cell;
    vertical-align: middle;
    padding: 2em 0 2em 2em;
    border: none;
    width: 40%;
  }
  .book h4 {
    margin: 1em 0 .5em;
  }
  .book__text {
    width: 60%;
    float: none;
    padding: 2em 2em 2em 1em;
  }
  .book__vol {
    margin: 0 0 1.5em;
  }
}

/*-----------------------------------

	$top - link

-----------------------------------*/
.link {
  background: url(../images/top/top_link_bg.png) no-repeat;
  background-position: 80% 43%;
}

.link__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 6em;
}

.link figure {
  position: relative;
  display: inline-block;
}

.link figure img {
  width: 520px;
}

.link figure:nth-child(2) {
  margin: 0 0 0 260px;
}

.link a:hover figcaption {
  background: #016a8d;
}

.link a:hover figcaption span:before {
  right: -5px;
}

.link a:hover figcaption span:after {
  right: -5px;
}

.link figcaption {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: absolute;
  left: 80%;
  bottom: 1em;
  font-family: "Titillium Web", sans-serif;
  font-style: italic;
  font-size: 3.6rem;
  color: #fff;
  background: #0290bf;
  display: inline-block;
  padding: 0 .7em 0 .5em;
}

.link figcaption span {
  position: relative;
  margin: 0 0 0 40px;
}

.link figcaption span:before {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: absolute;
  content: '';
  vertical-align: middle;
  top: 50%;
  right: 0;
  width: 24px;
  height: 2px;
  background: #fff;
}

.link figcaption span:after {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: absolute;
  content: '';
  top: 50%;
  margin: -7px 0 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*-----------------------------------

	$top - link - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .link figure:nth-child(2) {
    margin: 0 0 0 10%;
  }
}

@media (max-width: 719px) {
  .link__inner {
    width: 92%;
  }
  .link figure {
    width: 100%;
  }
  .link figure img {
    width: 95%;
  }
  .link figure:nth-child(1) {
    margin: 0 0 2em;
  }
  .link figure:nth-child(2) {
    margin: 0;
  }
  .link figcaption {
    left: auto;
    right: 0;
    bottom: .5em;
    font-size: 2.4rem;
  }
}

/*-----------------------------------

	$top - link - mobile

-----------------------------------*/

/*# sourceMappingURL=top.css.map */