@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css?family=Barlow:400,600,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;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, 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;
}

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

/**
 * 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;
}

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

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

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

img {
  vertical-align: top;
}

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  min-width: 1160px;
  color: #000;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", sans-serif;
  letter-spacing: .5px;
  line-height: 2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -moz-osx-font-smoothing: unset;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
}

html.-gMenuActive.-ie11 body {
  overflow-x: hidden;
  overflow-y: auto;
}

@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;
  }
}

@media print {
  body {
    min-width: 0;
  }
}

a {
  color: #01a6db;
  text-decoration: none;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

b {
  font-weight: bold;
}

i {
  font-style: italic;
}

u {
  text-decoration: underline;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

path {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

line {
  -webkit-transition-property: stroke;
  transition-property: stroke;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

[lang="en"] {
  font-family: 'Barlow', sans-serif;
}

/**
 * Header
 */
.l-header > header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  min-width: 1160px;
  pointer-events: none;
}

html.-gMenuActive .l-header > header {
  position: absolute;
  left: 0 !important;
}

@media print {
  .l-header > header {
    position: absolute;
    left: 0 !important;
  }
}

.l-header__container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  border: 6px solid transparent;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
}

html.-gMenuActive .l-header__container::before {
  border-color: #00c1f9;
}

.l-header__head {
  height: 100px;
  background-color: #fff;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  pointer-events: auto;
}

.l-header__head .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 60px;
  width: 220px;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header__head .logo img {
  width: 100%;
  height: auto;
}

.l-header__head .logo--hasWhite a {
  position: relative;
}

.l-header__head .logo--hasWhite img {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.l-header__head .logo--hasWhite img:not(.white) {
  opacity: 1;
}

.l-header__head .logo--hasWhite img.white {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.l-header__head .btnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
}

@media print {
  .l-header__head .btnList {
    display: none;
  }
}

.l-header__head .btnList li ~ li {
  margin-left: 2px;
}

.l-header__head .btnList a,
.l-header__head .btnList button {
  width: 75px;
  height: 75px;
  background-color: #f8f8f8;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}

.l-header__head .btnList a .text,
.l-header__head .btnList button .text {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}

.l-header__head .btnList a .text[lang="en"],
.l-header__head .btnList button .text[lang="en"] {
  font-weight: 600;
}

.l-header__head .btnList .linkBtn {
  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: center;
  color: inherit;
}

.l-header__head .btnList .linkBtn .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 10px;
  height: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header__head .btnList .linkBtn .icon path {
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
}

.l-header__head .btnList .linkBtn:hover {
  background-color: #00c1f9;
  color: #fff;
}

.l-header__head .btnList .linkBtn:hover .icon path {
  fill: currentColor;
}

.l-header__head .btnList .gMenuBtn .icon {
  display: block;
  position: relative;
  margin: 10px auto 20px;
  width: 24px;
  -webkit-transition: transform .3s;
  /* autoprefixer: ignore next */
  transition: transform .3s;
}

.l-header__head .btnList .gMenuBtn .icon > span {
  display: block;
  margin: 0 0 0 auto;
  width: 18px;
  height: 2px;
  background-color: #000;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.l-header__head .btnList .gMenuBtn .icon > span::before, .l-header__head .btnList .gMenuBtn .icon > span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}

.l-header__head .btnList .gMenuBtn .icon > span::before {
  left: 0;
  bottom: 100%;
  margin-bottom: 6px;
}

.l-header__head .btnList .gMenuBtn .icon > span::after {
  right: 0;
  top: 100%;
  margin-top: 6px;
  width: 12px;
}

@media screen and (min-width: 768px) {
  .l-header__head .btnList .gMenuBtn:hover {
    background-color: #00c1f9;
    color: #fff;
  }
  .l-header__head .btnList .gMenuBtn:hover .icon > span {
    background-color: #fff;
  }
  .l-header__head .btnList .gMenuBtn:hover .icon > span::before, .l-header__head .btnList .gMenuBtn:hover .icon > span::after {
    background-color: #fff;
  }
}

.l-header__head .btnList .gMenuBtn.-active {
  background-color: #00c1f9;
  color: #fff;
}

.l-header__head .btnList .gMenuBtn.-active .icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.l-header__head .btnList .gMenuBtn.-active .icon > span {
  background-color: transparent;
}

.l-header__head .btnList .gMenuBtn.-active .icon > span::before, .l-header__head .btnList .gMenuBtn.-active .icon > span::after {
  background-color: #fff;
}

.l-header__head .btnList .gMenuBtn.-active .icon > span::before {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.l-header__head .btnList .gMenuBtn.-active .icon > span::after {
  top: 50%;
  margin-top: -1px;
  width: 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.l-header.-transparent .l-header__head {
  background-color: transparent;
}

.l-header.-transparent .l-header__head .logo--hasWhite img:not(.white) {
  opacity: 0;
}

.l-header.-transparent .l-header__head .logo--hasWhite img.white {
  opacity: 1;
}

html.-gMenuActive .l-header .l-header__head {
  background-color: #fff;
}

.l-header .gMenu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition-property: opacity, visibility, background-color;
  transition-property: opacity, visibility, background-color;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}

@media print {
  .l-header .gMenu {
    display: none;
  }
}

.l-header .gMenu > .cont {
  overflow: hidden;
}

.l-header .gMenu > .cont a {
  color: inherit;
}

.l-header .gMenu > .cont .textBtnList > li ~ li {
  margin-top: 15px;
}

.l-header .gMenu > .cont .textBtnList .c-textBtn {
  width: 100%;
}

.l-header .gMenu > .cont .textBtnList .c-textBtn > span {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}

.l-header .gMenu > .cont .textBtnList .c-textBtn > span::before, .l-header .gMenu > .cont .textBtnList .c-textBtn > span::after {
  background-color: #1dc5ff;
}

.l-header .gMenu > .cont .textBtnList .c-textBtn > span > span {
  padding: 10px 30px 10px 40px;
}

.l-header .gMenu > .cont .textBtnList .c-textBtn > span > span::before, .l-header .gMenu > .cont .textBtnList .c-textBtn > span > span::after {
  background-color: #1dc5ff;
}

.l-header .gMenu > .cont .textBtnList .c-textBtn .c-figureIcon,
.l-header .gMenu > .cont .textBtnList .c-textBtn .c-docIcon {
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -9px;
}

.l-header .gMenu > .cont .textBtnList .c-textBtn .c-figureIcon {
  width: 16px;
  height: 16px;
}

.l-header .gMenu > .cont .textBtnList .c-textBtn .c-docIcon {
  width: 14px;
  height: 17px;
}

[data-whatintent="mouse"] .l-header .gMenu > .cont .textBtnList .c-textBtn:hover path {
  stroke: #1dc5ff;
}

@media screen and (min-width: 768px) {
  .l-header .gMenu > .cont li.u-spOnly + li {
    margin-top: 0 !important;
  }
  .l-header .gMenu > .cont .lvl1LinkArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    border-bottom: 2px solid #000;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-header .gMenu > .cont .lvl1LinkList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -50px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-header .gMenu > .cont .lvl1LinkList > li {
    padding-left: 50px;
  }
  .l-header .gMenu > .cont .lvl1Link > a {
    display: inline-block;
    position: relative;
    padding: 9px 0 9px 2px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .l-header .gMenu > .cont .lvl1Link > a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 4px;
    background-color: #00c1f9;
    -webkit-transition: width .4s;
    transition: width .4s;
  }
  .l-header .gMenu > .cont .lvl1Link.-active > a::before {
    width: 100%;
  }
  .l-header .gMenu > .cont .lvl2 {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 36px 0;
    width: 100%;
    -webkit-transition-property: opacity, visibility;
    transition-property: opacity, visibility;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
  }
  .l-header .gMenu > .cont .lvl2 .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -15px;
  }
  .l-header .gMenu > .cont .lvl2 .row > .col {
    padding-left: 15px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .l-header .gMenu > .cont .lvl2 .row > .col.-hasTextBtnList {
    position: relative;
  }
  .l-header .gMenu > .cont .lvl2 .row > .col.-hasTextBtnList .textBtnList {
    position: absolute;
    left: 15px;
    right: 0;
    bottom: 0;
  }
  .l-header .gMenu > .cont .lvl2 .row + .row {
    margin-top: 30px;
  }
  .l-header .gMenu > .cont .lvl2.-dept .col.-main {
    width: 75%;
  }
  .l-header .gMenu > .cont .lvl2.-dept .col.-main .lvl2Link > a {
    font-size: 1.8rem;
  }
  .l-header .gMenu > .cont .lvl2.-dept .col.-main .lvl2Link > a::before {
    top: 13px;
  }
  .l-header .gMenu > .cont .lvl2.-dept .col.-main .lvl2Link > a small {
    font-weight: inherit;
  }
  .l-header .gMenu > .cont .lvl2.-dept .col.-main .lvl2Link.-small {
    margin-bottom: -8px;
  }
  .l-header .gMenu > .cont .lvl2.-dept .col.-main .lvl2Link.-small > a {
    font-size: 1.6rem;
  }
  .l-header .gMenu > .cont .lvl2.-dept .col.-main .lvl2Link.-small > a::before {
    top: 10px;
  }
  .l-header .gMenu > .cont .lvl2.-dept .col.-sub {
    padding-left: 50px;
    width: 25%;
  }
  .l-header .gMenu > .cont .lvl2 .viBlock {
    position: relative;
    height: 100%;
  }
  .l-header .gMenu > .cont .lvl2 .viBlock::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 52px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: auto 52px;
  }
  .l-header .gMenu > .cont .lvl2 .viBlock.-dept1::before {
    width: 38px;
    background-image: url(../images/vi_01_colored.svg);
  }
  .l-header .gMenu > .cont .lvl2 .viBlock.-dept2::before {
    width: 41.5px;
    background-image: url(../images/vi_02_colored.svg);
  }
  .l-header .gMenu > .cont .lvl2 .viBlock.-dept3::before {
    width: 62px;
    background-image: url(../images/vi_03_colored.svg);
  }
  .l-header .gMenu > .cont .lvl2 .viBlock.-dept4::before {
    width: 64px;
    background-image: url(../images/vi_04_colored.svg);
  }
  .l-header .gMenu > .cont .lvl2 .viBlock.-dept5::before {
    width: 62.5px;
    background-image: url(../images/vi_05_colored.svg);
  }
  .l-header .gMenu > .cont .lvl2 .viBlock.-dept6::before {
    width: 38.5px;
    height: 33px;
    background-image: url(../images/vi_06_colored.svg);
    background-size: auto 33px;
  }
  .l-header .gMenu > .cont .-active + .lvl2 {
    opacity: 1;
    visibility: visible;
  }
  .l-header .gMenu > .cont .lvl2LinkList > li ~ li {
    margin-top: 30px;
  }
  .l-header .gMenu > .cont .lvl2Link > a {
    display: inline-block;
    position: relative;
    padding-left: 22px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.8;
  }
  .l-header .gMenu > .cont .lvl2Link > a .c-underline {
    padding-bottom: 4px;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
    background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
  }
  .l-header .gMenu > .cont .lvl2Link > a .c-underline > span {
    padding-bottom: inherit;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #00c1f9));
    background-image: linear-gradient(180deg, transparent 95%, #00c1f9 95%);
    background-repeat: no-repeat;
    background-size: 0 100%;
    -webkit-transition: background-size .4s;
    transition: background-size .4s;
  }
  .l-header .gMenu > .cont .lvl2Link > a:hover .c-underline > span {
    background-size: 100% 100%;
  }
  .l-header .gMenu > .cont .lvl2Link > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 17px;
    height: 8px;
    background: url(../images/arw_right.svg) no-repeat;
    background-size: 17px 8px;
  }
  html.-ie11 .l-header .gMenu > .cont .lvl2Link > a::before {
    background-size: 17px 7px;
  }
  .l-header .gMenu > .cont .lvl3 {
    position: relative;
    margin-top: 10px;
    padding-left: 20px;
  }
  .l-header .gMenu > .cont .lvl3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 0;
    width: 2px;
    background-color: #000;
  }
  .l-header .gMenu > .cont .lvl3LinkList > li ~ li {
    margin-top: 7px;
  }
  .l-header .gMenu > .cont .lvl3Link > a {
    display: inline-block;
    position: relative;
    padding-left: 12px;
    font-size: 1.3rem;
    letter-spacing: normal;
    line-height: 1.65;
  }
  .l-header .gMenu > .cont .lvl3Link > a .c-underline {
    padding-bottom: 3px;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
    background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
  }
  .l-header .gMenu > .cont .lvl3Link > a .c-underline > span {
    padding-bottom: inherit;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #00c1f9));
    background-image: linear-gradient(180deg, transparent 95%, #00c1f9 95%);
    background-repeat: no-repeat;
    background-size: 0 100%;
    -webkit-transition: background-size .4s;
    transition: background-size .4s;
  }
  .l-header .gMenu > .cont .lvl3Link > a:hover .c-underline > span {
    background-size: 100% 100%;
  }
  .l-header .gMenu > .cont .lvl3Link > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 4px;
    background: url(../images/arw_right_sm.svg) no-repeat;
    background-size: 7px 4px;
  }
  html.-ie11 .l-header .gMenu > .cont .lvl3Link > a::before {
    background-size: 7px 3px;
  }
  .l-header .gMenu > .cont .lvl3Link > a small {
    font-size: 1.1rem;
  }
  .l-header .gMenu > .cont .lvl4 {
    margin: 3px 0 15px;
  }
  .l-header .gMenu > .cont .otherLinkList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 22px 0;
  }
  .l-header .gMenu > .cont .otherLinkList li ~ li {
    margin-left: 12px;
  }
  .l-header .gMenu > .cont .otherLinkList a {
    display: block;
    position: relative;
    padding-left: 12px;
    color: inherit;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .l-header .gMenu > .cont .otherLinkList a .c-underline {
    padding-bottom: 4px;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
    background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
  }
  .l-header .gMenu > .cont .otherLinkList a .c-underline > span {
    padding-bottom: inherit;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #00c1f9));
    background-image: linear-gradient(180deg, transparent 95%, #00c1f9 95%);
    background-repeat: no-repeat;
    background-size: 0 100%;
    -webkit-transition: background-size .4s;
    transition: background-size .4s;
  }
  .l-header .gMenu > .cont .otherLinkList a:hover .c-underline > span {
    background-size: 100% 100%;
  }
  .l-header .gMenu > .cont .otherLinkList a .c-smArrow {
    position: absolute;
    left: 0;
    top: 9px;
  }
  .l-header .gMenu > .cont .lvl2LinkArea {
    -webkit-transition: height .3s;
    transition: height .3s;
  }
}

.l-header .gMenu > .cont .lvl2Link > a small {
  font-size: 75%;
  font-weight: normal;
}

.l-header .gMenu > .cont .lvl2Link.-new > a {
  padding-right: 60px;
}

.l-header .gMenu > .cont .lvl2Link.-new > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 11px;
  width: 39px;
  height: 13px;
  background: url(../images/txt_new.svg) no-repeat;
  background-size: 39px;
}

.l-header .gMenu > .cont .lvl4List {
  padding-left: 12px;
}

.l-header .gMenu > .cont .lvl4List > li {
  position: relative;
  padding-left: 10px;
  line-height: 1.6;
}

.l-header .gMenu > .cont .lvl4List > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 1px;
  background-color: #000;
}

.l-header .gMenu > .cont .lvl4List > li > a .c-underline {
  padding-bottom: 3px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.l-header .gMenu > .cont .lvl4List > li > a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #00c1f9));
  background-image: linear-gradient(180deg, transparent 95%, #00c1f9 95%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.l-header .gMenu > .cont .lvl4List > li > a:hover .c-underline > span {
  background-size: 100% 100%;
}

.l-header .gMenu > .cont .lvl4List > li .c-underline {
  color: #666;
  font-size: 1.1rem;
}

.l-header .gMenu > .cont .lvl4List > li ~ li {
  margin-top: 3px;
}

.l-header .gMenu > .cont .lvl4List.\-2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -3px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-header .gMenu > .cont .lvl4List.\-2col > li {
  margin-top: 3px;
  padding-right: 10px;
  width: 40%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-header .gMenu > .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 60px;
  background-color: #00c1f9;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.l-header .gMenu > .footer .tgtLinkListSect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-header .gMenu > .footer .tgtLinkListSect__head {
  position: relative;
  padding-right: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

.l-header .gMenu > .footer .tgtLinkListSect__head::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -1px;
  width: 20px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
}

.l-header .gMenu > .footer .tgtLinkListSect__body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.l-header .gMenu > .footer .tgtLinkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -8px 0 0 -30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-header .gMenu > .footer .tgtLinkList li {
  padding: 8px 0 0 30px;
}

.l-header .gMenu > .footer .tgtLinkList a {
  color: inherit;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
}

.l-header .gMenu > .footer .tgtLinkList a .c-underline {
  padding-bottom: 5px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.l-header .gMenu > .footer .tgtLinkList a .c-underline > span {
  padding-bottom: inherit;
  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%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

@media screen and (min-width: 768px) {
  .l-header .gMenu > .footer .tgtLinkList a:hover .c-underline > span {
    background-size: 100% 100%;
  }
}

.l-header .gMenu > .footer .searchForm {
  position: relative;
  padding-left: 30px;
  width: 290px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.l-header .gMenu > .footer .searchForm input[type="text"] {
  border: none;
  border-bottom: 2px solid #fff;
  padding: 0 40px 0 0;
  width: 100%;
  height: 36px;
  background-color: transparent;
  font-size: 1.4rem;
}

.l-header .gMenu > .footer .searchForm input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.l-header .gMenu > .footer .searchForm input[type="text"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.l-header .gMenu > .footer .searchForm input[type="text"]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.l-header .gMenu > .footer .searchForm input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.l-header .gMenu > .footer .searchForm input[type="text"] [data-whatinput="mouse"], .l-header .gMenu > .footer .searchForm input[type="text"]:focus,
.l-header .gMenu > .footer .searchForm input[type="text"] [data-whatinput="touch"], .l-header .gMenu > .footer .searchForm input[type="text"]:focus {
  outline: none;
}

.l-header .gMenu > .footer .searchForm button {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
}

html.-gMenuActive .l-header .gMenu {
  opacity: 1;
  visibility: visible;
  background-color: #fff;
  pointer-events: auto;
}

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

html.-gMenuActive .l-header__overlay {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .l-header > header {
    min-width: 0;
  }
  .l-header__container::before {
    border-width: 4px;
  }
  .l-header__head {
    height: 60px;
    -webkit-box-shadow: 0 1px 1px #eee;
    box-shadow: 0 1px 1px #eee;
    -webkit-transition-property: background-color, -webkit-box-shadow;
    transition-property: background-color, -webkit-box-shadow;
    transition-property: background-color, box-shadow;
    transition-property: background-color, box-shadow, -webkit-box-shadow;
  }
  .l-header__head .logo {
    padding-left: 5.333333333vw;
    width: 142px;
  }
}

@media screen and (max-width: 767px) and (max-width: 350px) {
  .l-header__head .logo {
    width: 120px;
  }
}

@media screen and (max-width: 767px) {
  .l-header__head .btnList li ~ li {
    margin-left: 1px;
  }
  .l-header__head .btnList a,
  .l-header__head .btnList button {
    width: 40px;
    height: 56px;
  }
  .l-header__head .btnList a .text,
  .l-header__head .btnList button .text {
    white-space: nowrap;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  .l-header__head .btnList .linkBtn .icon {
    margin-bottom: 8px;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
  .l-header__head .btnList .linkBtn .text {
    padding-bottom: 2px;
  }
  .l-header__head .btnList .linkBtn .text[lang="en"] {
    margin-top: -1px;
  }
  .l-header__head .btnList .gMenuBtn .icon {
    margin: 10px auto 16px;
    width: 20px;
  }
  .l-header__head .btnList .gMenuBtn .icon > span {
    width: 14px;
  }
  .l-header__head .btnList .gMenuBtn .icon > span::before {
    margin-bottom: 4px;
  }
  .l-header__head .btnList .gMenuBtn .icon > span::after {
    margin-top: 4px;
    width: 8px;
  }
  .l-header.-transparent .l-header__head {
    -webkit-box-shadow: 0 1px 1px transparent;
    box-shadow: 0 1px 1px transparent;
  }
  .l-header .gMenu {
    -webkit-box-shadow: inset 0 1px 1px #eee;
    box-shadow: inset 0 1px 1px #eee;
  }
  .l-header .gMenu > .cont .textBtnList {
    padding: 9px 0 18px;
  }
  .l-header .gMenu > .cont .textBtnList > li ~ li {
    margin-top: 8px;
  }
  .l-header .gMenu > .cont .textBtnList .c-textBtn > span > span {
    padding: 12px 30px 12px 40px;
  }
  .l-header .gMenu > .cont .textBtnList .c-textBtn .c-figureIcon,
  .l-header .gMenu > .cont .textBtnList .c-textBtn .c-docIcon {
    margin-top: -10px;
  }
  .l-header .gMenu > .cont .accordionBtn {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .l-header .gMenu > .cont .lvl1LinkList {
    padding: 12px 0 32px;
  }
  .l-header .gMenu > .cont .lvl1Link {
    position: relative;
    border-bottom: 1px solid #000;
  }
  .l-header .gMenu > .cont .lvl1Link > a {
    display: block;
    padding: 17px 40px 17px 8px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.4;
  }
  .l-header .gMenu > .cont .lvl1Link .accordionBtn > span {
    position: absolute;
    right: 8px;
    top: 50%;
    margin-top: -8px;
    width: 16px;
    height: 16px;
  }
  .l-header .gMenu > .cont .lvl1Link .accordionBtn > span::before, .l-header .gMenu > .cont .lvl1Link .accordionBtn > span::after {
    content: "";
    position: absolute;
    background-color: #000;
  }
  .l-header .gMenu > .cont .lvl1Link .accordionBtn > span::before {
    left: 0;
    top: 50%;
    margin-top: -1px;
    width: 100%;
    height: 2px;
  }
  .l-header .gMenu > .cont .lvl1Link .accordionBtn > span::after {
    left: 50%;
    top: 0;
    margin-left: -1px;
    width: 2px;
    height: 100%;
  }
  .l-header .gMenu > .cont .lvl1Link .accordionBtn.-active > span::after {
    content: none;
  }
  .l-header .gMenu > .cont .lvl2 {
    display: none;
  }
  .l-header .gMenu > .cont .lvl2Link {
    position: relative;
    border-bottom: 1px solid #ccc;
  }
  .l-header .gMenu > .cont .lvl2Link > a {
    display: block;
    padding: 12px 40px 12px 8px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .l-header .gMenu > .cont .lvl2Link > a::before {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    margin-top: -3px;
    width: 12px;
    height: 6px;
    background: url(../images/arw_right.svg) no-repeat;
    background-size: 12px 6px;
  }
  .l-header .gMenu > .cont .lvl2Link > a small {
    font-size: 86%;
  }
  .l-header .gMenu > .cont .lvl2Link .accordionBtn > span {
    position: absolute;
    right: 8px;
    top: 50%;
    margin-top: -5.5px;
    width: 11px;
    height: 11px;
  }
  .l-header .gMenu > .cont .lvl2Link .accordionBtn > span::before, .l-header .gMenu > .cont .lvl2Link .accordionBtn > span::after {
    content: "";
    position: absolute;
    background-color: #000;
  }
  .l-header .gMenu > .cont .lvl2Link .accordionBtn > span::before {
    left: 0;
    top: 50%;
    margin-top: -0.5px;
    width: 100%;
    height: 1px;
  }
  .l-header .gMenu > .cont .lvl2Link .accordionBtn > span::after {
    left: 50%;
    top: 0;
    margin-left: -0.5px;
    width: 1px;
    height: 100%;
  }
  .l-header .gMenu > .cont .lvl2Link .accordionBtn.-active > span::after {
    content: none;
  }
  .l-header .gMenu > .cont .lvl2Link.-new > a {
    padding-right: 90px;
  }
  .l-header .gMenu > .cont .lvl2Link.-new > a::after {
    right: 40px;
    top: 50%;
    margin-top: -6px;
  }
  .l-header .gMenu > .cont .lvl2Link.-hasChild > a::before {
    content: none;
  }
  .l-header .gMenu > .cont .lvl2Link.-topLink > a::after {
    content: "TOPへ";
    margin-left: .5em;
  }
  .l-header .gMenu > .cont .lvl3 {
    display: none;
    border-left: 1px solid #000;
    background-color: #f8f8f8;
  }
  .l-header .gMenu > .cont .lvl3LinkList {
    padding: 16px 20px 20px;
  }
  .l-header .gMenu > .cont .lvl3LinkList > li ~ li {
    margin-top: 18px;
  }
  .l-header .gMenu > .cont .lvl3Link > a {
    display: inline-block;
    position: relative;
    padding-left: 13px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .l-header .gMenu > .cont .lvl3Link > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 4px;
    background: url(../images/arw_right_sm.svg) no-repeat;
    background-size: 8px 4px;
  }
  html.-ie11 .l-header .gMenu > .cont .lvl3Link > a::before {
    background-size: 8px 3px;
  }
  .l-header .gMenu > .cont .lvl3Link > a small {
    font-size: 1.2rem;
  }
  .l-header .gMenu > .cont .lvl3Link.-topLink > a::after {
    content: "TOPへ";
    margin-left: .5em;
  }
  .l-header .gMenu > .cont .lvl4 {
    margin-top: 9px;
  }
  .l-header .gMenu > .cont .lvl4List > li .c-underline {
    font-size: 1.2rem;
  }
  .l-header .gMenu > .cont .lvl4List > li ~ li {
    margin-top: 2px;
  }
  .l-header .gMenu > .cont .lvl4List.\-2col {
    margin-top: -2px;
  }
  .l-header .gMenu > .cont .lvl4List.\-2col > li {
    margin-top: 2px;
    width: 48%;
  }
  .l-header .gMenu > .cont .lvl2LinkArea {
    height: 0 !important;
  }
  .l-header .gMenu > .footer {
    display: block;
    padding: 20px 5.333333333vw 0;
  }
  .l-header .gMenu > .footer .tgtLinkListSect {
    display: block;
  }
  .l-header .gMenu > .footer .tgtLinkListSect__head {
    padding-right: 0;
    text-align: center;
    font-size: 1.2rem;
  }
  .l-header .gMenu > .footer .tgtLinkListSect__head::before {
    content: none;
  }
  .l-header .gMenu > .footer .tgtLinkListSect__body {
    padding: 7px 0 30px;
  }
  .l-header .gMenu > .footer .tgtLinkList {
    margin: -12px 0 0 -30px;
  }
  .l-header .gMenu > .footer .tgtLinkList li {
    padding: 12px 0 0 30px;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .l-header .gMenu > .footer .tgtLinkList a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #fff;
    padding: 6px 0 2px;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 1.4;
  }
  .l-header .gMenu > .footer .utilSect {
    margin: 0 -5.333333333vw;
    padding: 20px 5.333333333vw 30px;
    background-color: #fff;
    color: #000;
  }
  .l-header .gMenu > .footer .otherLinkList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: -12px 0 0 -30px;
    padding-bottom: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-header .gMenu > .footer .otherLinkList::before {
    content: "";
    position: absolute;
    left: 30px;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #ccc;
  }
  .l-header .gMenu > .footer .otherLinkList li {
    padding: 12px 0 0 30px;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .l-header .gMenu > .footer .otherLinkList a {
    display: block;
    position: relative;
    padding-left: 14px;
    color: inherit;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .l-header .gMenu > .footer .otherLinkList a .c-arrow {
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
  }
  .l-header .gMenu > .footer .searchForm {
    margin-top: 25px;
    padding-left: 0;
    width: auto;
  }
  .l-header .gMenu > .footer .searchForm input[type="text"] {
    border-bottom-color: #00c1f9;
    padding: 0 45px 0 18px;
    height: 40px;
  }
  .l-header .gMenu > .footer .searchForm input[type="text"]::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.6);
  }
  .l-header .gMenu > .footer .searchForm input[type="text"]::-moz-placeholder {
    color: rgba(0, 0, 0, 0.6);
  }
  .l-header .gMenu > .footer .searchForm input[type="text"]::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.6);
  }
  .l-header .gMenu > .footer .searchForm input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.6);
  }
  .l-header .gMenu > .footer .searchForm button {
    padding-right: 10px;
  }
  .l-header .gMenu > .footer .searchForm button svg ellipse,
  .l-header .gMenu > .footer .searchForm button svg line {
    stroke: #00c1f9;
  }
}

/**
 * Footer
 */
.l-footer {
  margin-top: 152px;
  padding: 50px 0 60px;
  background-color: #aae5ff;
}

@media print {
  .l-footer {
    display: none;
  }
}

.l-footer .funcArea {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 27px;
  bottom: 27px;
  z-index: 10;
  text-align: right;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

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

html.-gMenuActive .l-footer .funcArea {
  display: none;
}

.l-footer .qBalloon {
  position: relative;
  margin: 25px 0 8px;
  border: 2px solid #000;
  border-radius: 10px 10px 0 10px;
  padding: 4px;
  width: 166px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  text-align: left;
  -webkit-transition-property: margin, border-color, padding, width;
  transition-property: margin, border-color, padding, width;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

@media screen and (min-width: 768px) {
  .l-footer .qBalloon:hover {
    border-color: #1dc5ff;
  }
}

.l-footer .qBalloon.-active {
  margin-bottom: 9px;
  padding: 15px 20px 40px;
  width: 374px;
}

.l-footer .qBalloon.-active:hover {
  border-color: #000;
}

.l-footer .qBalloon__hdg {
  position: relative;
}

.l-footer .qBalloon__hdg > span {
  display: block;
}

.l-footer .qBalloon__hdg > span[lang="en"] {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .07em;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

.l-footer .qBalloon__hdg > span[lang="ja"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  border-bottom: 1px solid #e8e9ec;
  padding-bottom: 9px;
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  white-space: nowrap;
}

.l-footer .qBalloon.-active .qBalloon__hdg > span[lang="en"] {
  opacity: 0;
}

.l-footer .qBalloon.-active .qBalloon__hdg > span[lang="ja"] {
  opacity: 1;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

.l-footer .qBalloon__body {
  display: none;
}

.l-footer .qBalloon .qList {
  opacity: 0;
  padding-top: 30px;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

.l-footer .qBalloon .qList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-footer .qBalloon .qList li ~ li {
  margin-top: 20px;
}

.l-footer .qBalloon .qList .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 2px solid #1dc5ff;
  padding: 0 0 6px 6px;
  width: 41px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1dc5ff;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}

.l-footer .qBalloon .qList .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 18px;
  min-height: 44px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-footer .qBalloon .qList a {
  color: inherit;
  font-size: 1.4rem;
  letter-spacing: normal;
  line-height: 1.7;
}

.l-footer .qBalloon .qList a .c-underline {
  padding-bottom: 3px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.l-footer .qBalloon .qList a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #1dc5ff));
  background-image: linear-gradient(180deg, transparent 95%, #1dc5ff 95%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.l-footer .qBalloon .qList a:hover .c-underline > span {
  background-size: 100% 100%;
}

.l-footer .qBalloon.-active .qList {
  opacity: 1;
}

.l-footer .qBalloon button {
  position: absolute;
  left: 100%;
  bottom: 100%;
  z-index: 1;
  margin: 0 0 -16px -16px;
  border: 2px solid #1dc5ff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background-color: #1dc5ff;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.l-footer .qBalloon button > span {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.l-footer .qBalloon button > span.close {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
}

.l-footer .qBalloon button > span.close::before, .l-footer .qBalloon button > span.close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background-color: currentColor;
}

.l-footer .qBalloon button > span.close::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.l-footer .qBalloon button > span.close::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .l-footer .qBalloon:hover:not(.-active) button {
    background-color: #fff;
    color: #1dc5ff;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
  }
}

.l-footer .qBalloon.-active button > span.q {
  opacity: 0;
}

.l-footer .qBalloon.-active button > span.close {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .l-footer .qBalloon.-active button:hover {
    background-color: #fff;
    color: #1dc5ff;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
  }
}

.l-footer .qBalloon__tip {
  position: absolute;
  left: 100%;
  bottom: 7px;
  width: 22px;
  height: 22px;
}

.l-footer .qBalloon__tip::before, .l-footer .qBalloon__tip::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-color: transparent;
  border-style: solid;
}

.l-footer .qBalloon__tip::before {
  border-width: 5px;
  border-bottom-color: #000;
  border-left-color: #000;
  -webkit-transition: border-color .4s;
  transition: border-color .4s;
}

.l-footer .qBalloon__tip::after {
  border-width: 4px;
  border-bottom-color: #fff;
  border-left-color: #fff;
}

@media screen and (min-width: 768px) {
  .l-footer .qBalloon:hover .qBalloon__tip::before {
    border-bottom-color: #1dc5ff;
    border-left-color: #1dc5ff;
  }
}

.l-footer .qBalloon.-active .qBalloon__tip::before {
  border-bottom-color: #000;
  border-left-color: #000;
}

.l-footer .qBalloon__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
}

.l-footer .qBalloon.-active .qBalloon__overlay {
  pointer-events: none;
}

.l-footer .backToTopBtn {
  display: inline-block;
  text-align: center;
  color: inherit;
}

.l-footer .backToTopBtn .arrow svg {
  margin-left: 8px;
}

.l-footer .backToTopBtn .text {
  display: block;
  margin-top: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .05em;
}

@media screen and (min-width: 768px) {
  .l-footer .backToTopBtn:hover .arrow path {
    stroke: #1dc5ff;
  }
}

.l-footer .addressArea {
  margin-bottom: 26px;
  width: 360px;
}

.l-footer .addressArea .name {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: .05em;
}

.l-footer .addressArea address {
  font-size: 1.6rem;
  letter-spacing: .05em;
  line-height: 1.75;
}

.l-footer .linkListArea {
  position: relative;
  padding-right: 180px;
}

.l-footer .linkListArea .linkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-footer .linkListArea .linkList li {
  padding-left: 20px;
}

.l-footer .linkListArea .linkList a {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  color: inherit;
  font-size: 1.4rem;
  letter-spacing: .05em;
}

.l-footer .linkListArea .linkList a .c-underline {
  padding-bottom: 5px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.l-footer .linkListArea .linkList a .c-underline > span {
  padding-bottom: inherit;
  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%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.l-footer .linkListArea .linkList a:hover .c-underline > span {
  background-size: 100% 100%;
}

.l-footer .linkListArea .linkList a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 17px;
  height: 8px;
  background: url(../images/arw_right.svg) no-repeat;
  background-size: 17px 8px;
}

html.-ie11 .l-footer .linkListArea .linkList a::before {
  background-size: 17px 7px;
}

.l-footer .linkListArea .navLinkListArea {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 21px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 10px 0;
}

.l-footer .linkListArea .navLinkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-footer .linkListArea .navLinkList li:not(:first-child) {
  margin-left: 28px;
}

.l-footer .linkListArea .navLinkList a {
  color: inherit;
  font-size: 1.6rem;
  font-weight: bold;
}

.l-footer .linkListArea .navLinkList a .c-underline {
  padding-bottom: 18px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(94%, transparent));
  background-image: linear-gradient(180deg, transparent 94%, transparent 94%);
}

.l-footer .linkListArea .navLinkList a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(94%, currentColor));
  background-image: linear-gradient(180deg, transparent 94%, currentColor 94%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.l-footer .linkListArea .navLinkList a:hover .c-underline > span {
  background-size: 100% 100%;
}

.l-footer .linkListArea .copyright {
  position: absolute;
  right: 0;
  bottom: 3px;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .l-footer {
    position: relative;
    margin-top: 95px;
    padding: 30px 0 35px;
  }
  .l-footer .funcArea {
    right: 3.5vw;
    bottom: 20px;
  }
  .l-footer .funcArea.-abs {
    position: absolute;
    bottom: 100%;
    margin-bottom: 20px;
    -webkit-transform: none !important;
    transform: none !important;
  }
  .l-footer .qBalloon {
    margin: 20px calc(6.4vw - 3.5vw) 6px 0;
  }
  .l-footer .qBalloon.-active {
    width: calc(100vw - 12.8vw);
  }
  .l-footer .qBalloon .qList .body {
    padding-left: 9px;
  }
  .l-footer .qBalloon .qList a {
    font-size: 1.2rem;
  }
  .l-footer .backToTopBtn .arrow svg {
    margin-left: 6px;
  }
  .l-footer .backToTopBtn .text {
    margin-top: -1px;
    font-size: 1rem;
  }
  .l-footer .addressArea {
    margin-bottom: 15px;
    width: auto;
  }
  .l-footer .addressArea .name {
    margin-bottom: 0;
  }
  .l-footer .addressArea address {
    font-size: 1.2rem;
    line-height: 2;
  }
  .l-footer .linkListArea {
    padding-right: 0;
  }
  .l-footer .linkListArea .linkList {
    margin: -8px 0 0 -10px;
  }
  .l-footer .linkListArea .linkList li {
    padding: 8px 0 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .l-footer .linkListArea .linkList a {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .l-footer .linkListArea .linkList a::before {
    top: 4px;
  }
  .l-footer .linkListArea .navLinkListArea {
    position: static;
    margin: 25px 0 32px;
    padding: 14px 0;
  }
  .l-footer .linkListArea .navLinkList {
    margin: -10px 0 0 -5px;
  }
  .l-footer .linkListArea .navLinkList li {
    padding: 10px 0 0 5px;
    width: 33.333%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.4;
  }
  .l-footer .linkListArea .navLinkList li:not(:first-child) {
    margin-left: 0;
  }
  .l-footer .linkListArea .navLinkList a {
    font-size: 1.2rem;
  }
  .l-footer .linkListArea .navLinkList a .c-underline {
    padding-bottom: 5px;
  }
  .l-footer .linkListArea .copyright {
    position: static;
    text-align: center;
  }
}

/**
 * Wrapper
 */
.l-wrapper {
  padding-top: 100px;
  overflow: hidden;
}

html.-gMenuActive .l-wrapper {
  max-height: 100vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: visible;
}

html.-gMenuActive .l-wrapper__container {
  position: absolute;
  padding-top: 100px;
  width: 100%;
  min-width: 1160px;
  max-height: calc(100vh - 100px);
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .l-wrapper {
    padding-top: 60px;
  }
  html.-gMenuActive .l-wrapper__container {
    padding-top: 60px;
    min-width: 0;
    max-height: calc(100vh - 60px);
  }
}

/**
 * Contents
 */
.l-contents__container + .l-contents__container {
  height: 0;
  overflow: hidden;
}

/**
 * Page
 */
/* トップページ */
.pg-top .mainVisual {
  position: relative;
  margin: -100px 0 107px;
}

.pg-top .mainVisual canvas {
  display: block;
  width: 100%;
  height: auto;
}

.pg-top .mainVisual__image {
  display: none;
}

.pg-top .mainVisual__copy {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 58px 60px 68px;
  color: #1dc5ff;
  font-size: 4.5rem;
  font-weight: bold;
  letter-spacing: .07em;
  line-height: 1.2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

.pg-top .mainVisual__copy .text {
  display: block;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.pg-top .mainVisual__copy .click {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  z-index: 1;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .1em;
}

.pg-top .mainVisual__copy .click::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 13px;
  height: 13px;
  background: url(../images/icon_plus.svg);
  background-size: 13px 13px;
  vertical-align: -1px;
}

.pg-top .mainVisual__copy .bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 20px 0 20px;
  background-color: #fff;
  -webkit-transition-property: left, right, top, bottom;
  transition-property: left, right, top, bottom;
  -webkit-transition-duration: .35s;
  transition-duration: .35s;
}

.pg-top .mainVisual__copy .bg::before, .pg-top .mainVisual__copy .bg::after {
  content: "";
  position: absolute;
  border-color: #1dc5ff;
  border-width: 8px;
  width: 33px;
  height: 33px;
}

.pg-top .mainVisual__copy .bg::before {
  left: 0;
  top: 0;
  border-top-style: solid;
  border-left-style: solid;
}

.pg-top .mainVisual__copy .bg::after {
  right: 0;
  bottom: 0;
  border-right-style: solid;
  border-bottom-style: solid;
}

[data-whatintent="mouse"] .pg-top .mainVisual__copy:hover .bg {
  left: 26px;
  right: 26px;
  top: 35px;
  bottom: 25px;
}

@media screen and (min-width: 768px) {
  .pg-top .mainVisual.-canvasAlpha1 .mainVisual__copy {
    opacity: 1;
    visibility: visible;
  }
}

.pg-top .mainVisual .modalCont {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  padding: calc(100px + 3.660322108vw) 60px 25px;
  background: #1dc5ff url(../images/img_pat_01.png);
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

@media screen and (max-width: 1160px) {
  .pg-top .mainVisual .modalCont {
    padding-top: calc(100px + 42.5px);
  }
}

.pg-top .mainVisual .modalCont .head {
  display: inline-block;
  position: relative;
  margin-left: -60px;
  border-radius: 0 15px 15px 0;
  padding: 3px 33px 3px 60px;
  background-color: #fff;
}

.pg-top .mainVisual .modalCont .head .enHdg {
  position: absolute;
  bottom: 100%;
  border-radius: 10px 10px 0 0;
  padding: 0 8px 0 10px;
  background-color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 1.4;
}

.pg-top .mainVisual .modalCont .head .hdg {
  display: inline-block;
  font-size: 2.562225476vw;
  font-weight: bold;
}

@media screen and (max-width: 1160px) {
  .pg-top .mainVisual .modalCont .head .hdg {
    font-size: 2.97218rem;
  }
}

.pg-top .mainVisual .modalCont .head .listLink {
  display: inline-block;
  margin-left: 15px;
  vertical-align: 4px;
}

.pg-top .mainVisual .modalCont .head .listLink a {
  color: inherit;
  font-size: 1.75rem;
  font-weight: bold;
}

.pg-top .mainVisual .modalCont .head .listLink a .c-underline {
  padding-bottom: 5px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(90%, transparent));
  background-image: linear-gradient(180deg, transparent 90%, transparent 90%);
}

.pg-top .mainVisual .modalCont .head .listLink a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(90%, #1dc5ff));
  background-image: linear-gradient(180deg, transparent 90%, #1dc5ff 90%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.pg-top .mainVisual .modalCont .head .listLink a:hover .c-underline > span {
  background-size: 100% 100%;
}

.pg-top .mainVisual .modalCont .head .listLink a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 22px;
  height: 10px;
  background: url(../images/arw_right.svg) no-repeat;
  background-size: 100%;
  vertical-align: 2px;
}

.pg-top .mainVisual .modalCont .body {
  padding-top: 3.074670571vw;
}

@media screen and (max-width: 1160px) {
  .pg-top .mainVisual .modalCont .body {
    padding-top: 35.5px;
  }
}

.pg-top .mainVisual .modalCont .balloonList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -2.415812592vw 0 0 -2.415812592vw;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1160px) {
  .pg-top .mainVisual .modalCont .balloonList {
    margin: -28px 0 0 -28px;
  }
}

.pg-top .mainVisual .modalCont .balloonList li {
  padding: 2.415812592vw 0 0 2.415812592vw;
}

@media screen and (max-width: 1160px) {
  .pg-top .mainVisual .modalCont .balloonList li {
    padding: 28px 0 0 28px;
  }
}

.pg-top .mainVisual .modalCont .balloonList a {
  display: block;
  position: relative;
  border: 2px solid #fff;
  border-radius: 0 10px 10px 10px;
  padding: 5px 15px;
  background-color: #1dc5ff;
  color: #fff;
  font-size: 2.928257687vw;
  font-weight: bold;
}

.pg-top .mainVisual .modalCont .balloonList a .c-underline {
  padding-bottom: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.pg-top .mainVisual .modalCont .balloonList a .c-underline > span {
  padding-bottom: inherit;
  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%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

@media screen and (min-width: 768px) {
  .pg-top .mainVisual .modalCont .balloonList a:hover .c-underline > span {
    background-size: 100% 100%;
  }
}

@media screen and (max-width: 1160px) {
  .pg-top .mainVisual .modalCont .balloonList a {
    font-size: 3.39678rem;
  }
}

.pg-top .mainVisual .modalCont .balloonList a::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 20px;
  background-color: #1dc5ff;
}

.pg-top .mainVisual .modalCont .balloonList .tip {
  position: absolute;
  width: 22px;
  height: 22px;
}

.pg-top .mainVisual .modalCont .balloonList .tip::before, .pg-top .mainVisual .modalCont .balloonList .tip::after {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
  border-width: 11px;
}

.pg-top .mainVisual .modalCont .balloonList .tip::after {
  border-width: 9px;
}

.pg-top .mainVisual .modalCont .balloonList .-l5p .tip {
  left: 5%;
}

.pg-top .mainVisual .modalCont .balloonList .-l10p .tip {
  left: 10%;
}

.pg-top .mainVisual .modalCont .balloonList .-l15p .tip {
  left: 15%;
}

.pg-top .mainVisual .modalCont .balloonList .-l20p .tip {
  left: 20%;
}

.pg-top .mainVisual .modalCont .balloonList .-l25p .tip {
  left: 25%;
}

.pg-top .mainVisual .modalCont .balloonList .-l30p .tip {
  left: 30%;
}

.pg-top .mainVisual .modalCont .balloonList .-l35p .tip {
  left: 35%;
}

.pg-top .mainVisual .modalCont .balloonList .-l40p .tip {
  left: 40%;
}

.pg-top .mainVisual .modalCont .balloonList .-l45p .tip {
  left: 45%;
}

.pg-top .mainVisual .modalCont .balloonList .-l50p .tip {
  left: 50%;
}

.pg-top .mainVisual .modalCont .balloonList .-l55p .tip {
  left: 55%;
}

.pg-top .mainVisual .modalCont .balloonList .-l60p .tip {
  left: 60%;
}

.pg-top .mainVisual .modalCont .balloonList .-l65p .tip {
  left: 65%;
}

.pg-top .mainVisual .modalCont .balloonList .-l70p .tip {
  left: 70%;
}

.pg-top .mainVisual .modalCont .balloonList .-l75p .tip {
  left: 75%;
}

.pg-top .mainVisual .modalCont .balloonList .-l80p .tip {
  left: 80%;
}

.pg-top .mainVisual .modalCont .balloonList .-l85p .tip {
  left: 85%;
}

.pg-top .mainVisual .modalCont .balloonList .-l90p .tip {
  left: 90%;
}

.pg-top .mainVisual .modalCont .balloonList .-l95p .tip {
  left: 95%;
}

.pg-top .mainVisual .modalCont .balloonList .-t10p .tip {
  top: 10%;
}

.pg-top .mainVisual .modalCont .balloonList .-t20p .tip {
  top: 20%;
}

.pg-top .mainVisual .modalCont .balloonList .-t30p .tip {
  top: 30%;
}

.pg-top .mainVisual .modalCont .balloonList .-t40p .tip {
  top: 40%;
}

.pg-top .mainVisual .modalCont .balloonList .-t50p .tip {
  top: 50%;
}

.pg-top .mainVisual .modalCont .balloonList .-t60p .tip {
  top: 60%;
}

.pg-top .mainVisual .modalCont .balloonList .-t70p .tip {
  top: 70%;
}

.pg-top .mainVisual .modalCont .balloonList .-t80p .tip {
  top: 80%;
}

.pg-top .mainVisual .modalCont .balloonList .-t90p .tip {
  top: 90%;
}

.pg-top .mainVisual .modalCont .balloonList .topTip .tip {
  bottom: 100%;
}

.pg-top .mainVisual .modalCont .balloonList .topTip .tip::before {
  border-right-color: #fff;
  border-bottom-color: #fff;
}

.pg-top .mainVisual .modalCont .balloonList .topTip .tip::after {
  left: 2px;
  bottom: -1px;
  border-right-color: #1dc5ff;
  border-bottom-color: #1dc5ff;
}

.pg-top .mainVisual .modalCont .balloonList .btmTip .tip {
  top: 100%;
}

.pg-top .mainVisual .modalCont .balloonList .btmTip .tip::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.pg-top .mainVisual .modalCont .balloonList .btmTip .tip::after {
  left: 2px;
  top: -1px;
  border-top-color: #1dc5ff;
  border-right-color: #1dc5ff;
}

.pg-top .mainVisual .modalCont .balloonList .rightTip .tip {
  left: 100%;
}

.pg-top .mainVisual .modalCont .balloonList .rightTip .tip::before {
  border-top-color: #fff;
  border-left-color: #fff;
}

.pg-top .mainVisual .modalCont .balloonList .rightTip .tip::after {
  left: -1px;
  top: 2px;
  border-top-color: #1dc5ff;
  border-left-color: #1dc5ff;
}

.pg-top .mainVisual .modalCont .modalCloseBtn {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin: 0 0 -19px -19px;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  background-color: #1dc5ff;
}

.pg-top .mainVisual .modalCont .modalCloseBtn::before, .pg-top .mainVisual .modalCont .modalCloseBtn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -12px 0 0 -.5px;
  width: 1px;
  height: 24px;
  background-color: #fff;
}

.pg-top .mainVisual .modalCont .modalCloseBtn::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pg-top .mainVisual .modalCont .modalCloseBtn::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pg-top .mainVisual .modalCont.-active {
  opacity: 1;
  visibility: visible;
}

.pg-top .mainVisual .infoDiv {
  opacity: 0;
  visibility: hidden;
  text-align: center;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-delay: .8s;
  transition-delay: .8s;
}

.pg-top .mainVisual .infoDiv .openCampus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: calc(50% - (1366px / 2) + 55px);
  top: 50%;
  border: 3px solid #000;
  width: 290px;
  height: 290px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.67);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: inherit;
  font-weight: bold;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
}

@media screen and (max-width: 1256px) {
  .pg-top .mainVisual .infoDiv .openCampus {
    right: 0;
  }
}

.pg-top .mainVisual .infoDiv .openCampus .hdg {
  font-size: 3.3rem;
  letter-spacing: .07em;
  line-height: 1.272727273;
}

.pg-top .mainVisual .infoDiv .openCampus .date {
  display: block;
  padding-bottom: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 7.7rem;
  letter-spacing: .05em;
  line-height: 1.1;
}

.pg-top .mainVisual .infoDiv .openCampus .date.-span {
  font-size: 6rem;
}

.pg-top .mainVisual .infoDiv .openCampus .detail {
  font-size: 2.5rem;
  letter-spacing: .07em;
  line-height: 1.32;
}

.pg-top .mainVisual .infoDiv .openCampus:hover {
  border-color: #1dc5ff;
}

.pg-top .mainVisual .infoDiv .newsArea {
  position: absolute;
  right: 0;
  bottom: 35px;
  border: 3px solid #1dc5ff;
  border-right: none;
  border-radius: 15px 0 0 15px;
  padding: 16px 90px 16px 18px;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.pg-top .mainVisual .infoDiv .newsList {
  height: 30px;
}

.pg-top .mainVisual .infoDiv .newsList a {
  color: inherit;
}

.pg-top .mainVisual .infoDiv .newsList a .c-underline {
  padding-bottom: 5px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.pg-top .mainVisual .infoDiv .newsList a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #1dc5ff));
  background-image: linear-gradient(180deg, transparent 95%, #1dc5ff 95%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.pg-top .mainVisual .infoDiv .newsList a:hover .c-underline > span {
  background-size: 100% 100%;
}

.pg-top .mainVisual .infoDiv .newsList .title {
  max-width: 600px;
  overflow: hidden;
  font-size: 1.4rem;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pg-top .mainVisual .infoDiv .newsNav {
  position: absolute;
  right: 55px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pg-top .mainVisual .infoDiv .newsNav.-disabled {
  visibility: hidden;
}

.pg-top .mainVisual .infoDiv .newsNav > button {
  display: block;
}

.pg-top .mainVisual .infoDiv .newsNav > button > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 20px;
  height: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pg-top .mainVisual .infoDiv .newsNav > button > span::before {
  content: "";
  display: inline-block;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

[data-whatintent="mouse"] .pg-top .mainVisual .infoDiv .newsNav > button:hover > span::before {
  border-color: #1dc5ff;
}

.pg-top .mainVisual .infoDiv .newsNav > button.swiper-btn-next > span::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pg-top .mainVisual .infoDiv .newsNav > button[aria-disabled="true"] > span {
  cursor: auto;
}

.pg-top .mainVisual .infoDiv .newsNav > button[aria-disabled="true"] > span::before {
  border-color: #bbb;
}

@media screen and (min-width: 768px) {
  .pg-top .mainVisual.-canvasAlpha1 .infoDiv {
    opacity: 1;
    visibility: visible;
  }
}

.pg-top .mainVisual__loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.pg-top .mainVisual__loader > div {
  position: relative;
  border-radius: 50%;
  border-color: rgba(29, 197, 255, 0.2);
  border-style: solid;
  border-width: 1.1em;
  border-left-color: #1dc5ff;
  width: 10em;
  height: 10em;
  -webkit-animation: rotate 1.1s infinite linear;
  animation: rotate 1.1s infinite linear;
}

.pg-top .mainVisual__loader > div::after {
  content: "";
  border-radius: inherit;
  width: inherit;
  height: inherit;
}

.pg-top .mainVisual__loader.-hidden {
  opacity: 0;
}

.pg-top main {
  position: relative;
}

.pg-top main > [class*="bg"] {
  position: absolute;
  left: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
}

.pg-top main > [class*="bg"].bg1 {
  top: 180px;
  z-index: -1;
  margin-left: -640px;
  width: 1409px;
  height: 2393px;
  background-image: url(../images/img_vis_01.png);
}

.pg-top main > [class*="bg"].bg2 {
  top: 380px;
  z-index: -2;
  margin-left: -610px;
  width: 1415px;
  height: 1786px;
  background-image: url(../images/img_vis_02.png);
}

.pg-top .infoArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 150px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pg-top .infoArea .p-newsSect {
  width: 846px;
}

.pg-top .infoArea .p-newsSect__list article {
  padding-left: 15px;
}

.pg-top .infoArea .snsSect {
  position: relative;
  width: 194px;
}

.pg-top .infoArea .snsSect::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #c1c1c1;
}

.pg-top .infoArea .snsSect__hdg {
  border-bottom: 1px solid #c1c1c1;
  padding: 8px 0 16px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.2;
}

.pg-top .infoArea .snsSect__list {
  padding: 25px 10px 15px;
}

.pg-top .infoArea .snsSect__list li ~ li {
  margin-top: 13px;
}

.pg-top .infoArea .snsSect__list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: inherit;
}

[data-whatintent="mouse"] .pg-top .infoArea .snsSect__list a:hover {
  color: #1dc5ff;
}

.pg-top .infoArea .snsSect__list .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 12px;
  width: 25px;
  height: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pg-top .infoArea .snsSect__list .text {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.pg-top .deptLinkSect__hdg {
  margin-bottom: -.75em;
  overflow: hidden;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.5;
}

.pg-top .deptLinkSect__hdg > span {
  display: inline-block;
  position: relative;
}

.pg-top .deptLinkSect__hdg > span::before, .pg-top .deptLinkSect__hdg > span::after {
  content: "";
  position: absolute;
  bottom: .75em;
  width: 540px;
  height: 3px;
  background-color: #000;
}

.pg-top .deptLinkSect__hdg > span::before {
  right: 100%;
  margin-right: 22px;
}

.pg-top .deptLinkSect__hdg > span::after {
  left: 100%;
  margin-left: 8px;
}

.pg-top .deptLinkSect__body {
  border-bottom: 3px solid #000;
  padding: 46px 80px;
  background: url(../images/img_pat_01.png);
}

.pg-top .deptLinkSect__body .deptLinkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pg-top .deptLinkSect__body .deptLinkList li {
  padding-top: 70px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.pg-top .deptLinkSect__body .deptLinkList li.-new {
  position: relative;
}

.pg-top .deptLinkSect__body .deptLinkList li.-new::before {
  content: "NEW";
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -35px;
  width: 70px;
  height: 22px;
  background: url(../images/txt_new_lg.svg) no-repeat;
  background-size: 70px 22px;
  font-size: 0;
}

.pg-top .deptLinkSect__body .deptLinkList a {
  display: inline-block;
  vertical-align: top;
  color: inherit;
}

.pg-top .deptLinkSect__body .deptLinkList li.dept1 a .c-underline {
  padding-bottom: 15px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(94%, transparent));
  background-image: linear-gradient(180deg, transparent 94%, transparent 94%);
}

.pg-top .deptLinkSect__body .deptLinkList li.dept1 a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(94%, #355cfc));
  background-image: linear-gradient(180deg, transparent 94%, #355cfc 94%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.pg-top .deptLinkSect__body .deptLinkList li.dept1 a:hover .c-underline > span {
  background-size: 100% 100%;
}

.pg-top .deptLinkSect__body .deptLinkList li.dept2 a .c-underline {
  padding-bottom: 15px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(94%, transparent));
  background-image: linear-gradient(180deg, transparent 94%, transparent 94%);
}

.pg-top .deptLinkSect__body .deptLinkList li.dept2 a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(94%, #ff5b7f));
  background-image: linear-gradient(180deg, transparent 94%, #ff5b7f 94%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.pg-top .deptLinkSect__body .deptLinkList li.dept2 a:hover .c-underline > span {
  background-size: 100% 100%;
}

.pg-top .deptLinkSect__body .deptLinkList li.dept3 a .c-underline {
  padding-bottom: 15px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(94%, transparent));
  background-image: linear-gradient(180deg, transparent 94%, transparent 94%);
}

.pg-top .deptLinkSect__body .deptLinkList li.dept3 a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(94%, #ffb100));
  background-image: linear-gradient(180deg, transparent 94%, #ffb100 94%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.pg-top .deptLinkSect__body .deptLinkList li.dept3 a:hover .c-underline > span {
  background-size: 100% 100%;
}

.pg-top .deptLinkSect__body .deptLinkList li.dept4 a .c-underline {
  padding-bottom: 15px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(94%, transparent));
  background-image: linear-gradient(180deg, transparent 94%, transparent 94%);
}

.pg-top .deptLinkSect__body .deptLinkList li.dept4 a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(94%, #e65024));
  background-image: linear-gradient(180deg, transparent 94%, #e65024 94%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.pg-top .deptLinkSect__body .deptLinkList li.dept4 a:hover .c-underline > span {
  background-size: 100% 100%;
}

.pg-top .deptLinkSect__body .deptLinkList li.dept5 a .c-underline {
  padding-bottom: 15px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(94%, transparent));
  background-image: linear-gradient(180deg, transparent 94%, transparent 94%);
}

.pg-top .deptLinkSect__body .deptLinkList li.dept5 a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(94%, #22ad77));
  background-image: linear-gradient(180deg, transparent 94%, #22ad77 94%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.pg-top .deptLinkSect__body .deptLinkList li.dept5 a:hover .c-underline > span {
  background-size: 100% 100%;
}

.pg-top .deptLinkSect__body .deptLinkList .vi {
  height: 94px;
}

.pg-top .deptLinkSect__body .deptLinkList .vi img {
  width: auto;
  height: 100%;
}

.pg-top .deptLinkSect__body .deptLinkList .text {
  margin-top: 38px;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: .08em;
  line-height: 1.6;
}

.pg-top .deptLinkSect__body .deptLinkBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  border-top: 2px solid #b3b3b3;
  padding: 11px 20px;
  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;
  text-align: center;
  color: inherit;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .05em;
}

.pg-top .deptLinkSect__body .deptLinkBtn .c-underline {
  padding-bottom: 7px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(93%, transparent), color-stop(93%, transparent));
  background-image: linear-gradient(180deg, transparent 93%, transparent 93%);
}

.pg-top .deptLinkSect__body .deptLinkBtn .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(93%, transparent), color-stop(93%, #b3b3b3));
  background-image: linear-gradient(180deg, transparent 93%, #b3b3b3 93%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.pg-top .deptLinkSect__body .deptLinkBtn:hover .c-underline > span {
  background-size: 100% 100%;
}

.pg-top .deptLinkSect__body .deptLinkBtn.-new::before {
  content: "NEW";
  display: inline-block;
  margin-right: 26px;
  width: 70px;
  height: 22px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url(../images/txt_new_lg.svg) no-repeat;
  background-size: 70px 22px;
  font-size: 0;
}

.pg-top .deptLinkSect__linkBtnArea {
  position: relative;
  padding-top: 70px;
  text-align: center;
}

.pg-top .deptLinkSect__linkBtnArea::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  margin: -27px 0 0 -1px;
  width: 2px;
  height: 86px;
  background-color: #6c6c6c;
}

.pg-top .deptLinkSect__linkBtnArea .c-textBtn {
  width: 420px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: normal;
}

.pg-top .deptLinkSect__linkBtnArea .c-textBtn > span > span {
  padding: 13px 30px;
}

.pg-top .articleListArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 160px 0 0 -50px;
}

.pg-top .articleListArea section {
  padding-left: 50px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-top .articleListArea section > header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pg-top .articleListArea section > header .hdg {
  padding-right: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 2.6rem;
  font-weight: bold;
}

.pg-top .articleListArea section > header .hdg small {
  margin-left: 22px;
  font-size: 61.54%;
  font-weight: 600;
  letter-spacing: .1em;
}

.pg-top .articleListArea section > header .moreLink {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #999;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.pg-top .articleListArea section > header .moreLink .c-lgArrow {
  margin-left: 3px;
}

.pg-top .articleListArea section > header .moreLink .c-lgArrow path {
  stroke: currentColor;
}

.pg-top .articleListArea section > header .moreLink:hover .c-lgArrow path {
  stroke: #1dc5ff;
}

.pg-top .articleListArea .articleList {
  margin: 0 -10px;
}

.pg-top .articleListArea .articleList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: inherit;
  -webkit-transition: background-color .4s, color .3s;
  transition: background-color .4s, color .3s;
}

.pg-top .articleListArea .articleList a:hover {
  background-color: #1dc5ff;
  color: #fff;
}

.pg-top .articleListArea .articleList .image {
  width: 50%;
  height: 180px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: 50%;
  background-size: cover;
}

.pg-top .articleListArea .articleList .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 17px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -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-top .articleListArea .articleList .dateList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 0 7px;
}

.pg-top .articleListArea .articleList .dateList li ~ li {
  position: relative;
  padding-left: 13px;
}

.pg-top .articleListArea .articleList .dateList li ~ li::before {
  content: "-";
  position: absolute;
  left: 3px;
  top: 6px;
  font-size: 150%;
  line-height: 1;
}

.pg-top .articleListArea .articleList .dateList time {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
}

.pg-top .articleListArea .articleList .title {
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.7;
}

.pg-top .articleListArea .articleList .tagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -2px 0 0 -10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-top .articleListArea .articleList .tagList li {
  padding: 2px 0 0 10px;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.pg-top .articleListArea .articleList .tagList li::before {
  content: "#";
}

.pg-top .articleListArea .articleList a:hover .tagList li {
  color: #fff;
}

.pg-top .linkListArea {
  margin-top: 103px;
}

.pg-top .linkListArea section > header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pg-top .linkListArea section > header .hdg {
  padding-right: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: .1em;
}

.pg-top .linkListArea section > header .hdg small {
  margin-left: 35px;
  font-size: 61.54%;
  font-weight: 600;
  letter-spacing: .08em;
}

.pg-top .linkListArea section ~ section {
  margin-top: 46px;
}

.pg-top .linkListArea .linkBtnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -1px 0 0 -1px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-top .linkListArea .linkBtnList li {
  padding: 1px 0 0 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-top .linkListArea .linkBtnList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  background-color: #545454;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}

.pg-top .linkListArea .linkBtnList a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #1dc5ff;
  -webkit-transition: width .4s;
  transition: width .4s;
}

.pg-top .linkListArea .linkBtnList a > span {
  position: relative;
  padding: 18px 10px;
}

.pg-top .linkListArea .linkBtnList a:hover::before {
  width: 100%;
}

.pg-top .linkListArea .linkBtnList--3col li {
  width: 33.333%;
}

.pg-top .linkListArea .linkBtnList--4col li {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .pg-top .mainVisual {
    margin: -60px 0 48px;
    height: 100vh;
  }
  .pg-top .mainVisual canvas {
    display: none;
  }
  .pg-top .mainVisual__image {
    display: block;
    opacity: 0;
    position: relative;
    height: 65%;
    background-position: 50%;
    background-size: cover;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: opacity 1s ease-in;
    transition: opacity 1s ease-in;
  }
  .pg-top .mainVisual__image.-ready {
    opacity: 1;
  }
  .pg-top .mainVisual__image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 101%;
    background: url(../images/img_mask_01_sp.png) 50%;
    background-size: cover;
  }
  .pg-top .mainVisual__image img {
    display: none;
  }
  .pg-top .mainVisual__copy {
    top: 39%;
    padding: 28px 30px 36px;
    font-size: 2.4rem;
  }
  .pg-top .mainVisual__copy .click {
    bottom: 16px;
    font-size: 1rem;
  }
  .pg-top .mainVisual__copy .click::after {
    width: 10px;
    height: 10px;
    background-size: 10px 10px;
  }
  .pg-top .mainVisual__copy .bg::before, .pg-top .mainVisual__copy .bg::after {
    border-width: 4px;
    width: 17px;
    height: 17px;
  }
  [data-whatintent="mouse"] .pg-top .mainVisual__copy:hover .bg {
    left: 10px;
    right: 10px;
    top: 15px;
    bottom: 10px;
  }
  .pg-top .mainVisual.-imageAlpha1 .mainVisual__copy {
    opacity: 1;
    visibility: visible;
  }
  .pg-top .mainVisual .modalCont {
    padding: 60px 6.4vw 0;
  }
  .pg-top .mainVisual .modalCont .head {
    margin: 30px 0 0 -6.4vw;
    padding: 13px 6.4vw 10px;
  }
  .pg-top .mainVisual .modalCont .head .enHdg {
    padding-top: 3px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
  .pg-top .mainVisual .modalCont .head .enHdg {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .pg-top .mainVisual .modalCont .head .hdg {
    font-size: 2rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
  .pg-top .mainVisual .modalCont .head .hdg {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .pg-top .mainVisual .modalCont .head .listLink {
    display: block;
    margin: 5px 0 0;
    text-align: right;
    line-height: 1.4;
  }
  .pg-top .mainVisual .modalCont .head .listLink a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
  .pg-top .mainVisual .modalCont .head .listLink a {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .pg-top .mainVisual .modalCont .body {
    padding-top: 20px;
  }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
  .pg-top .mainVisual .modalCont .body {
    padding-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .pg-top .mainVisual .modalCont .balloonList {
    display: block;
    margin: 0;
  }
  .pg-top .mainVisual .modalCont .balloonList li {
    padding: 0;
  }
  .pg-top .mainVisual .modalCont .balloonList li ~ li {
    margin-top: 10px;
  }
  .pg-top .mainVisual .modalCont .balloonList a {
    padding: 18px 15px;
    font-size: 1.8rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
  .pg-top .mainVisual .modalCont .balloonList a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .pg-top .mainVisual .modalCont .balloonList a::before {
    height: 9px;
  }
  .pg-top .mainVisual .modalCont .balloonList li:nth-child(even) a {
    border-radius: 10px 0 10px 10px;
    padding-left: 28px;
  }
  .pg-top .mainVisual .modalCont .balloonList li:nth-child(even) a::before {
    left: auto;
    right: -2px;
  }
  .pg-top .mainVisual .modalCont .balloonList .tip {
    display: none;
  }
  .pg-top .mainVisual .modalCont .modalCloseBtn {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) and (max-width: 360px) {
  .pg-top .mainVisual .modalCont .modalCloseBtn {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .pg-top .mainVisual .infoDiv {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
  }
  .pg-top .mainVisual .infoDiv .openCampus {
    display: inline-block;
    position: static;
    margin-bottom: 12px;
    padding: 9px;
    width: calc(100vw - 12.8vw);
    max-width: 360px;
    height: auto;
    -webkit-transform: none;
    transform: none;
  }
  .pg-top .mainVisual .infoDiv .openCampus .hdg {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
  .pg-top .mainVisual .infoDiv .openCampus .hdg {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .pg-top .mainVisual .infoDiv .openCampus .body {
    margin: 0 -8px;
  }
  .pg-top .mainVisual .infoDiv .openCampus .date,
  .pg-top .mainVisual .infoDiv .openCampus .detail {
    display: inline-block;
    vertical-align: middle;
  }
  .pg-top .mainVisual .infoDiv .openCampus .date {
    padding: 0 8px 5px;
    font-size: 6rem;
    line-height: 1;
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) and (max-width: 360px) {
  .pg-top .mainVisual .infoDiv .openCampus .date {
    font-size: 5rem !important;
  }
}

@media screen and (max-width: 767px) {
  .pg-top .mainVisual .infoDiv .openCampus .detail {
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
  .pg-top .mainVisual .infoDiv .openCampus .detail {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .pg-top .mainVisual .infoDiv .newsArea {
    position: relative;
    right: auto;
    bottom: auto;
    margin-left: 6.4vw;
    border-width: 2px;
    padding: 16px calc(6.4vw + 25px) 16px 18px;
  }
  .pg-top .mainVisual .infoDiv .newsList {
    height: 25px;
  }
  .pg-top .mainVisual .infoDiv .newsList .title {
    max-width: none;
    font-size: 1.2rem;
  }
  .pg-top .mainVisual .infoDiv .newsNav {
    right: calc(6.4vw - 4px);
  }
  .pg-top .mainVisual.-imageAlpha1 .infoDiv {
    opacity: 1;
    visibility: visible;
  }
  .pg-top .mainVisual__loader > div {
    border-width: .66em;
    width: 6em;
    height: 6em;
  }
  .pg-top main > [class*="bg"] {
    display: none;
  }
  .pg-top .infoArea {
    display: block;
    margin-bottom: 70px;
  }
  .pg-top .infoArea .p-newsSect {
    width: auto;
  }
  .pg-top .infoArea .p-newsSect__list article {
    padding-bottom: 15px;
    padding-left: 5px;
  }
  .pg-top .infoArea .snsSect {
    margin-top: 35px;
    width: auto;
  }
  .pg-top .infoArea .snsSect__hdg {
    padding: 0 0 18px;
    font-size: 2.2rem;
  }
  .pg-top .infoArea .snsSect__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -13px 0 0 -10px;
    padding: 25px 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .pg-top .infoArea .snsSect__list li {
    padding: 13px 0 0 10px;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .pg-top .infoArea .snsSect__list li ~ li {
    margin-top: 0;
  }
  .pg-top .infoArea .snsSect__list a {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .pg-top .deptLinkSect__hdg {
    margin-bottom: -.5em;
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .pg-top .deptLinkSect__hdg > span::before, .pg-top .deptLinkSect__hdg > span::after {
    bottom: .5em;
  }
  .pg-top .deptLinkSect__hdg > span::before {
    margin-right: 10px;
  }
  .pg-top .deptLinkSect__hdg > span::after {
    margin-left: 0;
  }
  .pg-top .deptLinkSect__body {
    padding: 46px 6.4vw;
  }
  .pg-top .deptLinkSect__body .deptLinkList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .pg-top .deptLinkSect__body .deptLinkList li {
    padding-top: 0;
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .pg-top .deptLinkSect__body .deptLinkList li:nth-child(n+3) {
    margin-top: 37px;
  }
  .pg-top .deptLinkSect__body .deptLinkList li.-new {
    padding-top: 45px;
  }
  .pg-top .deptLinkSect__body .deptLinkList li.-new::before {
    margin-left: -27px;
    width: 53px;
    height: 26px;
    background-size: 53px 26px;
  }
  .pg-top .deptLinkSect__body .deptLinkList a .c-underline {
    padding-bottom: 5px !important;
  }
  .pg-top .deptLinkSect__body .deptLinkList .vi {
    height: 66px;
  }
  .pg-top .deptLinkSect__body .deptLinkList .text {
    margin-top: 16px;
    font-size: 1.6rem;
  }
  .pg-top .deptLinkSect__body .deptLinkBtn {
    margin-top: 22px;
    padding: 14px 10px;
    font-size: 1.2rem;
  }
  .pg-top .deptLinkSect__body .deptLinkBtn.-new::before {
    margin-right: 18px;
    width: 53px;
    height: 26px;
    background-size: 53px 26px;
  }
  .pg-top .deptLinkSect__linkBtnArea .c-textBtn {
    width: 100%;
  }
  .pg-top .articleListArea {
    display: block;
    margin: 95px 0 0 0;
  }
  .pg-top .articleListArea section {
    padding-left: 0;
  }
  .pg-top .articleListArea section > header {
    margin-bottom: 5px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .pg-top .articleListArea section > header .hdg {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .pg-top .articleListArea section > header .hdg small {
    display: block;
    margin: 6px 0 5px;
    padding-left: 1px;
  }
  .pg-top .articleListArea section ~ section {
    margin-top: 68px;
  }
  .pg-top .articleListArea .articleList {
    margin: 0 -5px;
  }
  .pg-top .articleListArea .articleList > li ~ li {
    margin-top: 15px;
  }
  .pg-top .articleListArea .articleList a {
    padding: 5px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .pg-top .articleListArea .articleList .image {
    width: 36.7%;
    height: auto;
  }
  .pg-top .articleListArea .articleList .image::before {
    content: "";
    display: block;
    padding-top: 72.5%;
  }
  .pg-top .articleListArea .articleList .dateList time {
    white-space: nowrap;
  }
  .pg-top .articleListArea .articleList .title {
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .pg-top .articleListArea .articleList .tagList {
    margin: 11px 0 0 -8px;
  }
  .pg-top .articleListArea .articleList .tagList li {
    padding: 2px 0 0 8px;
  }
  .pg-top .linkListArea {
    margin-top: 75px;
  }
  .pg-top .linkListArea section > header {
    margin-bottom: 12px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .pg-top .linkListArea section > header .hdg {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .pg-top .linkListArea section > header .hdg small {
    display: block;
    margin: 6px 0 5px;
    padding-left: 1px;
  }
  .pg-top .linkListArea section ~ section {
    margin-top: 32px;
  }
  .pg-top .linkListArea .linkBtnList {
    display: block;
    margin: 0;
  }
  .pg-top .linkListArea .linkBtnList li {
    padding: 0;
  }
  .pg-top .linkListArea .linkBtnList li ~ li {
    margin-top: 1px;
  }
  .pg-top .linkListArea .linkBtnList a {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
    font-size: 1.4rem;
  }
  .pg-top .linkListArea .linkBtnList a > span {
    padding: 9px 15px;
  }
  .pg-top .linkListArea .linkBtnList--3col li,
  .pg-top .linkListArea .linkBtnList--4col li {
    width: auto;
  }
}

/* 学部詳細 */
.pg-deptTop .c-hdgLg {
  position: relative;
  margin: 0 auto 40px;
  padding: 0 20px;
  width: 580px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: .05em;
  line-height: 1.7;
}

.pg-deptTop .c-hdgLg > span {
  display: inline-block;
  position: relative;
  border: 2px solid #000;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  padding: 12px 22px 0;
}

.pg-deptTop .c-hdgLg > span::before, .pg-deptTop .c-hdgLg > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 580px;
  height: 2px;
}

.pg-deptTop .c-hdgLg > span::before {
  right: 100%;
}

.pg-deptTop .c-hdgLg > span::after {
  left: 100%;
}

.pg-deptTop .c-hdgLg::first-letter {
  color: inherit;
}

.pg-deptTop .pageHeader {
  position: relative;
  margin: -100px 0 0;
  height: 670px;
}

.pg-deptTop .pageHeader__container {
  position: relative;
  z-index: 1;
  margin: auto;
  max-width: 1366px;
  height: 100%;
}

.pg-deptTop .pageHeader__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: -32px;
  bottom: 42%;
  border: 3px solid #000;
  padding: 18px 45px 18px 85px;
  background-color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pg-deptTop .pageHeader__vi {
  padding-right: 22px;
  height: 92px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pg-deptTop .pageHeader__vi img {
  width: auto;
  height: 100%;
}

.pg-deptTop .pageHeader__hdg {
  padding-top: 5px;
  font-weight: bold;
  line-height: 1.6;
}

.pg-deptTop .pageHeader__hdg > span {
  display: block;
}

.pg-deptTop .pageHeader__hdg > span.subj {
  font-size: 2rem;
}

.pg-deptTop .pageHeader__hdg > span.course {
  font-size: 3rem;
}

.pg-deptTop .pageHeader__hdg.-noCourse > span.subj .dept {
  margin-right: 18px;
  font-size: 3rem;
}

.pg-deptTop .pageHeader__enHdg {
  position: absolute;
  left: 85px;
  bottom: 100%;
  margin-bottom: -.5em;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: .05em;
  white-space: nowrap;
}

.pg-deptTop .pageHeader__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-size: cover;
}

.pg-deptTop .p-breadcrumb {
  margin: 12px 0 45px;
}

.pg-deptTop .anchorLinkArea {
  margin-bottom: 105px;
}

.pg-deptTop .anchorLinkArea .c-anchorLink {
  border-bottom: 2px solid #000;
  padding-bottom: 18px;
}

.pg-deptTop .pageLead {
  margin-bottom: 95px;
}

.pg-deptTop .pageLead__hdg {
  margin-bottom: 20px;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 2.5px;
  line-height: 1.8125;
}

.pg-deptTop .pageLead__hdg::first-letter {
  color: #3fc7f8;
}

@media screen and (max-width: 767px) {
  .pg-deptTop .pageLead__hdg {
    font-size: 2.4rem;
  }
}

.pg-deptTop .p-newsSect {
  margin-bottom: 120px;
}

.pg-deptTop .studyArea {
  margin: 110px 0;
  padding: 110px 0;
  background-color: #e5e5e5;
}

.pg-deptTop .studyArea .c-textBtn::before, .pg-deptTop .studyArea .c-textBtn::after {
  background-color: #e5e5e5;
}

.pg-deptTop .studyArea .c-wysiwyg th:not(:first-child),
.pg-deptTop .studyArea .c-wysiwyg td:not(:first-child) {
  border-left: 4px solid #e5e5e5;
}

.pg-deptTop .studyArea .textBtnListArea {
  margin-top: 40px;
}

.pg-deptTop .skillSect {
  margin-top: 80px;
}

.pg-deptTop .skillSect .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 100px 24px;
  background-color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pg-deptTop .skillSect .hdg {
  width: 375px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: normal;
}

.pg-deptTop .skillSect .body li {
  font-size: 1.8rem;
  font-weight: bold;
}

.pg-deptTop .skillSect .body li > span {
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
}

.pg-deptTop .skillSect .body li ~ li {
  margin-top: 12px;
}

.pg-deptTop .voiceSect {
  margin: 118px 0 -152px;
  padding: 85px 0 110px;
}

.pg-deptTop .voiceSect__hdg {
  margin-bottom: 75px;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.3;
}

.pg-deptTop .voiceSect__hdg > span {
  display: inline-block;
  border-radius: 5px;
  padding: 1px 15px 3px;
  background-color: #fff;
}

.pg-deptTop .voiceSect__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pg-deptTop .voiceSect__list > li ~ li {
  margin-top: 60px;
}

.pg-deptTop .voiceSect__list > li figure {
  position: relative;
  padding-right: 40px;
  width: 346px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pg-deptTop .voiceSect__list > li figure img {
  width: 100%;
}

.pg-deptTop .voiceSect__list > li figure figcaption {
  position: absolute;
  left: -30px;
  top: -20px;
  border: 3px solid #000;
  padding: 12px 20px 12px 22px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

.pg-deptTop .voiceSect__list > li figure figcaption .name {
  margin-right: 14px;
}

.pg-deptTop .voiceSect__list > li figure figcaption .name b {
  font-size: 142.857142857%;
}

.pg-deptTop .voiceSect__list > li figure figcaption .type {
  display: inline-block;
}

.pg-deptTop .voiceSect__list > li .body {
  margin-top: -4px;
}

.pg-deptTop .voiceSect__list > li .body .hdg {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .06em;
  line-height: 1.9;
}

.pg-deptTop .voiceSect__list > li .body .hdg > span {
  padding: 4px 0;
  background-color: #000;
  color: #fff;
}

.pg-deptTop .sectLg__hdg {
  margin-bottom: 78px;
}

.pg-deptTop .sectLg + .sectLg {
  margin-top: 118px;
}

.pg-deptTop .sectLg.pickUp .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pg-deptTop .sectLg.pickUp .container .image {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  padding-right: 40px;
  width: 360px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pg-deptTop .sectLg.pickUp .container .image img {
  width: 100%;
}

.pg-deptTop .sectLg.pickUp .container .body {
  margin-top: -6px;
}

.pg-deptTop .sectLg.pickUp .container .body li ~ li {
  margin-top: 22px;
}

.pg-deptTop .sectLg.pickUp .container .body .c-hdgSm {
  margin-bottom: 6px;
}

.pg-deptTop .sectLg.flow .flowListArea {
  position: relative;
  margin-top: 95px;
}

.pg-deptTop .sectLg.flow .flowList {
  position: relative;
  z-index: 1;
}

.pg-deptTop .sectLg.flow .flowList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pg-deptTop .sectLg.flow .flowList li ~ li {
  margin-top: 80px;
}

.pg-deptTop .sectLg.flow .flowList__head {
  padding: 0 65px 0 35px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pg-deptTop .sectLg.flow .flowList__head .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border: 3px solid #000;
  border-radius: 50%;
  padding-bottom: 8px;
  width: 93px;
  height: 93px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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;
  text-align: center;
}

.pg-deptTop .sectLg.flow .flowList__head .container::before {
  content: "";
  position: absolute;
  left: calc(100% + 3px);
  top: 50%;
  width: 66px;
  height: 3px;
  background-color: #000;
}

.pg-deptTop .sectLg.flow .flowList__head .hdg {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}

.pg-deptTop .sectLg.flow .flowList__head .hdg b {
  display: block;
  margin-bottom: 5px;
  font-family: 'Barlow', sans-serif;
  font-size: 222.222%;
}

.pg-deptTop .sectLg.flow .flowList__head .enHdg {
  position: absolute;
  right: 100%;
  top: 0;
  margin: -12px -5px 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.pg-deptTop .sectLg.flow .flowList__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-style: solid;
  border-width: 0 3px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #fff;
}

.pg-deptTop .sectLg.flow .flowList__body .image {
  width: 300px;
  min-height: 220px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: 50%;
  background-size: cover;
}

.pg-deptTop .sectLg.flow .flowList__body .body {
  padding: 30px 40px 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.pg-deptTop .sectLg.flow .flowList__body .body .c-hdgSm {
  margin-bottom: 10px;
}

.pg-deptTop .sectLg.flow .flowList li:nth-child(odd) .flowList__body .image {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.pg-deptTop .sectLg.flow .flowLine {
  position: absolute;
  left: calc(35px + 45px);
  top: -40px;
  bottom: -80px;
  width: 3px;
  background-color: #fff;
}

.pg-deptTop .sectLg.flow .flowLine::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 23px;
  height: 3px;
  background-color: #fff;
}

.pg-deptTop .sectLg.flow .flowLine .arrow {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1;
  width: 3px;
  height: 50px;
  background-color: #d7d7d7;
}

.pg-deptTop .sectLg.flow .flowLine .arrow::before {
  content: "";
  position: absolute;
  left: 1px;
  bottom: -2px;
  border-bottom: 3px solid #d7d7d7;
  border-left: 3px solid #d7d7d7;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}

.pg-deptTop .sectLg.work .c-imageList + .c-workList {
  margin-top: 0;
}

.pg-deptTop .sectLg.facility .pickUp {
  margin-bottom: 40px;
}

.pg-deptTop .sectLg.facility .pickUp .head {
  position: relative;
  margin: 0 0 -80px -33px;
  border: 3px solid #000;
  padding: 15px 20px 14px;
  width: 393px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}

.pg-deptTop .sectLg.facility .pickUp .head .hdg {
  margin-bottom: 9px;
  border-bottom: 1px solid #000;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.75;
}

.pg-deptTop .sectLg.facility .pickUp .head .desc {
  font-size: 1.4rem;
}

.pg-deptTop .sectLg.facility .pickUp .head .enHdg {
  position: absolute;
  left: 20px;
  bottom: 100%;
  margin-bottom: -.5em;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: .05em;
}

.pg-deptTop .sectLg.facility .pickUp .image img {
  width: 100%;
}

.pg-deptTop .sectLg.facility .bodyBlock {
  margin-bottom: 58px;
}

.pg-deptTop .sectLg.facility .pickUp + .bodyBlock {
  margin-top: 70px;
}

.pg-deptTop .sectLg.gallery .gallerySlide {
  position: relative;
  padding: 40px;
  background-color: #e5e5e5;
}

.pg-deptTop .sectLg.gallery .gallerySlide .swiper-slide figure {
  width: 100% !important;
}

.pg-deptTop .sectLg.gallery .gallerySlide .swiper-slide figcaption {
  text-align: center;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.7;
}

.pg-deptTop .sectLg.gallery .gallerySlide [class*="swiper-button"] {
  margin-top: -21px;
  padding: 5px;
  width: 27px;
  height: 42px;
}

.pg-deptTop .sectLg.gallery .gallerySlide [class*="swiper-button"]::after {
  content: none;
}

.pg-deptTop .sectLg.gallery .gallerySlide [class*="swiper-button"] svg {
  width: 100%;
  height: 100%;
}

.pg-deptTop .sectLg.gallery .gallerySlide .swiper-button-prev {
  left: 6px;
}

.pg-deptTop .sectLg.gallery .gallerySlide .swiper-button-prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.pg-deptTop .sectLg.gallery .gallerySlide .swiper-button-next {
  right: 6px;
}

.pg-deptTop .sectLg.teacher .c-grayBox {
  margin-top: 45px;
}

.pg-deptTop .sectLg.teacher .textBtnListArea {
  margin-top: 40px;
}

.pg-deptTop .sectLg.career .textBtnListArea {
  margin-top: 30px;
}

.pg-deptTop.theme-dept1 .c-hdgLg > span {
  border-color: #355cfc;
}

.pg-deptTop.theme-dept1 .c-hdgLg > span::before, .pg-deptTop.theme-dept1 .c-hdgLg > span::after {
  background-color: #355cfc;
}

.pg-deptTop.theme-dept1 .pageLead__hdg::first-letter {
  color: #355cfc;
}

.pg-deptTop.theme-dept1 .p-newsSect__header .moreLink:hover .c-lgArrow path {
  stroke: #355cfc;
}

.pg-deptTop.theme-dept1 .p-newsSect__list a:hover {
  background-color: #355cfc;
}

.pg-deptTop.theme-dept1 .skillSect .body li > span {
  border-color: #355cfc;
}

.pg-deptTop.theme-dept1 .voiceSect {
  background-color: rgba(53, 92, 252, 0.2);
}

.pg-deptTop.theme-dept1 .sectLg.flow .flowList__head .container {
  border-color: #355cfc;
}

.pg-deptTop.theme-dept1 .sectLg.flow .flowList__head .container::before {
  background-color: #355cfc;
}

.pg-deptTop.theme-dept1 .sectLg.flow .flowList__body {
  border-color: #355cfc;
}

@media screen and (min-width: 768px) {
  .pg-deptTop.theme-dept1 .sectLg.gallery .gallerySlide [class*="swiper-button"]:hover path {
    stroke: #355cfc;
  }
}

.pg-deptTop.theme-dept2 .c-hdgLg > span {
  border-color: #ff5b7f;
}

.pg-deptTop.theme-dept2 .c-hdgLg > span::before, .pg-deptTop.theme-dept2 .c-hdgLg > span::after {
  background-color: #ff5b7f;
}

.pg-deptTop.theme-dept2 .pageLead__hdg::first-letter {
  color: #ff5b7f;
}

.pg-deptTop.theme-dept2 .p-newsSect__header .moreLink:hover .c-lgArrow path {
  stroke: #ff5b7f;
}

.pg-deptTop.theme-dept2 .p-newsSect__list a:hover {
  background-color: #ff5b7f;
}

.pg-deptTop.theme-dept2 .skillSect .body li > span {
  border-color: #ff5b7f;
}

.pg-deptTop.theme-dept2 .voiceSect {
  background-color: rgba(255, 91, 127, 0.2);
}

.pg-deptTop.theme-dept2 .sectLg.flow .flowList__head .container {
  border-color: #ff5b7f;
}

.pg-deptTop.theme-dept2 .sectLg.flow .flowList__head .container::before {
  background-color: #ff5b7f;
}

.pg-deptTop.theme-dept2 .sectLg.flow .flowList__body {
  border-color: #ff5b7f;
}

@media screen and (min-width: 768px) {
  .pg-deptTop.theme-dept2 .sectLg.gallery .gallerySlide [class*="swiper-button"]:hover path {
    stroke: #ff5b7f;
  }
}

.pg-deptTop.theme-dept3 .c-hdgLg > span {
  border-color: #ffb100;
}

.pg-deptTop.theme-dept3 .c-hdgLg > span::before, .pg-deptTop.theme-dept3 .c-hdgLg > span::after {
  background-color: #ffb100;
}

.pg-deptTop.theme-dept3 .pageLead__hdg::first-letter {
  color: #ffb100;
}

.pg-deptTop.theme-dept3 .p-newsSect__header .moreLink:hover .c-lgArrow path {
  stroke: #ffb100;
}

.pg-deptTop.theme-dept3 .p-newsSect__list a:hover {
  background-color: #ffb100;
}

.pg-deptTop.theme-dept3 .skillSect .body li > span {
  border-color: #ffb100;
}

.pg-deptTop.theme-dept3 .voiceSect {
  background-color: rgba(255, 177, 0, 0.2);
}

.pg-deptTop.theme-dept3 .sectLg.flow .flowList__head .container {
  border-color: #ffb100;
}

.pg-deptTop.theme-dept3 .sectLg.flow .flowList__head .container::before {
  background-color: #ffb100;
}

.pg-deptTop.theme-dept3 .sectLg.flow .flowList__body {
  border-color: #ffb100;
}

@media screen and (min-width: 768px) {
  .pg-deptTop.theme-dept3 .sectLg.gallery .gallerySlide [class*="swiper-button"]:hover path {
    stroke: #ffb100;
  }
}

.pg-deptTop.theme-dept4 .c-hdgLg > span {
  border-color: #e65024;
}

.pg-deptTop.theme-dept4 .c-hdgLg > span::before, .pg-deptTop.theme-dept4 .c-hdgLg > span::after {
  background-color: #e65024;
}

.pg-deptTop.theme-dept4 .pageLead__hdg::first-letter {
  color: #e65024;
}

.pg-deptTop.theme-dept4 .p-newsSect__header .moreLink:hover .c-lgArrow path {
  stroke: #e65024;
}

.pg-deptTop.theme-dept4 .p-newsSect__list a:hover {
  background-color: #e65024;
}

.pg-deptTop.theme-dept4 .skillSect .body li > span {
  border-color: #e65024;
}

.pg-deptTop.theme-dept4 .voiceSect {
  background-color: rgba(230, 80, 36, 0.2);
}

.pg-deptTop.theme-dept4 .sectLg.flow .flowList__head .container {
  border-color: #e65024;
}

.pg-deptTop.theme-dept4 .sectLg.flow .flowList__head .container::before {
  background-color: #e65024;
}

.pg-deptTop.theme-dept4 .sectLg.flow .flowList__body {
  border-color: #e65024;
}

@media screen and (min-width: 768px) {
  .pg-deptTop.theme-dept4 .sectLg.gallery .gallerySlide [class*="swiper-button"]:hover path {
    stroke: #e65024;
  }
}

.pg-deptTop.theme-dept5 .c-hdgLg > span {
  border-color: #22ad77;
}

.pg-deptTop.theme-dept5 .c-hdgLg > span::before, .pg-deptTop.theme-dept5 .c-hdgLg > span::after {
  background-color: #22ad77;
}

.pg-deptTop.theme-dept5 .pageLead__hdg::first-letter {
  color: #22ad77;
}

.pg-deptTop.theme-dept5 .p-newsSect__header .moreLink:hover .c-lgArrow path {
  stroke: #22ad77;
}

.pg-deptTop.theme-dept5 .p-newsSect__list a:hover {
  background-color: #22ad77;
}

.pg-deptTop.theme-dept5 .skillSect .body li > span {
  border-color: #22ad77;
}

.pg-deptTop.theme-dept5 .voiceSect {
  background-color: rgba(34, 173, 119, 0.2);
}

.pg-deptTop.theme-dept5 .sectLg.flow .flowList__head .container {
  border-color: #22ad77;
}

.pg-deptTop.theme-dept5 .sectLg.flow .flowList__head .container::before {
  background-color: #22ad77;
}

.pg-deptTop.theme-dept5 .sectLg.flow .flowList__body {
  border-color: #22ad77;
}

@media screen and (min-width: 768px) {
  .pg-deptTop.theme-dept5 .sectLg.gallery .gallerySlide [class*="swiper-button"]:hover path {
    stroke: #22ad77;
  }
}

.pg-deptTop.theme-dept6 .c-hdgLg > span {
  border-color: #3fc7f8;
}

.pg-deptTop.theme-dept6 .c-hdgLg > span::before, .pg-deptTop.theme-dept6 .c-hdgLg > span::after {
  background-color: #3fc7f8;
}

.pg-deptTop.theme-dept6 .pageLead__hdg::first-letter {
  color: #3fc7f8;
}

.pg-deptTop.theme-dept6 .p-newsSect__header .moreLink:hover .c-lgArrow path {
  stroke: #3fc7f8;
}

.pg-deptTop.theme-dept6 .p-newsSect__list a:hover {
  background-color: #3fc7f8;
}

.pg-deptTop.theme-dept6 .skillSect .body li > span {
  border-color: #3fc7f8;
}

.pg-deptTop.theme-dept6 .voiceSect {
  background-color: rgba(63, 199, 248, 0.2);
}

.pg-deptTop.theme-dept6 .sectLg.flow .flowList__head .container {
  border-color: #3fc7f8;
}

.pg-deptTop.theme-dept6 .sectLg.flow .flowList__head .container::before {
  background-color: #3fc7f8;
}

.pg-deptTop.theme-dept6 .sectLg.flow .flowList__body {
  border-color: #3fc7f8;
}

@media screen and (min-width: 768px) {
  .pg-deptTop.theme-dept6 .sectLg.gallery .gallerySlide [class*="swiper-button"]:hover path {
    stroke: #3fc7f8;
  }
}

@media screen and (max-width: 767px) {
  .pg-deptTop .c-hdgLg {
    margin-bottom: 20px;
    width: auto;
    font-size: 2.2rem;
  }
  .pg-deptTop .pageHeader {
    margin: -60px 0 0;
    height: auto;
  }
  .pg-deptTop .pageHeader__container {
    padding-top: 290px;
    height: auto;
  }
  .pg-deptTop .pageHeader__head {
    position: relative;
    left: auto;
    bottom: auto;
    margin-right: 6.4vw;
    border-left: none;
    padding: 18px 20px 15px 6.4vw;
  }
  .pg-deptTop .pageHeader__vi {
    padding-right: 18px;
    height: 50px;
  }
  .pg-deptTop .pageHeader__hdg {
    padding-top: 0;
    line-height: 1.5;
  }
  .pg-deptTop .pageHeader__hdg > span.subj {
    font-size: 1.4rem;
  }
  .pg-deptTop .pageHeader__hdg > span.course {
    font-size: 2.4rem;
    line-height: 1.2;
  }
  .pg-deptTop .pageHeader__hdg.-noCourse > span.subj .dept {
    display: block;
    margin-right: 0;
    font-size: 2.4rem;
  }
  .pg-deptTop .pageHeader__enHdg {
    left: 6.4vw;
  }
  .pg-deptTop .pageHeader__image {
    height: 320px;
  }
  .pg-deptTop .p-breadcrumb {
    margin: 0 0 8px;
  }
  .pg-deptTop .anchorLinkArea {
    margin-bottom: 70px;
  }
  .pg-deptTop .anchorLinkArea .c-anchorLink {
    position: relative;
    border-bottom: none;
  }
  .pg-deptTop .anchorLinkArea .c-anchorLink::before {
    content: "";
    position: absolute;
    left: -6.4vw;
    right: -6.4vw;
    bottom: 0;
    height: 1px;
    background-color: #000;
  }
  .pg-deptTop .pageLead {
    margin-bottom: 60px;
  }
  .pg-deptTop .pageLead__hdg {
    line-height: 1.5;
  }
  .pg-deptTop .p-newsSect {
    margin-bottom: 80px;
  }
  .pg-deptTop .studyArea {
    margin: 80px 0;
    padding: 80px 0;
  }
  .pg-deptTop .skillSect {
    margin-top: 60px;
  }
  .pg-deptTop .skillSect .container {
    display: block;
    padding: 30px 4.8vw 35px;
  }
  .pg-deptTop .skillSect .hdg {
    margin-bottom: 25px;
    width: auto;
    text-align: center;
    font-size: 1.8rem;
  }
  .pg-deptTop .skillSect .body li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .pg-deptTop .skillSect .body li > span {
    padding-bottom: 3px;
  }
  .pg-deptTop .skillSect .body li ~ li {
    margin-top: 18px;
  }
  .pg-deptTop section.flow + .skillSect .container {
    padding-top: 55px;
  }
  .pg-deptTop .voiceSect {
    margin: 75px 0 -95px;
    padding: 80px 0 110px;
  }
  .pg-deptTop .voiceSect__hdg {
    margin-bottom: 36px;
    font-size: 3.4rem;
  }
  .pg-deptTop .voiceSect__hdg > span {
    padding: 1px 15px 2px;
  }
  .pg-deptTop .voiceSect__list > li {
    display: block;
  }
  .pg-deptTop .voiceSect__list > li figure {
    padding: 15px 14px 0;
    width: auto;
  }
  .pg-deptTop .voiceSect__list > li figure figcaption {
    left: 0;
    top: 0;
    padding: 8px 25px 8px 20px;
    font-size: 1.2rem;
  }
  .pg-deptTop .voiceSect__list > li figure figcaption .name {
    margin-right: 9px;
  }
  .pg-deptTop .voiceSect__list > li figure figcaption .name b {
    font-size: 150%;
  }
  .pg-deptTop .voiceSect__list > li .body {
    margin-top: 40px;
  }
  .pg-deptTop .voiceSect__list > li .body .hdg {
    margin-bottom: 13px;
    font-size: 1.8rem;
    letter-spacing: .05em;
  }
  .pg-deptTop .sectLg__hdg {
    margin-bottom: 30px;
  }
  .pg-deptTop .sectLg + .sectLg {
    margin-top: 80px;
  }
  .pg-deptTop .sectLg.pickUp .container {
    display: block;
  }
  .pg-deptTop .sectLg.pickUp .container .image {
    margin-top: 35px;
    padding-right: 0;
    width: auto;
  }
  .pg-deptTop .sectLg.pickUp .container .body {
    margin-top: 0;
  }
  .pg-deptTop .sectLg.flow .flowListArea {
    margin-top: 0;
  }
  .pg-deptTop .sectLg.flow .flowList {
    padding-top: 35px;
  }
  .pg-deptTop .sectLg.flow .flowList li {
    display: block;
  }
  .pg-deptTop .sectLg.flow .flowList li ~ li {
    margin-top: 60px;
  }
  .pg-deptTop .sectLg.flow .flowList__head {
    padding: 0 0 8px;
  }
  .pg-deptTop .sectLg.flow .flowList__head .container {
    margin: auto;
  }
  .pg-deptTop .sectLg.flow .flowList__head .container::before {
    left: calc(50% - 1.5px);
    top: 100%;
    width: 3px;
    height: 12px;
  }
  .pg-deptTop .sectLg.flow .flowList__body {
    display: block;
    border-width: 3px 0;
  }
  .pg-deptTop .sectLg.flow .flowList__body .image {
    width: auto;
    min-height: 0;
  }
  .pg-deptTop .sectLg.flow .flowList__body .image::before {
    content: "";
    display: block;
    padding-top: 72.727272727%;
  }
  .pg-deptTop .sectLg.flow .flowList__body .body {
    padding: 30px 4vw 25px;
  }
  .pg-deptTop .sectLg.flow .flowList__body .body .c-hdgSm {
    line-height: 1.6;
  }
  .pg-deptTop .sectLg.flow .flowList__body .body .c-hdgSm::before {
    top: 12px;
  }
  .pg-deptTop .sectLg.flow .flowLine {
    left: calc(50% - 1.5px);
    top: -8px;
    bottom: -60px;
  }
  .pg-deptTop .sectLg.facility .pickUp {
    padding-top: 10px;
  }
  .pg-deptTop .sectLg.facility .pickUp .head {
    margin: 0 12.8vw -10px 0;
    width: auto;
  }
  .pg-deptTop .sectLg.facility .pickUp .head .hdg {
    margin-bottom: 8px;
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .pg-deptTop .sectLg.facility .pickUp .head .desc {
    font-size: 1.2rem;
  }
  .pg-deptTop .sectLg.facility .bodyBlock {
    margin-bottom: 40px;
  }
  .pg-deptTop .sectLg.facility .pickUp + .bodyBlock {
    margin-top: -10px;
  }
  .pg-deptTop .sectLg.gallery .gallerySlide {
    padding: 4vw;
  }
  .pg-deptTop .sectLg.gallery .gallerySlide .swiper-slide figcaption {
    font-size: 1.4rem;
  }
  .pg-deptTop .sectLg.gallery .gallerySlide [class*="swiper-button"] {
    margin-top: -18px;
    width: 24px;
    height: 36px;
  }
  .pg-deptTop .sectLg.gallery .gallerySlide .swiper-button-prev {
    left: 3px;
  }
  .pg-deptTop .sectLg.gallery .gallerySlide .swiper-button-next {
    right: 3px;
  }
  .pg-deptTop .sectLg.teacher .c-grayBox {
    margin-top: 20px;
  }
}

/* ニュース出力つき汎用詳細 */
.pg-genDet--hasNews .c-articleSet {
  margin-bottom: 80px;
}

.pg-genDet--hasNews .p-newsSect {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .pg-genDet--hasNews .c-articleSet {
    margin-bottom: 60px;
  }
  .pg-genDet--hasNews .p-newsSect {
    margin-bottom: 60px;
  }
}

/* ニュース一覧 */
.pg-newsList .c-articleSet {
  margin-bottom: 100px;
}

.pg-newsList .p-pickUpSect {
  margin-bottom: 92px;
}

.pg-newsList .moreBtnArea .c-underlineBtn {
  margin-top: 40px;
}

.pg-newsList .p-listLinkSect {
  margin-top: 105px;
}

@media screen and (max-width: 767px) {
  .pg-newsList .c-articleSet {
    margin-bottom: 60px;
  }
  .pg-newsList .p-pickUpSect {
    margin-bottom: 54px;
  }
  .pg-newsList .moreBtnArea .c-underlineBtn {
    margin-top: 20px;
  }
}

/* ニュース詳細 */
.pg-newsDet .p-contactSect {
  margin-top: 66px;
}

.pg-newsDet .p-shareSect {
  margin-top: 72px;
}

.pg-newsDet .toListBtnArea {
  margin-top: 50px;
}

/* イベント一覧 */
.pg-eventList .p-pickUpSect {
  margin-bottom: 92px;
}

.pg-eventList .moreBtnArea .c-underlineBtn {
  margin-top: 40px;
}

.pg-eventList .p-listLinkSect {
  margin-top: 105px;
}

@media screen and (max-width: 767px) {
  .pg-eventList .p-pickUpSect {
    margin-bottom: 54px;
  }
  .pg-eventList .moreBtnArea .c-underlineBtn {
    margin-top: 20px;
  }
}

/* イベント詳細 */
.pg-eventDet .p-pageLead__desc--imageFirst .image {
  margin-top: -56px;
}

.pg-eventDet .infoList {
  margin-bottom: 125px;
}

.pg-eventDet .infoList > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pg-eventDet .infoList > li ~ li {
  margin-top: 24px;
}

.pg-eventDet .infoList .hdg {
  padding-right: 40px;
  width: 26.136363636%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: left;
  font-size: 1.6rem;
  font-weight: bold;
}

.pg-eventDet .infoList .hdg > span {
  display: block;
  position: relative;
}

.pg-eventDet .infoList .hdg > span::before {
  content: "";
  position: absolute;
  right: 0;
  top: .95em;
  width: 40px;
  height: 2px;
  background-color: #000;
}

.pg-eventDet .infoList .c-wysiwyg {
  padding-top: 3px;
  line-height: 1.75;
}

.pg-eventDet .p-contactSect {
  margin-top: 66px;
}

.pg-eventDet .p-shareSect {
  margin-top: 72px;
}

.pg-eventDet .toListBtnArea {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .pg-eventDet .p-pageLead__desc--imageFirst .image {
    margin-top: -20px;
  }
  .pg-eventDet .infoList {
    margin-bottom: 60px;
  }
  .pg-eventDet .infoList > li {
    display: block;
  }
  .pg-eventDet .infoList > li ~ li {
    margin-top: 28px;
  }
  .pg-eventDet .infoList .hdg {
    margin-bottom: 3px;
    padding-right: 0;
    width: auto;
    font-size: 1.4rem;
  }
  .pg-eventDet .infoList .hdg > span {
    display: inline-block;
    padding-right: 30px;
  }
  .pg-eventDet .infoList .hdg > span::before {
    top: .9em;
    width: 20px;
  }
  .pg-eventDet .infoList .c-wysiwyg {
    padding-top: 0;
    line-height: 1.8;
  }
}

/* 教員一覧 */
.pg-teacherList .sectLg .c-grayBox {
  margin-top: 60px;
}

.pg-teacherList .sectLg ~ .sectLg {
  margin-top: 72px;
}

@media screen and (max-width: 767px) {
  .pg-teacherList .sectLg .c-grayBox {
    margin-top: 22px;
  }
}

/* 教員詳細 */
.pg-teacherDet .profileHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 100px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.pg-teacherDet .profileHead__image {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  padding-right: 40px;
  width: 190px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pg-teacherDet .profileHead__image img {
  max-width: 100%;
}

.pg-teacherDet .profileHead__body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.pg-teacherDet .profileHead__body .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-bottom: 3px solid #000;
  padding: 17px 0 10px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-weight: bold;
}

.pg-teacherDet .profileHead__body .name::before {
  content: "";
  position: absolute;
  left: calc(-50vw + 210px);
  top: -72px;
  bottom: 0;
  z-index: -1;
  width: 100vw;
  background: url(../images/img_pat_01.png);
}

.pg-teacherDet .profileHead__body .name > span[lang="ja"] {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 2.8rem;
  letter-spacing: 1.5px;
  line-height: 1.5;
}

.pg-teacherDet .profileHead__body .name > span[lang="en"] {
  padding-bottom: 3px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.pg-teacherDet .profileHead__body dl {
  margin-top: 24px;
}

.pg-teacherDet .profileHead__body dt {
  display: inline-block;
  border: 1px solid #000;
  padding: 1px;
  width: 102px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
}

.pg-teacherDet .profileHead__body dt:not(:first-child) {
  margin-top: 13px;
}

.pg-teacherDet .profileHead__body dd {
  margin-top: 10px;
}

.pg-teacherDet .profileHead__body dd .c-wysiwyg {
  font-size: 1.4rem;
  line-height: 1.7;
}

.pg-teacherDet .profileHead__body dd .c-wysiwyg ul li::before {
  top: 8px;
}

.pg-teacherDet .sectLg {
  margin-top: 70px;
}

.pg-teacherDet .sectLg .workLink {
  margin: 35px 0 0 -2px;
}

@media screen and (max-width: 767px) {
  .pg-teacherDet .profileHead {
    padding-top: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .pg-teacherDet .profileHead__body {
    width: 100%;
  }
  .pg-teacherDet .profileHead__body .name {
    display: block;
    margin-bottom: 24px;
    padding: 0 0 10px;
  }
  .pg-teacherDet .profileHead__body .name::before {
    content: none;
  }
  .pg-teacherDet .profileHead__body .name > span {
    display: block;
  }
  .pg-teacherDet .profileHead__body .name > span[lang="ja"] {
    line-height: 1.4;
  }
  .pg-teacherDet .profileHead__body .name > span[lang="en"] {
    margin-top: -5px;
    padding-bottom: 0;
  }
  .pg-teacherDet .profileHead__body .image {
    text-align: center;
  }
  .pg-teacherDet .profileHead__body .image img {
    max-width: 60%;
  }
  .pg-teacherDet .profileHead__body dd .c-wysiwyg ul li::before {
    top: 9px;
  }
  .pg-teacherDet .sectLg {
    margin-top: 60px;
  }
  .pg-teacherDet .sectLg .workLink {
    margin: 15px 0 0 -2px;
  }
  .pg-teacherDet .profileHead + .sectLg {
    margin-top: 30px;
  }
}

/* Q&A一覧 */
.pg-qaList .pageHeader {
  position: relative;
  margin-bottom: 108px;
}

.pg-qaList .pageHeader__container {
  margin: auto;
  width: 834px;
}

.pg-qaList .pageHeader__balloon {
  position: relative;
  border-radius: 30px;
  padding: 56px 60px 63px;
  background: #1dc5ff url(../images/img_pat_01.png);
  text-align: center;
  color: #fff;
}

.pg-qaList .pageHeader__balloon > .enHdg {
  position: absolute;
  right: 100%;
  top: 45px;
  margin-right: -26px;
  border: 2px solid #000;
  border-radius: 0 5px 5px 5px;
  padding: 0 8px;
  color: #000;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.6;
}

.pg-qaList .pageHeader__balloon > .enHdg::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 6px;
  background-color: #fff;
}

.pg-qaList .pageHeader__balloon > .tip {
  position: absolute;
  right: 104px;
  top: 100%;
  width: 26px;
  height: 32px;
  background: #1dc5ff url(../images/img_pat_01.png);
}

.pg-qaList .pageHeader__balloon > .tip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 16px 13px;
  border-right-color: #fff;
  border-bottom-color: #fff;
}

.pg-qaList .pageHeader__hdg {
  display: inline-block;
  position: relative;
  margin-bottom: 48px;
  padding: 25px 40px 35px;
  font-size: 4.6rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.4;
}

.pg-qaList .pageHeader__hdg::before, .pg-qaList .pageHeader__hdg::after {
  content: "";
  position: absolute;
  border-color: #fff;
  border-width: 7px;
  width: 33px;
  height: 33px;
}

.pg-qaList .pageHeader__hdg::before {
  left: 0;
  top: 0;
  border-top-style: solid;
  border-left-style: solid;
}

.pg-qaList .pageHeader__hdg::after {
  right: 0;
  bottom: 0;
  border-right-style: solid;
  border-bottom-style: solid;
}

.pg-qaList .pageHeader__hdg > span {
  display: block;
}

.pg-qaList .pageHeader__desc {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.89;
}

.pg-qaList .pageHeader__blockLines {
  position: absolute;
  left: 50%;
  top: -158px;
  z-index: 1;
  margin-left: -683px;
  width: 1305px;
  height: 616px;
  background: url(../images/img_block-lines_01.png) no-repeat;
  background-size: 100%;
  pointer-events: none;
}

.pg-qaList .pageHeader__backBlockLines {
  position: absolute;
  left: 50%;
  top: 130px;
  z-index: -1;
  margin-left: -683px;
  width: 1324px;
  height: 321px;
  background: url(../images/img_block-lines_01_back.png) no-repeat;
  background-size: 100%;
  pointer-events: none;
}

.pg-qaList .p-pageLead {
  margin-bottom: 100px;
}

.pg-qaList .pickUpSect__container {
  margin: auto;
  width: 1000px;
}

.pg-qaList .pickUpSect__hdg {
  margin-bottom: 35px;
  text-align: center;
  font-size: 2.66rem;
  font-weight: bold;
  letter-spacing: .05em;
}

.pg-qaList .pickUpSect__hdg .q {
  margin-left: 12px;
  font-size: 4rem;
  font-weight: 600;
}

.pg-qaList .pickUpSect .pickUpList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -60px 0 0 -60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-qaList .pickUpSect .pickUpList li {
  padding: 60px 0 0 60px;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-qaList .pickUpSect .pickUpList a {
  display: block;
  border-top: 10px solid #3fc7f8;
  padding-top: 24px;
  color: inherit;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
}

.pg-qaList .pickUpSect .pickUpList a .c-underline {
  padding-bottom: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.pg-qaList .pickUpSect .pickUpList a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #1dc5ff));
  background-image: linear-gradient(180deg, transparent 95%, #1dc5ff 95%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.pg-qaList .pickUpSect .pickUpList a:hover .c-underline > span {
  background-size: 100% 100%;
}

.pg-qaList .dialogueSect {
  position: relative;
  margin: 315px 0 -152px;
  padding: 94px 0 258px;
  background: #1dc5ff url(../images/img_pat_01.png);
}

.pg-qaList .dialogueSect__hdg {
  position: absolute;
  left: 50%;
  top: -32px;
  margin-left: -161.5px;
  width: 323px;
}

.pg-qaList .dialogueSect__hdg img {
  width: 100%;
  height: auto;
}

.pg-qaList .dialogueSect .subSect__hdg {
  position: relative;
  margin-bottom: 40px;
  padding-top: 60px;
  color: #fff;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.5;
}

.pg-qaList .dialogueSect .subSect__hdg::before {
  content: "";
  position: absolute;
  left: -143px;
  top: 0;
  width: 348px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: 100%;
}

.pg-qaList .dialogueSect .subSect:nth-child(1) .subSect__hdg::before {
  background-image: url(../images/img_block-line_mono_01.png);
}

.pg-qaList .dialogueSect .subSect:nth-child(2) .subSect__hdg::before {
  background-image: url(../images/img_block-line_mono_02.png);
}

.pg-qaList .dialogueSect .subSect:nth-child(3) .subSect__hdg::before {
  background-image: url(../images/img_block-line_mono_03.png);
}

.pg-qaList .dialogueSect .subSect:nth-child(4) .subSect__hdg::before {
  background-image: url(../images/img_block-line_mono_04.png);
}

.pg-qaList .dialogueSect .subSect .balloon {
  position: relative;
  border-radius: 0 10px 10px 10px;
  padding: 70px 24px 65px 30px;
  background-color: #fff;
}

.pg-qaList .dialogueSect .subSect .balloon::before {
  content: "";
  position: absolute;
  left: 65px;
  bottom: 100%;
  margin-bottom: -1px;
  border-color: transparent;
  border-style: solid;
  border-width: 10px;
  border-right-color: #fff;
  border-bottom-color: #fff;
}

.pg-qaList .dialogueSect .subSect .qList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -70px 0 0 -50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-qaList .dialogueSect .subSect .qList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 0 0 50px;
  width: 33.333%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.pg-qaList .dialogueSect .subSect .qList .head {
  border-right: 2px solid #1dc5ff;
  border-left: 2px solid #1dc5ff;
  padding: 4px 0 0 1px;
  width: 59px;
  height: 63px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
  color: #1dc5ff;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
}

.pg-qaList .dialogueSect .subSect .qList .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 18px;
  min-height: 63px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pg-qaList .dialogueSect .subSect .qList a {
  color: inherit;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1.5;
}

.pg-qaList .dialogueSect .subSect .qList a .c-underline {
  padding-bottom: 4px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.pg-qaList .dialogueSect .subSect .qList a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #1dc5ff));
  background-image: linear-gradient(180deg, transparent 95%, #1dc5ff 95%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.pg-qaList .dialogueSect .subSect .qList a:hover .c-underline > span {
  background-size: 100% 100%;
}

.pg-qaList .dialogueSect .subSect ~ .subSect {
  margin-top: 150px;
}

@media screen and (max-width: 767px) {
  .pg-qaList .pageHeader {
    margin: 66px 6.4vw 50px;
  }
  .pg-qaList .pageHeader__container {
    width: auto;
    max-width: 327px;
  }
  .pg-qaList .pageHeader__balloon {
    border-radius: 15px;
    padding: 23px 20px 33px;
  }
  .pg-qaList .pageHeader__balloon > .enHdg {
    left: calc(6.4vw - 5px);
    right: auto;
    top: -16px;
    margin-right: 0;
  }
  .pg-qaList .pageHeader__balloon > .tip {
    right: 54px;
    width: 12px;
    height: 16px;
  }
  .pg-qaList .pageHeader__balloon > .tip::before {
    border-width: 8px 6px;
  }
  .pg-qaList .pageHeader__hdg {
    margin-bottom: 5px;
    padding: 14px 20px 20px;
    font-size: 2.2rem;
  }
  .pg-qaList .pageHeader__hdg::before, .pg-qaList .pageHeader__hdg::after {
    border-width: 4px;
    width: 17px;
    height: 17px;
  }
  .pg-qaList .pageHeader__desc {
    font-size: 1.4rem;
  }
  .pg-qaList .pageHeader__blockLines {
    top: -65px;
    margin-left: -297.5px;
    width: 595px;
    height: 294px;
    background-image: url(../images/img_block-lines_01_sp.png);
  }
  .pg-qaList .pageHeader__backBlockLines {
    top: 182px;
    margin-left: -297px;
    width: 141px;
    height: 44px;
    background-image: url(../images/img_block-lines_01_back_sp.png);
  }
  .pg-qaList .p-pageLead {
    margin-bottom: 50px;
  }
  .pg-qaList .pickUpSect__container {
    margin: 0 6.4vw;
    width: auto;
  }
  .pg-qaList .pickUpSect__hdg {
    margin-bottom: 16px;
  }
  .pg-qaList .pickUpSect .pickUpList {
    display: block;
    margin: 0;
  }
  .pg-qaList .pickUpSect .pickUpList li {
    padding: 0;
    width: auto;
  }
  .pg-qaList .pickUpSect .pickUpList li ~ li {
    margin-top: 60px;
  }
  .pg-qaList .pickUpSect .pickUpList a {
    padding-top: 30px;
    font-size: 2rem;
  }
  .pg-qaList .dialogueSect {
    margin: 158px 0 -95px;
    padding: 94px 0 120px;
  }
  .pg-qaList .dialogueSect__hdg {
    top: -22px;
    margin-left: -113px;
    width: 226px;
  }
  .pg-qaList .dialogueSect .subSect__hdg {
    padding-top: 75px;
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .pg-qaList .dialogueSect .subSect__hdg::before {
    left: -6.4vw;
  }
  .pg-qaList .dialogueSect .subSect .balloon {
    padding: 40px 6.4vw;
  }
  .pg-qaList .dialogueSect .subSect .qList {
    display: block;
    margin: 0;
  }
  .pg-qaList .dialogueSect .subSect .qList li {
    padding: 0;
    width: auto;
  }
  .pg-qaList .dialogueSect .subSect .qList li ~ li {
    margin-top: 20px;
  }
  .pg-qaList .dialogueSect .subSect .qList .head {
    padding: 1px 0 0 1px;
    width: 31px;
    height: 31px;
    font-size: 2rem;
  }
  .pg-qaList .dialogueSect .subSect .qList .body {
    padding-left: 11px;
    min-height: 31px;
  }
  .pg-qaList .dialogueSect .subSect .qList a {
    font-size: 1.4rem;
  }
  .pg-qaList .dialogueSect .subSect .qList a .c-underline {
    padding-bottom: 3px;
  }
  .pg-qaList .dialogueSect .subSect ~ .subSect {
    margin-top: 80px;
  }
}

/* Q&A詳細 */
.pg-qaDet .pageHeader {
  position: relative;
  margin-top: 20px;
  padding: 100px 0 116px;
  background: #1dc5ff url(../images/img_pat_01.png);
}

.pg-qaDet .pageHeader__enHdg {
  position: absolute;
  right: 50%;
  top: -12px;
  margin-right: 435px;
}

.pg-qaDet .pageHeader__enHdg::before {
  content: "";
  position: absolute;
  left: -142px;
  top: -6px;
  width: 466px;
  height: 54px;
  background: url(../images/img_block-line_mono_lg_01.png) no-repeat;
  background-size: 100%;
}

.pg-qaDet .pageHeader__enHdg > span {
  display: block;
  position: relative;
  border: 2px solid #000;
  border-radius: 0 5px 5px 5px;
  padding: 0 8px;
  background-color: #fff;
  color: #000;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.6;
}

.pg-qaDet .pageHeader__enHdg > span::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 6px;
  background-color: #fff;
}

.pg-qaDet .pageHeader__balloon {
  position: relative;
  margin: auto;
  border-radius: 0 10px 10px 10px;
  padding: 78px 240px 70px 140px;
  width: 1040px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}

.pg-qaDet .pageHeader__balloon::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 40px;
  border-color: transparent;
  border-style: solid;
  border-width: 10px;
  border-top-color: #fff;
  border-right-color: #fff;
}

.pg-qaDet .pageHeader__balloon > .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -80px;
}

.pg-qaDet .pageHeader__balloon > .head > .q {
  margin-right: 29px;
  border-right: 2px solid #3fc7f8;
  padding: 0 14px 16px 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #3fc7f8;
  font-size: 6rem;
  font-weight: 600;
  line-height: .85;
}

.pg-qaDet .pageHeader__balloon > .body {
  margin-top: 24px;
}

.pg-qaDet .pageHeader__balloon > .image {
  position: absolute;
  right: -20px;
  bottom: -40px;
  border: 3px solid #3fc7f8;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-qaDet .pageHeader__balloon > .image > div {
  border: 6px solid #fff;
  border-radius: inherit;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-position: 50%;
  background-size: cover;
}

.pg-qaDet .pageHeader__hdg > span {
  display: block;
}

.pg-qaDet .pageHeader__hdg > span[lang="ja"] {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.6;
}

.pg-qaDet .pageHeader__hdg > span[lang="en"] {
  margin-top: 6px;
  font-size: 1.4rem;
  font-weight: 600;
}

.pg-qaDet .voicesSect__hdg {
  position: relative;
  margin: -38px 0 115px;
  text-align: center;
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: .09em;
  line-height: 1.45;
}

.pg-qaDet .voicesSect__hdg::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  margin-left: -375px;
  width: 1059px;
  height: 158px;
  background: url(../images/img_block-lines_mono_01.png) no-repeat;
  background-size: 100%;
}

.pg-qaDet .voicesSect__hdg small {
  display: block;
  font-size: 3.4rem;
  letter-spacing: .09em;
}

.pg-qaDet .voicesSect .voicesList > li {
  position: relative;
  border: 3px solid #000;
  width: 742px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}

.pg-qaDet .voicesSect .voicesList > li::before {
  content: "";
  position: absolute;
  top: -24px;
  z-index: -1;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  background-color: #1dc5ff;
}

.pg-qaDet .voicesSect .voicesList > li > .head {
  position: relative;
}

.pg-qaDet .voicesSect .voicesList > li > .head::before {
  content: "A";
  position: absolute;
  top: 50%;
  width: 290px;
  height: 42px;
  background: url(../images/img_block-line_00.png) no-repeat;
  background-size: 100%;
  font-size: 0;
}

.pg-qaDet .voicesSect .voicesList > li > .head.-hasName::before {
  margin-top: -21px;
}

.pg-qaDet .voicesSect .voicesList > li > .head .who {
  display: inline-block;
  position: relative;
  max-width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  vertical-align: top;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
}

.pg-qaDet .voicesSect .voicesList > li > .head .status,
.pg-qaDet .voicesSect .voicesList > li > .head .name {
  background-color: #1dc5ff;
}

.pg-qaDet .voicesSect .voicesList > li > .head .status {
  padding: 8px 20px;
}

.pg-qaDet .voicesSect .voicesList > li > .head .status > p {
  display: inline-block;
  vertical-align: top;
}

.pg-qaDet .voicesSect .voicesList > li > .head .type {
  margin-right: 10px;
}

.pg-qaDet .voicesSect .voicesList > li > .head .-hasBelong .type {
  display: block;
  margin-right: 0;
}

.pg-qaDet .voicesSect .voicesList > li > .head .name {
  display: inline-block;
  padding: 4px 20px 5px;
  vertical-align: top;
  font-size: 1.4rem;
}

.pg-qaDet .voicesSect .voicesList > li > .head .image {
  position: absolute;
  top: -43px;
  border: 3px solid #000;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-qaDet .voicesSect .voicesList > li > .head .image > div {
  border: 4px solid #fff;
  border-radius: inherit;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-position: 50%;
  background-size: cover;
}

.pg-qaDet .voicesSect .voicesList > li > .body {
  padding: 40px 58px 54px;
}

.pg-qaDet .voicesSect .voicesList > li > .body > .c-wysiwyg {
  position: relative;
  overflow: hidden;
  -webkit-transition: height .4s;
  transition: height .4s;
}

.pg-qaDet .voicesSect .voicesList > li > .body > .c-wysiwyg .moreBtnArea {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.pg-qaDet .voicesSect .voicesList > li > .body > .c-wysiwyg .moreBtnArea::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
}

.pg-qaDet .voicesSect .voicesList > li > .body > .c-wysiwyg.-more {
  padding-bottom: 60px;
  height: 192px;
}

.pg-qaDet .voicesSect .voicesList > li > .body > .c-wysiwyg.-more .moreBtnArea {
  display: block;
}

.pg-qaDet .voicesSect .voicesList > li > .body > .link {
  margin-top: 14px;
  text-align: right;
}

.pg-qaDet .voicesSect .voicesList > li > .body > .link .c-arrowLink {
  padding-left: 0;
}

.pg-qaDet .voicesSect .voicesList > li > .body > .link .c-arrowLink .c-arrow {
  position: static;
  margin-left: 5px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.pg-qaDet .voicesSect .voicesList > li > .tip {
  position: absolute;
  bottom: 24px;
  width: 22px;
  height: 22px;
}

.pg-qaDet .voicesSect .voicesList > li > .tip::before, .pg-qaDet .voicesSect .voicesList > li > .tip::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-color: transparent;
  border-style: solid;
}

.pg-qaDet .voicesSect .voicesList > li > .tip::before {
  border-width: 11px;
  border-bottom-color: #000;
}

.pg-qaDet .voicesSect .voicesList > li > .tip::after {
  border-width: 9px;
  border-bottom-color: #fff;
}

.pg-qaDet .voicesSect .voicesList > li.-left {
  border-radius: 10px 10px 10px 0;
}

.pg-qaDet .voicesSect .voicesList > li.-left::before {
  left: 22px;
}

.pg-qaDet .voicesSect .voicesList > li.-left > .head {
  text-align: right;
}

.pg-qaDet .voicesSect .voicesList > li.-left > .head::before {
  left: -102px;
}

.pg-qaDet .voicesSect .voicesList > li.-left > .head .status {
  border-radius: 0 7px 0 0;
  padding-right: 45px;
}

.pg-qaDet .voicesSect .voicesList > li.-left > .head .image {
  left: calc(100% - 27px);
}

.pg-qaDet .voicesSect .voicesList > li.-left.-hasImage > .head .status {
  padding-right: 55px;
}

.pg-qaDet .voicesSect .voicesList > li.-left > .tip {
  right: 100%;
}

.pg-qaDet .voicesSect .voicesList > li.-left > .tip::before, .pg-qaDet .voicesSect .voicesList > li.-left > .tip::after {
  right: 0;
}

.pg-qaDet .voicesSect .voicesList > li.-left > .tip::before {
  border-right-color: #000;
}

.pg-qaDet .voicesSect .voicesList > li.-left > .tip::after {
  border-right-color: #fff;
}

.pg-qaDet .voicesSect .voicesList > li.-right {
  margin-right: 0;
  margin-left: auto;
  border-radius: 10px 10px 0 10px;
}

.pg-qaDet .voicesSect .voicesList > li.-right::before {
  left: -22px;
}

.pg-qaDet .voicesSect .voicesList > li.-right > .head::before {
  right: -102px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.pg-qaDet .voicesSect .voicesList > li.-right > .head .status,
.pg-qaDet .voicesSect .voicesList > li.-right > .head .name {
  padding-left: 45px;
}

.pg-qaDet .voicesSect .voicesList > li.-right > .head .status {
  border-radius: 7px 0 0 0;
}

.pg-qaDet .voicesSect .voicesList > li.-right > .head .image {
  right: calc(100% - 27px);
}

.pg-qaDet .voicesSect .voicesList > li.-right.-hasImage > .head .status,
.pg-qaDet .voicesSect .voicesList > li.-right.-hasImage > .head .name {
  padding-left: 55px;
}

.pg-qaDet .voicesSect .voicesList > li.-right > .tip {
  left: 100%;
}

.pg-qaDet .voicesSect .voicesList > li.-right > .tip::before, .pg-qaDet .voicesSect .voicesList > li.-right > .tip::after {
  left: 0;
}

.pg-qaDet .voicesSect .voicesList > li.-right > .tip::before {
  border-left-color: #000;
}

.pg-qaDet .voicesSect .voicesList > li.-right > .tip::after {
  border-left-color: #fff;
}

.pg-qaDet .voicesSect .voicesList > li.-dept1 > .head::before {
  background-image: url(../images/img_block-line_01.png);
}

.pg-qaDet .voicesSect .voicesList > li.-dept1 > .head .status,
.pg-qaDet .voicesSect .voicesList > li.-dept1 > .head .name {
  background-color: #355cfc;
}

.pg-qaDet .voicesSect .voicesList > li.-dept2 > .head::before {
  width: 232px;
  background-image: url(../images/img_block-line_02.png);
}

.pg-qaDet .voicesSect .voicesList > li.-dept2 > .head .status,
.pg-qaDet .voicesSect .voicesList > li.-dept2 > .head .name {
  background-color: #ff5b7f;
}

.pg-qaDet .voicesSect .voicesList > li.-dept3 > .head::before {
  width: 261px;
  background-image: url(../images/img_block-line_03.png);
}

.pg-qaDet .voicesSect .voicesList > li.-dept3 > .head .status,
.pg-qaDet .voicesSect .voicesList > li.-dept3 > .head .name {
  background-color: #ffb100;
}

.pg-qaDet .voicesSect .voicesList > li.-dept4 > .head::before {
  width: 261px;
  background-image: url(../images/img_block-line_04.png);
}

.pg-qaDet .voicesSect .voicesList > li.-dept4 > .head .status,
.pg-qaDet .voicesSect .voicesList > li.-dept4 > .head .name {
  background-color: #e65024;
}

.pg-qaDet .voicesSect .voicesList > li.-dept5 > .head::before {
  background-image: url(../images/img_block-line_05.png);
}

.pg-qaDet .voicesSect .voicesList > li.-dept5 > .head .status,
.pg-qaDet .voicesSect .voicesList > li.-dept5 > .head .name {
  background-color: #22ad77;
}

.pg-qaDet .voicesSect .voicesList > li.-dept6 > .head::before {
  width: 232px;
  height: 54px;
  margin-top: -27px;
  background-image: url(../images/img_block-line_06.png);
}

.pg-qaDet .voicesSect .voicesList > li ~ li {
  margin-top: 62px;
}

.pg-qaDet .contactSect {
  position: relative;
  margin-top: 202px;
  padding-bottom: 20px;
  text-align: center;
}

.pg-qaDet .contactSect::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -31px;
  margin-left: -683px;
  width: 1366px;
  height: 349px;
  background: url(../images/img_block-lines_02.png);
  background-size: 100%;
}

.pg-qaDet .contactSect__hdg {
  display: inline-block;
  position: relative;
  margin-bottom: 33px;
  padding: 17px 24px 24px;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: .08em;
  line-height: 1.4;
}

.pg-qaDet .contactSect__hdg::before, .pg-qaDet .contactSect__hdg::after {
  content: "";
  position: absolute;
  border-color: currentColor;
  border-width: 4px;
  width: 22px;
  height: 22px;
}

.pg-qaDet .contactSect__hdg::before {
  left: 0;
  top: 0;
  border-top-style: solid;
  border-left-style: solid;
}

.pg-qaDet .contactSect__hdg::after {
  right: 0;
  bottom: 0;
  border-right-style: solid;
  border-bottom-style: solid;
}

.pg-qaDet .contactSect__hdg > span {
  display: block;
}

.pg-qaDet .contactSect__desc {
  font-size: 1.6rem;
  letter-spacing: normal;
  line-height: 1.5;
}

.pg-qaDet .contactSect .c-textBtn--lg {
  margin-top: 38px;
}

.pg-qaDet .contactSect .toListLinkArea {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .pg-qaDet .pageHeader {
    margin-top: 36px;
    padding: 58px 0 137px;
  }
  .pg-qaDet .pageHeader__enHdg {
    left: calc(6.4vw * 2 - 5px);
    right: auto;
    margin-right: 0;
  }
  .pg-qaDet .pageHeader__enHdg::before {
    left: calc((6.4vw * 2 - 5px) * -1);
    top: 3px;
    width: 232px;
    height: 27px;
  }
  .pg-qaDet .pageHeader__balloon {
    margin: 0 6.4vw;
    padding: 40px 6.4vw;
    width: auto;
  }
  .pg-qaDet .pageHeader__balloon.-hasImage {
    padding-bottom: 65px;
  }
  .pg-qaDet .pageHeader__balloon::before {
    top: 87px;
  }
  .pg-qaDet .pageHeader__balloon > .head {
    margin-left: 0;
  }
  .pg-qaDet .pageHeader__balloon > .head > .q {
    margin-right: 12px;
    padding: 16px 8px 6px 0;
    font-size: 3rem;
    line-height: 1;
  }
  .pg-qaDet .pageHeader__balloon > .body {
    margin-top: 34px;
  }
  .pg-qaDet .pageHeader__balloon > .image {
    right: 6.4vw;
    bottom: -50px;
    width: 100px;
    height: 100px;
  }
  .pg-qaDet .pageHeader__balloon > .image > div {
    border: 1px solid #fff;
  }
  .pg-qaDet .pageHeader__hdg {
    padding-top: 10px;
  }
  .pg-qaDet .pageHeader__hdg > span[lang="ja"] {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .pg-qaDet .pageHeader__hdg > span[lang="en"] {
    margin-top: 5px;
    font-size: 1.2rem;
  }
  .pg-qaDet .voicesSect__hdg {
    margin: -28px 0 82px;
    font-size: 3.6rem;
    line-height: 1.2;
  }
  .pg-qaDet .voicesSect__hdg::before {
    top: 10px;
    margin-left: -187px;
    width: 529.5px;
    height: 79px;
  }
  .pg-qaDet .voicesSect__hdg small {
    font-size: 2.04rem;
  }
  .pg-qaDet .voicesSect .voicesList > li {
    width: auto;
  }
  .pg-qaDet .voicesSect .voicesList > li > .head::before {
    width: 145px;
    height: 21px;
  }
  .pg-qaDet .voicesSect .voicesList > li > .head.-hasName::before {
    margin-top: -11px;
  }
  .pg-qaDet .voicesSect .voicesList > li > .head .who {
    max-width: 55%;
    font-size: 1rem;
  }
  .pg-qaDet .voicesSect .voicesList > li > .head .status {
    padding: 9px 20px;
  }
  .pg-qaDet .voicesSect .voicesList > li > .head .type {
    margin-right: 8px;
  }
  .pg-qaDet .voicesSect .voicesList > li > .head .name {
    padding: 2px 20px 5px;
    font-size: 1.2rem;
  }
  .pg-qaDet .voicesSect .voicesList > li > .head .image {
    top: -70px;
    border: 2px solid #000;
    width: 75px;
    height: 75px;
  }
  .pg-qaDet .voicesSect .voicesList > li > .head .image > div {
    border: 2px solid #fff;
  }
  .pg-qaDet .voicesSect .voicesList > li > .body {
    padding: 30px 5vw 20px;
  }
  .pg-qaDet .voicesSect .voicesList > li > .body > .c-wysiwyg.-more {
    height: 308px;
  }
  .pg-qaDet .voicesSect .voicesList > li > .body > .link {
    margin-top: 20px;
  }
  .pg-qaDet .voicesSect .voicesList > li > .body > .link .c-arrowLink {
    font-size: 1.6rem;
  }
  .pg-qaDet .voicesSect .voicesList > li.-left > .head::before {
    left: -26px;
  }
  .pg-qaDet .voicesSect .voicesList > li.-left > .head .status {
    padding-right: 20px !important;
  }
  .pg-qaDet .voicesSect .voicesList > li.-left > .head .image {
    left: auto;
    right: -5px;
  }
  .pg-qaDet .voicesSect .voicesList > li.-right > .head::before {
    right: -26px;
  }
  .pg-qaDet .voicesSect .voicesList > li.-right > .head .status,
  .pg-qaDet .voicesSect .voicesList > li.-right > .head .name {
    padding-left: 20px !important;
  }
  .pg-qaDet .voicesSect .voicesList > li.-right > .head .image {
    left: -5px;
    right: auto;
  }
  .pg-qaDet .voicesSect .voicesList > li.-dept2 > .head::before {
    width: 116px;
  }
  .pg-qaDet .voicesSect .voicesList > li.-dept3 > .head::before {
    width: 130px;
  }
  .pg-qaDet .voicesSect .voicesList > li.-dept4 > .head::before {
    width: 130px;
  }
  .pg-qaDet .voicesSect .voicesList > li.-dept6 > .head::before {
    width: 116px;
    height: 27px;
    margin-top: -14px;
  }
  .pg-qaDet .voicesSect .voicesList > li ~ li {
    margin-top: 60px;
  }
  .pg-qaDet .voicesSect .voicesList > li ~ li.-hasImage {
    margin-top: 78px;
  }
  .pg-qaDet .contactSect {
    margin-top: 120px;
  }
  .pg-qaDet .contactSect::before {
    top: -40px;
    margin-left: -260px;
    width: 480px;
    height: 257px;
    background-image: url(../images/img_block-lines_02_sp.png);
  }
  .pg-qaDet .contactSect__hdg {
    margin-bottom: 37px;
    padding: 14px 22px 18px;
    font-size: 2.2rem;
    letter-spacing: .05em;
  }
  .pg-qaDet .contactSect__hdg::before, .pg-qaDet .contactSect__hdg::after {
    width: 17px;
    height: 17px;
  }
  .pg-qaDet .contactSect__desc {
    font-size: 1.4rem;
    letter-spacing: -.02em;
    line-height: 1.7;
  }
  .pg-qaDet .contactSect .c-textBtn--lg {
    margin-top: 71px;
  }
  .pg-qaDet .contactSect .c-textBtn--lg > span > span {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}

/* 入試情報 */
.pg-adm .p-pageHeader::before {
  bottom: -68px;
}

.pg-adm .slideArea {
  margin: -42px 0 65px;
  padding: 24px 0;
  background-color: #d9eef7;
}

.pg-adm .slideArea .swiper-container {
  visibility: hidden;
  width: 704px;
  overflow: visible;
}

.pg-adm .slideArea .swiper-container-initialized {
  visibility: visible;
}

.pg-adm .slideArea [class*="swiper-button"] {
  margin-top: -21px;
  padding: 5px;
  width: 27px;
  height: 42px;
}

.pg-adm .slideArea [class*="swiper-button"]::after {
  content: none;
}

.pg-adm .slideArea [class*="swiper-button"] svg {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .pg-adm .slideArea [class*="swiper-button"]:hover path {
    stroke: #3fc7f8;
  }
}

.pg-adm .slideArea .swiper-button-prev {
  left: auto;
  right: calc(100% + 7px);
}

.pg-adm .slideArea .swiper-button-prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.pg-adm .slideArea .swiper-button-next {
  left: calc(100% + 7px);
  right: auto;
}

.pg-adm .headArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pg-adm .headArea .p-newsSect {
  width: 800px;
}

.pg-adm .headArea .textBtnListSect {
  width: 240px;
}

.pg-adm .headArea .textBtnList li ~ li {
  margin-top: 13px;
}

.pg-adm .headArea .textBtnList .c-textBtn {
  width: 100%;
  font-weight: bold;
  line-height: 1.5;
}

.pg-adm .headArea .textBtnList .c-textBtn > span {
  min-height: 100px;
}

.pg-adm .headArea .textBtnList .c-textBtn > span > span {
  padding: 16px 15px 16px 46px;
}

.pg-adm .headArea .textBtnList .c-textBtn small {
  font-size: 87.5%;
}

.pg-adm .headArea .textBtnList .c-textBtn .c-figureIcon,
.pg-adm .headArea .textBtnList .c-textBtn .c-docIcon {
  position: absolute;
  top: 50%;
  margin-top: -11px;
}

.pg-adm .headArea .textBtnList .c-textBtn .c-figureIcon {
  left: 19px;
  width: 22px;
  height: 22px;
}

.pg-adm .headArea .textBtnList .c-textBtn .c-docIcon {
  left: 20px;
}

.pg-adm .sectLg {
  margin-bottom: 100px;
}

.pg-adm .sectLg.highschool .linkBtnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -22px 0 0 -40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-adm .sectLg.highschool .linkBtnList li {
  padding: 22px 0 0 40px;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pg-adm .sectLg.highschool .linkBtnList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: inherit;
}

.pg-adm .sectLg.highschool .linkBtnList .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  width: 100%;
  min-height: 116px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pg-adm .sectLg.highschool .linkBtnList .head,
.pg-adm .sectLg.highschool .linkBtnList .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  width: 100%;
  height: 50%;
  -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;
  line-height: 1.5;
}

.pg-adm .sectLg.highschool .linkBtnList .head {
  background-color: #1dc5ff;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

.pg-adm .sectLg.highschool .linkBtnList .head .oc {
  position: relative;
  margin-left: 30px;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 1.2;
}

.pg-adm .sectLg.highschool .linkBtnList .head .oc small {
  position: absolute;
  right: calc(100% + 20px);
  top: 50%;
  text-align: left;
  font-size: 1rem;
  letter-spacing: .27em;
  white-space: nowrap;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pg-adm .sectLg.highschool .linkBtnList .head .balloons {
  width: 180px;
}

.pg-adm .sectLg.highschool .linkBtnList .head .balloons img {
  width: 100%;
  height: auto;
}

.pg-adm .sectLg.highschool .linkBtnList .body {
  position: relative;
  background-color: #e3f7ff;
  text-align: center;
  font-size: 1.8rem;
  -webkit-transition: color .4s;
  transition: color .4s;
}

.pg-adm .sectLg.highschool .linkBtnList .body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #1dc5ff;
  -webkit-transition: height .4s;
  transition: height .4s;
}

.pg-adm .sectLg.highschool .linkBtnList .body > p {
  position: relative;
}

.pg-adm .sectLg.highschool .linkBtnList a:hover .body {
  color: #fff;
}

.pg-adm .sectLg.highschool .linkBtnList a:hover .body::before {
  height: 100%;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn {
  border-width: 0;
  font-size: 1.8rem;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn::before {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border: 2px solid #000;
  width: auto;
  height: auto;
  background-color: transparent;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn::after {
  content: none;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn > span {
  min-height: 116px;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn > span::before, .pg-adm .sectLg.adm .lgTextBtnList .c-textBtn > span::after {
  height: 2px;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn > span::before {
  left: 0;
  top: 0;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn > span::after {
  right: 0;
  bottom: 0;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn > span > span {
  padding: 20px;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn > span > span::before, .pg-adm .sectLg.adm .lgTextBtnList .c-textBtn > span > span::after {
  width: 2px;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn > span > span::before {
  right: 0;
  bottom: 0;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn > span > span::after {
  left: 0;
  top: 0;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn [lang="en"] {
  display: block;
  font-size: 77.777777778%;
  font-weight: 600;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn .icon {
  position: absolute;
  left: 34px;
  top: 50%;
  margin-top: -23px;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn .globalIcon {
  margin-left: -2px;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn .globalIcon .figure {
  stroke-width: 0;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn:hover > span::before, .pg-adm .sectLg.adm .lgTextBtnList .c-textBtn:hover > span::after {
  width: 100%;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn:hover > span > span::before, .pg-adm .sectLg.adm .lgTextBtnList .c-textBtn:hover > span > span::after {
  height: 100%;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn:hover .writingIcon line {
  stroke: #1dc5ff;
}

.pg-adm .sectLg.adm .lgTextBtnList .c-textBtn:hover .globalIcon .figure {
  fill: #1dc5ff;
}

.pg-adm .sectLg.adm .c-textBtnList ~ .c-textBtnList {
  margin-top: 12px;
}

@media screen and (max-width: 767px) {
  .pg-adm .p-pageHeader::before {
    bottom: -30px;
  }
  .pg-adm .slideArea {
    margin: -30px 0 56px;
    padding: 24px 6.4vw;
  }
  .pg-adm .slideArea .swiper-container {
    width: auto;
  }
  .pg-adm .slideArea .swiper-button-prev {
    right: calc(100% - 7px);
  }
  .pg-adm .slideArea .swiper-button-next {
    left: calc(100% - 7px);
  }
  .pg-adm .headArea {
    display: block;
    margin-bottom: 70px;
  }
  .pg-adm .headArea .p-newsSect {
    width: auto;
  }
  .pg-adm .headArea .textBtnListSect {
    margin-top: 24px;
    width: auto;
  }
  .pg-adm .headArea .textBtnList li ~ li {
    margin-top: 18px;
  }
  .pg-adm .headArea .textBtnList .c-textBtn {
    font-size: 1.6rem;
  }
  .pg-adm .headArea .textBtnList .c-textBtn > span {
    min-height: 90px;
  }
  .pg-adm .headArea .textBtnList .c-textBtn > span > span {
    padding: 16px;
  }
  .pg-adm .sectLg {
    margin-bottom: 70px;
  }
  .pg-adm .sectLg .c-textBtnList--3col > li {
    width: 50%;
  }
  .pg-adm .sectLg .c-textBtnList--3col .c-textBtn {
    height: 100%;
    font-size: 1.2rem;
  }
  .pg-adm .sectLg.highschool .linkBtnList {
    display: block;
    margin: 0;
  }
  .pg-adm .sectLg.highschool .linkBtnList li {
    padding: 0;
    width: auto;
  }
  .pg-adm .sectLg.highschool .linkBtnList li ~ li {
    margin-top: 24px;
  }
  .pg-adm .sectLg.highschool .linkBtnList .container {
    border-width: 2px;
    min-height: 90px;
  }
  .pg-adm .sectLg.highschool .linkBtnList .head {
    font-size: 1.8rem;
  }
  .pg-adm .sectLg.highschool .linkBtnList .head .oc {
    margin-left: 25px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
  .pg-adm .sectLg.highschool .linkBtnList .head .oc {
    margin-left: 70px;
  }
}

@media screen and (max-width: 767px) {
  .pg-adm .sectLg.highschool .linkBtnList .head .oc small {
    right: calc(100% + 16px);
    letter-spacing: .1em;
  }
  .pg-adm .sectLg.highschool .linkBtnList .head .balloons {
    width: 140px;
  }
  .pg-adm .sectLg.highschool .linkBtnList .body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
  .pg-adm .sectLg.adm .lgTextBtnList .c-textBtn {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .pg-adm .sectLg.adm .lgTextBtnList .c-textBtn > span {
    min-height: 90px;
  }
  .pg-adm .sectLg.adm .lgTextBtnList .c-textBtn > span > span {
    padding: 10px 20px 10px 60px;
  }
  .pg-adm .sectLg.adm .lgTextBtnList .c-textBtn .icon {
    left: 28px;
    margin-top: -18px;
  }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
  .pg-adm .sectLg.adm .lgTextBtnList .c-textBtn .icon {
    left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .pg-adm .sectLg.adm .lgTextBtnList .c-textBtn .writingIcon {
    width: 36px;
    height: 36px;
  }
  .pg-adm .sectLg.adm .lgTextBtnList .c-textBtn .globalIcon {
    width: 43px;
    height: 37px;
  }
  .pg-adm .sectLg.adm .c-textBtnList ~ .c-textBtnList {
    margin-top: 2px;
  }
}

/* OC詳細 */
.pg-ocDet .pageHeader {
  margin-bottom: 120px;
}

.pg-ocDet .pageHeader .c-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pg-ocDet .pageHeader__main {
  width: 53.8%;
}

.pg-ocDet .pageHeader__head {
  margin-bottom: 28px;
  border-top: 10px solid #000;
  border-bottom: 10px solid #000;
  padding: 24px 0 24px 10px;
}

.pg-ocDet .pageHeader__head .hdgArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.pg-ocDet .pageHeader__head .hdgArea .label {
  position: relative;
  margin-right: 20px;
  border: 2px solid #000;
  border-radius: 0 5px 5px 5px;
  padding: 0 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #000;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.6;
}

.pg-ocDet .pageHeader__head .hdgArea .label::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 6px;
  background-color: #fff;
}

.pg-ocDet .pageHeader__head .hdgArea .hdg {
  margin-top: -3px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.6;
}

.pg-ocDet .pageHeader__head .dateList .date {
  font-family: 'Barlow', sans-serif;
  font-size: 13.3rem;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1;
}

.pg-ocDet .pageHeader__head .dateList .day {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 13px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  background-color: #000;
  -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: 2.4rem;
  font-weight: bold;
  line-height: 1;
  -webkit-transform: translateY(-18px);
  transform: translateY(-18px);
}

.pg-ocDet .pageHeader__head .dateList.-span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 43px 0 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  white-space: nowrap;
}

.pg-ocDet .pageHeader__head .dateList.-span .date {
  font-size: 7.5rem;
}

.pg-ocDet .pageHeader__head .dateList.-span .day {
  margin-left: 4px;
  width: 35px;
  height: 35px;
  font-size: 1.5rem;
  -webkit-transform: translateY(-13px);
  transform: translateY(-13px);
}

.pg-ocDet .pageHeader__head .dateList.-span li ~ li {
  position: relative;
  padding-left: 83px;
}

.pg-ocDet .pageHeader__head .dateList.-span li ~ li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 31px;
  width: 46px;
  height: 16px;
  background: url(../images/arw_right_lg.svg) no-repeat;
  background-size: 46px 16px;
}

.pg-ocDet .pageHeader__head .timeList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 12px 0 0 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1;
}

.pg-ocDet .pageHeader__head .timeList li ~ li {
  position: relative;
  padding-left: 62px;
}

.pg-ocDet .pageHeader__head .timeList li ~ li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 20px;
  width: 35px;
  height: 12px;
  background: url(../images/arw_right_lg.svg) no-repeat;
  background-size: 35px 12px;
}

.pg-ocDet .pageHeader__body > .hdg {
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: .1em;
}

.pg-ocDet .pageHeader__body > .text {
  font-size: 1.6rem;
  letter-spacing: .05em;
}

.pg-ocDet .pageHeader__body > .c-wysiwyg {
  margin-top: 25px;
}

.pg-ocDet .pageHeader__aside {
  position: relative;
  padding-bottom: 50px;
  width: 41.666666667%;
}

.pg-ocDet .pageHeader__aside::before {
  content: "";
  position: absolute;
  left: -120px;
  top: calc(47% - 40px);
  bottom: 0;
  z-index: -1;
  width: 100vw;
  background-color: #d9eef7;
}

.pg-ocDet .pageHeader__aside img {
  width: 100%;
  height: auto;
}

.pg-ocDet .p-pageLead {
  margin-bottom: 130px;
}

.pg-ocDet .sectLg__header {
  clear: both;
  margin-bottom: 56px;
  text-align: center;
}

.pg-ocDet .sectLg__header > .icon {
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  background-position: 50%;
  background-size: cover;
}

.pg-ocDet .sectLg__header > .icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 2px solid #000;
  border-radius: inherit;
}

.pg-ocDet .sectLg__hdg {
  overflow: hidden;
  font-weight: 600;
}

.pg-ocDet .sectLg__hdg > span {
  display: inline-block;
  position: relative;
}

.pg-ocDet .sectLg__hdg > span::before, .pg-ocDet .sectLg__hdg > span::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 440px;
  height: 2px;
  background-color: #000;
}

.pg-ocDet .sectLg__hdg > span::before {
  right: calc(100% + 65px);
}

.pg-ocDet .sectLg__hdg > span::after {
  left: calc(100% + 65px);
}

.pg-ocDet .sectLg__hdg > span > span {
  display: block;
  letter-spacing: .1em;
}

.pg-ocDet .sectLg__hdg > span > span[lang="en"] {
  font-size: 3.2rem;
  line-height: 1.4;
}

.pg-ocDet .sectLg__hdg > span > span[lang="ja"] {
  margin-top: 4px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.pg-ocDet .sectLg > .c-image img {
  width: 100%;
  height: auto;
}

.pg-ocDet .sectLg > .c-image [data-fancybox] .icon {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border: 1px solid #000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}

.pg-ocDet .sectLg > .c-image [data-fancybox] .icon::before, .pg-ocDet .sectLg > .c-image [data-fancybox] .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #000;
}

.pg-ocDet .sectLg > .c-image [data-fancybox] .icon::before {
  margin: -1px 0 0 -6px;
  width: 12px;
  height: 2px;
}

.pg-ocDet .sectLg > .c-image [data-fancybox] .icon::after {
  margin: -6px 0 0 -1px;
  width: 2px;
  height: 12px;
}

.pg-ocDet .sectLg > .pdfLink {
  margin-top: 34px;
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
}

.pg-ocDet .sectLg ~ .sectLg {
  margin-top: 110px;
}

.pg-ocDet .pageFooter {
  position: relative;
  margin-top: 145px;
  padding-bottom: 80px;
}

.pg-ocDet .pageFooter::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 180px;
  bottom: 0;
  z-index: -2;
  background-color: #d9eef7;
}

.pg-ocDet .pageFooter .image img {
  width: 100%;
  height: auto;
}

.pg-ocDet .pageFooter .linkBtn {
  margin-top: 40px;
}

.pg-ocDet .pageFooter .linkBtn .c-textBtn {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .pg-ocDet .pageHeader {
    margin-bottom: 32px;
  }
  .pg-ocDet .pageHeader .c-container {
    display: block;
  }
  .pg-ocDet .pageHeader__main {
    width: auto;
  }
  .pg-ocDet .pageHeader__head {
    border-width: 5px;
    padding: 20px 0 17px;
  }
  .pg-ocDet .pageHeader__head .hdgArea {
    display: block;
    margin-bottom: 4px;
  }
  .pg-ocDet .pageHeader__head .hdgArea .label {
    display: inline-block;
    margin: 0 0 8px;
  }
  .pg-ocDet .pageHeader__head .hdgArea .hdg {
    margin-top: 0;
    font-size: 1.8rem;
  }
  .pg-ocDet .pageHeader__head .dateList .date {
    font-size: 7rem;
  }
  .pg-ocDet .pageHeader__head .dateList .day {
    margin-left: 7px;
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  .pg-ocDet .pageHeader__head .dateList.-span {
    margin: 18px 0 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    white-space: normal;
  }
  .pg-ocDet .pageHeader__head .dateList.-span .date {
    font-size: 4.2rem;
  }
  .pg-ocDet .pageHeader__head .dateList.-span .day {
    width: 21px;
    height: 21px;
    font-size: 1rem;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  .pg-ocDet .pageHeader__head .dateList.-span li ~ li {
    padding-left: 45px;
  }
  .pg-ocDet .pageHeader__head .dateList.-span li ~ li::before {
    left: 10px;
    top: 17px;
    width: 30px;
    height: 11px;
    background-size: 30px 11px;
  }
  .pg-ocDet .pageHeader__head .timeList {
    margin: 9px 0 0 0;
    font-size: 3.2rem;
  }
  .pg-ocDet .pageHeader__head .timeList li ~ li {
    padding-left: 42px;
  }
  .pg-ocDet .pageHeader__head .timeList li ~ li::before {
    left: 8px;
    top: 11px;
    width: 28px;
    height: 10px;
    background-size: 28px 10px;
  }
  .pg-ocDet .pageHeader__body > .text {
    font-size: 1.4rem;
  }
  .pg-ocDet .pageHeader__aside {
    margin-top: 25px;
    padding-bottom: 6.4vw;
    width: auto;
  }
  .pg-ocDet .pageHeader__aside::before {
    left: -6.4vw;
    right: -6.4vw;
    top: calc((100vw - 6.4vw * 2) / 2 - 6.67vw);
    width: auto;
  }
  .pg-ocDet .pageHeader__aside > .c-wysiwyg {
    margin-top: 25px;
  }
  .pg-ocDet .p-pageLead {
    margin-bottom: 42px;
  }
  .pg-ocDet .sectLg__header {
    margin-bottom: 25px;
  }
  .pg-ocDet .sectLg__header > .icon {
    margin-bottom: 4px;
  }
  .pg-ocDet .sectLg__hdg > span::before, .pg-ocDet .sectLg__hdg > span::after {
    top: 17px;
    width: 50vw;
  }
  .pg-ocDet .sectLg__hdg > span::before {
    right: calc(100% + 25px);
  }
  .pg-ocDet .sectLg__hdg > span::after {
    left: calc(100% + 25px);
  }
  .pg-ocDet .sectLg__hdg > span > span[lang="en"] {
    font-size: 2.4rem;
  }
  .pg-ocDet .sectLg__hdg > span > span[lang="ja"] {
    margin-top: 9px;
    font-size: 1.4rem;
  }
  .pg-ocDet .sectLg > .c-image [data-fancybox] .icon {
    right: 12px;
    bottom: 12px;
  }
  .pg-ocDet .sectLg > .pdfLink {
    margin-top: 18px;
  }
  .pg-ocDet .sectLg ~ .sectLg {
    margin-top: 80px;
  }
  .pg-ocDet .pageFooter {
    margin-top: 80px;
    padding-bottom: 35px;
  }
  .pg-ocDet .pageFooter::before {
    top: 17.836363632vw;
  }
  .pg-ocDet .pageFooter .linkBtn {
    margin-top: 30px;
  }
  .pg-ocDet .pageFooter .linkBtn .c-textBtn > span > span {
    padding: 22px 30px !important;
  }
}

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

.c-container--wide {
  width: 1080px;
}

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

.c-hdgLg {
  margin-bottom: 20px;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 2.5px;
  line-height: 1.8125;
}

.c-hdgLg::first-letter {
  color: #3fc7f8;
}

.theme-dept1 .c-hdgLg::first-letter {
  color: #355cfc;
}

.theme-dept2 .c-hdgLg::first-letter {
  color: #ff5b7f;
}

.theme-dept3 .c-hdgLg::first-letter {
  color: #ffb100;
}

.theme-dept4 .c-hdgLg::first-letter {
  color: #e65024;
}

.theme-dept5 .c-hdgLg::first-letter {
  color: #22ad77;
}

.theme-dept6 .c-hdgLg::first-letter {
  color: #3fc7f8;
}

@media screen and (max-width: 767px) {
  .c-hdgLg {
    font-size: 2.4rem;
  }
}

.c-hdgMd {
  position: relative;
  margin-bottom: 32px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.8;
}

.c-hdgMd::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  height: 3px;
  background-color: #3fc7f8;
}

.theme-dept1 .c-hdgMd::before {
  background-color: #355cfc;
}

.theme-dept2 .c-hdgMd::before {
  background-color: #ff5b7f;
}

.theme-dept3 .c-hdgMd::before {
  background-color: #ffb100;
}

.theme-dept4 .c-hdgMd::before {
  background-color: #e65024;
}

.theme-dept5 .c-hdgMd::before {
  background-color: #22ad77;
}

.theme-dept6 .c-hdgMd::before {
  background-color: #3fc7f8;
}

@media screen and (max-width: 767px) {
  .c-hdgMd {
    margin-bottom: 24px;
  }
}

.c-hdgSm {
  position: relative;
  margin-bottom: 25px;
  padding-left: 24px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}

.c-hdgSm::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 3px;
  background-color: #3fc7f8;
}

.theme-dept1 .c-hdgSm::before {
  background-color: #355cfc;
}

.theme-dept2 .c-hdgSm::before {
  background-color: #ff5b7f;
}

.theme-dept3 .c-hdgSm::before {
  background-color: #ffb100;
}

.theme-dept4 .c-hdgSm::before {
  background-color: #e65024;
}

.theme-dept5 .c-hdgSm::before {
  background-color: #22ad77;
}

.theme-dept6 .c-hdgSm::before {
  background-color: #3fc7f8;
}

@media screen and (max-width: 767px) {
  .c-hdgSm {
    margin-bottom: 12px;
  }
}

.c-randomBg {
  position: relative;
}

.c-randomBg::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: -160px;
  z-index: -1;
  margin-left: -950px;
  width: 1900px;
  background-position: 50% 0;
  background-repeat: repeat-y;
}

.p-pageLead + .c-randomBg::before {
  top: -70px;
}

.c-randomBg--1::before {
  background-image: url(../images/bg_01.png);
}

.c-randomBg--2::before {
  background-image: url(../images/bg_02.png);
}

.c-randomBg--3::before {
  background-image: url(../images/bg_03.png);
}

.theme-dept1 .c-randomBg--1::before {
  background-image: url(../images/bg_dept1_01.png);
}

.theme-dept1 .c-randomBg--2::before {
  background-image: url(../images/bg_dept1_02.png);
}

.theme-dept1 .c-randomBg--3::before {
  background-image: url(../images/bg_dept1_03.png);
}

.theme-dept2 .c-randomBg--1::before {
  background-image: url(../images/bg_dept2_01.png);
}

.theme-dept2 .c-randomBg--2::before {
  background-image: url(../images/bg_dept2_02.png);
}

.theme-dept2 .c-randomBg--3::before {
  background-image: url(../images/bg_dept2_03.png);
}

.theme-dept3 .c-randomBg--1::before {
  background-image: url(../images/bg_dept3_01.png);
}

.theme-dept3 .c-randomBg--2::before {
  background-image: url(../images/bg_dept3_02.png);
}

.theme-dept3 .c-randomBg--3::before {
  background-image: url(../images/bg_dept3_03.png);
}

.theme-dept4 .c-randomBg--1::before {
  background-image: url(../images/bg_dept4_01.png);
}

.theme-dept4 .c-randomBg--2::before {
  background-image: url(../images/bg_dept4_02.png);
}

.theme-dept4 .c-randomBg--3::before {
  background-image: url(../images/bg_dept4_03.png);
}

.theme-dept5 .c-randomBg--1::before {
  background-image: url(../images/bg_dept5_01.png);
}

.theme-dept5 .c-randomBg--2::before {
  background-image: url(../images/bg_dept5_02.png);
}

.theme-dept5 .c-randomBg--3::before {
  background-image: url(../images/bg_dept5_03.png);
}

.theme-dept6 .c-randomBg--1::before {
  background-image: url(../images/bg_dept6_01.png);
}

.theme-dept6 .c-randomBg--2::before {
  background-image: url(../images/bg_dept6_02.png);
}

.theme-dept6 .c-randomBg--3::before {
  background-image: url(../images/bg_dept6_03.png);
}

@media screen and (max-width: 767px) {
  .c-randomBg::before {
    content: none;
  }
}

.c-deptBg {
  position: relative;
  margin-bottom: -152px;
  padding-bottom: 152px;
}

.c-deptBg::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  margin-left: -950px;
  width: 1900px;
  background-position: 50% 0;
  background-repeat: repeat-y;
}

.c-deptBg--1::before {
  background-image: url(../images/bg_01.png);
}

.c-deptBg--2::before {
  background-image: url(../images/bg_02.png);
}

.c-deptBg--3::before {
  background-image: url(../images/bg_03.png);
}

.c-deptBg .c-container {
  position: relative;
}

.theme-dept1 .c-deptBg--1::before {
  background-image: url(../images/bg_dept1_01.png);
}

.theme-dept1 .c-deptBg--2::before {
  background-image: url(../images/bg_dept1_02.png);
}

.theme-dept1 .c-deptBg--3::before {
  background-image: url(../images/bg_dept1_03.png);
}

.theme-dept2 .c-deptBg--1::before {
  background-image: url(../images/bg_dept2_01.png);
}

.theme-dept2 .c-deptBg--2::before {
  background-image: url(../images/bg_dept2_02.png);
}

.theme-dept2 .c-deptBg--3::before {
  background-image: url(../images/bg_dept2_03.png);
}

.theme-dept3 .c-deptBg--1::before {
  background-image: url(../images/bg_dept3_01.png);
}

.theme-dept3 .c-deptBg--2::before {
  background-image: url(../images/bg_dept3_02.png);
}

.theme-dept3 .c-deptBg--3::before {
  background-image: url(../images/bg_dept3_03.png);
}

.theme-dept4 .c-deptBg--1::before {
  background-image: url(../images/bg_dept4_01.png);
}

.theme-dept4 .c-deptBg--2::before {
  background-image: url(../images/bg_dept4_02.png);
}

.theme-dept4 .c-deptBg--3::before {
  background-image: url(../images/bg_dept4_03.png);
}

.theme-dept5 .c-deptBg--1::before {
  background-image: url(../images/bg_dept5_01.png);
}

.theme-dept5 .c-deptBg--2::before {
  background-image: url(../images/bg_dept5_02.png);
}

.theme-dept5 .c-deptBg--3::before {
  background-image: url(../images/bg_dept5_03.png);
}

.theme-dept6 .c-deptBg--1::before {
  background-image: url(../images/bg_dept6_01.png);
}

.theme-dept6 .c-deptBg--2::before {
  background-image: url(../images/bg_dept6_02.png);
}

.theme-dept6 .c-deptBg--3::before {
  background-image: url(../images/bg_dept6_03.png);
}

@media screen and (max-width: 767px) {
  .c-deptBg {
    margin-bottom: -95px;
    padding-bottom: 95px;
  }
  .c-deptBg::before {
    content: none;
  }
}

.c-arrow {
  min-height: 8px;
}

.c-lgArrow {
  min-height: 12px;
}

.c-twIcon {
  min-height: 16px;
}

.c-docIcon,
.c-figureIcon {
  stroke-width: 0;
}

[data-whatintent="mouse"] a:hover .c-twIcon path,
[data-whatintent="mouse"] a:hover .c-fbIcon path,
[data-whatintent="mouse"] a:hover .c-mailIcon path,
[data-whatintent="mouse"] a:hover .c-lineIcon path,
[data-whatintent="mouse"] a:hover .c-instaIcon path,
[data-whatintent="mouse"] a:hover .c-docIcon path,
[data-whatintent="mouse"] a:hover .c-figureIcon path {
  fill: #1dc5ff;
}

.c-pinIcon {
  min-width: 19px;
}

.c-wysiwyg {
  font-size: 1.6rem;
  letter-spacing: .05em;
}

.c-wysiwyg h2 {
  margin-bottom: 20px;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 2.5px;
  line-height: 1.8125;
}

.c-wysiwyg h2::first-letter {
  color: #3fc7f8;
}

.theme-dept1 .c-wysiwyg h2::first-letter {
  color: #355cfc;
}

.theme-dept2 .c-wysiwyg h2::first-letter {
  color: #ff5b7f;
}

.theme-dept3 .c-wysiwyg h2::first-letter {
  color: #ffb100;
}

.theme-dept4 .c-wysiwyg h2::first-letter {
  color: #e65024;
}

.theme-dept5 .c-wysiwyg h2::first-letter {
  color: #22ad77;
}

.theme-dept6 .c-wysiwyg h2::first-letter {
  color: #3fc7f8;
}

@media screen and (max-width: 767px) {
  .c-wysiwyg h2 {
    font-size: 2.4rem;
  }
}

.c-wysiwyg h3 {
  position: relative;
  margin-bottom: 32px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.8;
}

.c-wysiwyg h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  height: 3px;
  background-color: #3fc7f8;
}

.theme-dept1 .c-wysiwyg h3::before {
  background-color: #355cfc;
}

.theme-dept2 .c-wysiwyg h3::before {
  background-color: #ff5b7f;
}

.theme-dept3 .c-wysiwyg h3::before {
  background-color: #ffb100;
}

.theme-dept4 .c-wysiwyg h3::before {
  background-color: #e65024;
}

.theme-dept5 .c-wysiwyg h3::before {
  background-color: #22ad77;
}

.theme-dept6 .c-wysiwyg h3::before {
  background-color: #3fc7f8;
}

@media screen and (max-width: 767px) {
  .c-wysiwyg h3 {
    margin-bottom: 24px;
  }
}

.c-wysiwyg h4 {
  position: relative;
  margin-bottom: 25px;
  padding-left: 24px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}

.c-wysiwyg h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 3px;
  background-color: #3fc7f8;
}

.theme-dept1 .c-wysiwyg h4::before {
  background-color: #355cfc;
}

.theme-dept2 .c-wysiwyg h4::before {
  background-color: #ff5b7f;
}

.theme-dept3 .c-wysiwyg h4::before {
  background-color: #ffb100;
}

.theme-dept4 .c-wysiwyg h4::before {
  background-color: #e65024;
}

.theme-dept5 .c-wysiwyg h4::before {
  background-color: #22ad77;
}

.theme-dept6 .c-wysiwyg h4::before {
  background-color: #3fc7f8;
}

@media screen and (max-width: 767px) {
  .c-wysiwyg h4 {
    margin-bottom: 12px;
  }
}

.c-wysiwyg table {
  width: 100%;
  line-height: 1.8;
}

.c-wysiwyg table.td-r td {
  text-align: right;
}

.c-wysiwyg th:not(:first-child),
.c-wysiwyg td:not(:first-child) {
  border-left: 4px solid #fff;
}

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

.c-wysiwyg thead th {
  border-bottom: 1px solid #000;
  background-color: #aae5ff;
  text-align: center;
}

.c-wysiwyg tbody th {
  text-align: left;
}

.c-wysiwyg thead th,
.c-wysiwyg thead td {
  padding: 13px 15px;
}

.c-wysiwyg tbody th,
.c-wysiwyg tbody td {
  border-bottom: 1px solid #c1c1c1;
  padding: 13px 18px;
}

.c-wysiwyg ul li {
  position: relative;
  padding-left: 1em;
}

.c-wysiwyg ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: #000;
}

.c-wysiwyg ol {
  padding-left: 1.5em;
  list-style-type: decimal;
}

.c-wysiwyg li + li {
  margin-top: 10px;
}

.c-wysiwyg a[target="_blank"] .c-underline > span::after, .c-wysiwyg a[href$=".pdf"] .c-underline > span::after, .c-wysiwyg a[href$=".doc"] .c-underline > span::after, .c-wysiwyg a[href$=".docx"] .c-underline > span::after, .c-wysiwyg a[href$=".xls"] .c-underline > span::after, .c-wysiwyg a[href$=".xlsx"] .c-underline > span::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  background-repeat: no-repeat;
}

.c-wysiwyg a[target="_blank"] .c-underline > span::after {
  width: 17px;
  height: 15px;
  background-image: url(../images/icon_ext.svg);
  background-size: 17px;
  vertical-align: -1px;
}

.c-wysiwyg a[href$=".pdf"] .c-underline > span::after, .c-wysiwyg a[href$=".doc"] .c-underline > span::after, .c-wysiwyg a[href$=".docx"] .c-underline > span::after, .c-wysiwyg a[href$=".xls"] .c-underline > span::after, .c-wysiwyg a[href$=".xlsx"] .c-underline > span::after {
  width: 18px;
  height: 23px;
  background-size: 18px;
  vertical-align: -5px;
}

.c-wysiwyg a[href$=".pdf"] .c-underline > span::after {
  background-image: url(../images/icon_pdf.svg);
}

.c-wysiwyg a[href$=".doc"] .c-underline > span::after, .c-wysiwyg a[href$=".docx"] .c-underline > span::after {
  background-image: url(../images/icon_word.svg);
}

.c-wysiwyg a[href$=".xls"] .c-underline > span::after, .c-wysiwyg a[href$=".xlsx"] .c-underline > span::after {
  background-image: url(../images/icon_excel.svg);
}

.c-wysiwyg a .c-underline {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.c-wysiwyg a .c-underline > span {
  padding-bottom: inherit;
  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%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.c-wysiwyg a:hover .c-underline > span {
  background-size: 100% 100%;
}

.c-wysiwyg a[target="_blank"] .c-underline > span::after {
  margin-right: 5px;
}

.c-wysiwyg img {
  max-width: 100%;
}

.c-wysiwyg hr {
  margin: 20px 0;
}

.c-wysiwyg .iframeWrapper {
  position: relative;
}

.c-wysiwyg .iframeWrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.c-wysiwyg .iframeWrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.theme-dept1 .c-wysiwyg a:not(.c-textBtn):not(.c-filledTextBtn) {
  color: #355cfc;
}

.theme-dept2 .c-wysiwyg a:not(.c-textBtn):not(.c-filledTextBtn) {
  color: #ff5b7f;
}

.theme-dept3 .c-wysiwyg a:not(.c-textBtn):not(.c-filledTextBtn) {
  color: #ffb100;
}

.theme-dept4 .c-wysiwyg a:not(.c-textBtn):not(.c-filledTextBtn) {
  color: #e65024;
}

.theme-dept5 .c-wysiwyg a:not(.c-textBtn):not(.c-filledTextBtn) {
  color: #22ad77;
}

.theme-dept6 .c-wysiwyg a:not(.c-textBtn):not(.c-filledTextBtn) {
  color: #3fc7f8;
}

@media screen and (max-width: 767px) {
  .c-wysiwyg {
    font-size: 1.4rem;
  }
  .c-wysiwyg .tableWrapper {
    margin-right: -6.4vw;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .c-wysiwyg .tableWrapper > div {
    padding: 0 6.4vw 1px 0;
    width: 200%;
  }
  .c-wysiwyg ul li::before {
    top: 11px;
  }
}

.c-text {
  font-size: 1.6rem;
  letter-spacing: .05em;
}

.c-text a[target="_blank"] .c-underline > span::after, .c-text a[href$=".pdf"] .c-underline > span::after, .c-text a[href$=".doc"] .c-underline > span::after, .c-text a[href$=".docx"] .c-underline > span::after, .c-text a[href$=".xls"] .c-underline > span::after, .c-text a[href$=".xlsx"] .c-underline > span::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  background-repeat: no-repeat;
}

.c-text a[target="_blank"] .c-underline > span::after {
  width: 17px;
  height: 15px;
  background-image: url(../images/icon_ext.svg);
  background-size: 17px;
  vertical-align: -1px;
}

.c-text a[href$=".pdf"] .c-underline > span::after, .c-text a[href$=".doc"] .c-underline > span::after, .c-text a[href$=".docx"] .c-underline > span::after, .c-text a[href$=".xls"] .c-underline > span::after, .c-text a[href$=".xlsx"] .c-underline > span::after {
  width: 18px;
  height: 23px;
  background-size: 18px;
  vertical-align: -5px;
}

.c-text a[href$=".pdf"] .c-underline > span::after {
  background-image: url(../images/icon_pdf.svg);
}

.c-text a[href$=".doc"] .c-underline > span::after, .c-text a[href$=".docx"] .c-underline > span::after {
  background-image: url(../images/icon_word.svg);
}

.c-text a[href$=".xls"] .c-underline > span::after, .c-text a[href$=".xlsx"] .c-underline > span::after {
  background-image: url(../images/icon_excel.svg);
}

.c-text a .c-underline {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.c-text a .c-underline > span {
  padding-bottom: inherit;
  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%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.c-text a:hover .c-underline > span {
  background-size: 100% 100%;
}

.c-text a[target="_blank"] .c-underline > span::after {
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .c-text {
    font-size: 1.4rem;
  }
}

.c-textBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  font-size: 1.6rem;
  letter-spacing: .05em;
  line-height: 1.6875;
}

.c-textBtn[target="_blank"] > span > span > span::after, .c-textBtn[href$=".pdf"] > span > span > span::after, .c-textBtn[href$=".doc"] > span > span > span::after, .c-textBtn[href$=".docx"] > span > span > span::after, .c-textBtn[href$=".xls"] > span > span > span::after, .c-textBtn[href$=".xlsx"] > span > span > span::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  background-repeat: no-repeat;
}

.c-textBtn[target="_blank"] > span > span > span::after {
  width: 17px;
  height: 15px;
  background-image: url(../images/icon_ext.svg);
  background-size: 17px;
  vertical-align: -1px;
}

.c-textBtn[href$=".pdf"] > span > span > span::after, .c-textBtn[href$=".doc"] > span > span > span::after, .c-textBtn[href$=".docx"] > span > span > span::after, .c-textBtn[href$=".xls"] > span > span > span::after, .c-textBtn[href$=".xlsx"] > span > span > span::after {
  width: 18px;
  height: 23px;
  background-size: 18px;
  vertical-align: -5px;
}

.c-textBtn[href$=".pdf"] > span > span > span::after {
  background-image: url(../images/icon_pdf.svg);
}

.c-textBtn[href$=".doc"] > span > span > span::after, .c-textBtn[href$=".docx"] > span > span > span::after {
  background-image: url(../images/icon_word.svg);
}

.c-textBtn[href$=".xls"] > span > span > span::after, .c-textBtn[href$=".xlsx"] > span > span > span::after {
  background-image: url(../images/icon_excel.svg);
}

.c-textBtn::before, .c-textBtn::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background-color: #fff;
}

.c-textBtn::before {
  right: -1px;
  top: -1px;
}

.c-textBtn::after {
  left: -1px;
  bottom: -1px;
}

.c-textBtn > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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;
}

.c-textBtn > span::before, .c-textBtn > span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #1dc5ff;
  -webkit-transition: width .4s;
  transition: width .4s;
}

.c-textBtn > span::before {
  left: -1px;
  top: -1px;
}

.c-textBtn > span::after {
  right: -1px;
  bottom: -1px;
}

.c-textBtn > span > span {
  padding: 16px;
}

.c-textBtn > span > span::before, .c-textBtn > span > span::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background-color: #1dc5ff;
  -webkit-transition: height .4s;
  transition: height .4s;
}

.c-textBtn > span > span::before {
  right: -1px;
  bottom: -1px;
}

.c-textBtn > span > span::after {
  left: -1px;
  top: -1px;
}

.c-textBtn > span > span > span::after {
  position: absolute;
  right: 10px;
  bottom: 11px;
}

.c-textBtn[target="_blank"] > span > span, .c-textBtn[href$=".pdf"] > span > span, .c-textBtn[href$=".doc"] > span > span, .c-textBtn[href$=".docx"] > span > span, .c-textBtn[href$=".xls"] > span > span, .c-textBtn[href$=".xlsx"] > span > span {
  padding-right: 35px;
  padding-left: 35px;
}

.c-textBtn[target="_blank"]:not([href$=".pdf"]):not([href$=".doc"]):not([href$=".docx"]):not([href$=".xls"]):not([href$=".xlsx"]) > span > span > span::before, .c-textBtn[target="_blank"]:not([href$=".pdf"]):not([href$=".doc"]):not([href$=".docx"]):not([href$=".xls"]):not([href$=".xlsx"]) > span > span > span::after {
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

.c-textBtn[target="_blank"]:not([href$=".pdf"]):not([href$=".doc"]):not([href$=".docx"]):not([href$=".xls"]):not([href$=".xlsx"]) > span > span > span::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 11px;
  width: 17px;
  height: 15px;
  background-image: url(../images/icon_ext_black.svg);
  background-repeat: no-repeat;
  background-size: 17px;
}

.c-textBtn[target="_blank"]:not([href$=".pdf"]):not([href$=".doc"]):not([href$=".docx"]):not([href$=".xls"]):not([href$=".xlsx"]) > span > span > span::after {
  opacity: 0;
}

[data-whatintent="mouse"] .c-textBtn[target="_blank"]:not([href$=".pdf"]):not([href$=".doc"]):not([href$=".docx"]):not([href$=".xls"]):not([href$=".xlsx"]):hover > span > span > span::before {
  opacity: 0;
}

[data-whatintent="mouse"] .c-textBtn[target="_blank"]:not([href$=".pdf"]):not([href$=".doc"]):not([href$=".docx"]):not([href$=".xls"]):not([href$=".xlsx"]):hover > span > span > span::after {
  opacity: 1;
}

.c-textBtn .c-arrow {
  position: absolute;
  right: 10px;
  bottom: 11px;
}

.c-textBtn[target="_blank"] .c-arrow, .c-textBtn[href$=".pdf"] .c-arrow, .c-textBtn[href$=".doc"] .c-arrow, .c-textBtn[href$=".docx"] .c-arrow, .c-textBtn[href$=".xls"] .c-arrow, .c-textBtn[href$=".xlsx"] .c-arrow {
  display: none;
}

[data-whatintent="mouse"] .c-textBtn:hover > span::before, [data-whatintent="mouse"] .c-textBtn:hover > span::after {
  width: 100%;
}

[data-whatintent="mouse"] .c-textBtn:hover > span > span::before, [data-whatintent="mouse"] .c-textBtn:hover > span > span::after {
  height: 100%;
}

[data-whatintent="mouse"] .c-textBtn:hover path {
  stroke: #1dc5ff;
}

.c-textBtn--lg {
  border-width: 2px;
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
}

.c-textBtn--lg::before, .c-textBtn--lg::after {
  width: 14px;
  height: 14px;
}

.c-textBtn--lg::before {
  right: -2px;
  top: -2px;
}

.c-textBtn--lg::after {
  left: -2px;
  bottom: -2px;
}

.c-textBtn--lg > span::before, .c-textBtn--lg > span::after {
  height: 2px;
}

.c-textBtn--lg > span::before {
  left: -2px;
  top: -2px;
}

.c-textBtn--lg > span::after {
  right: -2px;
  bottom: -2px;
}

.c-textBtn--lg > span > span {
  padding: 21px 50px;
}

.c-textBtn--lg > span > span::before, .c-textBtn--lg > span > span::after {
  width: 2px;
}

.c-textBtn--lg > span > span::before {
  right: -2px;
  bottom: -2px;
}

.c-textBtn--lg > span > span::after {
  left: -2px;
  top: -2px;
}

.c-textBtn--lg .c-lgArrow {
  position: absolute;
  right: 10px;
  bottom: 11px;
}

.c-textBtn--lg[target="_blank"] .c-lgArrow, .c-textBtn--lg[href$=".pdf"] .c-lgArrow, .c-textBtn--lg[href$=".doc"] .c-lgArrow, .c-textBtn--lg[href$=".docx"] .c-lgArrow, .c-textBtn--lg[href$=".xls"] .c-lgArrow, .c-textBtn--lg[href$=".xlsx"] .c-lgArrow {
  display: none;
}

.theme-dept1 .c-textBtn > span::before, .theme-dept1 .c-textBtn > span::after {
  background-color: #355cfc;
}

.theme-dept1 .c-textBtn > span > span::before, .theme-dept1 .c-textBtn > span > span::after {
  background-color: #355cfc;
}

[data-whatintent="mouse"] .theme-dept1 .c-textBtn:hover path {
  stroke: #355cfc;
}

.theme-dept2 .c-textBtn > span::before, .theme-dept2 .c-textBtn > span::after {
  background-color: #ff5b7f;
}

.theme-dept2 .c-textBtn > span > span::before, .theme-dept2 .c-textBtn > span > span::after {
  background-color: #ff5b7f;
}

[data-whatintent="mouse"] .theme-dept2 .c-textBtn:hover path {
  stroke: #ff5b7f;
}

.theme-dept3 .c-textBtn > span::before, .theme-dept3 .c-textBtn > span::after {
  background-color: #ffb100;
}

.theme-dept3 .c-textBtn > span > span::before, .theme-dept3 .c-textBtn > span > span::after {
  background-color: #ffb100;
}

[data-whatintent="mouse"] .theme-dept3 .c-textBtn:hover path {
  stroke: #ffb100;
}

.theme-dept4 .c-textBtn > span::before, .theme-dept4 .c-textBtn > span::after {
  background-color: #e65024;
}

.theme-dept4 .c-textBtn > span > span::before, .theme-dept4 .c-textBtn > span > span::after {
  background-color: #e65024;
}

[data-whatintent="mouse"] .theme-dept4 .c-textBtn:hover path {
  stroke: #e65024;
}

.theme-dept5 .c-textBtn > span::before, .theme-dept5 .c-textBtn > span::after {
  background-color: #22ad77;
}

.theme-dept5 .c-textBtn > span > span::before, .theme-dept5 .c-textBtn > span > span::after {
  background-color: #22ad77;
}

[data-whatintent="mouse"] .theme-dept5 .c-textBtn:hover path {
  stroke: #22ad77;
}

.theme-dept6 .c-textBtn > span::before, .theme-dept6 .c-textBtn > span::after {
  background-color: #3fc7f8;
}

.theme-dept6 .c-textBtn > span > span::before, .theme-dept6 .c-textBtn > span > span::after {
  background-color: #3fc7f8;
}

[data-whatintent="mouse"] .theme-dept6 .c-textBtn:hover path {
  stroke: #3fc7f8;
}

@media screen and (max-width: 767px) {
  .c-textBtn {
    font-size: 1.4rem;
  }
  .c-textBtn > span > span {
    padding: 18px 20px;
  }
  .c-textBtn--lg {
    font-size: 1.8rem;
  }
  .c-textBtn--lg > span > span {
    padding: 22px 50px !important;
  }
}

.c-filledTextBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  min-width: 266px;
  background-color: #6f6f6f;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: .05em;
}

.c-filledTextBtn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #1dc5ff;
  -webkit-transition: width .4s;
  transition: width .4s;
}

.theme-dept1 .c-filledTextBtn::before {
  background-color: #355cfc;
}

.theme-dept2 .c-filledTextBtn::before {
  background-color: #ff5b7f;
}

.theme-dept3 .c-filledTextBtn::before {
  background-color: #ffb100;
}

.theme-dept4 .c-filledTextBtn::before {
  background-color: #e65024;
}

.theme-dept5 .c-filledTextBtn::before {
  background-color: #22ad77;
}

.theme-dept6 .c-filledTextBtn::before {
  background-color: #3fc7f8;
}

.c-filledTextBtn > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 4px 40px 4px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-filledTextBtn .c-arrow {
  position: absolute;
  right: 11px;
  bottom: 10px;
}

.c-filledTextBtn path {
  stroke: currentColor;
}

.c-filledTextBtn:hover::before {
  width: 100%;
}

.c-image {
  max-width: 100%;
  text-align: center;
}

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

.c-image figure > div {
  position: relative;
}

.c-image figure > div::before, .c-image figure > div::after {
  content: "";
  position: absolute;
  width: 0;
  height: 8px;
  background-color: #1dc5ff;
  -webkit-transition: width .4s;
  transition: width .4s;
}

.c-image figure > div::before {
  left: 0;
  top: 0;
}

.c-image figure > div::after {
  right: 0;
  bottom: 0;
}

.c-image figure > div > div::before, .c-image figure > div > div::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 0;
  background-color: #1dc5ff;
  -webkit-transition: height .4s;
  transition: height .4s;
}

.c-image figure > div > div::before {
  right: 0;
  top: 0;
}

.c-image figure > div > div::after {
  left: 0;
  bottom: 0;
}

.c-image figure img {
  border-bottom: 2px solid transparent;
  width: 100%;
  height: auto;
}

.c-image a figure img {
  border-color: #3fc7f8;
}

.c-image figcaption {
  padding: 15px 16px;
  text-align: left;
  color: #666;
  font-size: 1.4rem;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.c-image a:hover figure > div::before, .c-image a:hover figure > div::after {
  width: 100%;
}

.c-image a:hover figure > div > div::before, .c-image a:hover figure > div > div::after {
  height: 100%;
}

.c-image a:hover figcaption {
  background-color: #1dc5ff;
  color: #fff !important;
}

.theme-dept1 .c-image figure > div::before, .theme-dept1 .c-image figure > div::after {
  background-color: #355cfc;
}

.theme-dept1 .c-image figure > div > div::before, .theme-dept1 .c-image figure > div > div::after {
  background-color: #355cfc;
}

.theme-dept1 .c-image a figure img {
  border-color: #355cfc;
}

.theme-dept1 .c-image a:hover figcaption {
  background-color: #355cfc;
}

.theme-dept2 .c-image figure > div::before, .theme-dept2 .c-image figure > div::after {
  background-color: #ff5b7f;
}

.theme-dept2 .c-image figure > div > div::before, .theme-dept2 .c-image figure > div > div::after {
  background-color: #ff5b7f;
}

.theme-dept2 .c-image a figure img {
  border-color: #ff5b7f;
}

.theme-dept2 .c-image a:hover figcaption {
  background-color: #ff5b7f;
}

.theme-dept3 .c-image figure > div::before, .theme-dept3 .c-image figure > div::after {
  background-color: #ffb100;
}

.theme-dept3 .c-image figure > div > div::before, .theme-dept3 .c-image figure > div > div::after {
  background-color: #ffb100;
}

.theme-dept3 .c-image a figure img {
  border-color: #ffb100;
}

.theme-dept3 .c-image a:hover figcaption {
  background-color: #ffb100;
}

.theme-dept4 .c-image figure > div::before, .theme-dept4 .c-image figure > div::after {
  background-color: #e65024;
}

.theme-dept4 .c-image figure > div > div::before, .theme-dept4 .c-image figure > div > div::after {
  background-color: #e65024;
}

.theme-dept4 .c-image a figure img {
  border-color: #e65024;
}

.theme-dept4 .c-image a:hover figcaption {
  background-color: #e65024;
}

.theme-dept5 .c-image figure > div::before, .theme-dept5 .c-image figure > div::after {
  background-color: #22ad77;
}

.theme-dept5 .c-image figure > div > div::before, .theme-dept5 .c-image figure > div > div::after {
  background-color: #22ad77;
}

.theme-dept5 .c-image a figure img {
  border-color: #22ad77;
}

.theme-dept5 .c-image a:hover figcaption {
  background-color: #22ad77;
}

.theme-dept6 .c-image figure > div::before, .theme-dept6 .c-image figure > div::after {
  background-color: #3fc7f8;
}

.theme-dept6 .c-image figure > div > div::before, .theme-dept6 .c-image figure > div > div::after {
  background-color: #3fc7f8;
}

.theme-dept6 .c-image a figure img {
  border-color: #3fc7f8;
}

.theme-dept6 .c-image a:hover figcaption {
  background-color: #3fc7f8;
}

@media screen and (max-width: 767px) {
  .c-image figcaption {
    font-size: 1.2rem;
  }
}

a .c-image figure img {
  border-color: #3fc7f8;
}

.theme-dept1 a .c-image figure img {
  border-color: #355cfc;
}

.theme-dept2 a .c-image figure img {
  border-color: #ff5b7f;
}

.theme-dept3 a .c-image figure img {
  border-color: #ffb100;
}

.theme-dept4 a .c-image figure img {
  border-color: #e65024;
}

.theme-dept5 a .c-image figure img {
  border-color: #22ad77;
}

.theme-dept6 a .c-image figure img {
  border-color: #3fc7f8;
}

a:hover .c-image figure > div::before, a:hover .c-image figure > div::after {
  width: 100%;
}

a:hover .c-image figure > div > div::before, a:hover .c-image figure > div > div::after {
  height: 100%;
}

a:hover .c-image figcaption {
  background-color: #1dc5ff;
  color: #fff;
}

.theme-dept1 a:hover .c-image figcaption {
  background-color: #355cfc;
}

.theme-dept2 a:hover .c-image figcaption {
  background-color: #ff5b7f;
}

.theme-dept3 a:hover .c-image figcaption {
  background-color: #ffb100;
}

.theme-dept4 a:hover .c-image figcaption {
  background-color: #e65024;
}

.theme-dept5 a:hover .c-image figcaption {
  background-color: #22ad77;
}

.theme-dept6 a:hover .c-image figcaption {
  background-color: #3fc7f8;
}

.c-underlineBtn {
  display: inline-block;
  position: relative;
  padding: 15px 50px 15px 30px;
  min-width: 412px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  color: inherit;
  font-size: 1.6rem;
  letter-spacing: .05em;
}

.c-underlineBtn::before, .c-underlineBtn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

.c-underlineBtn::before {
  width: 100%;
  background-color: #707070;
}

.c-underlineBtn::after {
  width: 0;
  background-color: #1dc5ff;
  -webkit-transition: width .4s;
  transition: width .4s;
}

.c-underlineBtn svg {
  position: absolute;
  right: 23px;
  top: 50%;
  margin-top: -8px;
}

@media screen and (max-width: 767px) {
  .c-underlineBtn {
    display: block;
    padding: 15px 40px 15px 30px;
    min-width: 0;
  }
  .c-underlineBtn svg {
    right: 16px;
  }
}

a.c-underlineBtn:hover::after {
  width: 100%;
}

a.c-underlineBtn:hover svg path {
  stroke: #1dc5ff;
}

@media screen and (min-width: 768px) {
  button.c-underlineBtn:hover::after {
    width: 100%;
  }
  button.c-underlineBtn:hover svg path {
    stroke: #1dc5ff;
  }
}

@media screen and (max-width: 767px) {
  button.c-underlineBtn {
    width: 100%;
  }
}

.c-arrowLink {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  color: inherit;
  font-size: 1.6rem;
  letter-spacing: .05em;
}

.c-arrowLink[target="_blank"] .c-underline > span::after, .c-arrowLink[href$=".pdf"] .c-underline > span::after, .c-arrowLink[href$=".doc"] .c-underline > span::after, .c-arrowLink[href$=".docx"] .c-underline > span::after, .c-arrowLink[href$=".xls"] .c-underline > span::after, .c-arrowLink[href$=".xlsx"] .c-underline > span::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  background-repeat: no-repeat;
}

.c-arrowLink[target="_blank"] .c-underline > span::after {
  width: 17px;
  height: 15px;
  background-image: url(../images/icon_ext.svg);
  background-size: 17px;
  vertical-align: -1px;
}

.c-arrowLink[href$=".pdf"] .c-underline > span::after, .c-arrowLink[href$=".doc"] .c-underline > span::after, .c-arrowLink[href$=".docx"] .c-underline > span::after, .c-arrowLink[href$=".xls"] .c-underline > span::after, .c-arrowLink[href$=".xlsx"] .c-underline > span::after {
  width: 18px;
  height: 23px;
  background-size: 18px;
  vertical-align: -5px;
}

.c-arrowLink[href$=".pdf"] .c-underline > span::after {
  background-image: url(../images/icon_pdf.svg);
}

.c-arrowLink[href$=".doc"] .c-underline > span::after, .c-arrowLink[href$=".docx"] .c-underline > span::after {
  background-image: url(../images/icon_word.svg);
}

.c-arrowLink[href$=".xls"] .c-underline > span::after, .c-arrowLink[href$=".xlsx"] .c-underline > span::after {
  background-image: url(../images/icon_excel.svg);
}

.c-arrowLink .c-underline {
  padding-bottom: 5px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.c-arrowLink .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #1dc5ff));
  background-image: linear-gradient(180deg, transparent 95%, #1dc5ff 95%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.c-arrowLink:hover .c-underline > span {
  background-size: 100% 100%;
}

.c-arrowLink .c-arrow {
  position: absolute;
  left: 4px;
  top: 11px;
}

.theme-dept1 .c-arrowLink .c-underline > span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #355cfc));
  background-image: linear-gradient(180deg, transparent 95%, #355cfc 95%);
}

.theme-dept2 .c-arrowLink .c-underline > span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #ff5b7f));
  background-image: linear-gradient(180deg, transparent 95%, #ff5b7f 95%);
}

.theme-dept3 .c-arrowLink .c-underline > span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #ffb100));
  background-image: linear-gradient(180deg, transparent 95%, #ffb100 95%);
}

.theme-dept4 .c-arrowLink .c-underline > span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #e65024));
  background-image: linear-gradient(180deg, transparent 95%, #e65024 95%);
}

.theme-dept5 .c-arrowLink .c-underline > span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #22ad77));
  background-image: linear-gradient(180deg, transparent 95%, #22ad77 95%);
}

.theme-dept6 .c-arrowLink .c-underline > span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #3fc7f8));
  background-image: linear-gradient(180deg, transparent 95%, #3fc7f8 95%);
}

@media screen and (max-width: 767px) {
  .c-arrowLink {
    font-size: 1.4rem;
  }
  .c-arrowLink .c-arrow {
    top: 9px;
  }
}

.c-label {
  display: inline-block;
  width: 140px;
  background-color: #000;
  text-align: center;
  vertical-align: top;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
}

.c-date {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.c-date b {
  margin-left: 8px;
  font-size: 150%;
  font-weight: normal;
}

.c-anchorLink {
  padding: 0 18px 11px;
}

.c-anchorLink__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -12px 0 0 -33px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-anchorLink__list > li {
  padding: 12px 0 0 33px;
}

.c-anchorLink__list a {
  color: inherit;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .05em;
}

.c-anchorLink__list a .c-underline {
  padding-bottom: 12px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.c-anchorLink__list a .c-underline > span {
  padding-bottom: inherit;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #1dc5ff));
  background-image: linear-gradient(180deg, transparent 95%, #1dc5ff 95%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

@media screen and (min-width: 768px) {
  .c-anchorLink__list a:hover .c-underline > span {
    background-size: 100% 100%;
  }
}

.c-anchorLink__list .c-underline > span {
  position: relative;
  padding-left: 26px;
}

.c-anchorLink__list .c-underline > span::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  border-bottom: 2px solid #3fc7f8;
  border-left: 2px solid #3fc7f8;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: margin-top .4s;
  transition: margin-top .4s;
}

.theme-dept1 .c-anchorLink__list .c-underline > span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #355cfc));
  background-image: linear-gradient(180deg, transparent 95%, #355cfc 95%);
}

.theme-dept1 .c-anchorLink__list .c-underline > span::before {
  border-color: #355cfc;
}

.theme-dept2 .c-anchorLink__list .c-underline > span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #ff5b7f));
  background-image: linear-gradient(180deg, transparent 95%, #ff5b7f 95%);
}

.theme-dept2 .c-anchorLink__list .c-underline > span::before {
  border-color: #ff5b7f;
}

.theme-dept3 .c-anchorLink__list .c-underline > span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #ffb100));
  background-image: linear-gradient(180deg, transparent 95%, #ffb100 95%);
}

.theme-dept3 .c-anchorLink__list .c-underline > span::before {
  border-color: #ffb100;
}

.theme-dept4 .c-anchorLink__list .c-underline > span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #e65024));
  background-image: linear-gradient(180deg, transparent 95%, #e65024 95%);
}

.theme-dept4 .c-anchorLink__list .c-underline > span::before {
  border-color: #e65024;
}

.theme-dept5 .c-anchorLink__list .c-underline > span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #22ad77));
  background-image: linear-gradient(180deg, transparent 95%, #22ad77 95%);
}

.theme-dept5 .c-anchorLink__list .c-underline > span::before {
  border-color: #22ad77;
}

.theme-dept6 .c-anchorLink__list .c-underline > span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #3fc7f8));
  background-image: linear-gradient(180deg, transparent 95%, #3fc7f8 95%);
}

.theme-dept6 .c-anchorLink__list .c-underline > span::before {
  border-color: #3fc7f8;
}

@media screen and (min-width: 768px) {
  .c-anchorLink__list a:hover .c-underline > span::before {
    margin-top: 5px;
  }
}

@media screen and (max-width: 767px) {
  .c-anchorLink {
    padding: 0 0 16px;
  }
  .c-anchorLink__list {
    margin: -8px 0 0 -20px;
  }
  .c-anchorLink__list > li {
    padding: 8px 0 0 20px;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .c-anchorLink__list a {
    font-size: 1.2rem;
  }
  .c-anchorLink__list .c-underline {
    padding-bottom: 0 !important;
  }
  .c-anchorLink__list .c-underline > span {
    display: inline-block;
    padding-left: 24px;
  }
  .c-anchorLink__list .c-underline > span::before {
    top: 5px;
  }
}

.c-imageList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -40px 0 0 -40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-imageList > li {
  display: table;
  padding: 40px 0 0 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-imageList a {
  color: inherit;
}

.c-imageList .c-image figure {
  width: 100% !important;
}

.c-imageList .body {
  padding: 16px;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.c-imageList a:hover .body {
  background-color: #1dc5ff;
  color: #fff;
}

.theme-dept1 .c-imageList a:hover .body {
  background-color: #355cfc;
}

.theme-dept2 .c-imageList a:hover .body {
  background-color: #ff5b7f;
}

.theme-dept3 .c-imageList a:hover .body {
  background-color: #ffb100;
}

.theme-dept4 .c-imageList a:hover .body {
  background-color: #e65024;
}

.theme-dept5 .c-imageList a:hover .body {
  background-color: #22ad77;
}

.theme-dept6 .c-imageList a:hover .body {
  background-color: #3fc7f8;
}

.c-imageList .hdg {
  font-size: 1.6rem;
  letter-spacing: .05em;
}

.c-imageList .desc {
  font-size: 1.4rem;
  letter-spacing: .05em;
}

.c-imageList .hdg + .desc {
  margin-top: 2px;
}

.c-imageList--2col > li {
  width: 50%;
}

.c-imageList--3col > li {
  width: 33.333%;
}

.c-imageList--4col > li {
  width: 25%;
}

.c-imageList--4col .c-image figure > div::before, .c-imageList--4col .c-image figure > div::after {
  height: 4px;
}

.c-imageList--4col .c-image figure > div > div::before, .c-imageList--4col .c-image figure > div > div::after {
  width: 4px;
}

@media screen and (max-width: 767px) {
  .c-imageList {
    margin: -23px 0 0 -23px;
  }
  .c-imageList > li {
    padding: 23px 0 0 23px;
  }
  .c-imageList .body {
    padding: 14px 16px;
  }
  .c-imageList .hdg {
    font-size: 1.4rem;
  }
  .c-imageList .desc {
    font-size: 1.2rem;
  }
  .c-imageList .hdg + .desc {
    margin-top: 4px;
  }
  .c-imageList--2col > li, .c-imageList--3col > li {
    width: 100%;
  }
  .c-imageList--4col > li {
    width: 50%;
  }
}

.c-textBtnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -22px 0 0 -40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-textBtnList > li {
  padding: 22px 0 0 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-textBtnList .c-textBtn {
  width: 100%;
}

.c-textBtnList--2col > li {
  width: 50%;
}

.c-textBtnList--3col > li {
  width: 33.333%;
}

.c-textBtnList--4col > li {
  width: 25%;
}

.c-textBtnList--4col .c-textBtn {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .c-textBtnList {
    margin: -22px 0 0 -22px;
  }
  .c-textBtnList > li {
    padding: 22px 0 0 22px;
  }
  .c-textBtnList--2col > li, .c-textBtnList--3col > li {
    width: 100%;
  }
  .c-textBtnList--4col > li {
    width: 50%;
  }
  .c-textBtnList--4col .c-textBtn {
    font-size: 1.2rem;
  }
}

.c-linkList > li:not(:first-child) {
  margin-top: 13px;
}

@media screen and (max-width: 767px) {
  .c-linkList > li:not(:first-child) {
    margin-top: 16px;
  }
}

.c-pickUpArticleList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -40px;
}

.c-pickUpArticleList > li {
  padding-left: 40px;
  width: 33.333%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-pickUpArticleList a {
  display: block;
  color: inherit;
}

.c-pickUpArticleList a:hover {
  background-color: #1dc5ff;
  color: #fff;
}

.c-pickUpArticleList article .c-image figure {
  width: 100%;
}

.c-pickUpArticleList article .c-image figure .image {
  background-position: 50%;
  background-size: cover;
}

.c-pickUpArticleList article .c-image figure .image::before {
  content: "";
  display: block;
  padding-top: 48.872180451%;
}

.c-pickUpArticleList article .body {
  padding: 0 16px 20px;
}

.c-pickUpArticleList article .meta {
  position: relative;
  padding-top: 11px;
}

.c-pickUpArticleList article .meta .c-date b {
  font-weight: bold;
}

.c-pickUpArticleList article .meta .c-label {
  position: absolute;
  right: -16px;
  top: 0;
}

.c-pickUpArticleList article .title {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
  .c-pickUpArticleList {
    display: block;
    margin-left: 0;
  }
  .c-pickUpArticleList > li {
    padding-left: 0;
    width: auto;
  }
  .c-pickUpArticleList article .body {
    padding: 0 16px 18px;
  }
  .c-pickUpArticleList article .meta {
    padding-top: 8px;
  }
}

.c-articleList > li {
  border-bottom: 1px solid #c1c1c1;
}

.c-articleList > li:first-child {
  border-top: 1px solid #c1c1c1;
}

.c-articleList a {
  display: block;
  color: inherit;
}

.c-articleList a:hover {
  background-color: #1dc5ff;
  color: #fff;
}

.c-articleList article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-articleList article .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 42px;
  width: 250px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-articleList article .meta .c-date {
  width: 110px;
}

.c-articleList article .title {
  padding-top: 2px;
  font-size: 1.6rem;
  letter-spacing: .05em;
}

.c-articleList > li.-noLabel article .meta {
  padding-right: 0;
  width: auto;
}

@media screen and (max-width: 767px) {
  .c-articleList article {
    display: block;
  }
  .c-articleList article .meta {
    display: block;
    position: relative;
    margin-bottom: 6px;
    padding-right: 0;
    width: auto;
  }
  .c-articleList article .meta .c-label {
    position: absolute;
    right: -16px;
    top: 7px;
  }
  .c-articleList article .title {
    padding-top: 0;
    font-size: 1.4rem;
  }
}

.c-pickUpEventList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -40px;
}

.c-pickUpEventList > li {
  padding-left: 40px;
  width: 33.333%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-pickUpEventList a {
  display: block;
  color: inherit;
}

.c-pickUpEventList a:hover {
  background-color: #1dc5ff;
  color: #fff;
}

.c-pickUpEventList article .c-image figure {
  width: 100%;
}

.c-pickUpEventList article .c-image figure .image {
  background-position: 50%;
  background-size: cover;
}

.c-pickUpEventList article .c-image figure .image::before {
  content: "";
  display: block;
  padding-top: 48.872180451%;
}

.c-pickUpEventList article .body {
  padding: 0 16px 20px;
}

.c-pickUpEventList article .meta {
  position: relative;
  padding-top: 11px;
}

.c-pickUpEventList article .meta .dateList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-pickUpEventList article .meta .dateList > li ~ li {
  position: relative;
  padding-left: 12px;
}

.c-pickUpEventList article .meta .dateList > li ~ li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  margin-top: 3px;
  width: 4px;
  height: 1px;
  background-color: currentColor;
}

.c-pickUpEventList article .meta .dateList .c-date b {
  font-weight: bold;
}

.c-pickUpEventList article .title {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
  .c-pickUpEventList {
    display: block;
    margin-left: 0;
  }
  .c-pickUpEventList > li {
    padding-left: 0;
    width: auto;
  }
  .c-pickUpEventList article .meta {
    padding-top: 8px;
  }
}

.c-eventList > li {
  border-bottom: 1px solid #c1c1c1;
}

.c-eventList > li:first-child {
  border-top: 1px solid #c1c1c1;
}

.c-eventList a {
  display: block;
  color: inherit;
}

.c-eventList a:hover {
  background-color: #1dc5ff;
  color: #fff;
}

.c-eventList article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 17px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-eventList article .c-image {
  width: 30.227272727%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-eventList article .c-image figure {
  width: 100%;
}

.c-eventList article .c-image figure .image {
  background-position: 50%;
  background-size: cover;
}

.c-eventList article .c-image figure .image::before {
  content: "";
  display: block;
  padding-top: 48.872180451%;
}

.c-eventList article .body {
  padding: 0 20px 0 41px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.c-eventList article .meta {
  margin-bottom: 6px;
}

.c-eventList article .meta .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: -1px;
  border: 2px solid #000;
  width: 100px;
  height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #000;
  -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.1rem;
  font-weight: bold;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.c-eventList article .meta .dateList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -10px;
}

.c-eventList article .meta .dateList > li ~ li {
  position: relative;
  padding-left: 18px;
}

.c-eventList article .meta .dateList > li ~ li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  margin-top: 2px;
  width: 6px;
  height: 2px;
  background-color: currentColor;
}

.c-eventList article .title {
  min-height: 3.5em;
  font-size: 1.8rem;
  letter-spacing: .05em;
  line-height: 1.777777778;
}

.c-eventList article .place {
  position: relative;
  margin-top: 10px;
  padding-left: 30px;
  font-size: 1.4rem;
  letter-spacing: .05em;
  line-height: 1.6;
}

.c-eventList article .place .c-pinIcon {
  position: absolute;
  left: 0;
  top: -2px;
}

.c-eventList a:hover article .place .c-pinIcon path {
  fill: #fff;
}

.c-eventList a:hover article .label {
  background-color: #fff;
  color: #000;
}

@media screen and (max-width: 767px) {
  .c-eventList article {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .c-eventList article .c-image {
    width: 36.7%;
  }
  .c-eventList article .body {
    padding: 0 12px 0 18px;
    max-width: calc(100% - 36.7%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .c-eventList article .meta {
    margin-bottom: -3px;
  }
  .c-eventList article .meta .label {
    height: 30px;
  }
}

@media screen and (max-width: 767px) and (max-width: 350px) {
  .c-eventList article .meta .c-date {
    font-size: 1rem;
  }
  .c-eventList article .meta .c-date b {
    margin-left: 5px;
  }
}

@media screen and (max-width: 767px) {
  .c-eventList article .meta .label + .dateList {
    margin-top: 10px;
  }
  .c-eventList article .title {
    min-height: 0;
    font-size: 1.4rem;
    line-height: 2;
  }
  .c-eventList article .place {
    margin-top: 15px;
    padding-left: 25px;
    font-size: 1.2rem;
  }
}

.c-teacherList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -40px 0 0 -40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-teacherList > li {
  padding: 40px 0 0 40px;
  width: 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-teacherList a {
  display: block;
  color: inherit;
}

.c-teacherList a:hover {
  background-color: #1dc5ff;
  color: #fff;
}

.theme-dept1 .c-teacherList a:hover {
  background-color: #355cfc;
}

.theme-dept2 .c-teacherList a:hover {
  background-color: #ff5b7f;
}

.theme-dept3 .c-teacherList a:hover {
  background-color: #ffb100;
}

.theme-dept4 .c-teacherList a:hover {
  background-color: #e65024;
}

.theme-dept5 .c-teacherList a:hover {
  background-color: #22ad77;
}

.theme-dept6 .c-teacherList a:hover {
  background-color: #3fc7f8;
}

.c-teacherList .c-image figure {
  width: 100%;
}

.c-teacherList .c-image figure img {
  border-bottom: none;
}

.c-teacherList .body {
  padding: 16px 15px 20px;
}

.c-teacherList .body .name {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.4;
}

.c-teacherList .body .specialty {
  position: relative;
  margin-top: 11px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 12px;
  font-size: 1.4rem;
}

.c-teacherList .body .specialty dt {
  margin-bottom: 4px;
  overflow: hidden;
  text-align: center;
}

.c-teacherList .body .specialty dt > span {
  display: inline-block;
  position: relative;
  color: #8A8A8A;
  -webkit-transition: color .5s;
  transition: color .5s;
}

.c-teacherList .body .specialty dt > span::before, .c-teacherList .body .specialty dt > span::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  width: 100%;
  height: 1px;
  background-color: #000;
  -webkit-transition: background-color .4s;
  transition: background-color .4s;
}

.c-teacherList .body .specialty dt > span::before {
  right: 100%;
  margin-right: 11px;
}

.c-teacherList .body .specialty dt > span::after {
  left: 100%;
  margin-left: 10px;
}

.c-teacherList .body .specialty dd {
  letter-spacing: .05em;
  line-height: 1.57;
}

.c-teacherList a:hover .body .specialty dt > span {
  color: #fff;
}

.c-teacherList a:hover .body .specialty dt > span::before, .c-teacherList a:hover .body .specialty dt > span::after {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .c-teacherList {
    margin: -20px 0 0 -23px;
  }
  .c-teacherList > li {
    padding: 20px 0 0 23px;
    width: 50%;
  }
  .c-teacherList .body {
    padding: 18px 15px 20px;
  }
  .c-teacherList .body .name {
    line-height: 1.3;
  }
  .c-teacherList .body .specialty {
    margin-top: 13px;
    padding-bottom: 14px;
  }
  .c-teacherList .body .specialty dd {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}

.c-grayBox {
  padding: 35px 35px 40px;
  background-color: #e5e5e5;
}

.c-grayBox__hdg {
  margin-bottom: 23px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.55;
}

.c-grayBox__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -8px 0 0 -40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-grayBox__list li {
  padding: 8px 0 0 40px;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
  letter-spacing: .05em;
  line-height: 1.55;
}

.c-grayBox__list li > div {
  position: relative;
  padding-left: 1em;
}

.c-grayBox__list li > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: #000;
}

.c-grayBox__list li small {
  font-size: 87.5%;
}

@media screen and (max-width: 767px) {
  .c-grayBox {
    padding: 35px 20px 32px 24px;
  }
  .c-grayBox__hdg {
    margin-bottom: 15px;
  }
  .c-grayBox__list {
    display: block;
    margin: 0;
  }
  .c-grayBox__list li {
    padding: 0;
    width: auto;
    font-size: 1.4rem;
  }
  .c-grayBox__list li > div::before {
    top: 8px;
  }
  .c-grayBox__list li ~ li {
    margin-top: 11px;
  }
}

.c-workList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -40px 0 0 -40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-workList > li {
  padding: 40px 0 0 40px;
  width: 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-workList a {
  color: inherit;
}

.c-workList .c-image figure {
  width: 100%;
}

.c-workList .c-image figure .image {
  background-color: #f2f2f2;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-workList .c-image figure .image::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.c-workList a .c-image figure .image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #3fc7f8;
}

.theme-dept1 .c-workList a .c-image figure .image::after {
  background-color: #355cfc;
}

.theme-dept2 .c-workList a .c-image figure .image::after {
  background-color: #ff5b7f;
}

.theme-dept3 .c-workList a .c-image figure .image::after {
  background-color: #ffb100;
}

.theme-dept4 .c-workList a .c-image figure .image::after {
  background-color: #e65024;
}

.theme-dept5 .c-workList a .c-image figure .image::after {
  background-color: #22ad77;
}

.theme-dept6 .c-workList a .c-image figure .image::after {
  background-color: #3fc7f8;
}

.c-workList .body {
  padding: 16px;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.c-workList a:hover .body {
  background-color: #1dc5ff;
  color: #fff;
}

.theme-dept1 .c-workList a:hover .body {
  background-color: #355cfc;
}

.theme-dept2 .c-workList a:hover .body {
  background-color: #ff5b7f;
}

.theme-dept3 .c-workList a:hover .body {
  background-color: #ffb100;
}

.theme-dept4 .c-workList a:hover .body {
  background-color: #e65024;
}

.theme-dept5 .c-workList a:hover .body {
  background-color: #22ad77;
}

.theme-dept6 .c-workList a:hover .body {
  background-color: #3fc7f8;
}

.c-workList .hdg {
  font-size: 1.6rem;
  letter-spacing: .05em;
}

.c-workList .desc {
  font-size: 1.4rem;
  letter-spacing: .05em;
}

.c-workList .hdg + .desc {
  margin-top: 2px;
}

@media screen and (max-width: 767px) {
  .c-workList {
    margin: -24px 0 0 -24px;
  }
  .c-workList > li {
    padding: 24px 0 0 24px;
    width: 50%;
  }
  .c-workList a:hover .c-image figure > div::before, .c-workList a:hover .c-image figure > div::after {
    width: 0;
  }
  .c-workList a:hover .c-image figure > div > div::before, .c-workList a:hover .c-image figure > div > div::after {
    height: 0;
  }
  .c-workList .body {
    padding: 14px 16px;
  }
  .c-workList .hdg {
    font-size: 1.4rem;
  }
  .c-workList .desc {
    font-size: 1.2rem;
  }
  .c-workList .hdg + .desc {
    margin-top: 4px;
  }
}

/* 記事セットコンポーネント */
.c-articleSet > [class^="c-"] ~ [class^="c-"] {
  margin-top: 75px;
}

.c-bodyAndImageSet .c-wysiwyg + .c-image {
  margin-top: 32px;
}

.c-bodyAndImageSet .c-image + .c-wysiwyg {
  margin-top: 10px;
}

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

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

.c-bodyAndImageSet--imageLeft .c-wysiwyg,
.c-bodyAndImageSet--imageLeft .c-image, .c-bodyAndImageSet--imageRight .c-wysiwyg,
.c-bodyAndImageSet--imageRight .c-image {
  padding-bottom: 10px;
}

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

.c-bodyAndImageSet--imageLeft .c-image, .c-bodyAndImageSet--imageRight .c-image {
  max-width: 43.181818182%;
}

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

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

.c-bodyAndImageSet--framed {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: 28px 39px;
  background: url(../images/img_pat_01.png);
}

@media screen and (max-width: 767px) {
  .c-bodyAndImageSet .c-image + .c-wysiwyg {
    margin-top: 32px;
  }
  .c-bodyAndImageSet--imageLeft .c-bodyAndImageSet__container, .c-bodyAndImageSet--imageRight .c-bodyAndImageSet__container {
    margin-bottom: 0;
  }
  .c-bodyAndImageSet--imageLeft .c-wysiwyg,
  .c-bodyAndImageSet--imageLeft .c-image, .c-bodyAndImageSet--imageRight .c-wysiwyg,
  .c-bodyAndImageSet--imageRight .c-image {
    padding-bottom: 0;
  }
  .c-bodyAndImageSet--imageLeft .c-image, .c-bodyAndImageSet--imageRight .c-image {
    float: none;
    padding: 0;
    max-width: none;
  }
  .c-bodyAndImageSet--framed {
    padding: 28px 4vw;
  }
}

.c-qaSet__list > li:not(:first-child) {
  margin-top: 40px;
}

.c-qaSet__list dt::before,
.c-qaSet__list dd::before {
  position: absolute;
  font-family: 'Barlow', sans-serif;
  font-size: 4rem;
  line-height: 1;
}

.c-qaSet__list dt::after,
.c-qaSet__list dd::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #000;
}

.c-qaSet__list dt {
  position: relative;
  padding: 0 0 20px 84px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .05em;
}

.c-qaSet__list dt::before {
  content: "Q.";
  left: 38px;
  top: -6px;
  color: #3fc7f8;
  font-weight: normal;
}

.c-qaSet__list dt::after {
  background-color: #3fc7f8;
}

.c-qaSet__list dd {
  position: relative;
  padding-left: 132px;
}

.c-qaSet__list dd::before {
  content: "A.";
  left: 81px;
  top: -5px;
}

.theme-dept1 .c-qaSet dt::before {
  color: #355cfc;
}

.theme-dept1 .c-qaSet dt::after {
  background-color: #355cfc;
}

.theme-dept2 .c-qaSet dt::before {
  color: #ff5b7f;
}

.theme-dept2 .c-qaSet dt::after {
  background-color: #ff5b7f;
}

.theme-dept3 .c-qaSet dt::before {
  color: #ffb100;
}

.theme-dept3 .c-qaSet dt::after {
  background-color: #ffb100;
}

.theme-dept4 .c-qaSet dt::before {
  color: #e65024;
}

.theme-dept4 .c-qaSet dt::after {
  background-color: #e65024;
}

.theme-dept5 .c-qaSet dt::before {
  color: #22ad77;
}

.theme-dept5 .c-qaSet dt::after {
  background-color: #22ad77;
}

.theme-dept6 .c-qaSet dt::before {
  color: #3fc7f8;
}

.theme-dept6 .c-qaSet dt::after {
  background-color: #3fc7f8;
}

@media screen and (max-width: 767px) {
  .c-qaSet__list > li:not(:first-child) {
    margin-top: 30px;
  }
  .c-qaSet__list dt::before,
  .c-qaSet__list dd::before {
    display: block;
    position: static;
  }
  .c-qaSet__list dt {
    padding: 0 0 15px 20px;
    font-size: 1.6rem;
  }
  .c-qaSet__list dt::before {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  .c-qaSet__list dd {
    padding-left: 20px;
  }
  .c-qaSet__list dd::before {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
  }
}

/**
 * Project
 */
.p-breadcrumb {
  margin-top: 42px;
  padding: 0 60px;
}

.p-breadcrumb ol {
  text-align: right;
}

.p-breadcrumb li {
  display: inline;
}

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

.p-breadcrumb li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  border-color: transparent;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-left-color: #000;
}

.p-breadcrumb a {
  font-size: 1.3rem;
}

.p-breadcrumb a .c-underline {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, transparent));
  background-image: linear-gradient(180deg, transparent 95%, transparent 95%);
}

.p-breadcrumb a .c-underline > span {
  padding-bottom: inherit;
  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%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s;
  transition: background-size .4s;
}

.p-breadcrumb a:hover .c-underline > span {
  background-size: 100% 100%;
}

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

@media screen and (max-width: 767px) {
  .p-breadcrumb {
    margin-top: 0;
    padding: 12px 6.4vw;
  }
  .p-breadcrumb ol {
    text-align: left;
  }
  .p-breadcrumb a {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.p-pageHeader {
  position: relative;
  margin-bottom: 110px;
}

.p-pageHeader::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 25px;
  bottom: -38px;
  background: url(../images/img_pat_01.png);
}

.p-pageHeader__frame {
  position: relative;
  z-index: 1;
  border: 3px solid #000;
  padding: 38px 25px;
  width: 883px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-pageHeader__hdg {
  font-weight: bold;
}

.p-pageHeader__hdg > span {
  display: block;
}

.p-pageHeader__hdg > span[lang="ja"] {
  font-size: 3rem;
  letter-spacing: .05em;
  line-height: 1.43;
}

.p-pageHeader__hdg > span[lang="en"] {
  font-size: 1.4rem;
  letter-spacing: .05em;
  line-height: 1.8;
}

.p-pageHeader__enHdg {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin-bottom: -.5em;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
  .p-pageHeader {
    z-index: -1;
    margin-bottom: 60px;
    padding-top: 22px;
  }
  .p-pageHeader::before {
    top: 45px;
    bottom: -28px;
  }
  .p-pageHeader__frame {
    padding: 22px 6.4vw;
    width: auto;
  }
  .p-pageHeader__hdg > span[lang="ja"] {
    font-size: 2.4rem;
  }
  .p-pageHeader__hdg > span[lang="en"] {
    font-size: 1.2rem;
  }
  .p-pageHeader__hdg > span[lang="ja"] + [lang="en"] {
    margin-top: 5px;
  }
  .p-pageHeader__enHdg {
    left: -3px;
  }
  .p-pageHeader__randomBg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -53px;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .p-pageHeader__randomBg::before {
    content: "";
    display: block;
    padding-top: 82.666666667%;
  }
  .p-pageHeader__randomBg--1 {
    background-image: url(../images/bg_01_sp.png);
  }
  .p-pageHeader__randomBg--2 {
    background-image: url(../images/bg_02_sp.png);
  }
  .p-pageHeader__randomBg--3 {
    background-image: url(../images/bg_03_sp.png);
  }
}

.p-articlePageHeader {
  margin: 24px 0 80px;
  background: url(../images/img_pat_01.png);
}

.p-articlePageHeader__frame {
  position: relative;
  padding: 75px 40px 60px 25px;
}

.p-articlePageHeader__frame::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background-color: #000;
}

.p-articlePageHeader__label {
  position: absolute;
  right: 0;
  top: 3px;
  padding: 2px 10px;
  width: 190px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #000;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

.p-articlePageHeader__date {
  position: absolute;
  top: 33px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.p-articlePageHeader__hdg {
  font-weight: bold;
}

.p-articlePageHeader__hdg > span {
  display: block;
}

.p-articlePageHeader__hdg > span[lang="ja"] {
  font-size: 2.6rem;
  letter-spacing: normal;
  line-height: 1.54;
}

.p-articlePageHeader__hdg > span[lang="en"] {
  font-size: 1.4rem;
  letter-spacing: .05em;
  line-height: 1.8;
}

.p-articlePageHeader__hdg > span[lang="ja"] + [lang="en"] {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .p-articlePageHeader {
    margin: 0 0 36px;
  }
  .p-articlePageHeader__frame {
    padding: 55px 0 31px;
  }
  .p-articlePageHeader__frame::before {
    left: -6.4vw;
    right: -6.4vw;
  }
  .p-articlePageHeader__label {
    right: -6.4vw;
    padding: 4px;
    width: 148px;
    font-size: 1.2rem;
  }
  .p-articlePageHeader__date {
    position: static;
    margin: -22px 0 8px;
  }
  .p-articlePageHeader__hdg > span[lang="ja"] {
    font-size: 1.8rem;
  }
  .p-articlePageHeader__hdg > span[lang="en"] {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .p-articlePageHeader__hdg > span[lang="ja"] + [lang="en"] {
    margin-top: 6px;
  }
}

.p-pageLead {
  margin-bottom: 70px;
}

.p-pageLead__desc--hasImage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-pageLead__desc--hasImage::before {
  content: "";
  opacity: .7;
  position: absolute;
  left: -50vw;
  right: 155px;
  top: 40px;
  bottom: 0;
  background-color: #d9eef7;
}

.p-pageLead__desc--hasImage .c-wysiwyg,
.p-pageLead__desc--hasImage .image {
  position: relative;
}

.p-pageLead__desc--hasImage .c-wysiwyg {
  padding: calc(40px + 110px) 40px 110px 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.p-pageLead__desc--hasImage .image img {
  max-width: 648px;
}

.c-randomBg .p-pageLead__desc--hasImage::before {
  content: none;
}

.c-randomBg .p-pageLead__desc--hasImage .c-wysiwyg {
  padding-top: 0;
  padding-bottom: 0;
}

.c-randomBg .p-pageLead__desc--hasImage .image img {
  max-width: 420px;
}

.p-pageLead__desc--imageFirst {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-pageLead__desc--imageFirst .c-wysiwyg {
  padding-right: 0;
}

.p-pageLead__desc--imageFirst .image {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}

.p-pageLead__desc--imageFirst .image img {
  max-width: 100% !important;
}

.p-pageLead .c-anchorLink {
  margin-top: 64px;
  border-bottom: 2px solid #000;
}

@media screen and (max-width: 767px) {
  .p-pageLead {
    margin-bottom: 34px;
  }
  .p-pageLead__desc--hasImage {
    display: block;
    padding: 60px 0 66px;
  }
  .p-pageLead__desc--hasImage::before {
    right: 52px;
    top: 0;
  }
  .p-pageLead__desc--hasImage .c-wysiwyg {
    padding: 0;
  }
  .p-pageLead__desc--hasImage .image {
    margin: 35px -6.4vw 0 0;
  }
  .p-pageLead__desc--hasImage .image img {
    width: 100%;
    max-width: none !important;
  }
  .c-randomBg .p-pageLead__desc--hasImage {
    padding-top: 0;
    padding-bottom: 0;
  }
  .c-randomBg .p-pageLead__desc--hasImage .image {
    margin-right: 0;
  }
  .p-pageLead__desc--imageFirst {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-pageLead__desc--imageFirst .image {
    margin-bottom: 12px;
  }
  .p-pageLead .c-anchorLink {
    position: relative;
    margin-top: 25px;
    border-bottom: none;
  }
  .p-pageLead .c-anchorLink::before {
    content: "";
    position: absolute;
    left: -6.4vw;
    right: -6.4vw;
    bottom: 0;
    height: 1px;
    background-color: #000;
  }
}

.p-contactSect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  padding: 33px 42px;
  width: 800px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #e5e5e5;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-contactSect__hdg {
  padding-right: 112px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: normal;
}

.p-contactSect__hdg > span {
  display: block;
}

.p-contactSect__body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.p-contactSect__body .hdg {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: normal;
}

.p-contactSect__body .c-text {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .p-contactSect {
    display: block;
    padding: 20px;
    width: auto;
  }
  .p-contactSect__hdg {
    margin-bottom: 18px;
    padding-right: 0;
    text-align: center;
    line-height: 1.4;
  }
  .p-contactSect__body .hdg {
    font-size: 1.4rem;
  }
  .p-contactSect__body .c-text {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}

.p-shareSect__hdg {
  margin-bottom: 24px;
  padding-right: 20px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.p-shareSect__hdg .c-shareIcon {
  margin-right: 7px;
  vertical-align: -2px;
}

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

.p-shareSect__list li {
  margin: 0 42px;
  text-align: center;
}

.p-shareSect__list a {
  color: inherit;
}

.p-shareSect__list .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 17px;
  height: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-shareSect__list .text {
  font-size: 1.2rem;
  font-weight: bold;
  -webkit-transition: color .4s;
  transition: color .4s;
}

.p-shareSect__list a:hover .text {
  color: #1dc5ff;
}

@media screen and (max-width: 767px) {
  .p-shareSect__list li {
    margin: 0;
    width: 25%;
  }
}

.p-pickUpSect {
  position: relative;
  padding-top: 17px;
}

.p-pickUpSect::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -2;
  height: 140px;
  background-color: #e5e5e5;
}

.c-container .p-pickUpSect::before {
  left: -100px;
  right: -100px;
}

.p-pickUpSect__hdg {
  margin-bottom: 3px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: normal;
}

@media screen and (max-width: 767px) {
  .p-pickUpSect::before {
    left: -6.4vw !important;
    right: -6.4vw !important;
  }
}

.p-listLinkSect__hdg {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: bold;
}

.p-listLinkSect > section ~ section {
  margin-top: 42px;
}

.p-newsSect__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-newsSect__header .hdg {
  padding-right: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: .07em;
}

.p-newsSect__header .hdg small {
  margin-left: 25px;
  font-size: 61.54%;
  font-weight: 600;
}

.p-newsSect__header .moreLink {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #999;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.p-newsSect__header .moreLink .c-lgArrow {
  margin-left: 3px;
}

.p-newsSect__header .moreLink .c-lgArrow path {
  stroke: currentColor;
}

.p-newsSect__header .moreLink:hover .c-lgArrow path {
  stroke: #1dc5ff;
}

.p-newsSect__list > li {
  border-bottom: 1px solid #c1c1c1;
}

.p-newsSect__list > li:first-child {
  border-top: 1px solid #c1c1c1;
}

.p-newsSect__list a {
  display: block;
  color: inherit;
  -webkit-transition: background-color .4s, color .3s;
  transition: background-color .4s, color .3s;
}

.p-newsSect__list a:hover {
  background-color: #1dc5ff;
  color: #fff;
}

.p-newsSect__list article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 17px 20px 17px 10px;
}

.p-newsSect__list article .meta {
  width: 102px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-newsSect__list article .title {
  padding-top: 3px;
  font-size: 1.6rem;
  letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
  .p-newsSect__header {
    margin-bottom: 12px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .p-newsSect__header .hdg {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .p-newsSect__header .hdg small {
    display: block;
    margin: 6px 0 5px;
    padding-left: 1px;
  }
  .p-newsSect__list article {
    display: block;
    padding: 10px 5px;
  }
  .p-newsSect__list article .meta {
    width: auto;
  }
  .p-newsSect__list article .title {
    padding-top: 0;
    font-size: 1.4rem;
  }
}

/**
 * Other
 */
#js-loadingCanvas {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10001;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#js-loadingCanvas.-active {
  pointer-events: auto;
}

@media print {
  #js-loadingCanvas {
    display: none;
  }
}

/* fancybox */
.fancybox-container.workModal .fancybox-bg {
  background-color: rgba(255, 255, 255, 0.9);
}

.fancybox-container.workModal.fancybox-is-open .fancybox-toolbar {
  opacity: 1;
  visibility: visible;
}

.fancybox-container.workModal .fancybox-button--close {
  padding: 20px;
  width: calc(30px + (20px * 2));
  height: calc(30px + (20px * 2));
  background-color: transparent;
}

.fancybox-container.workModal .fancybox-button--close path {
  stroke-width: 2;
}

.fancybox-container.workModal .fancybox-navigation {
  display: none;
}

.fancybox-container.workModal .fancybox-slide--html {
  padding: 0;
}

.fancybox-container.workModal .fancybox-content {
  position: relative;
  padding: 40px 65px;
  width: 880px;
  background-color: #e5e5e5;
  overflow: hidden;
  text-align: center;
}

.fancybox-container.workModal .fancybox-content figure img {
  max-width: 100%;
}

.fancybox-container.workModal .fancybox-content figcaption {
  margin-top: 30px;
  font-size: 1.6rem;
  letter-spacing: normal;
  line-height: 1.8;
}

.fancybox-container.workModal .fancybox-content button {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  padding: 10px;
  line-height: 0;
}

.fancybox-container.workModal .fancybox-content button[data-fancybox-prev] {
  left: 14px;
}

.fancybox-container.workModal .fancybox-content button[data-fancybox-next] {
  right: 14px;
}

.fancybox-container.workModal .fancybox-content button[disabled] path {
  stroke: #bbb;
}

@media screen and (max-width: 767px) {
  .fancybox-container.workModal .fancybox-button--close {
    padding: 21px;
    width: calc(18px + (21px * 2));
    height: calc(18px + (21px * 2));
  }
  .fancybox-container.workModal .fancybox-button--close path {
    stroke-width: 3;
  }
  .fancybox-container.workModal .fancybox-slide--html {
    padding: 60px 6.4vw 6.4vw;
  }
  .fancybox-container.workModal .fancybox-content {
    padding: 30px 50px 22px;
  }
  .fancybox-container.workModal .fancybox-content figcaption {
    font-size: 1.4rem;
  }
  .fancybox-container.workModal .fancybox-content button[data-fancybox-prev] {
    left: 5px;
  }
  .fancybox-container.workModal .fancybox-content button[data-fancybox-next] {
    right: 5px;
  }
}

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

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

@media print {
  .u-spOnly {
    display: none !important;
  }
}

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

.u-taRight {
  text-align: right;
}

/**
 * keyframes
 */
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color .2s;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

/**
 * Swiper 5.2.1
 * 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: January 15, 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: #000000;
}

.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;
}

.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;
}
