<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

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

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 100;
  src: url(https://www.kintetsu-re.co.jp/assets/fonts/SourceHanSerifJP/SourceHanSerifJP-ExtraLight.otf) format("opentype");
}
@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 200;
  src: url(https://www.kintetsu-re.co.jp/assets/fonts/SourceHanSerifJP/SourceHanSerifJP-Light.otf) format("opentype");
}
@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 400;
  src: url(https://www.kintetsu-re.co.jp/assets/fonts/SourceHanSerifJP/SourceHanSerifJP-Regular.otf) format("opentype");
}
@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 500;
  src: url(https://www.kintetsu-re.co.jp/assets/fonts/SourceHanSerifJP/SourceHanSerifJP-Medium.otf) format("opentype");
}
@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 600;
  src: url(https://www.kintetsu-re.co.jp/assets/fonts/SourceHanSerifJP/SourceHanSerifJP-SemiBold.otf) format("opentype");
}
@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 700;
  src: url(https://www.kintetsu-re.co.jp/assets/fonts/SourceHanSerifJP/SourceHanSerifJP-Bold.otf) format("opentype");
}
@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 900;
  src: url(https://www.kintetsu-re.co.jp/assets/fonts/SourceHanSerifJP/SourceHanSerifJP-Heavy.otf) format("opentype");
}
/* -----------------------------------
    Base
----------------------------------- */
html {
  font-size: 62.5%;
  height: 100%;
}

body {
  color: #333333;
  font-size: 1.4rem;
  height: 100%;
  line-height: 1.5;
  font-family: "メイリオ", Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3",Hiragino Kaku Gothic Pro;
  -webkit-text-size-adjust: 100%;
}
body * {
  box-sizing: border-box;
}
body.locked {
  overflow: hidden;
}

a {
  cursor: pointer;
  position: relative;
}
a:link, a:visited {
  color: #17448a;
  text-decoration: none;
}
a .arrow {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background-color: #17448a;
  border-radius: 12px;
  display: inline-block;
  transform: translateY(0.4em);
  margin-right: 5px;
}
a .arrow::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-60%, -50%) rotate(-45deg);
}

label {
  cursor: pointer;
}

sup {
  font-size: 1rem;
  vertical-align: super;
}

.fade {
  transition: opacity 0.5s;
}
.fade:hover {
  opacity: 0.7;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

img[src$=".svg"] {
  width: 100%;
}

#overlay {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transition: 0.5s;
}
#overlay.active {
  visibility: visible;
  opacity: 1;
}

/* タブ切り替え */
.tab-content {
  visibility: hidden;
  opacity: 0;
  height: 0;
}
.tab-content.show {
  transition-duration: 0.5s;
  transition-property: visibility opacity;
  visibility: visible;
  opacity: 1;
  height: auto;
}

@media print,screen and (min-width: 751px) {
  .visible-block-pc {
    display: block;
  }

  .visible-inline-pc {
    display: inline;
  }

  .visible-block-sp {
    display: none !important;
  }

  .visible-inline-sp {
    display: none !important;
  }

  .main {
    padding-top: 119px;
    display: block;
  }

  .container {
    position: relative;
    max-width: 1020px;
    padding: 0 10px;
    margin: 0 auto;
  }
  .container::before, .container::after {
    height: 0;
    display: table;
    content: '';
  }
  .container::after {
    clear: both;
  }

  /* パンくずリスト */
  .breadcrumb {
    padding: 13px 0;
    font-size: 0;
  }
  .breadcrumb li {
    font-size: 14px;
    letter-spacing: 0;
    display: inline-block;
  }
  .breadcrumb li a {
    text-decoration: none;
  }
  .breadcrumb li a:link, .breadcrumb li a:visited {
    color: #2159b2;
  }
  .breadcrumb li a:hover {
    text-decoration: underline;
  }
  .breadcrumb li a::after {
    content: '&gt;';
    display: inline-block;
    padding-left: 6px;
    padding-right: 8px;
  }

  /* ページタイトル */
  .page-title {
    font-size: 3.4rem;
    margin: 0 auto;
    text-align: center;
    color: #fff;
  }
  .page-title small {
    display: block;
    margin-top: 18px;
    padding-top: 16px;
    text-align: center;
    font-size: 1.7rem;
    color: #fff;
    position: relative;
  }
  .page-title small::before {
    display: block;
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -150px;
    width: 300px;
    height: 2px;
    background: #fff;
  }

  /* 共通見出しスタイル */
  .section-title {
    font-size: 3.0rem;
    width: auto;
    margin: 0 auto 30px;
    text-align: center;
  }
  .section-title span {
    display: block;
    padding-bottom: 15px;
    position: relative;
  }
  .section-title span::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #17448a;
    width: 300px;
    height: 2px;
  }
  .section-title small {
    display: block;
    padding-top: 16px;
    text-align: center;
    font-size: 1.7rem;
    color: #17448a;
  }

  .section-title2 {
    font-size: 2.6rem;
    margin: 0 auto 30px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 24px;
    margin-bottom: 30px;
    position: relative;
  }
  .section-title2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 1px;
    background: #b3b3b3;
  }

  .category-label-container {
    position: absolute;
    display: block;
    top: 15px;
    right: 26px;
    width: 24.667%;
  }

  /* カテゴリーラベル
  ----------------------------------- */
  .category-label {
    width: 80px;
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px 0 4px;
    text-align: center;
    display: block;
    color: #fff;
  }
  .category-label.event {
    background: #f2793d;
  }
  .category-label.sumai {
    background: #3da8cc;
  }
  .category-label.company {
    background: #2e5799;
  }
  .category-label.shopping-center {
    background: #32a692;
  }
  .category-label.other {
    background: #8c8c8c;
  }

  /* お知らせリスト */
  .information-list li {
    background: #f2f2f2;
    font-size: 1.6rem;
    display: table;
    width: 100%;
    line-height: 1.5;
  }
  .information-list li:nth-child(even) {
    background: #fff;
  }
  .information-list li a {
    text-align: left;
    text-decoration: none;
    color: #333333;
  }
  .information-list li a:hover {
    text-decoration: underline;
  }

  .information-published {
    display: table-cell;
    width: 145px;
    vertical-align: middle;
    color: #666;
    padding: 16px 26px 16px 20px;
  }

  .information-content {
    display: table-cell;
    vertical-align: middle;
    padding: 16px 18px 16px 0;
  }
  .information-text {
      font-size: 1.6rem;
      text-align: center;
  }
}
@media only screen and (max-width: 750px) {
  html, body {
    -webkit-overflow-scrolling: touch !important;
    overflow: auto !important;
    height: 100% !important;
  }

  body {
    font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, "游ゴシック", YuGothic;
    position: relative;
    min-height: 100%;
    font-size-adjust: 100%;
  }

  .main {
    display: block;
    padding-top: 54px;
  }

  .visible-block-pc {
    display: none !important;
  }

  .visible-inline-pc {
    display: none !important;
  }

  .visible-block-sp {
    display: block;
  }

  .visible-inline-sp {
    display: inline;
  }

  .container {
    width: 100%;
    display: inline-block;
    position: relative;
  }
  .container::before, .container::after {
    height: 0;
    display: table;
    content: '';
  }
  .container::after {
    clear: both;
  }

  .breadcrumb {
    font-size: 0;
    padding: 13px 10px;
  }
  .breadcrumb li {
    font-size: 1.4rem;
    line-height: 1.5;
    display: inline-block;
  }
  .breadcrumb li a {
    text-decoration: none;
  }
  .breadcrumb li a:link, .breadcrumb li a:visited {
    color: #17448a;
  }
  .breadcrumb li a:hover {
    text-decoration: underline;
  }
  .breadcrumb li a::after {
    content: '&gt;';
    display: inline-block;
    padding-left: 6px;
    padding-right: 8px;
  }

  /* 共通見出しスタイル
  ----------------------------------- */
  .page-title {
    font-size: 6.133vw;
    margin: 0 auto 30px;
    text-align: center;
    color: #fff;
  }
  .page-title small {
    display: block;
    margin-top: 18px;
    padding-top: 16px;
    text-align: center;
    font-size: 3.467vw;
    color: #fff;
    position: relative;
  }
  .page-title small::before {
    display: block;
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -25.6%;
    width: 51.2%;
    height: 2px;
    background: #fff;
  }

  .section-title {
    font-size: 5.333vw;
    margin: 0 auto 30px;
    text-align: center;
    line-height: 1.5;
  }
  .section-title span {
    display: block;
    padding-bottom: 15px;
    position: relative;
  }
  .section-title span::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #17448a;
    width: 51.2%;
    height: 2px;
  }
  .section-title small {
    display: block;
    padding-top: 16px;
    text-align: center;
    font-size: 3.467vw;
    color: #17448a;
  }

  .section-title2 {
    font-size: 4.8vw;
    margin: 0 auto 30px;
    text-align: center;
    line-height: 1.5;
    padding-bottom: 24px;
    margin-bottom: 30px;
    position: relative;
  }
  .section-title2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 1px;
    background: #b3b3b3;
  }

  .category-label-container {
    position: absolute;
    display: block;
    top: 15px;
    right: 26px;
  }

  /* カテゴリーラベル
  ----------------------------------- */
  .category-label {
    width: 80px;
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px 0 4px;
    text-align: center;
    display: block;
    color: #fff;
  }
  .category-label.event {
    background: #f2793d;
  }
  .category-label.sumai {
    background: #3da8cc;
  }
  .category-label.company {
    background: #2e5799;
  }
  .category-label.shopping-center {
    background: #32a692;
  }
  .category-label.other {
    background: #8c8c8c;
  }

  /* お知らせリスト */
  .information-list {
    width: 89.333%;
    margin: 0 auto 5.6%;
  }
  .information-list li {
    background: #f2f2f2;
    font-size: 1.6rem;
    width: 100%;
    line-height: 1.5;
    padding: 3.731%;
  }
  .information-list li:nth-child(even) {
    background: #fff;
  }
  .information-list li a {
    text-align: left;
    text-decoration: none;
    color: #333333;
  }
  .information-list li a:hover {
    text-decoration: underline;
  }

  .information-published {
    color: #666;
    display: block;
    font-size: 3.6vw;
    margin-bottom: 2.239%;
  }

  .information-content {
    font-size: 3.6vw;
  }
  .information-text {
      margin: 0 auto 5.6%;
      font-size: 1.6rem;
      text-align: center;
  }
}
/* ボタン */
@media print,screen and (min-width: 751px) {
  .button {
    display: inline-flex;
    text-align: center;
    background: #fff;
    min-width: 340px;
    min-height: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
    vertical-align: middle;
    padding: 10px 10px 10px 40px;
    position: relative;
  }
  .button .arrow {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    display: block;
    width: 24px;
    height: 24px;
    background-color: #17448a;
    border-radius: 12px;
  }
  .button .arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(-60%, -50%) rotate(-45deg);
  }
  .button.gray {
    background: #eeeeee;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
  }

  .button-clear {
    border: 1px solid #fff;
    padding: 19px 19px 19px 50px;
    display: inline-flex;
    min-width: 340px;
    width: auto;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.6rem;
  }
  .button-clear:link, .button-clear:visited {
    color: #fff;
  }
  .button-clear .arrow {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 12px;
  }
  .button-clear .arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-right: 1px solid #17448a;
    border-bottom: 1px solid #17448a;
    transform: translate(-60%, -50%) rotate(-45deg);
  }
}
@media only screen and (max-width: 750px) {
  .button {
    display: inline-block;
    font-size: 3.733vw;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
    vertical-align: middle;
    padding: 20px 0 20px 30px;
    position: relative;
  }
  .button .arrow {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    display: block;
    width: 24px;
    height: 24px;
    background-color: #17448a;
    border-radius: 12px;
  }
  .button .arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(-60%, -50%) rotate(-45deg);
  }
  .button.gray {
    background: #eeeeee;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
  }

  .button-clear {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #fff;
    padding: 19px 10px 19px 40px;
    margin: 0 auto;
    text-align: center;
    font-size: 3.2vw;
  }
  .button-clear:link, .button-clear:visited {
    color: #fff;
  }
  .button-clear .arrow {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 12px;
  }
  .button-clear .arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-right: 1px solid #17448a;
    border-bottom: 1px solid #17448a;
    transform: translate(-60%, -50%) rotate(-45deg);
  }
}
/* ----------------------------------------
    ボタンリスト（カテゴリー内リンク一覧)
---------------------------------------- */
@media print,screen and (min-width: 751px) {
  .button-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .button-list li {
    width: 32%;
    margin-bottom: 18px;
  }
  .button-list li:nth-child(3n+2):last-child {
    margin-left: auto;
    margin-right: 34%;
  }
  .button-list .button {
    width: 100%;
    min-width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 750px) {
  .button-list {
    width: 100%;
  }
  .button-list li {
    width: 84%;
    margin: 0 auto 5.333%;
  }
  .button-list .button {
    display: block;
    width: 100%;
    padding: 20px 10px 20px 40px;
  }
}
/* -----------------------------------
    テーブルスタイル　
----------------------------------- */
/* PC
-----------------------------------*/
@media print,screen and (min-width: 751px) {
  .table-basic {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #d5d5d5;
    table-layout: fixed;
  }
  .table-basic summary {
    font-size: 1.7em;
    font-weight: bold;
  }
  .table-basic th, .table-basic td {
    font-size: 1.6rem;
    padding: 20px;
    border: 1px solid #d5d5d5;
    word-wrap: break-word;
    word-break: break-all;
    vertical-align: top;
    text-align: left;
    line-height: 1.5;
  }
  .table-basic th.no-border, .table-basic td.no-border {
    border-left: none;
    border-right: none;
  }
  .table-basic th {
    background: #eeeeee;
    width: 240px;
  }

  .table-outline {
    width: 100%;
    margin-bottom: 20px;
    table-layout: fixed;
    border: 1px solid #d5d5d5;
  }
  .table-outline th, .table-outline td {
    font-size: 1.6rem;
    padding: 20px;
    word-wrap: break-word;
    word-break: break-all;
    vertical-align: top;
    text-align: left;
    line-height: 1.5;
  }
}
/* SP
-----------------------------------*/
@media only screen and (max-width: 750px) {
  .table-basic {
    margin-bottom: 2.817%;
    width: 100%;
    border: 1px solid #d5d5d5;
  }
  .table-basic th, .table-basic td {
    font-size: 14px;
    font-size: 3.733vw;
    padding: 10px;
    border: 1px solid #d5d5d5;
    word-wrap: break-word;
    vertical-align: top;
    text-align: left;
    line-height: 1.5;
  }
  .table-basic th.no-border, .table-basic td.no-border {
    border-left: none;
    border-right: none;
  }
  .table-basic th {
    background: #eeeeee;
  }

  .table-outline {
    width: 100%;
    border: 1px solid #d5d5d5;
    margin-bottom: 2.817%;
  }
  .table-outline th, .table-outline td {
    font-size: 14px;
    font-size: 3.733vw;
    padding: 10px;
    word-wrap: break-word;
    vertical-align: top;
    text-align: left;
    line-height: 1.5;
  }

  .scroll-table {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2.817%;
  }

  .scroll-table::-webkit-scrollbar {
    height: 5px;
  }

  .scroll-table::-webkit-scrollbar-track {
    background: #F1F1F1;
  }

  .scroll-table::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}
/* -----------------------------------
    余白
----------------------------------- */
.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

/* -----------------------------------
    おすすめコンテンツ
----------------------------------- */
@media print,screen and (min-width: 751px) {
  .recommend {
    background: #666666;
    padding-top: 50px;
    padding-bottom: 82px;
  }

  .recommend-title {
    font-size: 2.6rem;
    color: #fff;
    text-align: center;
    margin-bottom: 38px;
  }

  .recommend-list {
    max-width: 90.441%;
    margin: 0 auto;
  }

  .recommend-item {
    margin: 0 5px;
    display: block;
    text-decoration: none;
    transition: opacity 0.5s;
  }
  .recommend-item::last-child {
    margin: 0;
  }
  .recommend-item:hover {
    opacity: 0.7;
  }

  .recommend-image {
    margin-bottom: 20px;
  }
  .recommend-image img {
    max-width: auto;
    width: 100%;
  }

  .recommend-description {
    color: #fff;
    font-size: 1.9rem;
    font-size: 19px;
    font-size: 1.397vw;
    line-height: 1.579;
    letter-spacing: -0.01em;
    text-align: center;
  }
}
@media print,screen and (min-width: 751px) and (min-width: 1360px) {
  .recommend-description {
    font-size: 1.9rem;
  }
}

@media only screen and (max-width: 750px) {
  .recommend {
    background: #666666;
    padding-top: 6.133%;
    padding-bottom: 11.733%;
  }

  .recommend-title {
    font-size: 4vw;
    color: #fff;
    text-align: center;
    margin-bottom: 4.4%;
  }

  .recommend-list {
    width: 81.333%;
    margin: 0 auto;
  }

  .recommend-item {
    width: 40%;
    margin: 0 5px;
    display: block;
    text-decoration: none;
  }

  .recommend-image {
    max-width: 300px;
    margin-bottom: 20px;
  }

  .recommend-description {
    max-width: 300px;
    color: #fff;
    font-size: 2.933vw;
    line-height: 1.579;
    letter-spacing: -0.01em;
    text-align: left;
  }
}
/* -----------------------------------
    関連リンク
----------------------------------- */
@media print,screen and (min-width: 751px) {
  .related-link {
    border-top: 1px solid #d5d5d5;
    padding-top: 45px;
    padding-bottom: 70px;
  }

  .related-link-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .related-link-item {
    display: block;
    border: 1px solid #d5d5d5;
    padding: 1%;
    display: flex;
    align-items: center;
    width: 32%;
    margin-bottom: 2%;
  }
  .related-link-item-image {
    width: 31.25%;
  }
  .related-link-item-content {
    padding-left: 10px;
    width: auto;
    text-align: left;
  }
  .related-link-item:nth-child(3n+2):last-child {
    margin-right: 34%;
  }
}
@media only screen and (max-width: 750px) {
  .related-link {
    border-top: 1px solid #d5d5d5;
    padding-top: 6.667%;
    padding: 6.667% 2.667%;
  }

  .related-link-list {
    width: 100%;
  }

  .related-link-item {
    border: 1px solid #d5d5d5;
    padding: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 4.225%;
  }
  .related-link-item-image {
    width: 30%;
  }
  .related-link-item-content {
    padding-left: 2.985%;
    width: 70%;
    font-size: 3.733vw;
    text-align: left;
  }
  .related-link-item.no-photo {
    padding: 5.333%;
  }
  .related-link-item.no-photo .related-link-item-content {
    width: 100%;
    padding-left: 0;
  }
}
/* -----------------------------------
    お知らせ・ニュースリリース記事一覧
-----------------------------------*/
@media print,screen and (min-width: 751px) {
  .article-list {
    margin-bottom: 50px;
  }
  .article-list &gt; li {
    background: #f2f2f2;
    padding: 20px 25px;
  }
  .article-list &gt; li:nth-child(even) {
    background: #fff;
  }
  .article-list &gt; li a {
    display: block;
  }
  .article-list &gt; li a:link, .article-list &gt; li a:visited {
    color: #333;
  }
  .article-list &gt; li a:hover .article-list-content {
    text-decoration: underline;
  }

  .article-list-meta {
    margin-bottom: 17px;
    position: relative;
  }

  .article-list-pubdate {
    display: block;
    font-size: 1.6rem;
    line-height: 1.313;
    vertical-align: middle;
    margin-right: 17px;
    display: inline-block;
  }

  .article-list-new-icon {
    display: block;
    width: 55px;
    text-align: center;
    padding: 5px 12px;
    background: #f26549;
    color: #fff;
    margin-bottom: 15px;
  }

  .article-list-category-list {
    display: inline-block;
  }
  .article-list-category-list li {
    display: inline-block;
  }

  .article-list-content {
    font-size: 1.6rem;
    line-height: 1.563;
  }
}
@media only screen and (max-width: 750px) {
  .article-list {
    margin-bottom: 50px;
  }
  .article-list &gt; li {
    background: #f2f2f2;
    padding: 4% 4.667%;
  }
  .article-list &gt; li:nth-child(even) {
    background: #fff;
  }
  .article-list &gt; li a {
    display: block;
  }
  .article-list &gt; li a:link, .article-list &gt; li a:visited {
    color: #333;
  }

  .article-list-meta {
    margin-bottom: 2.667%;
  }

  .article-list-new-icon {
    display: inline-block;
    padding: 5px 12px;
    background: #f26549;
    color: #fff;
    margin-bottom: 15px;
  }

  .article-list-pubdate {
    font-size: 1.6rem;
    line-height: 1.313;
    vertical-align: middle;
    margin-right: 17px;
    display: block;
    margin-bottom: 2.667%;
  }

  .article-list-category-list li {
    display: inline-block;
  }

  .article-list-content {
    font-size: 4.533vw;
    line-height: 1.563;
  }
}
/* -----------------------------------
    ICONS
----------------------------------- */
.icon-pdf {
  position: relative;
}
.icon-pdf::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: -5px;
  content: '';
  width: 20px;
  height: 26px;
  background: url("/assets/images/common/icon-pdf.png") no-repeat;
}

.icon-external {
  position: relative;
  padding-right: 25px;
}
.icon-external::after {
  content: '';
  display: inline-block;
  margin-left: 5px;
  margin-right: -20px;
  width: 15px;
  height: 11px;
  background: url("/assets/images/common/icon-external.png") no-repeat;
}
.icon-external.white::after {
  background: url("/assets/images/common/icon-external_white.png") no-repeat;
}

/* -----------------------------------
    ページネーション
-----------------------------------*/
@media print,screen and (min-width: 751px) {
  /* ページネーション */
  .pagination {
    display: inline-block;
    padding: 0 22px;
  }
  .pagination-list li {
    display: inline-block;
    font-size: 0;
  }
  .pagination-list li.prev a, .pagination-list li.next a {
    width: 2em;
    position: relative;
  }
  .pagination-list li.prev a:hover, .pagination-list li.next a:hover {
    text-decoration: underline;
    background: none;
    color: #17448a;
  }
  .pagination-list li.prev a::after, .pagination-list li.next a::after {
    position: absolute;
    content: '';
    top: 50%;
    width: 11px;
    height: 11px;
    border-bottom: 1px solid #17448a;
  }
  .pagination-list li.prev a::after {
    transform: translateY(-50%) rotate(45deg);
    border-left: 1px solid #17448a;
    left: -22px;
  }
  .pagination-list li.next a::after {
    transform: translateY(-50%) rotate(-45deg);
    border-right: 1px solid #17448a;
    right: -22px;
  }
  .pagination-list li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    text-align: center;
    color: #17448a;
    font-size: 1.8rem;
  }
  .pagination-list li a:hover {
    border-radius: 50%;
    background: #17448a;
    color: #fff;
  }
  .pagination-list li .current {
    width: 35px;
    font-size: 1.8rem;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background: #17448a;
    color: #fff;
  }
}
@media only screen and (max-width: 750px) {
  /* ページネーション */
  .pagination {
    display: inline-block;
    padding: 0 11px;
    width: 100%;
  }
  .pagination-list {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .pagination-list li.prev a, .pagination-list li.next a {
    width: 2.5em;
    position: relative;
  }
  .pagination-list li.prev a:hover, .pagination-list li.next a:hover {
    text-decoration: underline;
    background: none;
    color: #17448a;
  }
  .pagination-list li.prev a::after, .pagination-list li.next a::after {
    position: absolute;
    content: '';
    top: 50%;
    width: 6px;
    height: 6px;
    border-bottom: 1px solid #17448a;
  }
  .pagination-list li.prev a::after {
    transform: translateY(-50%) rotate(45deg);
    border-left: 1px solid #17448a;
    left: -11px;
  }
  .pagination-list li.next a::after {
    transform: translateY(-50%) rotate(-45deg);
    border-right: 1px solid #17448a;
    right: -11px;
  }
  .pagination-list li a {
    width: 8.333%;
    height: 25px;
    line-height: 25px;
    display: inline-block;
    margin-left: -2px;
    margin-right: -2px;
    text-align: center;
    color: #17448a;
    font-size: 3.733vw;
  }
  .pagination-list li .current {
    width: 25px;
    height: 25px;
    font-size: 3.733vw;
    line-height: 25px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background: #17448a;
    color: #fff;
  }
}
/* -----------------------------------
    Get Adobe Reader
----------------------------------- */
@media print,screen and (min-width: 751px) {
  .get-adobe-reader {
    border: 1px solid #d3d3d3;
    padding: 15px;
    display: flex;
    width: 620px;
    margin: 0 auto 30px;
    align-items: center;
  }
  .get-adobe-reader-image {
    width: 158px;
    text-align: center;
  }
  .get-adobe-reader-content {
    font-size: 1.4rem;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 750px) {
  .get-adobe-reader {
    border: 1px solid #d3d3d3;
    padding: 15px;
    width: 89.333%;
    margin: 0 auto 30px;
  }
  .get-adobe-reader-image {
    text-align: center;
    max-width: 158px;
    margin: 0 auto 20px;
  }
  .get-adobe-reader-content {
    font-size: 3.733vw;
    line-height: 1.5;
  }
}
/* -----------------------------------
    Local Navi
----------------------------------- */
@media print,screen and (min-width: 751px) {
  .local-nav {
    max-width: 1000px;
    margin: 0 auto;
  }
  .local-nav ul {
    display: flex;
    justify-content: center;
  }
  .local-nav li {
    min-width: 180px;
    margin-left: 15px;
    background: #eee;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
    position: relative;
    min-height: 70px;
  }
  .local-nav li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #17448a;
    padding: 10px 20px 10px 50px;
    text-decoration: none;
    font-size: 1.7rem;
  }
  .local-nav li a::before {
    position: absolute;
    bottom: 50%;
    margin-top: -4px;
    left: 15px;
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #17448a;
    border-bottom: 2px solid #17448a;
    transition: transform 0.3s;
    transform: translateY(50%) rotate(45deg);
  }
  .local-nav li a:hover {
    opacity: 0.8;
  }
  .local-nav li a:hover::before {
    transform: translateY(100%) rotate(45deg);
  }

  .local-nav2 {
    max-width: 1000px;
    padding-top: 90px;
    margin: 0 auto;
  }
  .local-nav2 ul {
    display: flex;
    justify-content: center;
  }
  .local-nav2 li {
    min-width: 180px;
    margin-left: 15px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.15);
    position: relative;
  }
  .local-nav2 li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 10px 20px 10px 50px;
    min-height: 70px;
    text-decoration: none;
    font-size: 1.7rem;
  }
  .local-nav2 li a::before {
    position: absolute;
    bottom: 50%;
    margin-top: -4px;
    left: 15px;
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transition: transform 0.3s;
    transform-origin: right bottom;
    transform: translateY(50%) rotate(45deg);
  }
  .local-nav2 li a:hover {
    opacity: 0.8;
  }
  .local-nav2 li a:hover::before {
    transform: translateY(100%) rotate(45deg);
  }
}
/* -----------------------------------
    サムネイル付きインデックス
----------------------------------- */
@media print,screen and (min-width: 751px) {
  .thumbnail-index {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
  }

  .thumbnail-index-item {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
    width: 30%;
    margin-bottom: 36px;
    padding-bottom: 20px;
  }
  .thumbnail-index-item a {
    display: block;
    text-decoration: none;
    color: #666;
    transition: opacity 0.5s;
  }
  .thumbnail-index-item a:hover {
    opacity: 0.6;
  }
  .thumbnail-index-item:nth-child(3n+2):last-child {
    margin-left: auto;
    margin-right: 35%;
  }

  .thumbnail-index-label {
    position: absolute;
    width: 20%;
  }

  .thumbnail-index-meta {
    position: relative;
  }
  .thumbnail-index-meta::before, .thumbnail-index-meta::after {
    display: table;
    content: '';
  }
  .thumbnail-index-meta::after {
    clear: both;
  }

  .thumbnail-index-published {
    float: left;
    font-size: 1.6rem;
    color: #666666;
    padding-top: 3px;
    padding: 19px 26px 17px;
  }

  .thumbnail-index-title {
    padding: 0 26px 0 26px;
    margin-bottom: 15px;
    color: #17448a;
    font-size: 1.7rem;
    display: inline-block;
    position: relative;
  }

  .thumbnail-index-content {
    line-height: 1.625;
    font-size: 1.5rem;
    padding: 0 26px 17px;
  }
}
@media only screen and (max-width: 750px) {
  .thumbnail-index {
    display: block;
  }

  .thumbnail-index-item {
    position: relative;
    width: 72%;
    margin: 0 auto 5.333%;
    background-color: #fff;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
  }
  .thumbnail-index-item a {
    display: block;
    text-decoration: none;
    color: #666;
    transition: opacity 0.5s;
  }
  .thumbnail-index-item a:hover {
    opacity: 0.7;
  }
  .thumbnail-index-item:nth-child(n + 4) {
    display: none;
  }

  .thumbnail-index-label {
    position: absolute;
    width: 20.185%;
  }

  .thumbnail-index-thumbnail img {
    max-width: auto;
    width: 100%;
  }

  .thumbnail-index-meta {
    position: relative;
  }
  .thumbnail-index-meta::before, .thumbnail-index-meta::after {
    display: table;
    content: '';
  }
  .thumbnail-index-meta::after {
    clear: both;
  }

  .thumbnail-index-published {
    float: left;
    font-size: 3.2vw;
    color: #666666;
    padding-top: 3px;
    padding: 19px 8.333% 0;
  }

  .thumbnail-index-title {
    padding: 5.556% 0 0 8.333%;
    color: #17448a;
    font-size: 4.533vw;
    display: inline-block;
    position: relative;
  }

  .thumbnail-index-content {
    line-height: 1.741;
    font-size: 3.6vw;
    padding: 5.556% 8.333%;
  }
}
/* -----------------------------------
    サムネイル付きインデックス
----------------------------------- */
@media print,screen and (min-width: 751px) {
  .thumbnail-index {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
  }

  .thumbnail-index-item {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
    width: 30%;
    margin-bottom: 36px;
    padding-bottom: 20px;
  }
  .thumbnail-index-item a {
    display: block;
    text-decoration: none;
    color: #666;
    transition: opacity 0.5s;
  }
  .thumbnail-index-item a:hover {
    opacity: 0.6;
  }
  .thumbnail-index-item:nth-child(3n+2):last-child {
    margin-left: auto;
    margin-right: 35%;
  }

  .thumbnail-index-label {
    position: absolute;
    width: 20%;
  }

  .thumbnail-index-meta {
    position: relative;
  }
  .thumbnail-index-meta::before, .thumbnail-index-meta::after {
    display: table;
    content: '';
  }
  .thumbnail-index-meta::after {
    clear: both;
  }

  .thumbnail-index-published {
    float: left;
    font-size: 1.6rem;
    color: #666666;
    padding-top: 3px;
    padding: 19px 26px 17px;
  }

  .thumbnail-index-title {
    padding: 0 26px 0 26px;
    margin-bottom: 15px;
    color: #17448a;
    font-size: 1.7rem;
    display: inline-block;
    position: relative;
  }

  .thumbnail-index-content {
    line-height: 1.625;
    font-size: 1.5rem;
    padding: 0 26px 17px;
  }
}
@media only screen and (max-width: 750px) {
  .thumbnail-index {
    display: block;
  }

  .thumbnail-index-item {
    position: relative;
    width: 72%;
    margin: 0 auto 5.333%;
    background-color: #fff;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
  }
  .thumbnail-index-item a {
    display: block;
    text-decoration: none;
    color: #666;
    transition: opacity 0.5s;
  }
  .thumbnail-index-item a:hover {
    opacity: 0.7;
  }
  .thumbnail-index-item:nth-child(n + 4) {
    display: none;
  }

  .thumbnail-index-label {
    position: absolute;
    width: 20.185%;
  }

  .thumbnail-index-thumbnail img {
    max-width: auto;
    width: 100%;
  }

  .thumbnail-index-meta {
    position: relative;
  }
  .thumbnail-index-meta::before, .thumbnail-index-meta::after {
    display: table;
    content: '';
  }
  .thumbnail-index-meta::after {
    clear: both;
  }

  .thumbnail-index-published {
    float: left;
    font-size: 3.2vw;
    color: #666666;
    padding-top: 3px;
    padding: 19px 8.333% 0;
  }

  .thumbnail-index-title {
    padding: 5.556% 0 0 8.333%;
    color: #17448a;
    font-size: 4.533vw;
    display: inline-block;
    position: relative;
  }

  .thumbnail-index-content {
    line-height: 1.741;
    font-size: 3.6vw;
    padding: 5.556% 8.333%;
  }
}
/* -----------------------------------
    サムネイル付きインデックス (枠無し)
----------------------------------- */
@media print,screen and (min-width: 751px) {
  .thumbnail-index2.column2 ul {
    max-width: 1000px;
    margin-left: -1%;
  }
  .thumbnail-index2.column2 ul::after {
    content: '';
    clear: both;
    display: table;
  }
  .thumbnail-index2.column2 li {
    float: left;
    width: 48%;
    margin-left: 2%;
  }
  .thumbnail-index2.column2 li:nth-child(3n + 1) {
    clear: none;
  }
  .thumbnail-index2.column2 li:nth-child(2n + 1) {
    clear: both;
  }
  .thumbnail-index2 &gt; ul {
    max-width: 1050px;
    margin-left: -5%;
  }
  .thumbnail-index2 &gt; ul::after {
    content: '';
    clear: both;
    display: table;
  }
  .thumbnail-index2 &gt; ul &gt; li &gt; a {
    display: block;
  }
  .thumbnail-index2 li {
    float: left;
    width: 28.571%;
    margin-left: 4.762%;
    margin-bottom: 45px;
  }
  .thumbnail-index2 li:nth-child(3n + 1) {
    clear: both;
  }
  .thumbnail-index2-summary {
    padding-top: 15px;
    line-height: 1.75;
    font-size: 1.6rem;
    color: #333333;
  }
  .thumbnail-index2-image img {
    width: 100%;
  }
  .thumbnail-index2-title {
    margin-bottom: 12px;
    display: block;
    font-size: 1.9rem;
    text-decoration: none;
    color: #17448a;
    line-height: 1;
    position: relative;
    vertical-align: middle;
    padding-left: 42px;
    line-height: 1.474;
    letter-spacing: 0.025em;
  }
  .thumbnail-index2-title .arrow {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #17448a;
    border-radius: 15px;
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
  }
  .thumbnail-index2-title .arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(-60%, -50%) rotate(-45deg);
  }
}
@media only screen and (max-width: 750px) {
  .thumbnail-index2 ul {
    width: 100%;
  }
  .thumbnail-index2 ul::after {
    height: 0;
    content: '';
    clear: both;
    display: table;
  }
  .thumbnail-index2 li {
    margin-bottom: 8%;
  }
  .thumbnail-index2 li a {
    display: block;
    width: 76.056%;
    margin: 0 auto 8%;
  }
  .thumbnail-index2-image img {
    width: 100%;
  }
  .thumbnail-index2-title {
    display: block;
    font-size: 4.8vw;
    text-decoration: none;
    color: #17448a;
    line-height: 1;
    position: relative;
    vertical-align: middle;
    padding-left: 32px;
    line-height: 1.474;
    letter-spacing: 0.025em;
    margin-bottom: 10px;
  }
  .thumbnail-index2-title .arrow {
    display: block;
    width: 24px;
    height: 24px;
    background-color: #17448a;
    border-radius: 12px;
    position: absolute;
    left: 0;
    top: 0.6em;
    transform: translateY(-50%);
  }
  .thumbnail-index2-title .arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(-60%, -50%) rotate(-45deg);
  }
  .thumbnail-index2-summary {
    padding-top: 12px;
    line-height: 1.75;
    font-size: 3.733vw;
    color: #333333;
  }
}
/* -----------------------------------
    サムネイル付きインデックス (横並び)
----------------------------------- */
@media print,screen and (min-width: 751px) {
  .thumbnail-index-row {
    padding: 50px 0 10px;
  }

  .thumbnail-index-row-list {
    display: flex;
    flex-wrap: wrap;
  }
  .thumbnail-index-row-list li {
    width: 50%;
    margin-bottom: 40px;
  }
  .thumbnail-index-row-list li:nth-last-child(1), .thumbnail-index-row-list li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .thumbnail-index-row-list li &gt; div,
  .thumbnail-index-row-list li &gt; a {
    display: flex;
    color: #333;
  }
  .thumbnail-index-row-list li &gt; div .thumbnail-index-row-title {
    padding-left: 0;
    color: #333;
  }
  .thumbnail-index-row-list li p {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .thumbnail-index-row-list .thumbnail-index-row-thumbnail {
    width: 32%;
  }
  .thumbnail-index-row-list .thumbnail-index-row-content {
    padding-left: 4%;
    width: 62%;
  }
  .thumbnail-index-row-list .thumbnail-index-row-title {
    font-size: 1.8rem;
    line-height: 1.556;
    color: #17448a;
    position: relative;
    margin-bottom: 20px;
    padding-left: 28px;
  }
  .thumbnail-index-row-list .thumbnail-index-row-title .arrow {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 24px;
    height: 24px;
    background-color: #17448a;
    border-radius: 12px;
    transform: translateY(0);
    vertical-align: 0.1em;
  }
  .thumbnail-index-row-list .thumbnail-index-row-title .arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(-60%, -50%) rotate(-45deg);
  }
}
@media only screen and (max-width: 750px) {
  .thumbnail-index-row {
    padding: 6.667% 0 10px;
  }

  .thumbnail-index-row-list {
    display: block;
    width: 100%;
  }
  .thumbnail-index-row-list li {
    clear: both;
    display: block;
    padding: 0 2.667%;
    margin: 0 auto 4%;
  }
  .thumbnail-index-row-list li::after {
    height: 0;
    content: '';
    display: table;
    clear: both;
  }
  .thumbnail-index-row-list li a {
    display: block;
    width: 100%;
    height: auto;
    color: #333;
  }
  .thumbnail-index-row-list li a .thumbnail-index-row-title {
    padding-left: 25px;
    color: #17448a;
  }
  .thumbnail-index-row-list li p {
    font-size: 3.467vw;
    line-height: 1.75;
  }
  .thumbnail-index-row-list .thumbnail-index-row-thumbnail {
    float: left;
    width: 30.667%;
  }
  .thumbnail-index-row-list .thumbnail-index-row-content {
    float: left;
    padding-left: 2.667%;
    width: 69.333%;
  }
  .thumbnail-index-row-list .thumbnail-index-row-title {
    font-size: 4vw;
    line-height: 1.556;
    position: relative;
    margin-bottom: 0.5em;
  }
  .thumbnail-index-row-list .thumbnail-index-row-title .arrow {
    position: absolute;
    left: 0;
    top: 0.6em;
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 20px;
    background-color: #17448a;
    border-radius: 10px;
  }
  .thumbnail-index-row-list .thumbnail-index-row-title .arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(-60%, -50%) rotate(-45deg);
  }
}
/* -----------------------------------------------
    カテゴリーヘッダー 全画面２カラム　画像+テキスト PC
----------------------------------------------- */
@media print,screen and (min-width: 751px) {
  .section-header {
    background: #f2f2f2;
    position: relative;
    display: flex;
  }
  .section-header.reverse {
    flex-direction: row-reverse;
  }
  .section-header::after {
    content: '';
    clear: both;
    display: table;
  }
  .section-header-content {
    padding: 30px 3.676%;
    width: 50%;
    display: flex;
    align-items: center;
  }
  .section-header-content-inner {
    width: 100%;
  }
  .section-header-content .button {
    margin-top: 20px;
    min-width: 61.765%;
    width: auto;
    padding-left: 40px;
    padding-right: 10px;
  }
  .section-header-image {
    width: 50%;
    min-height: 360px;
  }
  .section-header-title {
    font-size: 2.4rem;
    margin-bottom: 1em;
  }
  .section-header-text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .section-header-text p {
    margin-bottom: 1em;
  }
  .section-header-text p:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 750px) {
  .section-header {
    background: #f2f2f2;
    position: relative;
  }
  .section-header-content {
    padding: 6.667% 4%;
  }
  .section-header-content .button {
    margin-top: 20px;
    width: 100%;
  }
  .section-header-image {
    padding-top: 52.941%;
  }
  .section-header-title {
    font-size: 5.067vw;
    line-height: 1.5;
    margin-bottom: 1em;
  }
  .section-header-text {
    font-size: 4vw;
    line-height: 1.75;
  }
  .section-header-text p {
    margin-bottom: 1em;
  }
  .section-header-text p:last-child {
    margin-bottom: 0;
  }
}
/* -----------------------------------
    下層ページ用共通スタイル
----------------------------------- */
@media print,screen and (min-width: 751px) {
  .main-visual {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 420px;
    padding-top: 106px;
  }

  .main-visual-title {
    width: 450px;
    margin: 0 auto 69px;
  }

  .category-menu {
    display: block;
    border-top: 1px solid #d5d5d5;
    padding: 50px 0 70px;
  }
}
@media only screen and (max-width: 750px) {
  .main-visual {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 17.6% 0;
  }

  .main-visual-title {
    width: 60%;
    margin: 0 auto 4%;
  }
  .main-visual-title img {
    width: 100%;
  }

  .local-nav2 {
    display: none;
  }

  .category-menu {
    display: block;
    padding: 6.667% 0 6.667%;
    border-top: 1px solid #d5d5d5;
  }
}
/* -----------------------------------
    Header PC
----------------------------------- */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@media print,screen and (min-width: 751px) {
  .header {
    line-height: 1;
    position: fixed;
    width: 100%;
    z-index: 10000;
    background: #fff;
    height: 120px;
    border-bottom: 1px solid #c3c3c3;
    /* ヘッダー右側 */
    /* 検索フォーム */
    /* グローバルナビゲーション */
  }
  .header .logo {
    float: left;
    padding: 16px 0 22px 0;
    width: 180px;
  }
  .header .utils {
    float: right;
    width: 508px;
    padding-top: 24px;
  }
  .header .sns_icn {
    float: left;
    padding-right: 2em;
  }
  .header .sns_icn li {
    display: inline-block;
  }
  .header .other-nav {
    float: left;
    width:auto;
    padding-top: 3px;
  }
  .header .other-nav ul li {
    display: inline-block;
  }
  .header .other-nav ul li a {
    color: #696969;
    text-decoration: none;
    font-size: 1.5rem;
    position: relative;
    padding-left: 14px;
    padding-right: 15px;
    display: inline-block;
    margin-bottom: 5px;
  }
  .header .other-nav ul li a:hover {
    text-decoration: underline;
  }
  .header .other-nav ul li a::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    content: '';
    border-style: solid;
    border-width: 4px 0 4px 7px;
    border-color: transparent transparent transparent #696969;
  }
  .header .search {
    float: right;
    width: auto;
    padding-left: 38px;
    padding-bottom: 10px;
    border-bottom: 1px solid #808080;
    background: url("../images/common/icon-search.png") no-repeat 5px top;
  }
  .header .search input[type="search"] {
    border: none;
    box-shadow: none;
    outline: none;
    font-size: 1.4rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
    padding: 0;
    width: 140px;
  }
  .header .global-nav {
    clear: both;
  }
  .header .global-nav .global-nav-inner {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
  }
  .header .global-nav .global-nav-inner &gt; ul {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
  }
  .header .global-nav .global-nav-inner &gt; ul::after {
    content: '';
    display: table;
    clear: both;
  }
  .header .global-nav .global-nav-inner &gt; ul &gt; li {
    float: left;
    width: 20%;
    height: 40px;
    padding-bottom: 16px;
    background: url("../images/common/global-nav-delimiter.png") no-repeat right top;
  }
  .header .global-nav .global-nav-inner &gt; ul &gt; li:nth-child(5) {
    background: none;
  }
  .header .global-nav .global-nav-inner &gt; ul &gt; li &gt; a {
    font-size: 2.125vw;
    position: relative;
    text-align: center;
    display: block;
    margin: 0 auto;
    color: #17448a;
    text-decoration: none;
    transition: opacity 0.5s;
    padding-bottom: 10px;
  }
}
@media print,screen and (min-width: 751px) and (min-width: 800px) {
  .header .global-nav .global-nav-inner &gt; ul &gt; li &gt; a {
    font-size: 1.7rem;
  }
}
@media print,screen and (min-width: 751px) {
  .header .global-nav .global-nav-inner &gt; ul &gt; li &gt; a:visited {
    color: #17448a;
  }
  .header .global-nav .global-nav-inner &gt; ul &gt; li &gt; a.active::after, .header .global-nav .global-nav-inner &gt; ul &gt; li &gt; a:hover::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    content: '';
    display: block;
    width: 70%;
    height: 2px;
    background: #17448a;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub {
    position: absolute;
    z-index: 10;
    width: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 12px;
    border-top: 1px solid #c3c3c3;
    background: #fff;
    padding-top: 30px;
    padding-bottom: 50px;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub.active {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 15;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub.active.quick {
    transition: opacity 0s, visibility 0s;
    z-index: 10;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub ul {
    max-width: 1000px;
    margin: 0 auto;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub ul::after {
    content: '';
    display: table;
    clear: both;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub ul li {
    float: left;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub ul li.first {
    float: none;
    display: inline-block;
    margin-right: 0;
    margin-bottom: 30px;
    width: auto;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub ul li.first a {
    font-size: 2.5vw;
    text-decoration: none;
    color: #17448a;
    transition: none;
  }
}
@media print,screen and (min-width: 751px) and (min-width: 800px) {
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub ul li.first a {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 751px) {
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub ul li.first a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub ul li:last-child {
    margin-right: 0;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub ul a {
    display: block;
    transition: opacity 0.5s;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub ul a span {
    padding-top: 18px;
    display: block;
    font-size: 2.25vw;
    text-align: center;
  }
}
@media print,screen and (min-width: 751px) and (min-width: 800px) {
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub ul a span {
    font-size: 1.8rem;
  }
}
@media print,screen and (min-width: 751px) {
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub.kojin ul li {
    margin-right: 0.3%;
    width: 33%;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub.kojin ul li.first {
    width: 100%;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub.hojin ul li {
    margin-right: 0.4%;
    width: 19.6%;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub.hojin ul li.first {
    width: 100%;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub.company ul li {
    margin-right: 2.3%;
    margin-bottom: 9px;
    width: 17.6%;
  }
  .header .global-nav .global-nav-inner &gt; ul .global-nav-sub.company ul li.first {
    width: 100%;
    margin-bottom: 30px;
  }
  .header .global-nav .other-nav-list {
    display: none;
  }
}
/* -----------------------------------
    Header SP
----------------------------------- */
@media only screen and (max-width: 750px) {
  .header {
    position: fixed;
    width: 100%;
    z-index: 10000;
    background: #fff;
    border-bottom: 1px solid #d5d5d5;
    height: 54px;
    /* ヘッダー右側 */
    /* 検索フォーム */
    /* グローバルナビゲーション */
  }
  .header .logo {
    float: left;
    width: 135px;
    margin: 10px 0 16px 22px;
  }
  .header .utils {
    float: right;
    width: 26.667%;
  }
  .header .other-nav {
    display: none;
  }
  .header .sns_icn {
    display: flex;
    justify-content: center;
    background: #fff;
    padding-bottom: 3em;
  }
  .header .sns_icn li {
    display: inline-block;
    padding-right: 1em;
  }
  .header .search-toggle {
    cursor: pointer;
    position: absolute;
    right: 70px;
    z-index: 101;
    top: 11px;
    width: 30px;
    height: 25px;
    background: url("../images/common/btn-search_sp.png") no-repeat;
    background-size: 25px 25px;
    transition: background-color 0.5s;
  }
  .header .search-toggle::before, .header .search-toggle::after {
    content: '';
    display: block;
    transition: all .4s;
    position: absolute;
    top: 12px;
    left: -5px;
    width: 100%;
    height: 2px;
    background-color: #17448a;
    transition: opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
  }
  .header .search-toggle::before {
    transform: rotate(45deg);
  }
  .header .search-toggle::after {
    transform: rotate(-45deg);
  }
  .header .search-toggle.active {
    background: #fff;
  }
  .header .search-toggle.active::before {
    opacity: 1;
    visibility: visible;
  }
  .header .search-toggle.active::after {
    opacity: 1;
    visibility: visible;
  }
  .header .search-toggle p {
    font-size: 10px;
    padding-top: 25px;
    color: #17448a;
    letter-spacing: 4px;
  }
  .header .global-nav-toggle p {
    font-size: 10px;
    padding-top: 25px;
    color: #17448a;
  }
  .header .sp-search {
    position: absolute;
    top: 54px;
    width: 100%;
    background: #fff;
    max-height: 0;
    transition: max-height 0.25s ease-out;
    overflow: hidden;
  }
  .header .sp-search.active {
    max-height: 100vh;
    transition: max-height 0.25s ease-in;
    overflow: normal;
  }
  .header .sp-search input[type="search"] {
    width: 100%;
    border: none;
    box-shadow: none;
    outline: none;
    font-size: 1.6rem;
    -webkit-appearance: none;
  }
  .header .sp-search ::-webkit-input-placeholder {
    text-align: center;
  }
  .header .sp-search :-moz-placeholder {
    /* Firefox 18- */
    text-align: center;
  }
  .header .sp-search ::-moz-placeholder {
    /* Firefox 19+ */
    text-align: center;
  }
  .header .sp-search :-ms-input-placeholder {
    text-align: center;
  }
  .header .sp-search-container {
    padding: 25px 5.333%;
  }
  .header .sp-search-form {
    padding-top: 5px;
    padding-left: 30px;
    padding-bottom: 5px;
    background: url("../images/common/icon-search.png") no-repeat left center;
    border-bottom: 1px solid #808080;
    margin-bottom: 15px;
  }
  .header .sp-search-submit {
    background: #17448a;
    color: #fff;
    border: none;
    outline: none;
    width: 100%;
    display: block;
    padding: 12px 0;
    font-size: 1.8rem;
  }
  .header .global-nav-toggle {
    cursor: pointer;
    display: block;
    position: absolute;
    z-index: 101;
    top: 11px;
    right: 20px;
    width: 30px;
    height: 22px;
  }
  .header .global-nav-toggle span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #17448a;
  }
  .header .global-nav-toggle span:nth-child(1) {
    top: 0;
  }
  .header .global-nav-toggle span:nth-child(2) {
    top: 10px;
  }
  .header .global-nav-toggle span:nth-child(3) {
    top: 20px;
  }
  .header .global-nav-toggle.active span:nth-child(1) {
    transform: translateX(10px) rotate(45deg);
    transform-origin: left top;
  }
  .header .global-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .header .global-nav-toggle.active span:nth-child(3) {
    transform: translateX(10px) rotate(-45deg);
    transform-origin: left bottom;
  }
  .header .global-nav {
    display: none;
    position: absolute;
    top: 54px;
    z-index: 100;
    width: 100%;
    clear: both;
  }
  .header .global-nav .global-nav-inner {
    -webkit-overflow-scrolling: touch;
    height: calc(100vh - 54px);
    overflow-y: scroll;
  }
  .header .global-nav .global-nav-list {
    background: #fff;
    -webkit-overflow-scrolling: touch;
  }
  .header .global-nav .global-nav-list &gt; li a {
    position: relative;
    display: block;
    padding: 15px 18px;
    border-bottom: 1px solid #d5d5d5;
    font-size: 1.8rem;
    font-size: 4.8vw;
  }
  .header .global-nav .global-nav-list &gt; li a::after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    right: 28px;
    top: 50%;
    margin-top: -6px;
    border-bottom: 2px solid #17448a;
    border-right: 2px solid #17448a;
    transform: rotate(-45deg);
  }
  .header .global-nav .global-nav-list &gt; li ul {
    width: 89.333%;
    margin: 0 auto;
  }
  .header .global-nav .global-nav-list &gt; li li a {
    padding: 15px 4px;
    font-size: 4vw;
  }
  .header .global-nav .global-nav-list &gt; li li a::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    right: 7px;
    top: 50%;
    margin-top: -5px;
    border-bottom: 1px solid #17448a;
    border-right: 1px solid #17448a;
    transform: rotate(-45deg);
  }
  .header .global-nav .global-nav-list &gt; li.js-toggle-nav &gt; a {
    transition: opacity 0.5s;
  }
  .header .global-nav .global-nav-list &gt; li.js-toggle-nav &gt; a::after {
    position: absolute;
    content: '';
    top: 50%;
    margin-top: -1px;
    right: 22px;
    width: 20px;
    height: 2px;
    border: none;
    background: #17448a;
    transform: rotate(90deg);
  }
  .header .global-nav .global-nav-list &gt; li.js-toggle-nav &gt; a::before {
    position: absolute;
    content: '';
    top: 50%;
    margin-top: -1px;
    right: 22px;
    width: 20px;
    height: 2px;
    background: #17448a;
  }
  .header .global-nav .global-nav-list &gt; li.js-toggle-nav.active &gt; a::after {
    opacity: 0;
  }
  .header .global-nav .other-nav-list {
    background: #fff;
    padding: 22px 2%;
    margin: 0 auto;
  }
  .header .global-nav .other-nav-list::after {
    content: '';
    clear: both;
    display: table;
  }
  .header .global-nav .other-nav-list li {
    float: left;
    clear: both;
    width: 50%;
  }
  .header .global-nav .other-nav-list li:nth-child(even) {
    clear: none;
    width: 50%;
  }
  .header .global-nav .other-nav-list li a {
    display: block;
    padding: 10px 0;
    font-size: 1.2rem;
    font-size: 3.2vw;
  }
  .header .global-nav-sub {
    display: none;
    background: #e6e6e6;
  }
  .header .global-nav-sub ul &gt; li a {
    display: block;
    padding: 15px 8%;
  }
  .header .global-nav-sub-image {
    display: none;
  }
}
/* -----------------------------------
    Footer PC
----------------------------------- */
@media print,screen and (min-width: 751px) {
  .page-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    z-index: 500;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .page-top.fade-in {
    opacity: 1;
  }
  .page-top:hover {
    opacity: 0.8;
  }

  .footer {
    background: #f2f2f2;
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .footer-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 65px;
    position: relative;
    z-index: 0;
  }
  .footer-logo span {
    width: 220px;
    background: #f2f2f2;
    padding: 0 20px;
    display: block;
    margin: 0 auto;
  }
  .footer-logo::after {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0;
    right: 0;
    content: '';
    width: 100%;
    height: 2px;
    display: block;
    background: #17448a;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1270px;
    padding: 0 10px;
    margin: 0 auto;
  }
  .footer-container::before, .footer-container::after {
    content: '';
    display: table;
  }
  .footer-container::after {
    clear: both;
  }

  .footer-kojin,
  .footer-hojin,
  .footer-company,
  .footer-recruit,
  .footer-other {
    width: 250px;
  }

  .footer-nav {
    margin-bottom: 65px;
  }
  .footer-nav a {
    text-decoration: none;
    color: #333;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-nav a[target="_blank"] {
    position: relative;
  }
  .footer-nav a[target="_blank"]::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    width: 15px;
    height: 11px;
    background: url("/assets/images/common/icon-external.png") no-repeat;
  }
  .footer-nav .category {
    font-size: 1.7rem;
    font-weight: normal;
    display: block;
    color: #17448a;
    margin-bottom: 30px;
  }
  .footer-nav .category a {
    color: #17448a;
  }
  .footer-nav .sub-category {
    font-weight: bold;
    display: block;
    padding-bottom: 5px;
  }
  .footer-nav ul {
    margin-bottom: 25px;
  }
  .footer-nav ul li {
    font-size: 1.5rem;
    font-weight: 400;
    display: block;
    margin-bottom: 18px;
  }
  .footer-nav ul li ul {
    padding-top: 15px;
  }
  .footer-nav ul li ul li {
    font-size: 1.4rem;
    margin-bottom: 1em;
    font-weight: normal;
  }

  .copyright {
    font-size: 1.2rem;
    color: #666666;
    text-align: center;
  }
}
/* -----------------------------------
    Footer SP
----------------------------------- */
@media only screen and (max-width: 750px) {
  .page-top {
    width: 12.8%;
    height: auto;
    margin: 0 auto 5.333%;
    z-index: 500;
    transition: opacity 0.5s;
  }
  .page-top a {
    display: block;
  }
  .page-top a img {
    width: 100%;
  }
  .page-top.fade-in {
    opacity: 1;
  }

  .footer {
    background: #f2f2f2;
    padding-top: 6.667%;
    padding-bottom: 8%;
  }

  .footer-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 6.667%;
    position: relative;
    z-index: 0;
  }
  .footer-logo span {
    display: block;
    width: 40%;
    padding: 0 4%;
    margin: 0 auto;
    background: #f2f2f2;
  }
  .footer-logo::after {
    position: absolute;
    z-index: -1;
    top: 50%;
    content: '';
    width: 100%;
    height: 2px;
    display: block;
    background: #17448a;
  }

  .footer-container {
    display: block;
    width: 89.333%;
    margin: 0 auto;
  }
  .footer-container::before, .footer-container::after {
    content: '';
    display: table;
  }
  .footer-container::after {
    clear: both;
  }

  .footer-kojin {
    float: left;
  }
  .footer-kojin .footer-column {
    width: 100%;
  }

  .footer-kojin,
  .footer-company,
  .footer-recruit .category:nth-child(3) {
    width: 55%;
  }

  .footer-hojin,
  .footer-recruit .category:nth-child(1),
  .footer-recruit .category:nth-child(2) {
    width: 45%;
  }

  .footer-hojin,
  .footer-company {
    float: left;
  }

  .footer-kojin ul,
  .footer-hojin ul,
  .footer-company ul,
  .footer-recruit ul {
    display: none;
  }

  .footer-company {
    clear: both;
    display: flex;
  }

  .footer-recruit .category {
    display: block;
    float: left;
  }

  .footer-nav {
    margin-bottom: 6.866%;
  }
  .footer-nav a {
    text-decoration: none;
    color: #333;
  }
  .footer-nav a[target="_blank"] {
    position: relative;
  }
  .footer-nav a[target="_blank"]::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    width: 15px;
    height: 11px;
    background: url("/assets/images/common/icon-external.png") no-repeat;
  }
  .footer-nav .category {
    font-size: 1.6rem;
    font-size: 3.733vw;
    font-weight: bold;
    display: block;
    color: #17448a;
    margin-bottom: 30px;
  }
  .footer-nav .category a {
    color: #17448a;
  }
  .footer-nav ul li {
    font-size: 2.933vw;
    letter-spacing: -0.025em;
    font-weight: 400;
    display: block;
    line-height: 2.708;
    margin-bottom: 3px;
  }

  .footer-other {
    clear: both;
  }
  .footer-other ul {
    padding-top: 7.463%;
    padding-bottom: 6.716%;
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
    display: flex;
    flex-wrap: wrap;
  }
  .footer-other ul li {
    width: 55%;
    line-height: 1.2;
    padding: 1.791% 0;
  }
  .footer-other ul li:nth-child(3), .footer-other ul li:nth-child(6) {
    width: 45%;
  }

  .copyright {
    font-size: 3.2vw;
    line-height: 1.667;
    color: #666666;
    text-align: center;
  }
}

@media print {
    html,body {
        overflow:auto;
        height:auto;
    }
    body {
        -webkit-print-color-adjust: exact;
    }

    .footer {
        display:none;
    }
    .header {
        position:static;
        height:auto;
    }
    .header .logo {
    }
    .header .utils {
        display:none;
    }
    .header .other-nav {
        display:none;
    }
    .header .search {
        display:none;
    }
    .header .global-nav {
        display:none;
    }

    .main {
        padding-top: 0;
    }
}

/*フローティングバナー追加*/
.floating-banner {
  opacity: 0;
  position: fixed;
  z-index: 99999;
  bottom: 100px;
  right: 30px;
  transition: 0.5s;
}
.floating-banner .pc {
  width: 150px;
}
.floating-banner:hover {
  opacity: 1;
}
.floating-banner .sp {
  display: none;
}
@media screen and (max-width: 990px) {
  .floating-banner .pc {
      display: none;
  }
}

@media screen and (max-width: 560px) {
  .floating-banner .sp {
      display: inline-block;
      width: 100vw;
  }
  .floating-banner  {
      top: unset;
      right: 0;
      bottom: 0;
  }
}
.fade-in {
  transition: 0.5s;
  opacity: 0.8;
}</pre></body></html>