@charset "utf-8";
/*////////////////////////////////////
top.css
////////////////////////////////////*/




/*////////////////////////////////////
startup ロゴ
////////////////////////////////////*/

@media screen and (min-width: 768px){

#startaction{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	/*background: #0E1856;*/
	background: #004584;
	z-index: 999;
    animation: fadeInAnime 3s ease 2s 1 normal forwards;
	
}

#startlogo{
	position: fixed;
	width: 450px;
	height: 75px;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: url("../img/logo.png");
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 1;
	animation: startupanime 3s ease 2s 1 normal forwards;
	
}
}

@media screen and (min-width: 0px) and (max-width: 767px){

#startaction{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #004584;
	z-index: 999;
    animation: fadeInAnime 3s ease 2s 1 normal forwards;
	
}

#startlogo{
	position: fixed;
	width: 300px;
	height: 50px;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: url("../img/logo.png");
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 1;
	animation: startupanime 3s ease 2s 1 normal forwards;
	
}
}



@keyframes fadeInAnime {
0%{
	opacity: 1;
}
15%{
	opacity: 0;
}
  
99%{
	opacity: 0;
    top: -200%;
}
100% {
	display: none;
	top: -200%;
}
  
}

@keyframes startupanime {
0%{
	top: 50%;
	left: 50%;
	opacity: 1;
}

30%{
	opacity: 0;
}
99%{
	top: -200%;
	left: -200%;
	opacity: 0;
}
100% {
	display: none;
	top: -200%;
}
}


/*////////////////////////////////////
header image
////////////////////////////////////*/


@media screen and (min-width: 768px){

/* スライダー全体 */
.slider{
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.slider::after{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

/* スライダー画像 */
.slider .slider_img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  animation: slider_anime 20s linear infinite;
   z-index: 1;
}

/*
  ①スライド画像
  表示する画像を定義
*/
.slider .slider_img:nth-of-type(1){
    animation-delay: 0s;
    background-image: url("../img/slider01.jpg");
}

.slider .slider_img:nth-of-type(2){
    animation-delay: 5s;
    background-image: url("../img/slider02.jpg");
}

.slider .slider_img:nth-of-type(3){
  animation-delay: 10s;
  background-image: url("../img/slider03.jpg");
}

.slider .slider_img:nth-of-type(4){
  animation-delay: 15s;
  background-image: url("../img/slider04.jpg");
}




#header_word_area{
    position: absolute;
    width: 100%;
    top:50%;
    transform: translateY(-30%);
    text-align: center;
    z-index: 2;
}

#header_word_place{
    position: relative;
    width: 100%;
    margin-bottom: 100px;
    font-family: 'Noto Serif JP', serif;
    color: #FFF;
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    
}

#header_word_place span{
    position: relative;
    width: 100%;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #FFF;
    font-size: clamp(2rem, 2.5vw, 3rem);
    letter-spacing: 0.2em;
    z-index: 2;
}


.top_scroll {
  position: relative;
  width: 24px;
  height: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.top_scroll_item {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.top_scroll_item:first-child {
  animation: move 3s ease-out 1s infinite;
}

.top_scroll_item:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.top_scroll_item:before,
.top_scroll_item:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.top_scroll_item:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.top_scroll_item:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}



.text {
  display: block;
  padding-top: 75px;
  margin-left: -40px;
  font-size: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .5;
  animation: pulse 2s linear alternate infinite;
}

}



@media screen and (min-width: 0px) and (max-width: 767px){
#top_header {
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio:3/2;
	margin-top: 60px;
}
/* スライダー全体 */
.slider{
	position: absolute;
	overflow: hidden;
	width: 100%;
	top: 0;
	left: 0;
	aspect-ratio:3/2;
	z-index: 1;
}

.slider::after{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* スライダー画像 */
.slider .slider_img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  animation: slider_anime 20s linear infinite;
   z-index: 1;
}

/*
  ①スライド画像
  表示する画像を定義
*/
.slider .slider_img:nth-of-type(1){
    animation-delay: 0s;
    background-image: url("../img/slider01.jpg");
}

.slider .slider_img:nth-of-type(2){
    animation-delay: 5s;
    background-image: url("../img/slider02.jpg");
}

.slider .slider_img:nth-of-type(3){
  animation-delay: 10s;
  background-image: url("../img/slider03.jpg");
}

.slider .slider_img:nth-of-type(4){
  animation-delay: 15s;
  background-image: url("../img/slider04.jpg");
}




#header_word_area{
    position: relative;
    width: 100%;
	aspect-ratio:3/2;
    z-index: 2;
}

#header_word_place{
    position: absolute;
    width: 90%;
	top: 50%;
	text-align: center;
	transform: translateY(-50%);
    left: 5%;
    margin-bottom: 100px;
    font-family: 'Noto Serif JP', serif;
    color: #FFF;
    font-size: 2.6rem;
    font-weight: 700;    
}

#header_word_place span{
    position: relative;
    width: 100%;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #FFF;
    font-size: 1.8rem;
    z-index: 2;
}


.top_scroll {
  position: absolute;
  width: 300px;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  margin-left: auto;
  margin-right: auto;
  height: 16px;
  z-index: 5;
}

.top_scroll_item {
  position: absolute;
  width: 18px;
  height: 6px;
  left: 46%;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.top_scroll_item:first-child {
  animation: move 3s ease-out 1s infinite;
}

.top_scroll_item:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.top_scroll_item:before,
.top_scroll_item:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.top_scroll_item:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.top_scroll_item:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}



.text {
	position: relative;
  display: block;
  padding-top: 60px;
  width: 100%;
  margin-left: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .5;
  animation: pulse 2s linear alternate infinite;
}
}



@keyframes slider_anime {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  35% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}


/*////////////////////////////////////
vision
////////////////////////////////////*/


@media screen and (min-width: 768px){
.top_vision{
    position: relative;
    width: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    padding: 600px 0 100px 0;
    background: #F8F5F0;
    opacity: 0;
    transition: all .5s;
    z-index: 3;
}



#top_vision_area{
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-right: auto;    
}

#top_vision_logo{
    position: absolute;
    width: 100%;
    font-family: 'Sawarabi Gothic', sans-serif;
    color:#5E5D5D;
    font-size: clamp(15rem, 15vw, 25rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: center;
    top: 50%;
    transform: translateY(50%);
    mix-blend-mode: hard-light;
    
}


#top_vision_title{
    position: relative;
    width: 100%;
    margin-bottom: 100px;
    font-family: 'Noto Serif JP', serif;
    color: #444;
    font-size: clamp(4rem, 5vw, 6rem);
    font-weight: 200;
    letter-spacing: 0.1em;
}

#top_vision_title_sp{
    display: none;
}

#top_vision_word{
    position: relative;
    width: 50%;
    float: right;
    font-family: 'Sawarabi Gothic', sans-serif;
    color: #444;
    font-size: clamp(1.6rem,5vw,1.8rem);
    font-weight: 200;
    letter-spacing: 0.1em;
    line-height: 2.5;
}
}

@media screen and (min-width: 0px) and (max-width: 767px){

.top_vision{
    position: relative;
    width: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    padding: 80px 0 50px 0;
    background: #F8F5F0;
    opacity: 1;
    transition: all .5s;
    z-index: 3;
}



#top_vision_area{
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto; 
}

#top_vision_logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: 'Sawarabi Gothic', sans-serif;
    color:#5E5D5D;
    font-size: 10rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: center;
    mix-blend-mode: hard-light;
    
}#top_vision_title{
    display: none;
}


#top_vision_title_sp{
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    font-family: 'Noto Serif JP', serif;
    color: #444;
     font-size: clamp(3.5rem, 3vw, 4rem);
    font-weight: 200;
    letter-spacing: 0.1em;
    text-align: center;
}

#top_vision_word{
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Sawarabi Gothic', sans-serif;
    color: #444;
    font-size: 1.6rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    line-height: 2;
    text-align: left;
}

}
/*////////////////////////////////////
SERVICE
////////////////////////////////////*/
@media screen and (min-width: 768px){
#topservice {
	position: relative;
	width: 100%;
	background: #F8F5F0;
	padding: 100px 0;
	z-index: 3;
}
#top_service1,
#top_service2,
#top_service3 {
	position: sticky;
	top: 100px;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: nowrap;
	padding: 100px 0;
}
#top_service1,
#top_service3 {
	background:#EEE7D8;
}
#top_service2 {
	background: rgba(217,228,240,1.00);
	flex-direction:row-reverse;
}

#top_service1 .top_service_word_area,
#top_service3 .top_service_word_area {
	position: relative;
	width: 40%;
	margin-left: 10%;
}
#top_service2 .top_service_word_area {
	position: relative;
	width: 40%;
	margin-right: 10%;
}
.top_service_image {
	position: relative;
	width: 40%;
	aspect-ratio:3/2;
	margin: 0 5%;
	z-index: 1;
}
#top_service1 .top_service_image::after,
#top_service3 .top_service_image::after {
	content: "";
	position: absolute;
	width: 100%;
	aspect-ratio:3/2;
	top: 5%;
	left: 5%;
	background:rgba(218,197,181,1.00);
	z-index: -1;
}
#top_service2 .top_service_image::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 5%;
	left: 5%;
	background: rgba(164,208,230,1.00);
	z-index: -1;
}
.top_service_title {
	position: relative;
	width: 100%;
	font-size: 4rem;
	line-height: 1.2;
	font-weight: 400;
	color: #555;
	margin-bottom: 50px;
}
.top_service_title span {
	font-size: 1.8rem;
}
.top_service_word {
	position: relative;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 2;
	margin-bottom: 100px;
}
.top_service_word p {
	text-indent: 1em;
	margin: 0;
}
.service_detail_bt {
	position: relative;
	text-align: center;
}
.service_detail_bt a {
	position: relative;
	display: inline-block;
	background: #333;
	padding: 20px 50px;
	color: #FFF;
	font-size: 2rem;
	border:1px solid #333;
	text-decoration: none;
	font-weight: 400;
	transition: all 0.3s;
	z-index: 1;
	overflow: hidden;
}
.service_detail_bt a:hover {
	color: #333;
}
.service_detail_bt a::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: #FFF;
	top: 0;
	left: -100%;
	z-index: -1;
	transition: all 0.3s;
}
.service_detail_bt a:hover::before {
	left: 0;
}
}
@media screen and (min-width: 0px) and (max-width: 767px){
#topservice {
	position: relative;
	width: 100%;
	background: #F8F5F0;
	padding: 80px 0;
	z-index: 3;
}
#top_service1,
#top_service2,
#top_service3 {
	position: sticky;
	top: 60px;
	width: 100%;
	padding: 50px 0;
}
#top_service1,
#top_service3 {
	background:#EEE7D8;
}
#top_service2 {
	background: rgba(217,228,240,1.00);
	flex-direction:row-reverse;
}

#top_service1 .top_service_word_area,
#top_service3 .top_service_word_area {
	position: relative;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}
#top_service2 .top_service_word_area {
	position: relative;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}
.top_service_image {
	position: relative;
	width: 90%;
	aspect-ratio:3/2;
	margin: 0 auto;
	z-index: 1;
}
#top_service1 .top_service_image::after,
#top_service3 .top_service_image::after {
	content: "";
	position: absolute;
	width: 100%;
	aspect-ratio:3/2;
	top: 5%;
	left: 5%;
	background:rgba(218,197,181,1.00);
	z-index: -1;
}
#top_service2 .top_service_image::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 5%;
	left: 5%;
	background: rgba(164,208,230,1.00);
	z-index: -1;
}
.top_service_title {
	position: relative;
	width: 100%;
	font-size: 2.3rem;
	line-height: 1.2;
	font-weight: 400;
	color: #555;
	margin-bottom: 50px;
}
.top_service_title span {
	font-size: 1.4rem;
}
.top_service_word {
	position: relative;
	width: 100%;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 2;
	margin-bottom: 50px;
}
.top_service_word p {
	text-indent: 1em;
	margin: 0;
}
.service_detail_bt {
	position: relative;
	text-align: center;
}
.service_detail_bt a {
	position: relative;
	display: inline-block;
	background: #333;
	padding: 15px 30px;
	color: #FFF;
	font-size: 1.6rem;
	border:1px solid #333;
	text-decoration: none;
	font-weight: 400;
	transition: all 0.3s;
	z-index: 1;
	overflow: hidden;
}
.service_detail_bt a:hover {
	color: #333;
}
.service_detail_bt a::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: #FFF;
	top: 0;
	left: -100%;
	z-index: -1;
	transition: all 0.3s;
}
.service_detail_bt a:hover::before {
	left: 0;
}
}
/*////////////////////////////////////
toptopic
////////////////////////////////////*/

@media screen and (min-width: 768px){

#toptopic{
	position: relative;
	width: 100%;
    overflow: hidden;
	background: #F8F5F0;
	z-index: 3;
}

#toptopic_title{
	position: relastive;
	text-align: center;
	margin-bottom: 80px;
}

#toptopic_area{
	position: relative;
	width: 90%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 80px;
	padding: 50px 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.toptopic_item_place {
	width: 28%;
    margin: 0 2.5%;
}
.toptopic_item_place a{
	display: block;
	text-decoration: none;
	transition: all 0.3s;
}
.toptopic_item_place a img {
	transition: all 0.3s;
}
.toptopic_item_place a:hover img {
	transform: scale(1.1);
	opacity: 0.9;
}
.toptopic_item{
	position: relative;
	background: #FFF;
	border-radius: 10px;
    border: 1px solid #283D6A 0.8;
    box-shadow: 0 10px 25px 0 rgba(40, 61, 106, 0.5);
	overflow: hidden;
}





.toptopic_item_img{
	position: relative;
    width: 100%;
	aspect-ratio:3/2;
	text-align: center;
	overflow: hidden;
}

.toptopic_item_img img{
	display: block;
	width: 100%;
	aspect-ratio:3/2;
	object-fit: cover;
}


.toptopic_item_text{
    position: relative;
    width: 100%;
	aspect-ratio:3/1.5;
    margin-left: auto;
    margin-right: auto;
	padding: 30px 20px;
	overflow: hidden;
}

.toptopic_item_title{
	position: relative;
	width: 100%;
    height: 100%;
    margin-bottom: 50px;
	font-size: 1.8rem;
	color: #333;
    text-align: left;
}

.toptopic_item_day{
	position: absolute;
	width: 100%;
	bottom: 10px;
	right: 10px;
	font-size: 1.4rem;
    font-weight: 600;
	color:#858484;
    text-align: right;
}

}



@media screen and (min-width: 0px) and (max-width: 767px){

#toptopic{
	position: relative;
	width: 100%;
    overflow: hidden;
	background: #F8F5F0;
    padding-top: 100px;
	z-index: 3;
}

#toptopic_title{
	position: relastive;
	text-align: center;
	margin-bottom: 80px;
}

#toptopic_area{
	position: relative;
	width: 90%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 100px;
    
}

.toptopic_item_place {
	width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.toptopic_item_place a{
	display: block;
	text-decoration: none;
	transition: all 0.3s;
}
.toptopic_item_place a img {
	transition: all 0.3s;
}
.toptopic_item_place a:hover img {
	transform: scale(1.1);
	opacity: 0.9;
}
.toptopic_item{
	position: relative;
	background: #FFF;
	border-radius: 10px;
	overflow: hidden;
    border: 1px solid #283D6A 0.8;
    box-shadow: 0 10px 25px 0 rgba(40, 61, 106, 0.5);
}





.toptopic_item_img{
	position: relative;
    width: 100%;
	aspect-ratio:3/2;

}

.toptopic_item_img img{
	display: block;
	width: 100%;
}


.toptopic_item_text{
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 30px 50px 30px;
	overflow: hidden;
}

.toptopic_item_title{
	position: relative;
	width: 100%;
    height: 100%;
    margin-bottom: 50px;
	font-size: 1.6rem;
	color: #333;
    text-align: left;
}

.toptopic_item_day{
	position: absolute;
	width: 100%;
	bottom: 10px;
	right: 10px;
	font-size: 1.4rem;
    font-weight: 600;
	color:#858484;
    text-align: right;
}

}