@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&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;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .pctb {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 599px) and (max-width: 1024px) {
  .tb {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/*--------------------------------------------------------

	リセット : 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;
  }
}

/*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[class],
ol[class] {
  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;
}

@media screen and (min-width: 1025px) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 0;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.1s;
  text-decoration: none;
}

/*すべての要素の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 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -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;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
button::focus,
input[type=submit]::focus,
input[type=button]::focus,
input[type=search]::focus {
  outline-offset: -2px;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-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;
  }
}
/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

/*マージン*/
.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;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}
@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 20px !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;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 1024px) {
  .mb35 {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb35 {
    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;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 30px !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;
  }
}

.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 10px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 10px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 10px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mt30 {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mt40 {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

@media print {
  .sp {
    display: none !important;
  }
  html, body {
    height: auto;
  }
  body {
    width: 1600px;
    -webkit-print-color-adjust: exact;
    zoom: 71%;
  }
  #header {
    position: relative !important;
  }
  /*　------- ↓その他参考例　---------

  .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: 5mm 5mm;
}
/*--------------------------------------------------------
body設定
----------------------------------------------------------*/
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*ヘッダー*/
#header {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  *zoom: 1;
  background-color: #fff;
  border-bottom: 1px solid #e0e0db;
  z-index: 100;
  transition: 0.3s;
}
#header:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1024px) {
  #header {
    height: 70px;
  }
}
@media screen and (max-width: 599px) {
  #header {
    height: 60px;
  }
}

.header-logo {
  max-width: 336px;
  padding-top: 16px;
  margin-left: 17px;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .header-logo:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .header-logo {
    margin-left: 8px;
    padding-top: 14px;
    max-width: 240px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    padding-top: 14px;
    margin-left: 5px;
    max-width: 180px;
  }
}

#m-nav {
  display: none;
}

#m-nav-pc {
  position: absolute;
  top: 0;
  right: 316px;
  margin-top: 33px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
@media screen and (max-width: 1400px) {
  #m-nav-pc {
    margin-top: 32px;
  }
}
@media screen and (max-width: 1200px) {
  #m-nav-pc {
    display: none;
  }
}
#m-nav-pc > li {
  margin-right: 40px;
}
@media screen and (max-width: 1400px) {
  #m-nav-pc > li {
    margin-right: 20px;
  }
}
#m-nav-pc > li > a {
  font-weight: bold;
  font-size: 1.8rem;
  color: #000;
  max-width: 150px;
  text-align: center;
  display: block;
  line-height: 1.3;
  overflow-wrap: break-word;
}
@media screen and (min-width: 1025px) {
  #m-nav-pc > li > a:hover {
    color: #0557A5;
  }
}
@media screen and (max-width: 1400px) {
  #m-nav-pc > li > a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1300px) {
  #m-nav-pc > li > a {
    font-size: 1.5rem;
  }
}
#m-nav-pc > li.selected a {
  color: #0557A5;
}

.header-access {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .header-access {
    right: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .header-access {
    right: 70px;
  }
}
@media screen and (max-width: 599px) {
  .header-access {
    right: 58px;
  }
}
.header-access a {
  width: 90px;
  height: 100%;
  padding-top: 50px;
  display: block;
  color: #fff;
  background-color: #000253;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.03em;
  position: relative;
}
.header-access a img {
  position: absolute;
  width: 18px;
  top: 21px;
  left: 50%;
  margin-left: -9px;
}
@media screen and (min-width: 1025px) {
  .header-access a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1400px) {
  .header-access a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1200px) {
  .header-access a {
    background-color: #181b83;
  }
}
@media screen and (max-width: 1024px) {
  .header-access a {
    width: 70px;
    font-size: 1.2rem;
    padding-top: 40px;
    letter-spacing: -0.05em;
  }
  .header-access a img {
    width: 15px;
    top: 15px;
    margin-left: -7px;
  }
}
@media screen and (max-width: 599px) {
  .header-access a {
    width: 58px;
    font-size: 1.2rem;
    padding-top: 34px;
    letter-spacing: -0.05em;
  }
  .header-access a img {
    top: 12px;
  }
}

.header-search {
  position: absolute;
  top: 0;
  right: 90px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .header-search {
    right: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .header-search {
    right: 140px;
  }
}
@media screen and (max-width: 599px) {
  .header-search {
    right: 116px;
  }
}
.header-search label.search-btn {
  width: 90px;
  height: 100%;
  padding-top: 50px;
  display: block;
  color: #fff;
  background-color: #3C7BAA;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.03em;
  position: relative;
}
.header-search label.search-btn img {
  position: absolute;
  width: 21px;
  top: 22px;
  left: 50%;
  margin-left: -10px;
}
@media screen and (min-width: 1025px) {
  .header-search label.search-btn:hover {
    opacity: 0.9;
  }
}
@media screen and (max-width: 1400px) {
  .header-search label.search-btn {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .header-search label.search-btn {
    width: 70px;
    padding-top: 40px;
    font-size: 1.2rem;
  }
  .header-search label.search-btn img {
    width: 18px;
    top: 15px;
    margin-left: -9px;
  }
}
@media screen and (max-width: 599px) {
  .header-search label.search-btn {
    width: 58px;
    padding-top: 34px;
    font-size: 1.2rem;
    background-size: 18px auto;
    background-position: center 12px;
  }
  .header-search label.search-btn img {
    top: 12px;
  }
}
.header-search > input {
  display: none;
}
.header-search > input:checked ~ .hidden-content {
  pointer-events: auto;
  opacity: 1;
  z-index: 999;
}
@media screen and (max-width: 599px) {
  .header-search > input:checked ~ .search-btn {
    background-image: none;
  }
  .header-search > input:checked ~ .search-btn::before, .header-search > input:checked ~ .search-btn::after {
    content: "";
    position: absolute;
    top: -16px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    margin: auto;
    background-color: #fff;
  }
  .header-search > input:checked ~ .search-btn::before {
    transform: rotate(45deg);
  }
  .header-search > input:checked ~ .search-btn::after {
    transform: rotate(-45deg);
  }
  .header-search > input:checked ~ .search-btn img {
    display: none;
  }
}
.header-search .hidden-content {
  pointer-events: none;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  width: 345px;
  height: 100%;
  padding-left: 25px;
  background-color: #0557A5;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: -99;
}
@media screen and (max-width: 599px) {
  .header-search .hidden-content {
    top: 59px;
    right: -116px;
    width: 100vw;
    height: 80px;
    padding: 0 20px;
  }
}
.header-search .hidden-content form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 250px;
}
@media screen and (max-width: 599px) {
  .header-search .hidden-content form {
    width: 100%;
  }
}
.header-search .hidden-content form input {
  display: block;
}
.header-search .hidden-content form input[type=text] {
  width: calc(100% - 40px);
  height: 40px;
  padding: 5px 10px;
  background-color: #fff;
  border: none;
  color: #111;
  font-size: 1.5rem;
  outline: none;
}
.header-search .hidden-content form input[type=text]::placeholder {
  color: #0557A5;
  font-size: 1.4rem;
}
.header-search .hidden-content form input[type=submit] {
  width: 40px;
  height: 40px;
  background-color: #fff;
  background-image: url("../img/common/icon_search_blue.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px auto;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
}
.header-search .hidden-content .close {
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  width: 21px;
  height: 20px;
  margin: auto 0;
  cursor: pointer;
}
.header-search .hidden-content .close::before, .header-search .hidden-content .close::after {
  content: "";
  position: absolute;
  top: 8px;
  left: -2px;
  width: 25px;
  height: 1px;
  background-color: #fff;
}
.header-search .hidden-content .close::before {
  transform: rotate(45deg);
}
.header-search .hidden-content .close::after {
  transform: rotate(-45deg);
}

.header-textsize {
  position: absolute;
  top: 0;
  right: 180px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .header-textsize {
    right: 270px;
  }
}
@media screen and (max-width: 1024px) {
  .header-textsize {
    display: none;
  }
}
.header-textsize label.textsize-btn {
  width: 90px;
  height: 100%;
  padding-top: 50px;
  display: block;
  color: #fff;
  background-color: #274885;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.03em;
  position: relative;
}
.header-textsize label.textsize-btn img {
  width: 35px;
  position: absolute;
  top: 21px;
  left: 50%;
  margin-left: -17px;
}
@media screen and (min-width: 1025px) {
  .header-textsize label.textsize-btn:hover {
    opacity: 0.9;
  }
}
@media screen and (max-width: 1400px) {
  .header-textsize label.textsize-btn {
    font-size: 1.4rem;
  }
}
.header-textsize > input {
  display: none;
}
.header-textsize > input:checked ~ .hidden-content {
  pointer-events: auto;
  opacity: 1;
  z-index: 999;
}
@media screen and (max-width: 599px) {
  .header-textsize > input:checked ~ .textsize-btn {
    background-image: none;
  }
  .header-textsize > input:checked ~ .textsize-btn::before, .header-textsize > input:checked ~ .textsize-btn::after {
    content: "";
    position: absolute;
    top: -16px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    margin: auto;
    background-color: #fff;
  }
  .header-textsize > input:checked ~ .textsize-btn::before {
    transform: rotate(45deg);
  }
  .header-textsize > input:checked ~ .textsize-btn::after {
    transform: rotate(-45deg);
  }
}
.header-textsize .hidden-content {
  pointer-events: none;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  width: 210px;
  height: 100%;
  padding-left: 25px;
  background-color: #274885;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: -99;
}
@media screen and (max-width: 599px) {
  .header-textsize .hidden-content {
    top: 59px;
    right: -116px;
    width: 100vw;
    height: 80px;
    padding: 0 20px;
  }
}
.header-textsize .hidden-content .textsize-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header-textsize .hidden-content .textsize-list > li {
  margin-right: 10px;
}
.header-textsize .hidden-content .textsize-list > li > button {
  display: block;
  border: 1px solid #fff;
  background-color: transparent;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  color: #fff;
  padding: 10px;
}
.header-textsize .hidden-content .textsize-list > li.active button {
  background-color: #fff;
  color: #30a8cb;
}
.header-textsize .hidden-content .close {
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  width: 21px;
  height: 20px;
  margin: auto 0;
  cursor: pointer;
}
.header-textsize .hidden-content .close::before, .header-textsize .hidden-content .close::after {
  content: "";
  position: absolute;
  top: 8px;
  left: -2px;
  width: 25px;
  height: 1px;
  background-color: #fff;
}
.header-textsize .hidden-content .close::before {
  transform: rotate(45deg);
}
.header-textsize .hidden-content .close::after {
  transform: rotate(-45deg);
}

.header-language {
  position: absolute;
  top: 0;
  right: 271px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .header-language {
    right: 361px;
  }
}
@media screen and (max-width: 1024px) {
  .header-language {
    right: 211px;
  }
}
@media screen and (max-width: 599px) {
  .header-language {
    display: none;
  }
}
.header-language > ul {
  list-style: none;
  height: 100%;
}
.header-language > ul > li {
  width: 45px;
  height: 50%;
}
.header-language > ul > li:first-child {
  margin-bottom: 1px;
}
.header-language > ul > li > a {
  display: block;
  background-color: #E2E9F0;
  color: #000253;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  height: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .header-language > ul > li > a:hover {
    background-color: #cad1d8;
  }
}

@media screen and (min-width: 1201px) {
  .header-menu {
    display: none;
  }
}

#nav-open {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 100%;
  background-color: #000;
  cursor: pointer;
  z-index: 100;
  transition: 0.3s ease;
}
@media screen and (min-width: 1025px) {
  #nav-open:hover > span > span::after {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #nav-open {
    width: 70px;
  }
}
@media screen and (max-width: 599px) {
  #nav-open {
    width: 58px;
  }
}
#nav-open::before {
  content: attr(data-title);
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 51px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  #nav-open::before {
    content: "";
  }
}
@media screen and (max-width: 599px) {
  #nav-open::before {
    content: "";
    padding-top: 0;
  }
}
#nav-open > span {
  position: absolute;
  top: 22px;
  right: 0;
  left: 0;
  width: 30px;
  height: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #nav-open > span {
    top: 24px;
  }
}
@media screen and (max-width: 599px) {
  #nav-open > span {
    top: 20px;
    width: 25px;
  }
}
#nav-open > span > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background-color: #fff;
  transition: all 0.3s ease;
}
#nav-open > span > span::before, #nav-open > span > span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  background-color: #fff;
  transition: all 0.2s ease;
}
#nav-open > span > span::before {
  top: -9px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #nav-open > span > span::before {
    top: -8px;
  }
}
#nav-open > span > span::after {
  bottom: -9px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #nav-open > span > span::after {
    bottom: -8px;
  }
}
#nav-open.active > span > span {
  background-color: transparent;
}
#nav-open.active > span > span::before, #nav-open.active > span > span::after {
  top: 0;
}
#nav-open.active > span > span::before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
#nav-open.active > span > span::after {
  width: 100%;
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

#nav-content {
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 89px;
  width: 70%;
  height: calc(100vh - 90px);
  padding: 100px 50px;
  background-color: rgba(0, 8, 41, 0.8);
  z-index: 98;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  #nav-content {
    top: 69px;
    width: 70%;
  }
}
@media screen and (max-width: 599px) {
  #nav-content {
    width: 100%;
    top: 59px;
    padding: 60px 20px;
    height: calc(100vh - 59px);
  }
}
#nav-content::-webkit-scrollbar {
  width: 6px;
}
#nav-content::-webkit-scrollbar-track {
  background: #888;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
#nav-content::-webkit-scrollbar-thumb {
  background: #000;
  box-shadow: none;
}

#nav-close-overlay {
  position: fixed;
  top: 89px;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  background-color: #1c1c35;
  opacity: 0;
  z-index: 10;
  transition: all 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  #nav-close-overlay {
    top: 69px;
  }
}
@media screen and (max-width: 599px) {
  #nav-close-overlay {
    top: 59px;
    height: calc(100vh - 59px);
  }
}

#nav-input {
  display: none;
}
#nav-input:checked ~ #nav-content {
  opacity: 1;
  pointer-events: auto;
}
#nav-input:checked ~ #nav-close-overlay {
  opacity: 0.4;
  pointer-events: auto;
}

.gnav-sp {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .gnav-sp {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .gnav-sp {
    padding-bottom: 60px;
  }
}
.gnav-sp-list__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.gnav-sp-list__item > a {
  display: block;
  position: relative;
  padding: 13px 45px 13px 10px;
  color: #fff !important;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 300;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .gnav-sp-list__item > a {
    font-size: 1.6rem;
  }
}
.gnav-sp-list__item > a::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px;
}
.gnav-sp-list__item > a:hover {
  background-color: #303a7b;
}
.gnav-sp-list__item.has_lv02 {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
.gnav-sp-list__item.has_lv02 > a::after {
  display: none;
}
.gnav-sp-list__item.has_lv02 .arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 58px;
  cursor: pointer;
}
.gnav-sp-list__item.has_lv02 .arrow::after {
  background: rgba(255, 255, 255, 0.7);
  content: "";
  height: 1px;
  width: 15px;
  right: 21px;
  position: absolute;
  top: 25px;
}
.gnav-sp-list__item.has_lv02 .arrow::before {
  background: rgba(255, 255, 255, 0.7);
  content: "";
  height: 15px;
  width: 1px;
  right: 28px;
  position: absolute;
  top: 18px;
  transition: 0.3s;
}
.gnav-sp-list__item.has_lv02 .arrow.active::before {
  transform: rotate(90deg);
}
.gnav-sp-list__secondary {
  display: none;
  padding-left: 27px !important;
}
.gnav-sp-list__secondary__item:not(:last-child) {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}
.gnav-sp-list__secondary__item > a {
  display: block;
  position: relative;
  padding: 14px 12px 14px 25px;
  color: #fff !important;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 300;
}
@media screen and (max-width: 599px) {
  .gnav-sp-list__secondary__item > a {
    padding: 12px 12px 12px 25px;
  }
}
.gnav-sp-list__secondary__item > a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto 0;
  z-index: 1;
}
.gnav-sp-list02 {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.gnav-sp-list02__item {
  width: calc((100% - 10px) / 2);
  flex-grow: 1;
  margin-left: 10px;
  margin-bottom: 10px;
}
.gnav-sp-list02__item:nth-child(2n+1) {
  margin-left: 0;
}
.gnav-sp-list02__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 17px 15px 17px 40px;
  color: #fff !important;
  font-size: 1.5rem;
  line-height: 1.3;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 599px) {
  .gnav-sp-list02__item a {
    padding-right: 10px;
    padding-left: 23px;
  }
}
.gnav-sp-list02__item a::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.6);
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .gnav-sp-list02__item a::after {
    left: 8px;
  }
}
.gnav-sp-list03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px 0 0 -10px !important;
  padding: 25px 5px 0px 20px !important;
}
@media screen and (max-width: 599px) {
  .gnav-sp-list03 {
    padding: 25px 5px 0px 15px !important;
  }
}
.gnav-sp-list03__item {
  width: calc((99.9% - 20px) / 2);
  margin: 10px 0 0 10px;
}
@media screen and (max-width: 599px) {
  .gnav-sp-list03__item {
    margin-left: 7px;
  }
}
.gnav-sp-list03__item a {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  color: #fff !important;
  font-size: 1.5rem;
  line-height: 1.3;
  text-decoration: none;
}
.gnav-sp-list03__item a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 7px;
  height: 10px;
  border: 5px solid transparent;
  border-left: 7px solid rgba(255, 255, 255, 0.4);
  border-right: none;
}
@media screen and (max-width: 599px) {
  .gnav-sp-list03__item a {
    font-size: 1.4rem;
  }
  .gnav-sp-list03__item a::before {
    top: 4px;
  }
}
.gnav-sp-language {
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 160px !important;
  margin: 35px auto 0 !important;
}
.gnav-sp-language__item {
  width: 50%;
}
.gnav-sp-language__item a {
  display: block;
  padding: 10px 8px 8px;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}
.gnav-sp-language__item a.jp {
  background-color: #0c6fbb;
}
.gnav-sp-language__item a.en {
  background-color: #0c6fbb;
  border-left: 1px solid #fff;
}
.gnav-sp-sns {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.gnav-sp-sns > li {
  width: 45px;
  margin: 0 7px;
}

.header-common-photo {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 1024px) {
  .header-common-photo {
    top: 70px;
  }
}
@media screen and (max-width: 599px) {
  .header-common-photo {
    top: 60px;
    height: 100px;
  }
}
.header-common-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer {
  background-color: #ebedef;
  padding: 65px 30px;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 50px 20px;
  }
}

.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  *zoom: 1;
}
.footer-inner:after {
  content: "";
  display: table;
  clear: both;
}

.footer-text-box {
  float: left;
  width: calc(100% - 210px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .footer-text-box {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer-text-box {
    margin-bottom: 30px;
  }
}
.footer-text-box__logo {
  max-width: 336px;
}
@media screen and (max-width: 1024px) {
  .footer-text-box__logo {
    margin: 0 auto 20px;
  }
  .footer-text-box__logo img {
    margin-left: -10px;
  }
}
@media screen and (max-width: 599px) {
  .footer-text-box__logo {
    max-width: 280px;
  }
}
.footer-text-box__data {
  margin-left: 60px;
  width: calc(100% - 416px);
}
@media screen and (max-width: 1024px) {
  .footer-text-box__data {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}
.footer-text-box__tel {
  margin-bottom: 10px;
  font-size: 2.8rem;
  padding: 7px;
  color: #0557A5;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  display: block;
}
.footer-text-box__tel span {
  padding-left: 27px;
  padding-right: 7px;
  background-image: url(../img/common/icon_tel_blue.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: 0 9px;
}
.footer-text-box__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer-text-box__links {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer-text-box__links > li {
  padding: 0 20px;
  border-left: 1px solid #bbbbb4;
  line-height: 1;
}
.footer-text-box__links > li:first-child {
  padding-left: 0;
  border-left: none;
}
@media screen and (max-width: 1024px) {
  .footer-text-box__links > li {
    padding: 0 10px;
  }
}
.footer-text-box__links > li > a {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .footer-text-box__links > li > a:hover {
    color: #0557A5;
    text-decoration: underline;
  }
}
@media screen and (max-width: 1024px) {
  .footer-text-box__links > li > a {
    font-size: 1.4rem;
  }
}

.footer-bnr {
  float: right;
  max-width: 210px;
}
@media screen and (min-width: 1025px) {
  .footer-bnr:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .footer-bnr {
    float: none;
    margin: 0 auto;
  }
}

.copyright {
  padding: 20px 30px 20px;
  text-align: center;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .copyright {
    font-size: 1.1rem;
  }
}

#main-col h1 {
  position: relative;
  border-top: 2px solid #0557A5;
  border-bottom: 2px solid #e0e0db;
  font-size: 2.7rem;
  font-weight: bold;
  padding: 36px 0px 34px 40px;
  background-image: url(../img/common/icon_title.png);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: left 47px;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  #main-col h1 {
    font-size: 2.2rem;
    padding: 27px 0px 25px 34px;
    background-position: left 35px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  #main-col h1 {
    font-size: 1.7rem;
    padding: 24px 0px 21px 25px;
    background-position: left 30px;
    background-size: 12px 12px;
    margin-bottom: 25px;
  }
}
#main-col h1 .print-btn {
  display: none;
}

.bread {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: relative;
  margin-bottom: 38px;
  clear: both;
}
@media screen and (max-width: 1024px) {
  .bread {
    display: none;
  }
}
.bread > li {
  position: relative;
  color: #000;
  font-size: 1.4rem;
}
.bread > li:not(:last-child) {
  padding-right: 7px;
}
.bread > li a {
  padding-right: 7px;
  color: #0557A5;
  font-weight: 500;
}
.bread > li a:hover {
  text-decoration: underline;
}
.bread > li span {
  padding-right: 7px;
}

#contents {
  position: relative;
  margin-top: 200px;
}
@media screen and (max-width: 1024px) {
  #contents {
    margin-top: 170px;
  }
}
@media screen and (max-width: 599px) {
  #contents {
    margin-top: 90px;
  }
}
#contents::before {
  background-image: url(../img/common/common_main_photo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  content: "";
  height: 200px;
  width: 100%;
  left: 0;
  position: absolute;
  top: -200px;
}
@media screen and (max-width: 1024px) {
  #contents::before {
    height: 170px;
    top: -170px;
  }
}
@media screen and (max-width: 599px) {
  #contents::before {
    height: 90px;
    top: -90px;
  }
}
#contents .wrapper {
  max-width: 1360px;
  margin: 0 auto;
  padding: 40px 30px 50px;
}
@media screen and (max-width: 1024px) {
  #contents .wrapper {
    padding: 30px 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  #contents .wrapper {
    width: 100%;
    padding: 25px 20px 20px;
  }
}

#main-col {
  clear: both;
  float: right;
  margin-left: 60px;
  width: calc(100% - 340px);
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  #main-col {
    width: 100%;
    margin-left: 0;
    float: none;
    margin-bottom: 40px;
  }
}
.full #main-col {
  float: none;
  width: 100%;
  margin-left: 0;
  /*サイトマップスタイル*/
}
.full #main-col .unit-b {
  width: calc((100% - 60px) / 3);
  float: left;
  margin-left: 30px;
  margin-bottom: 50px;
}
.full #main-col .unit-b:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .full #main-col .unit-b {
    width: 100%;
    float: none;
    margin-left: 0;
    margin-bottom: 40px;
  }
  .full #main-col .unit-b:last-child {
    margin-bottom: 0;
  }
}
.full #main-col .unit-b h2 {
  border-bottom: none;
  background-color: #e8ecf1;
  padding: 15px 15px 14px 25px;
  font-size: 1.9rem;
}
.full #main-col .unit-b h2::before {
  height: 100%;
}
.full #main-col .unit-b h2::after {
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .full #main-col .unit-b h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .full #main-col .unit-b h2 {
    font-size: 1.7rem;
    padding: 14px 14px 13px 18px;
  }
}
.full #main-col .unit-b h2 a {
  text-decoration: none;
}
.full #main-col .unit-b h2 a:hover {
  text-decoration: underline;
}
.full #main-col .unit-b .lst-link > li {
  font-size: 1.5rem;
  border-bottom: 1px dotted #ddd;
}
@media screen and (max-width: 599px) {
  .full #main-col .unit-b .lst-link > li {
    font-size: 1.4rem;
  }
}
.full #main-col .unit-b .lst-link > li > a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 15px 10px 15px 27px;
  line-height: 1.4;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .full #main-col .unit-b .lst-link > li > a {
    padding: 16px 0px 14px 27px;
  }
}
.full #main-col .unit-b .lst-link > li > a::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .full #main-col .unit-b .lst-link > li > a::after {
    top: 22px;
  }
}
.full #main-col .unit-b .lst-link > li > a::before {
  background: #0557A5;
  content: "";
  height: 16px;
  width: 16px;
  left: 0;
  position: absolute;
  top: 17px;
}
@media screen and (max-width: 1024px) {
  .full #main-col .unit-b .lst-link > li > a::before {
    top: 17px;
  }
}
.full #main-col .unit-b .lst-link > li > a:hover {
  text-decoration: underline;
}
.full #main-col .unit-b .lst-link > li.selected > a {
  color: #0557A5;
  background: #e8ecf1;
}
.full #main-col .unit-b .lst-link > li ul {
  border-top: 1px dotted #ddd;
}
.full #main-col .unit-b .lst-link > li ul > li {
  margin-bottom: 0;
  list-style: none;
  border-bottom: 1px dotted #ddd;
}
.full #main-col .unit-b .lst-link > li ul > li:last-child {
  border-bottom: none;
}
.full #main-col .unit-b .lst-link > li ul > li > a {
  position: relative;
  display: block;
  line-height: 1.4;
  color: #000;
  text-decoration: none;
  padding: 13px 5px 13px 25px;
}
@media screen and (max-width: 1024px) {
  .full #main-col .unit-b .lst-link > li ul > li > a {
    padding: 13px 5px 12px 25px;
  }
}
.full #main-col .unit-b .lst-link > li ul > li > a::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0557A5;
  border-right: 1px solid #0557A5;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.full #main-col .unit-b .lst-link > li ul > li > a:hover {
  text-decoration: underline;
}
.full #main-col .unit-b .lst-link > li ul > li.selected a {
  background: #f6f6f6;
}

#right-col {
  width: 280px;
  float: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  #right-col {
    width: 100%;
    float: none;
    margin-bottom: 0px;
  }
}

.page-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .page-top {
    right: 10px;
    bottom: 10px;
  }
}
.page-top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background: #0557A5;
  border-radius: 100%;
  text-indent: -9999px;
}
@media screen and (max-width: 1024px) {
  .page-top a {
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 599px) {
  .page-top a {
    width: 36px;
    height: 36px;
  }
}
.page-top a::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 1024px) {
  .page-top a::before {
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 599px) {
  .page-top a::before {
    top: 7px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.page-top a:hover {
  opacity: 0.8;
}

.skip-hide {
  position: absolute;
  left: -9999em;
  top: -9999em;
}

/*サイドナビ*/
.s-nav-container h3 a {
  display: block;
  padding: 20px 10px;
  font-size: 1.8rem;
  background: #0557A5;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .s-nav-container h3 a {
    font-size: 1.7rem;
    padding: 12px 8px 10px;
  }
}
@media screen and (max-width: 599px) {
  .s-nav-container h3 a {
    font-size: 1.6rem;
  }
}
.s-nav-container .s-nav {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .s-nav-container .s-nav {
    margin-bottom: 25px;
  }
}
.s-nav-container .s-nav > li {
  border-bottom: 1px solid #d3d3d3;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .s-nav-container .s-nav > li {
    font-size: 1.4rem;
  }
}
.s-nav-container .s-nav > li > a {
  position: relative;
  display: block;
  padding: 20px 10px 20px 27px;
  line-height: 1.4;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .s-nav-container .s-nav > li > a {
    padding: 16px 0px 14px 27px;
  }
}
.s-nav-container .s-nav > li > a::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .s-nav-container .s-nav > li > a::after {
    top: 22px;
  }
}
.s-nav-container .s-nav > li > a::before {
  background: #0557A5;
  content: "";
  height: 16px;
  width: 16px;
  left: 0;
  position: absolute;
  top: 23px;
}
@media screen and (max-width: 1024px) {
  .s-nav-container .s-nav > li > a::before {
    top: 17px;
  }
}
.s-nav-container .s-nav > li > a:hover {
  background: #e8ecf1;
}
.s-nav-container .s-nav > li.selected > a {
  color: #0557A5;
  background: #e8ecf1;
}
.s-nav-container .s-nav > li ul {
  border-top: 1px solid #d3d3d3;
  padding-left: 20px;
}
.s-nav-container .s-nav > li ul > li {
  list-style: none;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}
.s-nav-container .s-nav > li ul > li:last-child {
  border-bottom: none;
}
.s-nav-container .s-nav > li ul > li > a {
  position: relative;
  display: block;
  line-height: 1.4;
  color: #000;
  padding: 15px 5px 15px 25px;
}
@media screen and (max-width: 1024px) {
  .s-nav-container .s-nav > li ul > li > a {
    padding: 13px 5px 12px 25px;
  }
}
.s-nav-container .s-nav > li ul > li > a::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0557A5;
  border-right: 1px solid #0557A5;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.s-nav-container .s-nav > li ul > li > a:hover {
  background: #f6f6f6;
}
.s-nav-container .s-nav > li ul > li.selected a {
  background: #f6f6f6;
}

@media screen and (max-width: 1024px) {
  #right-col .banner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  #right-col .banner {
    display: block;
  }
}
#right-col .banner li {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  #right-col .banner li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  #right-col .banner li {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 1024px) {
  #right-col .banner li img {
    width: 100%;
  }
}

.icon-new {
  color: #dd0000;
  font-size: 1.4rem;
}

/*--------------------------------------------------------
pagination
----------------------------------------------------------*/
.pagination {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .pagination {
    margin-bottom: 60px;
  }
}
.pagination__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.pagination__prev, .pagination__next {
  display: block;
  position: relative;
  color: #444;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .pagination__prev, .pagination__next {
    font-weight: 500;
  }
}
.pagination__prev:hover, .pagination__next:hover {
  opacity: 0.7;
}
.pagination__prev {
  margin-right: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .pagination__prev {
    margin-right: 10px;
  }
}
.pagination__next {
  margin-left: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .pagination__next {
    margin-left: 10px;
  }
}
.pagination__num, .pagination__while {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .pagination__num, .pagination__while {
    width: 34px;
    height: 34px;
  }
}
.pagination__num {
  color: #444;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  padding-top: 6px;
}
@media screen and (max-width: 599px) {
  .pagination__num {
    padding-top: 3px;
    font-size: 1.5rem;
  }
}
.pagination__num:hover, .pagination__num.current {
  background-color: #0557A5;
  color: #fff;
}
.pagination__while {
  color: #444;
  font-size: 2rem;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  line-height: 43px;
}
@media screen and (max-width: 599px) {
  .pagination__while {
    width: 15px;
    font-size: 1.6rem;
    line-height: 34px;
  }
}

#wysiwyg {
  /*デフォルトの処理*/
  font-size: 1.6rem;
  line-height: 2;
  text-align: justify;
  /*各テンプレートを囲むbox【必須】*/
  /*タイトル処理*/
  /*キャッチコピーの処理*/
  /*本文テキスト・写真回り込み処理*/
  /*ボタン*/
  /*写真の処理*/
  /*リスト*/
  /*テーブル*/
  /*youtube*/
  /*区切り線*/
  /*以下テンプレート外*/
}
@media screen and (max-width: 1024px) {
  #wysiwyg {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
#wysiwyg a {
  color: #0557A5;
  text-decoration: underline;
}
#wysiwyg a:hover {
  color: #0557A5;
  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: 20px;
  }
}
#wysiwyg .title-line {
  padding-bottom: 20px;
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 500;
  font-weight: bold;
  position: relative;
  border-bottom: 1px solid #e0e0db;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-line {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line {
    font-size: 1.9rem;
    padding-bottom: 15px;
  }
}
#wysiwyg .title-line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 60px;
  height: 3px;
  background-color: #0557A5;
}
#wysiwyg .title-obi {
  font-weight: 500;
  font-size: 2rem;
  padding: 15px 15px 15px 38px;
  line-height: 1.3;
  background-color: #0557A5;
  color: #fff;
  font-weight: bold;
  position: relative;
}
#wysiwyg .title-obi::before {
  content: "";
  width: 25px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 26px;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-obi {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-obi {
    font-size: 1.6rem;
    padding: 13px 12px 12px 23px;
  }
  #wysiwyg .title-obi::before {
    top: 22px;
    width: 15px;
  }
}
#wysiwyg .title-obi02 {
  font-weight: 500;
  font-size: 1.7rem;
  padding: 16px 15px 15px 38px;
  line-height: 1.3;
  background-color: #e8ecf1;
  color: #095d9e;
  font-weight: bold;
  position: relative;
}
#wysiwyg .title-obi02::before {
  content: "";
  width: 25px;
  height: 1px;
  background-color: #095d9e;
  position: absolute;
  left: 0;
  top: 26px;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-obi02 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-obi02 {
    font-size: 1.6rem;
    padding: 13px 12px 12px 23px;
  }
  #wysiwyg .title-obi02::before {
    top: 22px;
    width: 15px;
  }
}
#wysiwyg .title-icon {
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  color: #0557A5;
  line-height: 1.4;
  padding-bottom: 15px;
  border-bottom: 1px dotted #c2c2c2;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-icon {
    font-size: 1.9rem;
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-icon {
    font-size: 1.5rem;
  }
}
#wysiwyg .copy01 {
  margin-bottom: -15px;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #0557A5;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .copy01 {
    margin-bottom: -25px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .copy01 {
    margin-bottom: -5px;
    font-size: 1.6rem;
  }
}
#wysiwyg .copy02 {
  margin-bottom: -15px;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #0557A5;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 500;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .copy02 {
    margin-bottom: -25px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .copy02 {
    margin-bottom: -5px;
    font-size: 1.6rem;
  }
}
#wysiwyg .text {
  font-size: 1.6rem;
  line-height: 2em;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
#wysiwyg .text--mincho {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 500;
}
#wysiwyg .img-right {
  margin: 7px 0 30px 30px;
  width: auto;
  max-width: 33%;
  float: right;
}
@media screen and (max-width: 599px) {
  #wysiwyg .img-right {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
    display: block;
    text-align: center;
  }
}
#wysiwyg .img-left {
  margin: 7px 30px 30px 0;
  width: auto;
  max-width: 33%;
  float: left;
}
@media screen and (max-width: 599px) {
  #wysiwyg .img-left {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
    display: block;
    text-align: center;
  }
}
#wysiwyg .btn-wrapper {
  text-align: center;
}
#wysiwyg .btn-wrapper a {
  margin: 0 auto;
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 16px 50px 18px;
  position: relative;
  text-decoration: none;
  line-height: 1.3;
}
#wysiwyg .btn-wrapper a::before {
  margin-top: -4px;
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  #wysiwyg .btn-wrapper a:hover {
    opacity: 0.7;
  }
}
#wysiwyg .photo-3 {
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#wysiwyg .photo-3::after {
  content: none;
}
#wysiwyg .photo-3 li {
  margin-left: 20px;
  width: calc((99.9% - 40px) / 3);
  text-align: center;
}
#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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#wysiwyg .photo-2::after {
  content: none;
}
#wysiwyg .photo-2 li {
  margin-left: 20px;
  width: calc((99.9% - 20px) / 2);
  text-align: center;
}
#wysiwyg .photo-2 li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  #wysiwyg .photo-2 li {
    margin-left: 10px;
    width: calc((100% - 10px) / 2);
  }
}
#wysiwyg .photo-1 {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
#wysiwyg .caption {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.3em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 599px) {
  #wysiwyg .caption {
    margin-top: 5px;
    font-size: 1.2rem;
  }
}
#wysiwyg .list-wrapper {
  padding: 25px;
  background-color: #fff;
  border: 1px solid #ddd;
  list-style: none;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper {
    padding: 20px;
  }
}
#wysiwyg .list-wrapper li {
  width: 100%;
  margin-top: 10px;
  padding-left: 1.2em;
  font-size: 1.5rem;
  line-height: 1.5em;
  text-align: justify;
  position: relative;
  letter-spacing: 0.05em;
}
#wysiwyg .list-wrapper li:first-child {
  margin-top: 0;
}
#wysiwyg .list-wrapper li::before {
  content: "";
  top: 7px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: #0557A5;
  position: absolute;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper li {
    margin-top: 7px;
    font-size: 1.4rem;
  }
  #wysiwyg .list-wrapper li::before {
    content: "";
    top: 6px;
    left: 0px;
    width: 6px;
    height: 6px;
  }
}
#wysiwyg .list-wrapper02 {
  counter-reset: num;
  padding: 25px;
  background-color: #f7f7f7;
  list-style: none;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper02 {
    padding: 20px;
  }
}
#wysiwyg .list-wrapper02 li {
  width: 100%;
  position: absolute;
  margin-top: 10px;
  padding-left: 40px;
  font-size: 1.5rem;
  line-height: 1.5em;
  text-align: justify;
  position: relative;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper02 li {
    margin-top: 7px;
    padding-left: 25px;
    font-size: 1.4rem;
  }
}
#wysiwyg .list-wrapper02 li:first-child {
  margin-top: 0;
}
#wysiwyg .list-wrapper02 li::before {
  content: counter(num);
  counter-increment: num;
  top: -2px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #0557A5;
  position: absolute;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  line-height: 25px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper02 li::before {
    top: 0;
    left: 0px;
    width: 18px;
    height: 18px;
    font-size: 1.1rem;
    line-height: 18px;
  }
}
#wysiwyg .table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
#wysiwyg .table thead th {
  padding: 15px 10px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #0557A5;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table thead th {
    padding: 10px;
    font-size: 1.3rem;
  }
}
#wysiwyg .table th {
  padding: 15px 10px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3em;
  color: #000;
  text-align: center;
  vertical-align: middle;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table th {
    padding: 10px;
    font-size: 1.3rem;
  }
}
#wysiwyg .table td {
  padding: 15px;
  font-size: 1.5rem;
  line-height: 1.3em;
  color: #000;
  text-align: justify;
  vertical-align: middle;
  border: 1px solid #ddd;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table td {
    padding: 10px;
    font-size: 1.3rem;
  }
}
#wysiwyg .table02 {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
#wysiwyg .table02 th {
  width: 30%;
  padding: 15px 10px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3em;
  color: #000;
  text-align: center;
  vertical-align: middle;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table02 th {
    padding: 10px;
    font-size: 1.3rem;
  }
}
#wysiwyg .table02 td {
  padding: 15px;
  font-size: 1.5rem;
  line-height: 1.3em;
  color: #000;
  text-align: justify;
  vertical-align: middle;
  border: 1px solid #ddd;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table02 td {
    padding: 10px;
    font-size: 1.3rem;
  }
}
#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 .line {
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .line {
    margin-bottom: -10px;
  }
}
#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;
  border-top: none;
  border-bottom: none;
}
#wysiwyg h1::before {
  content: none;
}
#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: #000;
}
#wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  color: #000;
}
#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;
}

.btn01 {
  max-width: 210px;
  margin: 0 auto;
  display: block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 10px 10px 12px;
  position: relative;
  text-align: center;
}
.btn01::before {
  margin-top: -4px;
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn01--back::before {
  right: auto;
  left: 17px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media screen and (min-width: 1025px) {
  .btn01:hover {
    opacity: 0.7;
  }
}

/* ARAYA block
===============================================*/
.clear {
  clear: both;
}

/* 画像左 */
.pos-left {
  float: left;
}

/* 画像右 */
.pos-right {
  float: right;
}

/* 画像中央 */
.pos-center {
  margin: 0 auto;
}

/* テキスト文字詰め */
.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

/* マージン */
.mg-b5 {
  margin-bottom: 5px !important;
}

.mg-b10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mg-b10 {
    margin-bottom: 5px !important;
  }
}

.mg-b15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mg-b15 {
    margin-bottom: 10px !important;
  }
}

.mg-b20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mg-b20 {
    margin-bottom: 10px !important;
  }
}

.mg-b30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mg-b30 {
    margin-bottom: 20px !important;
  }
}

.mg-b40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mg-b40 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mg-b40 {
    margin-bottom: 25px !important;
  }
}

.mg-b50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 1024px) {
  .mg-b50 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mg-b50 {
    margin-bottom: 35px !important;
  }
}

.mg-b60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 1024px) {
  .mg-b60 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 599px) {
  .mg-b60 {
    margin-bottom: 40px !important;
  }
}

#inner-wrap h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 9px 0 15px 18px;
  border-bottom: 1px dotted #bbb;
  position: relative;
}
#inner-wrap h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: calc(100% - 8px);
  background-color: #0557A5;
}
#inner-wrap h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 4px;
  height: 25%;
  background-color: #46b9da;
}
@media screen and (max-width: 1024px) {
  #inner-wrap h2 {
    font-size: 1.9rem;
    padding: 9px 0 15px 20px;
  }
}
@media screen and (max-width: 599px) {
  #inner-wrap h2 {
    margin-bottom: 15px;
    font-size: 1.7rem;
    padding: 9px 0 14px 13px;
  }
  #inner-wrap h2::before {
    width: 3px;
  }
  #inner-wrap h2::after {
    width: 3px;
  }
}
#inner-wrap h3 {
  margin-top: 35px;
  margin-bottom: 20px;
  line-height: 1.3;
  padding-bottom: 13px;
  font-size: 1.9rem;
  font-weight: bold;
  border-bottom: 1px solid #e0e0db;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  #inner-wrap h3 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  #inner-wrap h3 {
    font-size: 1.6rem;
  }
}
#inner-wrap h3::before {
  content: "";
  width: 200px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: #0557A5;
}
@media screen and (max-width: 599px) {
  #inner-wrap h3::before {
    width: 100px;
  }
}
#inner-wrap h4 {
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 15px 15px 12px 40px;
  font-size: 1.6rem;
  color: #0557A5;
  line-height: 1.3;
  font-weight: bold;
  background-color: #e8ecf1;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  #inner-wrap h4 {
    font-size: 1.5rem;
    padding: 14px 15px 12px 32px;
  }
}
#inner-wrap h4::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 16px;
  width: 15px;
  height: 15px;
  border: 4px solid #0557A5;
  border-radius: 50%;
  display: block;
}
@media screen and (max-width: 599px) {
  #inner-wrap h4::before {
    width: 14px;
    height: 14px;
    left: 12px;
  }
}
#inner-wrap .pos-left {
  max-width: 50%;
  margin-bottom: 10px;
  margin-right: 40px;
}
#inner-wrap .pos-left img {
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  #inner-wrap .pos-left {
    max-width: 35%;
    margin-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  #inner-wrap .pos-left {
    max-width: 100%;
    margin-right: 0;
    float: none;
  }
}
#inner-wrap .txt-center {
  margin-bottom: 10px;
}
#inner-wrap .txt-center img {
  margin-bottom: 5px;
}
#inner-wrap .pos-right {
  max-width: 50%;
  margin-bottom: 10px;
  margin-left: 40px;
}
#inner-wrap .pos-right img {
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  #inner-wrap .pos-right {
    max-width: 35%;
    margin-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  #inner-wrap .pos-right {
    max-width: 100%;
    margin-left: 0;
    float: none;
  }
}
@media screen and (max-width: 599px) {
  #inner-wrap .body div.pos-right {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 599px) {
  #inner-wrap .body div.pos-left {
    margin-right: 0 !important;
  }
}
#inner-wrap a {
  color: #0557A5;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  #inner-wrap a:hover {
    text-decoration: none;
  }
}
#inner-wrap ol:not([class]) {
  margin-left: 1.7em;
}
#inner-wrap ol:not([class]) li {
  margin-bottom: 8px;
  line-height: 1.4;
}
#inner-wrap ul:not([class]) {
  margin-left: 1.7em;
}
#inner-wrap ul:not([class]) li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.list-style {
  padding: 40px 40px 22px;
  background-color: #e8ecf1;
}
@media screen and (max-width: 1024px) {
  .list-style {
    padding: 30px 30px 12px;
  }
}
@media screen and (max-width: 599px) {
  .list-style {
    padding: 25px 25px 10px;
  }
}
.list-style > li {
  line-height: 1.3;
  margin-bottom: 18px;
  position: relative;
  padding-left: 23px;
}
@media screen and (max-width: 599px) {
  .list-style > li {
    margin-bottom: 15px;
  }
}
.list-style > li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #0557A5;
}

.wysiwyg-title01 {
  font-weight: 500;
  font-size: 1.7rem;
  padding: 15px 15px 14px 34px;
  line-height: 1.3;
  background-color: #0557A5;
  color: #fff;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}
.wysiwyg-title01::before {
  content: "";
  width: 1px;
  height: calc(100% - 15px);
  background-color: #fff;
  position: absolute;
  left: 15px;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-title01 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-title01 {
    font-size: 1.5rem;
    padding: 13px 12px 12px 23px;
  }
  .wysiwyg-title01::before {
    height: calc(100% - 10px);
    left: 12px;
  }
}

.wysiwyg-title02 {
  margin-bottom: 15px;
  background-color: #e8ecf1;
  font-size: 1.7rem;
  text-align: center;
  padding: 11px 10px 10px;
  color: #004e8a;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .wysiwyg-title02 {
    font-size: 1.5rem;
  }
}

.wysiwyg-title03 {
  margin-bottom: 10px;
  position: relative;
  padding-left: 1.2em;
  line-height: 1.3;
}
.wysiwyg-title03::before {
  content: "●";
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 1.2rem;
  color: #0c6fbb;
}

.wysiwyg-title04 {
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 15px 15px 12px 40px;
  font-size: 1.6rem;
  color: #0557A5;
  line-height: 1.3;
  font-weight: bold;
  background-color: #e8ecf1;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .wysiwyg-title04 {
    font-size: 1.5rem;
    padding: 14px 15px 12px 32px;
  }
}
.wysiwyg-title04::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 16px;
  width: 15px;
  height: 15px;
  border: 4px solid #0557A5;
  border-radius: 50%;
  display: block;
}
@media screen and (max-width: 599px) {
  .wysiwyg-title04::before {
    width: 14px;
    height: 14px;
    left: 12px;
  }
}

.wysiwyg-anchor-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wysiwyg-anchor-list li a {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #ccc;
  line-height: 1.3;
  font-size: 1.6rem;
  padding: 15px 25px;
  text-align: center;
  text-decoration: none !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  color: #000 !important;
}
.wysiwyg-anchor-list li a::before {
  margin-top: -5px;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #0557A5;
  border-right: 1px solid #0557A5;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media screen and (max-width: 599px) {
  .wysiwyg-anchor-list li a {
    padding: 13px 30px;
    font-size: 1.5rem;
  }
  .wysiwyg-anchor-list li a::before {
    right: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .wysiwyg-anchor-list li a:hover {
    background-color: #0557A5;
    color: #fff !important;
    border: 1px solid #0557A5;
  }
  .wysiwyg-anchor-list li a:hover::before {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
.wysiwyg-anchor-list.cl02 li {
  width: calc((100% - 15px) / 2);
  margin-left: 15px;
  margin-bottom: 15px;
}
.wysiwyg-anchor-list.cl02 li:nth-child(2n+1) {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .wysiwyg-anchor-list.cl02 li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.wysiwyg-anchor-list.cl03 li {
  width: calc((100% - 30px) / 3);
  margin-left: 15px;
  margin-bottom: 15px;
}
.wysiwyg-anchor-list.cl03 li:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .wysiwyg-anchor-list.cl03 li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.wysiwyg-anchor-list.cl04 li {
  width: calc((100% - 45px) / 4);
  margin-left: 15px;
  margin-bottom: 15px;
}
.wysiwyg-anchor-list.cl04 li:nth-child(4n+1) {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-anchor-list.cl04 li {
    width: calc((100% - 30px) / 3);
    margin-left: 15px;
    margin-bottom: 15px;
  }
  .wysiwyg-anchor-list.cl04 li:nth-child(4n+1) {
    margin-left: 15px;
  }
  .wysiwyg-anchor-list.cl04 li:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-anchor-list.cl04 li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .wysiwyg-anchor-list.cl04 li:nth-child(4n+1) {
    margin-left: 0;
  }
}
.wysiwyg-anchor-list.cl05 li {
  width: calc((100% - 60px) / 5);
  margin-left: 15px;
  margin-bottom: 15px;
}
.wysiwyg-anchor-list.cl05 li:nth-child(5n+1) {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-anchor-list.cl05 li {
    width: calc((100% - 45px) / 4);
  }
  .wysiwyg-anchor-list.cl05 li:nth-child(5n+1) {
    margin-left: 15px;
  }
  .wysiwyg-anchor-list.cl05 li:nth-child(4n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-anchor-list.cl05 li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .wysiwyg-anchor-list.cl05 li:nth-child(5n+1) {
    margin-left: 0;
  }
}
.wysiwyg-anchor-list.cl06 li {
  width: calc((100% - 50px) / 6);
  margin-left: 10px;
  margin-bottom: 15px;
}
.wysiwyg-anchor-list.cl06 li:nth-child(6n+1) {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-anchor-list.cl06 li {
    width: calc((100% - 45px) / 4);
    margin-left: 15px;
  }
  .wysiwyg-anchor-list.cl06 li:nth-child(6n+1) {
    margin-left: 15px;
  }
  .wysiwyg-anchor-list.cl06 li:nth-child(4n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-anchor-list.cl06 li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .wysiwyg-anchor-list.cl06 li:nth-child(6n+1) {
    margin-left: 0;
  }
}

.wysiwyg-btn-link {
  width: 100%;
  height: 100%;
  display: block;
  background: #edf1f7;
  line-height: 1.3;
  font-size: 1.6rem;
  padding: 18px 15px 18px 45px;
  text-decoration: none !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #0060aa;
  margin-bottom: 10px;
  margin-top: 15px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-btn-link {
    padding: 14px 10px 14px 30px;
    font-size: 1.5rem;
    margin-bottom: 8px;
    margin-top: 13px;
  }
}
.wysiwyg-btn-link::before, .wysiwyg-btn-link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  margin: auto;
}
.wysiwyg-btn-link::before {
  background-color: #0557A5;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  left: 14px;
  top: 18px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-btn-link::before {
    width: 16px;
    height: 16px;
    top: 16px;
    left: 8px;
  }
}
.wysiwyg-btn-link::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 21px;
  top: 26px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-btn-link::after {
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 21px;
    left: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .wysiwyg-btn-link:hover {
    background: #0557A5;
    color: #fff !important;
    opacity: 0.7;
  }
  .wysiwyg-btn-link:hover::before {
    background-color: #fff;
  }
  .wysiwyg-btn-link:hover::after {
    border-color: #0557A5;
  }
}

.wysiwyg-btn-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wysiwyg-btn-list li a {
  width: 100%;
  height: 100%;
  display: block;
  background: #edf1f7;
  line-height: 1.4;
  font-size: 1.6rem;
  padding: 20px 15px 20px 45px;
  text-decoration: none !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #0060aa;
}
@media screen and (max-width: 599px) {
  .wysiwyg-btn-list li a {
    padding: 14px 10px 14px 30px;
    font-size: 1.5rem;
  }
}
.wysiwyg-btn-list li a::before, .wysiwyg-btn-list li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  margin: auto;
}
.wysiwyg-btn-list li a::before {
  background-color: #0557A5;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  left: 14px;
  top: 21px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-btn-list li a::before {
    width: 16px;
    height: 16px;
    top: 16px;
    left: 8px;
  }
}
.wysiwyg-btn-list li a::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 21px;
  top: 29px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-btn-list li a::after {
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 21px;
    left: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .wysiwyg-btn-list li a:hover {
    background: #0557A5;
    color: #fff !important;
    opacity: 0.7;
  }
  .wysiwyg-btn-list li a:hover::before {
    background-color: #fff;
  }
  .wysiwyg-btn-list li a:hover::after {
    border-color: #0557A5;
  }
}
.wysiwyg-btn-list.cl02 li {
  width: calc((100% - 15px) / 2);
  margin-left: 15px;
  margin-top: 0;
  margin-bottom: 15px;
}
.wysiwyg-btn-list.cl02 li:nth-child(2n+1) {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .wysiwyg-btn-list.cl02 li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.wysiwyg-btn-list02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wysiwyg-btn-list02 li a {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #d5d5d5;
  line-height: 1.4;
  font-size: 1.6rem;
  padding: 20px 35px 20px 20px;
  text-decoration: none !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: #000 !important;
}
@media screen and (max-width: 599px) {
  .wysiwyg-btn-list02 li a {
    padding: 15px 25px 15px 15px;
    font-size: 1.5rem;
  }
}
.wysiwyg-btn-list02 li a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  height: 100%;
  background-color: #0557A5;
  display: block;
}
.wysiwyg-btn-list02 li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .wysiwyg-btn-list02 li a::after {
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1025px) {
  .wysiwyg-btn-list02 li a:hover {
    background-color: #f7f7f7;
    opacity: 0.7;
  }
}
.wysiwyg-btn-list02.cl02 li {
  width: calc((100% - 15px) / 2);
  margin-left: 15px;
  margin-top: 0;
  margin-bottom: 15px;
}
.wysiwyg-btn-list02.cl02 li:nth-child(2n+1) {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .wysiwyg-btn-list02.cl02 li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.pre-demo {
  margin-bottom: 30px;
  background-color: #eee;
  font-size: 1.4rem;
  padding: 0 20px;
  line-height: 1.3;
  white-space: pre-wrap;
}
.pre-demo code {
  width: 100%;
  padding: 0;
}

.wysiwyg-icon-link {
  position: relative;
  display: inline-block;
  border: 1px solid #0557A5;
  padding: 15px 25px 15px 50px;
  transition: 0.3s;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #111 !important;
  text-decoration: none !important;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-icon-link {
    padding: 12px 15px 12px 32px;
  }
}
.wysiwyg-icon-link::before, .wysiwyg-icon-link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  margin: auto;
}
.wysiwyg-icon-link::before {
  background-color: #0557A5;
  width: 20px;
  height: 20px;
  left: 20px;
  top: 16px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-icon-link::before {
    width: 16px;
    height: 16px;
    left: 10px;
    top: 14px;
  }
}
.wysiwyg-icon-link::after {
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 26px;
  top: 23px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-icon-link::after {
    top: 19px;
    left: 14px;
  }
}
.wysiwyg-icon-link:hover {
  background-color: #f7f7f7;
  color: #0557A5 !important;
  text-decoration: none !important;
}

.wysiwyg-icon-link2 {
  position: relative;
  display: inline-block;
  border: 2px solid #e3e3e3;
  padding: 13px 15px 13px 30px;
  transition: 0.3s;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #111 !important;
  text-decoration: none !important;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-icon-link2 {
    font-size: 1.4rem;
    padding: 12px 10px 12px 25px;
  }
}
.wysiwyg-icon-link2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #0557A5;
  width: 17px;
  height: 2px;
  margin-top: -2px;
}
.wysiwyg-icon-link2:hover {
  background-color: #f7f7f7;
  color: #0557A5 !important;
  text-decoration: none !important;
}

.wysiwyg-text-link {
  position: relative;
  display: inline-block;
  padding: 0 25px 0 30px;
  transition: 0.3s;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #111 !important;
  text-decoration: none !important;
  margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-text-link {
    padding: 0 15px 0 25px;
  }
}
.wysiwyg-text-link::before, .wysiwyg-text-link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  margin: auto;
}
.wysiwyg-text-link::before {
  background-color: #0557A5;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
}
@media screen and (max-width: 599px) {
  .wysiwyg-text-link::before {
    width: 18px;
    height: 18px;
  }
}
.wysiwyg-text-link::after {
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 6px;
  top: 7px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-text-link::after {
    top: 6px;
    left: 5px;
  }
}
.wysiwyg-text-link:hover {
  color: #0557A5 !important;
  text-decoration: underline !important;
}

.wysiwyg-photo-column2 {
  padding: 0 !important;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wysiwyg-photo-column2 li {
  list-style: none !important;
  width: calc((100% - 30px) / 2);
  text-align: center;
  margin-bottom: 30px;
}
.wysiwyg-photo-column2 li:not(:nth-child(2n)) {
  margin-right: 30px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-column2 li {
    width: 100%;
    margin-bottom: 10px;
  }
  .wysiwyg-photo-column2 li:not(:nth-child(2n)) {
    margin-right: 0;
  }
}
.wysiwyg-photo-column2 li .caption {
  margin-top: 8px;
  display: block;
  line-height: 1.4;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-column2 li .caption {
    font-size: 1.4rem;
  }
}
.wysiwyg-photo-column2 li h2 {
  text-align: left;
}
.wysiwyg-photo-column2 li p {
  text-align: left;
}

.wysiwyg-photo-column3 {
  padding: 0 !important;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wysiwyg-photo-column3 li {
  list-style: none !important;
  width: calc((100% - 30px) / 3);
  text-align: center;
  margin-bottom: 15px;
  margin-left: 15px;
}
.wysiwyg-photo-column3 li:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-photo-column3 li {
    width: calc((100% - 15px) / 2);
  }
  .wysiwyg-photo-column3 li:nth-child(3n+1) {
    margin-left: 15px;
  }
  .wysiwyg-photo-column3 li:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-column3 li {
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
  }
  .wysiwyg-photo-column3 li:nth-child(3n+1) {
    margin-left: 0;
  }
}
.wysiwyg-photo-column3 li .caption {
  margin-top: 8px;
  display: block;
  line-height: 1.4;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-column3 li .caption {
    font-size: 1.4rem;
  }
}

.wysiwyg-photo-column4 {
  padding: 0 !important;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wysiwyg-photo-column4 li {
  list-style: none !important;
  width: calc((100% - 45px) / 4);
  text-align: center;
  margin-bottom: 15px;
  margin-left: 15px;
}
.wysiwyg-photo-column4 li:nth-child(4n+1) {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-photo-column4 li {
    width: calc((100% - 30px) / 3);
  }
  .wysiwyg-photo-column4 li:nth-child(4n+1) {
    margin-left: 15px;
  }
  .wysiwyg-photo-column4 li:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-column4 li {
    width: calc((100% - 15px) / 2);
  }
  .wysiwyg-photo-column4 li:nth-child(3n+1) {
    margin-left: 15px;
  }
  .wysiwyg-photo-column4 li:nth-child(2n+1) {
    margin-left: 0;
  }
}
.wysiwyg-photo-column4 li .caption {
  margin-top: 8px;
  display: block;
  line-height: 1.4;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-column4 li .caption {
    font-size: 1.4rem;
  }
}

.wysiwyg-list-file {
  margin-bottom: 15px;
  padding: 6px 0 0 45px;
  min-height: 54px;
  font-size: 1.6rem;
  line-height: 1.5em;
  background-size: 35px auto;
  background-repeat: no-repeat;
  background-position: 0 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-list-file {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-list-file {
    padding: 6px 0 0 35px;
    margin-top: 15px;
    padding-top: 0;
    min-height: 45px;
    font-size: 1.6rem;
    line-height: 1.3em;
    background-size: 25px auto;
    background-position: 0 3px;
  }
}
.wysiwyg-list-file--pdf {
  background-image: url(../img/common/icon_pdf.svg);
}
.wysiwyg-list-file--xls {
  background-image: url(../img/common/icon_excel.svg);
}
.wysiwyg-list-file--doc {
  background-image: url(../img/common/icon_word.svg);
}
.wysiwyg-list-file a {
  color: #0557A5 !important;
}
.wysiwyg-list-file a:hover {
  color: #cccccc;
}
.wysiwyg-list-file p {
  font-size: 1.6rem;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .wysiwyg-list-file p {
    margin-top: 3px;
    font-size: 1.4rem;
  }
}

.wysiwyg-index-list {
  background-color: #fff;
  border: 20px solid #e8ecf1;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-index-list {
    padding: 20px 20px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-index-list {
    padding: 10px;
    border: 10px solid #f0f4f4;
  }
}
.wysiwyg-index-list li {
  width: 33.3333333333%;
  position: relative;
  display: flex;
}
@media screen and (min-width: 1025px) {
  .wysiwyg-index-list li:not(:nth-of-type(-n+3)) {
    margin-top: 30px;
  }
  .wysiwyg-index-list li:nth-of-type(3n+4):before {
    content: "";
    display: block;
    height: 1px;
    background: #edebe2;
    width: 300%;
    position: absolute;
    left: 0;
    top: -15px;
  }
  .wysiwyg-index-list li:not(:nth-child(3n)):after {
    background-color: #edebe2;
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .wysiwyg-index-list li {
    width: calc((100% - 10px) / 2);
    border-top: 1px solid #eee;
  }
  .wysiwyg-index-list li:not(:nth-child(2n)) {
    margin-right: 10px;
  }
  .wysiwyg-index-list li:nth-child(1), .wysiwyg-index-list li:nth-child(2) {
    border-top: none;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-index-list li {
    width: 100%;
    margin-right: 0;
    border-top: 1px solid #eee;
  }
  .wysiwyg-index-list li:nth-child(2) {
    border-top: 1px solid #eee;
  }
  .wysiwyg-index-list li:first-child {
    border-top: none;
  }
}
.wysiwyg-index-list li a {
  display: block;
  background-color: #ffffff;
  text-decoration: none !important;
  padding: 15px 20px 15px 50px;
  line-height: 1.2;
  position: relative;
  font-size: 1.7rem;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-index-list li a {
    font-size: 1.6rem;
    padding: 18px 20px 18px 50px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-index-list li a {
    font-size: 1.5rem;
    padding: 16px 20px 16px 35px;
  }
}
.wysiwyg-index-list li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 22px;
  left: 25px;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .wysiwyg-index-list li a::after {
    top: 24px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-index-list li a::after {
    top: 22px;
    left: 15px;
  }
}
.wysiwyg-index-list li a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 20px;
  bottom: 0;
  width: 18px;
  height: 18px;
  background-color: #0557A5;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-index-list li a::before {
    top: 18px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-index-list li a::before {
    top: 16px;
    left: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .wysiwyg-index-list li a:hover {
    color: #0557A5;
    text-decoration: underline !important;
  }
}

.wysiwyg-bg-box {
  padding: 20px;
  background-color: #e8ecf1;
  width: 100%;
}

.wysiwyg-staff-box {
  margin-top: 30px;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  padding: 20px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-staff-box {
    display: block;
    padding: 15px 15px 5px;
  }
}
.wysiwyg-staff-box > dt {
  width: 150px;
  padding: 6px 0;
  position: relative;
  color: #0060aa;
  border-top: 1px dotted #ddd;
}
.wysiwyg-staff-box > dt.wysiwyg-staff-box__name {
  border-top: none;
}
@media screen and (max-width: 599px) {
  .wysiwyg-staff-box > dt.wysiwyg-staff-box__name {
    width: 100%;
  }
}
.wysiwyg-staff-box > dt.wysiwyg-staff-box__graduation {
  border-top: none;
  width: 85px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-staff-box > dt.wysiwyg-staff-box__graduation {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-staff-box > dt {
    width: 100%;
    list-style: 1.4;
    padding: 6px 8px 5px;
    margin-bottom: 5px;
    font-size: 1.4rem;
    background-color: #e8ecf1;
  }
}
.wysiwyg-staff-box > dd {
  width: calc(100% - 150px);
  padding: 6px 0;
  border-top: 1px dotted #ddd;
}
.wysiwyg-staff-box > dd.wysiwyg-staff-box__column2 {
  width: calc(50% - 150px);
  border-top: none;
}
@media screen and (max-width: 599px) {
  .wysiwyg-staff-box > dd.wysiwyg-staff-box__column2 {
    width: 100%;
  }
}
.wysiwyg-staff-box > dd.wysiwyg-staff-box__graduation-column2 {
  width: calc(50% - 85px);
  border-top: none;
}
@media screen and (max-width: 599px) {
  .wysiwyg-staff-box > dd.wysiwyg-staff-box__graduation-column2 {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-staff-box > dd {
    margin-bottom: 10px;
    padding: 0;
    font-size: 1.4rem;
    width: 100%;
    border-bottom: none;
    border-top: none;
  }
}
.wysiwyg-staff-box__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wysiwyg-staff-box__list > li {
  width: calc((100% - 20px) / 2);
  margin-left: 20px;
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-staff-box__list > li {
    width: 100%;
    margin-left: 0;
  }
}
.wysiwyg-staff-box__list > li::before {
  position: absolute;
  content: "●";
  font-size: 1.2rem;
  color: #c4d1e2;
  top: 3px;
  left: 0;
}
.wysiwyg-staff-box__list > li:nth-child(2n+1) {
  margin-left: 0;
}

.wysiwyg-photo-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-right {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.wysiwyg-photo-right__photo {
  max-width: 40%;
  margin-left: 3%;
  margin-bottom: 10px;
  -ms-flex-order: 2;
  order: 2;
  text-align: center;
}
.wysiwyg-photo-right__photo img {
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-right__photo {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
    -ms-flex-order: 1;
    order: 1;
  }
}
.wysiwyg-photo-right__text {
  width: 100%;
  -ms-flex-order: 1;
  order: 1;
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-right__text {
    -ms-flex-order: 2;
    order: 2;
  }
}

.wysiwyg-photo-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-left {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.wysiwyg-photo-left__photo {
  max-width: 40%;
  margin-right: 3%;
  margin-bottom: 10px;
  text-align: center;
}
.wysiwyg-photo-left__photo img {
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-left__photo {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    -ms-flex-order: 1;
    order: 1;
  }
}
.wysiwyg-photo-left__text {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-left__text {
    -ms-flex-order: 2;
    order: 2;
  }
}

.wysiwyg-copy01 {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 2.2rem;
  line-height: 1.4;
  color: #0557A5;
}
@media screen and (max-width: 599px) {
  .wysiwyg-copy01 {
    font-size: 1.8rem;
  }
}

.wysiwyg-copy02 {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.5;
  color: #0557A5;
}
@media screen and (max-width: 599px) {
  .wysiwyg-copy02 {
    font-size: 1.7rem;
  }
}

.wysiwyg-bg-gray {
  padding: 25px;
  background-color: #f4f4f4;
}
@media screen and (max-width: 599px) {
  .wysiwyg-bg-gray {
    padding: 20px;
  }
}

.wysiwyg-bg-color {
  padding: 25px;
  background-color: #e8ecf1;
}
@media screen and (max-width: 599px) {
  .wysiwyg-bg-color {
    padding: 20px;
  }
}

.wysiwyg-number-list {
  counter-reset: num;
  padding: 25px;
  list-style: none;
}
.wysiwyg-number-list--bg-gray {
  background-color: #f4f4f4;
}
.wysiwyg-number-list--bg-color {
  background-color: #e8ecf1;
}
@media screen and (max-width: 599px) {
  .wysiwyg-number-list {
    padding: 20px;
  }
}
.wysiwyg-number-list li {
  width: 100%;
  position: absolute;
  margin-top: 10px;
  padding-left: 40px;
  font-size: 15px;
  line-height: 1.5em;
  text-align: justify;
  position: relative;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .wysiwyg-number-list li {
    margin-top: 7px;
    padding-left: 25px;
    font-size: 14px;
  }
}
.wysiwyg-number-list li:first-child {
  margin-top: 0;
}
.wysiwyg-number-list li::before {
  content: counter(num);
  counter-increment: num;
  top: -2px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #0557A5;
  position: absolute;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  line-height: 25px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg-number-list li::before {
    top: 0;
    left: 0px;
    width: 18px;
    height: 18px;
    font-size: 1.1rem;
    line-height: 18px;
  }
}

.wysiwyg-file-link {
  position: relative;
  display: inline-block;
  border: 2px solid #e3e3e3;
  padding: 12px 20px 12px 55px;
  margin-right: 5px;
  transition: 0.3s;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #111 !important;
  text-decoration: none !important;
  margin-bottom: 5px;
  background-repeat: no-repeat;
}
.wysiwyg-file-link--pdf {
  background-image: url(../img/common/icon_pdf.svg);
  background-size: 22px auto;
  background-position: 15px 9px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-file-link--pdf {
    background-size: 20px auto;
    background-position: 10px 9px;
  }
}
.wysiwyg-file-link--xls {
  background-image: url(../img/common/icon_excel.svg);
  background-size: 22px auto;
  background-position: 15px 9px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-file-link--xls {
    background-size: 20px auto;
    background-position: 10px 9px;
  }
}
.wysiwyg-file-link--doc {
  background-image: url(../img/common/icon_word.svg);
  background-size: 22px auto;
  background-position: 15px 9px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-file-link--doc {
    background-size: 20px auto;
    background-position: 10px 9px;
  }
}
.wysiwyg-file-link--zip {
  background-image: url(../img/common/zip.png);
  background-size: 24px auto;
  background-position: 15px 8px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-file-link--zip {
    background-size: 21px auto;
    background-position: 10px 9px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-file-link {
    font-size: 1.4rem;
    padding: 12px 20px 12px 40px;
  }
}
.wysiwyg-file-link:hover {
  background-color: #f7f7f7;
  text-decoration: none !important;
}

.wysiwyg-line-link {
  position: relative;
  display: inline-block;
  padding: 12px 25px 12px 25px;
  transition: 0.3s;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
  color: #fff !important;
  text-decoration: none !important;
  margin-bottom: 5px;
  background-color: #07c755;
}
@media screen and (max-width: 599px) {
  .wysiwyg-line-link {
    padding: 10px 22px 10px 15px;
    list-style: 1.2;
  }
}
.wysiwyg-line-link::before {
  margin-top: -3px;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.wysiwyg-line-link:hover {
  opacity: 0.8;
}

.wysiwyg-youtube-link {
  position: relative;
  display: inline-block;
  border: 2px solid #e3e3e3;
  padding: 12px 20px 12px 55px;
  transition: 0.3s;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #111 !important;
  text-decoration: none !important;
  margin-bottom: 5px;
  background-repeat: no-repeat;
  background-image: url(../img/common/icon_youtube.png);
  background-size: 26px auto;
  background-position: 15px 13px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-youtube-link {
    font-size: 1.4rem;
    padding: 12px 20px 11px 40px;
    background-size: 23px auto;
    background-position: 10px 13px;
  }
}
.wysiwyg-youtube-link:hover {
  background-color: #f7f7f7;
  text-decoration: none !important;
}

.wysiwyg-shokai-flow {
  margin-top: 90px;
  margin-bottom: 60px;
  position: relative;
  border: 1px solid #d3d3d3;
  padding: 30px 30px 10px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-shokai-flow {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-shokai-flow {
    margin-top: 60px;
    margin-bottom: 20px;
    border: none;
    padding: 20px 0 0;
  }
}
.wysiwyg-shokai-flow__title {
  position: absolute;
  top: -50px;
  left: -1px;
  height: 50px;
  background-color: #0557A5;
  color: #fff;
  padding: 15px 10px;
  min-width: 40%;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  .wysiwyg-shokai-flow__title {
    top: -40px;
    height: 40px;
    padding: 9px 15px;
    width: 100%;
  }
}
.wysiwyg-shokai-flow__notice01 {
  font-size: 1.4rem;
}
.wysiwyg-shokai-flow__notice02 {
  font-size: 1.4rem;
}
.wysiwyg-shokai-flow__list {
  margin-top: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-shokai-flow__list {
    margin-top: 20px;
  }
}
.wysiwyg-shokai-flow__item {
  padding: 30px 0;
  border-top: 1px dotted #bbb;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.wysiwyg-shokai-flow__item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -20px;
  border-style: solid;
  border-width: 20px 40px;
  border-color: transparent;
  border-top-color: #0557A5;
  display: block;
}
.wysiwyg-shokai-flow__item:first-child::before {
  content: none;
}
.wysiwyg-shokai-flow__image {
  width: 220px;
  padding: 0 20px;
  border-right: 1px dotted #bbb;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-shokai-flow__image {
    width: 160px;
    padding: 0 20px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-shokai-flow__image {
    width: 100px;
    padding: 0 15px 0 0;
  }
}
.wysiwyg-shokai-flow__image img {
  width: 100%;
  max-width: 170px;
  margin-bottom: 10px;
}
.wysiwyg-shokai-flow__image p {
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .wysiwyg-shokai-flow__image p {
    font-size: 1.4rem;
  }
}
.wysiwyg-shokai-flow__text-box {
  width: calc(100% - 220px);
  padding-left: 30px;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-shokai-flow__text-box {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-shokai-flow__text-box {
    width: calc(100% - 100px);
    padding-left: 15px;
    font-size: 1.4rem;
  }
}
.wysiwyg-shokai-flow__text-box--column2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wysiwyg-shokai-flow__text-box__image {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg-shokai-flow__text-box__image {
    width: 100%;
  }
}
.wysiwyg-shokai-flow__text-box__image--img01 img {
  width: 100%;
  max-width: 160px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-shokai-flow__text-box__image--img01 img {
    margin-top: 10px;
    max-width: 120px;
  }
}
.wysiwyg-shokai-flow__text-box__image--img02 img {
  width: 100%;
  max-width: 138px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-shokai-flow__text-box__image--img02 img {
    margin-top: -5px;
    max-width: 100px;
    margin-bottom: 15px;
  }
}
.wysiwyg-shokai-flow__text-box__text {
  width: 60%;
}
@media screen and (max-width: 599px) {
  .wysiwyg-shokai-flow__text-box__text {
    width: 100%;
  }
}
.wysiwyg-shokai-flow__text-box__text span.cl-red {
  color: #ff0000;
}
.wysiwyg-shokai-flow__notice-box {
  border: 1px solid #dd0000;
  color: #dd0000;
  font-size: 1.4rem;
  padding: 20px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-shokai-flow__notice-box {
    padding: 15px 10px;
  }
}
.wysiwyg-shokai-flow__notice-box > ul {
  list-style: none;
  margin-left: 0 !important;
}
.wysiwyg-shokai-flow__notice-box > ul > li {
  position: relative;
  padding-left: 1em;
}
.wysiwyg-shokai-flow__notice-box > ul > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.wysiwyg-contact {
  padding: 0 10px;
  border: 1px solid #0557A5;
}
.wysiwyg-contact > dl {
  border-top: 1px dotted #bbb;
  padding: 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wysiwyg-contact > dl:first-child {
  border-top: none;
}
.wysiwyg-contact > dl > dt {
  width: 200px;
  background-color: #0557A5;
  color: #fff;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg-contact > dl > dt {
    width: 100%;
    padding: 8px 8px 7px;
  }
}
.wysiwyg-contact > dl > dd {
  width: calc(100% - 200px);
  padding: 15px 30px;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .wysiwyg-contact > dl > dd {
    width: 100%;
    padding: 10px 0 0;
  }
}

.wysiwyg-photo-border {
  border: 1px solid #e0e0db;
  text-align: center;
  padding: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-photo-border {
    padding: 20px;
    margin-bottom: 30px;
  }
}

.wysiwyg-access-car {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 599px) {
  .wysiwyg-access-car {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.wysiwyg-access-car__photo {
  max-width: 53%;
  margin-left: 3%;
  margin-bottom: 10px;
  -ms-flex-order: 2;
  order: 2;
  text-align: center;
}
.wysiwyg-access-car__photo img {
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .wysiwyg-access-car__photo {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.wysiwyg-access-car__text {
  width: 44%;
  -ms-flex-order: 1;
  order: 1;
}
@media screen and (max-width: 599px) {
  .wysiwyg-access-car__text {
    width: 100%;
  }
}

.wysiwyg-icon-list > li {
  padding: 13px 0;
  border-top: 1px dotted #bbb;
  position: relative;
  padding-left: 1.2em;
}
.wysiwyg-icon-list > li::before {
  content: "●";
  position: absolute;
  top: 17px;
  left: 0;
  color: #0c6fbb;
  font-size: 1.2rem;
}
.wysiwyg-icon-list > li:first-child {
  border-top: none;
  padding-top: 0;
}
.wysiwyg-icon-list > li:first-child::before {
  top: 4px;
}

table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
@media screen and (max-width: 1024px) {
  table {
    width: 100% !important;
  }
}
table.wd-fixed {
  table-layout: fixed;
}
table thead th {
  padding: 13px 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3em;
  text-align: center;
  vertical-align: middle;
  background-color: #e8ecf1;
  border: 1px solid #d3d3d3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  table thead th {
    padding: 10px;
    font-size: 14px;
  }
}
table th {
  padding: 13px 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3em;
  color: #000;
  text-align: center;
  vertical-align: middle;
  background-color: #e8ecf1;
  border: 1px solid #d3d3d3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  table th {
    padding: 10px;
    font-size: 14px;
  }
}
table th.cell-left {
  text-align: left;
}
table th.cell-center {
  text-align: center;
}
table th.cell-right {
  text-align: right;
}
table td {
  padding: 18px;
  font-size: 15px;
  line-height: 1.3em;
  color: #000;
  text-align: justify;
  vertical-align: middle;
  border: 1px solid #ddd;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  table td {
    padding: 10px;
    font-size: 14px;
  }
}
table td.cell-left {
  text-align: left;
}
table td.cell-center {
  text-align: center;
}
table td.cell-right {
  text-align: right;
}
table td.cell-gray {
  background-color: #f7f7f7;
}
table.tbtext-center th, table.tbtext-center td {
  text-align: center;
}
table.cell-small th, table.cell-small td {
  padding: 10px;
}
@media screen and (max-width: 599px) {
  table.cell-small th, table.cell-small td {
    padding: 6px;
    font-size: 1.3rem;
  }
}

/* ARAYAフォーマットテーブル */
th {
  background-color: #def;
}

th.green {
  background-color: #dfd;
}

th.cream {
  background-color: #ffffcc;
}

td.orange {
  background-color: #fec;
}

td.red {
  background-color: #fdd;
}

table.formatTable {
  table-layout: fixed;
}

/* スワイプ時
-------------------------------*/
.swipe-sec {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .swipe-sec {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .swipe-sec table {
    width: 700px !important;
  }
}
@media screen and (max-width: 599px) {
  .swipe-sec__contents {
    overflow: auto;
    box-sizing: border-box;
  }
  .swipe-sec__contents::-webkit-scrollbar {
    height: 12px;
  }
  .swipe-sec__contents::-webkit-scrollbar-track {
    border-radius: 0px;
    background: #eee;
  }
  .swipe-sec__contents::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background: #666;
  }
}
.swipe-sec__icon:before {
  content: "";
  display: none;
  font-size: 40px;
  position: absolute;
  height: 60px;
  width: 60px;
  top: 50%;
  left: 50%;
  padding: 10px;
  color: #fff;
  border-radius: 3px;
  background-color: #0557A5;
  background-image: url(../img/common/swipe_icon.png);
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-position: center center;
  backface-visibility: hidden;
  opacity: 0.8;
  border: 1px solid #fff;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 599px) {
  .swipe-sec__icon:before {
    display: block;
  }
}

/* tbl scroll
-------------------------------*/
.tbl-scroll__wrap {
  overflow: auto;
}

.tbl-scroll__wrap::-webkit-scrollbar {
  height: 5px;
}

.tbl-scroll__wrap::-webkit-scrollbar-track {
  background: #F1F1F1;
}

.tbl-scroll__wrap::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-important {
  background-color: #fde6e9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .top-important {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .top-important {
    padding: 15px;
  }
}
.top-important.show {
  display: none;
}
.top-important__ttl {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 250px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 400;
  color: #D70001;
  border-right: 1px solid #D70001;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .top-important__ttl {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    padding-right: 0;
    border: none;
  }
}
@media screen and (max-width: 599px) {
  .top-important__ttl {
    display: block;
    width: auto;
    border: none;
    margin-bottom: 12px;
  }
}
.top-important__ttl .ttl {
  position: relative;
  padding-left: 70px;
}
@media screen and (max-width: 1024px) {
  .top-important__ttl .ttl {
    width: 100%;
    padding-left: 35px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-important__ttl .ttl {
    width: auto;
    display: inline-block;
    padding-left: 27px;
  }
}
.top-important__ttl .ttl::before {
  background-image: url(../img/common/icon_important.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 32px;
  width: 32px;
  left: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .top-important__ttl .ttl::before {
    height: 28px;
    width: 28px;
    left: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-important__ttl .ttl::before {
    height: 22px;
    width: 22px;
  }
}
.top-important__list {
  width: calc(100% - 300px);
  padding-left: 50px !important;
}
@media screen and (max-width: 1024px) {
  .top-important__list {
    width: 100%;
    padding-left: 34px !important;
  }
}
@media screen and (max-width: 599px) {
  .top-important__list {
    padding-left: 0px !important;
  }
}
.top-important__list li {
  margin: 7px 0px;
}
.top-important__list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #D70001;
  line-height: 1.4;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .top-important__list li a {
    display: block;
  }
}
.top-important__list li a .update {
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-right: 10px;
  min-width: 90px;
}
@media screen and (max-width: 1024px) {
  .top-important__list li a .update {
    display: block;
    font-size: 1.4rem;
    margin-right: 5px;
    min-width: none;
  }
}
@media screen and (max-width: 599px) {
  .top-important__list li a .update {
    margin-bottom: 3px;
  }
}
.top-important__list li a .ttl {
  width: auto;
}
@media screen and (max-width: 599px) {
  .top-important__list li a .ttl {
    text-decoration: underline;
  }
}
.top-important__list li a:hover .ttl {
  text-decoration: underline;
}

.top-main .swiper-slide {
  height: 700px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-main .swiper-slide {
    height: 600px;
  }
}
@media screen and (max-width: 1300px) {
  .top-main .swiper-slide {
    height: 580px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main .swiper-slide {
    height: 720px;
  }
}
@media screen and (max-width: 599px) {
  .top-main .swiper-slide {
    height: 510px;
  }
}
.top-main .swiper-slide::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 140px;
  height: 100%;
  background-color: #e8ecf1;
}
@media screen and (max-width: 1024px) {
  .top-main .swiper-slide::before {
    width: 220px;
    height: 220px;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main .swiper-slide::before {
    width: 90px;
    height: 90px;
  }
}
.top-main .swiper-slide::after {
  position: absolute;
  left: 70px;
  bottom: 50px;
  content: "";
  width: 293px;
  height: 53px;
  background-image: url(../img/top/main_dot.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1400px) {
  .top-main .swiper-slide::after {
    width: 200px;
    left: 60px;
    bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main .swiper-slide::after {
    left: auto;
    right: 70px;
    bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-main .swiper-slide::after {
    width: 150px;
    height: 45px;
    right: 20px;
    bottom: 0px;
  }
}
.top-main__text {
  padding: 93px 0 0 67px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .top-main__text {
    padding: 83px 0 0 54px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__text {
    padding-top: 280px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__text {
    padding-left: 25px;
    padding-top: 170px;
  }
}
.top-main__text img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .top-main__text img {
    max-width: 500px;
  }
}
.top-main__en-text {
  margin-bottom: 40px;
  font-size: 1.3rem;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  z-index: 2;
  position: relative;
  color: #000;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 1400px) {
  .top-main__en-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__en-text {
    margin-bottom: 67px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__en-text {
    margin-bottom: 55px;
    color: transparent;
  }
}
.slide03 .top-main__en-text {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .slide03 .top-main__en-text {
    margin-bottom: 67px;
  }
}
@media screen and (max-width: 599px) {
  .slide03 .top-main__en-text {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 599px) and (max-width: 599px) {
  .slide03 .top-main__en-text {
    margin-bottom: 45px;
  }
}
.slide04 .top-main__en-text {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .slide04 .top-main__en-text {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .slide04 .top-main__en-text {
    margin-bottom: 55px;
  }
}
.top-main__copy {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  position: relative;
  z-index: 2;
  font-size: 4.5rem;
  line-height: 1.3;
  font-weight: 400;
}
.top-main-en .top-main__copy {
  font-size: 3rem;
  max-width: 900px;
}
@media screen and (max-width: 1400px) {
  .top-main__copy {
    font-size: 3.8rem;
  }
  .top-main-en .top-main__copy {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__copy {
    font-size: 3.4rem;
  }
  .top-main-en .top-main__copy {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__copy {
    font-size: 2.1rem;
    letter-spacing: -0.05em;
  }
  .top-main-en .top-main__copy {
    font-size: 1.5rem;
  }
}
.top-main__rinen-copy01 {
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .top-main__rinen-copy01 {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__rinen-copy01 {
    margin-bottom: 5px;
    font-size: 2.5rem;
  }
}
.top-main__rinen-copy02 {
  margin-bottom: 20px;
  color: #0557A5;
  font-size: 7rem;
  margin-bottom: 15px;
  display: block;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 1400px) {
  .top-main__rinen-copy02 {
    font-size: 6.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__rinen-copy02 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__rinen-copy02 {
    margin-bottom: 10px;
    font-size: 3.6rem;
  }
}
.top-main__rinen-copy03 {
  margin-bottom: 40px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .top-main__rinen-copy03 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__rinen-copy03 {
    margin-bottom: 15px;
    font-size: 2.4rem;
  }
}
.top-main__copy02 {
  margin-top: 32px;
  display: block;
  font-size: 5.6rem;
}
.top-main-en .top-main__copy02 {
  font-size: 4rem;
}
@media screen and (max-width: 1400px) {
  .top-main__copy02 {
    font-size: 4.6rem;
  }
  .top-main-en .top-main__copy02 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__copy02 {
    margin-top: 25px;
    font-size: 4rem;
  }
  .top-main-en .top-main__copy02 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__copy02 {
    margin-top: 20px;
    font-size: 2.8rem;
  }
  .top-main-en .top-main__copy02 {
    margin-top: 15px;
    font-size: 2rem;
  }
}
.slide02 .top-main__copy02 {
  line-height: 1.36;
}
.slide04 .top-main__copy02 {
  margin-top: 0;
  font-size: 4.8rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.top-main-en .slide04 .top-main__copy02 {
  font-size: 3.8rem;
}
@media screen and (max-width: 1400px) {
  .slide04 .top-main__copy02 {
    font-size: 3.7rem;
  }
  .top-main-en .slide04 .top-main__copy02 {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .slide04 .top-main__copy02 {
    line-height: 1.6;
  }
  .top-main-en .slide04 .top-main__copy02 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .slide04 .top-main__copy02 {
    font-size: 2.2rem;
    line-height: 1.7;
    letter-spacing: -0.05em;
  }
  .top-main-en .slide04 .top-main__copy02 {
    font-size: 1.5rem;
  }
}
.top-main__copy02-blue {
  color: #0557A5;
  font-size: 7.3rem;
}
.top-main-en .top-main__copy02-blue {
  font-size: 6rem;
}
@media screen and (max-width: 1400px) {
  .top-main__copy02-blue {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-en .top-main__copy02-blue {
    font-size: 5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__copy02-blue {
    font-size: 4rem;
    line-height: 1;
    padding-right: 5px;
  }
  .top-main-en .top-main__copy02-blue {
    font-size: 3.2rem;
  }
}
.top-main__copy03 {
  margin-top: 10px;
  margin-bottom: 25px;
  text-indent: -0.55em;
  font-size: 9rem;
  letter-spacing: -0.2em;
  display: block;
}
.top-main-en .top-main__copy03 {
  letter-spacing: 0;
  font-size: 7.5rem;
}
@media screen and (max-width: 1400px) {
  .top-main__copy03 {
    margin-bottom: 20px;
    font-size: 7.9rem;
  }
  .top-main-en .top-main__copy03 {
    font-size: 7.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__copy03 {
    margin-top: 5px;
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__copy03 {
    margin-top: 3px;
    margin-bottom: 10px;
    font-size: 4.8rem;
  }
  .top-main-en .top-main__copy03 {
    font-size: 4.2rem;
  }
}
.slide02 .top-main__copy03 {
  margin-top: 22px;
  font-size: 8.6rem;
  letter-spacing: -0.25em;
}
.top-main-en .slide02 .top-main__copy03 {
  letter-spacing: 0;
  font-size: 7rem;
}
@media screen and (max-width: 1400px) {
  .slide02 .top-main__copy03 {
    font-size: 7.5rem;
  }
  .top-main-en .slide02 .top-main__copy03 {
    font-size: 7rem;
  }
}
@media screen and (max-width: 1024px) {
  .slide02 .top-main__copy03 {
    font-size: 6.3rem;
  }
  .top-main-en .slide02 .top-main__copy03 {
    font-size: 5.3rem;
  }
}
@media screen and (max-width: 599px) {
  .slide02 .top-main__copy03 {
    margin-top: 15px;
    font-size: 4rem;
  }
  .top-main-en .slide02 .top-main__copy03 {
    margin-top: 10px;
    font-size: 3.7rem;
  }
}
.slide03 .top-main__copy03 {
  margin-top: 20px;
  font-size: 7.3rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.top-main-en .slide03 .top-main__copy03 {
  letter-spacing: 0;
  font-size: 6rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1400px) {
  .slide03 .top-main__copy03 {
    font-size: 6.1rem;
  }
  .top-main-en .slide03 .top-main__copy03 {
    letter-spacing: 0;
    font-size: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .slide03 .top-main__copy03 {
    font-size: 5.7rem;
  }
  .top-main-en .slide03 .top-main__copy03 {
    font-size: 4.5rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .slide03 .top-main__copy03 {
    margin-top: 20px;
    font-size: 3.4rem;
  }
  .top-main-en .slide03 .top-main__copy03 {
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 3rem;
  }
}
.top-main__copy03-blue {
  color: #0557A5;
}
.top-main__copy03-blue .ls-small {
  margin-left: -0.15em;
  margin-right: -0.15em;
}
.top-main__copy03-blue .ls-large {
  letter-spacing: -0.05em;
}
.top-main__link {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 3rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .top-main__link {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__link {
    font-size: 2.1rem;
  }
}
.top-main__link a {
  color: #000;
  position: relative;
  letter-spacing: -0.08em;
}
@media screen and (min-width: 1025px) {
  .top-main__link a:hover {
    color: #0557A5;
  }
}
.top-main__link a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -50px;
  width: 30px;
  height: 1px;
  margin-top: 6px;
  background-color: #000;
}
.top-main__link a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -50px;
  width: 6px;
  height: 1px;
  margin-top: 4px;
  background-color: #000;
  transform: rotate(45deg);
}
.top-main__link a span {
  position: relative;
}
.top-main__link a span::before {
  content: "";
  width: 100%;
  height: 18px;
  position: absolute;
  left: 0;
  bottom: -2px;
  background-color: #d8e6f8;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .top-main__link a span::before {
    height: 14px;
  }
}
.top-main__photo {
  width: calc(100% - 600px);
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1400px) {
  .top-main__photo {
    width: calc(100% - 450px);
    height: 600px;
  }
}
@media screen and (max-width: 1300px) {
  .top-main__photo {
    width: calc(100% - 400px);
    height: 580px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__photo {
    width: 100%;
    height: 350px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__photo {
    height: 240px;
  }
}
.top-main__photo .swiper-container {
  height: 100%;
  overflow: hidden;
}
.top-main__photo .slide-img {
  height: 100%;
  overflow: hidden;
}
.top-main__photo .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  border-top: 1px solid #e0e0db;
  border-bottom: 1px solid #e0e0db;
  text-align: center;
}
.main-nav__list {
  max-width: 1500px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .main-nav__list {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.main-nav__list > li {
  width: 16.6666666667%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .main-nav__list > li {
    width: 33.3333333333%;
  }
}
.main-nav__list > li::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -1px;
  width: 1px;
  height: calc(100% - 60px);
  background-color: #e0e0db;
}
@media screen and (min-width: 1025px) {
  .main-nav__list > li:first-child::after {
    content: "";
    position: absolute;
    top: 30px;
    left: -1px;
    width: 1px;
    height: calc(100% - 60px);
    background-color: #e0e0db;
  }
}
@media screen and (max-width: 1024px) {
  .main-nav__list > li:nth-child(3n)::before {
    content: none;
  }
}
@media screen and (max-width: 1024px) {
  .main-nav__list > li::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 30px;
    width: calc(100% - 60px);
    height: 1px;
    background-color: #e0e0db;
  }
}
.main-nav__list > li > a {
  display: block;
  padding: 92px 10px 29px;
  color: #000;
  font-size: 2.3rem;
  font-weight: bold;
  background-repeat: no-repeat;
  position: relative;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .main-nav__list > li > a:hover {
    background-color: #0557A5;
    color: #fff;
  }
  .main-nav__list > li > a:hover span.gairai .gairai-img01 {
    display: none;
  }
  .main-nav__list > li > a:hover span.gairai .gairai-img01-hv {
    display: block;
  }
  .main-nav__list > li > a:hover span.doctor .doctor-img01 {
    display: none;
  }
  .main-nav__list > li > a:hover span.doctor .doctor-img01-hv {
    display: block;
  }
  .main-nav__list > li > a:hover span.shinryo .shinryo-img01 {
    display: none;
  }
  .main-nav__list > li > a:hover span.shinryo .shinryo-img01-hv {
    display: block;
  }
  .main-nav__list > li > a:hover span.nyuin .nyuin-img01 {
    display: none;
  }
  .main-nav__list > li > a:hover span.nyuin .nyuin-img01-hv {
    display: block;
  }
  .main-nav__list > li > a:hover span.menkai .menkai-img01 {
    display: none;
  }
  .main-nav__list > li > a:hover span.menkai .menkai-img01-hv {
    display: block;
  }
  .main-nav__list > li > a:hover span.floormap .floormap-img01 {
    display: none;
  }
  .main-nav__list > li > a:hover span.floormap .floormap-img01-hv {
    display: block;
  }
}
@media screen and (max-width: 1400px) {
  .main-nav__list > li > a {
    font-size: 1.9rem;
    padding: 92px 10px 29px;
  }
}
@media screen and (max-width: 599px) {
  .main-nav__list > li > a {
    padding: 84px 10px 25px;
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
.main-nav__list > li > a span {
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 50%;
}
.main-nav__list > li > a span img {
  width: 100%;
}
.main-nav__list > li > a span.gairai {
  width: 46px;
  top: 38px;
  margin-left: -23px;
}
.main-nav__list > li > a span.gairai .gairai-img01-hv {
  display: none;
}
@media screen and (max-width: 599px) {
  .main-nav__list > li > a span.gairai {
    top: 36px;
    width: 36px;
    margin-left: -18px;
  }
}
.main-nav__list > li > a span.doctor {
  width: 38px;
  top: 33px;
  margin-left: -19px;
}
.main-nav__list > li > a span.doctor .doctor-img01-hv {
  display: none;
}
@media screen and (max-width: 599px) {
  .main-nav__list > li > a span.doctor {
    width: 30px;
    top: 31px;
    margin-left: -15px;
  }
}
.main-nav__list > li > a span.shinryo {
  width: 45px;
  top: 37px;
  margin-left: -22px;
}
.main-nav__list > li > a span.shinryo .shinryo-img01-hv {
  display: none;
}
@media screen and (max-width: 599px) {
  .main-nav__list > li > a span.shinryo {
    width: 35px;
    top: 36px;
    margin-left: -17px;
  }
}
.main-nav__list > li > a span.nyuin {
  width: 40px;
  top: 38px;
  margin-left: -20px;
}
.main-nav__list > li > a span.nyuin .nyuin-img01-hv {
  display: none;
}
@media screen and (max-width: 599px) {
  .main-nav__list > li > a span.nyuin {
    width: 30px;
    top: 36px;
    margin-left: -15px;
  }
}
.main-nav__list > li > a span.menkai {
  width: 42px;
  top: 40px;
  margin-left: -21px;
}
.main-nav__list > li > a span.menkai .menkai-img01-hv {
  display: none;
}
@media screen and (max-width: 599px) {
  .main-nav__list > li > a span.menkai {
    width: 32px;
    top: 38px;
    margin-left: -16px;
  }
}
.main-nav__list > li > a span.floormap {
  width: 46px;
  top: 44px;
  margin-left: -23px;
}
.main-nav__list > li > a span.floormap .floormap-img01-hv {
  display: none;
}
@media screen and (max-width: 599px) {
  .main-nav__list > li > a span.floormap {
    width: 36px;
    top: 42px;
    margin-left: -18px;
  }
}

.top-middle-contents {
  position: relative;
  padding: 0 30px;
}
@media screen and (max-width: 599px) {
  .top-middle-contents {
    padding: 0 20px;
  }
}
.top-middle-contents::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
  background-color: #e8ecf1;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .top-middle-contents::before {
    width: 20%;
  }
}
@media screen and (max-width: 599px) {
  .top-middle-contents::before {
    width: 90px;
  }
}
.top-middle-contents::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 120px;
  width: 293px;
  height: 197px;
  background-image: url(../img/top/news_square.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1400px) {
  .top-middle-contents::after {
    right: 8%;
  }
}
@media screen and (max-width: 1024px) {
  .top-middle-contents::after {
    width: 200px;
    height: 160px;
    right: 15px;
    bottom: 100px;
  }
}
@media screen and (max-width: 599px) {
  .top-middle-contents::after {
    width: 140px;
    height: 100px;
    right: 19px;
    bottom: 140px;
  }
}

.top-time {
  max-width: 1200px;
  margin: 0 auto 85px;
  padding: 100px 0 0;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .top-time {
    margin: 0 auto 55px;
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .top-time {
    margin: 0 auto 40px;
    padding: 40px 0 0;
  }
}

.top-time-item {
  width: calc((100% - 2px) / 3);
  margin-right: 1px;
  background-color: rgba(196, 227, 236, 0.6);
  padding: 70px 40px;
}
.top-time-item.reception {
  background-color: rgba(210, 213, 245, 0.6);
}
.top-time-item.reserve {
  margin-right: 0;
  background-color: rgba(242, 213, 237, 0.6);
}
@media screen and (max-width: 1024px) {
  .top-time-item {
    width: 100%;
    padding: 50px 20px;
    margin-bottom: 1px;
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-time-item {
    padding: 40px 20px;
  }
}
.top-time-item__title {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.3;
  letter-spacing: 0.07em;
  color: #1d5565;
}
@media screen and (max-width: 1024px) {
  .top-time-item__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-time-item__title {
    font-size: 2.3rem;
  }
}
.reception .top-time-item__title {
  color: #363b7d;
}
.reserve .top-time-item__title {
  color: #6C3E63;
}
.top-time-item__en {
  margin-bottom: 22px;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1d5565;
}
@media screen and (max-width: 1024px) {
  .top-time-item__en {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 599px) {
  .top-time-item__en {
    margin-bottom: 15px;
  }
}
.reception .top-time-item__en {
  color: #363b7d;
}
.reserve .top-time-item__en {
  color: #6C3E63;
}
.top-time-item__data {
  margin-bottom: 26px;
}
@media screen and (max-width: 1024px) {
  .top-time-item__data {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-time-item__data {
    margin-bottom: 20px;
  }
}
.top-time-item__tel {
  padding-top: 10px;
}
.top-time-item__tel > a {
  font-size: 2.8rem;
  padding: 10px 0 12px 7px;
  color: #6c3e65;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  display: block;
  line-height: 1;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-time-item__tel > a {
    max-width: 350px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .top-time-item__tel > a {
    font-size: 2.2rem;
  }
}
.top-time-item__tel > a .number {
  padding: 6px 5px 5px 27px;
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: 0 9px;
  line-height: 1;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .top-time-item__tel > a .number {
    padding: 7px 0 5px 27px;
    background-position: 0 7px;
  }
}
.top-time-item__tel > a .small {
  display: inline-block;
  line-height: 1;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .top-time-item__tel > a .small {
    font-size: 1.3rem;
  }
}
.top-time-item__day {
  font-size: 2.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  letter-spacing: 0.03em;
  color: #1D555D;
}
@media screen and (max-width: 1024px) {
  .top-time-item__day {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-time-item__day {
    font-size: 2.2rem;
  }
}
.top-time-item__closed {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  color: #1D555D;
}
.top-time-item__time {
  padding-top: 16px;
  font-size: 2.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  letter-spacing: 0.03em;
  color: #363b7d;
}
@media screen and (max-width: 1024px) {
  .top-time-item__time {
    padding-top: 0;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-time-item__time {
    font-size: 2.2rem;
  }
}
.top-time-item__notice {
  margin-bottom: 17px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 300;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.4;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .top-time-item__notice {
    margin-bottom: 8px;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .top-time-item__notice {
    text-align: left;
    font-size: 1.4rem;
  }
}
.top-time-item__btn {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .top-time-item__btn {
    margin-top: 30px;
  }
}
.top-time-item__btn a {
  max-width: 210px;
  margin: 0 auto;
  display: block;
  background-color: #000;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 10px 10px 12px;
  position: relative;
}
.top-time-item__btn a::before {
  margin-top: -4px;
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .top-time-item__btn a:hover {
    opacity: 0.7;
  }
}

.top-news {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 1400px) {
  .top-news {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-news {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-news {
    margin-bottom: 50px;
  }
}
.top-news__title {
  width: 100%;
  margin-bottom: 35px;
  color: #0557A5;
  font-weight: bold;
  font-size: 3.5rem;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-news__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-news__title {
    padding-bottom: 15px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__title {
    margin-bottom: 30px;
    padding-bottom: 12px;
    font-size: 2.3rem;
  }
}
.top-news__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background-color: #c5cad0;
}
.top-news__title span {
  padding-left: 30px;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 1.3rem;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .top-news__title span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__title span {
    padding-left: 20px;
  }
}
.top-news__list {
  width: calc(72% - 60px);
}
@media screen and (max-width: 1024px) {
  .top-news__list {
    width: calc(72% - 30px);
  }
}
@media screen and (max-width: 599px) {
  .top-news__list {
    width: 100%;
    margin-bottom: 30px;
  }
}
.top-news__pickup {
  width: 28%;
  margin-left: 60px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top-news__pickup {
    margin-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__pickup {
    width: 100%;
    margin-left: 0;
    z-index: 1;
  }
}
.top-news__pickup-item a {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: block;
  color: #000;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top-news__pickup-item a:hover {
    color: #0557A5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }
}
.top-news__pickup-item a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  background-color: #0557A5;
}
.top-news__pickup-item a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 11px;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.top-news__pickup-photo {
  height: 220px;
}
@media screen and (max-width: 1024px) {
  .top-news__pickup-photo {
    height: 120px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__pickup-photo {
    height: 180px;
  }
}
.top-news__pickup-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-news__pickup-text {
  min-height: 160px;
  padding: 25px;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .top-news__pickup-text {
    min-height: 150px;
    padding: 15px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__pickup-text {
    min-height: 120px;
  }
}
.top-news__tab-area {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .top-news__tab-area {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__tab-area {
    top: 50px;
    left: 0;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.top-news__tab-area .tab {
  width: 20%;
  border-top: 1px solid #e0e0db;
  border-right: 1px solid #e0e0db;
  border-bottom: 1px solid #0557A5;
  background-color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  transition: 0.2s;
  padding: 10px 10px 7px;
}
.top-news__tab-area .tab:first-child {
  border-left: 1px solid #e0e0db;
}
@media screen and (min-width: 1025px) {
  .top-news__tab-area .tab:hover {
    background-color: #f7f7f7;
    color: #0557A5;
  }
}
@media screen and (max-width: 1024px) {
  .top-news__tab-area .tab {
    padding: 10px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__tab-area .tab {
    line-height: 1.3;
    font-size: 1.3rem;
    padding: 10px 5px 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.top-news__tab-area .tab.active {
  color: #fff;
  background-color: #0557A5;
}
.top-news__content-area .content {
  display: none;
}
.top-news__content-area .content.show {
  display: block;
}
.top-news__pickup-sns {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.top-news__pickup-sns > li {
  width: 45px;
  margin: 0 7px;
}
@media screen and (min-width: 1025px) {
  .top-news__pickup-sns > li > a:hover {
    opacity: 0.6;
  }
}

.top-news-list__item {
  border-bottom: 1px solid #e0e0db;
}
.top-news-list__link {
  display: block;
  padding: 25px 0;
  *zoom: 1;
}
.top-news-list__link:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1024px) {
  .top-news-list__link {
    padding: 18px 0;
  }
}
@media screen and (min-width: 1025px) {
  .top-news-list__link:hover .top-news-list__title {
    color: #0557A5;
    text-decoration: underline;
  }
}
.top-news-list__day {
  width: 125px;
  line-height: 1.3;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 1.8rem;
  color: #0557A5;
  float: left;
}
@media screen and (max-width: 1024px) {
  .top-news-list__day {
    width: 90px;
    font-size: 1.6rem;
  }
}
.top-news-list__icon {
  width: 100px;
  text-align: center;
  line-height: 1.2;
  padding: 4px 5px 5px;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.4rem;
  font-weight: 400;
  display: inline-block;
  float: left;
}
@media screen and (max-width: 1024px) {
  .top-news-list__icon {
    font-size: 1.2rem;
    padding: 3px 4px 4px;
  }
}
.top-news-list__icon--medical {
  background-color: #0080A5;
}
.top-news-list__icon--recruit {
  background-color: #8D56A8;
}
.top-news-list__icon--info {
  background-color: #008673;
}
.top-news-list__icon--medicalcare {
  background-color: #B84F98;
}
.top-news-list__title {
  width: calc(100% - 255px);
  margin-left: 30px;
  float: left;
  display: block;
  color: #000;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .top-news-list__title {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    font-size: 1.5rem;
  }
}
.top-news-list__empty {
  background-color: #f7f7f7;
  padding: 30px;
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  font-size: 1.5rem;
}
.top-news-list__btn {
  margin-top: 15px;
  text-align: right;
}
.top-news-list__btn a {
  margin-right: 30px;
  color: #0557A5;
  font-weight: bold;
  font-size: 1.6rem;
  text-decoration: underline;
  position: relative;
}
.top-news-list__btn a::before {
  content: "";
  position: absolute;
  top: 1px;
  right: -30px;
  width: 18px;
  height: 18px;
  background-color: #0557A5;
}
.top-news-list__btn a::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -22px;
  z-index: 1;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .top-news-list__btn a:hover {
    text-decoration: none;
  }
}

.top-feature-title {
  text-align: center;
  padding-top: 45px;
  padding-bottom: 40px;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 4.5rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-feature-title {
    padding-bottom: 35px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-feature-title {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-feature-title {
    padding-bottom: 30px;
    font-size: 2.8rem;
  }
}
.top-feature-title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 35px;
  background-color: #0557A5;
}
@media screen and (max-width: 599px) {
  .top-feature-title::before {
    height: 30px;
  }
}
.top-feature-title span {
  font-size: 1.3rem;
  color: #0557A5;
  display: block;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1400px) {
  .top-feature-title span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-feature-title span {
    font-size: 1.1rem;
  }
}

.top-feature-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top-feature-list--column3 > li {
  width: 33.3333333333%;
  height: 400px;
}
@media screen and (max-width: 1024px) {
  .top-feature-list--column3 > li {
    height: 300px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature-list--column3 > li {
    width: 100%;
    height: auto;
    min-height: 160px;
    margin-bottom: 1px;
  }
}
.top-feature-list--column2 > li {
  width: 50%;
  height: 320px;
}
@media screen and (max-width: 1024px) {
  .top-feature-list--column2 > li {
    height: 250px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature-list--column2 > li {
    width: 100%;
    height: auto;
    min-height: 160px;
    margin-bottom: 1px;
  }
}
.top-feature-list__link {
  width: 100%;
  height: 100%;
  padding: 30px;
  position: relative;
  transition: 0.3s;
  color: #fff;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-feature-list__link {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature-list__link {
    padding: 30px 20px;
  }
}
.top-feature-list__link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  z-index: 2;
  background-color: #0557A5;
}
.top-feature-list__link::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 11px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .top-feature-list__link:hover img {
    transform: scale(1.1);
  }
}
.top-feature-list__text-box {
  z-index: 2;
  position: relative;
}
.top-feature-list__title {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.01);
}
@media screen and (max-width: 1400px) {
  .top-feature-list__title {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-feature-list__title {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .top-feature-list__title {
    margin-bottom: 15px;
    font-size: 1.9rem;
  }
}
.top-feature-list__text {
  max-width: 400px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  background-color: rgba(0, 0, 0, 0.01);
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-feature-list__text {
    font-size: 1.6rem;
    text-align: justify;
  }
}
@media screen and (max-width: 599px) {
  .top-feature-list__text {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.top-feature-list__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top-feature-list__photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 8, 41, 0.6);
}
.top-feature-list__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}

.top-morescloll {
  padding: 80px 20px 74px;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .top-morescloll {
    padding: 70px 20px 60px;
  }
}
@media screen and (max-width: 1024px) {
  .top-morescloll {
    padding: 50px 20px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-morescloll {
    padding: 30px 20px 20px;
  }
  .top-morescloll img {
    max-width: 80px;
  }
}

.top-more {
  margin-bottom: 50px;
}
@media screen and (max-width: 1400px) {
  .top-more {
    margin-bottom: 30px;
  }
}
.top-more__photo {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 1400px) {
  .top-more__photo {
    height: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .top-more__photo {
    height: 270px;
  }
}
@media screen and (max-width: 599px) {
  .top-more__photo {
    height: 130px;
  }
}
.top-more__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 1024px) {
  .support .top-more__photo img {
    object-position: 80% center;
  }
  .connect .top-more__photo img {
    object-position: 0 center;
  }
}
.top-more__box {
  max-width: 1560px;
  padding: 0 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-more__box {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .top-more__box {
    padding: 0 20px;
  }
}
.top-more__box-text {
  width: 60%;
  background-color: #fff;
  padding: 65px 90px;
  z-index: 1;
  margin-top: -150px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-more__box-text {
    margin-top: -100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-more__box-text {
    width: 100%;
    margin-top: -50px;
    padding: 70px 50px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-more__box-text {
    margin-top: -30px;
    padding: 50px 20px 30px;
  }
}
.connect .top-more__box-text {
  order: 2;
}
.top-more__box-link {
  width: 40%;
  padding: 80px 60px;
}
.connect .top-more__box-link {
  order: 1;
}
@media screen and (max-width: 1024px) {
  .top-more__box-link {
    width: 100%;
    padding: 0 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-more__box-link {
    padding: 0 20px;
  }
}
.top-more__catch {
  color: #0557A5;
  font-size: 13rem;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
  position: absolute;
  top: -90px;
  left: 70px;
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .top-more__catch {
    top: -60px;
    font-size: 10rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-more__catch {
    top: -40px;
    left: 30px;
    font-size: 9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-more__catch {
    top: -20px;
    left: 15px;
    font-size: 6rem;
  }
}
.connect .top-more__catch {
  color: #578301;
}
.spread .top-more__catch {
  color: #ba1b75;
}
.top-more__en {
  margin-bottom: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .top-more__en {
    margin-bottom: 15px;
  }
}
.top-more__copy {
  margin-bottom: 35px;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 4rem;
  color: #0557A5;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1400px) {
  .top-more__copy {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-more__copy {
    margin-bottom: 25px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-more__copy {
    margin-bottom: 20px;
    font-size: 2.3rem;
    letter-spacing: 0;
  }
}
.connect .top-more__copy {
  color: #578301;
}
.spread .top-more__copy {
  color: #ba1b75;
}
.top-more__text {
  font-weight: 500;
  text-align: justify;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .top-more__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-more__text {
    font-weight: normal;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .top-more-links {
    padding: 40px 0;
    border-top: 1px solid #eee;
  }
}
@media screen and (max-width: 599px) {
  .top-more-links {
    padding: 40px 0 20px;
  }
}
.top-more-links > li {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .top-more-links > li {
    margin-bottom: 15px;
  }
}
.top-more-links > li > a {
  display: inline-block;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.9rem;
  font-weight: 400;
  color: #000;
  line-height: 1.3;
  letter-spacing: 0.03em;
  padding-left: 30px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top-more-links > li > a:hover {
    text-decoration: underline;
    color: #0557A5;
  }
}
@media screen and (max-width: 1024px) {
  .top-more-links > li > a {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-more-links > li > a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .connect .top-more-links > li > a:hover {
    color: #578301;
  }
}
@media screen and (min-width: 1025px) {
  .spread .top-more-links > li > a:hover {
    color: #ba1b75;
  }
}
.top-more-links > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  z-index: 2;
  background-color: #0557A5;
}
@media screen and (max-width: 1024px) {
  .top-more-links > li > a::before {
    top: 2px;
  }
}
.connect .top-more-links > li > a::before {
  background-color: #578301;
}
.spread .top-more-links > li > a::before {
  background-color: #ba1b75;
}
.top-more-links > li > a::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  z-index: 2;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .top-more-links > li > a::after {
    top: 8px;
  }
}

/*--------------------------------------------------------
news
----------------------------------------------------------*/
.news-list {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .news-list {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .news-list {
    margin-bottom: 30px;
  }
}
.news-list__item {
  border-bottom: 1px solid #e0e0db;
  text-align: left;
}
.news-list__item:first-child {
  border-top: 1px solid #e0e0db;
}
.news-list__link {
  display: block;
  padding: 25px 10px;
  *zoom: 1;
}
.news-list__link:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1024px) {
  .news-list__link {
    padding: 18px 0;
  }
}
@media screen and (min-width: 1025px) {
  .news-list__link:hover {
    background-color: #f6f6f6;
  }
}
.news-list__day {
  width: 125px;
  line-height: 1.3;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 1.8rem;
  color: #0557A5;
  float: left;
}
@media screen and (max-width: 1024px) {
  .news-list__day {
    width: 90px;
    font-size: 1.6rem;
  }
}
.news-list__icon {
  width: 100px;
  text-align: center;
  line-height: 1.2;
  padding: 4px 5px 5px;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.4rem;
  font-weight: 400;
  display: inline-block;
  float: left;
}
@media screen and (max-width: 1024px) {
  .news-list__icon {
    font-size: 1.2rem;
    padding: 3px 4px 4px;
  }
}
.news-list__icon--medical {
  background-color: #0088a5;
}
.news-list__icon--recruit {
  background-color: #925dae;
}
.news-list__icon--info {
  background-color: #00a88e;
}
.news-list__icon--medicalcare {
  background-color: #d16fa6;
}
.news-list__title {
  width: calc(100% - 255px);
  margin-left: 30px;
  float: left;
  display: block;
  color: #000;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .news-list__title {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    font-size: 1.5rem;
  }
}
.news-list__empty {
  background-color: #f7f7f7;
  padding: 30px;
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  font-size: 1.5rem;
}
.news-list__btn {
  margin-top: 15px;
  text-align: right;
}
.news-list__btn a {
  margin-right: 30px;
  color: #0557A5;
  font-weight: bold;
  font-size: 1.6rem;
  text-decoration: underline;
  position: relative;
}
.news-list__btn a::before {
  content: "";
  position: absolute;
  top: 1px;
  right: -30px;
  width: 18px;
  height: 18px;
  background-color: #0557A5;
}
.news-list__btn a::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -22px;
  z-index: 1;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .news-list__btn a:hover {
    text-decoration: none;
  }
}

.news-detail {
  margin-bottom: 60px;
}
.news-detail__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 45px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d0dcd4;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .news-detail__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .news-detail__title {
    padding-bottom: 15px;
  }
}
.news-detail__date {
  line-height: 1.3;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-size: 1.6rem;
  color: #0557A5;
}
@media screen and (max-width: 1024px) {
  .news-detail__date {
    width: 90px;
    font-size: 1.6rem;
  }
}
.news-detail__category {
  width: 100px;
  margin-right: 20px;
  text-align: center;
  line-height: 1.2;
  padding: 4px 5px 5px;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.4rem;
  font-weight: 400;
  display: inline-block;
  float: left;
}
@media screen and (max-width: 1024px) {
  .news-detail__category {
    font-size: 1.2rem;
    padding: 3px 4px 4px;
  }
}
.news-detail__category--medical {
  background-color: #0088a5;
}
.news-detail__category--recruit {
  background-color: #925dae;
}
.news-detail__category--info {
  background-color: #00a88e;
}
.news-detail__category--medicalcare {
  background-color: #d16fa6;
}
.news-detail__new {
  display: inline-block;
  margin-left: 15px;
  color: #dd0000;
  padding-top: 4px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .news-detail__new {
    font-size: 1.4rem;
    margin-left: 5px;
  }
}
.news-detail__text {
  width: 100% !important;
  margin-top: 15px !important;
  font-size: 2.4rem !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  font-weight: bold !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
.news-detail__text::before {
  content: none !important;
}
@media screen and (max-width: 599px) {
  .news-detail__text {
    margin-top: 10px !important;
    padding-left: 0 !important;
    font-size: 1.7rem !important;
    line-height: 1.4 !important;
  }
}
.news-detail__btn {
  margin-top: 70px;
  border-top: 1px solid #d0dcd4;
  padding-top: 35px;
}
.news-detail__btn a {
  color: #fff !important;
  text-decoration: none !important;
}/*# sourceMappingURL=style.css.map */