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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

html {
  font-size: 10px;
}

body {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  background: #fff;
  line-height: 1.5;
}

.wrapper {
  position: relative;
}

.mainContent {
  margin-top: 140px;
  display: block;
}
@media screen and (max-width: 1000px) {
  .mainContent {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .mainContent {
    margin-top: 80px;
  }
}

.container {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
}

a {
  color: #333;
  text-decoration: none;
  transition: 0.3s ease-in-out all;
}
a:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.flex {
  display: flex;
}

.flexWrap {
  flex-wrap: wrap;
}

.justifyEnd {
  justify-content: flex-end;
}

.justifyCenter {
  justify-content: center;
}

.justifyBet {
  justify-content: space-between;
}

.justifyAround {
  justify-content: space-around;
}

.itemsCenter {
  align-items: center;
}

.itemsEnd {
  align-items: flex-end;
}

.center {
  text-align: center;
}

.textRight {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.txtLink {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

@media print, screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

.objectFit {
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.displayNone {
  display: none;
}

.verticalTop {
  vertical-align: top;
}

.verticalMiddle {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .headerTop {
    margin-top: -80px;
    padding-top: 80px;
  }
}

.scrollArea {
  overflow-y: auto;
  scrollbar-color: #ddd #f4f4f4;
  scrollbar-width: thin;
  scrollbar-base-color: #ddd;
  scrollbar-track-color: #f4f4f4;
  scrollbar-arrow-color: #f4f4f4;
  scrollbar-shadow-color: #ddd;
}
.scrollArea::-webkit-scrollbar {
  width: 10px;
}
.scrollArea::-webkit-scrollbar-track {
  background: #f4f4f4;
}
.scrollArea::-webkit-scrollbar-thumb {
  background: #ddd;
}

@media print, screen and (min-width: 768px) {
  .modalOpen,
.modalClose {
    cursor: pointer;
    transition: 0.3s ease-in-out all;
  }
}
@media print, screen and (min-width: 768px) {
  .modalOpen:hover,
.modalClose:hover {
    opacity: 0.8;
  }
}

.modalOverlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.64);
  cursor: pointer;
  z-index: 9999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.modalClose {
  width: 50px;
  height: 50px;
  z-index: 99999;
  position: fixed;
  top: 40px;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .modalClose {
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
  }
}
.modalClose span {
  text-indent: 100%;
  width: 50px;
  height: 3px;
  margin: auto 0;
  background: #004da0;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .modalClose span {
    width: 30px;
  }
}
.modalClose span:first-child {
  transform: rotate(-45deg);
}
.modalClose span:last-child {
  transform: rotate(45deg);
}

.modalArea01 {
  margin: auto;
  z-index: 99999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .modalArea01 {
    width: 95%;
  }
}
.modalArea01 .flex {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.fadeinUnder {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1000ms;
}

.fadeinRight {
  opacity: 0;
  transform: translate(50px, 0);
  transition: all 1000ms;
}

.fadeinLeft {
  opacity: 0;
  transform: translate(-50px, 0);
  transition: all 1000ms;
}

.fadeinUnder.scrollin,
.fadeinRight.scrollin,
.fadeinLeft.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.toTopBtn {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .toTopBtn {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
}

.marker {
  font-weight: bold;
  background: linear-gradient(transparent 70%, #fff061 70%);
}

.generalBtn a, .generalBtn button, .generalBtn .current, .generalBtn .gray {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  height: 50px;
  width: 320px;
  margin: auto;
  padding: 0 45px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .generalBtn a, .generalBtn button, .generalBtn .current, .generalBtn .gray {
    text-align: center;
    font-size: 1.4rem;
    height: 43px;
    width: 100%;
    padding: 0 35px;
    justify-content: center;
  }
}
.generalBtn .gray {
  background: #9b9b9b;
  cursor: default;
}
.generalBtn.blue a, .generalBtn.blue button {
  background: url(/video/common/images/arrow_circle_common01.svg) no-repeat center right 15px, #004da0;
  background-size: 20px auto;
}
@media screen and (max-width: 767px) {
  .generalBtn.blue a, .generalBtn.blue button {
    background: url(/video/common/images/arrow_circle_common01.svg) no-repeat center right 15px, #004da0;
    background-size: 13px auto;
  }
}
.generalBtn.lightBlue a, .generalBtn.lightBlue button, .generalBtn.lightBlue .current {
  background: url(/video/common/images/arrow_circle_common01.svg) no-repeat center right 15px, #1791ce;
  background-size: 20px auto;
}
@media screen and (max-width: 767px) {
  .generalBtn.lightBlue a, .generalBtn.lightBlue button, .generalBtn.lightBlue .current {
    background: url(/video/common/images/arrow_circle_common01.svg) no-repeat center right 15px, #1791ce;
    background-size: 13px auto;
  }
}
.generalBtn.red a, .generalBtn.red button {
  background: url(/video/common/images/arrow_circle_common01.svg) no-repeat center right 15px, #de0031;
  background-size: 20px auto;
}
@media screen and (max-width: 767px) {
  .generalBtn.red a, .generalBtn.red button {
    background: url(/video/common/images/arrow_circle_common01.svg) no-repeat center right 15px, #de0031;
    background-size: 13px auto;
  }
}
.generalBtn.white a {
  color: #004da0;
  background: url(/video/common/images/arrow_circle_common03.svg) no-repeat center left 15px;
  background-size: 20px auto;
  border: 1px solid #004da0;
}
@media screen and (max-width: 767px) {
  .generalBtn.white a {
    background: url(/video/common/images/arrow_circle_common03.svg) no-repeat center left 15px;
    background-size: 13px auto;
  }
}
.generalBtn a:disabled, .generalBtn button:disabled {
  background: url(/video/common/images/arrow_circle_common01.svg) no-repeat center right 15px, #ddd;
  background-size: 20px auto;
}
.generalBtn a:disabled:hover, .generalBtn button:disabled:hover {
  cursor: default;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .generalBtn a:disabled, .generalBtn button:disabled {
    background: url(/video/common/images/arrow_circle_common01.svg) no-repeat center right 15px, #ddd;
    background-size: 13px auto;
  }
}

@media screen and (max-width: 1000px) and (min-width: 768px) {
  .localNav01 .generalBtn {
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  .localNav01 .generalBtn {
    max-width: 490px;
    width: 90%;
    margin: 0 auto;
  }
}
.localNav01 .generalBtn a,
.localNav01 .generalBtn span {
  width: 100%;
  padding: 0;
  padding-right: 10px;
}
@media print, screen and (min-width: 768px) {
  .localNav01 .generalBtn a,
.localNav01 .generalBtn span {
    height: 48px;
    background-size: 18px auto;
  }
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  .localNav01 .generalBtn:not(:nth-child(-n+2)) {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .localNav01 .generalBtn:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media print, screen and (min-width: 1001px) {
  .localNav01.col3 .generalBtn {
    width: 32%;
  }
}
@media print, screen and (min-width: 1001px) {
  .localNav01.col4 .generalBtn {
    width: 23.5%;
  }
}
.localNav01.mb30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .localNav01.mb30 {
    margin-bottom: 20px;
  }
}

.localNav02 {
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .localNav02 {
    font-size: 1.6rem;
  }
}
.localNav02 li {
  border-style: solid;
  border-color: #9b9b9b;
  border-radius: 1px;
}
@media print, screen and (min-width: 768px) {
  .localNav02 li {
    border-right-width: 1px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  .localNav02 li {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .localNav02 li {
    max-width: 490px;
    width: 90%;
    margin: 0 auto;
    border-bottom-width: 1px;
  }
}
@media print, screen and (min-width: 768px) {
  .localNav02 li:first-child {
    border-left-width: 1px;
  }
}
@media screen and (max-width: 767px) {
  .localNav02 li:first-child {
    border-top-width: 1px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  .localNav02 li:nth-child(2n+1) {
    border-left-width: 1px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  .localNav02 li:not(:nth-child(-n+2)) {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .localNav02 li:not(:last-child) {
    margin-bottom: 0;
  }
}
.localNav02 a {
  color: #004da0;
  height: 40px;
  padding-right: 20px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015%2015%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23004da0%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M7.5%2C0A7.5%2C7.5%2C0%2C1%2C0%2C15%2C7.5%2C7.5%2C7.5%2C0%2C0%2C0%2C7.5%2C0ZM5.29%2C11.91V3.09L11.47%2C7.5Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat 95% 50%/18px 18px;
}
@media screen and (max-width: 767px) {
  .localNav02 a {
    background-size: 13px auto;
  }
}
@media print, screen and (min-width: 1001px) {
  .localNav02.col4 li {
    width: 25%;
  }
}

.err-sec {
  font-size: 18px;
  font-weight: bold;
  color: #ff0000;
  line-height: 1.8;
  margin-bottom: 5px;
}

header {
  width: 100%;
  z-index: 9999;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  header {
    position: fixed;
  }
}

.headerInner {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .headerInner {
    width: 100%;
  }
}

.logo {
  width: 320px;
}
@media screen and (max-width: 1000px) {
  .logo {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .logo {
    width: 190px;
    margin: 5px 0 4px 3%;
  }
}

.menuArea01 {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .menuArea01 {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .menuArea01 {
    height: 41px;
    flex-wrap: wrap;
  }
}

.headerMenu01,
.headerMenu02 {
  font-size: 1.4rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .headerMenu01,
.headerMenu02 {
    font-size: 1.2rem;
  }
}
.headerMenu01 li a,
.headerMenu02 li a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.headerMenu01 {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .headerMenu01 {
    margin-right: 60px;
  }
}
@media screen and (max-width: 500px) {
  .headerMenu01 {
    margin-right: 50px;
  }
}
.headerMenu01 .menu01,
.headerMenu01 .menu02 {
  padding: 0 30px;
  border-right: 1px solid #9b9b9b;
}
@media screen and (max-width: 1200px) {
  .headerMenu01 .menu01,
.headerMenu01 .menu02 {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1000px) {
  .headerMenu01 .menu01,
.headerMenu01 .menu02 {
    padding: 0 15px;
  }
}
@media print, screen and (min-width: 1001px) {
  .headerMenu01 .menu01 img {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .headerMenu01 .menu01 .txt {
    display: none;
  }
}
.headerMenu01 .menu02 img {
  width: 22px;
  height: 23px;
}
@media screen and (max-width: 767px) {
  .headerMenu01 .menu02 img {
    width: 18px;
    height: 19px;
  }
}
@media screen and (max-width: 1000px) {
  .headerMenu01 .menu02 .txt {
    display: none;
  }
}
.headerMenu01 .menu02 .ico {
  position: relative;
}
.headerMenu01 .menu02 .num {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  background: #de0031;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: -8px;
  right: -8px;
}

@media screen and (max-width: 767px) {
  .headerMenu02 {
    width: 100%;
    justify-content: space-between;
  }
}
.headerMenu02 .btn01,
.headerMenu02 .btn02 {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .headerMenu02 .btn01,
.headerMenu02 .btn02 {
    margin-left: 0;
    width: 50%;
  }
}
.headerMenu02 .btn01 .inner,
.headerMenu02 .btn02 .inner {
  color: #fff;
  min-width: 170px;
  height: 42px;
  padding: 0 20px;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .headerMenu02 .btn01 .inner,
.headerMenu02 .btn02 .inner {
    min-width: 120px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .headerMenu02 .btn01 .inner,
.headerMenu02 .btn02 .inner {
    min-width: inherit;
    width: 100%;
    height: 40px;
    border-radius: 0px;
  }
}
.headerMenu02 .btn01 .inner::after,
.headerMenu02 .btn02 .inner::after {
  content: "";
  width: 5px;
  height: 9px;
  margin: auto;
  background: url(/video/common/images/arrow_common01.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
}
@media screen and (max-width: 1000px) {
  .headerMenu02 .btn01 .inner::after,
.headerMenu02 .btn02 .inner::after {
    margin: 0 0 0 10px;
    position: static;
    display: block;
  }
}
.headerMenu02 .btn01 .inner {
  background: #de0031;
}
.headerMenu02 .btn02 .inner {
  background: #004da0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.headerMenu02 .btn02.dropBtn .inner {
  transition: 0.3s ease-in-out all;
}
.headerMenu02 .btn02.dropBtn .inner:hover {
  cursor: pointer;
  opacity: 0.8;
}
.headerMenu02 .btn02.dropBtn .inner::after {
  transform: rotate(90deg);
}
.headerMenu02 .btn02.dropBtn.active .inner::after {
  transform: rotate(-90deg);
}

.dropMenuArea {
  background: #fff;
  border: 1px solid #9b9b9b;
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .dropMenuArea {
    top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .dropMenuArea {
    top: 80px;
  }
}

.dropMenu li:not(:last-child) {
  border-bottom: 1px solid #9b9b9b;
}
.dropMenu li a {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .dropMenu li a {
    height: 40px;
  }
}

.menuArea02 {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .globalMenuArea {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .globalMenuArea {
    margin-top: 40px;
    display: none;
  }
}

.globalMenu {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .globalMenu {
    flex-wrap: wrap;
  }
}
.globalMenu li {
  width: 25%;
  border-right: 1px solid #9b9b9b;
}
.globalMenu li:first-child {
  border-left: 1px solid #9b9b9b;
}
@media screen and (max-width: 767px) {
  .globalMenu li {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #9b9b9b;
  }
  .globalMenu li:first-child {
    border-left: none;
  }
}
.globalMenu li a {
  font-size: 1.8rem;
  font-weight: bold;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .globalMenu li a {
    font-size: 1.6rem;
    height: 40px;
  }
}
.globalMenu li a.active {
  color: #de0031;
  border-bottom: 4px solid #de0031;
}
@media screen and (max-width: 767px) {
  .globalMenu li a.active {
    color: #333;
    border-bottom: none;
  }
}

.spBtn {
  width: 20px;
  height: 15px;
  margin: auto;
  transition: all 0.4s;
  z-index: 1;
  position: absolute;
  top: 13px;
  right: 3%;
}
@media print, screen and (min-width: 768px) {
  .spBtn {
    display: none !important;
  }
}
.spBtn span {
  width: 22px;
  height: 1px;
  margin: 0 auto;
  background: #333;
  transition: all 0.4s;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}
.spBtn span:first-child {
  top: 0;
}
.spBtn span:nth-child(2) {
  top: 7px;
}
.spBtn span:nth-child(3) {
  bottom: 0;
}
.spBtn.active span {
  background: #333;
}
.spBtn.active span:first-child {
  transform: translateY(7px) rotate(-45deg);
}
.spBtn.active span:nth-child(2) {
  opacity: 0;
}
.spBtn.active span:last-child {
  transform: translateY(-7px) rotate(45deg);
}

.footerInner {
  padding: 60px 0;
  background: url(/video/common/images/line_common01.svg) repeat-x;
  background-size: 21px 5px;
}
@media screen and (max-width: 767px) {
  .footerInner {
    padding: 0 0 20px;
    background-size: 13px 3px;
  }
}
@media screen and (max-width: 767px) {
  .footerInner .container {
    width: 100%;
  }
}

.footerMenu01 {
  padding-bottom: 10px;
  border-bottom: 1px solid #b6b8c1;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footerMenu01 {
    padding-bottom: 0;
    border-bottom: none;
    padding-top: 5px;
  }
}
.footerMenu01 li {
  width: calc(100% / 6);
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .footerMenu01 li {
    width: calc(100% / 5);
  }
}
@media screen and (max-width: 767px) {
  .footerMenu01 li {
    width: 100%;
    margin-bottom: 0;
    border-bottom: 1px solid #b6b8c1;
  }
}
.footerMenu01 li a {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footerMenu01 li a {
    text-align: center;
    padding: 10px 0;
    display: block;
  }
}

.footerMenu02 {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.footerMenu02 li {
  width: calc(100% / 6);
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .footerMenu02 li {
    width: auto;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footerMenu02 li {
    text-align: center;
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.footerMenu02 li a {
  font-size: 1.2rem;
  color: #b6b8c1;
}

.copyRight {
  font-size: 1.2rem;
  color: #b6b8c1;
  padding: 15px 0;
}

.footAppArea01 {
  margin-top: 30px;
}
.footAppArea01 li {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footAppArea01 li {
    max-width: inherit;
  }
}
.footAppArea01 h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .footAppArea01 h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.footAppArea01 li:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footAppArea01 li:not(:last-child) {
    margin-bottom: 15px;
  }
}

.footBnrList01 {
  max-width: 1066px;
  margin: 0 auto;
  padding: 60px 0 90px;
}
@media screen and (max-width: 767px) {
  .footBnrList01 {
    padding: 30px 0 60px;
  }
}
.footBnrList01 li {
  max-width: 490px;
  width: 46%;
}
@media print, screen and (min-width: 768px) {
  .footBnrList01 li {
    margin: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .footBnrList01 li {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .footBnrList01 li:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .footBnrList01 li:not(:nth-child(-n+2)) {
    margin-top: 20px;
  }
}

input,
button,
select,
textarea {
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
          appearance: none;
  outline: none;
}

label:hover, button:hover {
  cursor: pointer;
}

button {
  transition: 0.3s ease-in-out all;
}
button:hover {
  opacity: 0.6;
}

input[type=text], input[type=search], input[type=tel], input[type=email], input[type=url], input[type=password], input[type=data], input[type=month], input[type=week], input[type=time], input[type=number] {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  width: 100%;
  height: 40px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  position: relative;
}
input[type=text]::placeholder, input[type=search]::placeholder, input[type=tel]::placeholder, input[type=email]::placeholder, input[type=url]::placeholder, input[type=password]::placeholder, input[type=data]::placeholder, input[type=month]::placeholder, input[type=week]::placeholder, input[type=time]::placeholder, input[type=number]::placeholder {
  color: #ddd;
}

textarea {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  width: 100%;
  height: 220px;
  padding: 8px 15px;
  border: 1px solid #ccc;
  box-shadow: none;
  box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  resize: none;
}

.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox]:checked + span::after {
  content: "";
  width: 10px;
  height: 20px;
  transform: rotate(45deg);
  border-bottom: 3px solid #004da0;
  border-right: 3px solid #004da0;
  display: block;
  position: absolute;
  top: -6px;
  left: 12px;
}
@media screen and (max-width: 767px) {
  .checkbox input[type=checkbox]:checked + span::after {
    width: 8px;
    height: 16px;
    top: -4px;
    left: 10px;
  }
}
.checkbox span {
  font-size: 1.5rem;
  padding-left: 35px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .checkbox span {
    font-size: 1.2rem;
    padding-left: 28px;
  }
}
.checkbox span::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 1px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .checkbox span::before {
    width: 17px;
    height: 17px;
  }
}

.radio input[type=radio] {
  display: none;
}
.radio input[type=radio]:checked + span::after {
  content: "";
  width: 12px;
  height: 26px;
  transform: rotate(40deg);
  border-bottom: 3px solid #f46262;
  border-right: 3px solid #f46262;
  display: block;
  position: absolute;
  top: 5px;
  left: 33px;
}
@media screen and (max-width: 767px) {
  .radio input[type=radio]:checked + span::after {
    width: 8px;
    height: 18px;
    top: 4px;
    left: 18px;
  }
}
.radio input[type=radio]:checked + span {
  font-weight: bold;
  color: #f46262;
  border: 2px solid #f46262;
}
.radio input[type=radio]:checked + span::before {
  border: 2px solid #f46262;
}
.radio span {
  font-size: 1.8rem;
  width: 100%;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out all;
  position: relative;
}
@media screen and (max-width: 767px) {
  .radio span {
    font-size: 1.6rem;
    height: 43px;
    border: 2px solid #ddd;
  }
}
.radio span::before {
  content: "";
  width: 25px;
  height: 25px;
  margin: auto;
  border: 2px solid #ddd;
  border-radius: 1px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
}
@media screen and (max-width: 767px) {
  .radio span::before {
    width: 16px;
    height: 16px;
    left: 10px;
  }
}

.selectBox {
  border: 1px solid #ccc;
  position: relative;
}
.selectBox:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: auto 0;
  border: 4px solid transparent;
  border-top: 4px solid #333;
  box-sizing: border-box;
  position: absolute;
  top: 18px;
  right: 15px;
}
.selectBox select {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  width: 100%;
  height: 40px;
  background: none;
  padding-left: 15px;
  border: none;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-appearance: none;
          appearance: none;
  outline: none;
}
@media all and (-ms-high-contrast: none) {
  .selectBox select {
    width: 100% !important;
  }
}
.selectBox select:not(:target) {
  width: 130% \9 ;
}
.selectBox select::-ms-expand {
  display: none;
}

.formTable01 {
  width: 100%;
  background: #fff;
  border-top: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
}
@media print, screen and (min-width: 769px) {
  .formTable01 > tbody > tr > th, .formTable01 > tbody > tr > td {
    height: 60px;
    padding: 0;
  }
}
.formTable01 > tbody > tr > th {
  width: 230px;
  padding-left: 15px;
}
@media screen and (max-width: 1100px) {
  .formTable01 > tbody > tr > th {
    width: 190px;
  }
}
@media screen and (max-width: 768px) {
  .formTable01 > tbody > tr > th {
    width: 100%;
    padding: 10px;
    background: #f4f4f4;
  }
}
@media print, screen and (min-width: 769px) {
  .formTable01 > tbody > tr > td {
    width: auto;
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .formTable01 > tbody > tr > td {
    width: 100%;
    padding: 20px 10px;
  }
}
.formTable01 > tbody > tr:not(:last-child) {
  border-bottom: 1px solid #c6c6c6;
}
.formTable01 table {
  width: 100%;
}
.formTable01 th,
.formTable01 td {
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .formTable01 th,
.formTable01 td {
    padding: 0 10px;
    display: block;
  }
}
.formTable01 th {
  font-weight: bold;
  text-align: left;
  width: 110px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .formTable01 th {
    width: 100%;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1100px) {
  .formTable01 td {
    width: calc(100% - 110px);
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .formTable01 td {
    width: 100%;
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .formTable01 td tr:not(:last-child) td {
    padding-bottom: 15px;
  }
}
.formTable01 .reqired {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  width: 30px;
  height: 16px;
  padding: 0 5px;
  background: #bc111d;
  line-height: 1;
}
@media print, screen and (min-width: 769px) {
  .formTable01 input[type=text], .formTable01 input[type=email], .formTable01 input[type=password] {
    width: 345px;
    height: 36px;
  }
}
@media screen and (max-width: 1100px) {
  .formTable01 input[type=text], .formTable01 input[type=email], .formTable01 input[type=password] {
    width: 100%;
  }
}
.formTable01 input.yearTextbox {
  width: 116px;
}
@media screen and (max-width: 900px) and (min-width: 769px) {
  .formTable01 input.yearTextbox {
    width: 70px;
  }
}
@media screen and (max-width: 500px) {
  .formTable01 input.yearTextbox {
    width: 75px;
  }
}
.formTable01 input.birthdayTextbox {
  width: 64px;
}
@media screen and (max-width: 900px) and (min-width: 769px) {
  .formTable01 input.birthdayTextbox {
    width: 50px;
  }
}
@media screen and (max-width: 500px) {
  .formTable01 input.birthdayTextbox {
    width: 55px;
  }
}
.formTable01 .birthdayText01 {
  margin-left: 5px;
}
.formTable01 .birthdayText01:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 900px) and (min-width: 769px) {
  .formTable01 .birthdayText01:not(:last-child) {
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .formTable01 .birthdayText01:not(:last-child) {
    margin-right: 15px;
  }
}
@media screen and (max-width: 360px) {
  .formTable01 .birthdayText01:not(:last-child) {
    margin-right: 10px;
  }
}
.formTable01 ul {
  display: flex;
}
.formTable01 li:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 500px) {
  .formTable01 li:not(:last-child) {
    margin-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .formTable01 li:first-child {
    margin-top: 0;
  }
}
@media print, screen and (min-width: 501px) {
  .formTable01 .radioArea01 {
    line-height: 1;
  }
}
.formTable01 .radioArea01 .radio:before {
  top: 0;
}
@media screen and (max-width: 500px) {
  .formTable01 .radioArea01 .radio:before {
    top: 3px;
  }
}
@media screen and (max-width: 500px) {
  .formTable01 .radioArea01 .radio:after {
    top: -1px;
  }
}
.formTable01 .checkboxArea01 li {
  height: 18px;
}
@media screen and (max-width: 500px) {
  .formTable01 .checkboxArea01 .checkbox:before {
    top: 3px;
  }
}
.formTable01 .checkboxArea01 .checkbox.checked:after {
  top: 1px;
  left: 5px;
}
@media screen and (max-width: 500px) {
  .formTable01 .checkboxArea01 .checkbox.checked:after {
    top: 2px;
  }
}
@media screen and (max-width: 500px) {
  .formTable01 .checkboxArea01 .checkbox input[type=checkbox] {
    top: -5px;
  }
}
@media screen and (max-width: 500px) {
  .formTable01 .selectBoxArea01:not(:last-child) {
    margin-right: 15px;
  }
}
.formTable01 .selectBox01 {
  width: 345px;
  height: 36px;
  border: 1px solid #c6c6c6;
}
@media print, screen and (min-width: 769px) {
  .formTable01 .selectBox01 {
    width: 345px;
  }
}
@media screen and (max-width: 1100px) {
  .formTable01 .selectBox01 {
    width: 100%;
  }
}
.formTable01 .selectBox01 select {
  font-size: 1.4rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .formTable01 .selectBox01 select {
    font-size: 1.6rem;
    padding-top: 0;
  }
}
.formTable01 .selectBox01:after {
  border-top-color: #000;
  top: 15px;
}
.formTable01 .selectBox01.yearTextbox {
  width: 116px;
  display: inline-block;
}
@media screen and (max-width: 900px) and (min-width: 769px) {
  .formTable01 .selectBox01.yearTextbox {
    width: 70px;
  }
}
@media screen and (max-width: 500px) {
  .formTable01 .selectBox01.yearTextbox {
    width: 75px;
  }
}
.formTable01 .selectBox01.birthdayTextbox {
  width: 64px;
  display: inline-block;
}
@media screen and (max-width: 900px) and (min-width: 769px) {
  .formTable01 .selectBox01.birthdayTextbox {
    width: 50px;
  }
}
@media screen and (max-width: 500px) {
  .formTable01 .selectBox01.birthdayTextbox {
    width: 55px;
  }
}

.subTitleArea {
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .subTitleArea {
    height: 120px;
  }
}
@media screen and (max-width: 920px) {
  .subTitleArea:before {
    content: "";
    width: 100%;
    height: 100%;
    background: white;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
  }
}
@media screen and (max-width: 920px) {
  .subTitleArea.noGrade:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
    background: none;
  }
}

.subTitleInner {
  text-align: center;
  min-width: 295px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .subTitleInner {
    min-width: 200px;
  }
}

.subTitleDecoration {
  display: flex;
  align-items: center;
}
.subTitleDecoration img {
  width: 154px;
  margin-bottom: 5px;
}
@media all and (-ms-high-contrast: none) {
  .subTitleDecoration img {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .subTitleDecoration img {
    width: 77px;
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 767px) and (-ms-high-contrast: none) {
  .subTitleDecoration img {
    width: auto;
  }
}
.subTitleDecoration::before, .subTitleDecoration::after {
  content: "";
  width: 100%;
  height: 1px;
  flex-grow: 1;
  background: #333;
  display: block;
}

.subTitle {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 20px 0 30px;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .subTitle {
    font-size: 2.4rem;
    padding: 7px 0 10px;
  }
}

.sectionTitle {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: bold;
  margin: 80px 0 30px;
}
@media screen and (max-width: 767px) {
  .sectionTitle {
    font-size: 1.8rem;
    margin: 40px 0 20px;
  }
}

.breadcrumb {
  font-size: 1.4rem;
  margin-top: 20px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb li a {
  color: #335b99;
  text-decoration: underline;
}
.breadcrumb li:not(:last-child):after {
  content: "";
  width: 5px;
  height: 9px;
  margin: auto 10px;
  background: url(/video/common/images/arrow_common02.svg) no-repeat;
  background-size: contain;
  display: inline-block;
}