@charset "utf-8";
/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse; width:100%;}
fieldset,img{border:0; vertical-align:top;}
address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400;}
q:before,q:after{content:'';}
abbr,acronym{border:0;font-variant:normal;}
sup{vertical-align:top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{*font-size:100%;}
legend{color:#000;}
del,ins{text-decoration:none;}
section{display:block;}
figure,figcaption{margin:0; padding:0;}
main {display:block;padding:0;margin:0;position: relative;z-index: 2;}
small {font-size: 100%;}
.cf:after{content:".";display:block;height:0;clear:both;visibility:hidden;font-size: 0.1em;}
.cf	{display:inline-block;zoom:1;}
ul.col {
	letter-spacing:-0.5em;
}
ul.col li {
	display:inline-block;
	vertical-align:top;
	letter-spacing:0.01em;
}
/* \*/
* html .cf	{height:1%;}
.cf	{display:block;}
/* */
a:link,a:visited {
    backface-visibility:hidden;
-webkit-backface-visibility: hidden;  
	text-decoration:none;
	color:var(--c-base);
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
a:hover {
    outline:none;
}
a.disabled {
  pointer-events: none;
}
a:focus, *:focus { outline:none; }
img {
	max-width: 100%;
    height: auto;
}
:root {
    --f-jp: "Noto Sans JP", sans-serif;
    --f-en: "Miranda Sans", sans-serif;
    --c-base:#000000;
    --c-red:#E21414;
    --c-line:#E3D5D5;
    --c-bg:#f2f7f7;
}

/*----------------common----------------*/

body {
  font-family: var(--f-jp);
  font-size: 18px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: var(--c-base);
  word-wrap: break-word;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    background: #0B0E14;
background: linear-gradient(90deg,rgba(11, 14, 20, 1) 0%, rgba(25, 36, 49, 1) 100%);
}
.fade {
    transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform .8s cubic-bezier(0.215, 0.61, 0.355, 1),filter 1s cubic-bezier(0.215, 0.61, 0.355, 1);

    transform: translateY(60px);
    opacity: 0;
    -ms-filter: blur(4px);
  filter: blur(4px);
    transition-delay: .3s;
}
.fade--delay01 {
    transition-delay: .8s;
}
.fade--delay02 {
    transition-delay: 1.3s;
}
.fade--delay03 {
    transition-delay: 1.8s;
}
.fade.anime {
    transform: translateY(0px);
    opacity: 1;
    ms-filter: blur(0px);
  filter: blur(0px);
    
}
.fade-left {
    transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform .8s cubic-bezier(0.215, 0.61, 0.355, 1),filter 1s cubic-bezier(0.215, 0.61, 0.355, 1);

    transform: translateX(-40px);
    opacity: 0;
    -ms-filter: blur(4px);
  filter: blur(4px);
}
.fade-left.anime {

    transform: translateX(0px);
    opacity: 1;
    -ms-filter: blur(0px);
  filter: blur(0px);
}
.fade-right {
    transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform .8s cubic-bezier(0.215, 0.61, 0.355, 1),filter 1s cubic-bezier(0.215, 0.61, 0.355, 1);

    transform: translateX(40px);
    opacity: 0;
    -ms-filter: blur(4px);
  filter: blur(4px);
}
.fade-right.anime {

    transform: translateX(0px);
    opacity: 1;
    -ms-filter: blur(0px);
  filter: blur(0px);
}


.loading {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading dt {
    width: 200px;
    margin-bottom: 20px;
}
.loading-area {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.loading-area span {
    display: inline-block;
    background-color: #efefef;
    background-image: linear-gradient(#005bab, #005bab);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    animation: water-anime 2s infinite linear;
    text-transform: uppercase;
    font-size: 16px;
    font-family: var(--f-en);
  font-weight: 800;
}

.loading-area span:nth-child(1) {
    animation-delay: 0.1s;
}

.loading-area span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-area span:nth-child(3) {
    animation-delay: 0.3s;
}

.loading-area span:nth-child(4) {
    animation-delay: 0.4s;
}

.loading-area span:nth-child(5) {
    animation-delay: 0.5s;
}

.loading-area span:nth-child(6) {
    animation-delay: 0.6s;
}

.loading-area span:nth-child(7) {
    animation-delay: 0.7s;
}

.loading-area span:nth-child(8) {
    animation-delay: 0.8s;
}

.loading-area span:nth-child(9) {
    animation-delay: 0.9s;
}

.loading-area span:nth-child(10) {
    animation-delay: 1s;
}

@keyframes water-anime {

    50%,
    70% {
        background-size: 100% 0%;
    }

}



.visual {
    
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    
}
.visual:after {
    background-color: rgba(0,0,0,0.15);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    z-index: 2;    
}
.visual .inner1080 {
    position: relative;
    z-index: 99999;
    top: 0;
    bottom: 0;
}
.visual-canvas {
    position: absolute;
    top: 0;
    bottom: 0;
}
.visual__logo {
    position: absolute;
    z-index: 9999;
    left: 0;
    top: 50%;
    width: 300px;
    transform: translateY(-50%);
    width: 340px;
    
}
#visual-canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.visual__logo img {
    
}
.lead {
    text-align: center;
    padding-top: 200px;
    padding-bottom: 200px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}
.lead:after {
    position: absolute;
    content: "";
    left: 0%;
    top: 0;
    right: 0;
    bottom:0px;
    background-image: url( "../../images/bg_lead2.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
    opacity: 0.4;
}

.lead h2 {
    margin-bottom: 90px;
}
.lead h2 img {
    width: 190px;
}

.lead p {
    font-size: 22px;
    line-height: 2.4;
    font-weight: 500;
}
.second-ttl {
    font-weight: 800;
    font-size: 39px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 50px;
    text-align: center
}
.second-ttl span {
    font-family: var(--f-en);
    font-weight: 600;
    display: block;
    font-size: 18px;
    color: #005bab;
}
.second-ttl:after {
    width: 80px;
    content: "";
    height: 5px;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #0096DF;
background: linear-gradient(90deg,rgba(0, 150, 223, 1) 20%, rgba(0, 91, 171, 1) 20%);
}
.second-ttl--left {
    text-align: left;
}
.second-ttl--left:after {
    transform: translateX(0%);
    left: 0;
}
.second-ttl--w:after {
    background-color: #fff;
    
}
.inner1080 {
    max-width: 1080px;
    margin: auto;
    width: 86%;
    position: relative;
    z-index: 5;
    
}
.arc-base {
    fill: none;
    opacity: 0;
  }
.flow {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
  }

.greeting {
    position: relative;
    padding-top: 200px;
    padding-bottom: 200px;
    background-color: #fff;
}
.greeting .bg-eng {
    top: -30px;
    z-index: 3;
    left: 0;
    -webkit-text-stroke: 1px #fff;
}
.greeting:before {
    background-color: rgba(0,150,223,0.2);
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-top-right-radius: 500px;
}
.greeting:after {
    background-color: rgba(0,91,171,0.15);
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 560px;
    right: 0;
    bottom: 0;
    border-top-left-radius: 500px;
}
.greeting .inner1080 {
    display: flex;
    display: grid;
    grid-template-columns: 28% 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: 
        "areaB areaA"
        "areaB areaC";
    grid-column-gap:10%;
}
.greeting h2 {
    grid-area: areaA;
    margin-bottom: 50px;
}
.greeting__photo {
    grid-area: areaB;
    position: relative;
    padding-bottom: 60px;
    margin-left: -50px;
}
.greeting__txt {
    grid-area: areaC;
}
.greeting__txt h3 {
    font-weight: 800;
    font-size:25px;
    margin-bottom: 30px;
}
.u-mdb {
    margin-bottom: 25px;
}

.greeting .name {
    text-align: right;
    margin-top: 30px;
}
.about {
    padding-top: 200px;
    padding-bottom: 200px;
    text-align: center;
    background-color: #fff;
    position: relative;
}
.about .photo li {
    position: absolute;
    z-index: 1;
    will-change: transform;
}

.about .photo li:nth-child(1) {
    width: 210px;
    left: 0;
    top: 160px;
}
.about .photo li:nth-child(2) {
    width: 160px;
    left: 220px;
    top: 650px;
}
.about .photo li:nth-child(3) {
    width: 230px;
    left: 80px;
    top: 1000px;
}
.about .photo li:nth-child(4) {
    width: 230px;
    right: 0;
    top: 270px;
}
.about .photo li:nth-child(5) {
    width: 160px;
    right: 210px;
    top: 790px;
}
.about .photo li:nth-child(6) {
    width: 320px;
    right: 0px;
    top: 1100px;
}
.about .inner1080 {
    max-width: 600px;
}
.about h2 {
    margin-bottom: 100px;
}
.about .logo img {
    width: 230px;
    margin-bottom: 80px;
}
.about h3 {
    font-weight: 700;
    font-size: 25px;
    text-align: left;
    margin-bottom: 25px;
}
.about p {
    text-align: left;
    text-shadow: 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 2px rgba(255, 255, 255, 1);
}
.middle-img {
    height: 750px;
    position: relative;
}
.middle-img:before {
    background: #0B0E14;
background: linear-gradient(0deg,rgba(11, 14, 20, 0.4) 0%, rgba(11, 14, 20, 0) 100%);
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom:0;
    height: 200px;
    content: "";
    
    
}
.middle-img:after {
    position: absolute;
    z-index:1;
    left: 0;
    right: 0;
    height: 260px;
    bottom: 0;
    content: "";
    background-image: url("../../images/bg_movie.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    
    
}
.movie {
    color: #fff;
    position: relative;
    padding-bottom: 370px;
}
.movie:before {
    z-index: 2;
    left: 0;
    right: 0;
    top:380px;
    bottom: 0;
    color: #fff;
    position: absolute;
    content: "";
    background: #005BAB;
background: linear-gradient(90deg, rgba(0, 91, 171, 1) 0%, rgba(0, 150, 223, 1) 100%);
}
.movie h2 {
    margin-bottom: 100px;
    margin-top: -380px;
}
.movie h2 span {
    color: #fff;
}
.movie__btn {
    margin-bottom:100px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.movie__btn p {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.40);
    z-index: 5;
    font-family: var(--f-en);
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.movie__btn a {
    display: block;
    position: relative;
}
.movie__btn a:after {
    background-image: url("../../images/icon_play.svg");
    height: 120px;
    width: 120px;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
transform-origin: center;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform-origin: center center;
    
}
.movie__btn a:hover:after {
    transform: translate(-50%, -50%) scale(1.1);
}
.movie__btn img {
    
}
.movie .inner1080 {
    max-width: 900px;
}
.movie h3 {
    font-family: var(--f-en);
    font-weight: 700;
    font-size: 70px;
    margin-bottom: 60px;
    position: relative;
    line-height: 1.4;
}
.movie h3:before {
    width: 50px;
  content: "";
  background-color: #fff;
  height: 2px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0%;
}
.movie .txt {
    display: flex;
    align-items: flex-end;
}
.movie .txt p {
    flex-shrink: 0;
}
.movie .c-btn {
    margin-left: auto;
}
.movie .c-btn a {
    background-color: #fff;
    height: 60px;
    width: 300px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005bab;
    font-weight: 700;
    position: relative;
}
.movie .c-btn a:after {
        position: absolute;
        top: 50%;
        right: 20px;
        display: block;
        content: '';
        width: 8px;
        height: 8px;
        margin-top: -5px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        border-top-width: 2px;
        border-right-width: 2px;
        border-top-style: solid;
        border-right-style: solid;
        border-top-color: #005bab;
        border-right-color: #005bab;
    }
.movie .c-btn a:hover {
    background-color: #005bab;
    color: #fff;
}
.movie .c-btn a:hover:after {
        border-top-color: #fff;
        border-right-color: #fff;
    }
.slide {
    margin-top: -170px;
    margin-bottom: 200px;
    position: relative;
    z-index: 3;
}
.slide ul {
    gap: 10px;
}
.slide ul li {
    width: 500px;
}





#bg-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.08);
}

.history {
    padding-top: 200px;
    position: relative;
    z-index: 2;
    padding-bottom: 200px;
    background-color: #fff;
    border-top-right-radius: 500px;
}

.history ul {
    z-index: 6;
    position: relative;
}
.history ul li {
    width: 45%;
}
.history ul li {
    margin-top: -160px;
}
.history ul li:nth-child(2) {
    margin-left: auto;
}
.history ul li img {
    border: 1px solid #C7D4E0;
    padding: 5px;
    background-color: #fff;
}
.history ul li p {
    font-size: 14px;
    margin-top: 10px;
    margin-left: 15px;
}
.history .lead-txt {
    margin-bottom: 230px;
}
.footer {
    background: #005BAB;
    text-align: center;
  background: linear-gradient(90deg, rgba(0, 91, 171, 1) 0%, rgba(0, 150, 223, 1) 100%);
    padding-top: 120px;
    padding-bottom: 50px;
}
.footer .logo img {
    width: 230px;
}

.footer p {
    color: #fff;
    font-size: 12px;
    margin-top: 100px;
}
.anniversary-slide {
    position: fixed;
    z-index: 2;
    font-family: var(--f-en);
  font-size: 200px;
    -webkit-text-stroke: 1px #ccc;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    color: transparent;
    font-weight: 700;
    opacity: 0.5;
}

.future {
    color: #fff;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.future .eng {
    font-family: var(--f-en);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.2;
    text-align: left;
}
.bg-image-clip {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 230px;
  clip-path: inset(0); /* 切り抜き */
  z-index: -1;
    bottom: 0px;
}

.bg-image-fixed {
  position: fixed; /* 背景を固定 */
  top: 0px;
    bottom: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.future-bg {
    padding-top: 230px;
    padding-bottom: 230px;
    position: relative;
    overflow: hidden;
}
.future-bg:after {
    content: "";
    background-color: rgba(0,0,0,0.30);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.future h2 {
    font-weight: 800;
  font-size: 45px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}
.future h2:before {
  width: 50px;
  content: "";
  background-color: #fff;
  height: 2px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0%;
}
.future p {
    font-size: 22px;
}
br.sp-only {
    display: none;
}
.fancybox__backdrop {
        background:rgba(0,0,0,0.70) !important;
    }
@media screen and (max-width:980px){
html {
    font-size: calc(100vw / 37.5);
  }
body {
    font-size: 1.5rem;
    line-height: 2;
    background-position:right 8rem;
  }
.loading dt {
    width: 15rem;
    margin-bottom: 2rem;
}
    .loading-area {
        font-size: 1.3rem;
    }
br.sp-only {
    display: inherit;
}
.visual__logo {
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 22rem;
}
.lead {
  padding-top: 9rem;
  padding-bottom: 9rem;
    background-size: auto 100%;
}
.lead h2 img {
  width: 13rem;
}
.lead h2 {
  margin-bottom: 4rem;
}
.lead p {
  font-size: 1.7rem;
    line-height: 2.8;
}
.greeting .inner1080 {
  display: block;
}
.greeting {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.second-ttl {
  font-size: 2.7rem;
  padding-bottom: 2.5rem;
  margin-bottom: 5rem;
    line-height: 1.5;
}
.second-ttl--left {
  text-align: center;
}
.greeting__photo {
  padding-bottom: 5rem;
  margin-left: 0;
    text-align: center;
}
    .greeting__photo img {
        width: 24rem;
    }
.greeting::before {
  border-top-right-radius: 10rem;
}

.greeting::after {
  top: 40rem;
  border-top-left-radius: 10rem;
}
.second-ttl--left::after {
  transform: translateX(-50%);
  left: 50%;
}
.greeting h2 {
  margin-bottom: 5rem;
}
.greeting__txt h3 {
  font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}
.u-mdb {
  margin-bottom: 2.2rem;
}
.about {
  padding-top: 21rem;
    padding-bottom: 22rem;
}
.about .logo img {
  width: 14rem;
    margin-bottom: 4rem;
}
.about h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.about h2 {
  margin-bottom: 5rem;
}
    
.about .photo li:nth-child(1) {
  width: 9rem;
  top: 10rem;
}
.about .photo li:nth-child(2) {
  width: 8rem;
  left: 13rem;
  top: 13rem;
}
.about .photo li:nth-child(3) {
  width: 9rem;
    left: 25rem;
    top: 9rem;
}
.about .photo li:nth-child(4) {
  width: 10rem;
    left: 4rem;
    top: inherit;
    bottom: -3rem;
}
.about .photo li:nth-child(5) {
  width: 8rem;
    left: 18rem;
    top: inherit;
    bottom: -5rem;
}
.about .photo li:nth-child(6) {
  width: 13rem;
    right: 0;
  top: inherit;
    bottom: 5rem;
}
.middle-img {
  height: 40rem;
}
.middle-img::after {
  height: 5rem;
}
.movie__btn a::after {
  height: 8rem;
  width: 8rem;
}
.movie h2 {
  margin-bottom: 5rem;
    margin-top: -28rem;
}
.movie h3 {
  font-size: 4rem;
  margin-bottom: 5rem;
  padding-bottom: 3rem;
}
.movie__btn p {
  font-size: 2.5rem;
}
.movie__btn {
  margin-bottom: 4rem;
    border-radius: 1.5rem;
}
.movie .txt {
  display: block;
}
.movie .c-btn a {
  height: 7rem;
  width: 29rem;
  border-radius: 4rem;
  font-size: 1.7rem;
  margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
}
.movie {
  padding-bottom: 18rem;
    padding-top: 9rem;
}
.movie::before {
  top: 0;
}
.slide {
  margin-top: -8rem;
  margin-bottom: 9rem;
}
.slide ul {
  gap: 1rem;
}
.slide ul li {
  width: 22rem;
}
.history {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.history .lead-txt {
  margin-bottom: 5rem;
}
.history{
  border-top-right-radius: 10rem;
}
.history ul li {
  width: 100%;
    margin-top: 0;
    box-sizing: border-box;
}
    .history ul li:not(:last-child) {
        margin-bottom: 3rem;
    }
    .history ul li img {
        padding: 1rem;
        box-sizing: border-box;
    }
.history ul li p {
  font-size: 1.4rem;
  margin-top: 1rem;
  margin-left: 1rem;
}
.future-bg {
  padding-top: 9rem;
  padding-bottom: 9rem;
  
}
.future h2 {
  font-size: 2.7rem;
  margin-bottom: 2rem;
    line-height: 1.5;
}
.future p {
  font-size: 1.8rem;
line-height: 1.5;
}
.future .eng {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.footer {
  padding-top: 6rem;
  padding-bottom: 3rem;
}
.footer .logo img {
  width: 17rem;
}
.footer p {
  font-size: 1rem;
  margin-top: 6rem;
}
}


























