/* max-width 960px
  height auto

  【スマホ切り替え】
  ヘッダー、ナビ、フッター　768px
  メイン　600px

	z-index
  1  body .site

*/

/*****************************************************************************
****************** 共通 ******************************************************
*****************************************************************************/
.arrow svg .path_arrow_blue,
.arrow svg .polyline_arrow_blue {
  fill: none;
  stroke: #122487;
}
.arrow svg .path_arrow_blue {
  stroke-miterlimit: 10;
  stroke-width: 0.77px;
  transform: rotate(0);
  transition-duration: 0.5s;
  transform-origin: center center;
}
a:hover .arrow svg .path_arrow_blue,
button:hover .arrow svg .path_arrow_blue {
  transform: rotate(180deg);
  transition-duration: 0.5s;
}
.arrow svg .polyline_arrow_blue {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}

/*************************************************** トップページ ***************************************************/
.top-img {
  position: relative;
}
.top-img .main-slider {
  max-height: 760px;
  height: auto;
}
.top-img .main-slider .main-slider-con {
  max-height: 760px;
  height: auto;
  overflow: hidden;
}
.top-img .main-slider .main-slider-con img {
  height: 760px;
  object-fit: cover;
}
.top-img .main-slider .main-slider-con:first-of-type img {
  object-position: top;
}
.top-img .main-slider .main-slider-con:nth-of-type(2) img {
  object-position: center 40%;
}
@media screen and (max-width: 1400px) {
  .top-img .main-slider .main-slider-con:nth-of-type(2) img {
    object-position: center;
  }
  .top-img .main-slider .main-slider-con:last-of-type img {
    object-position: bottom;
  }
}
.top-img .box {
  max-width: 900px;
  width: 100%;
  position: absolute;
  bottom: 5rem;
  left: 5rem;
}
.top-img .box path {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 3px;
  fill-opacity: 0;
  transition: fill-opacity 0.5s;
}
.top-img .box path.show {
  animation: path_white 2s ease both;
  animation-delay: 3s;
}
@keyframes path_white {
  0% {
    fill: transparent;
    fill-opacity: 0;
  }
  100% {
    fill: #fff;
    fill-opacity: 1;
  }
}
.top-img .box h2 {
  color: #fff;
  font-size: 42px;
  font-weight: normal;
  margin-top: 1rem;
}
.top-img a.scroll {
  display: block;
  max-width: 160px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  bottom: -18.5rem;
  right: 5rem;
  z-index: 5;
}
.top-img a.scroll #scroll-anime {
  vertical-align: bottom;
}
.top-img a.scroll #scroll-anime .circle {
  transform: rotate(0);
  transition-duration: 0.5s;
  transform-origin: center center;
}
.top-img a.scroll:hover #scroll-anime .circle {
  transform: scale(1.1);
  transform: rotate(180deg);
  transition-duration: 0.5s;
}
.top-img a.scroll #scroll-anime .c-polyline {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.08px;
}
.top-img a.scroll #scroll-anime .c-polyline,
.top-img a.scroll #scroll-anime .c-circle,
.top-img a.scroll #scroll-anime .c-line {
  fill: none;
  stroke: #122487;
}
.top-img a.scroll #scroll-anime .c-circle {
  stroke-width: 1.17px;
}
.top-img a.scroll #scroll-anime .c-circle,
.top-img a.scroll #scroll-anime .c-line {
  stroke-miterlimit: 10;
}
.top-img a.scroll #scroll-anime .c-line {
  stroke-width: 0.59px;
}
.top-img a.scroll div {
  position: relative;
  height: 90px;
  margin: 1rem auto;
}
.top-img a.scroll div::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #122487;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.top-img a.scroll div::after {
  content: "";
  width: 7px;
  height: 20px;
  background-color: #122487;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: all 0.5s ease;
}
.top-img a.scroll:hover div::after {
  top: 60px;
}
.top-img a.scroll p {
  color: #122487;
  font-size: 18px;
  font-weight: bold;
  writing-mode: vertical-rl;
  display: inline-block;
}
@media screen and (max-width: 820px) {
  .top-img .box {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .top-img .box h2 {
    font-size: 4.5vw;
  }
  .top-img a.scroll {
    right: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .top-img .main-slider .main-slider-con img:last-of-type {
    display: none;
  }
  .top-img .box svg.sp {
    display: none;
  }
}
@media (orientation: landscape) and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
  .top-img .main-slider,
  .top-img .main-slider .main-slider-con {
    max-height: 650px;
  }
  .top-img .main-slider .main-slider-con img {
    height: 650px;
  }
  .top-img .main-slider .main-slider-con img:first-of-type {
    display: none;
  }
  .top-img .box svg.pc {
    display: none;
  }
  .top-img .box h2 {
    font-size: 24px;
    line-height: 140%;
  }
  .top-img .box path {
    stroke-width: 1.5px;
  }
  .top-img a.scroll {
    max-width: 100px;
    bottom: -210px;
    right: -1rem;
  }
  .top-img a.scroll div {
    height: 55px;
  }
  .top-img a.scroll div::after {
    width: 5px;
    height: 11px;
  }
  .top-img a.scroll:hover div::after {
    top: 40px;
  }
  .top-img a.scroll p {
    font-size: 14px;
  }
}

.about {
  background-image: linear-gradient(0deg, #77b8ff, #d4e7ff 63%);
}
.about .frame {
  background-image: url(../img/common/img-logomark-back.svg);
  background-repeat: no-repeat;
  background-size: 550px;
  background-position: calc(50% + 275px) calc(100% - 130px);
  position: relative;
}
.about .frame .box {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.about .frame .box p {
  color: #122487;
  font-size: 20px;
  font-weight: bold;
  line-height: 230%;
}
.about .frame .box p:not(:first-of-type) {
  margin-top: 6rem;
}
.about .frame .photo01 {
  position: absolute;
  right: 0;
  max-width: 555px;
  width: auto;
}
.about .frame .photo02 {
  max-width: 890px;
  width: auto;
}
@media screen and (max-width: 1145px) {
  .about .frame .photo01 {
    max-width: 40%;
  }
  .about .frame .photo02 {
    max-width: 60%;
  }
}
@media screen and (min-width: 1001px) {
  .about .frame .photo01 {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 1000px) {
  .about .frame .photo01 {
    top: 25%;
    max-width: 36%;
  }
}
@media screen and (max-width: 820px) {
  .about .frame {
    background-size: 50%;
  }
  .about .frame .photo02 {
    max-width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .about .frame {
    background-size: 80%;
    background-position: bottom 18% center;
    padding-bottom: 2rem;
  }
  .about .frame .photo01 {
    position: relative;
    max-width: none;
    margin: 0 -2rem;
  }
  .about .frame .box {
    padding-bottom: 55%;
  }
  .about .frame .box p {
    font-size: 18px;
    margin-top: 2rem !important;
  }
  .about .frame .photo02 {
    max-width: none;
  }
}

.big-photo {
  overflow: hidden;
  display: block;
}
.big-photo img {
  object-fit: cover;
  height: 450px;
}
@media screen and (max-width: 820px) {
  .big-photo img {
    height: 320px;
  }
}
@media screen and (max-width: 767px) {
  .big-photo img {
    height: auto;
  }
}

.news {
  background-color: #f7f7f7;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.news .frame {
  max-width: 750px;
  width: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .frame .title {
  order: 1;
}
.news .frame .title h2 {
  font-size: 132px;
  color: #122487;
  letter-spacing: 3px;
}
.news .frame .title h2 span.initials {
  color: transparent;
  -webkit-text-stroke: 2px #122487;
  display: inline-block;
}
.news .frame .title p {
  color: #122487;
  font-size: 24px;
  font-weight: bold;
}
.news .frame .news-box {
  margin-top: 3rem;
  order: 3;
  flex-basis: 100%;
}
.news .frame .news-box a {
  background-color: #fff;
  border: 1px solid #b8bed8;
  border-radius: 20px;
  display: block;
  padding: 1.5rem;
  color: #000;
  position: relative;
}
.news .frame .news-box a:not(:first-of-type) {
  margin-top: 1rem;
}
.news .frame .news-box a::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #d4e7ff;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 1.2rem;
  bottom: 0;
  margin: auto;
}
.news .frame .news-box a::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 6px;
  border-bottom: 1px solid #122487;
  border-right: 1px solid #122487;
  transform: skew(45deg);
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
}
.news .frame .news-box a:hover,
.news .frame .news-box a:hover::before {
  border-color: #122487;
}
.news .frame .news-box a p {
  font-size: 14px;
  font-weight: bold;
  color: #122487;
}
.news .frame .news-box a h3 {
  width: calc(100% - 70px);
  line-height: 140%;
  margin-top: 0.5rem;
}
.news .frame .view {
  flex-basis: 290px;
  border-bottom: 1px solid #122487;
  padding: 1rem 1rem 2rem;
  order: 2;
}
.news .frame .view a {
  display: flex;
  align-items: center;
}
.news .frame .view a p {
  color: #122487;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 5px;
}
.news .frame .view a .arrow {
  width: 120px;
  margin-left: 0.5rem;
  position: relative;
}
.news .frame .view a .arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: -0.3rem;
  right: -0.3rem;
}
.news .frame .view a .arrow svg {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .news .frame {
    display: block;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .news .frame .title h2 {
    font-size: 78px;
    text-align: center;
  }
  .news .frame .title p {
    font-size: 16px;
    text-align: center;
  }
  .news .frame .view {
    width: fit-content;
    margin: 2rem auto 0;
  }
}

.people {
  background-color: #d4e7ff;
  border-radius: 45% 0 0 0;
  padding: 5rem 0 7rem;
  position: relative;
}
.people::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.people::after {
  content: "";
  display: block;
  width: 100%;
  height: 34%;
  background-color: #d6e1ed;
  position: absolute;
  bottom: 0;
  left: 0;
}
.people .frame {
  max-width: 1300px;
  width: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.people .frame .title {
  display: flex;
  align-items: center;
}
.people .frame .title div {
  margin-right: 3rem;
}
.people .frame .title h2 {
  font-size: 132px;
  color: #122487;
  letter-spacing: 3px;
}
.people .frame .title h2 span.initials {
  color: transparent;
  -webkit-text-stroke: 2px #122487;
  display: inline-block;
}
.people .frame .title span.subtitle {
  font-size: 24px;
  font-weight: bold;
  color: #122487;
  display: inline-block;
  padding: 1rem 0.3rem;
}
.people .frame .people-slider .box {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
}
.people .frame .people-slider .box .photo {
  flex-basis: 38%;
}
.people .frame .people-slider .box .photo a {
  display: block;
  position: relative;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
}
.people .frame .people-slider .box .photo a:hover {
  margin-left: 1rem;
  margin-top: 1rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
}
.people .frame .people-slider .box .photo a::after {
  content: "";
  display: block;
  width: calc(100% - 1.5rem);
  height: calc(100% - 1.5rem);
  background-color: #fff;
  border-radius: 35px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.people .frame .people-slider .box .photo a:hover::after {
  width: 100%;
  height: 100%;
}
.people .frame .people-slider .box .photo a img,
.people .frame .people-slider .box .photo a .arrow svg {
  z-index: 1;
  position: relative;
}
.people .frame .people-slider .box .photo a .arrow {
  max-width: 125px;
  width: 100%;
  position: absolute;
  top: -1.5rem;
  right: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.people .frame .people-slider .box .photo a:hover .arrow {
  right: -1rem;
}
.people .frame .people-slider .txt {
  flex-basis: 54%;
  padding-top: 1rem;
}
.people .frame .people-slider .txt h3 {
  color: #fff;
  background-color: #122487;
  display: inline;
  font-size: 28px;
  line-height: 200%;
  letter-spacing: 3px;
  padding: 5px 15px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.people .frame .people-slider .txt .name-box {
  display: flex;
  align-items: last baseline;
  margin-top: 2rem;
}
.people .frame .people-slider .txt .name-box p {
  color: #122487;
  font-weight: bold;
}
.people .frame .people-slider .txt .name-box p.name {
  font-size: 81px;
  line-height: 100%;
  margin-right: 1rem;
}
.people .frame .people-slider .txt .name-box p:last-of-type {
  font-size: 23px;
}
.people .frame .people-slider .txt .name-box p:last-of-type span {
  font-size: 18px;
}
.people .frame .people-slider .txt .name-box p:last-of-type span.cat {
  color: #fff;
  background-color: #122487;
  padding: 0.2rem 0.4rem;
  border-radius: 5px;
  margin-left: 0.5rem;
}
.people .frame .people-menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1050px;
  width: 100%;
  margin-left: auto;
  margin-top: -11%;
}
.people .frame .people-menu .view {
  flex-basis: 290px;
  border-bottom: 1px solid #122487;
  padding: 0 1rem 2rem;
}
.people .frame .people-menu .view a {
  display: flex;
  align-items: center;
}
.people .frame .people-menu .view a p {
  color: #122487;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 5px;
}
.people .frame .people-menu .view a .arrow {
  max-width: 120px;
  width: 100%;
  margin-left: 0.5rem;
  position: relative;
}
.people .frame .people-menu .view a .arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: -0.3rem;
  right: -0.3rem;
}
.people .frame .people-menu .view a .arrow svg {
  position: relative;
  z-index: 1;
}
.people .frame .people-menu .slider-contents .arrow-number {
  display: flex;
  justify-content: center;
  align-items: center;
}
.people .frame .people-menu .slider-contents .arrow-number .slide-arrow {
  cursor: pointer;
  width: 47px;
  height: 8px;
  border-bottom: 2px solid #122487;
}
.people .frame .people-menu .slider-contents .arrow-number .prev-arrow {
  border-left: 2px solid #122487;
  transform: skew(-45deg);
  order: 1;
}
.people .frame .people-menu .slider-contents .arrow-number .next-arrow {
  border-right: 2px solid #122487;
  transform: skew(45deg);
  order: 3;
}
.people .frame .people-menu .slider-contents .arrow-number .slick-num {
  color: #122487;
  font-size: 25px;
  font-weight: bold;
  width: fit-content;
  margin: 0 0.5rem;
  order: 2;
}
.people .frame .people-menu .slider-contents .dots-slider {
  max-width: 700px;
  width: auto;
  margin: 0 auto;
  margin-top: 2rem;
  text-align: center;
}
.people .frame .people-menu .slider-contents .dots-slider .box {
  position: relative;
  margin-right: 1em;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
}
.people .frame .people-menu .slider-contents .dots-slider .box::after {
  content: "";
  display: block;
  width: 100% !important;
  height: 100% !important;
  background-color: #122487;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.4;
}
.people
  .frame
  .people-menu
  .slider-contents
  .dots-slider
  .box.slick-current::after {
  height: 20px !important;
  background-color: #fff;
  opacity: 1;
}
@media screen and (max-width: 1300px) {
  .people .frame .people-menu {
    margin-top: -17%;
  }
  .people .frame .people-menu .slider-contents .dots-slider .slick-list {
    padding-right: 170px;
  }
}
@media screen and (max-width: 1100px) {
  .people .frame .title h2 {
    font-size: 10vw;
  }
  .people .frame .people-menu {
    margin-top: 0;
  }
  .people .frame .people-menu .slider-contents .dots-slider .slick-list {
    padding-right: 0;
  }
}
@media screen and (max-width: 820px) {
  .people .frame .title div {
    flex-basis: 55%;
    margin-right: 0;
  }
  .people .frame .title p {
    flex-basis: 45%;
  }
  .people .frame .people-slider .txt h3 {
    font-size: 2.8vw;
  }
  .people .frame .people-menu {
    margin-top: 0;
  }
  .people .frame .people-menu .slider-contents .dots-slider {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .people {
    border-radius: 60% 0 0 / 15% 0 0 0;
    padding-bottom: 5rem;
  }
  .people::after {
    content: none;
  }
  .people .frame .title {
    display: block;
  }
  .people .frame .title h2 {
    font-size: 78px;
  }
  .people .frame .title span.subtitle {
    font-size: 16px;
  }
  .people .frame .title p {
    margin-top: 2rem;
  }
  .people .frame .people-slider {
    margin-top: 2rem;
  }
  .people .frame .people-slider .box {
    display: block;
  }
  .people .frame .people-slider .box .photo a .arrow {
    max-width: 95px;
  }
  .people .frame .people-slider .txt h3 {
    font-size: 20px;
  }
  .people .frame .people-slider .txt .name-box {
    display: block;
  }
  .people .frame .people-slider .txt .name-box p.name {
    font-size: 62px;
    line-height: 140%;
    margin-right: 0;
  }
  .people .frame .people-slider .txt .name-box p:last-of-type {
    font-size: 16px;
  }
  .people .frame .people-slider .txt .name-box p:last-of-type span {
    font-size: 14px;
  }
  .people .frame .people-menu {
    flex-wrap: wrap;
  }
  .people .frame .people-menu .slider-contents .arrow-number .slide-arrow {
    width: 27px;
  }
  .people .frame .people-menu .slider-contents .arrow-number .slick-num {
    font-size: 16px;
  }
  .people .frame .people-menu .view {
    order: 2;
    margin: 2rem auto 0;
  }
  .people .frame .people-menu .view a p {
    font-size: 20px;
  }
  .people .frame .people-menu .view a .arrow {
    max-width: 105px;
  }
  .people .frame .people-menu .slider-contents {
    order: 1;
    margin-top: 3rem;
  }
  .people .frame .people-menu .slider-contents .dots-slider {
    padding-left: 2rem;
  }
  .people .frame .people-menu .slider-contents .dots-slider .slick-list {
    padding-right: 200px;
  }
}

.movie {
  background-image: url(../img/top/img-movie-back.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 7rem 0;
}
.movie .frame {
  max-width: 960px;
  width: auto;
  margin: 0 auto;
}
.movie .title {
  text-align: center;
}
.movie .title h2 {
  font-size: 132px;
  color: #122487;
  letter-spacing: 3px;
}
.movie .title h2 span.initials {
  color: transparent;
  -webkit-text-stroke: 2px #122487;
  display: inline-block;
}
.movie .title p {
  color: #122487;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.movie .box {
  padding-top: 2rem;
  margin-top: 5rem;
  position: relative;
}
.movie .box p {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 3px;
  color: #fff;
  background-color: #77b8ff;
  width: fit-content;
  padding: 1rem 4rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.movie .box .con {
  margin-left: 2rem;
  position: relative;
}
.movie .box .con button {
  display: block;
  padding-right: 1rem;
  padding-bottom: 1rem;
  position: relative;
  border: 0;
  background: none;
  cursor: pointer;
}
.movie .box .con button::after {
  content: "";
  display: block;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  background-color: #d4e7ff;
  border-radius: 0 90px 0 0;
  position: absolute;
  bottom: 0;
  right: 0;
}
.movie .box .con button img {
  position: relative;
  z-index: 1;
}
.movie .box .con button .arrow {
  max-width: 120px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.movie .box .con button .arrow svg .path {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 2px;
  transform: rotate(0);
  transition-duration: 0.5s;
  transform-origin: center center;
}
.movie .box .con button .arrow svg .polygon {
  fill: #fff;
}
.movie .box .con button:hover .arrow {
  max-width: 140px;
}
.movie .box .con button:hover .arrow svg .path {
  transform: rotate(180deg);
  transition-duration: 0.5s;
}
.movie p.big-word {
  color: transparent;
  font-size: 18.8vw;
  font-weight: bold;
  line-height: 100%;
  white-space: nowrap;
  margin: 0 -3vw;
  margin-top: 5rem;
  background: linear-gradient(to right, #77b8ff 50%, transparent 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.8s;
  pointer-events: none;
}
.movie p.big-word.active {
  background-position: 0 100%;
}
@media (orientation: landscape) {
  .modal-video-inner {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .movie {
    background-image: url(../img/top/img-movie-back-sp.svg);
    background-position: center bottom 2rem;
    padding: 5rem 0;
  }
  .movie .title h2 {
    font-size: 78px;
    line-height: 120%;
  }
  .movie .title p {
    font-size: 16px;
  }
  .movie .box {
    padding-top: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .movie .box p {
    font-size: 14px;
    padding: 0.5rem 1rem;
  }
  .movie .box .con {
    margin-left: 0;
  }
  .movie .box .con button {
    padding-right: 0;
    padding-bottom: 0;
  }
  .movie .box .con button::after {
    content: none;
  }
  .movie .box .con button .arrow {
    max-width: 60px;
  }
}

.message {
  background-color: #d4e7ff;
  border-radius: 0 300px 0 / 0 300px 0 0;
  padding: 7rem 0 5rem;
  position: relative;
}
.message .frame {
  display: flex;
}
.message .frame .box {
  flex-basis: 580px;
}
.message .frame .box .title h2 {
  font-size: 95px;
  color: #122487;
  letter-spacing: 3px;
}
.message .frame .box .title h2 span.initials {
  color: transparent;
  -webkit-text-stroke: 2px #122487;
  display: inline-block;
}
.message .frame .box .title p {
  color: #122487;
  font-size: 24px;
  font-weight: bold;
  margin-top: 1rem;
}
.message .frame .name {
  margin-top: 3rem;
}
.message .frame .name div {
  max-width: 325px;
  width: auto;
  margin-top: 1rem;
}
.message .frame .txt {
  flex-basis: 38%;
}
.message .frame .txt p {
  line-height: 200%;
  margin-bottom: 2rem;
}
.message .frame .txt .hide-text {
  display: none;
  position: relative;
}
.message .frame .txt button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #122487;
  padding: 1rem 1rem 2rem;
  margin: 0 auto;
}
.message .frame .txt button * {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.message .frame .txt button p {
  color: #122487;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 5px;
  width: 128px;
}
.message .frame .txt button.on-click p .view {
  display: none;
}
.message .frame .txt button p .close {
  display: none;
}
.message .frame .txt button.on-click p .close {
  display: inline;
}
.message .frame .txt button .arrow {
  width: 120px;
  margin-left: 0.5rem;
  position: relative;
}
.message .frame .txt button .arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: -0.3rem;
  right: -0.3rem;
}
.message .frame .txt button .arrow svg {
  position: relative;
  z-index: 1;
}
.message .frame .txt button .arrow svg .polyline_arrow_blue {
  transform: rotate(90deg);
  transform-origin: center center;
}
.message .frame .txt button.on-click .arrow svg .polyline_arrow_blue {
  transform: rotate(270deg);
}
@media screen and (max-width: 820px) {
  .message {
    padding-right: 5rem;
  }
  .message .frame {
    justify-content: space-between;
  }
  .message .frame .box {
    flex-basis: 360px;
  }
  .message .frame .txt {
    flex-basis: calc(100% - 400px);
  }
}
@media screen and (max-width: 767px) {
  .message {
    border-radius: 0 30% 0 / 0 12% 0 0;
    padding-top: 3rem;
    padding-right: 0;
  }
  .message .frame {
    display: block;
  }
  .message .frame .box .title h2 {
    font-size: 75px;
  }
  .message .frame .box .title p {
    font-size: 16px;
  }
  .message .frame .name div {
    max-width: 275px;
    margin: 2rem auto 3rem;
  }
  .message .frame .txt p {
    font-size: 14px;
  }
  .message .frame .txt button .arrow {
    max-width: 105px;
  }
}

.corporate {
  position: relative;
}
.corporate .box {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: calc(50% + 6rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.corporate .box .title {
  position: relative;
}
.corporate .box .title h2 {
  font-size: 132px;
  color: #122487;
  letter-spacing: 3px;
}
.corporate .box .title h2 span.initials {
  color: transparent;
  -webkit-text-stroke: 2px #122487;
  display: inline-block;
}
.corporate .box .title p {
  color: #122487;
  position: absolute;
  bottom: 0.5rem;
  right: 2rem;
}
.corporate .box a {
  color: #fff;
  background-color: #122487;
  border: 2px solid #fff;
  border-radius: 100px 50px 50px 0;
  display: flex;
  align-items: center;
  padding: 2rem 6rem;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 3px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.corporate .box a::before {
  background-color: #77b8ff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}
.corporate .box a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.corporate .box a::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: skew(45deg);
  margin-left: 1rem;
}
@media screen and (max-width: 1100px) {
  .corporate .box {
    top: auto;
    bottom: 1rem;
    padding: 0 1rem;
  }
  .corporate .box .title h2 {
    font-size: 12vw;
  }
  .corporate .box .title p {
    right: 0;
  }
}
@media screen and (max-width: 820px) {
  .corporate .box {
    align-items: flex-end;
    top: auto;
    bottom: 4rem;
  }
  .corporate .box .title h2 {
    font-size: 13vw;
  }
  .corporate .box a {
    padding: 2rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .corporate .box {
    display: block;
    position: relative;
    bottom: auto;
    padding: 3rem 2rem;
  }
  .corporate .box .title {
    width: fit-content;
    margin: 0 auto;
  }
  .corporate .box .title h2 {
    font-size: 66px;
  }
  .corporate .box .title p {
    position: relative;
    bottom: auto;
    right: auto;
    font-size: 14px;
    margin-top: 1rem;
  }
  .corporate .box a {
    justify-content: center;
    margin-top: 2rem;
  }
}
