@charset "utf-8";

* {
    box-sizing: border-box;
}
html {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-size: 1.6em;
}
#top,
main {
  line-height: 1.6;
}
img {
  max-width: 100%;
  vertical-align: top;
}
a {
  text-decoration: none;
  transition: all 0.5s;
}
a:hover {
  opacity: 0.5;
}
li {
  list-style-type: none;
}
.spOnly {
  display: none;
}
@media screen and (max-width: 480px) {
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: block;
  }
}

main section:nth-child(odd) {
  background-color: #F5F5F5;
}

.content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}
main .content {
  padding: 60px 15px 80px;
}

.content h2 {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 3rem;
  line-height: 1.4;
  text-align: center;
}
.content h2::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background-color: #00abeb;
}

.h3-headline {
  margin-bottom: 15px;
  padding-left: 8px;
  font-size: 2rem;
  line-height: 1.4;
  border-left: solid 5px #00abeb;
}

/* サブページタイトル */
#sub-top {
  margin: 40px 0;
  text-align: center;
}
#sub-top h1 {
  display: flex;
	justify-content: center;
	align-items: center;
  font-size: 3.4rem;
}
#sub-top h1::before,
#sub-top h1::after {
	content: '';
	width: 70px;
	height: 5px;
	background-color: #00abeb;
}
#sub-top h1::before {
	margin-right: 20px;
}
#sub-top h1::after {
	margin-left: 20px;
}
@media screen and (max-width: 480px) {
  #sub-top h1 {
    font-size: 2.6rem;
  }
  #sub-top h1::before,
  #sub-top h1::after {
	  content: none;
  }
}

/* リンクボタン */
.link-btn a {
  display: inline-block;
  text-align: center;
  color: #00abeb;
  background-color: #fff;
  border: 2px solid #00abeb;
  border-radius: 3em;
  padding: 15px 40px;
  max-width: 100%;
  position: relative;
  transition: 0.4s all;
  cursor: pointer;
}
.link-btn a:hover {
  color: #fff;
  background-color: #00abeb;
  opacity: 1;
}

/*パンくずリスト*/
#breadcrumb .content {
  padding: 20px 15px;
}
#breadcrumb ul {
  display: flex;
}
#breadcrumb ul li {
  margin-right: 15px;
  font-size: 13px;
}
#breadcrumb ul li:last-child {
  margin-right: 0;
}
#breadcrumb ul li a {
  color: #00abeb;
  text-decoration: underline;
}
#breadcrumb li:not(:first-child):before {
  content: '>';
  margin-right: 15px;
}

@media screen and (max-width: 810px) {
  #breadcrumb ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 580px) {
  #breadcrumb ul li {
    line-height: 1.8;
  }
}

/*table*/
table {
  width: 100%;
  border-collapse:separate;
  border-spacing: 10px;
}
table th {
  padding: 20px;
  width: 20%;
  background-color: #e6e6e6;
  text-align: center;
  vertical-align: middle;
}
table td {
  padding: 20px;
  width: 80%;
  background-color: #f5f5f5;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  table {
    border-spacing: 0;
  }
  table th,
  table td {
    display: inline-block;
    width: 100%;
  }
}

/*ステージカテゴリーカラー*/
.cat01 {
  background-color: #FF0015;
}
.cat02 {
  background-color: #01528E;
}
.cat03 {
  background-color: #EE771D;
}
.cat04 {
  background-color: #028744;
}
.cat05 {
  background-color: #7FCCEC;
}
.cat06 {
  background-color: #D80446;
}

/* 文字関連 */
.text-bold {
  font-weight: bold;
}
.text-white {
  color: #fff;
}
.text-gray {
  color: #8a8989;
}

.text-justify {
  text-align: justify !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}

/* flex */
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}

.flex-reverse {
  display: flex;
  flex-direction: row-reverse;
}
.flex-col {
  display: flex;
  flex-direction: column;
}

.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-around {
  justify-content: space-around;
}
.justify-between {
  justify-content: space-between;
}

.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* 余白 */
.ma-auto {
  margin: auto !important;
}
.ma-0 {
  margin: 0 !important;
}
.ma-2f {
  margin: calc(20px / 4) !important;
}
.ma-f {
  margin: calc(20px / 2) !important;
}
.ma-1 {
  margin: 20px;
}
.ma-2 {
  margin: calc(20px * 2) !important;
}
.ma-3 {
  margin: calc(20px * 3) !important;
}
.ma-4 {
  margin: calc(20px * 4) !important;
}
.ma-5 {
  margin: calc(20px * 5) !important;
}
.ma-6 {
  margin: calc(20px * 6) !important;
}

.mt-auto {
  margin-top: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-2f {
  margin-top: calc(20px / 4) !important;
}
.mt-f {
  margin-top: calc(20px / 2) !important;
}
.mt-1 {
  margin-top: 20px !important;
}
.mt-2 {
  margin-top: calc(20px * 2) !important;
}
.mt-3 {
  margin-top: calc(20px * 3) !important;
}
.mt-4 {
  margin-top: calc(20px * 4) !important;
}
.mt-5 {
  margin-top: calc(20px * 5) !important;
}
.mt-6 {
  margin-top: calc(20px * 6) !important;
}

.mr-auto {
  margin-right: auto !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mr-2f {
  margin-right: calc(20px / 4) !important;
}
.mr-f {
  margin-right: calc(20px / 2) !important;
}
.mr-1 {
  margin-right: 20px !important;
}
.mr-2 {
  margin-right: calc(20px * 2) !important;
}
.mr-3 {
  margin-right: calc(20px * 3) !important;
}
.mr-4 {
  margin-right: calc(20px * 4) !important;
}
.mr-5 {
  margin-right: calc(20px * 5) !important;
}
.mr-6 {
  margin-right: calc(20px * 6) !important;
}

.mb-auto {
  margin-bottom: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-2f {
  margin-bottom: calc(20px / 4) !important;
}
.mb-f {
  margin-bottom: calc(20px / 2) !important;
}
.mb-1 {
  margin-bottom: 20px !important;
}
.mb-2 {
  margin-bottom: calc(20px * 2) !important;
}
.mb-3 {
  margin-bottom: calc(20px * 3) !important;
}
.mb-4 {
  margin-bottom: calc(20px * 4) !important;
}
.mb-5 {
  margin-bottom: calc(20px * 5) !important;
}
.mb-6 {
  margin-bottom: calc(20px * 6) !important;
}

.ml-auto {
  margin-left: auto !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-2f {
  margin-left: calc(20px / 4) !important;
}
.ml-f {
  margin-left: calc(20px / 2) !important;
}
.ml-1 {
  margin-left: 20px !important;
}
.ml-2 {
  margin-left: calc(20px * 2) !important;
}
.ml-3 {
  margin-left: calc(20px * 3) !important;
}
.ml-4 {
  margin-left: calc(20px * 4) !important;
}
.ml-5 {
  margin-left: calc(20px * 5) !important;
}
.ml-6 {
  margin-left: calc(20px * 6) !important;
}

.pa-0 {
  padding: 0 !important;
}
.pa-2f {
  padding: calc(20px / 4) !important;
}
.pa-f {
  padding: calc(20px / 2) !important;
}
.pa-1 {
  padding: 20px !important;
}
.pa-2 {
  padding: calc(20px * 2) !important;
}
.pa-3 {
  padding: calc(20px * 3) !important;
}
.pa-4 {
  padding: calc(20px * 4) !important;
}
.pa-5 {
  padding: calc(20px * 5) !important;
}
.pa-6 {
  padding: calc(20px * 6) !important;
}

.pt-0 {
  padding-top: 0 !important;
}
.pt-2f {
  padding-top: calc(20px / 4) !important;
}
.pt-f {
  padding-top: calc(20px / 2) !important;
}
.pt-1 {
  padding-top: 20px !important;
}
.pt-2 {
  padding-top: calc(20px * 2) !important;
}
.pt-3 {
  padding-top: calc(20px * 3) !important;
}
.pt-4 {
  padding-top: calc(20px * 4) !important;
}
.pt-5 {
  padding-top: calc(20px * 5) !important;
}
.pt-6 {
  padding-top: calc(20px * 6) !important;
}

.pr-0 {
  padding-right: 0 !important;
}
.pr-2f {
  padding-right: calc(20px / 4) !important;
}
.pr-f {
  padding-right: calc(20px / 2) !important;
}
.pr-1 {
  padding-right: 20px !important;
}
.pr-2 {
  padding-right: calc(20px * 2) !important;
}
.pr-3 {
  padding-right: calc(20px * 3) !important;
}
.pr-4 {
  padding-right: calc(20px * 4) !important;
}
.pr-5 {
  padding-right: calc(20px * 5) !important;
}
.pr-6 {
  padding-right: calc(20px * 6) !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-2f {
  padding-bottom: calc(20px / 4) !important;
}
.pb-f {
  padding-bottom: calc(20px / 2) !important;
}
.pb-1 {
  padding-bottom: 20px !important;
}
.pb-2 {
  padding-bottom: calc(20px * 2) !important;
}
.pb-3 {
  padding-bottom: calc(20px * 3) !important;
}
.pb-4 {
  padding-bottom: calc(20px * 4) !important;
}
.pb-5 {
  padding-bottom: calc(20px * 5) !important;
}
.pb-6 {
  padding-bottom: calc(20px * 6) !important;
}

.pl-0 {
  padding-left: 0 !important;
}
.pl-2f {
  padding-left: calc(20px / 4) !important;
}
.pl-f {
  padding-left: calc(20px / 2) !important;
}
.pl-1 {
  padding-left: 20px !important;
}
.pl-2 {
  padding-left: calc(20px * 2) !important;
}
.pl-3 {
  padding-left: calc(20px * 3) !important;
}
.pl-4 {
  padding-left: calc(20px * 4) !important;
}
.pl-5 {
  padding-left: calc(20px * 5) !important;
}
.pl-6 {
  padding-left: calc(20px * 6) !important;
}

/* header */
#header .pcOnly {
  display: none;
}
#header .spOnly {
  display: block;
}
#headerNav-sp {
  display: none;
}
#header {
  position: static;
  z-index: 999;
  width: 100%;
  height: auto;
  background-color: #fff;
}
#headerInner {
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#headerInner h1 img {
  max-height: 50px;
}
@media screen and (max-width: 1500px) {
  #headerInner {
    padding: 20px 30px;
  }
  #headerInner h1 img {
    max-height: 45px;
  }
}
@media screen and (max-width: 680px) {
  #headerInner {
    padding: 20px 20px;
  }
  #headerInner h1 img {
    max-height: 40px;
  }
}
@media screen and (max-width: 580px) {
  #headerInner h1 img {
    max-height: 35px;
  }
}
@media screen and (max-width: 480px) {
  #headerInner h1 img {
    max-height: 25px;
  }
}

#headerNav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1 1 auto;
}
#headerNav ul {
  display: flex;
}
#headerNav ul li {
  margin-right: 35px;
  font-size: 14px;
  font-weight: 600;
}
#headerNav ul li a {
  color: #000;
}
@media screen and (max-width: 1080px) {
  #headerNav {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #headerInner {
    padding: 15px 20px;
  }
  #headerInner h1 {
    max-width: 85%;
  }
}

#header.fixed {
	position: fixed;
  top:0;
  left:0;
  background-color: #fff;
}
#header.fixed .pcOnly {
  display: none;
}
#header.fixed .spOnly {
  display: block;
}
#header.fixed #headerNav ul li a {
  color: #000;
}
@media screen and (max-width: 480px) {
  #header.fixed {
    background-color: transparent;
  }
  #header.fixed .spOnly {
    display: none;
  }
  #header.fixed #toggleNav {
    background-color: #00abeb;
  }
  #header.fixed #toggleNav span {
    background-color: #fff;
  }
}

/* ハンバーガーメニュー */
@media screen and (min-width: 481px) {
  body.no_scroll {
    overflow: hidden;
  }
}
#headerNav.deactivate {
  display: none;
}

#toggleNav {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
}
#toggleNav span {
  display: block;
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: #00abeb;
  transition: all 0.4s;
}
#toggleNav span:nth-of-type(1) {
  left: 50%;
  top: 32%;
  transform: translate(-50%, -32%);
}
#toggleNav span:nth-of-type(2) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#toggleNav span:nth-of-type(3) {
  left: 50%;
  top: 68%;
  transform: translate(-50%, -68%);
}

#toggleNav.active {
  background-color: #00abeb;
}
#toggleNav.active span {
  background-color: #fff;
}
#toggleNav.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
#toggleNav.active span:nth-of-type(2) {
  opacity: 0;
}
#toggleNav.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}

#headerNav-sp {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 500px;
  height: 100vh;
  background-color: #fff;
  transform: translateX(100%);
  transition: 0.3s ease-in-out;
}
#headerNav-sp.active {
  transform: translateX(0%);
}
@media screen and (max-width: 810px) {
  #headerNav-sp {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  #headerNav-sp {
    width: 100%;
  }
}

#navInner {
  padding: 100px 40px;
  max-height: 100vh;
  overflow-y: auto;
}
#navInner ul {
  border-top: 1px solid #00abeb;
}
#navInner ul li {
  border-bottom: 1px solid #00abeb;
}
#navInner ul li a {
  position: relative;
  display: block;
  padding: 22px 0;
  font-weight: 600;
  color: #000;
}
#navInner ul li a::after {
  position: absolute;
  content: url(../img/common/arrow.svg);
  width: 16px;
  height: 16px;
  right: 1%;
  top: 50%;
  transform: translate(-1%, -50%);
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
}
#overlay.show {
  visibility: visible;
}
@media screen and (max-width: 480px) {
  #overlay {
    display: none;
  }
}

/* footer */
footer {
  padding: 40px 0 30px;
  background-color: #00abeb;
  color: #fff;
  text-align: center;
}
.f-info li {
  font-size: 1.4rem;
  line-height: 1.4;
}
.f-info li:not(:first-child) {
  margin-top: 8px;
}
.f-sns {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.f-sns div {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.twitter-icon {
  font-size: 2.5rem;
  color: #29C5F6;
}
.copyright {
  font-size: 1.3rem;
}