@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

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

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

.l-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  position: relative;
  margin: 0 auto 0;
  padding: 0 0;
  overflow: hidden;
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: #4B3C4B;
}
.l-wrapper.--top-page {
  opacity: 0;
  transition: opacity 1s 2.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.js-load .l-wrapper.--top-page {
  opacity: 1;
}
.js-load-skip .l-wrapper.--top-page {
  opacity: 1;
  transition: opacity 1s 0s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.l-wrapper a {
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (min-width: 768px) {
  .l-wrapper a:hover {
    opacity: 0.7;
    transform: scale(1.03);
  }
}

.l-bg {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.js-load .l-bg {
  opacity: 1;
  transition: opacity 2s var(--ease_inout);
}
.l-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(35deg, #55c3eb 0%, #e1f4fb 12.5%, #fff 25%, #d7eeed 37.5%, #acdcda 50%, #55c3eb 62.5%, #e1f4fb 75%, #fff 87.5%, #d7eeed 100%) repeat-x 0 0/400% auto;
  animation: bg_anim 30s linear infinite;
  pointer-events: none;
}
@keyframes bg_anim {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.l-pageNav {
  position: relative;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .l-pageNav {
    transform: translate(0, -6px);
  }
  .--top-page .l-pageNav {
    transition: opacity 0.6s 2.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s 2.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .js-load-skip .--top-page .l-pageNav {
    opacity: 1;
    transform: translateY(0);
    transition: none !important;
  }
  .--in-page .l-pageNav {
    transition: opacity 0.6s 0s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s 0s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .js-load .l-pageNav {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .l-pageNav {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    pointer-events: none;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1), transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  }
  .is-menu-open .l-pageNav {
    opacity: 1;
    pointer-events: all;
  }
}
@media screen and (max-width: 767px) {
  .l-pageNav__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
.l-pageNav__contents {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 38px 0 38px;
}
@media screen and (max-width: 767px) {
  .l-pageNav__contents {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }
}
.l-pageNav__in-logo {
  width: 423px;
  margin-bottom: 21px;
}
.l-pageNav__copy {
  margin: 19px auto 79px;
  font-size: 2.6vw;
  letter-spacing: 0.03em;
  text-align: center;
}
.l-pageNav__list {
  display: flex;
  padding-left: 3px;
}
@media screen and (max-width: 767px) {
  .l-pageNav__list {
    display: block;
    text-align: center;
    padding-left: 0;
  }
}
.l-pageNav__list-item {
  padding-right: 27px;
}
.l-pageNav__list-item:nth-last-of-type(1) {
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .l-pageNav__list-item {
    padding-right: 0;
  }
  .l-pageNav__list-item:nth-of-type(n + 2) {
    margin-top: 36px;
  }
}
.l-pageNav__link {
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: #4B3C4B;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-pageNav__link {
    font-size: 20px;
  }
}
.l-pageNav__last {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-pageNav__last {
    display: block;
  }
}
.l-pageNav__sns {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-pageNav__sns {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 62px auto 73px;
  }
}
.l-pageNav__sns-btn {
  padding-left: 18px;
}
.l-pageNav__sns-btn:nth-of-type(1) {
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .l-pageNav__sns-btn {
    padding-left: 20px;
  }
}
.l-pageNav__sns-link {
  width: 20px;
  display: block;
}
.l-pageNav__tab {
  display: flex;
  flex-wrap: wrap;
  padding-right: 3px;
  padding-left: 34px;
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
@media screen and (max-width: 767px) {
  .l-pageNav__tab {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0;
  }
}
.l-pageNav__tab-link {
  width: 3.3em;
  height: 1.4em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #4B3C4B;
  font-size: 13px;
  color: #4B3C4B;
  line-height: 0.8;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-pageNav__tab-link {
    height: 2.2em;
  }
}
.is-active .l-pageNav__tab-link {
  background-color: #4B3C4B;
  color: #fff;
}
.l-pageNavBtn {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 20px;
  top: 20px;
  background-color: #4B3C4B;
  border-radius: 50%;
  transform-origin: right top;
  transition: background-color 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .l-pageNavBtn:hover {
    transform: scale(1.06);
    background-color: #fff;
  }
  .l-pageNavBtn:hover .l-pageNavBtn__line {
    background-color: #4B3C4B;
  }
}
.l-pageNavBtn__inner {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0%;
  bottom: 0%;
}
.l-pageNavBtn__contents {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.l-pageNavBtn__line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: background-color 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 767px) {
  .l-pageNavBtn__line {
    height: 1px;
  }
}
.l-pageNavBtn__line.--line-01 {
  transform: translate(-50%, calc(-50% - 10px)) rotate(0deg);
}
@media screen and (max-width: 767px) {
  .l-pageNavBtn__line.--line-01 {
    transform: translate(-50%, calc(-50% - 5px)) rotate(0deg);
  }
}
.is-menu-open .l-pageNavBtn__line.--line-01 {
  transform: translate(-50%, calc(-50% - 0px)) rotate(30deg);
}
.l-pageNavBtn__line.--line-02 {
  transform: translate(-50%, -50%);
}
.is-menu-open .l-pageNavBtn__line.--line-02 {
  opacity: 0;
  transform: translate(50%, -50%);
}
.l-pageNavBtn__line.--line-03 {
  transform: translate(-50%, calc(-50% + 10px));
}
@media screen and (max-width: 767px) {
  .l-pageNavBtn__line.--line-03 {
    transform: translate(-50%, calc(-50% + 5px)) rotate(0deg);
  }
}
.is-menu-open .l-pageNavBtn__line.--line-03 {
  transform: translate(-50%, calc(-50% + 0px)) rotate(-30deg);
}
.l-pageNavBtn__txt {
  width: 120%;
  position: absolute;
  left: 50%;
  bottom: 0;
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.08em;
  text-align: center;
  transform: translate(-50%, 55%);
  transition: color 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 767px) {
  .l-pageNavBtn__txt {
    font-size: 9px;
    letter-spacing: 0.1em;
    transform: translate(-50%, 60%);
  }
}

.l-in-logo {
  width: 80px;
  position: fixed;
  left: 24px;
  top: 18px;
}
.l-outer {
  position: relative;
}

.l-gradArea {
  background: linear-gradient(transparent 0%, #fff 10%, #fff 70%, transparent 100%);
}
@media screen and (max-width: 767px) {
  .l-gradArea {
    background: linear-gradient(transparent 0%, #fff 5%, #fff 60%, transparent 100%);
  }
}
.--in-page .l-gradArea {
  background: linear-gradient(transparent 0%, #fff 40vh, #fff 70%, #fff 100%);
}

.l-section {
  width: 90%;
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .l-section {
    width: 91%;
  }
}
.l-section[data-scroll-sa].is-active {
  opacity: 1;
  transform: translateY(0);
}
.l-section__first {
  box-sizing: border-box;
}
.l-section__last {
  box-sizing: border-box;
}
.l-section__title {
  display: inline-block;
  text-align: left;
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .l-section__title {
    width: 100%;
    padding-left: 2.1%;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.02em;
  }
}
.l-section__title-txt {
  background: linear-gradient(to right, #55C3EB 10%, #87CDC3 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-section__lead {
  margin: 20px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-section__lead {
    margin: 10px auto 0;
  }
}
.l-section__lead__txt {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .l-section__lead__txt {
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.01em;
  }
}
.l-section__contents {
  position: relative;
  margin: 28px auto 0;
  padding: 0 0;
}
@media screen and (max-width: 767px) {
  .l-section__contents {
    margin-top: 14px;
    padding: 0 0;
  }
}

.l-footer {
  position: relative;
    /*  padding-top: 120px; */
	 padding-top: 0px;
	background-color: #FFF;
    /*  background-color: transparent; */
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer {
   /* padding-top: 80px; */
	 padding-top: 0px;
	background-color: #FFF;
  }
}
.--in-page .l-footer {
  background-color: #fff;
}
.--in-page .l-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
}
.l-footer__inner {
  width: 90%;
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  /*
  border-top: 1px solid;
  -o-border-image: linear-gradient(to right, #55C3EB 10%, #87CDC3 90%) 1;
  border-image: linear-gradient(to right, #55C3EB 10%, #87CDC3 90%) 1;
  */
  padding: 45px 0.2% 40px;
}
@media screen and (max-width: 1280px) {
  .l-footer__inner {
    width: 87.5%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    width: 87.5%;
  }
}
.l-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .l-footer__top {
    display: block;
  }
}
.l-footer__top-first {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .l-footer__top-first {
    justify-content: center;
  }
}
.l-footer__top-last {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .l-footer__top-last {
    justify-content: center;
  }
}
.l-footer__logo {
  width: 152px;
}
.l-footer__copy {
  padding: 0px 0 0 21px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    padding: 0px 0 0 23px;
    text-align: left;
    line-height: 1.65;
  }
  .--lang-eg .l-footer__copy {
    padding: 0px 0 0 23px;
    text-align: left;
    font-size: 10px;
    line-height: 1.65;
    width: 152px;
  }
}
.l-footer-pageNav__list {
  display: flex;
  padding-left: 3px;
}
@media screen and (max-width: 1280px) {
  .l-footer-pageNav__list {
    margin-top: 42px;
    margin-bottom: 33px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-pageNav__list {
    margin: 42px auto 33px;
  }
}
.l-footer-pageNav__list-item {
  padding-right: 27px;
}
@media screen and (max-width: 767px) {
  .l-footer-pageNav__list-item {
    padding-right: 23px;
  }
}
.l-footer-pageNav__list-item:nth-last-of-type(1) {
  padding-right: 0;
}
.l-footer-pageNav__link {
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: #4B3C4B;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-footer-pageNav__link {
    font-size: 14px;
  }
}
.l-footer__sns {
  display: flex;
  padding-left: 47px;
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    padding-left: 0;
    margin: 0 auto;
  }
}
.l-footer__sns-btn {
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .l-footer__sns-btn {
    padding-left: 20px;
  }
}
.l-footer__sns-btn:nth-of-type(1) {
  padding-left: 0;
}
.l-footer__sns-link {
  width: 20px;
  display: block;
}
.l-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 62px auto 0;
}
@media screen and (max-width: 1280px) {
  .l-footer__bottom {
    display: block;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    display: block;
    margin-top: 40px;
  }
}
.l-footer__banner-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1280px) {
  .l-footer__banner-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__banner-list {
    display: block;
    width: 78%;
    margin: 40px auto 0;
  }
}
.l-footer__banner-list-item {
  width: 263px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .l-footer__banner-list-item {
    margin-right: 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__banner-list-item + .l-footer__banner-list-item {
    margin-top: 12px;
  }
}
.l-footer__copyright {
  font-size: 11px;
}
@media screen and (max-width: 1280px) {
  .l-footer__copyright {
    margin: 61px auto 0;
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    margin: 61px auto 0;
    font-size: 11px;
  }
}
.p-mv {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
  margin: 0 auto 0;
  padding: 0 0;
}
.p-mv__contents {
  width: 80%;
  height: auto;
  max-width: 1400px;
  position: relative;
  margin: 0 auto;
  padding: 0;
}
.p-mv img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.p-mv__logo {
  position: absolute;
  top: 0;
  left: 0;
}
.p-mv__pict {
  position: relative;
}
.p-mv__copy {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.p-mv__copy__txt {
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-mv__copy__txt {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: 0.01em;
  }
}

.p-movie {
  width: 80%;
  max-width: 800px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .p-movie {
    width: 90%;
    margin-top: 30px;
  }
}
.p-movie__link {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
}

.p-btnList {
  display: flex;
  width: 90%;
  max-width: 800px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .p-btnList {
    flex-wrap: wrap;
    max-width: 315px;
    margin: 30px auto 0;
  }
}
.p-btnList__item {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-btnList__item {
    width: 100%;
  }
}
.p-btnList__item + .p-btnList__item {
  margin-left: 4%;
}
@media screen and (max-width: 767px) {
  .p-btnList__item + .p-btnList__item {
    margin-left: 0;
    margin-top: 10px;
  }
}

.p-attention {
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .p-attention {
    margin-top: 30px;
  }
}
.p-attention__list__item {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-attention__list__item {
    display: block;
  }
}
.p-attention__list__item + .p-attention__list__item {
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .p-attention__list__item + .p-attention__list__item {
    margin-top: 20px;
  }
}
.p-attention__first {
  width: 30%;
  padding-right: 80px;
}
@media screen and (max-width: 767px) {
  .p-attention__first {
    width: 100%;
    margin: 0 auto;
  }
}
.p-attention__last {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-attention__last {
    margin: 16px auto 0;
    width: 100%;
  }
}
.p-attention__cap {
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-attention__cap {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.01em;
  }
}
.p-attention__txt-b {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-attention__txt-b {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.01em;
  }
}
.p-attention__txt-b + .p-attention__txt-b {
  margin: 16px auto 0;
}
@media screen and (max-width: 767px) {
  .p-attention__txt-b + .p-attention__txt-b {
    margin-top: 12px;
  }
}
.p-attention__txt-s + .p-attention__txt-b {
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .p-attention__txt-s + .p-attention__txt-b {
    margin-top: 16px;
  }
}
.p-attention__txt-s {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-attention__txt-s {
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.01em;
  }
}
.p-attention__txt-s + .p-attention__txt-s {
  margin: 12px auto 0;
}
@media screen and (max-width: 767px) {
  .p-attention__txt-s + .p-attention__txt-s {
    margin-top: 10px;
  }
}
.p-attention__txt-b + .p-attention__txt-s {
  margin: 14px auto 0;
}
@media screen and (max-width: 767px) {
  .p-attention__txt-b + .p-attention__txt-s {
    margin-top: 12px;
  }
}
.p-attention__txt-n {
  padding-left: 1em;
  text-indent: -1em;
}

.m-modal__bg {
  opacity: 0.95 !important;
  background: #4B3C4B !important;
}
.m-modal__content {
  width: 65% !important;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .m-modal__content {
    width: 89.5% !important;
  }
}
.m-modal__close-btn {
  position: fixed !important;
  top: 14px !important;
  right: 14px !important;
  width: 42px !important;
  height: 42px !important;
}
@media screen and (max-width: 767px) {
  .m-modal__close-btn {
    width: 32px !important;
    height: 32px !important;
    top: 7px !important;
    right: 7px !important;
  }
}
.m-modal__close-btn:hover::before {
  transform: rotate(-55deg) !important;
}
.m-modal__close-btn:hover::after {
  transform: rotate(55deg) !important;
}
.m-modal__close-btn::before, .m-modal__close-btn::after {
  width: 2px !important;
  height: 42px !important;
  background-color: #fff !important;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .m-modal__close-btn::before, .m-modal__close-btn::after {
    width: 2px !important;
    height: 32px !important;
  }
}

.p-movieModal__logo {
  width: 52.3%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-movieModal__logo {
    width: 83.43%;
  }
}
.p-movieModal__lead {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: 15px auto 38px;
  font-family: "bryant-web", sans-serif;
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .p-movieModal__lead {
    margin: 7px auto 28px;
    font-size: 16px;
  }
}
.p-movieModal__lead-txt.--size-s {
  font-size: 22px;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 767px) {
  .p-movieModal__lead-txt.--size-s {
    font-size: 12px;
    letter-spacing: -0.03em;
  }
}
.p-movieModal__lead-txt.--size-b {
  margin-left: 0.6em;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .p-movieModal__lead-txt.--size-b {
    margin-left: 0.55em;
    letter-spacing: -0.03em;
  }
}
.p-movieModal__movie .video-js {
  height: auto;
}
.p-movieModal__movie .video-js .vjs-big-play-button {
  margin-left: -65px;
  margin-top: -65px;
  width: 130px;
  height: 130px;
  background: url(../img/play_icon.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-movieModal__movie .video-js .vjs-big-play-button {
    margin-left: -33px;
    margin-top: -33px;
    width: 66px;
    height: 66px;
  }
}
.p-movieModal__movie .video-js .vjs-big-play-button .vjs-icon-placeholder::before {
  display: none !important;
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
}
.c-btn {
  border-radius: 30px;
  background: linear-gradient(90deg, #ff614c 15%, #c12713);
  background: -webkit-linear-gradient(0deg, #ff614c 15%, #c12713);
  overflow: hidden;
}
.c-btn__link {
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  padding: 20px 3% 21px;
}
@media screen and (min-width: 768px) {
  .c-btn__link:hover::before {
    transform: translateX(0);
  }
}
.c-btn__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #c12713 15%, #ff614c);
  background: -webkit-linear-gradient(0deg, #c12713 15%, #ff614c);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 767px) {
  .c-btn__link {
    padding: 14px 3% 18px;
  }
}
.c-btn__txt {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .c-btn__txt {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}
.c-btn form {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.c-btn input[type=submit] {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  opacity: 0;
}

.c-video {
  position: relative;
  padding-top: 43.52%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-video {
    padding-top: 93.52%;
  }
}
.c-video__link {
  display: block;
  width: 106%;
  height: 106%;
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .c-video__link:hover::before {
    background-color: rgba(0, 0, 0, 0);
  }
  .c-video__link:hover .c-video__icon {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
@media screen and (max-width: 767px) {
  .c-video__link {
    width: 230%;
    height: 230%;
  }
}
.c-video__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}
.c-video__videoArea {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.c-video #youtubePlayer_ui {
  display: none;
}
.c-video #youtubePlayer {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0%;
  top: 50%;
  pointer-events: none;
  transform: translate(0%, -50%);
}
@media screen and (max-width: 767px) {
  .c-video #youtubePlayer {
    width: 100%;
    height: 100%;
  }
}
.c-video #youtubePlayer .ytp-button {
  display: none;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .c-video #youtubePlayer_player_wrap {
    padding-bottom: 93.25% !important;
  }
}
.c-video #youtubePlayer_player_wrap::after {
  display: none;
}
.c-video__icon {
  width: 6.873vw;
  height: 6.873vw;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  background-color: #4B3C4B;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .c-video__icon {
    width: 21.4vw;
    height: 21.4vw;
    transform: translate(-50%, -34%) scale(1);
  }
}
.c-video__icon::before {
  content: "";
  display: block;
  width: 18%;
  height: 21%;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #55C3EB;
  transform: translate(-40%, -50%) scale(1);
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
.c-more {
  max-width: 212px;
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
@media screen and (max-width: 767px) {
  .c-more {
    max-width: 150px;
  }
}
.c-more__link {
  display: block;
  border-bottom: 1px solid #4B3C4B;
  padding: 0 0 12px 0%;
  font-size: 18px;
  color: #4B3C4B;
  letter-spacing: -0.025em;
  text-decoration: none;
  transform-origin: left center;
}
@media screen and (min-width: 768px) {
  .c-more__link:hover {
    opacity: 0.7 !important;
    transform: scale(1) !important;
  }
  .c-more__link:hover .c-more__txt::before {
    transform: translate(0%, -50%) scale(1) rotate(0deg);
  }
}
@media screen and (max-width: 767px) {
  .c-more__link {
    padding: 0 0 12px 0%;
    font-size: 15px;
  }
}
.c-more__txt {
  display: block;
  position: relative;
}
.c-more__txt::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 4%;
  top: 50%;
  border-radius: 50%;
  background: linear-gradient(40deg, #55C3EB 5%, #54BBE2 25%, #53A6C9 50%, #5185A2 75%, #50738C 100%);
  transform: translate(0%, -50%);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 767px) {
  .c-more__txt::before {
    right: 6%;
  }
}

.c-btn + .c-btn {
  margin-top: 20px;
}
.c-btn.--jp {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.c-btn.--eg {
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.c-btn.--nl {
  filter: brightness(0.5);
  pointer-events: none;
}
.c-btn__link {
  display: block;
  position: relative;
  border-radius: 60px;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
}
.--jp .c-btn__link {
  padding: 21px 15% 25px;
}
@media screen and (max-width: 767px) {
  .c-btn__link {
    padding: 14px 3% 18px;
  }
}
.c-btn__txt {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn__txt {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}
.--jp .c-btn__txt {
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.035em;
}
.c-btn__icon {
  position: absolute;
}
.--dl .c-btn__icon {
  width: 16px;
  height: 16px;
  right: 9.6%;
  top: 50%;
  background-color: #4B3C4B;
  -webkit-mask: url(../img/ic-download.svg) center center no-repeat;
  mask: url(../img/ic-download.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: translate(0%, -50%);
}
.--nl .c-btn__icon {
  display: none;
}
.c-btn form {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.c-btn input[type=submit] {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  opacity: 0;
}

.u-bp__spOnly {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-bp__pcOnly {
    display: none;
  }
  .u-bp__spOnly {
    display: block;
  }
}
.u-nm__harf__txt {
  vertical-align: baseline;
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.u-nm__r-03__txt {
  vertical-align: baseline;
  margin-right: -0.3em;
}

.u-nm__r-05__txt {
  vertical-align: baseline;
  margin-right: -0.5em;
}

.u-nm__r-06__txt {
  vertical-align: baseline;
  margin-right: -0.6em;
}

.u-nm__r-07__txt {
  vertical-align: baseline;
  margin-right: -0.7em;
}

.u-nm__r-08__txt {
  vertical-align: baseline;
  margin-right: -0.8em;
}

.u-nm__r-09__txt {
  vertical-align: baseline;
  margin-right: -0.9em;
}

.u-nm__l-05__txt {
  vertical-align: baseline;
  margin-left: -0.5em;
}

.u-ls__d-001 {
  letter-spacing: -0.01em;
}

.u-ls__d-008 {
  letter-spacing: -0.08em;
}

.u-ls__d-05 {
  letter-spacing: -0.5em;
}

.u-ls__u-001 {
  letter-spacing: 0.01em;
}

.u-ls__u-008 {
  letter-spacing: 0.08em;
}

.u-ls__u-05 {
  letter-spacing: 0.5em;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
[data-op-left] {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1), transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}
[data-scroll].is-active [data-op-left] {
  opacity: 1;
  transform: translateX(0);
}

[data-op-right] {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1), transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}
[data-scroll].is-active [data-op-right] {
  opacity: 1;
  transform: translateX(0);
}

[data-scroll-txt] {
  transition: background-position 1.2s cubic-bezier(0.25, 0.96, 0.46, 0.98);
}
[data-scroll].is-active [data-scroll-txt] {
  background-position: 0 center;
}

[data-scroll-fade-up] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
[data-scroll].is-active [data-scroll-fade-up] {
  opacity: 1;
  transform: translateY(0);
}

[data-scroll-fade-left] {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1), transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
[data-scroll].is-active [data-scroll-fade-left] {
  opacity: 1;
  transform: translateX(0);
}

[data-scroll-fade-right] {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1), transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
[data-scroll].is-active [data-scroll-fade-right] {
  opacity: 1;
  transform: translateX(0);
}

.p-op {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #4B3C4B;
  pointer-events: all;
  opacity: 1;
  z-index: 1;
  transition: opacity 1s 2.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.js-load .p-op {
  opacity: 0;
  pointer-events: none;
}
.js-load-skip .p-op {
  opacity: 0;
  pointer-events: none;
  transition: none !important;
}
.p-op__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-op__contents {
  width: 44%;
  max-width: 620px;
  transform: scale(1.3) rotateX(-40deg);
  filter: blur(20px);
}
@keyframes op_anime {
  0% {
    opacity: 0;
    transform: scale(1.3) rotateX(-40deg);
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateX(0deg);
    filter: blur(0);
  }
}
.js-load .p-op__contents {
  animation: op_anime 2.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
@media screen and (max-width: 767px) {
  .p-op__contents {
    width: 80%;
  }
}
.p-op__logo {
  display: block;
  position: relative;
  margin: 0 auto 38px;
}
@media screen and (max-width: 767px) {
  .p-op__logo {
    margin-bottom: 20px;
  }
}
.p-op__copy {
  display: block;
  position: relative;
  font-size: min(1.3vw, 20px);
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
}
.--lang-eg .p-op__copy {
  font-size: 1vw;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-op__copy {
    font-size: min(2.6vw, 20px);
  }
  .--lang-eg .p-op__copy {
    font-size: 2.3vw;
    line-height: 1.8;
    font-weight: 400;
  }
}
.p-hero {
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s 2.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s 2.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.js-load .p-hero {
  opacity: 1;
  transform: translateY(0);
}
.js-load-skip .p-hero {
  opacity: 1;
  transform: translateY(0);
  transition: none !important;
}
@media screen and (max-width: 767px) {
  .p-hero__inner {
    padding: 79px 0 0;
  }
}
.p-hero__logo {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto 2px;
}
@media screen and (max-width: 767px) {
  .p-hero__logo {
    width: 88%;
    margin: 0 auto;
  }
}
.p-hero__copy {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: end;
  font-size: 0.9vw;
  font-weight: 500;
}
.--lang-eg .p-hero__copy {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-hero__copy {
    width: 88.9%;
    margin: 21px auto 0;
    text-align: center;
    font-size: 3.2vw;
  }
  .--lang-eg .p-hero__copy {
    line-height: 1.4;
  }
}
.p-hero__video {
  margin: 44px auto 0;
}
@media screen and (max-width: 767px) {
  .p-hero__video {
    margin-top: 48px;
  }
}

.p-concept {
 	padding:30px;
    /* padding: 132px 0 0; */
}
@media screen and (max-width: 767px) {
  .p-concept {
 	padding:30px;
  /*  padding: 76px 0 0; */
  }
}
.p-concept__contents {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-concept__contents {
    display: block;
  }
}
.p-concept__first {
  width: 44.2%;
  padding-left: 3px;
}
@media screen and (max-width: 767px) {
  .p-concept__first {
    width: 100%;
    padding-left: 0;
  }
}
.p-concept__last {
  width: 55.8%;
  padding: 0 0.3% 0 5%;
}
@media screen and (max-width: 767px) {
  .p-concept__last {
    width: 100%;
    padding: 0 0 0 0;
  }
}
.p-concept__lead {
  margin: 54px auto 0;
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-concept__lead {
    margin: 40px auto 0px;
    font-size: 17px;
    padding-left: 2.1%;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__pict {
    width: 96.8%;
    margin: 42px auto 0;
  }
}
.p-concepts {
  margin: 22px auto 0;
}
@media screen and (max-width: 767px) {
  .p-concepts {
    width: 96%;
    margin: 17px auto 0;
  }
}
.p-concepts__list-item {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.125em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-concepts__list-item {
  font-size: 1em;
  }
}
.p-concepts__cap {
  display: flex;
  align-items: center;
  width: 9.3em;
  font-weight: bold;
  letter-spacing: -0.01em;
  border-bottom: 1px solid #4B3C4B;
  padding: 20px 0 18px 0;
}
@media screen and (max-width: 767px) {
  .p-concepts__cap {
    width: 96px;
    min-height: 60px;
    padding: 9px 0 9px 0px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .p-concepts__cap.--small-cap {
    font-size: 12px;
    letter-spacing: -0.12em;
  }
}
.p-concepts__detail {
  width: calc(100% - 9.3em);
  padding: 20px 0 18px 20px;
  border-bottom: 1px solid #dad8db;
}
@media screen and (max-width: 767px) {
  .p-concepts__detail {
    display: flex;
    align-items: center;
    width: calc(100% - 96px);
    min-height: 60px;
    padding: 9px 0 9px 20px;
  }
}
.--lang-eg .p-concepts__detail {
  line-height: 1.4;
}

.p-news {
  padding: 0;
/*  padding: 120px 0 0; */
}
@media screen and (max-width: 767px) {
  .p-news {
  padding: 0;
/*  
    padding-top: 47px;
	 padding-top: 77px; */
  }
}
.p-news__contents {
  display: flex;
  flex-wrap: wrap;
}
.p-news__first {
  width: 31%;
  padding-left: 0.3%;
}
@media screen and (max-width: 767px) {
  .p-news__first {
    width: 100%;
    padding: 0 0 0 0;
  }
}
.p-news__last {
  width: 69%;
  padding: 0 0.3% 0 0;
}
@media screen and (max-width: 767px) {
  .p-news__last {
    width: 100%;
    padding: 0 0 0 0;
  }
}
.p-news__more {
  margin: 61px auto 0;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-news__more {
    width: 95%;
    margin: 40px auto 0;
  }
}

.p-newss {
  margin: 0px auto 0;
}
@media screen and (max-width: 767px) {
  .p-newss {
    width: 95%;
    margin: 20px auto 0;
  }
}
.p-newss__link {
  display: block;
  color: #4B3C4B;
  border-bottom: 1px solid #dad8db;
  padding: 20px 0 15px;
  text-decoration: none;
  transform-origin: left center;
}
@media screen and (min-width: 768px) {
  .p-newss__link:hover {
    transform: scale(1) !important;
  }
}
@media screen and (max-width: 767px) {
  .p-newss__link {
    padding: 19px 0 15px;
  }
}
.p-newss__date {
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-newss__date {
    font-size: 13px;
  }
}
.p-newss__cap {
  margin: 6px auto 0;
  font-size: 1.125em;
  letter-spacing: 0.037em;
  line-height: 1.65;
}
@media screen and (max-width: 767px) {
  .p-newss__cap {
    margin: 8px auto 0;
  font-size: 1em;
    letter-spacing: 0.035em;
    line-height: 1.7;
  }
}
.--lang-eg .p-newss__cap {
  line-height: 1.4;
}

.p-work {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .p-work {
    padding: 104px 0 77px;
  }
}
.p-work__contents {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-work__contents {
    display: block;
  }
}
.p-work__first {
  width: 59%;
  padding: 0 0.21% 0 0.1%;
  transform: translate(0%, 3.3%);
}
@media screen and (max-width: 767px) {
  .p-work__first {
    width: 100%;
    padding: 0 0 0 0;
  }
}
.p-work__last {
  width: 41%;
  padding-left: 0.3%;
  padding-right: 5.5%;
}
@media screen and (max-width: 767px) {
  .p-work__last {
    width: 96%;
    margin: 0 auto;
    padding: 0 0 0 0;
    transform: translate(0%, 0%);
  }
}
.p-work__title {
  width: 100%;
  margin-bottom: 48px;
  padding-left: 0.3%;
}
@media screen and (max-width: 767px) {
  .p-work__title {
    margin-bottom: 33px;
  }
}
.p-work__cap {
  margin: 0 auto 46px;
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-work__cap {
    margin: 25px auto 0;
    font-size: 21px;
    font-weight: 500;
  }
}
.--lang-eg .p-work__cap {
  font-weight: 400;
}
.p-work__detail {
  font-size: 1.125em;
  line-height: 1.85;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-work__detail {
    margin: 16px auto 0;
    font-size: 1em;
  }
}
.--lang-eg .p-work__detail {
  line-height: 1.4;
}
.p-work__more {
  margin: 58px auto 0;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-work__more {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-works {
    width: 96%;
    margin: 0 auto;
  }
}
.p-works__swiper {
  padding-bottom: 29px;
}
.p-works__swiper-pagination {
  bottom: 0 !important;
}
.p-works__swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: #caecf8;
}
.p-works__swiper-pagination .swiper-pagination-bullet-active {
  background-color: #56c3ec;
}
.p-director {
  position: relative;
  padding: 82px 0;
}
@media screen and (max-width: 767px) {
  .p-director {
    padding: 67px 0;
  }
}
.p-director::before {
  content: "";
  display: block;
  width: 100vw;
  height: 300vh;
  position: absolute;
  left: 50%;
  top: 0;
/*  background-color: #fff; */
  transform: translate(-50%, 0%);
}
.p-director__contents {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-director__contents {
    display: block;
  }
}
.p-director__first {
  width: 37.74%;
  padding-left: 0.23%;
  padding-right: 9.7%;
}
@media screen and (max-width: 767px) {
  .p-director__first {
    width: 100%;
    padding: 0 0 0 0;
  }
}
.p-director__last {
  width: 62.26%;
  padding: 0 0.21% 0 0.1%;
}
@media screen and (max-width: 767px) {
  .p-director__last {
    width: 96%;
    margin: 0 auto;
  }
}
.p-director__title {
  width: 100%;
  margin-bottom: 53px;
  padding-left: 0.3%;
}
@media screen and (max-width: 767px) {
  .p-director__title {
    margin-bottom: 52pxpx;
  }
}
.p-director__pict {
  position: relative;
  border-radius: 6px;
  padding-top: 133.5%;
  overflow: hidden;
  filter: drop-shadow(8px 12px 20px rgba(172, 220, 218, 0.6));
}
@media screen and (max-width: 767px) {
  .p-director__pict {
    width: 70%;
    margin: 0 auto;
    padding-top: 92.4%;
  }
}
.p-director__pict-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.p-director__name {
  margin: 0 auto 34px;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .p-director__name {
    margin: 29px auto 35px;
    font-size: 25px;
  }
}
.p-director__prof {
  font-size: 1.125em;
  line-height: 1.78;
}
@media screen and (max-width: 767px) {
  .p-director__prof {
    font-size: 1.125em;
    line-height: 1.65;
  }
}
.--lang-eg .p-director__prof {
  line-height: 1.4;
}
.p-director__prof-txt + .p-director__prof-txt {
  margin-top: 7px;
}
.p-director__more {
  margin: 40px auto 0;
}