@charset "UTF-8";
body {
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
body.is-fixed {
  overflow: hidden;
  height: 100%; /* iPhone対策 */
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
img.nocopy {
  pointer-events: none;
  -webkit-user-drag: none; /* Chrome, Safari, Operaを禁止する場合 */
  -khtml-user-drag: none; /* Konquerorを禁止する場合 */
  -moz-user-drag: none; /* Firefoxを禁止する場合 */
}

.italic {
  font-style: italic;
  margin-right: 0.5rem;
}

.movie-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100000000;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  transition: 0.3s;
}
.movie-modal.open {
  opacity: 1;
  visibility: visible;
}
.movie-modal .close {
  width: 4rem;
  height: 4rem;
  position: relative;
  margin-left: auto;
  cursor: pointer;
}
.movie-modal .close::before, .movie-modal .close::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transform: rotate(45deg);
}
.movie-modal .close::after {
  transform: rotate(-45deg);
}
.movie-modal .movie_box {
  width: 70vw;
  height: 75vh;
}
@media only screen and (max-width: 767px) {
  .movie-modal .movie_box {
    width: 90%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.movie-modal .movie_box iframe {
  width: 100%;
  height: 100%;
}

#wrapper {
  background: url("../img/page-bg.svg") no-repeat top left/cover;
  opacity: 0;
  transition: 0.8s;
}
#wrapper.view {
  opacity: 1 !important;
}

.op_movie {
  opacity: 0;
  transition: 0.8s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.op_movie.view {
  opacity: 1;
}
.op_movie video {
  aspect-ratio: 16/9;
  max-width: 100%;
}

.mv,
.bg-white,
.footer {
  background: #fff;
}

.bg-white {
  padding-bottom: 15rem;
  border-radius: 15rem 15rem 0 0;
}
@media only screen and (max-width: 767px) {
  .bg-white {
    padding-bottom: 38rem;
  }
}

.header {
  background: #fff;
  height: auto;
  position: static;
  border-bottom: 1px solid #ccc;
}
.header--inner {
  display: flex;
  align-items: center;
  margin: auto;
  padding: 4.1rem 3rem 3.8rem 3rem;
}
@media print, screen and (min-width: 768px) {
  .header--inner {
    width: 144rem;
    height: 7.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .header--inner {
    display: block;
    width: 100%;
    padding: 2rem 0 0;
    height: auto;
  }
}
.header--inner .logo {
  width: 11rem;
}
@media only screen and (max-width: 767px) {
  .header--inner .logo {
    width: 18rem;
    margin: 0 auto 1.9rem;
  }
  .header--inner .logo img {
    width: 100%;
  }
}
.header--inner .navigation {
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .header--inner .navigation {
    background: #0099FF;
    height: 8rem;
  }
}
.header--inner .navigation ul {
  display: flex;
  align-items: center;
  gap: 6rem;
}
@media only screen and (max-width: 767px) {
  .header--inner .navigation ul {
    justify-content: center;
    gap: 10rem;
    height: 100%;
  }
}
.header--inner .navigation ul li.top {
  width: 4.3rem;
}
.header--inner .navigation ul li.news {
  width: 5.9rem;
}
@media only screen and (max-width: 767px) {
  .header--inner .navigation ul li.news {
    width: 8.8rem;
  }
}
.header--inner .navigation ul li.message {
  width: 9.5rem;
}
@media only screen and (max-width: 767px) {
  .header--inner .navigation ul li.message {
    width: 14.2rem;
  }
}
.header--inner .navigation ul li.cm {
  width: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .header--inner .navigation ul li.cm {
    width: 5.2rem;
  }
}
.header--inner .navigation ul li.logo {
  width: 6.4rem;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .header--inner .navigation ul li.logo {
    width: 9.6rem;
  }
}
.header--inner .navigation ul li a {
  position: relative;
}
.header--inner .navigation ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -0.5rem;
  width: 0;
  margin: auto;
  transition: 0.3s;
  height: 2px;
  background: #0099FF;
}
.header--inner .navigation ul li a:hover::after {
  width: 100%;
}

.inner {
  margin: auto;
}

#mainContents .mv--catch {
  width: 80rem;
  padding: 10rem 0;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .mv--catch {
    width: 65rem;
    padding: 11.6rem 0 12.3rem;
  }
}
#mainContents .mv--character {
  width: 144rem;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #mainContents .mv--character {
    padding-top: 44.8rem;
    width: 100%;
    left: 0;
  }
}
#mainContents .mv--character .link-image {
  position: absolute;
  top: -0.6rem;
  right: 17rem;
  width: 20rem;
  height: 20rem;
}
#mainContents .mv--character .link-image:hover {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #mainContents .mv--character .link-image {
    right: 0;
    left: 0;
    margin: auto;
    width: 39.3rem;
  }
}
#mainContents .mv--character .link-image .image img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s;
}
#mainContents .mv--character .link-image .image img:last-of-type {
  opacity: 0;
}
#mainContents .mv--character .link-image .image:hover {
  opacity: 1;
}
#mainContents .mv--character .link-image .image:hover img {
  opacity: 1;
}
#mainContents .content-bg {
  background-image: linear-gradient(to right top, #0099FF 0%, #C9E0DC 100%);
}
#mainContents .content-read {
  padding: 14.3rem 0 15rem;
  background: no-repeat top center/cover;
  position: relative;
}
#mainContents .content-read::before {
  content: "";
  background: url("../img/br__read.png") no-repeat center/cover;
  width: 95.7%;
  height: 90%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  #mainContents .content-read::before {
    background: url("../img/sp/br__read.png") no-repeat center/cover;
    height: 92%;
    bottom: auto;
    top: 13.4rem;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .content-read {
    padding: 15.8rem 0;
  }
}
#mainContents .content-read .inner {
  width: 85rem;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #mainContents .content-read .inner {
    width: 65rem;
  }
}
#mainContents .news {
  width: 100%;
  border-radius: 15rem;
  background: #fff;
  padding: 15rem 0 10rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .news {
    padding: 16rem 6rem 16rem;
  }
}
#mainContents .news .inner {
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  #mainContents .news .inner {
    width: 114rem;
  }
}
#mainContents .news--wrapper {
  width: 100;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
#mainContents .news--wrapper h2 {
  width: calc(100% - 87.4rem);
}
@media only screen and (max-width: 767px) {
  #mainContents .news--wrapper h2 {
    width: 29.2rem;
    margin-bottom: 11.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  #mainContents .news--content {
    width: 87.4rem;
  }
}
#mainContents .news--content .single:not(:last-of-type) {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .news--content .single:not(:last-of-type) {
    margin-bottom: 6.5rem;
  }
}
#mainContents .news--content .single.new time::before {
  content: "NEW";
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  background: #EA0001;
  width: 6rem;
  line-height: 2.6rem;
  border-radius: 2.6rem;
  display: block;
  margin-right: 1rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #mainContents .news--content .single.new time::before {
    width: 12rem;
    line-height: 5.2rem;
    font-size: 3rem;
  }
}
#mainContents .news--content .single time {
  display: flex;
  align-items: center;
  color: #0099FF;
  margin-bottom: 1.3rem;
  letter-spacing: 0;
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #mainContents .news--content .single time {
    font-size: 3rem;
    margin-bottom: 1.6rem;
  }
}
#mainContents .news--content .single .title {
  padding-bottom: 3.4rem;
  border-bottom: 1px solid #0099FF;
  letter-spacing: 0.087em;
}
@media only screen and (max-width: 767px) {
  #mainContents .news--content .single .title {
    padding-bottom: 3.8rem;
  }
}
#mainContents .news--content .single .title a {
  display: block;
  position: relative;
  padding-right: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #mainContents .news--content .single .title a {
    font-size: 3rem;
    padding-right: 4rem;
    line-height: 2;
  }
}
#mainContents .news--content .single .title a:hover::after {
  right: -0.5rem;
  top: -0.5rem;
}
#mainContents .news--content .single .title a::after {
  content: "";
  background: url("../img/blank-icon.svg") no-repeat center/cover;
  width: 1.1rem;
  height: 1.1rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  #mainContents .news--content .single .title a::after {
    width: 2.2rem;
    height: 2.2rem;
  }
}
#mainContents .news--content .single .title a.anchor::after {
  transform: rotate(135deg);
}
#mainContents .news--content .single .title a.anchor:hover::after {
  top: 1rem;
  right: 0;
}
#mainContents .news--content .more-btn {
  width: 16rem;
  background: #0099FF;
  border-radius: 5rem;
  margin: 4rem auto 0;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #mainContents .news--content .more-btn {
    display: none;
  }
}
#mainContents .news--content .more-btn.close p::after {
  transform: rotate(180deg);
}
#mainContents .news--content .more-btn.close:hover p::after {
  top: -0.5rem;
}
#mainContents .news--content .more-btn:hover {
  opacity: 0.8;
}
#mainContents .news--content .more-btn:hover p::after {
  top: 0.5rem;
}
#mainContents .news--content .more-btn p {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 5rem;
}
#mainContents .news--content .more-btn p::after {
  content: "";
  width: 1.4rem;
  height: 1.2rem;
  background: url("../img/arrow.svg") no-repeat center/contain;
  margin-left: 1rem;
  position: relative;
  transition: 0.3s;
  top: 0;
}
#mainContents .message {
  margin-bottom: 15rem;
  padding-top: 15rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .message {
    margin-bottom: 15.7rem;
    padding-top: 15.7rem;
  }
}
#mainContents .message .inner {
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  #mainContents .message .inner {
    width: 114rem;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .message .inner {
    padding: 0 6rem;
  }
}
#mainContents .message h2 {
  margin-bottom: 10rem;
}
@media print, screen and (min-width: 768px) {
  #mainContents .message h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .message h2 {
    margin-bottom: 10.1rem;
  }
}
#mainContents .message h2 span {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #mainContents .message h2 span {
    font-size: 3.6rem;
    margin-top: 4rem;
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  #mainContents .message--single {
    position: relative;
    display: flex;
    padding: 8.9rem 0 0;
  }
}
#mainContents .message--single:nth-of-type(odd) .message--text {
  margin-left: auto;
}
#mainContents .message--single:nth-of-type(even) .image {
  right: 0;
}
@media print, screen and (min-width: 768px) {
  #mainContents .message--single:nth-of-type(even) .message--text .text-box::before {
    border-left: none;
    border-right: 3px solid #fff;
    right: 0;
    left: auto;
  }
  #mainContents .message--single:nth-of-type(even) .message--text .text-box::after {
    border-right: none;
    border-left: 3px solid #fff;
    right: auto;
    left: 0;
  }
}
#mainContents .message--single:not(:last-of-type) {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single:not(:last-of-type) {
    margin-bottom: 12rem;
  }
}
#mainContents .message--single .image {
  cursor: pointer;
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  #mainContents .message--single .image {
    position: absolute;
    width: 48rem;
    top: 0;
    z-index: 1;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .image {
    width: 100%;
    margin-bottom: 4.3rem;
  }
  #mainContents .message--single .image img {
    width: 100%;
  }
}
#mainContents .message--single .image img {
  transition: 0.3s;
}
#mainContents .message--single .image img:hover {
  opacity: 0.7;
}
@media print, screen and (min-width: 768px) {
  #mainContents .message--single .message--text {
    width: 71rem;
  }
}
#mainContents .message--single .message--text * {
  color: #fff;
}
#mainContents .message--single .message--text h3 {
  text-align: center;
  margin-bottom: 3.6rem;
  letter-spacing: 0.06em;
  font-size: 2.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .message--text h3 {
    font-size: 4rem;
    margin-bottom: 4.9rem;
  }
}
#mainContents .message--single .message--text h3 span {
  padding-top: 0.8rem;
  position: relative;
  display: block;
  margin-top: 2.1rem;
  font-size: 1.5rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .message--text h3 span {
    font-size: 3rem;
    margin-top: 2.4rem;
    padding-top: 1.3rem;
  }
}
#mainContents .message--single .message--text h3 span::before {
  content: "";
  width: 7.5rem;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .message--text h3 span::before {
    width: 14.5rem;
    height: 2px;
  }
}
#mainContents .message--single .message--text .text-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  padding: 4rem 8rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .message--text .text-box {
    padding: 4.6rem 6rem 4.2rem;
  }
}
#mainContents .message--single .message--text .text-box::before, #mainContents .message--single .message--text .text-box::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .message--text .text-box::before, #mainContents .message--single .message--text .text-box::after {
    width: 16rem;
    height: 16rem;
  }
}
#mainContents .message--single .message--text .text-box::before {
  top: 0;
  left: 0;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .message--text .text-box::before {
    border-top-width: 4px;
    border-left-width: 4px;
  }
}
#mainContents .message--single .message--text .text-box::after {
  right: 0;
  bottom: 0;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .message--text .text-box::after {
    border-right-width: 4px;
    border-bottom-width: 4px;
  }
}
#mainContents .message--single .message--text .text-box p {
  font-size: 1.5rem;
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .message--text .text-box p {
    font-size: 3rem;
    line-height: 1.77;
    letter-spacing: 0.04em;
  }
}
#mainContents .message--single .message--text .text-box .link-area {
  border-top: 1px solid #fff;
  padding-top: 3rem;
  margin-top: 3rem;
}
#mainContents .message--single .message--text .text-box .link-area .link-read {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .message--text .text-box .link-area .link-read {
    font-size: 3rem;
    margin-bottom: 6rem;
  }
}
@media print, screen and (min-width: 768px) {
  #mainContents .message--single .message--text .text-box .link-area ul li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
#mainContents .message--single .message--text .text-box .link-area ul li:not(:last-of-type) {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .message--text .text-box .link-area ul li:not(:last-of-type) {
    margin-bottom: 6rem;
  }
}
#mainContents .message--single .message--text .text-box .link-area ul li img {
  width: 10rem;
  margin-right: 2rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .message--text .text-box .link-area ul li img {
    width: 20rem;
    margin-bottom: 4rem;
  }
}
#mainContents .message--single .message--text .text-box .link-area ul li p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
}
@media print, screen and (min-width: 768px) {
  #mainContents .message--single .message--text .text-box .link-area ul li p {
    width: calc(100% - 12rem);
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .message--single .message--text .text-box .link-area ul li p {
    font-size: 3rem;
  }
}
#mainContents .movie {
  background: #fff;
  padding: 14.8rem 15rem;
  border-radius: 15rem;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .movie {
    padding: 15.8rem 0 15.4rem;
    margin-bottom: 15.7rem;
  }
}
@media print, screen and (min-width: 768px) {
  #mainContents .movie .inner {
    width: 114.1rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .movie .inner {
    width: 67rem;
  }
}
#mainContents .movie--title {
  width: 8.6rem;
  margin-right: 12rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .movie--title {
    width: 15.9rem;
    margin: 0 0 11.3rem 1.4rem;
  }
}
#mainContents .movie--title img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media print, screen and (min-width: 768px) {
  #mainContents .movie--videos {
    display: flex;
    flex-wrap: wrap;
    gap: 3.9rem 6rem;
    justify-content: center;
    width: 92rem;
  }
}
#mainContents .movie--videos__catch {
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  #mainContents .movie--videos__catch {
    width: 87.4rem;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .movie--videos__catch {
    margin-bottom: 7.6rem;
  }
}
#mainContents .movie--videos__item {
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  #mainContents .movie--videos__item {
    width: calc(50% - 3rem);
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .movie--videos__item {
    width: 97%;
    margin: auto;
  }
  #mainContents .movie--videos__item:not(:last-of-type) {
    margin-bottom: 11.1rem;
  }
}
#mainContents .movie--videos__item iframe {
  height: 100%;
  margin-bottom: 1.7rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .movie--videos__item iframe {
    margin-bottom: 3rem;
  }
}
#mainContents .movie--videos__item .thumbnail {
  cursor: pointer;
  margin-bottom: 1.3rem;
}
#mainContents .movie--videos__item .thumbnail img {
  aspect-ratio: 430/240;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
#mainContents .movie--videos__item .thumbnail img:hover {
  opacity: 0.7;
}
#mainContents .movie--caption {
  display: flex;
  align-items: center;
  justify-content: center;
}
#mainContents .movie--caption h3 {
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #mainContents .movie--caption h3 {
    font-size: 4rem;
  }
}
#mainContents .movie--info {
  margin-left: auto;
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .movie--info {
    gap: 1.6rem;
  }
}
#mainContents .movie--info li {
  width: 8rem;
  line-height: 2.2rem;
  border: 2px solid #0099FF;
  border-radius: 5.2rem;
  text-align: center;
  background: #fff;
  color: #0099FF;
  transition: 0.3s;
  letter-spacing: 0;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #mainContents .movie--info li {
    width: 16rem;
    line-height: 5.2rem;
    font-size: 3rem;
  }
}
#mainContents .movie--info li.active, #mainContents .movie--info li:hover {
  color: #fff;
  background: #0099FF;
}
#mainContents .thought {
  padding: 14.9rem 0 12.5rem;
  background: #fff;
  border-radius: 15rem 15rem 0 0;
}
@media only screen and (max-width: 767px) {
  #mainContents .thought {
    padding: 15.5rem 0 10rem;
  }
}
#mainContents .thought .inner {
  width: 96rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .thought .inner {
    width: 57.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  #mainContents .thought--content {
    display: flex;
  }
}
#mainContents .thought--content__left {
  width: 15rem;
}
@media print, screen and (min-width: 768px) {
  #mainContents .thought--content__left {
    padding-top: 17.4rem;
    margin-left: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .thought--content__left {
    width: 33.5rem;
    margin-bottom: 11.3rem;
  }
  #mainContents .thought--content__left img {
    width: 100%;
  }
}
#mainContents .thought--content__right {
  width: 46rem;
}
@media print, screen and (min-width: 768px) {
  #mainContents .thought--content__right {
    margin-left: auto;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .thought--content__right {
    width: 57.5rem;
  }
}
#mainContents .thought--content__right img {
  display: block;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .thought--content__right img {
    width: 53.5rem;
    margin-bottom: 5.9rem;
  }
}
#mainContents .thought--content__right p {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.65rem;
  line-height: 220%;
  letter-spacing: 0.065rem;
  font-feature-settings: "palt";
}
#mainContents .thought--content__right p .border {
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  background: #000;
  margin: 0 1.3rem;
  position: relative;
  top: -0.6rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .thought--content__right p .border {
    width: 4rem;
    height: 1px;
    margin: 0 1.6rem;
    top: -1rem;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .thought--content__right p {
    letter-spacing: 0;
    font-size: 2.7rem;
    line-height: 213%;
    margin-bottom: 3.8rem;
  }
}
#mainContents .character {
  margin-bottom: 14.1rem;
}
#mainContents .character .inner {
  width: 73.6rem;
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  #mainContents .character .inner {
    padding: 8.3rem 0 0 0;
    position: relative;
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .character .inner {
    width: 64.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  #mainContents .character--left {
    position: absolute;
    top: 0;
    left: 2rem;
    width: 43rem;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .character--left {
    margin-bottom: 6rem;
  }
}
@media print, screen and (min-width: 768px) {
  #mainContents .character--right {
    margin-left: auto;
    width: 35.6rem;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .character--right {
    width: 58rem;
    margin: auto;
  }
}
#mainContents .character--right h2 {
  margin-bottom: 3.3rem;
}
@media print, screen and (min-width: 768px) {
  #mainContents .character--right h2 {
    width: 17rem;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .character--right h2 {
    margin-bottom: 6.9rem;
  }
  #mainContents .character--right h2 img {
    width: 34rem;
  }
}
#mainContents .character--right p {
  color: #00A0E9;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .character--right p {
    margin-left: 0.3rem;
    letter-spacing: 0.08em;
    font-size: 2.5rem;
    margin: 0 0 2rem 0.3rem;
  }
}
#mainContents .character--right dl {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
#mainContents .character--right dl dt, #mainContents .character--right dl dd {
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: #00A0E9;
}
@media only screen and (max-width: 767px) {
  #mainContents .character--right dl dt, #mainContents .character--right dl dd {
    margin-bottom: 0.7rem;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .character--right dl dt, #mainContents .character--right dl dd {
    font-size: 2.4rem;
  }
}
#mainContents .character--right dl dt {
  width: 6.4rem;
  margin-right: 1rem;
}
#mainContents .character--right dl dt span {
  margin: 0 0 0 0.7rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .character--right dl dt span {
    margin-left: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .character--right dl dt {
    width: 12.4rem;
    margin: 0 0.7rem 0 0.2rem;
  }
}
#mainContents .character--right dl dd {
  width: calc(100% - 7.4rem);
}
@media only screen and (max-width: 767px) {
  #mainContents .character--right dl dd {
    width: calc(100% - 14.4rem);
  }
}
#mainContents .comingsoon {
  background-image: linear-gradient(to right top, #0099FF 0%, #C9E0DC 100%);
  padding: 14.9rem 10rem;
  border-radius: 15rem;
  margin-bottom: 15rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .comingsoon {
    border-radius: 15rem;
    padding: 15.8rem 12rem 14.1rem;
    margin-bottom: 15.8rem;
  }
}
@media print, screen and (min-width: 768px) {
  #mainContents .comingsoon--inner {
    display: flex;
    align-items: center;
    width: 114rem;
    margin: auto;
  }
}
#mainContents .comingsoon--inner h2 {
  width: 18rem;
}
@media only screen and (max-width: 767px) {
  #mainContents .comingsoon--inner h2 {
    width: 22.2rem;
    margin-bottom: 9.7rem;
  }
  #mainContents .comingsoon--inner h2 img {
    width: 100%;
  }
}
#mainContents .comingsoon--inner p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 2;
}
@media print, screen and (min-width: 768px) {
  #mainContents .comingsoon--inner p {
    margin-left: auto;
    width: calc(100% - 36rem);
    display: flex;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .comingsoon--inner p {
    font-size: 2.8rem;
    letter-spacing: 0.12em;
    line-height: 2.1;
  }
}
#mainContents .footer-catch {
  width: 50rem;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  #mainContents .footer-catch {
    width: 59rem;
  }
  #mainContents .footer-catch img {
    width: 100%;
  }
}

.footer {
  border-top: 2px solid #00A0E9;
  position: relative;
  padding: 3.6rem 6rem;
}
@media only screen and (max-width: 767px) {
  .footer {
    border-top-width: 4px;
    padding: 3.3rem 6rem;
  }
}
.footer .page-top {
  position: absolute;
  bottom: 100%;
  margin: auto;
  right: 3rem;
  width: 24rem;
}
@media only screen and (max-width: 767px) {
  .footer .page-top {
    right: 0;
    left: 0;
    width: 48rem;
  }
}
.footer-inner {
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  .footer-inner {
    display: flex;
    align-items: center;
  }
}
@media print, screen and (min-width: 768px) {
  .footer-nav {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .footer-nav {
    margin-bottom: 3.3rem;
  }
}
.footer-nav li {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .footer-nav li {
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .footer-nav li:not(:last-of-type) {
    display: flex;
    align-items: center;
  }
}
.footer-nav li:not(:last-of-type)::after {
  content: "";
  width: 1px;
  height: 14px;
  background: #000;
  margin: 0 2rem;
  display: block;
}
@media only screen and (max-width: 767px) {
  .footer-nav li:not(:last-of-type)::after {
    width: 100%;
    height: 1px;
    margin-top: 1.6rem;
    position: absolute;
    bottom: 0;
    margin: 0;
  }
}
.footer-nav li a {
  font-size: 1.3rem;
  font-weight: 400;
  font-feature-settings: normal;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .footer-nav li a {
    font-size: 2.6rem;
    padding: 4.2rem 0 4.3rem;
    display: block;
  }
}
.footer .copyright {
  margin-left: auto;
}
.footer .copyright small {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .footer .copyright small {
    font-size: 2.12rem;
    text-align: center;
  }
}