@charset "UTF-8";
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #2e2e2e;
}

* {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
*::before, *::after {
  box-sizing: inherit;
}
*:focus {
  outline: none;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  padding: 0;
  margin: 0;
  border: 0;
}

p {
  line-height: 2;
}
p:not([class]) + p:not([class]) {
  margin-top: 1.8em;
}

a {
  outline: none;
  -webkit-touch-callout: none;
}
a, a:visited {
  color: #00518d;
}
@media (min-width: 800px) {
  a:hover {
    text-decoration: none;
  }
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  height: auto;
  vertical-align: top;
  border-style: none;
}
@media not all and (min-width: 800px) {
  img {
    width: 100%;
  }
}

blockquote,
q {
  quotes: none;
}

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

b,
em,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
}

em,
address {
  font-style: normal;
}

small {
  font-size: 87.5%;
}

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

/* form */
input[type=text],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
input[type=password],
input[type=email],
textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

textarea {
  display: block;
}

fieldset {
  margin: 0;
  border: none;
}

legend {
  display: none;
}

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

:root {
  --zindex-header: 10;
}

.l-pageNavigation {
  z-index: calc(var(--zindex-header) + 1);
}

.c-modalWrap.is-open {
  z-index: calc(var(--zindex-header) + 10);
}

.c-accordion:not(._open) .c-accordion__contents {
  display: none;
}

.c-accordion._open .c-accordion__contents {
  display: block;
}

.c-accordion__contents {
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.c-accordion__body {
  padding-top: 55px;
}
@media (min-width: 800px) {
  .c-accordion__body {
    padding-top: 42px;
  }
}

.c-accordion__btn {
  width: 100%;
  height: 66px;
  color: #fff;
  background-color: #2e2e2e;
}
.c-accordion__btn span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 15px;
}
.c-accordion__btn span::before, .c-accordion__btn span::after {
  position: absolute;
  right: -5px;
  display: block;
  width: 10px;
  height: 1px;
  content: "";
  background: #fff;
  transition: all 0.4s;
  transform: translate(-50%, -50%);
}
.c-accordion__btn span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
@supports (paint-order: fill) and (-webkit-marquee-speed: 0) {
  .c-accordion__btn span::after {
    top: 50%;
  }
}
.c-accordion._open .c-accordion__btn span::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

@media (min-width: 800px) {
  .c-buttonWrap {
    display: flex;
  }
  .c-buttonWrap .c-button {
    flex-basis: 360px;
    width: 360px;
  }
  .c-buttonWrap._left {
    justify-content: flex-start;
  }
  .c-buttonWrap._center {
    justify-content: center;
  }
  .c-buttonWrap._right {
    justify-content: flex-end;
  }
}

.c-button {
  height: 50px;
}
.c-button a,
.c-button > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #2e2e2e;
}
@media (min-width: 800px) {
  .c-button a,
.c-button > button {
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .c-button a:hover,
.c-button > button:hover {
    opacity: 0.7;
  }
}
@media (min-width: 800px) {
  .c-button._middle {
    width: 428px;
  }
}
.c-button._middle a {
  height: 66px;
}

@media (min-width: 800px) {
  .c-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.c-card .c-card__item {
  padding: 30px 24px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
@media not all and (min-width: 800px) {
  .c-card .c-card__item + .c-card__item {
    margin-top: 40px;
  }
}
@media (min-width: 800px) {
  .c-card .c-card__item {
    box-sizing: border-box;
    flex-shrink: 0;
    width: calc(50% - 20px);
    padding: 34px;
  }
  .c-card .c-card__item:nth-child(2n) {
    margin-left: 40px;
  }
  .c-card .c-card__item:nth-child(n+3) {
    margin-top: 40px;
  }
}
.c-card .c-card__item .c-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-card .c-card__item .c-card__body .c-button {
  margin-top: 30px;
}
@media (min-width: 800px) {
  .c-card .c-card__item .c-card__body .c-button {
    display: flex;
    flex-grow: 1;
    align-items: flex-end;
  }
}
.c-card .c-card__item .c-card__title {
  line-height: 1.375;
}
.c-card .c-card__item .c-card__image {
  margin-top: 20px;
}

@media (min-width: 800px) {
  .c-description {
    display: table;
    width: 100%;
  }
}
@media (min-width: 800px) {
  .c-description > .c-description__item {
    display: table-row;
  }
}
@media not all and (min-width: 800px) {
  .c-description > .c-description__item + .c-description__item {
    padding-top: 30px;
  }
}
@media (min-width: 800px) {
  .c-description > .c-description__item + .c-description__item > dt,
.c-description > .c-description__item + .c-description__item > dd {
    padding-top: 30px;
  }
}
.c-description > .c-description__item > dt {
  font-weight: 700;
}
@media not all and (min-width: 800px) {
  .c-description > .c-description__item > dt {
    margin-bottom: 10px;
  }
}
@media (min-width: 800px) {
  .c-description > .c-description__item > dt {
    display: table-cell;
    max-width: 6.4%;
    padding-right: 10px;
  }
}
@media (min-width: 800px) {
  .c-description > .c-description__item > dd {
    display: table-cell;
  }
}

.c-grid {
  margin-top: 80px;
}
@media not all and (min-width: 800px) {
  .c-grid .c-grid__item {
    display: flex !important;
    flex-direction: column-reverse;
  }
}
@media (min-width: 800px) {
  .c-grid .c-grid__item {
    display: grid !important;
    grid-template-columns: auto 48%;
    gap: 40px;
  }
}
@media (min-width: 800px) {
  .c-grid .c-grid__body {
    display: flex;
    flex-direction: column;
  }
}
.c-grid .c-grid__body .c-grid__title {
  margin-top: 10px;
}
@media (min-width: 800px) {
  .c-grid .c-grid__body .c-grid__title {
    margin-top: auto;
  }
}
.c-grid .c-grid__body .c-grid__title + .c-grid__sub {
  margin-top: 5px;
}
@media (min-width: 800px) {
  .c-grid .c-grid__body .c-grid__title + .c-grid__sub {
    margin-top: 10px;
  }
}
.c-grid .c-grid__body .c-accordion__btn {
  margin-top: 20px;
}
@media (min-width: 800px) {
  .c-grid .c-grid__body .c-accordion__btn {
    margin-top: auto;
    margin-bottom: 1em;
  }
}

.c-hamburger {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 56px;
  height: 56px;
  padding: 19px 0 8px;
  background-color: #1a1a1a;
  border: none;
}
.c-hamburger .c-hamburger__line {
  position: relative;
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-hamburger .c-hamburger__line::before, .c-hamburger .c-hamburger__line::after {
  position: absolute;
  left: 0;
  display: block;
  width: 20px;
  height: 1px;
  content: "";
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-hamburger .c-hamburger__line::before {
  top: -6px;
}
.c-hamburger .c-hamburger__line::after {
  top: 6px;
  width: 10px;
}
.l-pageNavigation._open .c-hamburger .c-hamburger__line {
  background: none;
}
.l-pageNavigation._open .c-hamburger .c-hamburger__line::before {
  transform: translateY(6px) rotateZ(34deg);
}
.l-pageNavigation._open .c-hamburger .c-hamburger__line::after {
  width: 20px;
  transform: translateY(-6px) rotateZ(-34deg);
}
.c-hamburger .c-hamburger__text {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
  color: #fff;
  transform: scale(0.8);
}
.c-hamburger .c-hamburger__text::before {
  content: "メニュー";
}
.l-pageNavigation._open .c-hamburger .c-hamburger__text::before {
  content: "閉じる";
}
@media (min-width: 1024px) {
  .c-hamburger {
    display: none;
  }
}

[class*=c-heading] {
  color: #000;
}
[class*=c-heading]._center {
  text-align: center;
}
[class*=c-heading]._right {
  text-align: right;
}
[class*=c-heading]._left {
  text-align: left;
}
[class*=c-heading]:first-child {
  margin-top: 0;
}
[class*=c-heading] + p {
  margin-top: 0 !important;
}

.l-contents__wide .c-heading__wrap {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.c-heading01 {
  margin-bottom: 4px;
  text-align: center;
}
@media (min-width: 800px) {
  .c-heading01 {
    margin-bottom: 36px;
  }
}
.c-heading01 span {
  display: inline-flex;
  align-items: center;
}
.c-heading01 span::before, .c-heading01 span::after {
  width: 20px;
  height: 1px;
  content: "";
  background-color: #707070;
}
@media (min-width: 800px) {
  .c-heading01 span::before, .c-heading01 span::after {
    width: 50px;
  }
}
.c-heading01 span::before {
  margin-right: 5px;
}
@media (min-width: 800px) {
  .c-heading01 span::before {
    margin-right: 24px;
  }
}
.c-heading01 span::after {
  margin-left: 5px;
}
@media (min-width: 800px) {
  .c-heading01 span::after {
    margin-left: 24px;
  }
}

.c-heading02 {
  padding-bottom: 20px;
  margin-top: 60px;
  margin-bottom: 40px;
  text-align: center;
  border-bottom: 1px solid #707070;
}

.c-heading03 {
  margin-top: 60px;
  margin-bottom: 30px;
}
.c-heading03::after {
  display: block;
  width: 60px;
  height: 1px;
  margin-top: 6px;
  content: "";
  background-color: #2e2e2e;
}

.c-heading04 {
  padding-left: 10px;
  margin-top: 60px;
  margin-bottom: 30px;
  border-left: 4px solid #2e2e2e;
}

.c-image {
  display: block;
}
.c-image .c-image__caption {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: right;
}
.c-image .c-image__caption._left {
  text-align: left;
}

:not([class^=u-align], .c-modal__image).c-image img {
  width: 100%;
  height: auto;
}

.c-imageList .c-imageList__item + .c-imageList__item {
  margin-top: 45px;
}
.c-imageList .c-imageList__item + .c-imageList__item::before {
  display: block;
  width: 175px;
  height: 1px;
  margin: 0 auto 45px;
  content: "";
  background-color: #ccc;
}
@media (min-width: 800px) {
  .c-imageList .c-imageList__item + .c-imageList__item::before {
    width: 300px;
  }
}
.c-imageList .c-imageList__title {
  margin-bottom: 33px;
}
@media (min-width: 800px) {
  .c-imageList .c-imageList__image._movie {
    max-width: 640px;
    margin: 0 auto;
  }
}
.c-imageList .c-imageList__image._movie .c-imageList__imageInner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-imageList .c-imageList__image._movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.c-lead {
  display: flex;
  margin-top: 40px;
  margin-bottom: 12px;
  line-height: 1.8;
}
.c-lead::before {
  position: relative;
  top: -0.2em;
  flex-shrink: 0;
  margin-right: 8px;
  font-size: 1.2em;
  content: "ー";
}

.c-mainVisual {
  position: relative;
  display: flex;
  justify-content: center;
}
@media not all and (min-width: 800px) {
  .c-mainVisual {
    flex-direction: column-reverse;
  }
}
@media (min-width: 800px) {
  .c-mainVisual .c-mainVisual__heading {
    position: absolute;
    top: 0;
    z-index: 2;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    width: 100%;
    max-width: 1240px;
    height: 100%;
    padding: 0 20px 70px;
  }
}
.c-mainVisual .c-mainVisual__heading h1 {
  font-weight: 500;
}
@media not all and (min-width: 800px) {
  .c-mainVisual .c-mainVisual__heading h1 {
    padding: 25px 25px 30px;
    background-color: #1a1a1a;
  }
}
@media (min-width: 800px) {
  .c-mainVisual .c-mainVisual__heading h1 {
    background-color: none !important;
  }
}
.c-mainVisual .c-mainVisual__heading .c-mainVisual__headingSub {
  display: block;
}
@media not all and (min-width: 1024px) {
  .c-mainVisual .c-mainVisual__heading .c-mainVisual__headingSub {
    font-size: 2.5vw;
  }
}
@media (min-width: 1024px) {
  .c-mainVisual .c-mainVisual__heading .c-mainVisual__headingSub {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.6;
  }
}
@media not all and (min-width: 800px) {
  .c-mainVisual .c-mainVisual__heading .c-mainVisual__headingSub {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 2;
  }
}
.c-mainVisual .c-mainVisual__heading .c-mainVisual__headingTitle {
  display: block;
  margin-top: 20px;
  font-weight: 500;
}
@media not all and (min-width: 1024px) {
  .c-mainVisual .c-mainVisual__heading .c-mainVisual__headingTitle {
    font-size: 6.6666666667vw;
  }
}
@media (min-width: 1024px) {
  .c-mainVisual .c-mainVisual__heading .c-mainVisual__headingTitle {
    margin-top: 40px;
    font-size: 80px;
    font-size: 5rem;
    line-height: 1.2375;
  }
}
@media not all and (min-width: 800px) {
  .c-mainVisual .c-mainVisual__heading .c-mainVisual__headingTitle {
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 1.3823529412;
  }
}
.c-mainVisual .c-mainVisual__image {
  display: block;
}
@media (min-width: 800px) {
  .c-mainVisual .c-mainVisual__image {
    position: relative;
    z-index: 1;
  }
}
.c-mainVisual .c-mainVisual__image img {
  width: 100%;
  height: auto;
}

/*
.c-mainVisual.js-inview,
*/
.c-mainVisual.js-inview {
  filter: blur(30px);
  opacity: 0;
  transition: 1s;
  transform: translateY(0);
}

/*
.c-mainVisual.js-inview.-inview.js-imageloaded,
*/
.c-mainVisual.js-inview.-inview.js-imageloaded {
  filter: blur(0);
  opacity: 1;
  transition: 1s;
  transform: translateY(0);
}

.c-modalWrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.c-modalWrap:not(.is-open) {
  display: none;
}
.c-modalWrap[aria-hidden=false] {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modalWrap[aria-hidden=true] {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-modal.modal {
  position: static;
  width: 100%;
  background: none;
  box-shadow: none;
}
@media not all and (min-width: 800px) {
  .c-modal.modal {
    height: calc(100% - 30px);
  }
}
@media (min-width: 800px) {
  .c-modal.modal {
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
  }
}
.c-modal.modal a.close-modal {
  display: none;
}
.c-modal .c-modal__inner {
  width: 100%;
  max-height: 80vh;
  margin-right: auto;
  margin-left: auto;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media not all and (min-width: 800px) {
  .c-modal .c-modal__inner {
    height: calc(100% - 60px);
    padding: 0 25px;
  }
}
.c-modal .c-modal__inner::-webkit-scrollbar {
  display: none;
}
.c-modal .c-modal__body {
  display: flex;
}
@media not all and (min-width: 800px) {
  .c-modal .c-modal__body {
    flex-direction: column;
  }
}
.c-modal .c-modal__description {
  order: 2;
}
.c-modal .c-modal__image {
  order: 1;
}
@media not all and (min-width: 800px) {
  .c-modal .c-modal__image {
    margin-bottom: 30px;
  }
}
@media (min-width: 800px) {
  .c-modal .c-modal__image {
    flex-shrink: 0;
    width: 300px;
    margin-right: 45px;
  }
}
.c-modal .c-modal__close {
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin-bottom: 26px;
  margin-left: auto;
  overflow: visible;
  color: #fff;
  text-align: right;
  touch-action: manipulation;
  cursor: pointer;
  background: url(../img/icon_close.svg) no-repeat 50% 50%;
  background-size: 30px auto;
  border: 0;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
}
@media not all and (min-width: 800px) {
  .c-modal .c-modal__close {
    margin-right: 25px;
  }
}
@media (min-width: 800px) {
  .c-modal .c-modal__close {
    margin-bottom: 47px;
  }
}

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.l-contents {
  padding-top: 20px;
}

.l-footer {
  padding: 36px 0 84px;
  margin-top: 100px;
  background-color: #e1e1e1;
}
@media (min-width: 800px) {
  .l-footer {
    padding-bottom: 36px;
  }
}
.l-footer .l-footer__copy {
  display: block;
  margin-top: 17px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.6666666667;
  text-align: center;
}
.l-footer .l-footer__button {
  margin-top: 30px;
}
@media not all and (min-width: 800px) {
  .l-footer .l-footer__button {
    padding: 0 6.6666666667vw;
  }
}
@media (min-width: 800px) {
  .l-footer .l-footer__button {
    width: 314px;
    margin-right: auto;
    margin-left: auto;
  }
}
.l-footer .l-footer__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  color: #fff;
  text-decoration: none;
  background-color: #666;
}
@media (min-width: 800px) {
  .l-footer .l-footer__button a {
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .l-footer .l-footer__button a:hover {
    opacity: 0.7;
  }
}

@media not all and (min-width: 800px) {
  .l-pageNavigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    transition: background-color 0.3s linear;
  }
  .l-pageNavigation._open {
    height: 100%;
    background-color: #1a1a1a;
  }
}
@media (min-width: 800px) {
  .l-pageNavigation {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #1a1a1a;
  }
}
@media not all and (min-width: 800px) {
  .l-pageNavigation .l-pageNavigation__inner {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 90px 6.6666666667vw 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s linear, visibility 0.3s linear;
  }
  .l-pageNavigation._open .l-pageNavigation__inner {
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 800px) {
  .l-pageNavigation .l-pageNavigation__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
  }
}
@media (min-width: 800px) {
  .l-pageNavigation .l-pageNavigation__inner .c-buttonWrap {
    display: none;
  }
}
@media not all and (min-width: 800px) {
  .l-pageNavigation .l-pageNavigation__list {
    padding-left: 30px;
    border-left: 1px solid #fff;
  }
}
@media (min-width: 800px) {
  .l-pageNavigation .l-pageNavigation__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.l-pageNavigation .l-pageNavigation__item a {
  display: inline-flex;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 800px) {
  .l-pageNavigation .l-pageNavigation__item a:hover span {
    text-decoration: underline;
  }
}
@media (min-width: 800px) {
  .l-pageNavigation .l-pageNavigation__item:not(:only-child) a {
    padding: 0 30px;
  }
}
@media not all and (min-width: 800px) {
  .l-pageNavigation .l-pageNavigation__item:not(:only-child) + .l-pageNavigation__item {
    margin-top: 30px;
  }
}
@media (min-width: 800px) {
  .l-pageNavigation .l-pageNavigation__item:not(:only-child) + .l-pageNavigation__item a::before {
    position: relative;
    left: -30px;
    content: "|";
  }
}
@media (min-width: 800px) {
  .l-pageNavigation .l-pageNavigation__item:only-child a::after {
    display: inline-block;
    align-self: center;
    width: 11px;
    height: 5px;
    margin-left: 5px;
    content: "";
    background: url("../img/icon_arrow.svg") no-repeat 50%;
    background-size: contain;
  }
}
@media not all and (min-width: 800px) {
  .l-pageNavigation .l-pageNavigation__ticket {
    position: absolute;
    top: 0;
    right: 56px;
    width: 56px;
    height: 56px;
    transition: opacity 0.3s linear, visibility 0.3s linear;
  }
  .l-pageNavigation._open .l-pageNavigation__ticket {
    visibility: hidden;
    opacity: 0;
  }
}
@media (min-width: 800px) {
  .l-pageNavigation .l-pageNavigation__ticket {
    position: fixed;
    top: 100px;
    right: 0;
    z-index: 10;
  }
}
.l-pageNavigation .l-pageNavigation__ticket a {
  display: block;
}
.l-pageNavigation .l-pageNavigation__ticket .l-pageNavigation__ticketBtn {
  display: block;
}

.l-main {
  width: 100%;
}
@media (min-width: 800px) {
  .l-main [id]:not(.c-modalWrap) {
    padding-top: 160px;
    margin-top: -60px;
  }
}

.l-pagetop {
  position: fixed;
  right: 60px;
  bottom: 80px;
  width: 58px;
  height: 58px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}
@media not all and (min-width: 800px) {
  .l-pagetop {
    right: 6.6666666667vw;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }
}
.l-pagetop._show {
  visibility: visible;
  opacity: 1;
}
.l-pagetop._show .l-pagetop__link {
  transform: translateY(0);
}
.l-pagetop .l-pagetop__link {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: #2e2e2e;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(65px);
}
@media (min-width: 800px) {
  .l-pagetop .l-pagetop__link {
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .l-pagetop .l-pagetop__link:hover {
    opacity: 0.7;
  }
}
@media not all and (min-width: 800px) {
  .l-pagetop .l-pagetop__link {
    width: 48px;
    height: 48px;
  }
}
.l-pagetop .l-pagetop__link::before {
  position: absolute;
  display: block;
  width: 24px;
  height: 10px;
  content: "";
  background: url(../img/icon_gotop.svg) no-repeat 0 0;
  background-size: contain;
}

.p-sectionWrap:not(:root) {
  width: 100%;
  margin-top: 100px;
}
.p-sectionWrap:not(:root) > [class^=u-bg] {
  padding: 100px 6.6666666667vw;
}

@media not all and (min-width: 800px) {
  .p-sectionWrap > .p-section {
    padding-right: 6.6666666667vw;
    padding-left: 6.6666666667vw;
  }
}
@media (min-width: 800px) {
  .p-section {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media (min-width: 800px) {
  .p-section._narrow {
    max-width: 850px;
  }
}