@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
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;
  border: 0;
  font-size: 100%;
  font: inherit;
}

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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  padding: 0;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

/**
 * Base
 */
button,
input[type="button"],
input[type="checkbox"],
input[type="image"],
input[type="radio"],
input[type="reset"],
input[type="submit"],
label,
select {
  cursor: pointer;
}

button,
input,
select,
textarea {
  vertical-align: top;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: none;
  padding: 0;
}

button,
input[type="text"],
textarea {
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  margin: 0;
  border: none;
  padding: 0;
  background-color: transparent;
  overflow: visible;
  outline: none;
}

input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
  color: #808080;
}

input[type="text"]::-moz-placeholder {
  opacity: 1;
  color: #808080;
}

input[type="text"]::-ms-input-placeholder {
  opacity: 1;
  color: #808080;
}

input[type="text"]::placeholder {
  opacity: 1;
  color: #808080;
}

img {
  vertical-align: top;
}

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  min-width: 1050px;
  color: #333;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: .05em;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -moz-osx-font-smoothing: unset;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

@media screen and (max-width: 767px) {
  body {
    min-width: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition-property: opacity, background-color, color, -webkit-box-shadow;
  transition-property: opacity, background-color, color, -webkit-box-shadow;
  transition-property: opacity, background-color, box-shadow, color;
  transition-property: opacity, background-color, box-shadow, color, -webkit-box-shadow;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}

/**
 * Header
 */
.l-header header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 250px;
  height: 100%;
  background-color: #fff;
  -webkit-box-shadow: 1px 0 #ccc;
  box-shadow: 1px 0 #ccc;
}

.l-header header .container {
  padding: 48px 18px 0 22px;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
}

.l-header header .logo img {
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.l-header header .menuArea {
  padding-bottom: 50px;
}

.l-header header .gNavList {
  margin-top: 35px;
}

.l-header header .gNavList > li {
  margin-right: -18px;
}

.l-header header .gNavList a {
  font-size: 1.5rem;
}

.l-header header .gNavList .lvl1 a,
.l-header header .gNavList .lvl1 > div {
  display: block;
  position: relative;
  padding: 10px 18px 10px 0;
  font-size: 1.5rem;
  font-weight: 500;
}

.l-header header .gNavList .lvl1 a::before,
.l-header header .gNavList .lvl1 > div::before {
  content: "";
  opacity: 0;
  position: absolute;
  right: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background-color: #1358a2;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.l-header header .gNavList .lvl1 .accordionBtn {
  display: none;
}

html[data-whatintent="mouse"] .l-header header .gNavList > li:hover .lvl1 a,
html[data-whatintent="mouse"] .l-header header .gNavList > li:hover .lvl1 > div {
  color: #1358a2;
}

html[data-whatintent="mouse"] .l-header header .gNavList > li:hover .lvl1.-hasLvl2 a::before,
html[data-whatintent="mouse"] .l-header header .gNavList > li:hover .lvl1.-hasLvl2 > div::before {
  opacity: 1;
}

html[data-whatintent="mouse"] .l-header header .gNavList > li:hover .lvl2 {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.l-header header .gNavList .lvl2 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 250px;
  top: 0;
  width: 380px;
  height: 100%;
  background-color: #f5f5f5;
  overflow-y: auto;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

.l-header header .gNavList .lvl2 ul {
  padding: 142px 40px 50px;
}

.l-header header .gNavList .lvl2 li + li {
  margin-top: 20px;
}

html[data-whatintent="mouse"] .l-header header .gNavList .lvl2 a:hover {
  color: #1358a2;
}

.l-header header .myPageBtn {
  margin-top: 26px;
  width: 100%;
}

.l-header header .myPageBtn > div {
  padding-right: 50px;
  padding-left: 50px;
  width: 100%;
  min-width: auto;
  min-height: 50px;
  background-color: #1358a2;
}

.l-header header .myPageBtn > div .arrow {
  right: 15px;
  margin-top: -9px;
  width: 18px;
  height: 18px;
}

.l-header header .myPageBtn > div .arrow img {
  width: 8px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.l-header header .gForm {
  position: relative;
  margin-top: 22px;
}

.l-header header .gForm input[type="text"] {
  border: none;
  border-radius: 5px;
  padding: 0 50px 0 20px;
  width: 100%;
  height: 35px;
  background-color: #eee;
  font-size: 1.2rem;
}

.l-header header .gForm button {
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 10px;
  width: 45px;
  height: 100%;
  text-align: left;
  font-size: 0;
}

.l-header header .subLinkListArea {
  margin-top: 16px;
  border-top: 1px solid #e6e8ee;
  padding-top: 16px;
}

.l-header header .subLinkList li + li {
  margin-top: 5px;
}

.l-header header .subLinkList a {
  color: #808080;
  font-size: 1.2rem;
}

html[data-whatintent="mouse"] .l-header header .subLinkList a:hover {
  opacity: .6;
}

.l-header header .adsArea {
  margin-top: 33px;
}

.l-header header .adsArea p + p {
  margin-top: 12px;
}

html[data-whatintent="mouse"] .l-header header .adsArea a:hover {
  opacity: .6;
}

.l-header header .adsArea img {
  padding-top: 0;
  width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.l-header header .menuBtn {
  display: none;
}

.l-header__overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}

.l-header__overlay.-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

@media screen and (max-width: 1299px) {
  .l-header header {
    width: 100%;
    height: auto;
    background-color: transparent;
  }
  .l-header header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
  }
  .l-header header .container {
    position: relative;
    padding: 0;
    height: auto;
    overflow: visible;
  }
  .l-header header .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 4vw;
    height: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-header header .logo img {
    width: 132px;
  }
  .l-header header .menuArea {
    display: none;
    position: absolute;
    right: 0;
    top: 60px;
    padding: 0 30px;
    width: 100%;
    max-width: 450px;
    height: calc(100vh - 60px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform .3s;
    /* autoprefixer: ignore next */
    transition: transform .3s;
  }
  .l-header header .menuArea.-active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .l-header header .menuArea > :last-child {
    padding-bottom: 30px;
  }
  .l-header header .gNavList {
    margin-top: 0;
  }
  .l-header header .gNavList > li {
    margin: 0 -30px;
    border-top: 1px solid #eceef4;
  }
  .l-header header .gNavList > li:last-child {
    border-bottom: 1px solid #eceef4;
  }
  .l-header header .gNavList .lvl1 {
    position: relative;
  }
  .l-header header .gNavList .lvl1 a,
  .l-header header .gNavList .lvl1 > div {
    padding: 16px 70px 16px 35px;
    font-weight: bold;
  }
  .l-header header .gNavList .lvl1 a::before,
  .l-header header .gNavList .lvl1 > div::before {
    content: none;
  }
  .l-header header .gNavList .lvl1 .accordionBtn {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding-left: 15px;
    width: 60px;
    height: 100%;
    text-align: left;
    font-size: 0;
  }
  .l-header header .gNavList .lvl1 .accordionBtn .icon {
    display: inline-block;
    position: relative;
    width: 14px;
    height: 2px;
    background-color: #1358a2;
  }
  .l-header header .gNavList .lvl1 .accordionBtn .icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -7px 0 0 -1px;
    width: 2px;
    height: 14px;
    background-color: #1358a2;
  }
  .l-header header .gNavList .lvl1 .accordionBtn.-active .icon::before {
    content: none;
  }
  .l-header header .gNavList .lvl1 > div + .accordionBtn {
    left: 0;
    padding-left: calc(100% - 60px + 15px);
    width: auto;
  }
  .l-header header .gNavList .lvl2 {
    display: none;
    opacity: 1;
    visibility: visible;
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .l-header header .gNavList .lvl2 ul {
    padding: 15px 40px;
  }
  .l-header header .gNavList .lvl2 li + li {
    margin-top: 12px;
  }
  .l-header header .gNavList .lvl2 a {
    font-size: 1.3rem;
  }
  .l-header header .myPageBtn {
    margin-top: 20px;
  }
  .l-header header .myPageBtn > div {
    font-size: 1.4rem;
  }
  .l-header header .myPageBtn > div .arrow {
    right: 20px;
  }
  .l-header header .gForm {
    margin-top: 20px;
  }
  .l-header header .gForm input[type="text"] {
    padding: 0 50px 0 15px;
  }
  .l-header header .gForm button {
    padding-left: 15px;
  }
  .l-header header .subLinkListArea {
    margin-top: 30px;
    border-bottom: 1px solid #e6e8ee;
    padding: 12px 0;
  }
  .l-header header .subLinkList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -5px 0 0 -20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-header header .subLinkList li {
    padding: 5px 0 0 20px;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .l-header header .subLinkList li + li {
    margin-top: 0;
  }
  .l-header header .adsArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: calc(20px - 16px) 0 0 -16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-header header .adsArea p {
    padding: 16px 0 0 16px;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .l-header header .adsArea p + p {
    margin-top: 0;
  }
  .l-header header .menuBtn {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #00337f;
  }
  .l-header header .menuBtn .icon {
    display: block;
    position: relative;
    margin: auto;
    width: 24px;
    -webkit-transition: transform .2s;
    /* autoprefixer: ignore next */
    transition: transform .2s;
  }
  .l-header header .menuBtn .icon > span {
    display: block;
    height: 3px;
    background-color: #fff;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
  }
  .l-header header .menuBtn .icon > span::before, .l-header header .menuBtn .icon > span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
  }
  .l-header header .menuBtn .icon > span::before {
    bottom: 100%;
    margin-bottom: 6px;
  }
  .l-header header .menuBtn .icon > span::after {
    top: 100%;
    margin-top: 6px;
  }
  .l-header header .menuBtn.-active .icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .l-header header .menuBtn.-active .icon > span {
    background-color: transparent;
  }
  .l-header header .menuBtn.-active .icon > span::before {
    bottom: 0;
    margin-bottom: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-header header .menuBtn.-active .icon > span::after {
    top: 0;
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .l-header__overlay.-visible {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
}

/**
 * Footer
 */
.l-footer {
  margin-top: 80px;
  background-color: #141b29;
}

.l-footer .pageTopBtn {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 75px;
  bottom: 20px;
  z-index: 10;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
}

.l-footer .pageTopBtn > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #c6c6c6;
  border-radius: inherit;
  width: 40px;
  height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #141b29;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.l-footer .pageTopBtn > span::before {
  content: "";
  display: block;
  border-right: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
  width: 10px;
  height: 10px;
  -webkit-transform: translateY(2px) rotate(-135deg);
  transform: translateY(2px) rotate(-135deg);
}

html[data-whatintent="mouse"] .l-footer .pageTopBtn:hover > span {
  opacity: .7;
}

.l-footer .pageTopBtn.-visible {
  opacity: 1;
  visibility: visible;
}

.l-footer .topArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0 32px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-footer .topArea .linkListArea {
  width: 100%;
}

.l-footer .topArea .linkListArea .linkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -14px 0 0 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-footer .topArea .linkListArea .linkList li {
  padding: 14px 30px 0 0;
  /* width: 50%; */
  width: 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-footer .topArea .linkListArea .linkList a {
  color: #ededed;
  font-size: 1.4rem;
}

html[data-whatintent="mouse"] .l-footer .topArea .linkListArea .linkList a:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, currentColor));
  background-image: linear-gradient(180deg, transparent 95%, currentColor 95%);
}

.l-footer .topArea .snsArea {
  /* width: 54%; */
  width:0%;
  display: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.l-footer .topArea .snsArea .u-pcOnly {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-footer .topArea .snsArea .snsBlock {
  padding: 0 15px 15px;
  width: 260px;
  height: 400px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}

.l-footer .topArea .snsArea .snsBlock:only-child {
  width: 100%;
}

.l-footer .topArea .snsArea .snsBlock .hdg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 36px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
}

.l-footer .topArea .snsArea .snsBlock .hdg img {
  margin-right: 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.l-footer .topArea .snsArea .snsBlock .container {
  height: calc(400px - 36px - 15px);
  overflow-y: auto;
}

.l-footer .topArea .snsArea .snsBlock.tw .hdg {
  position: relative;
  margin-bottom: -1px;
  background-color: #fff;
}

.l-footer .topArea .snsArea .snsListArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #9a9b9d;
}

.l-footer .topArea .snsArea .snsListArea .hdg {
  margin-right: 10px;
  padding-bottom: 2px;
  font-size: 1.6rem;
  font-weight: 500;
}

.l-footer .topArea .snsArea .snsListArea .snsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-footer .topArea .snsArea .snsListArea .snsList li + li {
  margin-left: 10px;
}

html[data-whatintent="mouse"] .l-footer .topArea .snsArea .snsListArea .snsList a:hover {
  opacity: .6;
}

.l-footer .btmArea {
  border-top: 1px solid #666;
  padding: 24px 0 40px;
}

.l-footer .btmArea .copyright {
  color: #c6c6c6;
}

@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 50px;
  }
  .l-footer .pageTopBtn {
    right: 15px;
    bottom: 15px;
  }
  .l-footer .topArea {
    display: block;
    padding: 25px 0 16px;
  }
  .l-footer .topArea .linkListArea .linkList {
    margin: -13px 0 0 0;
  }
  .l-footer .topArea .linkListArea .linkList li {
    padding: 13px 0 0 0;
    width: 50%;
  }
  .l-footer .topArea .linkListArea .linkList li:nth-child(odd) {
    padding-right: 4vw;
  }
  .l-footer .topArea .linkListArea .linkList a {
    font-size: 1.1rem;
  }
  .l-footer .topArea .snsArea {
    width: auto;
  }
  .l-footer .topArea .snsArea .snsListArea {
    margin-top: 40px;
  }
  .l-footer .topArea .snsArea .snsListArea .hdg {
    margin-right: 9px;
    font-size: 1.2rem;
  }
  .l-footer .btmArea {
    padding: 10px 0 26px;
  }
  .l-footer .btmArea .copyright {
    text-align: center;
  }
}

/**
 * Wrapper
 */
.l-wrapper {
  padding-left: 250px;
}

@media screen and (max-width: 1299px) {
  .l-wrapper {
    padding: 60px 0 0;
  }
}

/**
 * Contents
 */
/**
 * Page
 */
/**
 * トップページ
 */
.pg-home .mainVisualArea .swiper-slide {
  height: 650px;
}

.pg-home .mainVisualArea .swiper-slide .image {
  height: 100%;
  background-position: 50%;
  background-size: cover;
}

.pg-home .mainVisualArea .swiper-slide .copy {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.pg-home .mainVisualArea .swiper-slide .copy::before {
  content: "";
  opacity: .4;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#00337f), to(transparent));
  background: linear-gradient(90deg, #00337f, transparent);
}

.pg-home .mainVisualArea .swiper-slide .copy .c-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.pg-home .mainVisualArea .swiper-slide .copy .c-container p {
  padding: 0 120px 72px 0;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: .04em;
}

.pg-home .mainVisualArea .swiper-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 84px;
  z-index: 1;
  margin: auto;
  width: 1000px;
  text-align: right;
  font-size: 0;
}

.pg-home .mainVisualArea .swiper-btn {
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
}

.pg-home .mainVisualArea .swiper-btn > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #00337f;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

html[data-whatintent="mouse"] .pg-home .mainVisualArea .swiper-btn:hover > span {
  opacity: .6;
}

.pg-home .mainVisualArea .swiper-btn img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pg-home .mainVisualArea .swiper-btn-prev img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.pg-home .mainVisualArea .swiper-btn-next {
  margin-left: 20px;
}

.pg-home .topLinkBtnListArea {
  margin-top: -50px;
}

.pg-home .topLinkBtnListArea--gray {
  background-color: #f5f5f5;
}

.pg-home .topLinkBtnListArea .topLinkBtnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pg-home .topLinkBtnListArea .topLinkBtnList li {
  width: 100%;
}

.pg-home .topLinkBtnListArea .topLinkBtnList li + li {
  position: relative;
}

.pg-home .topLinkBtnListArea .topLinkBtnList li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 1px;
  height: 100%;
  background-color: rgba(236, 238, 244, 0.2);
}

.pg-home .topLinkBtnListArea .topLinkBtnList a {
  display: block;
  height: 100%;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.pg-home .topLinkBtnListArea .topLinkBtnList .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  border-radius: inherit;
  padding: 19px 22px;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #00337f;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.pg-home .topLinkBtnListArea .topLinkBtnList .container::before {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 5px;
  border-color: transparent;
  border-style: solid;
  border-width: 6px;
  border-right-color: #b5c9df;
  border-bottom-color: #b5c9df;
}

html[data-whatintent="mouse"] .pg-home .topLinkBtnListArea .topLinkBtnList a:hover .container {
  background-color: #1358a2;
}

@media screen and (min-width: 768px) {
  .pg-home .topLinkBtnListArea .topLinkBtnList li:first-child a {
    border-radius: 5px 0 0 5px;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList li:last-child a {
    border-radius: 0 5px 5px 0;
  }
}

.pg-home .topLinkBtnListArea .topLinkBtnList .icon {
  position: relative;
  margin-right: 15px;
  width: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pg-home .topLinkBtnListArea .topLinkBtnList .icon img {
  width: 100%;
}

.pg-home .topLinkBtnListArea .topLinkBtnList .icon img:nth-child(1) {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

html[data-whatintent="mouse"] .pg-home .topLinkBtnListArea .topLinkBtnList a:hover .icon img:nth-child(1) {
  opacity: 0;
}

.pg-home .topLinkBtnListArea .topLinkBtnList .hdg {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}

.pg-home .topLinkBtnListArea .topLinkBtnList .text {
  font-size: 1.3rem;
  line-height: 1.5;
}

.pg-home .topLinkBtnListArea .topLinkBtnList .hdg + .text {
  margin-top: 6px;
}

.pg-home .sectHdg {
  margin-bottom: 40px;
  border-top: 2px solid #1358a2;
  border-bottom: 2px solid #ccc;
  padding: 12px 0 14px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.pg-home .eventTopicsSect {
  padding: 78px 0 80px;
  background-color: #f5f5f5;
}

.pg-home .eventTopicsSect .eventTopicsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -30px 0 0 -30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-home .eventTopicsSect .eventTopicsList li {
  padding: 30px 0 0 30px;
  width: 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-home .eventTopicsSect .eventTopicsList a {
  display: block;
  height: 100%;
  background-color: #fff;
}

html[data-whatintent="mouse"] .pg-home .eventTopicsSect .eventTopicsList a:hover {
  -webkit-box-shadow: 0 3px 8px rgba(0, 51, 127, 0.3);
  box-shadow: 0 3px 8px rgba(0, 51, 127, 0.3);
}

.pg-home .eventTopicsSect .eventTopicsList .thumbnail {
  background-position: 50%;
  background-size: cover;
}

.pg-home .eventTopicsSect .eventTopicsList .thumbnail::before {
  content: "";
  display: block;
  padding-top: calc(115 / 187 * 100%);
}

.pg-home .eventTopicsSect .eventTopicsList .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pg-home .eventTopicsSect .eventTopicsList .body p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 20px 20px;
  min-height: 132px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.75;
}

.pg-home .eventTopicsSect .eventTopicsList li.-new .body {
  position: relative;
}

.pg-home .eventTopicsSect .eventTopicsList li.-new .body::before {
  content: "NEW";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  top: -13px;
  border-radius: 0 5px 5px 0;
  padding-bottom: 1px;
  width: 53px;
  height: 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #cd0912;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
}

.pg-home .eventTopicsSect .linkBtnArea {
  margin-top: 50px;
  text-align: center;
}

.pg-home .newsSect {
  margin-top: 80px;
}

.pg-home .newsSect .newsTabList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0 0 15px -10px;
  padding-bottom: 2px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pg-home .newsSect .newsTabList::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #1358a2;
}

.pg-home .newsSect .newsTabList li {
  padding-left: 10px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-home .newsSect .newsTabList a,
.pg-home .newsSect .newsTabList button {
  display: block;
  border: 1px solid #ddd;
  border-bottom: 0;
  padding: 7px;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  text-align: center;
  color: #808080;
  font-size: 1.4rem;
  font-weight: bold;
  -webkit-transition-property: background-color, border-color, color;
  transition-property: background-color, border-color, color;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}

html[data-whatintent="mouse"] .pg-home .newsSect .newsTabList a:hover, html[data-whatintent="mouse"]
.pg-home .newsSect .newsTabList button:hover {
  background-color: #eceef4;
}

.pg-home .newsSect .newsTabList a.-current,
.pg-home .newsSect .newsTabList button.-current {
  border-color: #1358a2;
  background-color: #1358a2 !important;
  color: #fff;
}

.pg-home .newsSect .newsGrList .item {
  display: none;
}

.pg-home .newsSect .newsGrList .item:first-child {
  display: block;
}

.pg-home .newsSect .newsGrList .newsList li::before {
  content: none;
}

.pg-home .newsSect .newsGrList .newsList li + li {
  border-top: 1px solid #ddd;
}

.pg-home .newsSect .newsGrList .newsList article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 0;
  font-size: 1.5rem;
}

.pg-home .newsSect .newsGrList .newsList time {
  width: 130px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #00337f;
}

.pg-home .newsSect .newsGrList .newsList .title {
  font-weight: 500;
}

.pg-home .newsSect .newsGrList .newsList .desc {
  color: #808080;
}

html[data-whatintent="mouse"] .pg-home .newsSect .newsGrList .newsList a:hover .title span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, currentColor));
  background-image: linear-gradient(180deg, transparent 95%, currentColor 95%);
  color: #1358a2;
}

html[data-whatintent="mouse"] .pg-home .newsSect .newsGrList .newsList a:hover .desc span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, currentColor));
  background-image: linear-gradient(180deg, transparent 95%, currentColor 95%);
  color: #1358a2;
}

.pg-home .newsSect .newsGrList .linkBtnArea {
  margin-top: 35px;
  text-align: center;
}

.pg-home .infoSect {
  position: relative;
  margin-top: 90px;
  color: #fff;
}

.pg-home .infoSect .c-container {
  position: relative;
  z-index: 1;
  padding: 98px 0 50px;
  min-height: 440px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-home .infoSect .body {
  position: relative;
  padding-left: 40px;
}

.pg-home .infoSect .body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: -5px;
  width: 3px;
  background-color: #fff;
}

.pg-home .infoSect .body .hdg {
  margin-bottom: 33px;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: .03em;
}

.pg-home .infoSect .body .text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.9;
}

.pg-home .infoSect .body .guideText {
  display: inline-block;
  margin-top: 45px;
  border-bottom: 1px solid transparent;
  font-size: 1.4rem;
  font-weight: 500;
}

.pg-home .infoSect .body .guideText .arrow {
  margin-left: 16px;
  vertical-align: baseline;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

html[data-whatintent="mouse"] .pg-home .infoSect a:hover .body .guideText {
  border-bottom-color: #fff;
}

.pg-home .infoSect__bgImage {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pg-home .infoSect__bgImage > div {
  height: 100%;
  background-position: 50%;
  background-size: cover;
  -webkit-transition: -webkit-transform .6s;
  transition: -webkit-transform .6s;
  transition: transform .6s;
  transition: transform .6s, -webkit-transform .6s;
}

.pg-home .infoSect__bgImage > div::before {
  content: "";
  opacity: .4;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#00337f), to(transparent));
  background: linear-gradient(90deg, #00337f, transparent);
}

html[data-whatintent="mouse"] .pg-home .infoSect a:hover .infoSect__bgImage > div {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.pg-home .lightBlueArea {
  padding: 80px 0;
  background-color: #eceef4;
}

.pg-home .magazineSect__box {
  border-radius: 15px;
  padding: 40px 40px 50px;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 15px 1px #ddd;
  box-shadow: 0 5px 15px 1px #ddd;
}

.pg-home .magazineSect__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pg-home .magazineSect__header .hdgArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.pg-home .magazineSect__header .hdgArea .hdg {
  color: #00337f;
  font-weight: bold;
}

.pg-home .magazineSect__header .hdgArea .hdg span {
  display: block;
}

.pg-home .magazineSect__header .hdgArea .hdg .sub {
  font-size: 1.8rem;
}

.pg-home .magazineSect__header .hdgArea .hdg .main {
  font-size: 2.6rem;
}

.pg-home .magazineSect__header .hdgArea .text {
  margin-left: 20px;
  padding-bottom: 8px;
  color: #808080;
  font-size: 1.5rem;
}

.pg-home .magazineSect__header .linkBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
  border-radius: 100px;
  width: 150px;
  height: 50px;
  background-color: #1358a2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

html[data-whatintent="mouse"] .pg-home .magazineSect__header .linkBtn:hover {
  -webkit-box-shadow: 0 3px 8px rgba(0, 51, 127, 0.3);
  box-shadow: 0 3px 8px rgba(0, 51, 127, 0.3);
}

.pg-home .magazineSect__body .lead {
  font-size: 1.6rem;
  font-weight: bold;
}

.pg-home .magazineSect__body .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.pg-home .magazineSect__body .container .image {
  margin-right: 22px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pg-home .magazineSect__body .container .image img {
  max-width: 100%;
}

.pg-home .magazineSect__body .container .body {
  font-size: 1.4rem;
}

.pg-home .magazineSect__body .container .body .hdg {
  margin-bottom: 7px;
  color: #1358a2;
  font-weight: bold;
}

.pg-home .magazineSect__body .container .body li {
  line-height: 1.75;
}

.pg-home .magazineSect__body .container .body li dt {
  float: left;
  font-weight: bold;
}

.pg-home .magazineSect__body .container .body li dd {
  overflow: hidden;
}

.pg-home .magazineSect__body .container .body .moreBtnArea {
  display: none;
}

.pg-home .magazineSect__footer {
  margin-top: 30px;
}

.pg-home .magazineSect__footer .linkBtnListArea {
  text-align: center;
}

.pg-home .magazineSect__footer .linkBtnList {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: -18px 0 0 -18px;
  max-width: calc((240px + 18px) * 3);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-home .magazineSect__footer .linkBtnList li {
  padding: 18px 0 0 18px;
}

.pg-home .magazineSect__footer .linkBtnList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #00337f;
  border-radius: 100px;
  padding: 5px 45px;
  width: 240px;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #00337f;
  font-size: 1.4rem;
  font-weight: bold;
}

.pg-home .magazineSect__footer .linkBtnList a[target="_blank"] {
  position: relative;
}

.pg-home .magazineSect__footer .linkBtnList a[target="_blank"] .icon {
  position: absolute;
  right: 23px;
  top: 50%;
  margin-top: -5px;
  font-size: 0;
}

.pg-home .magazineSect__footer .linkBtnList a[target="_blank"] .icon img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

html[data-whatintent="mouse"] .pg-home .magazineSect__footer .linkBtnList a:hover {
  background-color: #00337f;
  color: #fff;
}

html[data-whatintent="mouse"] .pg-home .magazineSect__footer .linkBtnList a:hover .icon img:nth-child(2) {
  opacity: 0;
}

.pg-home .aboutSect {
  margin-top: 80px;
}

.pg-home .aboutSect__lead {
  margin-bottom: 38px;
  font-size: 1.5rem;
}

.pg-home .aboutSect .linkBlockList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -1px 0 0 -1px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-home .aboutSect .linkBlockList li {
  padding: 1px 0 0 1px;
  width: 33.333%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-home .aboutSect .linkBlockList a {
  display: block;
  position: relative;
}

.pg-home .aboutSect .linkBlockList .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  padding: 38px 25px 38px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: #fff;
}

.pg-home .aboutSect .linkBlockList .body .hdg {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.pg-home .aboutSect .linkBlockList .body .text {
  font-size: 1.5rem;
}

.pg-home .aboutSect .linkBlockList .body .hdg + .text {
  margin-top: 15px;
}

.pg-home .aboutSect .linkBlockList .image {
  position: relative;
  overflow: hidden;
}

.pg-home .aboutSect .linkBlockList .image::before {
  content: "";
  display: block;
  padding-top: calc(424 / 333 * 100%);
}

.pg-home .aboutSect .linkBlockList .image::after {
  content: "";
  opacity: .4;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#141b29), to(transparent));
  background: linear-gradient(0deg, #141b29, transparent);
}

.pg-home .aboutSect .linkBlockList .image > div {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  background-position: 50%;
  background-size: cover;
  -webkit-transition: transform .6s;
  /* autoprefixer: ignore next */
  transition: transform .6s;
}

html[data-whatintent="mouse"] .pg-home .aboutSect .linkBlockList a:hover .image > div {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.pg-home .recruitSect {
  margin-top: 80px;
}

.pg-home .recruitSect .linkBlockList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -40px 0 0 -40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-home .recruitSect .linkBlockList li {
  padding: 40px 0 0 40px;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-home .recruitSect .linkBlockList .image {
  position: relative;
  overflow: hidden;
}

.pg-home .recruitSect .linkBlockList .image::before {
  content: "";
  display: block;
  padding-top: calc(160 / 480 * 100%);
}

.pg-home .recruitSect .linkBlockList .image > div {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  background-position: 50%;
  background-size: cover;
  -webkit-transition: transform .6s;
  /* autoprefixer: ignore next */
  transition: transform .6s;
}

html[data-whatintent="mouse"] .pg-home .recruitSect .linkBlockList a:hover .image > div {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.pg-home .recruitSect .linkBlockList .body {
  position: relative;
  padding: 8px 40px 8px 5px;
}

.pg-home .recruitSect .linkBlockList .body p {
  font-size: 1.8rem;
  font-weight: bold;
}

.pg-home .recruitSect .linkBlockList .body .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -11px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background-color: #00337f;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pg-home .confSect {
  margin-top: 65px;
}

.pg-home .confSect .contListArea {
  position: relative;
  padding-bottom: 60px;
}

.pg-home .confSect .contListArea::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  bottom: 0;
  background-color: #eceef4;
}

.pg-home .confSect .contListWrapper {
  text-align: center;
}

.pg-home .confSect .contList {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 1;
  margin: -32px 0 0 -32px;
  max-width: calc((270px + 32px) * 3);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-home .confSect .contList li {
  padding: 32px 0 0 32px;
  width: 270px;
}

.pg-home .confSect .contList a {
  display: block;
  position: relative;
  border-radius: 5px;
  padding: 27px 20px;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 15px 1px #ddd;
  box-shadow: 0 5px 15px 1px #ddd;
  text-align: center;
}

.pg-home .confSect .contList .container {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.pg-home .confSect .contList .container::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 10px;
  border-color: transparent;
  border-style: solid;
  border-width: 8px;
  border-right-color: #b5c9df;
  border-bottom-color: #b5c9df;
}

html[data-whatintent="mouse"] .pg-home .confSect .contList a:hover .container {
  opacity: .6;
}

.pg-home .confSect .contList .icon {
  margin-bottom: 10px;
}

.pg-home .confSect .contList .icon img {
  width: 120px;
}

.pg-home .confSect .contList .hdg {
  color: #00337f;
  font-size: 1.6rem;
  font-weight: bold;
}

.pg-home .confSect .contList .text {
  font-size: 1.2rem;
  letter-spacing: .03em;
}

.pg-home .confSect .contList .hdg + .text {
  position: relative;
  margin-top: 22px;
}

.pg-home .confSect .contList .hdg + .text::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  margin-left: -20px;
  width: 40px;
  height: 1px;
  background-color: #00337f;
}

.pg-home .otherSect--upper {
  padding: 72px 0 80px;
}

.pg-home .otherSect--upper + .otherSect--upper {
  padding-top: 0;
}

.pg-home .otherSect--upper + * {
  margin-top: 0;
}

.pg-home .otherSect--lower {
  margin-top: 75px;
}

.pg-home .otherSect--lower + * {
  margin-top: 70px;
}

.pg-home .otherSect__hdg {
  margin-bottom: 25px;
  color: #1358a2;
  font-size: 2.2rem;
  font-weight: bold;
}

.pg-home .otherSect .linkList,
.pg-home .otherSect .c-boxSet,
.pg-home .otherSect .c-linkBlockList {
  margin-bottom: 60px;
}

.pg-home .otherSect .linkList:last-child,
.pg-home .otherSect .c-boxSet:last-child,
.pg-home .otherSect .c-linkBlockList:last-child {
  margin-bottom: 0;
}

.pg-home .otherSect .linkList li {
  border-bottom: 1px solid #ddd;
}

.pg-home .otherSect .linkList li:first-child {
  border-top: 1px solid #ddd;
}

.pg-home .otherSect .linkList a {
  display: block;
  position: relative;
  border-left: 4px solid #1358a2;
  padding: 21px 60px 21px 20px;
  font-size: 1.8rem;
  font-weight: bold;
}

.pg-home .otherSect .linkList a .arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -7px;
}

.pg-home .otherSect .linkList a .arrow img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

html[data-whatintent="mouse"] .pg-home .otherSect .linkList a:hover {
  background-color: #f5f5f5;
}

.pg-home .otherSect .c-boxSet + * {
  clear: both;
}

.pg-home .contactSect {
  margin-top: 70px;
  padding: 42px 0 50px;
  background-color: #00337f;
  color: #fff;
}

.pg-home .contactSect__hdg {
  margin-bottom: 18px;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: .03em;
  line-height: 1.4;
}

.pg-home .contactSect__lead {
  text-align: center;
  font-size: 1.4rem;
}

.pg-home .contactSect .linkBtnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: calc(40px - 32px) 0 0 -32px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pg-home .contactSect .linkBtnList li {
  padding: 32px 0 0 32px;
  width: 420px;
}

.pg-home .contactSect .linkBtnList .c-linkBtn {
  width: 100%;
  background-color: #fff;
}

.pg-home .contactSect .linkBtnList .c-linkBtn > div {
  width: 100%;
  background-color: inherit;
  color: #00337f;
  font-size: 1.6rem;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.pg-home .contactSect .linkBtnList .c-linkBtn > div .arrow {
  background-color: currentColor;
}

.pg-home .contactSect .linkBtnList .c-linkBtn .text {
  position: relative;
  padding: 0 10px 0 42px;
}

.pg-home .contactSect .linkBtnList .c-linkBtn .text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  width: 36px;
  height: 22px;
  background-size: 100%;
}

html[data-whatintent="mouse"] .pg-home .contactSect .linkBtnList .c-linkBtn:hover > div {
  opacity: .6;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pg-home .contactSect .linkBtnList .junior .c-linkBtn > div {
  color: #4486c7;
}

.pg-home .contactSect .linkBtnList .junior .c-linkBtn .text::before {
  background-image: url(../images/icon_cap.png);
}

.pg-home .contactSect .linkBtnList .general .c-linkBtn .text::before {
  background-image: url(../images/icon_figure.png);
}

.pg-home .contactSect .linkBtnList .noIcon .c-linkBtn .text {
  padding: 0;
}

.pg-home .contactSect .linkBtnList .noIcon .c-linkBtn .text::before {
  content: none;
}

.pg-home .bannerArea {
  padding: 40px 0;
  background-color: #eee;
}

.pg-home .bannerArea .bannerSlide {
  position: relative;
}

.pg-home .bannerArea .bannerSlide .swiper-container {
  margin: 0 130px;
}

.pg-home .bannerArea .bannerSlide .swiper-slide a {
  display: block;
  background-color: #fff;
}

.pg-home .bannerArea .bannerSlide .swiper-slide img {
  width: 100%;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

html[data-whatintent="mouse"] .pg-home .bannerArea .bannerSlide .swiper-slide a:hover img {
  opacity: .6;
}

.pg-home .bannerArea .bannerSlide .swiper-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  margin-top: -18px;
  border: 1px solid #00337f;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

html[data-whatintent="mouse"] .pg-home .bannerArea .bannerSlide .swiper-btn:hover {
  opacity: .6;
}

.pg-home .bannerArea .bannerSlide .swiper-btn img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pg-home .bannerArea .bannerSlide .swiper-btn-prev {
  left: 65px;
}

.pg-home .bannerArea .bannerSlide .swiper-btn-prev img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.pg-home .bannerArea .bannerSlide .swiper-btn-next {
  right: 65px;
}

.pg-home .bannerArea .note {
  margin-top: 15px;
  text-align: center;
  font-size: 1.2rem;
}

.pg-home .contactSect:last-child,
.pg-home .bannerArea:last-child {
  margin-bottom: -80px;
}

@media screen and (max-width: 767px) {
  .pg-home .mainVisualArea .swiper-slide {
    height: 210px;
  }
  .pg-home .mainVisualArea .swiper-slide .copy .c-container p {
    padding: 0 75px 25px 0;
    font-size: 1.4rem;
    letter-spacing: normal;
  }
  .pg-home .mainVisualArea .swiper-nav {
    bottom: 15px;
    padding-right: 4vw;
    width: auto;
  }
  .pg-home .mainVisualArea .swiper-btn > span {
    width: 30px;
    height: 30px;
  }
  .pg-home .mainVisualArea .swiper-btn img {
    width: 12px;
  }
  .pg-home .mainVisualArea .swiper-btn-next {
    margin-left: 13px;
  }
  .pg-home .topLinkBtnListArea {
    margin-top: 0;
    padding-top: 20px;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList {
    margin: auto;
    max-width: 345px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList li {
    width: 50%;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList li + li:nth-child(odd)::before {
    content: none;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList li + li:nth-child(n+3)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 1px;
    background-color: rgba(236, 238, 244, 0.2);
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList .container {
    padding: 10px;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList .container::before {
    right: 5px;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList li:nth-child(1) a {
    border-radius: 3px 0 0 0;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList li:nth-child(2) a {
    border-radius: 0 3px 0 0;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList li:nth-last-child(2) a {
    border-radius: 0 0 0 3px;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList li:nth-last-child(1) a {
    border-radius: 0 0 3px 0;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList .icon {
    margin-right: 10px;
    width: 48px;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList .hdg {
    font-size: 1.4rem;
  }
  .pg-home .topLinkBtnListArea .topLinkBtnList .text {
    font-size: 1rem;
  }
  .pg-home .sectHdg {
    margin-bottom: 30px;
    padding: 12px 0;
    font-size: 1.8rem;
  }
  .pg-home .eventTopicsSect {
    padding: 50px 0;
  }
  .pg-home .eventTopicsSect .eventTopicsList {
    margin: -20px 0 0 -20px;
  }
  .pg-home .eventTopicsSect .eventTopicsList li {
    padding: 20px 0 0 20px;
    width: 50%;
  }
  .pg-home .eventTopicsSect .eventTopicsList .body p {
    padding: 12px 15px;
    min-height: auto;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .pg-home .eventTopicsSect .eventTopicsList li.-new .body::before {
    top: -9px;
    padding-bottom: 0;
    width: 35px;
    height: 17px;
    border-radius: 0 3px 3px 0;
    font-size: 1rem;
  }
  .pg-home .eventTopicsSect .linkBtnArea {
    margin-top: 40px;
  }
  .pg-home .newsSect {
    margin-top: 50px;
  }
  .pg-home .newsSect .newsTabList {
    margin: 0 0 5px;
  }
  .pg-home .newsSect .newsTabList::before {
    left: 0;
  }
  .pg-home .newsSect .newsTabList li {
    padding-left: 0;
  }
  .pg-home .newsSect .newsTabList a,
  .pg-home .newsSect .newsTabList button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: left;
    font-size: 1rem;
    line-height: 1.25;
  }
  .pg-home .newsSect .newsTabList li:not(:first-child) a,
  .pg-home .newsSect .newsTabList li:not(:first-child) button {
    border-left: none;
  }
  .pg-home .newsSect .newsGrList .newsList article {
    display: block;
    padding: 8px 0 12px;
    font-size: 1.4rem;
  }
  .pg-home .newsSect .newsGrList .newsList time {
    width: auto;
    font-size: 1.3rem;
  }
  .pg-home .newsSect .newsGrList .linkBtnArea {
    margin-top: 25px;
  }
  .pg-home .infoSect {
    margin-top: 50px;
  }
  .pg-home .infoSect .c-container {
    padding: 32px 0 50px;
    min-height: 450px;
  }
  .pg-home .infoSect .body {
    padding-left: 25px;
  }
  .pg-home .infoSect .body::before {
    top: 8px;
    bottom: 0;
    width: 2px;
  }
  .pg-home .infoSect .body .hdg {
    margin-bottom: 12px;
    font-size: 2.4rem;
  }
  .pg-home .infoSect .body .text {
    line-height: 1.6;
  }
  .pg-home .infoSect .body .guideText {
    margin-top: 42px;
    font-size: 1.3rem;
  }
  .pg-home .infoSect .body .guideText .arrow {
    margin-left: 10px;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  .pg-home .infoSect__bgImage > div {
    background-position: 50% 100%;
  }
  .pg-home .lightBlueArea {
    padding: 50px 0;
  }
  .pg-home .magazineSect__box {
    border-radius: 8px;
    padding: 25px 15px 30px;
  }
  .pg-home .magazineSect__header {
    margin-bottom: 8px;
  }
  .pg-home .magazineSect__header .hdgArea .hdg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .pg-home .magazineSect__header .hdgArea .hdg .sub {
    font-size: 1.6rem;
  }
  .pg-home .magazineSect__header .hdgArea .hdg .main {
    font-size: 2rem;
    line-height: 1.4;
  }
  .pg-home .magazineSect__header .hdgArea .text {
    margin-left: 15px;
    padding-bottom: 2px;
    font-size: 1.3rem;
  }
  .pg-home .magazineSect__body .lead {
    font-size: 1.5rem;
  }
  .pg-home .magazineSect__body .container {
    display: block;
    margin-top: 16px;
  }
  .pg-home .magazineSect__body .container .image {
    margin: 0 0 13px;
    text-align: center;
  }
  .pg-home .magazineSect__body .container .body {
    position: relative;
    overflow: hidden;
    -webkit-transition: height .3s;
    transition: height .3s;
  }
  .pg-home .magazineSect__body .container .body.-more {
    margin-bottom: -15px;
    height: 220px;
  }
  .pg-home .magazineSect__body .container .body .hdg {
    margin-bottom: 10px;
  }
  .pg-home .magazineSect__body .container .body li + li {
    margin-top: 3px;
  }
  .pg-home .magazineSect__body .container .body li dt {
    float: none;
  }
  .pg-home .magazineSect__body .container .body li dd {
    overflow: visible;
  }
  .pg-home .magazineSect__body .container .body .moreBtnArea {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, white), color-stop(70%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, white 10%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0));
  }
  .pg-home .magazineSect__body .container .body .moreBtnArea button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 15px;
    width: 100%;
    height: 100px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #003670;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: .05em;
  }
  .pg-home .magazineSect__body .container .body .moreBtnArea button .icon {
    display: inline-block;
    position: relative;
    margin-right: 6px;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background-color: currentColor;
    vertical-align: -2px;
  }
  .pg-home .magazineSect__body .container .body .moreBtnArea button .icon::before, .pg-home .magazineSect__body .container .body .moreBtnArea button .icon::after {
    content: "";
    position: absolute;
    background-color: #fff;
  }
  .pg-home .magazineSect__body .container .body .moreBtnArea button .icon::before {
    left: 3px;
    top: 6px;
    width: 8px;
    height: 2px;
  }
  .pg-home .magazineSect__body .container .body .moreBtnArea button .icon::after {
    left: 6px;
    top: 3px;
    width: 2px;
    height: 8px;
  }
  .pg-home .magazineSect__body .container .body.-more .moreBtnArea {
    display: block;
  }
  .pg-home .magazineSect__footer {
    margin-top: 25px;
  }
  .pg-home .magazineSect__footer .linkBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    border-radius: 100px;
    width: 200px;
    height: 40px;
    background-color: #1358a2;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
  }
  html[data-whatintent="mouse"] .pg-home .magazineSect__footer .linkBtn:hover {
    -webkit-box-shadow: 0 3px 8px rgba(0, 51, 127, 0.3);
    box-shadow: 0 3px 8px rgba(0, 51, 127, 0.3);
  }
  .pg-home .magazineSect__footer .linkBtnList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: calc(20px - 10px) 0 0 -10px;
    max-width: none;
  }
  .pg-home .magazineSect__footer .linkBtnList li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0 0 10px;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .pg-home .magazineSect__footer .linkBtnList a {
    border-width: 1px;
    padding: 10px 25px;
    width: 100%;
    height: 100%;
    font-size: 1.1rem;
  }
  .pg-home .magazineSect__footer .linkBtnList a[target="_blank"] .icon {
    right: 15px;
    margin-top: -3px;
  }
  .pg-home .magazineSect__footer .linkBtnList a[target="_blank"] .icon img {
    width: 8px;
  }
  .pg-home .aboutSect {
    margin-top: 50px;
  }
  .pg-home .aboutSect__lead {
    margin-bottom: 15px;
  }
  .pg-home .aboutSect .linkBlockList li {
    width: 50%;
  }
  .pg-home .aboutSect .linkBlockList .body {
    padding: 20px 10px 15px 12px;
  }
  .pg-home .aboutSect .linkBlockList .body .hdg {
    font-size: 1.6rem;
    line-height: 1.5625;
  }
  .pg-home .aboutSect .linkBlockList .body .text {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .pg-home .aboutSect .linkBlockList .body .hdg + .text {
    margin-top: 2px;
  }
  .pg-home .recruitSect {
    margin-top: 50px;
  }
  .pg-home .recruitSect .linkBlockList {
    margin: -10px 0 0 -10px;
  }
  .pg-home .recruitSect .linkBlockList li {
    padding: 10px 0 0 10px;
  }
  .pg-home .recruitSect .linkBlockList .body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 6px 30px 6px 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .pg-home .recruitSect .linkBlockList .body p {
    font-size: 1.2rem;
    line-height: 1.25;
  }
  .pg-home .recruitSect .linkBlockList .body .arrow {
    margin-top: -8px;
    width: 15px;
    height: 15px;
  }
  .pg-home .recruitSect .linkBlockList .body .arrow img {
    width: 6px;
  }
  .pg-home .confSect {
    margin-top: 44px;
  }
  .pg-home .confSect .contListArea {
    padding-bottom: 30px;
  }
  .pg-home .confSect .contListArea::before {
    top: 40px;
  }
  .pg-home .confSect .contList {
    display: block;
    margin: 0;
    max-width: none;
  }
  .pg-home .confSect .contList li {
    padding: 0;
    width: auto;
  }
  .pg-home .confSect .contList li + li {
    margin-top: 20px;
  }
  .pg-home .confSect .contList a {
    padding: 12px 30px 12px 15px;
  }
  .pg-home .confSect .contList .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .pg-home .confSect .contList .container::before {
    right: 5px;
    bottom: 5px;
    border-width: 6px;
  }
  .pg-home .confSect .contList .icon {
    margin: 0 17px 0 0;
  }
  .pg-home .confSect .contList .icon img {
    width: 60px;
  }
  .pg-home .confSect .contList .body {
    text-align: left;
  }
  .pg-home .confSect .contList .text {
    line-height: 1.4;
  }
  .pg-home .confSect .contList .hdg + .text {
    margin-top: 16px;
  }
  .pg-home .confSect .contList .hdg + .text::before {
    left: 0;
    bottom: calc(100% + 9px);
    margin-left: 0;
    width: 30px;
  }
  .pg-home .otherSect--upper {
    padding: 45px 0 50px;
  }
  .pg-home .otherSect--lower {
    margin-top: 45px;
  }
  .pg-home .otherSect--lower + * {
    margin-top: 50px;
  }
  .pg-home .otherSect__hdg {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  .pg-home .otherSect .linkList,
  .pg-home .otherSect .c-boxSet,
  .pg-home .otherSect .c-linkBlockList {
    margin-bottom: 40px;
  }
  .pg-home .otherSect .linkList a {
    border-left-width: 3px;
    padding: 16px 30px 16px 10px;
    font-size: 1.3rem;
  }
  .pg-home .otherSect .linkList a .arrow {
    right: 10px;
    margin-top: -4px;
  }
  .pg-home .otherSect .linkList a .arrow img {
    width: 8px;
  }
  .pg-home .contactSect {
    margin-top: 50px;
    padding: 35px 0 40px;
  }
  .pg-home .contactSect__hdg {
    margin-bottom: 12px;
    font-size: 2.2rem;
  }
  .pg-home .contactSect__lead {
    font-size: 1.3rem;
  }
  .pg-home .contactSect .linkBtnList {
    margin: calc(20px - 10px) 0 0 -10px;
  }
  .pg-home .contactSect .linkBtnList li {
    padding: 10px 0 0 10px;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .pg-home .contactSect .linkBtnList .c-linkBtn {
    border-radius: 8px;
  }
  .pg-home .contactSect .linkBtnList .c-linkBtn > div {
    padding: 8px 35px 14px;
    min-width: auto;
    font-size: 1.3rem;
  }
  .pg-home .contactSect .linkBtnList .c-linkBtn > div .arrow {
    right: 10px;
  }
  .pg-home .contactSect .linkBtnList .c-linkBtn .text {
    position: static;
    padding: 0;
    text-align: center;
    line-height: 1.3;
  }
  .pg-home .contactSect .linkBtnList .c-linkBtn .text::before {
    display: block;
    position: static;
    margin: 0 auto 7px;
    width: 24px;
    height: 15px;
    background-repeat: no-repeat;
  }
  .pg-home .contactSect .linkBtnList .noIcon .c-linkBtn > div {
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .pg-home .bannerArea {
    padding: 20px 0;
  }
  .pg-home .bannerArea .bannerSlide .swiper-container {
    margin: 0 80px;
  }
  .pg-home .bannerArea .bannerSlide .swiper-btn {
    margin-top: -15px;
    width: 30px;
    height: 30px;
  }
  .pg-home .bannerArea .bannerSlide .swiper-btn img {
    width: 12px;
  }
  .pg-home .bannerArea .bannerSlide .swiper-btn-prev {
    left: 30px;
  }
  .pg-home .bannerArea .bannerSlide .swiper-btn-next {
    right: 30px;
  }
  .pg-home .bannerArea .note {
    margin-top: 8px;
    font-size: 1.1rem;
  }
  .pg-home .contactSect:last-child,
  .pg-home .bannerArea:last-child {
    margin-bottom: -50px;
  }
}

/* 目次ページ */
.pg-index main .leadArea {
  margin-bottom: 60px;
}

.pg-index main .p-anchorLink {
  clear: both;
  margin-bottom: 80px;
}

.pg-index main .indexList {
  margin-top: 80px;
}

.pg-index main .indexList > li {
  margin-top: 80px;
}

.pg-index main .indexList > li.-noHeader {
  margin-top: -1px;
}

.pg-index main .indexList > li > .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 32px;
  border-left: 4px solid currentColor;
  padding: 0 0 15px 16px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: #00337f;
}

.pg-index main .indexList > li > .header::before {
  content: "";
  position: absolute;
  left: 19px;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: currentColor;
}

.pg-index main .indexList > li > .header .hdg {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}

.pg-index main .indexList > li > .header .linkArea {
  margin-left: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.6rem;
}

.pg-index main .indexList > li > .header .linkArea a {
  display: inline-block;
  position: relative;
  padding-right: 30px;
}

.pg-index main .indexList > li > .header .linkArea a .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -11px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background-color: #00337f;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

html[data-whatintent="mouse"] .pg-index main .indexList > li > .header .linkArea a:hover {
  opacity: .6;
}

.pg-index main .indexList > li > .header .linkArea a + a {
  margin-left: 20px;
}

.pg-index main .indexList > li > .c-bodyAndImageSet + .c-wysiwyg {
  clear: both;
  margin-top: 50px;
}

.pg-index main .indexList > li > .btnArea {
  margin-top: 40px;
}

.pg-index main .indexList > li > .listArea {
  margin-top: 60px;
}

.pg-index main .indexList > li > .listArea:first-child {
  margin-top: 0;
}

.pg-index main .indexList__list article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 20px 26px;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.pg-index main .indexList__list article .thumbnail {
  margin-right: 22px;
  max-width: 226px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: start;
  align-self: flex-start;
  text-align: center;
}

.pg-index main .indexList__list article .thumbnail img {
  max-width: 100%;
}

.pg-index main .indexList__list article .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pg-index main .indexList__list article .date {
  margin-bottom: 10px;
  color: #00337f;
  font-size: 1.5rem;
  line-height: 1;
}

.pg-index main .indexList__list article .title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}

.pg-index main .indexList__list article .desc {
  font-size: 1.4rem;
  line-height: 1.75;
}

.pg-index main .indexList__list article .title + .desc {
  margin-top: 12px;
}

.pg-index main .indexList__list article .more {
  margin-top: 12px;
  text-align: right;
}

.pg-index main .indexList__list article .more .text {
  margin-right: 10px;
  color: #1358a2;
  font-size: 1.4rem;
}

.pg-index main .indexList__list article .more .arrow {
  font-size: 0;
}

.pg-index main .indexList__list article .more .arrow img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

html[data-whatintent="mouse"] .pg-index main .indexList__list a:hover article {
  background-color: #f5f5f5;
}

.pg-index main .indexList__list--1col > li {
  border-bottom: 1px solid #e6e6e6;
}

.pg-index main .indexList__list--1col > li:first-child {
  border-top: 1px solid #e6e6e6;
}

.pg-index main .indexList__list--2col, .pg-index main .indexList__list--3col, .pg-index main .indexList__list--4col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-index main .indexList__list--2col > li, .pg-index main .indexList__list--3col > li, .pg-index main .indexList__list--4col > li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-index main .indexList__list--2col a, .pg-index main .indexList__list--3col a, .pg-index main .indexList__list--4col a {
  display: block;
  height: 100%;
}

.pg-index main .indexList__list--2col article, .pg-index main .indexList__list--3col article, .pg-index main .indexList__list--4col article {
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-index main .indexList__list--2col {
  margin-left: -47px;
}

.pg-index main .indexList__list--2col > li {
  padding-left: 47px;
  width: 50%;
}

.pg-index main .indexList__list--2col > li article {
  border-bottom: 4px solid #1358a2;
  padding-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .pg-index main .indexList__list--2col > li:nth-child(-n+2) article {
    border-top: 1px solid #e6e6e6;
  }
}

.pg-index main .indexList__list--3col, .pg-index main .indexList__list--4col {
  margin: -30px 0 0 -30px;
}

.pg-index main .indexList__list--3col > li, .pg-index main .indexList__list--4col > li {
  padding: 30px 0 0 30px;
}

.pg-index main .indexList__list--3col > li article, .pg-index main .indexList__list--4col > li article {
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.pg-index main .indexList__list--3col > li article .thumbnail, .pg-index main .indexList__list--4col > li article .thumbnail {
  margin-right: 0;
  width: 100%;
  max-width: none;
}

.pg-index main .indexList__list--3col > li article .thumbnail img, .pg-index main .indexList__list--4col > li article .thumbnail img {
  width: 100%;
}

.pg-index main .indexList__list--3col > li article .body, .pg-index main .indexList__list--4col > li article .body {
  padding: 18px 18px 15px;
}

.pg-index main .indexList__list--3col > li {
  width: 33.333%;
}

.pg-index main .indexList__list--3col > li article {
  border-bottom: 4px solid #1358a2;
}

.pg-index main .indexList__list--4col > li {
  width: 25%;
}

.pg-index main .indexList__list--4col > li article {
  border-bottom: 4px solid #e6e6e6;
}

.pg-index main .indexList__list--noThumbnail article {
  position: relative;
}

.pg-index main .indexList__list--noThumbnail article .more {
  position: absolute;
  right: 20px;
  top: calc(50% - 6px);
  margin-top: 0;
  font-size: 0;
}

.pg-index main .indexList__list--noThumbnail article .more .text {
  display: none;
}

.pg-index main .indexList__list--noThumbnail article .more .arrow img {
  -webkit-transform: none;
  transform: none;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--1col article {
  padding-right: 70px;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--2col {
  margin-left: 0;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--2col > li {
  padding-left: 0;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--2col > li article {
  border-bottom: 1px solid #e6e6e6;
  border-left: 4px solid #1358a2;
  padding: 27px 65px 27px 20px;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--2col > li article .more {
  right: 25px;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--3col {
  margin-top: 0;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--3col > li {
  padding-top: 0;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--3col > li article {
  padding: 27px 55px 27px 20px;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--3col > li article .body {
  padding: 0;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--3col > li article .desc {
  margin-bottom: -10px;
}

@media screen and (min-width: 768px) {
  .pg-index main .indexList__list--noThumbnail.indexList__list--3col > li:nth-child(-n+3) article {
    border-top: 1px solid #e6e6e6;
  }
}

.pg-index main .indexList__list--noThumbnail.indexList__list--4col {
  margin-top: 0;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--4col > li {
  padding-top: 0;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--4col > li article .body {
  padding: 27px 20px 45px;
}

.pg-index main .indexList__list--noThumbnail.indexList__list--4col > li article .more {
  top: auto;
  bottom: 20px;
}

@media screen and (min-width: 768px) {
  .pg-index main .indexList__list--noThumbnail.indexList__list--4col > li:nth-child(-n+4) article {
    border-top: 1px solid #e6e6e6;
  }
}

.pg-index main .indexList__list--titleOnly.indexList__list--2col article .body, .pg-index main .indexList__list--titleOnly.indexList__list--3col article .body {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pg-index main .indexList__list--titleOnly.indexList__list--2col article .title {
  margin: -2px 0;
}

.pg-index main .indexList__list--titleOnly.indexList__list--3col article .title {
  margin: -5px 0 -8px;
}

@media screen and (max-width: 767px) {
  .pg-index main .leadArea {
    margin-bottom: 40px;
  }
  .pg-index main .p-anchorLink {
    margin-bottom: 50px;
  }
  .pg-index main .indexList {
    margin-top: 50px;
  }
  .pg-index main .indexList > li {
    margin-top: 50px;
  }
  .pg-index main .indexList > li > .header {
    margin-bottom: 21px;
    border-left-width: 3px;
    padding: 0 0 9px 11px;
  }
  .pg-index main .indexList > li > .header::before {
    left: 10px;
  }
  .pg-index main .indexList > li > .header .hdg {
    font-size: 1.7rem;
    line-height: 1.4;
  }
  .pg-index main .indexList > li > .header .linkArea {
    margin-left: 20px;
    font-size: 1.3rem;
  }
  .pg-index main .indexList > li > .header .linkArea a {
    padding-right: 20px;
  }
  .pg-index main .indexList > li > .header .linkArea a .arrow {
    margin-top: -6px;
    width: 14px;
    height: 14px;
  }
  .pg-index main .indexList > li > .header .linkArea a .arrow img {
    width: 8px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .pg-index main .indexList > li > .header .linkArea a + a {
    margin-left: 10px;
  }
  .pg-index main .indexList > li > .c-bodyAndImageSet + .c-wysiwyg {
    margin-top: 40px;
  }
  .pg-index main .indexList > li > .btnArea {
    margin-top: 15px;
  }
  .pg-index main .indexList > li > .listArea {
    margin-top: 40px;
  }
  .pg-index main .indexList__list article {
    padding: 22px 12px 15px;
  }
  .pg-index main .indexList__list article .thumbnail {
    margin-right: 16px;
    width: calc(113 / 375 * 100vw);
  }
  .pg-index main .indexList__list article .date {
    margin-bottom: 6px;
    font-size: 1.3rem;
  }
  .pg-index main .indexList__list article .title {
    font-size: 1.4rem;
    line-height: 1.45;
  }
  .pg-index main .indexList__list article .desc {
    font-size: 1.3rem;
    line-height: 1.55;
  }
  .pg-index main .indexList__list article .title + .desc {
    margin-top: 8px;
  }
  .pg-index main .indexList__list article .more .text {
    margin-right: 5px;
    font-size: 1.2rem;
  }
  .pg-index main .indexList__list article .more .arrow img {
    width: 10px;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  .pg-index main .indexList__list--2col, .pg-index main .indexList__list--3col, .pg-index main .indexList__list--4col {
    margin: -25px 0 0 -20px;
  }
  .pg-index main .indexList__list--2col > li, .pg-index main .indexList__list--3col > li, .pg-index main .indexList__list--4col > li {
    padding: 25px 0 0 20px;
    width: 50%;
  }
  .pg-index main .indexList__list--2col > li article, .pg-index main .indexList__list--3col > li article, .pg-index main .indexList__list--4col > li article {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pg-index main .indexList__list--2col > li article .thumbnail, .pg-index main .indexList__list--3col > li article .thumbnail, .pg-index main .indexList__list--4col > li article .thumbnail {
    margin-right: 0;
    width: 100%;
  }
  .pg-index main .indexList__list--2col > li article .body, .pg-index main .indexList__list--3col > li article .body, .pg-index main .indexList__list--4col > li article .body {
    padding: 12px 10px;
  }
  .pg-index main .indexList__list--2col > li article .thumbnail {
    max-width: none;
  }
  .pg-index main .indexList__list--noThumbnail article {
    padding-top: 20px;
    padding-bottom: 18px;
  }
  .pg-index main .indexList__list--noThumbnail article .more {
    right: 10px;
    top: calc(50% - 6px);
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--1col article {
    padding-right: 30px;
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--2col {
    margin-top: 0;
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--2col > li {
    padding-top: 0;
    width: 100%;
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--2col > li article {
    padding: 16px 30px 16px 12px;
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--2col > li article .body {
    padding: 0;
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--2col > li article .more {
    right: 10px;
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--2col > li:first-child article {
    border-top: 1px solid #e6e6e6;
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--3col > li article {
    padding: 24px 10px 40px;
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--3col > li article .desc {
    margin-bottom: 0;
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--3col > li article .more {
    top: auto;
    bottom: 20px;
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--3col > li:nth-child(-n+2) article {
    border-top: 1px solid #e6e6e6;
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--4col > li article .body {
    padding: 18px 10px 40px;
  }
  .pg-index main .indexList__list--noThumbnail.indexList__list--4col > li:nth-child(-n+2) article {
    border-top: 1px solid #e6e6e6;
  }
  .pg-index main .indexList__list--titleOnly.indexList__list--2col article .title {
    margin: 0;
  }
  .pg-index main .indexList__list--titleOnly.indexList__list--3col article .body {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .pg-index main .indexList__list--titleOnly.indexList__list--3col article .title {
    margin: -5px 0 0;
  }
}

/* 詳細ページ */
/* サイトマップページ */
.pg-sitemap main .mainSitemapList > li + li {
  margin-top: 40px;
}

.pg-sitemap main .mainSitemapList .lvl1 {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.pg-sitemap main .mainSitemapList .lvl1 a {
  display: block;
  position: relative;
  border-left: 4px solid #1358a2;
  padding: 21px 60px 21px 20px;
  font-size: 1.8rem;
  font-weight: bold;
}

.pg-sitemap main .mainSitemapList .lvl1 a .arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -7px;
}

.pg-sitemap main .mainSitemapList .lvl1 a .arrow img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

html[data-whatintent="mouse"] .pg-sitemap main .mainSitemapList .lvl1 a:hover {
  background-color: #f5f5f5;
}

.pg-sitemap main .mainSitemapList .lvl2 {
  margin-bottom: -2px;
  padding: 24px 50px 0 20px;
}

.pg-sitemap main .mainSitemapList .lvl2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -18px 0 0 -25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-sitemap main .mainSitemapList .lvl2 li {
  padding: 18px 0 0 25px;
  width: 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-sitemap main .mainSitemapList .lvl2 a {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  color: #1358a2;
  font-size: 1.5rem;
  line-height: 1.5;
}

.pg-sitemap main .mainSitemapList .lvl2 a .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  top: 3px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: currentColor;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pg-sitemap main .mainSitemapList .lvl2 a .arrow img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

html[data-whatintent="mouse"] .pg-sitemap main .mainSitemapList .lvl2 a:hover .text {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, currentColor));
  background-image: linear-gradient(180deg, transparent 95%, currentColor 95%);
}

.pg-sitemap main .subSitemapList {
  margin-top: 40px;
}

.pg-sitemap main .subSitemapList li {
  border-bottom: 1px solid #ddd;
}

.pg-sitemap main .subSitemapList li:first-child {
  border-top: 1px solid #ddd;
}

.pg-sitemap main .subSitemapList a {
  display: block;
  position: relative;
  padding: 17px 60px 17px 25px;
  font-size: 1.5rem;
  font-weight: bold;
}

.pg-sitemap main .subSitemapList a .arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -7px;
}

.pg-sitemap main .subSitemapList a .arrow img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

html[data-whatintent="mouse"] .pg-sitemap main .subSitemapList a:hover {
  background-color: #f5f5f5;
}

@media screen and (max-width: 767px) {
  .pg-sitemap main .mainSitemapList > li + li {
    margin-top: 30px;
  }
  .pg-sitemap main .mainSitemapList .lvl1 a {
    border-left-width: 3px;
    padding: 13px 30px 13px 10px;
    font-size: 1.7rem;
  }
  .pg-sitemap main .mainSitemapList .lvl1 a .arrow {
    right: 10px;
    margin-top: -4px;
  }
  .pg-sitemap main .mainSitemapList .lvl1 a .arrow img {
    width: 8px;
  }
  .pg-sitemap main .mainSitemapList .lvl2 {
    padding: 15px 30px 0 20px;
  }
  .pg-sitemap main .mainSitemapList .lvl2 ul {
    display: block;
    margin: 0;
  }
  .pg-sitemap main .mainSitemapList .lvl2 li {
    padding: 0;
    width: auto;
  }
  .pg-sitemap main .mainSitemapList .lvl2 li + li {
    margin-top: 10px;
  }
  .pg-sitemap main .mainSitemapList .lvl2 a .arrow {
    top: 5px;
    width: 14px;
    height: 14px;
  }
  .pg-sitemap main .subSitemapList {
    margin-top: 30px;
  }
  .pg-sitemap main .subSitemapList a {
    padding: 10px 30px 10px 10px;
  }
  .pg-sitemap main .subSitemapList a .arrow {
    right: 10px;
    margin-top: -4px;
  }
  .pg-sitemap main .subSitemapList a .arrow img {
    width: 8px;
  }
}

/**
 * Component
 */
.c-container {
  margin: auto;
  width: 1000px;
}

@media screen and (max-width: 767px) {
  .c-container {
    width: 92vw;
  }
}

.c-hdgLg {
  margin-bottom: 40px;
  border-top: 2px solid #1358a2;
  padding: 10px 20px 14px;
  background-color: #f5f5f5;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .c-hdgLg {
    margin-bottom: 25px;
    padding: 7px 20px 10px 10px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

.c-hdgMd {
  position: relative;
  margin-bottom: 32px;
  border-left: 4px solid currentColor;
  padding: 0 0 15px 16px;
  color: #00337f;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}

.c-hdgMd::before {
  content: "";
  position: absolute;
  left: 19px;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: currentColor;
}

@media screen and (max-width: 767px) {
  .c-hdgMd {
    margin-bottom: 21px;
    border-left-width: 3px;
    padding: 0 0 9px 11px;
    font-size: 1.7rem;
    line-height: 1.4;
  }
  .c-hdgMd::before {
    left: 10px;
  }
}

.c-hdgSm {
  margin-bottom: 25px;
  color: #1358a2;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .c-hdgSm {
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

.c-hdgXs {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .c-hdgXs {
    margin-bottom: 15px;
    line-height: 1.4;
  }
}

.c-linkBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 100px;
}

.c-linkBtn > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: inherit;
  padding: 10px 60px;
  min-width: 320px;
  min-height: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #00337f;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  -webkit-transition: -webkit-box-shadow .3s;
  transition: -webkit-box-shadow .3s;
  transition: box-shadow .3s;
  transition: box-shadow .3s, -webkit-box-shadow .3s;
}

.c-linkBtn > div .arrow {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -11px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background-color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

html[data-whatintent="mouse"] .c-linkBtn:hover > div {
  -webkit-box-shadow: 0 3px 10px rgba(0, 51, 127, 0.33);
  box-shadow: 0 3px 10px rgba(0, 51, 127, 0.33);
}

@media screen and (max-width: 767px) {
  .c-linkBtn > div {
    padding: 10px 50px;
    min-width: 300px;
    min-height: 40px;
    font-size: 1.2rem;
  }
  .c-linkBtn > div .arrow {
    right: 20px;
    margin-top: -7px;
    width: 15px;
    height: 15px;
  }
  .c-linkBtn > div .arrow img {
    width: 6px;
  }
}

.c-dlBtn {
  display: inline-block;
  position: relative;
  border-radius: 100px;
  padding: 14px 40px;
  min-width: 202px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #1358a2;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

.c-dlBtn::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -8px;
  width: 11px;
  height: 15px;
  background: url(../images/icon_pdf_white.svg) no-repeat;
  background-size: 100%;
}

html[data-whatintent="mouse"] .c-dlBtn:hover {
  -webkit-box-shadow: 0 3px 8px rgba(0, 51, 127, 0.3);
  box-shadow: 0 3px 8px rgba(0, 51, 127, 0.3);
}

@media screen and (max-width: 767px) {
  .c-dlBtn {
    padding: 11px 40px;
    min-width: 200px;
    font-size: 1.2rem;
  }
  .c-dlBtn::before {
    right: 18px;
    margin-top: -6px;
    width: 9px;
    height: 13px;
  }
}

.c-body,
.c-wysiwyg {
  font-size: 1.5rem;
}

.c-body blockquote,
.c-wysiwyg blockquote {
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
  -webkit-margin-after: 1em;
  margin-block-end: 1em;
  -webkit-margin-start: 40px;
  margin-inline-start: 40px;
  -webkit-margin-end: 40px;
  margin-inline-end: 40px;
}

.c-body h3,
.c-body p,
.c-wysiwyg h3,
.c-wysiwyg p {
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
  -webkit-margin-after: 1em;
  margin-block-end: 1em;
}

.c-body h2,
.c-wysiwyg h2 {
  -webkit-margin-before: .83em;
  margin-block-start: .83em;
  -webkit-margin-after: .83em;
  margin-block-end: .83em;
  font-size: 1.5em;
  font-weight: bold;
}

.c-body h3,
.c-wysiwyg h3 {
  font-size: 1.17em;
  font-weight: bold;
}

.c-body h4,
.c-wysiwyg h4 {
  -webkit-margin-before: 1.33em;
  margin-block-start: 1.33em;
  -webkit-margin-after: 1.33em;
  margin-block-end: 1.33em;
  font-weight: bold;
}

.c-body h5,
.c-wysiwyg h5 {
  -webkit-margin-before: 1.67em;
  margin-block-start: 1.67em;
  -webkit-margin-after: 1.67em;
  margin-block-end: 1.67em;
  font-size: .83em;
  font-weight: bold;
}

.c-body h6,
.c-wysiwyg h6 {
  -webkit-margin-before: 2.33em;
  margin-block-start: 2.33em;
  -webkit-margin-after: 2.33em;
  margin-block-end: 2.33em;
  font-size: .67em;
  font-weight: bold;
}

.c-body table th,
.c-wysiwyg table th {
  font-weight: bold;
}

.c-body table img,
.c-wysiwyg table img {
  vertical-align: baseline;
}

.c-body table strong,
.c-wysiwyg table strong {
  font-weight: bold;
}

.c-body ul:not([class]) li,
.c-wysiwyg ul:not([class]) li {
  position: relative;
  padding-left: 20px;
}

.c-body ul:not([class]) li::before,
.c-wysiwyg ul:not([class]) li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.c-body ul:not([class]) li + li,
.c-wysiwyg ul:not([class]) li + li {
  margin-top: 5px;
}

.c-body ol:not([class]),
.c-wysiwyg ol:not([class]) {
  padding-left: 20px;
  list-style-type: decimal;
}

.c-body ol:not([class]) li,
.c-wysiwyg ol:not([class]) li {
  list-style-type: inherit;
}

.c-body ol:not([class]) li::before,
.c-wysiwyg ol:not([class]) li::before {
  content: none;
}

.c-body ol:not([class]) li + li,
.c-wysiwyg ol:not([class]) li + li {
  margin-top: 5px;
}

.c-body a:not(.c-dlBtn),
.c-wysiwyg a:not(.c-dlBtn) {
  color: #1358a2;
  text-underline-offset: 3px;
}

.c-body a:not(.c-dlBtn)[target="_blank"]::after,
.c-wysiwyg a:not(.c-dlBtn)[target="_blank"]::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 13px;
  height: 11px;
  background: url(../images/icon_blank_blue.svg) no-repeat;
  background-size: 100%;
}

.c-body a:not(.c-dlBtn)[href$=".pdf"]::after,
.c-wysiwyg a:not(.c-dlBtn)[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 11px;
  height: 15px;
  background: url(../images/icon_pdf_blue.svg) no-repeat;
  background-size: 100%;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

.c-body a:not(.c-dlBtn) p,
.c-wysiwyg a:not(.c-dlBtn) p {
  display: inline;
}

html[data-whatintent="mouse"] .c-body a:not(.c-dlBtn):hover, html[data-whatintent="mouse"]
.c-wysiwyg a:not(.c-dlBtn):hover {
  text-decoration: underline;
}

.c-body .c-image a::after,
.c-wysiwyg .c-image a::after {
  content: none !important;
}

.c-body b,
.c-wysiwyg b {
  font-weight: bold;
}

.c-body i,
.c-wysiwyg i {
  font-style: italic;
}

.c-body u,
.c-wysiwyg u {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.c-body sup,
.c-wysiwyg sup {
  vertical-align: super;
  font-size: 1rem;
}

.c-body sub,
.c-wysiwyg sub {
  vertical-align: sub;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .c-body .tableWrapper,
  .c-wysiwyg .tableWrapper {
    margin-right: -4vw;
    overflow-x: scroll;
  }
  .c-body .tableWrapper > div,
  .c-wysiwyg .tableWrapper > div {
    padding-right: 4vw;
    width: 200%;
  }
  .c-body table,
  .c-wysiwyg table {
    width: 100% !important;
  }
}

.c-image {
  text-align: center;
}

.c-image figure {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}

.c-image figure > div {
  overflow: hidden;
}

.c-image figure img {
  max-width: 100%;
  -webkit-transition: transform .6s;
  /* autoprefixer: ignore next */
  transition: transform .6s;
}

html[data-whatintent="mouse"] .c-image a:hover figure img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.c-boxSet > .c-box + .c-box {
  clear: both;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .c-boxSet > .c-box + .c-box {
    margin-top: 50px;
  }
}

.c-bodyAndImageSet .c-image + .c-bodyAndImageSet__body {
  margin-top: 22px;
}

.c-bodyAndImageSet--imageLeft .c-bodyAndImageSet__container, .c-bodyAndImageSet--imageRight .c-bodyAndImageSet__container {
  margin-bottom: -20px;
}

.c-bodyAndImageSet--imageLeft .c-bodyAndImageSet__container::after, .c-bodyAndImageSet--imageRight .c-bodyAndImageSet__container::after {
  content: "";
  display: block;
  clear: both;
}

.c-bodyAndImageSet--imageLeft .c-image,
.c-bodyAndImageSet--imageLeft .c-bodyAndImageSet__body, .c-bodyAndImageSet--imageRight .c-image,
.c-bodyAndImageSet--imageRight .c-bodyAndImageSet__body {
  padding-bottom: 20px;
}

.c-bodyAndImageSet--imageLeft .c-image, .c-bodyAndImageSet--imageRight .c-image {
  max-width: calc(500 / 1000 * 100%);
}

.c-bodyAndImageSet--imageLeft .c-image + .c-bodyAndImageSet__body, .c-bodyAndImageSet--imageRight .c-image + .c-bodyAndImageSet__body {
  margin-top: 0;
}

.c-bodyAndImageSet--imageLeft .c-image {
  float: left;
  padding-right: 44px;
}

.c-bodyAndImageSet--imageRight .c-image {
  float: right;
  padding-left: 44px;
}

.c-bodyAndImageSet__body > * + .btnArea {
  margin-top: 40px;
}

.c-bodyAndImageSet + .c-bodyAndImageSet {
  clear: both;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .c-bodyAndImageSet .c-image + .c-bodyAndImageSet__body {
    margin-top: 12px !important;
  }
  .c-bodyAndImageSet--imageLeft .c-bodyAndImageSet__container, .c-bodyAndImageSet--imageRight .c-bodyAndImageSet__container {
    margin-bottom: 0;
  }
  .c-bodyAndImageSet--imageLeft .c-image,
  .c-bodyAndImageSet--imageLeft .c-bodyAndImageSet__body, .c-bodyAndImageSet--imageRight .c-image,
  .c-bodyAndImageSet--imageRight .c-bodyAndImageSet__body {
    padding-bottom: 0;
  }
  .c-bodyAndImageSet--imageLeft .c-image, .c-bodyAndImageSet--imageRight .c-image {
    float: none;
    padding: 0 !important;
    max-width: none;
  }
  .c-bodyAndImageSet__body .btnArea {
    text-align: center;
  }
  .c-bodyAndImageSet__body > * + .btnArea {
    margin-top: 15px;
  }
  .c-bodyAndImageSet + .c-bodyAndImageSet {
    margin-top: 40px;
  }
}

.c-linkBlockList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-linkBlockList li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-linkBlockList .image {
  position: relative;
  overflow: hidden;
}

.c-linkBlockList .image img {
  margin-left: -1px;
  width: calc(100% + 2px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: transform .6s;
  /* autoprefixer: ignore next */
  transition: transform .6s;
}

html[data-whatintent="mouse"] .c-linkBlockList a:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.c-linkBlockList .body {
  position: relative;
  padding: 8px 40px 8px 5px;
}

.c-linkBlockList .body p {
  font-size: 1.8rem;
  font-weight: bold;
}

.c-linkBlockList .body .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -11px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background-color: #00337f;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-linkBlockList--3col {
  margin: -30px 0 0 -30px;
}

.c-linkBlockList--3col li {
  padding: 30px 0 0 30px;
  width: 33.333%;
}

.c-linkBlockList--4col {
  margin: -25px 0 0 -25px;
}

.c-linkBlockList--4col li {
  padding: 25px 0 0 25px;
  width: 25%;
}

.c-linkBlockList--4col .body p {
  font-size: 1.6rem;
}

.c-linkBlockList--5col {
  margin: -20px 0 0 -20px;
}

.c-linkBlockList--5col li {
  padding: 20px 0 0 20px;
  width: 20%;
}

.c-linkBlockList--5col .body p {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .c-linkBlockList .body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 6px 30px 6px 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-linkBlockList .body p {
    font-size: 1.2rem;
    line-height: 1.25;
  }
  .c-linkBlockList .body .arrow {
    margin-top: -8px;
    width: 15px;
    height: 15px;
  }
  .c-linkBlockList .body .arrow img {
    width: 6px;
  }
  .c-linkBlockList--3col, .c-linkBlockList--4col, .c-linkBlockList--5col {
    margin: -10px 0 0 -10px;
  }
  .c-linkBlockList--3col li, .c-linkBlockList--4col li, .c-linkBlockList--5col li {
    padding: 10px 0 0 10px;
    width: 50%;
  }
}

/**
 * Project
 */
.p-pageHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 60px;
  background: #eceef4 url(../images/img_decoration_01.png) 50% 50% repeat-x;
  overflow: hidden;
}

.p-pageHeader::before {
  content: "";
  opacity: .4;
  position: absolute;
  left: 0;
  right: 0;
  top: -280px;
  bottom: -280px;
  background: radial-gradient(circle closest-side, rgba(112, 161, 234, 0) 65%, #70a1ea);
}

.p-pageHeader .c-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 30px 0;
  min-height: 170px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.p-pageHeader__hdg {
  color: #00337f;
  font-size: 3.2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .p-pageHeader {
    margin-bottom: 40px;
    background-size: 575px;
  }
  .p-pageHeader .c-container {
    padding: 20px 0;
    min-height: 120px;
  }
  .p-pageHeader__hdg {
    font-size: 2rem;
  }
}

.p-breadcrumb {
  padding: 15px 0;
}

.p-breadcrumb li {
  display: inline;
  font-size: 1.2rem;
  line-height: 2;
}

.p-breadcrumb li::before {
  content: none;
  display: block;
  margin: 0;
}

.p-breadcrumb li:first-child span {
  font-size: 0;
}

.p-breadcrumb li:first-child span::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 11px;
  background: url(../images/icon_home.png) no-repeat;
  background-size: 100%;
}

.p-breadcrumb li:not(:first-child) {
  position: relative;
  padding-left: 20px;
}

.p-breadcrumb li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  border-right: 1px solid #777;
  border-bottom: 1px solid #777;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p-breadcrumb li a {
  color: #1358a2;
}

html[data-whatintent="mouse"] .p-breadcrumb li a:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, currentColor));
  background-image: linear-gradient(180deg, transparent 95%, currentColor 95%);
}

.p-breadcrumb li:first-child a {
  background-image: none !important;
}

.p-breadcrumb li:last-child a {
  color: inherit;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .p-breadcrumb {
    margin: 50px 0 -50px;
    border-top: 1px solid #c6c6c6;
    padding: 10px 0;
    background-color: #f5f5f5;
  }
}

.p-anchorLink {
  margin: -10px 0 40px;
}

.p-anchorLink ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 -33px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-anchorLink li {
  padding: 0 0 0 33px !important;
  width: 20%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-anchorLink li::before {
  content: none !important;
}

.p-anchorLink a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-anchorLink a > div {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.p-anchorLink a .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px 10px 0;
  min-height: 65px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.4;
}

.p-anchorLink a .arrow {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
}

.p-anchorLink a .arrow img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

html[data-whatintent="mouse"] .p-anchorLink a:hover {
  text-decoration: none !important;
}

html[data-whatintent="mouse"] .p-anchorLink a:hover > div {
  opacity: .5;
}

@media screen and (max-width: 767px) {
  .p-anchorLink ul {
    margin: 0 0 0 -20px;
  }
  .p-anchorLink li {
    padding: 0 0 0 20px !important;
    width: 50%;
  }
  .p-anchorLink a .text {
    min-height: 55px;
    font-size: 1.5rem;
  }
  .p-anchorLink a .arrow {
    margin-top: -4px;
  }
  .p-anchorLink a .arrow img {
    width: 10px;
  }
}

.p-subNav {
  padding-top: 20px;
  background-color: #00337f;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .p-subNav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -15px 0 0 -15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-subNav__list li {
    position: relative;
    margin-top: 15px;
    font-size: 1.4rem;
  }
  .p-subNav__list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: .3em;
    width: 1px;
    height: 1.1em;
    background-color: #fff;
  }
  .p-subNav__list li:last-child::before {
    content: none;
  }
  .p-subNav__list a {
    display: block;
    position: relative;
    padding: 0 15px 18px;
  }
  .p-subNav__list a::before {
    content: "";
    opacity: 0;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 4px;
    background-color: #4486c7;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }
  html[data-whatintent="mouse"] .p-subNav__list li:hover a::before {
    opacity: 1;
  }
  .p-subNav__list li.-current a::before {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-subNav {
    position: relative;
    padding-top: 0;
  }
  .p-subNav__menuBtn {
    position: relative;
    z-index: 20;
    padding: 9px calc(4vw + 30px) 9px 4vw;
    width: 100%;
    background-color: #1358a2;
    text-align: left;
    font-size: 1.4rem;
    font-weight: bold;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
  }
  .p-subNav__menuBtn .icon {
    position: absolute;
    right: 4vw;
    top: 50%;
    margin-top: -7px;
    width: 14px;
    height: 14px;
  }
  .p-subNav__menuBtn .icon::before, .p-subNav__menuBtn .icon::after {
    content: "";
    position: absolute;
    background-color: #fff;
  }
  .p-subNav__menuBtn .icon::before {
    left: 0;
    top: 6px;
    width: 100%;
    height: 2px;
  }
  .p-subNav__menuBtn .icon::after {
    left: 6px;
    top: 0;
    width: 2px;
    height: 100%;
  }
  .p-subNav__menuBtn.-active {
    background-color: #4486c7;
  }
  .p-subNav__menuBtn.-active .icon::after {
    content: none;
  }
  .p-subNav > .c-container {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 20;
    width: auto;
    overflow-y: auto;
  }
  .p-subNav__list {
    background-color: #1358a2;
  }
  .p-subNav__list li + li {
    border-top: 1px solid #4486c7;
  }
  .p-subNav__list a {
    display: block;
    padding: 11px calc(4vw + 25px) 11px 4vw;
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
  }
  .p-subNav__list a .arrow {
    position: absolute;
    right: calc(4vw + 2px);
    top: 50%;
    margin-top: -5px;
  }
  .p-subNav__list a .arrow img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .p-subNav__overlay {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition-property: opacity, visibility, background-color;
    transition-property: opacity, visibility, background-color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
  }
  .p-subNav__overlay.-active {
    opacity: 1;
    visibility: visible;
  }
  .p-subNav__overlay.-blue {
    background-color: #1358a2;
  }
}

.p-snsShare {
  margin: 70px 0 -80px;
  padding: 32px 0;
  background-color: #eee;
}

.p-pageHeader + .p-snsShare {
  margin: calc(-60px + 28px) 0 28px;
  padding: 0;
  background-color: transparent;
}

.pg-home .p-snsShare {
  background-color: transparent;
}

.pg-home .contactSect + .p-snsShare,
.pg-home .bannerArea + .p-snsShare {
  margin-top: 0;
}

.p-snsShare__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-snsShare__list > li {
  font-size: 0;
}

@media screen and (min-width: 768px) {
  .p-snsShare__list > li + li {
    margin-left: 10px;
  }
}

.p-snsShare__list > li img {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

html[data-whatintent="mouse"] .p-snsShare__list > li a:hover img {
  opacity: .6;
}

.p-pageHeader + .p-snsShare .p-snsShare__list {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .p-snsShare {
    margin: 50px 0 -50px;
    padding: 20px 0;
  }
  .p-snsShare__list {
    margin: -10px 0 0 -10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-snsShare__list > li {
    padding: 10px 0 0 10px;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .p-snsShare__list > li:nth-child(odd) {
    text-align: right;
  }
}

/**
 * Other
 */
/**
 * Utility
 */
@media screen and (max-width: 767px) {
  .u-pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-spOnly {
    display: none !important;
  }
}

.u-taC {
  text-align: center;
}

/**
 * keyframes
 */
/**
 * Swiper 5.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 22, 2020
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
