@charset "UTF-8";
[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  main {
    width: 100%;
    overflow: hidden;
  }
  main img,
main svg {
    width: 100%;
  }
}

.firstview {
  width: 100%;
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .firstview {
    margin-top: 17.44vw;
  }
}
.firstview h1 {
  width: 100%;
  aspect-ratio: 1512/708;
  position: relative;
}
.firstview h1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .firstview h1 {
    aspect-ratio: 130/139;
  }
}

.hashtag {
  background-color: #ffffff;
  padding: 20px 0;
  text-align: center;
}
.hashtag p {
  margin: 0;
}
.hashtag .hashtag-lead {
  background-color: #EBFEFF;
  border-radius: 100px;
  color: #5BBEE5;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 10px 24px;
}
@media screen and (max-width: 768px) {
  .hashtag .hashtag-lead {
    font-size: 3.59vw;
    margin-bottom: 2.56vw;
    padding: 1.54vw 6.15vw;
  }
}
.hashtag .hashtag-text {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .hashtag .hashtag-text {
    font-size: 3.59vw;
  }
}
@media screen and (max-width: 768px) {
  .hashtag {
    padding: 5.13vw 0;
  }
}

article {
  background: #f4f4f4;
  padding: 60px 0;
  width: 100%;
  overflow: hidden;
}
article > section {
  position: relative;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  article > section {
    padding-bottom: 7.95vw;
    position: relative;
    z-index: 1;
  }
  article > section ::-webkit-scrollbar {
    display: none;
  }
}
article > section .section-wrapper {
  display: none;
  border: 1px solid #5BBEE5;
  max-width: 1122px;
  margin: 0 auto;
  position: relative;
}
article > section .section-wrapper > * {
  position: relative;
  z-index: 2;
}
article > section .section-wrapper > .wrapper {
  background-color: #ffffff;
  padding: 40px 10%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  article > section .section-wrapper > .wrapper {
    padding: 5.13vw;
  }
}
@media screen and (max-width: 768px) {
  article > section .section-wrapper {
    width: 87.18vw;
  }
}
article > section .section-title {
  cursor: pointer;
  max-width: 1122px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  article > section .section-title {
    max-width: none;
    width: 87.18vw;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
article > section .section-title p {
  width: 100%;
  background: #5BBEE5;
  padding: 36px 42px 36px;
  position: relative;
  display: flex;
  align-items: center;
}
article > section .section-title p .subttl {
  display: inline-block;
  margin-right: 24px;
  width: 193px;
  height: 50px;
  line-height: 50px;
  background: #EBFEFF;
  border-radius: 46px;
  color: #5BBEE5;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  letter-spacing: 0.13em;
  font-weight: 600;
}
article > section .section-title p .subttl b {
  font-weight: 600;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  article > section .section-title p .subttl b {
    font-size: 4.87vw;
    margin: 0 0 0 1.03vw;
  }
}
@media screen and (max-width: 768px) {
  article > section .section-title p .subttl {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37.95vw;
    height: 7.18vw;
    font-size: 3.59vw;
    margin: 0 0 2.05vw 0;
  }
}
article > section .section-title p .ttl {
  width: calc(100% - 241px);
  margin-right: 24px;
  text-align: left;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.13em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  article > section .section-title p .ttl {
    margin: 0;
    width: 100%;
    font-size: 6.15vw;
    line-height: 1.4;
  }
}
article > section .section-title p::before {
  content: "";
  position: absolute;
  right: 49px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: content 0.2s;
  pointer-events: none;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  article > section .section-title p::before {
    right: 8.97vw;
    width: 0.51vw;
    height: 6.15vw;
  }
}
article > section .section-title p::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: content 0.2s;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  article > section .section-title p::after {
    right: 6.15vw;
    width: 6.15vw;
    height: 0.51vw;
  }
}
@media screen and (max-width: 768px) {
  article > section .section-title p {
    flex-direction: column;
    padding: 3.33vw 4.1vw;
  }
}
article > section .section-title.is-open p::before {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  article > section .section-title {
    padding: 0;
  }
  article > section .section-title::after {
    left: 0;
    width: 51.28vw;
    width: 31vw;
  }
}
@media screen and (max-width: 768px) {
  article {
    padding: 7.69vw 0;
  }
}

.section-title.is-open + .section-wrapper {
  display: block;
  -webkit-animation: fadeIn 0.3s ease forwards;
          animation: fadeIn 0.3s ease forwards;
}

.wrapper-text {
  text-align: center;
  letter-spacing: 0.02em;
}
.wrapper-text--small {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .wrapper-text--small {
    font-size: 3.59vw;
    margin-bottom: 3.08vw;
  }
}
.wrapper-text--strong {
  text-align: center;
  margin-bottom: 20px;
}
.wrapper-text--strong span {
  display: inline-block;
  line-height: 1;
  padding: 11px 16px;
  background: #EBFEFF;
  font-size: 28px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .wrapper-text--strong span {
    font-size: 5.13vw;
    padding: 1.28vw 2.56vw;
    margin-bottom: 2.05vw;
  }
}
@media screen and (max-width: 768px) {
  .wrapper-text--strong {
    margin-bottom: 2.56vw;
  }
}
.wrapper-text--medium {
  width: 808px;
  margin: 0 auto 34px;
  line-height: 1.7;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .wrapper-text--medium {
    width: 100%;
    font-size: 3.59vw;
    margin: 0 auto 3.08vw;
  }
}

@media screen and (max-width: 768px) {
  .section01 .section-title img {
    max-width: 83.08vw;
  }
}
.section01__catch {
  max-width: 1122px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section01__catch {
    max-width: none;
    width: 87.18vw;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
.section01__catch .section-photo {
  max-width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section01__catch .section-photo {
    max-width: none;
    width: 84.62vw;
  }
}
.section01__catch h3 {
  margin-top: 43px;
}
@media screen and (max-width: 768px) {
  .section01__catch h3 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
.section01__catch h3 .num {
  display: inline-block;
  width: 58px;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .section01__catch h3 .num {
    width: 6.92vw;
    margin-right: 1.28vw;
  }
}
.section01__catch h3 span {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.02em;
  font-size: 40px;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .section01__catch h3 span {
    font-size: clamp(1.875rem, -0.01rem + 3.92vw, 2.5rem);
  }
}
@media screen and (max-width: 768px) {
  .section01__catch h3 span {
    font-size: 5.13vw;
  }
}
@media screen and (max-width: 768px) {
  .section01__catch h3 {
    margin-top: 5.13vw;
  }
}
@media screen and (max-width: 768px) {
  .section01 .wrapper-text--medium {
    text-align: left;
  }
}
.section01 .section-photo {
  margin-bottom: 20px;
}
.section01 .comm-dl {
  max-width: 680px;
  margin: 0 auto 22px auto;
}
.section01 .comm-dl .tour-txt {
  text-align: left;
}
.section01 .linkarea p {
  font-size: 12px;
  margin: 12px 0 0 0;
  text-align: left;
}
.section01 .linkarea p a {
  text-decoration: underline;
}
.section01 .linkarea p a:hover {
  text-decoration: none;
}
.section01 .linkarea p + p {
  margin-top: 6px;
}

@media screen and (max-width: 768px) {
  .section02 .section-title p {
    max-width: none;
  }
}
.section02 .section-photo {
  margin-bottom: 24px;
}
.section02 .section-photo--blend {
  margin: 0;
  padding: 0;
  width: auto;
}
.section02 .section-photo--blend img {
  max-width: 276px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .section02 .section-photo--blend img {
    max-width: none;
    width: 10.26vw;
  }
}
@media screen and (max-width: 768px) {
  .section02 .wrapper-text {
    line-height: 1.6;
    text-align: left;
  }
}
.section02 .section-wrapper::before {
  left: -521px;
}
@media screen and (max-width: 768px) {
  .section02 .section-wrapper::before {
    left: -68vw;
  }
}
.section02 .flexbox {
  gap: 20px;
  margin: 0 0 24px 0;
}
.section02 .flexbox__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 20px) / 2);
}
.section02 .flexbox__item p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  flex: 1;
  text-align: left;
}
.section02 .flexbox__item p span {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .section02 .flexbox__item p span {
    font-size: 2.82vw;
  }
}
@media screen and (max-width: 768px) {
  .section02 .flexbox__item p {
    font-size: 3.59vw;
  }
}
.section02 .flexbox__item figure {
  margin: 10px 0 0 0;
  flex: 1;
}
.section02 .flexbox__item figure img {
  max-width: 100%;
  height: auto;
}
.section02 .flexbox__item figure figcaption {
  font-size: 12px;
  margin: 10px 0 0 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .section02 .flexbox__item figure figcaption {
    font-size: 2.82vw;
    margin: 2.56vw 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .section02 .flexbox__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .section02 .flexbox {
    flex-direction: column;
    grid-area: 6.15vw;
  }
}
.section02 .comm-dl {
  max-width: 740px;
  margin: 0 auto 42px;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .section02 .comm-dl {
    max-width: none;
    width: 84.62vw;
    margin: 5.13vw auto 5.13vw;
    padding: 0;
  }
}
.section02 .comm-option {
  margin-top: 90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section02 .comm-option {
    margin-top: 12.82vw;
  }
}
.section02 .comm-option figcaption {
  font-size: 14px;
  text-align: right;
  margin-top: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .section02 .comm-option figcaption {
    font-size: 2.56vw;
    margin-top: 2.05vw;
  }
}
.section02 .jre-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section02 .jre-logo p {
  display: flex;
  align-items: baseline;
  color: #00833e;
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0 0.3em;
}
@media screen and (max-width: 768px) {
  .section02 .jre-logo p {
    font-size: 5.13vw;
    margin: 0 0 0 1.54vw;
  }
}
.section02 .jre-logo p span {
  display: inline-block;
  font-size: 52px;
  margin: 0 0.1em 0 0;
}
@media screen and (max-width: 768px) {
  .section02 .jre-logo p span {
    font-size: 10.26vw;
  }
}
.section02 .unit-text--medium {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .section02 .unit-text--medium {
    font-size: 2.82vw;
  }
}
.section02 .unit-text--small {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0.2em 0 0 0;
}
@media screen and (max-width: 768px) {
  .section02 .unit-text--small {
    font-size: 2.82vw;
  }
}
.section02 .grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .section02 .grid-list {
    grid-template-columns: 1fr;
    gap: 5.13vw;
  }
}
.section02 .grid-list li {
  border-bottom: 1px solid #D1D1D1;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0 0 16px 0;
  display: flex;
  align-items: center;
}
.section02 .grid-list li + li {
  margin-top: 0;
}
.section02 .grid-list li span {
  font-size: 12px;
  line-height: 0.95;
  background: #5BBEE5;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
}
@media screen and (max-width: 768px) {
  .section02 .grid-list li span {
    font-size: 3.59vw;
    margin: 0.26vw 2.56vw 0 0;
    padding: 0 0 0.1em 0.1em;
    width: 5.38vw;
    height: 5.38vw;
  }
}
.section02 .grid-list li::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #000000;
  margin: 0 0 0 14px;
}
@media screen and (max-width: 768px) {
  .section02 .grid-list li::after {
    margin: 0.51vw 0 0 3.59vw;
  }
}
@media screen and (max-width: 768px) {
  .section02 .grid-list li {
    font-size: 3.59vw;
    padding: 0 0 5.64vw 0;
  }
}
.section02 .unit-list li a {
  position: relative;
}
.section02 .unit-list li a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 0 0 6px;
  z-index: 2;
  pointer-events: none;
  background-color: #6d6d6d;
  -webkit-mask: url("../images/blank.svg") no-repeat center/contain;
  mask: url("../images/blank.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .section02 .unit-list li a[target=_blank]::after {
    width: 3.08vw;
    height: 3.08vw;
    margin: 0 0 0 1.54vw;
  }
}
.section02 .linkarea {
  max-width: 740px;
  margin: 20px auto 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section02 .linkarea {
    max-width: none;
    width: 100%;
    margin: 5.13vw auto 0;
    padding: 0;
  }
}
.section02 .linkarea .comm-linkarea {
  background: #5BBEE5;
  border-color: #5BBEE5;
  text-align: center;
  margin-bottom: 10px;
  width: 370px;
}
@media screen and (max-width: 768px) {
  .section02 .linkarea .comm-linkarea {
    margin-bottom: 2.56vw;
    width: 100%;
  }
}
.section02 .linkarea .comm-linkarea span {
  color: #EBFEFF;
  margin-right: 0;
}
.section02 .linkarea .comm-linkarea i {
  background-color: #EBFEFF;
  right: 20px;
  left: auto;
}
.section02 .linkarea .comm-linkarea:hover {
  background: #EBFEFF;
}
.section02 .linkarea .comm-linkarea:hover span {
  color: #5BBEE5;
}
.section02 .linkarea .comm-linkarea:hover i {
  background-color: #5BBEE5;
}
@media screen and (max-width: 768px) {
  .section02 .linkarea .comm-linkarea span {
    margin-right: 0;
  }
  .section02 .linkarea .comm-linkarea i {
    right: 3.85vw;
  }
}
.section02 .linkarea > p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
.section02 .linkarea > p a {
  text-decoration: underline;
}
.section02 .linkarea > p a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .section02 .linkarea > p {
    font-size: 2.82vw;
    line-height: 1.5;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .section03 .section-title p {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .section03 .section-title img {
    max-width: none;
    width: 87.44vw;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
}
.section03 .section-wrapper::before {
  left: -516px;
}
@media screen and (max-width: 768px) {
  .section03 .section-wrapper::before {
    left: -63.2vw;
    height: 139.56vw;
  }
}
.section03 .flexbox {
  max-width: 594px;
  margin: 0 auto 18px auto;
  gap: 28px;
}
.section03 .flexbox .flexbox__item {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .section03 .flexbox .flexbox__item:first-child {
    width: calc(45% - 1.28vw);
  }
}
@media screen and (max-width: 768px) {
  .section03 .flexbox .flexbox__item:nth-child(2) {
    width: calc(55% - 1.28vw);
  }
}
.section03 .flexbox figcaption {
  background-color: #5BBEE5;
  border-radius: 100px;
  color: #ffffff;
  display: inline-block;
  font-size: 18px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.13em;
  padding: 0.5em 1em;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .section03 .flexbox figcaption {
    font-size: 3.59vw;
    margin: 0 0 5.13vw 0;
    padding: 0.2em 0.8em;
  }
}
@media screen and (max-width: 768px) {
  .section03 .flexbox {
    width: 100%;
    max-width: none;
    margin: 0 0 5.13vw 0;
    gap: 2.56vw;
  }
}
.section03 .wrapper-text--medium {
  margin-bottom: 8px;
}
.section03 .wrapper-text--medium span {
  display: inline-block;
  line-height: 1;
  padding: 6px 10px;
  background: #EBFEFF;
  font-size: 26px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section03 .wrapper-text--medium span {
    font-size: 4.1vw;
    padding: 1.28vw 2.56vw;
    margin: 0.2em 0;
  }
}
@media screen and (max-width: 768px) {
  .section03 .wrapper-text--medium {
    text-align: left;
    font-size: 3.33vw;
    margin-bottom: 2.05vw;
  }
}
.section03 .wrapper-text--small {
  font-size: 12px;
  line-height: 1.6;
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .section03 .wrapper-text--small {
    font-size: 2.82vw;
    line-height: 1.5;
  }
}
.section03 .step figcaption {
  line-height: 1.5;
}
.section03 .step figcaption span {
  font-size: 12px;
  font-weight: 400;
}
.section03 .linkarea {
  margin: 20px auto;
}
.section03 .comm-dl {
  max-width: 740px;
  margin: 20px auto 22px;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .section03 .comm-dl {
    max-width: none;
    width: 100%;
    margin: 5.13vw auto 5.13vw;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .section03 .comm-dl__title {
    margin-bottom: 2.56vw;
  }
}

@media screen and (max-width: 768px) {
  .section04 .section-title p {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .section04 .section-title img {
    width: 61.03vw;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
}
.section04 .section-photo {
  position: relative;
  /*
      &::after {
        content: '※イメージ';
        position: absolute;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.02em;
        bottom: 10px;
        right: 3em;

        @include breakpoint_sp() {
          font-size: px2vw(10);
          right: 1.5em;
        }
      }
  */
}
.section04 .section-photo img {
  border: 1px solid #f4f4f4;
}
.section04 .section-wrapper::before {
  left: -519px;
}
@media screen and (max-width: 768px) {
  .section04 .section-wrapper::before {
    left: -65.2vw;
  }
}
.section04 .comm-dl {
  max-width: 740px;
  margin: 20px auto 22px;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .section04 .comm-dl {
    max-width: none;
    width: 84.62vw;
    margin: 5.13vw auto 5.13vw;
    padding: 0;
  }
}
.section04 .comm-dl.s0402 .comm-dl__text > * + * {
  margin-top: 18px;
}
.section04 .comm-dl.s0402 .comm-dl__text > dl {
  line-height: 1.6;
}
.section04 .comm-dl.s0402 .comm-dl__text > dl dt {
  font-size: 18px;
  font-weight: 600;
}
.section04 .comm-dl.s0402 .comm-dl__text > dl dd {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .section04 .comm-dl.s0402 .comm-dl__text > dl {
    line-height: 1.6;
  }
  .section04 .comm-dl.s0402 .comm-dl__text > dl dt {
    font-size: 3.08vw;
    font-weight: 600;
  }
  .section04 .comm-dl.s0402 .comm-dl__text > dl dd {
    font-size: 2.56vw;
    font-weight: 400;
  }
}

@media screen and (max-width: 768px) {
  .section05 .section-title p {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .section05 .section-title img {
    width: 79.49vw;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
}
.section05 .section-wrapper::before {
  left: -521px;
}
@media screen and (max-width: 768px) {
  .section05 .section-wrapper::before {
    left: -68vw;
  }
}
.section05 .comm-dl {
  max-width: 740px;
  margin: 20px auto 22px;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .section05 .comm-dl {
    max-width: none;
    width: 84.62vw;
    margin: 5.13vw auto 5.13vw;
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .section06 .section-title p {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .section06 .section-title img {
    max-width: none;
    width: 66.15vw;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
}
.section06 .section-wrapper::before {
  left: -521px;
}
@media screen and (max-width: 768px) {
  .section06 .section-wrapper::before {
    left: -68vw;
  }
}
.section06 .section-desc {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .section06 .section-desc {
    margin-top: 4.36vw;
  }
}
.section06 .comm-dl {
  max-width: 740px;
  margin: 20px auto 22px;
  padding: 0 30px;
}
.section06 .comm-dl__text .dates {
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .section06 .comm-dl {
    max-width: none;
    width: 100%;
    margin: 5.13vw auto 5.13vw;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .section06 .comm-dl__title {
    margin-bottom: 2.56vw;
  }
}
.section06 .wrapper-text {
  display: inline-block;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
}

.locatone {
  background: #f4f4f4;
  width: 100%;
  margin: 0 auto;
  padding: 20px 30px 40px;
}
.locatone-wrapper {
  display: flex;
}
.locatone .logobox {
  width: 51.6%;
  margin-right: 29px;
}
.locatone .logobox .logo img {
  width: 174px;
}
.locatone .logobox .logo span {
  display: inline-block;
  margin-left: 7px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
  top: -7px;
}
.locatone .logobox .locatone-desc {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.locatone .link {
  width: 48.4%;
  margin-top: 50px;
}
.locatone .link .caution {
  margin-top: 17px;
}
.locatone .link .caution li {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .locatone {
    display: block;
    padding: 0;
    padding: 5.13vw 0 10.26vw;
  }
  .locatone-wrapper {
    width: 91.72%;
    height: 48.46vw;
    overflow: scroll;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
  }
  .locatone .simplebar-scrollba::before {
    background: #ffffff;
    border-radius: 0;
    width: 5px;
    margin-left: 3px;
    margin-top: 2px;
  }
  .locatone .simplebar-scrollba.simplebar-visible::before {
    opacity: 1;
  }
  .locatone .simplebar-track {
    background: #ffffff;
    width: 4px !important;
  }
  .locatone .simplebar-track .simplebar-scrollbar,
.locatone .simplebar-track .simplebar-scrollbar::before {
    background: #000000;
    opacity: 1;
  }
  .locatone .logobox {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4.1vw;
  }
  .locatone .logobox .logo img {
    width: 32.31vw;
  }
  .locatone .logobox .logo span {
    font-size: 4.36vw;
    margin-left: 1.28vw;
  }
  .locatone .logobox .locatone-desc {
    font-size: 2.82vw;
    padding-right: 6.15vw;
  }
  .locatone .link {
    width: 100%;
    margin-top: 5.13vw;
  }
  .locatone .link .caution {
    margin-top: 2.56vw;
  }
  .locatone .link .caution li {
    font-size: 2.82vw;
    padding-right: 6.15vw;
  }
}

.rewards {
  max-width: 740px;
  margin: 20px auto 0;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .rewards {
    max-width: none;
    width: 84.62vw;
    margin: 7.18vw auto 0;
    padding: 0;
  }
}
.rewards > * + * {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .rewards > * + * {
    margin-top: 6.15vw;
  }
}
.rewards .reward {
  width: 100%;
}
.rewards .reward .ttl {
  width: 100%;
  display: flex;
  align-items: center;
  height: 54px;
  background: #F6EAF7;
  padding: 0 20px;
}
.rewards .reward .ttl .rank {
  color: #D13EB8;
  margin-right: 14px;
  padding-right: 14px;
  border-right: 1px solid #D13EB8;
}
.rewards .reward .ttl .rank b {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.rewards .reward .ttl .rank span {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0 0.4em;
}
.rewards .reward .ttl .item {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .rewards .reward .ttl {
    height: 13.33vw;
    padding: 0 2.56vw;
  }
  .rewards .reward .ttl .rank {
    padding-right: 3.59vw;
    margin-right: 3.59vw;
  }
  .rewards .reward .ttl .rank b {
    font-size: 5.9vw;
  }
  .rewards .reward .ttl .rank span {
    font-size: 3.33vw;
  }
  .rewards .reward .ttl .item {
    width: 60%;
    font-size: 3.59vw;
  }
}

.reward__caution {
  max-width: 740px;
  margin: 20px auto 0;
  padding: 0 30px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .reward__caution {
    max-width: none;
    width: 84.62vw;
    margin: 3.33vw auto 0;
    padding: 0;
    font-size: 2.82vw;
    text-indent: -1em;
    padding-left: 1em;
  }
}

.step {
  display: flex;
}
.step > * + * {
  margin-left: 6.7%;
}
.step > * + *::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15%;
  transform: translate(-50%, -50%);
  width: 21px;
  height: 30px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2221%22%20height%3D%2230%22%20viewBox%3D%220%200%2021%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M21%2015.2676L0%2029.557L0%200.978159L21%2015.2676Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .step > * + *::before {
    top: -25%;
    left: 50%;
    width: 4.87vw;
    height: 4.1vw;
    transform: translateX(-50%) rotate(90deg);
  }
}
@media screen and (max-width: 768px) {
  .step > * + *:nth-child(3)::before {
    top: -11%;
  }
}
.step .item {
  width: 30%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .step .item {
    width: 100%;
  }
}
.step .item .ttl {
  width: 100%;
  border-bottom: 1px solid #5BBEE5;
  color: #5BBEE5;
  font-size: 20px;
  letter-spacing: 0.13em;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  text-align: center;
  padding: 2px 0;
}
.step .item .ttl b {
  font-weight: 600;
  font-size: 29px;
}
@media screen and (max-width: 768px) {
  .step .item .ttl {
    font-size: 5.13vw;
    padding: 0.51vw 0;
  }
  .step .item .ttl b {
    font-size: 7.44vw;
  }
}
.step .item:nth-child(1) figure img {
  width: 114px;
}
@media screen and (max-width: 768px) {
  .step .item:nth-child(1) figure img {
    width: 22.05vw;
  }
}
.step .item:nth-child(2) figure img {
  width: 107px;
}
@media screen and (max-width: 768px) {
  .step .item:nth-child(2) figure img {
    width: 20.51vw;
  }
}
@media screen and (max-width: 768px) {
  .step .item:nth-child(3) figure {
    flex-direction: column-reverse;
  }
}
.step .item:nth-child(3) figure img {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .step .item:nth-child(3) figure img {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .step .item:nth-child(3) figure figcaption {
    width: 100%;
    margin: 0 0 1em 0;
  }
}
.step .item figure {
  margin-top: 24px;
}
.step .item figure img {
  height: 112px;
  -o-object-fit: contain;
     object-fit: contain;
}
.step .item figure figcaption {
  margin-top: 26px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .step .item figure {
    margin-top: 5.13vw;
    display: flex;
  }
  .step .item figure img {
    display: inline-block;
    height: auto;
    margin-right: 4.87vw;
  }
  .step .item figure figcaption {
    margin-top: 1.54vw;
    width: 50.77vw;
    font-size: 3.59vw;
  }
}
@media screen and (max-width: 768px) {
  .step {
    display: block;
  }
  .step > * + * {
    margin-left: 0;
    margin-top: 9.49vw;
  }
}

.section-photo {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .section-photo {
    max-width: none;
    width: 100%;
    padding: 0;
  }
}
.section-photo--blend {
  mix-blend-mode: multiply;
}
.section-photo img {
  width: 100%;
}

.section-desc {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin-top: 23px;
}
@media screen and (max-width: 768px) {
  .section-desc {
    font-size: 3.59vw;
    margin-top: 5.13vw;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    width: 100%;
  }
}

.comm-option {
  max-width: 1122px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .comm-option {
    max-width: none;
    width: 87.18vw;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .comm-option {
    width: 100%;
    padding: 0;
  }
}
.comm-option .option-title {
  width: calc(100% - 70px);
  position: relative;
  background: #D13EB8;
  height: 65px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 45px;
}
.comm-option .option-title img {
  width: 100%;
}
.comm-option .option-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #D13EB8;
}
.comm-option .option-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 15px;
  height: calc(100% + 1px);
  background: #f4f4f4;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (max-width: 768px) {
  .comm-option .option-title {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
    padding: 0;
  }
  .comm-option .option-title::before, .comm-option .option-title::after {
    display: none;
  }
}
.comm-option .option-subtitle {
  margin-top: 15px;
  width: 50%;
  height: 65px;
  position: relative;
  background: #fff;
  line-height: 65px;
  text-align: right;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-right: 30px;
}
.comm-option .option-subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
}
.comm-option .option-subtitle::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 15px;
  height: 100%;
  background: #f4f4f4;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .comm-option .option-subtitle {
    display: inline-block;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .comm-option .option-subtitle {
    margin-top: 1.54vw;
    width: 82.05vw;
    height: 9.23vw;
    line-height: 9.23vw;
    font-size: 4.1vw;
    padding-right: 4.1vw;
    margin-left: 7.95vw;
    text-align: left;
  }
  .comm-option .option-subtitle::after {
    width: 4.1vw;
  }
}
.comm-option .option-fig {
  max-width: 740px;
  margin: 30px auto 0;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .comm-option .option-fig {
    max-width: none;
    width: 84.62vw;
    margin: 5.13vw auto 0;
    padding: 0;
  }
}

.modal-box a {
  display: block;
  max-width: 680px;
  margin: 30px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .modal-box a {
    max-width: none;
    width: 84.62vw;
    margin: 5.13vw auto 0;
  }
}
.modal-box a::after {
  content: "";
  display: block;
  width: 111px;
  height: 111px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%22112%22%20height%3D%22112%22%20viewBox%3D%220%200%20112%20112%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20x%3D%220.75%22%20y%3D%220.77002%22%20width%3D%22111%22%20height%3D%22111%22%20rx%3D%2255.5%22%20fill%3D%22%2307B2A8%22%2F%3E%3Cpath%20d%3D%22M83.52%2056.27L42.615%2077.2532L42.615%2035.2869L83.52%2056.27Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transform-origin: center;
  transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  .modal-box a::after {
    width: 15.64vw;
    height: 15.64vw;
  }
}
.modal-box a:hover::after {
  width: 122px;
  height: 122px;
}
.modal-box img {
  width: 100%;
  height: auto;
}
.modal-box .caption {
  margin-top: 16px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .modal-box .caption {
    font-size: 4.1vw;
    text-align: center;
    margin-top: 3.08vw;
  }
}

.linkarea {
  display: inline-block;
}

.comm-linkarea {
  display: inline-block;
  padding: 12px 26px 12px 20px;
  border: 2px solid #5BBEE5;
  border-radius: 100px;
  background: #EBFEFF;
  position: relative;
  transition: all 0.3s ease;
}
.comm-linkarea:hover {
  background: #5BBEE5;
}
.comm-linkarea:hover span {
  color: #ffffff;
}
.comm-linkarea:hover i {
  background-color: #ffffff;
}
.comm-linkarea span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: #5BBEE5;
  line-height: 1.6;
  margin-right: 14px;
}
.comm-linkarea i {
  display: inline-block;
  width: 10px;
  height: 17px;
  background: none;
  border: none;
  background-color: transparent;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #5BBEE5;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .comm-linkarea {
    padding: 3.59vw 6.41vw 3.59vw 5.13vw;
  }
  .comm-linkarea span {
    font-size: 4.1vw;
    letter-spacing: 0.02em;
    margin-right: 5.13vw;
  }
  .comm-linkarea i {
    width: 2.56vw;
    height: 4.36vw;
  }
}

.comm-dl {
  display: flex;
}
.comm-dl__title {
  width: 140px;
  padding: 11px 0 13px;
  margin-right: 21px;
  background: #5BBEE5;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.comm-dl__title span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 768px) {
  .comm-dl__title {
    width: 11.79vw;
    padding: 1.28vw 2.56vw 1.54vw;
    margin-right: 2.56vw;
  }
  .comm-dl__title span {
    font-size: 3.08vw;
    letter-spacing: 0.02em;
    text-align: left;
  }
}
.comm-dl__text {
  width: calc(100% - 140px);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .comm-dl__text {
    width: calc(100% - 11.79vw);
    font-size: 3.59vw;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 768px) {
  .comm-dl__text {
    width: calc(100% - 14.36vw);
    letter-spacing: 0;
  }
}
.comm-dl__text .dates {
  color: #5BBEE5;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .comm-dl__text .dates {
    flex-wrap: wrap;
  }
}
.comm-dl__text .dates .year {
  display: inline-block;
  font-size: 30px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .comm-dl__text .dates .year {
    width: 100%;
    font-size: 4.1vw;
    letter-spacing: 0.02em;
  }
}
.comm-dl__text .dates .num {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .comm-dl__text .dates .num {
    font-size: 8.72vw;
  }
}
.comm-dl__text .dates .daymonth {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 768px) {
  .comm-dl__text .dates .daymonth {
    font-size: 4.87vw;
    letter-spacing: 0.02em;
  }
}
.comm-dl__text .dates .week {
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.09em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid #5BBEE5;
}
@media screen and (max-width: 768px) {
  .comm-dl__text .dates .week {
    width: 4.1vw;
    height: 4.1vw;
    font-size: 2.56vw;
  }
}
.comm-dl__text .dates .week--vertical {
  writing-mode: vertical-rl;
  height: 50px;
  width: auto;
  letter-spacing: 0;
  padding: 0 6px 0 4px;
  border-radius: 14px;
  transform: translate(0px, 3px);
}
@media screen and (max-width: 768px) {
  .comm-dl__text .dates .week--vertical {
    height: 10.26vw;
    padding: 0 1.28vw 0.77vw 0.77vw;
    font-size: 2.56vw;
    letter-spacing: -0.1em;
    transform: translate(0px, 0.77vw);
  }
}
.comm-dl__text .dates i {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 15px 4px 15px;
  background: #5BBEE5;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (max-width: 768px) {
  .comm-dl__text .dates i {
    width: 2.31vw;
    height: 2.31vw;
    margin: 0 1.79vw 0.51vw 1.79vw;
  }
}
.comm-dl__text .dates .time {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.comm-dl__text .train {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}
.comm-dl__text .caution {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}
.comm-dl__text .small {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .comm-dl__text .small {
    font-size: 3.08vw;
  }
}
@media screen and (max-width: 768px) {
  .comm-dl.tour .comm-dl__title {
    font-size: 2.56vw;
    width: auto;
  }
  .comm-dl.tour .comm-dl__title span {
    writing-mode: vertical-rl;
  }
}
.comm-dl .tour-txt b {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .comm-dl .tour-txt b {
    font-size: 3.59vw;
  }
}
.comm-dl .tour-txt small {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .comm-dl .tour-txt small {
    font-size: 2.82vw;
  }
}
.comm-dl .tour-txt > dl dt {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .comm-dl .tour-txt > dl dt {
    font-size: 3.59vw;
  }
}
.comm-dl .tour-txt > dl dd {
  display: flex;
}
@media screen and (max-width: 768px) {
  .comm-dl .tour-txt > dl dd {
    display: block;
  }
}
.comm-dl .tour-txt > dl dd p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.91;
}
@media screen and (max-width: 768px) {
  .comm-dl .tour-txt > dl dd p {
    font-size: 2.82vw;
  }
}
.comm-dl .tour-txt > dl dd figure {
  width: 39.3%;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .comm-dl .tour-txt > dl dd figure {
    width: 55.38vw;
    margin-left: 0;
    margin-top: 2.56vw;
  }
}
.comm-dl--column {
  align-items: center;
  flex-direction: column;
}
.comm-dl--column dt {
  width: 100%;
}
.comm-dl.mt {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .comm-dl.mt {
    margin-top: 5.13vw;
  }
}

.comm-sub {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .comm-sub {
    margin-top: 1.03vw;
  }
}
.comm-sub__title {
  width: 140px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #D13EB8;
}
.comm-sub__title span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: #D13EB8;
}
@media screen and (max-width: 768px) {
  .comm-sub__title {
    width: 14.36vw;
    height: 6.15vw;
  }
  .comm-sub__title span {
    font-size: 2.82vw;
    letter-spacing: 0.02em;
  }
}
.comm-sub__text {
  width: calc(100% - 140px);
  height: 100%;
  margin-left: 30px;
  display: flex;
  align-items: center;
}
.comm-sub__text p {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 768px) {
  .comm-sub__text {
    width: calc(100% - 14.36vw);
    height: 6.15vw;
    margin-left: 4.36vw;
    font-size: 3.59vw;
  }
  .comm-sub__text p {
    font-size: 3.59vw;
  }
}

.unit {
  width: 100%;
}
.unit-wrapper {
  text-align: left;
}
.unit-label {
  background: #D13EB8;
  display: inline-block;
  padding: 10px 30px 10px 24px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.13em;
  font-weight: 600;
  color: #ffffff;
  -webkit-clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .unit-label {
    padding: 2.56vw 6.15vw 2.56vw 3.59vw;
    font-size: 4.36vw;
    letter-spacing: 0.1em;
  }
}
.unit .wrapper {
  background-color: #f4f4f4;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .unit .wrapper {
    padding: 3.59vw;
  }
}
.unit-dl {
  text-align: left;
}
.unit-dl + .unit-dl {
  margin-top: 24px;
}
.unit-title {
  background-color: #000000;
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.13em;
  margin: 0 0 14px 0;
  padding: 10px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .unit-title {
    font-size: 3.59vw;
    padding: 2.31vw 0;
    margin: 0 0 3.59vw 0;
  }
}
.unit-lead {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 14px 0;
}
@media screen and (max-width: 768px) {
  .unit-lead {
    font-size: 3.59vw;
    margin: 0 0 3.59vw 0;
    text-align: left;
  }
}
.unit-list {
  text-align: left;
  padding: 0 0 0 1em;
}
.unit-list li {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-indent: -1em;
}
.unit-list li a {
  text-decoration: underline;
  word-break: break-all;
}
.unit-list li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .unit-list {
    display: block;
    width: 100%;
    height: 35.9vw;
    overflow: scroll;
    padding: 0 3.59vw;
    margin-right: auto;
    margin-left: auto;
  }
  .unit-list .simplebar-scrollba::before {
    background: #ffffff;
    border-radius: 0;
    width: 5px;
    margin-left: 3px;
    margin-top: 2px;
  }
  .unit-list .simplebar-scrollba.simplebar-visible::before {
    opacity: 1;
  }
  .unit-list .simplebar-track {
    background: #ffffff;
    width: 4px !important;
  }
  .unit-list .simplebar-track .simplebar-scrollbar,
.unit-list .simplebar-track .simplebar-scrollbar::before {
    background: #000000;
    opacity: 1;
  }
}
.unit + .unit {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .unit + .unit {
    margin-top: 5.13vw;
  }
}

.flexbox {
  display: flex;
}

.contact {
  width: 100%;
  height: 486px;
  background: #BEBEBE;
}
@media screen and (max-width: 768px) {
  .contact {
    height: 76.92vw;
  }
}

.header {
  width: 100%;
  height: 75px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    overflow: hidden;
    height: 17.44vw;
  }
}
.header-inner {
  padding: 0 30px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-inner .corp-logo {
  width: 61px;
}
.header-inner .right {
  display: flex;
  align-items: center;
}
.header-inner .right .lp-logo {
  max-width: 240px;
  margin-right: 38px;
}
.header-inner .right .lp-logo img {
  width: 100%;
}
.header-inner .right .menu-btn {
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2246%22%20height%3D%2221%22%20viewBox%3D%220%200%2046%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M1.61317%200H36.4282L35.2433%204H0.428223L1.61317%200Z%22%20fill%3D%22%235BBEE5%22%2F%3E%0A%3Cpath%20d%3D%22M1.61317%2016H36.4282L35.2433%2020H0.428223L1.61317%2016Z%22%20fill%3D%22%235BBEE5%22%2F%3E%0A%3C%2Fsvg%3E");
  background-size: contain;
  width: 36px;
  height: 20px;
  background-repeat: no-repeat;
}
.header-inner .right .menu-btn.on {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2246%22%20height%3D%2222%22%20viewBox%3D%220%200%2046%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M5.02583%200.592473L35.1765%2018L32.1504%2020.8716L1.99963%203.4641L5.02583%200.592473Z%22%20fill%3D%22%235BBEE5%22%2F%3E%0A%3Cpath%20d%3D%22M3.02583%2017.4075L33.1765%200L34.1504%204.05657L3.99963%2021.4641L3.02583%2017.4075Z%22%20fill%3D%22%235BBEE5%22%2F%3E%0A%3C%2Fsvg%3E");
}
@media screen and (max-width: 768px) {
  .header-inner {
    padding: 0 3.85vw;
  }
  .header-inner .corp-logo {
    width: 13.33vw;
  }
  .header-inner .right .lp-logo {
    width: 47.18vw;
    margin-right: 5.9vw;
  }
  .header-inner .right .menu-btn {
    width: 9.23vw;
    height: 5.13vw;
  }
}
.header-nav {
  display: none;
  position: relative;
  top: 0;
}
@media screen and (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 17.44vw;
    left: 0;
    width: 100%;
    height: calc(100vh - 17.44vw);
    z-index: 104;
  }
}
.header-nav .bg {
  display: none;
  opacity: 0;
  width: 100vw;
  height: calc(100vh - 75px);
  background: #979797;
  background: rgba(0, 0, 0, 0.55);
  position: fixed;
  top: 75px;
  left: 0;
  z-index: 105;
}
@media screen and (max-width: 768px) {
  .header-nav .bg {
    top: 17.44vw;
    height: calc(100vh - 17.44vw);
  }
}
.header-nav > ul {
  opacity: 0;
  display: none;
  z-index: 106;
  width: 754px;
  position: absolute;
  right: 0;
  top: 0;
  background: #f4f4f4;
  display: none;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .header-nav > ul {
    width: 100%;
    display: block;
    display: none;
    position: fixed;
    top: 17.44vw;
    height: 100%;
    overflow: scroll;
    padding-bottom: 25.64vw;
  }
  .header-nav > ul > * + * {
    border-top: 1px solid #e9e9e9;
  }
}
.header-nav > ul li {
  width: 50%;
  height: 137px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #E9E9E9;
}
@media screen and (max-width: 768px) {
  .header-nav > ul li {
    width: 100%;
    height: auto;
    padding: 5.13vw 0;
    border-bottom: none;
  }
}
.header-nav > ul li a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  opacity: 1;
}
.header-nav > ul li a:hover {
  opacity: 0.7;
}
.header-nav > ul li .link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.header-nav > ul li .link-title {
  color: #5BBEE5;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  letter-spacing: 0.13em;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header-nav > ul li .link-title {
    font-size: 3.59vw;
  }
}
.header-nav > ul li .link-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-top: 8px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header-nav > ul li .link-text {
    font-size: 5.13vw;
  }
}
.header-nav > ul li:nth-child(odd) {
  border-right: 1px solid #E9E9E9;
}
@media screen and (max-width: 768px) {
  .header-nav > ul li:nth-child(odd) {
    border-right: none;
  }
}
.header-nav .share-nav {
  display: block;
  width: 100%;
}
.header-nav .share-nav p {
  padding-top: 25px;
  width: 50px;
  margin: 0 auto;
}
.header-nav .share-nav p img {
  width: 100%;
  height: auto;
}
.header-nav .share-nav ul {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.header-nav .share-nav ul li {
  display: block;
  width: 38px;
  height: 38px;
  margin-right: 22px;
  border: none;
}
.header-nav .share-nav ul li a {
  display: block;
  width: 100%;
  transition: all 0.3s ease;
  opacity: 1;
}
.header-nav .share-nav ul li a img {
  width: 100%;
}
.header-nav .share-nav ul li a:hover {
  opacity: 0.7;
}
.header-nav .share-nav ul li:nth-child(3) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .header-nav .share-nav {
    padding: 10.26vw 0 15.38vw;
  }
}

.share {
  width: 100%;
  padding-top: 90px;
  padding-bottom: 215px;
}
@media screen and (max-width: 768px) {
  .share {
    padding-top: 7.69vw;
    padding-bottom: 12.82vw;
  }
}
.share-inner {
  width: 100%;
}
.share .ttl {
  width: 50px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .share .ttl {
    width: 12.82vw;
  }
}
.share .ttl img {
  width: 100%;
}
.share ul {
  width: 170px;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .share ul {
    width: 43.59vw;
    margin: 5.13vw auto 0;
  }
}
.share ul li {
  display: inline-block;
  width: 38px;
  margin-right: 22px;
}
.share ul li a {
  display: block;
  width: 100%;
  transition: all 0.3s ease;
  opacity: 1;
}
.share ul li a img {
  width: 100%;
}
.share ul li a:hover {
  opacity: 0.7;
}
.share ul li:nth-child(3) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .share ul li {
    width: 9.74vw;
    margin-right: 5.64vw;
  }
  .share ul li:nth-child(3) {
    margin-right: 0;
  }
}

.footer {
  width: 100%;
  text-align: center;
  height: 40px;
  background: #00823e;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .copy {
  margin: 0 auto;
  color: #fff;
  font-size: 12px;
}

.modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
}
.modal-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 201;
}
.modal-inner {
  width: 60%;
  aspect-ratio: 16/9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 202;
}
.modal-inner .close {
  display: block;
  width: 46px;
  height: 22px;
  position: absolute;
  top: -36px;
  right: -1px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2246%22%20height%3D%2222%22%20viewBox%3D%220%200%2046%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M5.02583%200.592473L35.1765%2018L32.1504%2020.8716L1.99963%203.4641L5.02583%200.592473Z%22%20fill%3D%22%235BBEE5%22%2F%3E%0A%3Cpath%20d%3D%22M3.02583%2017.4075L33.1765%200L34.1504%204.05657L3.99963%2021.4641L3.02583%2017.4075Z%22%20fill%3D%22%235BBEE5%22%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.modal-inner .modal-img {
  width: 100%;
}
.modal-inner .modal-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .modal-inner {
    width: 90%;
  }
  .modal-inner .close {
    top: -9.23vw;
    right: 0vw;
    width: 11.79vw;
    height: 5.64vw;
  }
}

.--intersection-root .disp {
  opacity: 0;
}
/*# sourceMappingURL=style.css.map */