@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* PCのみ表示 */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* w1200のみ表示 */
@media screen and (min-width: 1200px) {
  .w1200 {
    display: none !important;
  }
}
/* PCのみ表示 */
@media screen and (max-width: 599px) {
  .tb-pc {
    display: none !important;
  }
}
/* タブレットのみ表示、PCとSPは非表示 */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* タブレットとSPのみ表示 */
@media screen and (min-width: 1025px) {
  .tb-sp {
    display: none !important;
  }
}
/* SPのみ表示 */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    color: #111;
    pointer-events: none;
  }
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  /*任意でフォントサイズを指定*/
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  body {
    font-size: 1.4rem;
  }
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul,
ol {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 5mm;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.2s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
a:not([class]) {
  color: #77b627;
}

a:not([class]):hover {
  color: #51880c;
}

a:not([class]):active {
  color: #51880c;
}

/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/** Selection */
::-moz-selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}
::-moz-selection,
::selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*マージン*/
.mlr-05 {
  margin-right: -0.5em;
  margin-left: -0.5em;
}

.mlr-03 {
  margin-right: -0.3em;
  margin-left: -0.3em;
}

.mlr-01 {
  margin-right: -0.1em;
  margin-left: -0.1em;
}

.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

.mb05 {
  margin-bottom: 5px !important;
}
@media screen and (max-width: 599px) {
  .mb05 {
    margin-bottom: 5px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 10px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 10px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mb30 {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 25px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 30px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 30px !important;
  }
}

@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
@page {
  size: A4;
  margin: 12.7mm 9.7mm;
}
.header-wrapper {
  width: 300px;
  height: 100vh;
  background-color: #f8f8f8;
  position: fixed;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .header-wrapper {
    overflow-y: auto;
    transition: 0.5s;
  }
  .header-wrapper::-webkit-scrollbar {
    width: 6px;
  }
  .header-wrapper::-webkit-scrollbar-track {
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .header-wrapper::-webkit-scrollbar-thumb {
    background: rgba(17, 17, 17, 0.1);
    border-radius: 3px;
    box-shadow: none;
  }
}
@media screen and (max-width: 1400px) {
  .header-wrapper {
    width: 260px;
  }
}
@media screen and (max-width: 1200px) {
  .header-wrapper {
    width: 240px;
  }
}
@media screen and (max-width: 1024px) {
  .header-wrapper {
    width: 100%;
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper {
    height: 50px;
  }
}
.header-wrapper__logo {
  padding: 30px 20px 35px;
  width: 100%;
  height: auto;
  background-color: #00adef;
}
@media screen and (max-width: 1024px) {
  .header-wrapper__logo {
    padding-top: 27px;
    padding-left: 20px;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper__logo {
    padding-top: 14px;
    padding-left: 10px;
  }
}
.header-wrapper__logo__link {
  margin: 0 auto;
  max-width: 240px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 1024px) {
  .header-wrapper__logo__link {
    margin: 0;
    width: 320px;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper__logo__link {
    width: 206px;
  }
}
.header-wrapper__menu-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-wrapper__menu-btn {
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    display: block;
    position: fixed;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper__menu-btn {
    width: 50px;
    height: 50px;
  }
}
.header-wrapper__menu-btn::before {
  content: "";
  top: 80px;
  right: 0;
  width: 0;
  height: calc(100vh - 80px);
  background-color: rgba(17, 17, 17, 0);
  position: absolute;
  transition: 0.5s;
}
@media screen and (max-width: 599px) {
  .header-wrapper__menu-btn::before {
    top: 50px;
    height: calc(100vh - 50px);
  }
}
.header-wrapper__menu-btn span {
  top: calc(50% - 1px);
  left: 25px;
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
}
.header-wrapper__menu-btn span::before {
  content: "";
  top: -8px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  transition: 0.5s;
}
.header-wrapper__menu-btn span::after {
  content: "";
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  transition: 0.5s;
}
@media screen and (max-width: 599px) {
  .header-wrapper__menu-btn span {
    top: calc(50% - 1px);
    left: 14px;
    width: 22px;
    height: 2px;
  }
  .header-wrapper__menu-btn span::before {
    top: -6px;
  }
  .header-wrapper__menu-btn span::after {
    bottom: -6px;
  }
}
.header-wrapper__nav {
  padding: 50px 50px 30px;
  width: 100%;
  transition: 0.5s;
}
@media screen and (max-width: 1400px) {
  .header-wrapper__nav {
    padding: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .header-wrapper__nav {
    padding: 30px;
    width: auto;
  }
}
.header-wrapper__nav__item {
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper__nav__item {
    margin-top: 20px;
  }
}
.header-wrapper__nav__item:first-child {
  margin-top: 0;
}
.header-wrapper__nav__item__link {
  padding-left: 36px;
  width: auto;
  height: 24px;
  font-size: 18px;
  line-height: 23px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  background-size: 18px auto;
  background-position: 0 50%;
  background-repeat: no-repeat;
  display: block;
}
@media screen and (max-width: 1200px) {
  .header-wrapper__nav__item__link {
    padding-left: 32px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .header-wrapper__nav__item__link {
    color: #fff;
  }
}
@media screen and (min-width: 1025px) {
  .header-wrapper__nav__item__link:hover {
    background-position: 10px 50%;
  }
}
.header-wrapper__nav__item__link--home {
  background-image: url(../img/common/home.svg);
}
@media screen and (min-width: 1025px) {
  .header-wrapper__nav__item__link--home:hover {
    color: #ff0;
  }
}
.header-wrapper__nav__item__link--01 {
  background-image: url(../img/common/arrow01.svg);
}
@media screen and (min-width: 1025px) {
  .header-wrapper__nav__item__link--01:hover {
    color: #00adef;
  }
}
.header-wrapper__nav__item__link--02 {
  background-image: url(../img/common/arrow02.svg);
}
@media screen and (min-width: 1025px) {
  .header-wrapper__nav__item__link--02:hover {
    color: #e96087;
  }
}
.header-wrapper__nav__item__link--03 {
  background-image: url(../img/common/arrow03.svg);
}
@media screen and (min-width: 1025px) {
  .header-wrapper__nav__item__link--03:hover {
    color: #48a5b3;
  }
}
.header-wrapper__nav__item__link--04 {
  background-image: url(../img/common/arrow04.svg);
}
@media screen and (min-width: 1025px) {
  .header-wrapper__nav__item__link--04:hover {
    color: #f2885f;
  }
}
.header-wrapper__nav__item__link--05 {
  background-image: url(../img/common/arrow05.svg);
}
@media screen and (min-width: 1025px) {
  .header-wrapper__nav__item__link--05:hover {
    color: #7b529a;
  }
}
.header-wrapper__nav__item__link--06 {
  background-image: url(../img/common/arrow06.svg);
}
@media screen and (min-width: 1025px) {
  .header-wrapper__nav__item__link--06:hover {
    color: #5ca03d;
  }
}
.header-wrapper__nav__item__link--07 {
  background-image: url(../img/common/arrow07.svg);
}
@media screen and (min-width: 1025px) {
  .header-wrapper__nav__item__link--07:hover {
    color: #e96087;
  }
}
.header-wrapper__nav__item__link--08 {
  background-image: url(../img/common/arrow08.svg);
}
@media screen and (min-width: 1025px) {
  .header-wrapper__nav__item__link--08:hover {
    color: #f3bb00;
  }
}
.header-wrapper__nav__item__link--09 {
  background-image: url(../img/common/arrow09.svg);
}
@media screen and (min-width: 1025px) {
  .header-wrapper__nav__item__link--09:hover {
    color: #48c;
  }
}
@media screen and (max-width: 1024px) {
  .header-wrapper__box {
    width: auto;
  }
}
.header-wrapper__bnr {
  margin: 0 30px 50px;
  width: auto;
}
@media screen and (max-width: 1200px) {
  .header-wrapper__bnr {
    margin: 0 20px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .header-wrapper__bnr {
    margin: 0 30px 50px;
  }
}
.header-wrapper__bnr__item {
  margin-top: 10px;
}
.header-wrapper__bnr__item:first-child {
  margin-top: 0;
}
.header-wrapper__bnr__item__bnr {
  padding-left: 40px;
  width: 100%;
  height: 55px;
  font-size: 17px;
  line-height: 54px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
  background-color: #8ab;
  display: block;
}
@media screen and (max-width: 1400px) {
  .header-wrapper__bnr__item__bnr {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .header-wrapper__bnr__item__bnr {
    padding-left: 25px;
    height: 50px;
    line-height: 49px;
  }
}
@media screen and (min-width: 1025px) {
  .header-wrapper__bnr__item__bnr:hover {
    background-color: #25b;
  }
}
.header-wrapper__bnr__item__bnr--card {
  background-image: url(../img/common/icon_card.svg);
  background-repeat: no-repeat;
  background-size: 35px auto;
  background-repeat: no-repeat;
  background-position: 15px 50%;
}
@media screen and (max-width: 1400px) {
  .header-wrapper__bnr__item__bnr--card {
    background-size: 31.5px auto;
    background-position: 13.5px 50%;
  }
}
.header-wrapper__bnr__item__bnr--books {
  padding-left: 30px;
  letter-spacing: 0.15em;
  background-image: url(../img/common/icon_books.svg);
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-repeat: no-repeat;
  background-position: 17px 50%;
}
@media screen and (max-width: 1400px) {
  .header-wrapper__bnr__item__bnr--books {
    background-size: 27px auto;
    background-position: 15.3px 50%;
  }
}
.header-wrapper__bnr__item__bnr--logout {
  padding-left: 30px;
  color: #8ab;
  letter-spacing: 0.15em;
  background-color: #fff;
  background-image: url(../img/common/icon_logout.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-repeat: no-repeat;
  background-position: 20px 50%;
}
@media screen and (max-width: 1400px) {
  .header-wrapper__bnr__item__bnr--logout {
    background-size: 21.6px auto;
    background-position: 18px 50%;
  }
}
@media screen and (min-width: 1025px) {
  .header-wrapper__bnr__item__bnr--logout:hover {
    color: #fff;
    background-color: #25b;
    background-image: url(../img/common/icon_logout_white.svg);
  }
}
@media screen and (max-width: 1024px) {
  .header-wrapper__menu-wrapper__inner {
    top: 80px;
    right: 0;
    width: 0;
    height: calc(100vh - 80px);
    background-color: rgba(17, 17, 17, 0.9);
    transition: 0.5s;
    position: fixed;
    z-index: 22;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper__menu-wrapper__inner {
    top: 50px;
    height: calc(100vh - 50px);
  }
}
@media screen and (max-width: 1024px) {
  .header-wrapper__menu-wrapper__inner__box {
    padding-bottom: 140px;
    width: 100%;
    display: none;
  }
}
.header-wrapper input[type=checkbox].input-hidden:checked + .header-wrapper__menu-wrapper .header-wrapper__menu-wrapper__inner {
  width: 320px;
  overflow-y: scroll;
}
@media screen and (max-width: 599px) {
  .header-wrapper input[type=checkbox].input-hidden:checked + .header-wrapper__menu-wrapper .header-wrapper__menu-wrapper__inner {
    width: 100vw;
  }
}
.header-wrapper input[type=checkbox].input-hidden:checked + .header-wrapper__menu-wrapper .header-wrapper__menu-wrapper__inner__box {
  display: block;
  overflow: hidden;
  position: relative;
}
.header-wrapper input[type=checkbox].input-hidden:checked + .header-wrapper__menu-wrapper .header-wrapper__menu-btn span::before {
  top: 0;
}
.header-wrapper input[type=checkbox].input-hidden:checked + .header-wrapper__menu-wrapper .header-wrapper__menu-btn span::after {
  bottom: 0;
}
.header-wrapper input[type=checkbox].input-hidden:checked + .header-wrapper__menu-wrapper .header-wrapper__menu-btn::before {
  width: 100vw;
  background-color: rgba(17, 17, 17, 0.5);
}

.copyright {
  margin: 90px 0 40px 300px;
  padding-left: 0.1em;
  width: calc(100% - 300px);
  font-size: 14px;
  line-height: 1.01;
  color: #111;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .copyright {
    width: calc(100vw - 260px);
    margin-left: 260px;
  }
}
@media screen and (max-width: 1200px) {
  .copyright {
    width: calc(100vw - 240px);
    margin-left: 240px;
  }
}
@media screen and (max-width: 1024px) {
  .copyright {
    margin: 60px 0 30px 0;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .copyright {
    margin: 20px 0 20px 0;
    padding-left: 0;
    font-size: 11px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 599px) and (max-width: 320px) {
  .copyright {
    font-size: 10px;
  }
}

.floating-btn {
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #00adef;
  background-image: url(../img/common/icon_search.svg);
  background-repeat: no-repeat;
  background-position: 21px 50%;
  background-size: 28px auto;
  border-radius: 35px;
  display: block;
  position: fixed;
  z-index: 10;
  overflow: hidden;
  transition: 0.5s;
}
@media screen and (max-width: 599px) {
  .floating-btn {
    bottom: auto;
    top: 0;
    right: 50px;
    width: 50px;
    height: 50px;
    background-position: 60% 50%;
    background-size: 18px auto;
    z-index: 20;
  }
}
.floating-btn::before {
  content: "検索する";
  top: 0;
  left: 77px;
  font-size: 17px;
  line-height: 69px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0;
  position: absolute;
  transition: 0.5s;
}
@media screen and (min-width: 1025px) {
  .floating-btn:hover {
    width: 200px;
    background-color: #25b;
  }
  .floating-btn:hover::before {
    opacity: 1;
  }
}

.main-wrapper {
  width: calc(100vw - 300px);
  min-height: calc(100vh - 150px);
  margin-left: 300px;
  padding: 60px 50px 40px 50px;
}
@media screen and (max-width: 1400px) {
  .main-wrapper {
    width: calc(100vw - 260px);
    margin-left: 260px;
  }
}
@media screen and (max-width: 1200px) {
  .main-wrapper {
    padding: 60px 40px 40px 40px;
    width: calc(100vw - 240px);
    margin-left: 240px;
  }
}
@media screen and (max-width: 1024px) {
  .main-wrapper {
    padding: 120px 40px 40px 40px;
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .main-wrapper {
    padding: 75px 20px 20px 20px;
    width: 100%;
    margin-left: 0;
  }
}
.main-wrapper__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
}
.main-wrapper__inner--w900 {
  max-width: 900px;
}

.title-icon02 {
  margin: 0 auto 55px;
  padding-top: 100px;
  padding-left: 0.03em;
  text-align: center;
  font-size: 46px;
  line-height: 1;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-align: center;
  background-image: url(../img/common/icon_info01.svg);
  background-repeat: no-repeat;
  background-size: 76px auto;
  background-position: 50% 0;
}
@media screen and (max-width: 1024px) {
  .title-icon02 {
    margin: 0 auto 40px;
    padding-top: 74px;
    font-size: 42px;
    background-size: 60px auto;
  }
}
@media screen and (max-width: 599px) {
  .title-icon02 {
    margin: 0 auto 25px;
    padding-top: 56px;
    font-size: 32px;
    background-size: 44px auto;
  }
}
.title-icon02__jp {
  margin-top: 12px;
  padding-left: 0.03em;
  font-size: 18px;
  line-height: 1;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 1024px) {
  .title-icon02__jp {
    margin-top: 7px;
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .title-icon02__jp {
    margin-top: 3px;
    font-size: 14px;
  }
}
.title-icon02--result {
  background-image: url(../img/common/icon_search02.svg);
}

#body02 .title-icon02 {
  background-image: url(../img/common/icon_info02.svg);
}

#body03 .title-icon02 {
  background-image: url(../img/common/icon_info03.svg);
}

#body04 .title-icon02 {
  background-image: url(../img/common/icon_info04.svg);
}

#body05 .title-icon02 {
  background-image: url(../img/common/icon_info05.svg);
}

#body06 .title-icon02 {
  background-image: url(../img/common/icon_info06.svg);
}

#body07 .title-icon02 {
  background-image: url(../img/common/icon_info07.svg);
}

.tab {
  margin-bottom: 35px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .tab {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .tab {
    margin: 0 -18px 10px;
    width: auto;
  }
}
.tab__item {
  width: calc((100% - 24px) / 5);
}
@media screen and (max-width: 1500px) {
  .tab__item {
    width: calc((100% - 16px) / 5);
  }
}
@media screen and (max-width: 1024px) {
  .tab__item {
    width: calc((100% - 8px) / 5);
  }
}
@media screen and (max-width: 599px) {
  .tab__item {
    width: calc((100% - 4px) / 5);
  }
}
.tab__item__link {
  width: 100%;
  height: 90px;
  background-color: #aaa;
  display: block;
  position: relative;
}
.tab__item__link::before {
  content: "";
  bottom: -13px;
  left: calc(50% - 12px);
  border-width: 13px 12px 0 12px;
  border-style: solid;
  border-color: #00adef transparent transparent transparent;
  position: absolute;
  transition: 0.5s;
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  .tab__item__link:hover {
    background-color: #00adef;
  }
}
@media screen and (max-width: 1300px) {
  .tab__item__link {
    height: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .tab__item__link {
    height: 70px;
  }
  .tab__item__link::before {
    bottom: -10px;
    left: calc(50% - 9px);
    border-width: 10px 9px 0 9px;
  }
}
@media screen and (max-width: 599px) {
  .tab__item__link {
    height: 50px;
  }
  .tab__item__link::before {
    bottom: -7px;
    left: calc(50% - 6px);
    border-width: 7px 6px 0 6px;
  }
}
.tab__item__link.now {
  background-color: #00adef;
}
.tab__item__link.now::before {
  opacity: 1;
}
.tab__item__link__text {
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
  position: absolute;
  display: block;
  transform: translateY(-50%);
}
@media screen and (max-width: 1500px) {
  .tab__item__link__text {
    font-size: 1.133vw;
  }
}
@media screen and (max-width: 1200px) {
  .tab__item__link__text {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 1024px) {
  .tab__item__link__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .tab__item__link__text {
    font-size: 11px;
  }
}
@media screen and (max-width: 320px) {
  .tab__item__link__text {
    font-size: 10px;
  }
}

.btn01 {
  margin: 0 auto;
  padding-left: 0.1em;
  width: 100%;
  max-width: 360px;
  height: 70px;
  font-size: 18px;
  line-height: 68px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: #00adef;
  background-image: url(../img/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: 28px 50%;
  border-radius: 35px;
  display: block;
}
@media screen and (max-width: 599px) {
  .btn01 {
    height: 50px;
    font-size: 16px;
    line-height: 48px;
    background-size: 14px auto;
    background-position: 20px 50%;
    border-radius: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .btn01:hover {
    background-color: #25b;
    border-radius: 0;
  }
}
.btn01--search {
  background-image: url(../img/common/icon_search.svg);
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-position: 30px 50%;
  border: none;
  display: block;
  cursor: pointer;
  transition: 0.5s;
}

.pager-wrapper {
  margin: 0 auto;
  text-align: center;
}
.pager-wrapper__item {
  margin-left: 7px;
  font-size: 16px;
  line-height: 48px;
  color: #00adef;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  vertical-align: bottom;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .pager-wrapper__item {
    margin-left: 2px;
    font-size: 14px;
    line-height: 39px;
  }
}
.pager-wrapper__item:first-child {
  margin-left: 0;
}
.pager-wrapper__item__link {
  width: 50px;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  color: #00adef;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  background-color: #dee9ea;
  border-radius: 50%;
  display: block;
}
@media screen and (max-width: 599px) {
  .pager-wrapper__item__link {
    width: 36px;
    height: 36px;
    font-size: 15px;
    line-height: 36px;
    vertical-align: bottom;
  }
}
@media screen and (min-width: 1025px) {
  .pager-wrapper__item__link:hover {
    color: #fff;
    background-color: #25b;
    border-radius: 0;
  }
}
.pager-wrapper__item__link.now {
  color: #fff;
  background-color: #00adef;
}
.pager-wrapper__item__back {
  padding-left: 22px;
  height: 50px;
  font-size: 16px;
  line-height: 48px;
  color: #00adef;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background-image: url(../img/common/arrow_back.svg);
  background-repeat: no-repeat;
  background-size: 11px auto;
  background-position: 0 50%;
  display: block;
}
@media screen and (max-width: 599px) {
  .pager-wrapper__item__back {
    padding-left: 0;
    width: 36px;
    height: 36px;
    vertical-align: bottom;
    background-color: #dee9ea;
    background-size: 6px auto;
    background-position: 47% 50%;
    border-radius: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .pager-wrapper__item__back:hover {
    color: #25b;
    background-image: url(../img/common/arrow_back_blue.svg);
  }
}
.pager-wrapper__item__next {
  padding-right: 22px;
  height: 50px;
  font-size: 16px;
  line-height: 46px;
  color: #00adef;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background-image: url(../img/common/arrow_next.svg);
  background-repeat: no-repeat;
  background-size: 11px auto;
  background-position: 100% 50%;
  display: block;
}
@media screen and (max-width: 599px) {
  .pager-wrapper__item__next {
    padding-right: 0;
    width: 36px;
    height: 36px;
    background-color: #dee9ea;
    background-size: 6px auto;
    background-position: 53% 50%;
    border-radius: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .pager-wrapper__item__next:hover {
    color: #25b;
    background-image: url(../img/common/arrow_next_blue.svg);
  }
}

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 20px 20px 10px;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 30px 10px 10px;
  transform: translate3d(0, 0, 0);
  text-align: left;
  color: #2b2e38;
  background: #fff;
}
.remodal--books {
  padding: 30px 20px 30px;
}
.remodal--card {
  padding: 30px 20px 30px;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 32px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1300px;
    padding: 30px;
  }
  .remodal--books {
    padding: 50px 30px 80px;
    max-width: 1000px;
  }
  .remodal--card {
    padding: 50px 30px 80px;
    max-width: 700px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

.search-wrapper {
  padding: 30px;
  width: 100%;
  background-color: #e5f0f3;
}
@media screen and (max-width: 599px) {
  .search-wrapper {
    padding: 10px 10px 20px;
  }
}
.search-wrapper__inner {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .search-wrapper__inner {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .search-wrapper__inner {
    margin-bottom: 15px;
  }
}
.search-wrapper__inner__item {
  margin-top: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.search-wrapper__inner__item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 599px) {
  .search-wrapper__inner__item {
    flex-direction: column;
  }
}
.search-wrapper__inner__item__title {
  width: 160px;
  background-image: url(../img/common/bg_bias.png);
  background-repeat: repeat;
  background-size: 12px auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .search-wrapper__inner__item__title {
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .search-wrapper__inner__item__title {
    padding: 10px 0 12px;
    width: 100%;
    background-size: 6px auto;
  }
}
.search-wrapper__inner__item__title__text {
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 18px;
  line-height: 1.01;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .search-wrapper__inner__item__title__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .search-wrapper__inner__item__title__text {
    top: auto;
    left: auto;
    font-size: 15px;
    position: relative;
    transform: translateY(0);
  }
}
.search-wrapper__inner__item__title__text--category {
  padding-top: 45px;
  background-image: url(../img/common/icon_category.svg);
  background-size: 32px auto;
  background-position: 50% 0;
}
@media screen and (max-width: 1024px) {
  .search-wrapper__inner__item__title__text--category {
    padding-top: 36px;
    background-size: 25.6px auto;
  }
}
@media screen and (max-width: 599px) {
  .search-wrapper__inner__item__title__text--category {
    padding-top: 22.5px;
    background-size: 19.2px auto;
  }
}
.search-wrapper__inner__item__title__text--archive {
  padding-top: 42px;
  background-image: url(../img/common/icon_archive.svg);
  background-size: 35px auto;
  background-position: 48% 0;
}
@media screen and (max-width: 1024px) {
  .search-wrapper__inner__item__title__text--archive {
    padding-top: 33.6px;
    background-size: 28px auto;
  }
}
@media screen and (max-width: 599px) {
  .search-wrapper__inner__item__title__text--archive {
    padding-top: 21px;
    background-size: 21px auto;
  }
}
.search-wrapper__inner__item__inner {
  padding: 20px;
  width: calc(100% - 160px);
  min-height: 170px;
}
@media screen and (max-width: 1024px) {
  .search-wrapper__inner__item__inner {
    padding: 15px;
    width: calc(100% - 120px);
    min-height: 140px;
  }
}
@media screen and (max-width: 599px) {
  .search-wrapper__inner__item__inner {
    padding: 10px;
    width: 100%;
    min-height: 50px;
  }
}
.search-wrapper__inner__item__inner__list {
  margin: -10px auto 0;
  width: 100%;
  max-width: 990px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .search-wrapper__inner__item__inner__list {
    margin: -4px auto 0;
    justify-content: space-between;
  }
}
.search-wrapper__inner__item__inner__list__item {
  margin-top: 10px;
  margin-left: 10px;
  width: calc((99.9% - 40px) / 5);
}
.search-wrapper__inner__item__inner__list__item:nth-child(5n-4) {
  margin-left: 0;
}
@media screen and (max-width: 1300px) {
  .search-wrapper__inner__item__inner__list__item {
    width: calc((99.9% - 30px) / 4);
  }
  .search-wrapper__inner__item__inner__list__item:nth-child(5n-4) {
    margin-left: 10px;
  }
  .search-wrapper__inner__item__inner__list__item:nth-child(4n-3) {
    margin-left: 0;
  }
}
@media screen and (max-width: 1100px) {
  .search-wrapper__inner__item__inner__list__item {
    width: calc((99.9% - 20px) / 3);
  }
  .search-wrapper__inner__item__inner__list__item:nth-child(4n-3) {
    margin-left: 10px;
  }
  .search-wrapper__inner__item__inner__list__item:nth-child(3n-2) {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .search-wrapper__inner__item__inner__list__item {
    margin-left: 0;
    margin-top: 4px;
    width: calc(50% - 2px);
  }
  .search-wrapper__inner__item__inner__list__item:nth-child(5n-4) {
    margin-left: 0;
  }
  .search-wrapper__inner__item__inner__list__item:nth-child(4n-3) {
    margin-left: 0;
  }
  .search-wrapper__inner__item__inner__list__item:nth-child(even) {
    margin-left: 4px;
  }
}
.search-wrapper__inner__item__inner__list__item label {
  padding-left: 44px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  line-height: 58px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background-color: #f2f2f2;
  border: none;
  display: block;
  position: relative;
  transition: 0.5s;
  cursor: pointer;
}
.search-wrapper__inner__item__inner__list__item label::before {
  content: "";
  top: calc(50% - 8px);
  left: 15px;
  width: 16px;
  height: 16px;
  border: 3px solid #9fd4e5;
  position: absolute;
  transition: 0.5s;
}
.search-wrapper__inner__item__inner__list__item label::after {
  content: "";
  top: calc(50% - 3px);
  left: 20px;
  width: 6px;
  height: 6px;
  background-color: #00adef;
  transition: 0.5s;
  opacity: 0;
  position: absolute;
}
@media screen and (min-width: 1025px) {
  .search-wrapper__inner__item__inner__list__item label:hover {
    background-color: #84d6ef;
  }
  .search-wrapper__inner__item__inner__list__item label:hover::before {
    border: 3px solid #fff;
  }
}
@media screen and (max-width: 1024px) {
  .search-wrapper__inner__item__inner__list__item label {
    padding-left: 32px;
    width: 100%;
    height: 50px;
    font-size: 14px;
    line-height: 49px;
  }
  .search-wrapper__inner__item__inner__list__item label::before {
    left: 10px;
  }
  .search-wrapper__inner__item__inner__list__item label::after {
    left: 15px;
  }
}
@media screen and (max-width: 599px) {
  .search-wrapper__inner__item__inner__list__item label {
    padding-left: 26px;
    font-size: 13px;
  }
  .search-wrapper__inner__item__inner__list__item label::before {
    top: calc(50% - 6px);
    left: 8px;
    width: 12px;
    height: 12px;
    border: 2px solid #9fd4e5;
  }
  .search-wrapper__inner__item__inner__list__item label::after {
    top: calc(50% - 2px);
    left: 12px;
    width: 4px;
    height: 4px;
  }
}
@media screen and (max-width: 320px) {
  .search-wrapper__inner__item__inner__list__item label {
    padding-left: 22px;
    font-size: 10px;
    line-height: 48px;
  }
  .search-wrapper__inner__item__inner__list__item label::before {
    left: 6px;
  }
  .search-wrapper__inner__item__inner__list__item label::after {
    left: 10px;
  }
}

.input-hidden {
  display: none;
}

input[type=checkbox].input-hidden:checked + label {
  background-color: #84d6ef;
}
input[type=checkbox].input-hidden:checked + label::before {
  border: 3px solid #fff;
}
@media screen and (max-width: 599px) {
  input[type=checkbox].input-hidden:checked + label::before {
    border-width: 2px;
  }
}
input[type=checkbox].input-hidden:checked + label::after {
  opacity: 1;
}

.search-error {
  margin: 0 auto 10px;
  padding: 15px;
  width: 100%;
  font-size: 16px;
  line-height: 1.3;
  color: #c00;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border: 2px solid #c00;
}
@media screen and (max-width: 599px) {
  .search-error {
    padding: 10px;
    font-size: 14px;
  }
}

.search-results {
  background-color: #f4f4f4;
}
.search-results__result {
  padding: 30px 20px 35px;
  width: 300px;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  background-image: url(../img/common/bg_bias.png);
  background-repeat: repeat;
  background-size: 12px auto;
  display: table-cell;
}
@media screen and (max-width: 1024px) {
  .search-results__result {
    padding: 30px;
    width: 200px;
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .search-results__result {
    padding: 10px;
    width: 100%;
    font-size: 15px;
    background-size: 6px auto;
    display: block;
  }
}
.search-results__result__number {
  font-size: 2em;
  color: #ff0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .search-results__result__number {
    font-size: 1.3em;
  }
}
.search-results__detail {
  padding: 35px;
  width: calc(100% - 300px);
  vertical-align: middle;
  display: table-cell;
}
@media screen and (max-width: 1024px) {
  .search-results__detail {
    padding: 25px 30px;
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 599px) {
  .search-results__detail {
    padding: 17px 20px 22px;
    width: 100%;
    display: block;
  }
}
.search-results__detail__title {
  font-size: 16px;
  line-height: 1.3;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .search-results__detail__title {
    font-size: 15px;
  }
}
@media screen and (max-width: 599px) {
  .search-results__detail__title {
    font-size: 14px;
  }
}
.search-results__detail__item {
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .search-results__detail__item {
    margin-top: 7px;
  }
}
@media screen and (max-width: 599px) {
  .search-results__detail__item {
    margin-top: 10px;
  }
}
.search-results__detail__item__category {
  padding-left: 1em;
  width: 7em;
  font-size: 16px;
  line-height: 1.3;
  color: #111;
  float: left;
  position: relative;
}
.search-results__detail__item__category::after {
  content: ":";
}
@media screen and (max-width: 1024px) {
  .search-results__detail__item__category {
    font-size: 15px;
  }
}
@media screen and (max-width: 599px) {
  .search-results__detail__item__category {
    margin-bottom: 2px;
    font-size: 14px;
    float: none;
  }
  .search-results__detail__item__category::after {
    content: "";
  }
}
.search-results__detail__item__category::before {
  content: "";
  top: 0.25em;
  left: 0.2em;
  width: 0.6em;
  height: 0.6em;
  background-color: #00adef;
  border-radius: 50%;
  position: absolute;
}
.search-results__detail__item__inner {
  width: calc(100% - 7em);
  font-size: 16px;
  line-height: 1.3;
  color: #111;
  text-align: justify;
  float: right;
}
@media screen and (max-width: 1024px) {
  .search-results__detail__item__inner {
    font-size: 15px;
  }
}
@media screen and (max-width: 599px) {
  .search-results__detail__item__inner {
    padding-left: 1em;
    width: auto;
    font-size: 14px;
    float: none;
  }
}
.search-results__detail__item__inner__item {
  display: inline;
}
.search-results__detail__item__inner__item::after {
  content: "、";
}
.search-results__detail__item__inner__item:last-child::after {
  content: "";
}

.reserch-btn-wrapper {
  margin: 20px 0 40px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .reserch-btn-wrapper {
    margin: 10px 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .reserch-btn-wrapper {
    margin: 10px 0 20px;
  }
}
.reserch-btn-wrapper__link {
  padding-left: 28px;
  font-size: 16px;
  line-height: 18px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  background-image: url(../img/common/arrow01.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: 0 50%;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .reserch-btn-wrapper__link {
    padding-left: 23px;
    font-size: 15px;
    line-height: 17px;
    background-size: 17px auto;
  }
}
@media screen and (max-width: 599px) {
  .reserch-btn-wrapper__link {
    padding-left: 20px;
    font-size: 14px;
    line-height: 16px;
    background-size: 16px auto;
  }
}
@media screen and (min-width: 1025px) {
  .reserch-btn-wrapper__link:hover {
    color: #00adef;
  }
}

.card-wrapper__title {
  margin-bottom: 30px;
  padding-left: 0.1em;
  font-size: 36px;
  line-height: 1.01;
  color: #00adef;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .card-wrapper__title {
    padding-left: 0;
    margin-bottom: 20px;
    font-size: 28.8px;
    letter-spacing: 0;
  }
}
.card-wrapper__img {
  margin: 0 auto 30px;
  width: 100%;
  max-width: 320px;
}
@media screen and (max-width: 599px) {
  .card-wrapper__img {
    margin-bottom: 15px;
  }
}
.card-wrapper__text {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.9;
  color: #111;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .card-wrapper__text {
    margin-bottom: 15px;
    font-size: 14px;
    text-align: justify;
  }
}

.books-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
.books-wrapper__title {
  margin-bottom: 30px;
  padding-top: 55px;
  padding-left: 0.2em;
  font-size: 36px;
  line-height: 1.01;
  color: #00adef;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  background-image: url(../img/common/icon_books_blue.svg);
  background-repeat: no-repeat;
  background-size: 45px auto;
  background-position: 50% 0;
}
@media screen and (max-width: 599px) {
  .books-wrapper__title {
    margin-bottom: 20px;
    padding-top: 44px;
    font-size: 28.8px;
    background-size: 36px auto;
  }
}
.books-wrapper__title-obi {
  margin-bottom: 20px;
  width: 100%;
  height: 40px;
  font-size: 18px;
  line-height: 38px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
  background-color: #00adef;
}
@media screen and (max-width: 599px) {
  .books-wrapper__title-obi {
    margin-bottom: 10px;
    height: 35px;
    font-size: 15px;
    line-height: 33px;
  }
}
.books-wrapper__text {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.9;
  color: #111;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .books-wrapper__text {
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.books-wrapper__table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
@media screen and (max-width: 599px) {
  .books-wrapper__table {
    display: block;
    border-top: none;
  }
}
.books-wrapper__table th {
  width: 22.5%;
  font-size: 14px;
  line-height: 1.01;
  color: #00adef;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  background-color: #e5f0f3;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .books-wrapper__table th {
    width: 100%;
    height: 35px;
    font-size: 14px;
    line-height: 34px;
    text-align: center;
    border-width: 1px 0 0 0;
    display: block;
  }
}
.books-wrapper__table td {
  padding: 25px 30px;
  font-size: 14px;
  line-height: 1.85;
  color: #111;
  text-align: justify;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .books-wrapper__table td {
    padding: 15px 20px;
    font-size: 14px;
    border: none;
    display: block;
  }
}
.books-wrapper__table td .text-link {
  color: #00adef;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .books-wrapper__table td .text-link:hover {
    color: #e96087;
    text-decoration: none;
  }
}
.books-wrapper__table td .tel-link {
  color: #111;
  cursor: auto;
}
@media screen and (max-width: 599px) {
  .books-wrapper__table td .tel-link {
    color: #00adef;
    text-decoration: underline;
  }
}
.books-wrapper__btn-wrapper {
  margin: 0 auto 30px;
  max-width: 740px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .books-wrapper__btn-wrapper {
    margin-bottom: 20px;
  }
}
.books-wrapper__btn-wrapper__item {
  width: calc(50% - 5px);
}
.books-wrapper__btn-wrapper__item:first-child {
  margin-right: 5px;
}
@media screen and (max-width: 599px) {
  .books-wrapper__btn-wrapper__item {
    margin-top: 10px;
    width: 100%;
  }
  .books-wrapper__btn-wrapper__item:first-child {
    margin-top: 0;
    margin-right: 0;
  }
}

#wysiwyg {
  /*デフォルトの処理*/
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  /*各テンプレートを囲むbox【必須】*/
  /*タイトル処理*/
  /*キャッチコピーの処理*/
  /*本文テキスト・写真回り込み処理*/
  /*ボタン*/
  /*写真の処理*/
  /*リスト*/
  /*テーブル*/
  /*youtube*/
  /*以下テンプレート外*/
}
@media screen and (max-width: 1024px) {
  #wysiwyg {
    font-size: 15px;
    line-height: 1.9;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg {
    font-size: 14px;
    line-height: 1.8;
  }
}
#wysiwyg a {
  color: #00adef;
  text-decoration: underline;
}
#wysiwyg a:hover {
  color: #00adef;
  text-decoration: none;
}
#wysiwyg img {
  width: auto;
  max-width: 100%;
  height: auto;
}
#wysiwyg .box {
  margin-bottom: 40px;
  *zoom: 1;
}
#wysiwyg .box:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 599px) {
  #wysiwyg .box {
    margin-bottom: 25px;
  }
}
#wysiwyg .title-line {
  margin-bottom: -25px;
  padding: 0 0 15px 28px;
  font-size: 20px;
  line-height: 1.2em;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  border-bottom: 1px dotted #bbb;
  position: relative;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line {
    margin-bottom: -10px;
    padding: 0 0 10px 20px;
    font-size: 16px;
  }
}
#wysiwyg .title-line::before {
  content: "";
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 7px solid #00adef;
  position: absolute;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line::before {
    width: 16px;
    height: 16px;
    border: 6px solid #00adef;
  }
}
#wysiwyg .title-obi {
  margin-bottom: -15px;
  padding: 10px 120px 10px 17px;
  font-size: 16px;
  line-height: 1.2em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  background-color: #00adef;
  position: relative;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-obi {
    margin-bottom: -10px;
    padding: 8px 50px 8px 13px;
    font-size: 14px;
  }
}
#wysiwyg .title-obi::before {
  content: "";
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background-image: url(../img/common/bg_dot.png);
  position: absolute;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-obi::before {
    width: 40px;
    background-size: 1px auto;
  }
}
#wysiwyg .title-icon {
  margin-bottom: -20px;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.2em;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-icon {
    margin-bottom: -10px;
    padding-left: 22px;
    font-size: 14px;
  }
}
#wysiwyg .title-icon::before {
  content: "";
  top: 7px;
  left: 0;
  width: 20px;
  height: 3px;
  background-color: #00adef;
  position: absolute;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-icon::before {
    top: 7px;
    width: 16px;
    height: 2px;
  }
}
#wysiwyg .title-icon::after {
  content: "";
  top: 7px;
  left: 0;
  width: 10px;
  height: 3px;
  background-color: #111;
  position: absolute;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-icon::after {
    top: 7px;
    width: 8px;
    height: 2px;
  }
}
#wysiwyg .copy01 {
  margin-bottom: -25px;
  font-size: 20px;
  line-height: 1.7;
  color: #00adef;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  #wysiwyg .copy01 {
    margin-bottom: -15px;
    font-size: 15px;
  }
}
#wysiwyg .copy02 {
  margin-bottom: -25px;
  font-size: 24px;
  line-height: 1.7;
  color: #00adef;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  #wysiwyg .copy02 {
    margin-bottom: -15px;
    font-size: 16px;
  }
}
#wysiwyg .text {
  font-size: 16px;
  line-height: 2em;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .text {
    font-size: 15px;
    line-height: 1.9em;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .text {
    font-size: 14px;
    line-height: 1.8em;
  }
}
#wysiwyg .text--mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 300;
}
#wysiwyg .img-right {
  margin: 7px 0 30px 30px;
  width: auto;
  max-width: 33%;
  float: right;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  #wysiwyg .img-right {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
#wysiwyg .img-left {
  margin: 7px 30px 30px 0;
  width: auto;
  max-width: 33%;
  float: left;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  #wysiwyg .img-left {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
#wysiwyg .btn-wrapper {
  text-align: center;
}
#wysiwyg .btn-wrapper a {
  padding: 20px 40px 20px 25px;
  font-size: 16px;
  line-height: 1.2em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  background-color: #00adef;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  #wysiwyg .btn-wrapper a {
    padding: 15px 30px 15px 20px;
    font-size: 14px;
    text-align: left;
  }
}
#wysiwyg .btn-wrapper a::before {
  content: "";
  top: calc(50% - 4px);
  right: 15px;
  border-width: 4px 0 4px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
}
#wysiwyg .btn-wrapper a:hover {
  color: #fff;
  background-color: #111;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .btn-wrapper a:hover {
    background-color: #00adef;
  }
}
#wysiwyg .photo-3 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#wysiwyg .photo-3::after {
  content: none;
}
#wysiwyg .photo-3 li {
  margin-left: 10px;
  width: calc((99.9% - 20px) / 3);
}
#wysiwyg .photo-3 li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  #wysiwyg .photo-3 li {
    display: block;
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
  }
  #wysiwyg .photo-3 li:first-child {
    margin-top: 0;
  }
}
#wysiwyg .photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#wysiwyg .photo-2::after {
  content: none;
}
#wysiwyg .photo-2 li {
  margin-left: 10px;
  width: calc((99.9% - 10px) / 2);
}
#wysiwyg .photo-2 li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  #wysiwyg .photo-2 li {
    margin-left: 5px;
    width: calc((100% - 5px) / 2);
  }
}
#wysiwyg .photo-1 {
  width: 100%;
  text-align: center;
}
#wysiwyg .caption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 599px) {
  #wysiwyg .caption {
    margin-top: 5px;
    font-size: 12px;
  }
}
#wysiwyg .list-wrapper {
  padding: 30px;
  background-color: #f7f7f7;
  list-style: none;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper {
    padding: 20px;
  }
}
#wysiwyg .list-wrapper li {
  margin-top: 10px;
  padding-left: 1.2em;
  font-size: 16px;
  line-height: 1.5em;
  text-align: justify;
  position: relative;
}
#wysiwyg .list-wrapper li:first-child {
  margin-top: 0;
}
#wysiwyg .list-wrapper li::before {
  content: "";
  top: 6px;
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: #00adef;
  position: absolute;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper li {
    margin-top: 7px;
    font-size: 13px;
  }
  #wysiwyg .list-wrapper li::before {
    content: "";
    top: 5px;
    left: 0px;
    width: 6px;
    height: 6px;
  }
}
#wysiwyg .table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
#wysiwyg .table thead th {
  padding: 15px 10px;
  font-size: 15px;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #00adef;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table thead th {
    padding: 7px 5px 5px;
    font-size: 12px;
  }
}
#wysiwyg .table th {
  padding: 15px 10px;
  font-size: 15px;
  line-height: 1.3em;
  color: #111;
  text-align: center;
  vertical-align: middle;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table th {
    padding: 7px 5px 5px;
    font-size: 12px;
  }
}
#wysiwyg .table td {
  padding: 15px;
  font-size: 15px;
  line-height: 1.3em;
  color: #111;
  text-align: justify;
  vertical-align: middle;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table td {
    padding: 7px 5px 5px;
    font-size: 12px;
  }
}
#wysiwyg .youtube-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  position: relative;
}
#wysiwyg .youtube-wrapper::before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
#wysiwyg .youtube-wrapper iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
#wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
#wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
#wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
#wysiwyg h1 {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
#wysiwyg h2 {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}
#wysiwyg h3 {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
  color: #111;
}
#wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  color: #111;
}
#wysiwyg h5 {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
#wysiwyg h6 {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
#wysiwyg ul {
  padding-left: 40px;
  list-style-type: disc;
}
#wysiwyg ol {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
#wysiwyg blockquote {
  padding-left: 1em;
}
#wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
}
#wysiwyg hr {
  display: block;
}
#wysiwyg em {
  font-style: italic !important;
}
#wysiwyg strong {
  font-weight: bold !important;
}
#wysiwyg em strong, #wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

#body02 .copy01 {
  color: #e96087;
}
#body02 .copy02 {
  color: #e96087;
}
#body02 thead th {
  background-color: #e96087 !important;
}
#body02 .list-wrapper li::before {
  background-color: #e96087;
}
#body02 .title-line::before {
  border-color: #e96087;
}
#body02 .title-obi {
  background-color: #e96087;
}
#body02 .title-icon::before {
  background-color: #e96087;
}

#body03 .copy01 {
  color: #48a5b3;
}
#body03 .copy02 {
  color: #48a5b3;
}
#body03 thead th {
  background-color: #48a5b3 !important;
}
#body03 .list-wrapper li::before {
  background-color: #48a5b3;
}
#body03 .title-line::before {
  border-color: #48a5b3;
}
#body03 .title-obi {
  background-color: #48a5b3;
}
#body03 .title-icon::before {
  background-color: #48a5b3;
}

#body04 .copy01 {
  color: #f2885f;
}
#body04 .copy02 {
  color: #f2885f;
}
#body04 thead th {
  background-color: #f2885f !important;
}
#body04 .list-wrapper li::before {
  background-color: #f2885f;
}
#body04 .title-line::before {
  border-color: #f2885f;
}
#body04 .title-obi {
  background-color: #f2885f;
}
#body04 .title-icon::before {
  background-color: #f2885f;
}

#body05 .copy01 {
  color: #7b529a;
}
#body05 .copy02 {
  color: #7b529a;
}
#body05 thead th {
  background-color: #7b529a !important;
}
#body05 .list-wrapper li::before {
  background-color: #7b529a;
}
#body05 .title-line::before {
  border-color: #7b529a;
}
#body05 .title-obi {
  background-color: #7b529a;
}
#body05 .title-icon::before {
  background-color: #7b529a;
}

#body06 .copy01 {
  color: #5ca03d;
}
#body06 .copy02 {
  color: #5ca03d;
}
#body06 thead th {
  background-color: #5ca03d !important;
}
#body06 .list-wrapper li::before {
  background-color: #5ca03d;
}
#body06 .title-line::before {
  border-color: #5ca03d;
}
#body06 .title-obi {
  background-color: #5ca03d;
}
#body06 .title-icon::before {
  background-color: #5ca03d;
}

#body07 .copy01 {
  color: #e96087;
}
#body07 .copy02 {
  color: #e96087;
}
#body07 thead th {
  background-color: #e96087 !important;
}
#body07 .list-wrapper li::before {
  background-color: #e96087;
}
#body07 .title-line::before {
  border-color: #e96087;
}
#body07 .title-obi {
  background-color: #e96087;
}
#body07 .title-icon::before {
  background-color: #e96087;
}

.login {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/login/bg_login.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0;
  position: fixed;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .login {
    background-size: 100% auto;
    background-position: 0 100%;
  }
}
@media screen and (max-width: 320px) {
  .login {
    background-position: 0 115%;
  }
}

.login-wrapper {
  padding: 100px 50px 120px;
}
@media screen and (max-width: 599px) {
  .login-wrapper {
    padding: 0;
  }
}
.login-wrapper__box {
  margin: 0 auto;
  width: 100%;
  max-width: 530px;
}
.login-wrapper__box__title {
  padding: 27px 20px 23px;
  text-align: center;
  background-color: #00adef;
}
@media screen and (max-width: 599px) {
  .login-wrapper__box__title {
    padding: 17px 20px 15px;
  }
}
.login-wrapper__box__title img {
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .login-wrapper__box__title img {
    max-width: 80%;
  }
}
.login-wrapper__box__inner {
  padding: 40px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .login-wrapper__box__inner {
    padding: 20px;
  }
}
.login-wrapper__box__inner__form {
  padding: 30px 20px 40px;
  background-color: #e7eef3;
}
@media screen and (max-width: 599px) {
  .login-wrapper__box__inner__form {
    padding: 30px 20px;
  }
}
.login-wrapper__box__inner__form__title {
  margin-bottom: 25px;
  padding-top: 50px;
  padding-left: 0.03em;
  font-size: 26px;
  line-height: 1.01;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  background-image: url(../img/login/icon_lock.svg);
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-position: 51% 0;
}
@media screen and (max-width: 599px) {
  .login-wrapper__box__inner__form__title {
    margin-bottom: 20px;
    padding-top: 40px;
    font-size: 20px;
    background-size: 35px auto;
  }
}
.login-wrapper__box__inner__form__list {
  margin: 0 auto 20px;
  width: 100%;
  max-width: 470px;
}
@media screen and (max-width: 599px) {
  .login-wrapper__box__inner__form__list {
    margin-bottom: 10px;
  }
}
.login-wrapper__box__inner__form__list__item {
  margin-top: 10px;
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 599px) {
  .login-wrapper__box__inner__form__list__item {
    margin-top: 10px;
  }
}
.login-wrapper__box__inner__form__list__item:first-child {
  margin-top: 0;
}
.login-wrapper__box__inner__form__list__item__name {
  width: 50px;
  height: 60px;
  font-size: 20px;
  line-height: 60px;
  color: #111;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .login-wrapper__box__inner__form__list__item__name {
    width: 50px;
    height: 55px;
    font-size: 16px;
    line-height: 55px;
    background-color: #d7e5ee;
  }
}
.login-wrapper__box__inner__form__list__item__form {
  width: calc(100% - 50px);
}
@media screen and (max-width: 599px) {
  .login-wrapper__box__inner__form__list__item__form {
    width: calc(100% - 50px);
  }
}
.login-wrapper__box__inner__form__list__item__form__input {
  padding-left: 10px;
  width: 100%;
  height: 60px;
  font-size: 18px;
  color: #111;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 0;
  -webkit-appearance: none;
}
@media screen and (max-width: 599px) {
  .login-wrapper__box__inner__form__list__item__form__input {
    height: 55px;
    font-size: 16px;
    border: 1px solid #ddd;
  }
}
.login-wrapper__box__btn {
  margin: 0 auto;
  width: 250px;
  height: 60px;
  font-size: 20px;
  line-height: 58px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  background-color: #00adef;
  border: none;
  display: block;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .login-wrapper__box__btn {
    width: 100%;
    height: 55px;
    font-size: 16px;
    line-height: 54px;
  }
}
@media screen and (min-width: 1025px) {
  .login-wrapper__box__btn:hover {
    background-color: #25b;
  }
}

.important-wrapper {
  margin-bottom: 40px;
  width: 100%;
  background-color: #f4f4f4;
}
@media screen and (max-width: 800px) {
  .important-wrapper {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .important-wrapper {
    margin: 0 auto 20px;
    width: auto;
  }
}
.important-wrapper__title {
  padding: 35px;
  width: 300px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  background-color: #c00;
  display: table-cell;
}
@media screen and (max-width: 1024px) {
  .important-wrapper__title {
    padding: 30px;
    width: 200px;
    font-size: 17px;
  }
}
@media screen and (max-width: 599px) {
  .important-wrapper__title {
    padding: 10px;
    width: 100%;
    font-size: 15px;
    display: block;
  }
}
.important-wrapper__text-area {
  padding: 35px;
  width: calc(100% - 300px);
  vertical-align: middle;
  display: table-cell;
}
@media screen and (max-width: 1024px) {
  .important-wrapper__text-area {
    padding: 30px;
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 599px) {
  .important-wrapper__text-area {
    padding: 15px 20px;
    width: 100%;
    display: block;
  }
}
.important-wrapper__text-area__item {
  margin-top: 15px;
}
.important-wrapper__text-area__item:first-child {
  margin-top: 0;
}
.important-wrapper__text-area__item__link {
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: justify;
  display: block;
}
@media screen and (max-width: 1024px) {
  .important-wrapper__text-area__item__link {
    font-size: 15px;
  }
}
@media screen and (max-width: 599px) {
  .important-wrapper__text-area__item__link {
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .important-wrapper__text-area__item__link:hover {
    color: #c00;
  }
}

.information-bnr {
  margin: 0 0 40px;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .information-bnr {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .information-bnr {
    margin-bottom: 20px;
  }
}
.information-bnr__item {
  margin-left: 10px;
  width: 300px;
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .information-bnr__item {
    margin-left: 0;
    width: calc(50% - 5px);
    display: block;
    float: right;
  }
  .information-bnr__item:first-child {
    float: left;
  }
}
@media screen and (max-width: 599px) {
  .information-bnr__item {
    width: calc(50% - 1px);
  }
}
.information-bnr__item__bnr {
  padding-left: 40px;
  width: 100%;
  height: 70px;
  font-size: 18px;
  line-height: 68px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: center;
  background-color: #8ab;
  display: block;
}
@media screen and (max-width: 599px) {
  .information-bnr__item__bnr {
    padding-left: 30px;
    height: 50px;
    font-size: 3.2vw;
    line-height: 48px;
  }
}
@media screen and (min-width: 1025px) {
  .information-bnr__item__bnr:hover {
    background-color: #25b;
  }
}
.information-bnr__item__bnr--card {
  background-image: url(../img/common/icon_card.svg);
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-repeat: no-repeat;
  background-position: 20px 50%;
}
@media screen and (max-width: 599px) {
  .information-bnr__item__bnr--card {
    background-size: 26px auto;
    background-position: 13px 50%;
  }
}
.information-bnr__item__bnr--books {
  padding-left: 30px;
  letter-spacing: 0.15em;
  background-image: url(../img/common/icon_books.svg);
  background-repeat: no-repeat;
  background-size: 34px auto;
  background-repeat: no-repeat;
  background-position: 25px 50%;
}
@media screen and (max-width: 599px) {
  .information-bnr__item__bnr--books {
    background-size: 22.1px auto;
    background-position: 16.25px 50%;
  }
}

.information-list {
  margin: 0 auto 60px;
}
@media screen and (max-width: 1024px) {
  .information-list {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .information-list {
    margin: 0 -18px 20px;
  }
}
.information-list__item {
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .information-list__item {
    margin-top: 2px;
  }
}
.information-list__item:first-child {
  margin-top: 0;
}
.information-list__item__link {
  padding: 30px 40px;
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  background-color: #f4f4f4;
  display: block;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .information-list__item__link {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .information-list__item__link {
    padding: 20px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .information-list__item__link:hover {
    background-color: #e7ecee;
    transform: scale(1.05);
  }
}
.information-list__item__link__date {
  width: 290px;
  float: left;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .information-list__item__link__date {
    width: 250px;
    margin-bottom: 10px;
    float: none;
  }
}
@media screen and (max-width: 599px) {
  .information-list__item__link__date {
    width: 210px;
    margin-bottom: 5px;
  }
}
.information-list__item__link__date .icon-info {
  top: -2px;
  right: 21px;
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .information-list__item__link__date .icon-info {
    top: -1px;
    right: 0;
  }
}
@media screen and (max-width: 599px) {
  .information-list__item__link__date .icon-info {
    margin-left: 5px;
    top: auto;
    right: auto;
    vertical-align: 10%;
    position: relative;
  }
}
.information-list__item__link__text {
  width: calc(100% - 290px);
  text-align: justify;
  float: right;
}
@media screen and (max-width: 1200px) {
  .information-list__item__link__text {
    width: 100%;
    line-height: 1.8;
    float: none;
  }
}
@media screen and (max-width: 599px) {
  .information-list__item__link__text .icon-new {
    top: 10px;
    right: 10px;
    position: absolute;
  }
}

.information-title {
  margin-bottom: 40px;
  padding: 40px 0 30px;
  border-top: 1px solid #ddd;
  border-bottom: 1px dotted #bbb;
  position: relative;
}
.information-title::before {
  content: "";
  top: -1px;
  right: 0;
  width: 100px;
  height: 1px;
  background-color: #00adef;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .information-title {
    margin-bottom: 40px;
    padding: 25px 0 25px;
  }
}
@media screen and (max-width: 599px) {
  .information-title {
    margin-bottom: 20px;
    padding: 20px 0 20px;
  }
  .information-title::before {
    width: 60px;
  }
}
.information-title__date {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .information-title__date {
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 599px) {
  .information-title__date {
    margin-bottom: 2px;
    font-size: 14px;
  }
}
.information-title__date .icon-info {
  margin-left: 10px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .information-title__date .icon-info {
    margin-left: 5px;
    vertical-align: 10%;
    position: relative;
  }
}
.information-title__date .icon-new {
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .information-title__date .icon-new {
    margin-left: 5px;
  }
}
.information-title__copy {
  font-size: 30px;
  line-height: 1.67;
  color: #111;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .information-title__copy {
    font-size: 26px;
  }
}
@media screen and (max-width: 599px) {
  .information-title__copy {
    font-size: 18px;
  }
}

.information-btn-wrapper {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px dotted #bbb;
}
@media screen and (max-width: 1024px) {
  .information-btn-wrapper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .information-btn-wrapper {
    margin-top: 30px;
    padding-top: 20px;
  }
}

.icon-new {
  margin-left: 0.5em;
  font-size: 16px;
  line-height: 1.5;
  color: #c00;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .icon-new {
    line-height: 1.7;
  }
}
@media screen and (max-width: 1024px) {
  .icon-new {
    font-size: 15px;
  }
}
@media screen and (max-width: 599px) {
  .icon-new {
    font-size: 14px;
  }
}

.icon-info {
  width: 130px;
  height: 26px;
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
  background-color: #00adef;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .icon-info {
    width: 120px;
    height: 22px;
    font-size: 13px;
    line-height: 22px;
  }
}
@media screen and (max-width: 599px) {
  .icon-info {
    width: 100px;
    height: 18px;
    font-size: 11px;
    line-height: 17px;
  }
}
.icon-info--02 {
  background-color: #e96087;
}
.icon-info--03 {
  background-color: #48a5b3;
}
.icon-info--04 {
  background-color: #f2885f;
}
.icon-info--05 {
  background-color: #7b529a;
}
.icon-info--06 {
  background-color: #5ca03d;
}
.icon-info--07 {
  background-color: #e96087;
}
.icon-info--08 {
  background-color: #f3bb00;
}
.icon-info--09 {
  background-color: #48c;
}

.icon-pdf {
  margin-left: 5px;
  width: 16px;
  height: 22px;
  vertical-align: -20%;
  background-image: url(../img/common/icon_pdf.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .icon-pdf {
    bottom: 10px;
    right: 10px;
    position: absolute;
  }
}

#body02 .information-title::before {
  background-color: #e96087;
}

#body03 .information-title::before {
  background-color: #48a5b3;
}

#body04 .information-title::before {
  background-color: #f2885f;
}

#body05 .information-title::before {
  background-color: #7b529a;
}

#body06 .information-title::before {
  background-color: #5ca03d;
}

#body07 .information-title::before {
  background-color: #e96087;
}/*# sourceMappingURL=style.css.map */