/* reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* common */
body {
  background-color: #d0eef4;
  color: #000;
  font-weight: normal;
  font-weight: 300;
  line-height: 1.5;
  word-wrap: break-word;
  -webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5, h6,
table th {
  font-weight: 300;
}

a {
  color: inherit;
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

input[type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/* base
-----------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

._pcOnly {
  display: inline-block;
}
@media (max-width: 766px) {
  ._pcOnly {
    display: none;
  }
}

._spOnly {
  display: none;
}
@media (max-width: 766px) {
  ._spOnly {
    display: inline-block;
  }
}

img {
  width: 100%;
}

/* l-header
-----------------------------------------*/
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
.l-header .u-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}
@media (max-width: 766px) {
  .l-header .u-inner {
    padding: 0 calc(30 / 900 * 100vw);
  }
}
.l-header .lead {
  padding: 10px 0;
  background: #073E7E;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 766px) {
  .l-header .lead {
    display: none;
  }
}
.l-header .logo .link {
  display: inline-flex;
  align-items: center;
}
.l-header .logo .link .img {
  max-width: 130px;
  height: auto;
  display: block;
}
@media (max-width: 766px) {
  .l-header .logo .link .img {
    height: calc(120 / 900 * 100vw);
  }
}
.l-header .gnav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  height: 70px;
  background-color: #FFF;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 766px) {
  .l-header .gnav {
    display: none;
  }
}
.l-header .gnav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header .gnav .menu .item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
}
.l-header .gnav .menu .item:not(:last-child)::after {
  content: "";
  display: block;
  width: 3px;
  height: 13px;
  background-color: #ffd27a;
}
.l-header .gnav .menu .link {
  display: inline-flex;
  align-items: center;
  height: 55px;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 766px) {
  .l-header .gnav .menu .link {
    height: calc(120 / 900 * 100vw);
  }
}
.l-header .gnav .menu .link:hover {
  color: #959595;
}

/* l-gnav
-----------------------------------------*/
.l-gnav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.l-gnav .hamburger {
  display: none;
}
@media (max-width: 766px) {
  .l-gnav .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
  }
  .l-gnav .hamburger span {
    width: 100%;
    height: 2px;
    background: #073E7E;
    transition: 0.3s ease;
  }
  .is-menu-open .l-gnav .hamburger {
    position: relative;
  }
  .is-menu-open .l-gnav .hamburger span {
    position: absolute;
  }
  .is-menu-open .l-gnav .hamburger span:nth-child(1) {
    top: 0;
    transform: translateY(10px) rotate(45deg);
  }
  .is-menu-open .l-gnav .hamburger span:nth-child(2), .is-menu-open .l-gnav .hamburger span:nth-child(3) {
    opacity: 0;
  }
  .is-menu-open .l-gnav .hamburger span:nth-child(4) {
    top: 21px;
    transform: translateY(-11px) rotate(-45deg);
  }
}
.l-gnav .item {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 400;
}
.l-gnav .item--ticket {
  justify-self: end;
  height: 55px;
}
@media (max-width: 766px) {
  .l-gnav .item--ticket {
    height: calc(76 / 900 * 100vw);
  }
}
.l-gnav .link {
  display: inline-flex;
  align-items: center;
  height: 55px;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 766px) {
  .l-gnav .link {
    height: calc(120 / 900 * 100vw);
  }
}
.l-gnav .link:hover {
  color: #959595;
}
.l-gnav .link--ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 0 10px;
  gap: 0 10px;
  background-color: #AC9340;
  color: #fff;
  font-size: 0.75rem;
  text-decoration: none;
}
@media (max-width: 766px) {
  .l-gnav .link--ticket {
    height: calc(76 / 900 * 100vw);
    font-size: calc(23 / 900 * 100vw);
  }
}
.l-gnav .link--ticket .icon {
  width: 32px;
  height: auto;
  display: block;
}
@media (max-width: 766px) {
  .l-gnav .link--ticket .icon {
    height: calc(56 / 900 * 100vw);
  }
}
.l-gnav .link--ticket:hover {
  background-color: #DBC683;
}

/* l-footer
-----------------------------------------*/
.l-footer {
  padding: 40px 0 40px;
  background-color: #FFF;
  text-align: center;
}
@media (max-width: 766px) {
  .l-footer {
    padding: calc(40 / 900 * 100vw) 0 calc(180 / 900 * 100vw);
  }
}
.l-footer .u-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.l-footer__pagetop {
  position: absolute;
  right: -20px;
  top: -140px;
  z-index: 15;
}
@media (max-width: 766px) {
  .l-footer__pagetop {
    right: calc(-20 / 900 * 100vw);
    top: calc(-140 / 900 * 100vw);
  }
}
.l-footer__materials {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px 0;
}
@media (max-width: 766px) {
  .l-footer__materials {
    gap: calc(10 / 900 * 100vw) 0;
  }
}
.l-footer__materials dt {
  font-size: 1.125rem;
  font-weight: 700;
}
@media (max-width: 766px) {
  .l-footer__materials dt {
    font-size: calc(44 / 900 * 100vw);
  }
}
.l-footer__materials dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
}
@media (max-width: 766px) {
  .l-footer__materials dd {
    font-size: calc(34 / 900 * 100vw);
  }
}
.l-footer__materials dd a::after {
  content: "PDF";
  padding: 0 5px;
  background-color: #5f6068;
  border-radius: 2px;
  color: #FFF;
  font-size: 0.75rem;
}
@media (max-width: 766px) {
  .l-footer__materials dd a::after {
    font-size: calc(32 / 900 * 100vw);
  }
}
.l-footer__copyright {
  display: block;
  margin-top: 30px;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 766px) {
  .l-footer__copyright {
    width: 100%;
    margin-top: calc(30 / 900 * 100vw);
    font-size: calc(26 / 900 * 100vw);
    text-align: center;
  }
}
.l-footer__logo {
  margin-left: auto;
}
@media (max-width: 766px) {
  .l-footer__logo {
    margin: calc(20 / 900 * 100vw) auto 0 auto;
  }
}
.l-footer__logo img {
  width: 150px;
}

.u-inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
.u-inner--full {
  max-width: 100%;
  width: 100%;
}
.u-inner--gnav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-height: 55px;
}
@media (max-width: 766px) {
  .u-inner--gnav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 calc(50 / 900 * 100vw);
    padding: 0 5%;
    min-height: calc(120 / 900 * 100vw);
    height: calc(120 / 900 * 100vw);
  }
}
.u-inner--gnav::before {
  content: "";
}
@media (max-width: 766px) {
  .u-inner--performance {
    position: relative;
  }
}

/* c-pagehead
-----------------------------------------*/
.c-pagehead {
  margin: 0 auto 50px auto;
  text-align: center;
}
@media (max-width: 766px) {
  .c-pagehead {
    margin-bottom: calc(70 / 900 * 100vw);
  }
}
.c-pagehead .sbj {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #004880;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 766px) {
  .c-pagehead .sbj {
    font-size: calc(60 / 900 * 100vw);
    line-height: 1.2;
  }
}
.c-pagehead .sbj span {
  font-size: 5rem;
}
@media (max-width: 766px) {
  .c-pagehead .sbj span {
    font-size: calc(140 / 900 * 100vw);
  }
}
.c-pagehead .sub {
  margin-bottom: 10px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 766px) {
  .c-pagehead .sub {
    margin-bottom: calc(10 / 900 * 100vw);
    font-size: calc(38 / 900 * 100vw);
  }
}
.c-pagehead--oblige .sbj {
  color: #fff;
}
.c-pagehead--oblige .sub {
  color: #fff;
}
.c-pagehead--outline {
  position: relative;
}
.c-pagehead--outline .sbj {
  padding-left: 320px;
}
@media (max-width: 766px) {
  .c-pagehead--outline .sbj {
    padding-left: calc(440 / 900 * 100vw);
    justify-content: flex-start;
    text-align: left;
  }
}
.c-pagehead--outline .img {
  position: absolute;
  left: 105px;
  top: -45px;
}
@media (max-width: 766px) {
  .c-pagehead--outline .img {
    left: 0;
    top: 0;
    width: calc(420 / 900 * 100vw);
  }
}

/* c-button
-----------------------------------------*/
.c-button {
  max-width: 500px;
  height: 84px;
  margin: 0 auto;
}
@media (max-width: 766px) {
  .c-button {
    height: auto;
  }
}
.c-button .link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  border: 2px solid #005480;
  border-radius: 20px;
  color: #005480;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (max-width: 766px) {
  .c-button .link {
    padding: calc(40 / 900 * 100vw);
    border-radius: calc(30 / 900 * 100vw);
    font-size: calc(40 / 900 * 100vw);
  }
}
.c-button .link .catch {
  position: absolute;
  top: -24px;
  padding: 6px 15px;
  background-color: #ec914e;
  border-radius: 18px;
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 766px) {
  .c-button .link .catch {
    font-size: calc(32 / 900 * 100vw);
  }
}
.c-button .link .catch::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  margin: auto;
  content: "";
  display: block;
  width: 15px;
  height: 9px;
  background: #ec914e;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.c-button .link .icn {
  position: absolute;
  width: 9px;
  right: 30px;
}
@media (max-width: 766px) {
  .c-button .link .icn {
    width: calc(16 / 900 * 100vw);
    right: calc(30 / 900 * 100vw);
  }
}
.c-button .link:hover {
  opacity: 0.6;
}

/* c-pagetop
-----------------------------------------*/
.c-floating {
  position: fixed;
  top: 260px;
  right: 0;
  z-index: 15;
}
@media (max-width: 766px) {
  .c-floating {
    width: 100%;
    top: auto;
    bottom: 0;
  }
}
.c-floating .img {
  position: absolute;
  left: -35px;
  top: -60px;
  z-index: -1;
}
@media (max-width: 766px) {
  .c-floating .img {
    left: auto;
    right: 0;
    top: calc(-150 / 900 * 100vw);
  }
}
.c-floating ul {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
@media (max-width: 766px) {
  .c-floating ul {
    width: 100%;
    flex-direction: row;
    gap: 0;
  }
}
.c-floating ul li {
  width: 70px;
  color: #FFF;
  font-size: 0.9375rem;
  font-weight: 600;
  writing-mode: vertical-rl;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 766px) {
  .c-floating ul li {
    width: 50%;
    border-radius: 0;
    writing-mode: horizontal-tb;
    font-size: calc(34 / 900 * 100vw);
  }
}
.c-floating ul li:nth-child(1) {
  background-color: #e34d71;
}
.c-floating ul li:nth-child(2) {
  background-color: #5cb03f;
}
.c-floating ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 766px) {
  .c-floating ul li a {
    gap: 0 calc(15 / 900 * 100vw);
    padding: calc(40 / 900 * 100vw) 0;
  }
}
/*# sourceMappingURL=style.css.map */
