
body{
  line-height: 30px;
  font-size: 16px;
}

.wrap{
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

#header {
  width: 100%;
  z-index: 10;
  position: relative;
}

#header .con1 {
padding: 20px 0;
}

.hd_nav{
  
}

.hd_btn{
  position: absolute;
  top: 0;
  right: 60px;
  width: 90px;
  box-sizing: border-box;
}

.hd_btn a{
  position: relative;
  border: 1px solid #ffffff;
  background: linear-gradient(to right, rgba(0,134,209,1) 0%, rgba(74,201,227,1) 100%);
  display: block;
  padding: 25px 5px 5px;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-transition: all .5s ease;
	transition: all .5s ease;
  opacity: 1;
}

.hd_btn a::before{
  content: '';
  position: absolute;
  background: url(images/mail.svg) no-repeat center center;
  background-size: 30px;
  display: block;
  width: 100%;
  height: 30px;
  top: 3px;
  left: 0;
  -webkit-transition: all .5s ease;
	transition: all .5s ease;
  opacity: 1;
}

.ft_btn{
  width: 200px;
  margin: 20px auto 0;
}

.ft_btn a{
  position: relative;
  background: linear-gradient(to right, rgba(0,134,209,1) 0%, rgba(74,201,227,1) 100%);
  display: block;
  border-radius: 15px;
  padding: 15px 40px 15px 40px;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  opacity: 1;
}

.ft_btn a::before{
  content: '';
  position: absolute;
  background: url(images/mail.svg) no-repeat center center;
  background-size: 28px;
  display: block;
  width: 30px;
  height: 30px;
  top: 12px;
  left: 10px;
  opacity: 1;
}

.ft_btn .ar{
  position: absolute;
  right: 10px;
  top: 15px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-image:
  url(images/ar_white.png),
    linear-gradient(to right, rgba(0,134,209,1), rgba(74,201,227,1));
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: 12px, cover;
  border: 1px solid #ffffff;
  z-index: 3;
}

.hd_btn a:hover,
.ft_btn a:hover{
  opacity: .5;
}

.hd_btn a:hover::before,
.ft_btn a:hover::before{
  opacity: .5;
}

.hd_btn .ar{
  display: none;
}

.hd_btn .ar::after{
  display: none;
}


#logo {
  width: 190px;
  z-index: 2;
}

#logo1ft{
  width: 190px;
  margin: 0 auto;
}

#logo img,
#logo1ft img{
  height: auto;
  width: 100%;
  padding: 0;
  display: block;
  vertical-align: bottom;
}

#header.m_fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
}

/* ローディング画面 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #aaa;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* メインビジュアル全体 */
#mainvl {
  display: none; /* 初期は完全非表示にする */
  position: relative;
  overflow: hidden;
}

#mainvl .swiper-container {
  width: 100%;
  height: 85vh;
  position: relative;
  overflow: hidden;
}

#mainvl .swiper-slide {
  position: relative;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out !important;
}

#mainvl .swiper-slide.swiper-slide-active,
#mainvl .swiper-slide.swiper-slide-duplicate-active {
  opacity: 1;
}

#mainvl .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease-in-out; /* 画像の拡大効果 */
}

#mainvl .swiper-slide::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

/* フェードエフェクトを強調するために、スライドがアクティブなときの拡大 */
.swiper-slide-active .slide-img {
  transform: scale(1.05); /* 少し拡大する */
}

/* スライドが非アクティブなときの戻り */
.swiper-slide-next .slide-img,
.swiper-slide-prev .slide-img {
  transform: scale(1); /* 元のサイズに戻す */
}

.maintxt {
  position: absolute;
  width: 100%;
  bottom: 130px;
  left: 0;
  z-index: 9;
  color: #ffffff;
}

.maintxt h2,
.maintxt h2 span{
  font-size: 28px;
  font-weight: 600;
  line-height: 45px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.bg_filter{
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.7) 100%);
  z-index: 8;
}

/*サブページヘッダ*/

.subvl{
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.subvl::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to right,  rgba(144,166,190,0.9) 0%,rgba(144,166,190,0.2) 40%,rgba(144,166,190,0) 100%);
  z-index: 2;
}

.subvl::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.newsbg{
  width: 100%;
  background: url(images/sub_newsbg_sp.jpg) no-repeat center center;
  background-size: cover;
}

.businessbg{
  width: 100%;
  background: url(images/sub_businessbg.jpg) no-repeat center center;
  background-size: cover;
}

.realestate .assetsbg{
  width: 100%;
  background: url(images/top_businessimg_1.jpg) no-repeat center center;
  background-size: cover;
}

.landusage .assetsbg{
  width: 100%;
  background: url(images/top_businessimg_2.jpg) no-repeat center center;
  background-size: cover;
}

.solarsystem .assetsbg{
  width: 100%;
  background: url(images/top_businessimg_3.jpg) no-repeat center center;
  background-size: cover;
}

.aboutbg{
  width: 100%;
  background: url(images/sub_aboutbg.jpg) no-repeat center center;
  background-size: cover;
}

.aboutbg2{
  width: 100%;
  background: url(images/sub_aboutbg2_sp.jpg) no-repeat center center;
  background-size: cover;
}

.bg404{
  width: 100%;
  background: url(images/sub_404.jpg) no-repeat right center;
  background-size: cover;
}

.subpage{
  position: relative;
}

/*アニメーション*/

.ani_wave1{
  animation: smoothScale 3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.ani_wave2{
  animation: smoothScale3 4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.ani_obj1{
  animation: smoothScale2 4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.ani_dot1{
  animation: fadeBlink1 4s ease-in-out infinite;
}

.ani_dot2{
  animation: fadeBlink2 4s ease-in-out infinite;
}

.ani_shape1{
  animation: rotateShape1 4s linear 1 forwards;
}

.ani_shape2{
  animation: rotateShape2 4s linear 1 forwards;
}

.ani_shape3{
  animation: rotateShape3 4s linear 1 forwards;
}

.ani_bg1{
  animation: smoothScale2 5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;  
}

.ani_bg2{
  animation: smoothScale2 8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;  
}

.ab, .ab1, .ab2 {
  opacity: 0;
  animation-play-state: paused;
  transition: opacity 0.3s ease; 
  position: absolute;
}

.ab.active2,
.ab1.active2,
.ab2.active2 {
  opacity: 1;
  animation-play-state: running;
}

.ab1 {
  z-index: 3;
}

.ab2 {
  z-index: 2;
}

.m_wave1{
  width: 200px;
  left: 0;
  top: -80px;
}

.m_wave2{
  /*width: 710px;*/
  width: 355px;
  right: -100px;
  top: -60px;
}

.m_dot1{
  width: 30px;
  right: 10%;
  top: 100px;
}

.m_dot2{
  width: 30px;
  left: 3%;
  bottom: 150px;
}

.m_dot3{
  width: 30px;
  left: 80px;
  top: 100px;
}

.m_obj1{
  width: 125px;
  left: -50px;
  top: 50px;
}

.m_obj2{
  display: none;
}

.m_shape1{
  width: 210px;
  right: -70px;
  bottom: -60px;
}

.m_shape2{
  width: 150px;
  right: -30px;
  bottom: -40px;
}

/*下層ページアニメーション*/

.news_shape1{
  width: 200px;
  right: -70px;
  bottom: -70px;
}

.news_shape2{
  width: 160px;
  left: 80px;
  top: -60px;
}

.news_obj1{
  width: 100px;
  left: -40px;
  top: -40px;
}

.news_dot2{
  width: 25px;
  left: 5%;
  top: 30px;
}

.news_dot1{
  width: 25px;
  right: 5%;
  top: 50px;
}

.news_shape_bg1{
  width: 100%;
  left: 0;
  bottom: 0px;
}

.news_shape_bg2{
  width: 100%;
  right: -100px;
  bottom: 10px;
  z-index: 1;
}


/*topfooterアニメーション*/

.f_obj3{
  position: absolute;
  /*width: 330px;*/
  width: 200px;
  z-index: 1;
  right: 0;
  top: -80px;
}

/*topAboutアニメーション*/

.a_obj1{
  width: 165px;
  right: 1%;
  top: -40px;
}

.a_dot2_2{
  width: 30px;
  right: 0;
  bottom: 20px;
}

.a_dot4{
  width: 35px;
  left: 0;
  top: -10px;
  z-index: 2;
}

.a_shape4{
  width: 160px;
  left: 0;
  top: -40px;
  z-index: 1;
}

.a_shape3{
  width: 480px;
  left: -100px;
  top: 200px;
  z-index: 1;
}

/*topBusinessアニメーション*/

.b_shape5{
  width: 340px;
  left: -80px;
  top: -30px;
  z-index: 1;
}

.b_shape6{
  width: 255px;
  left: 20px;
  top: 50px;
}

.b_wave3{
  width: 220px;
  left: -30;
  top: -50px;
  z-index: 2;
}

.b_dot5{
  width: 26px;
  right: 50px;
  top: -10px;
  z-index: 1;
}

.b_shape7{
  display: none;
}

.b_dot6{
  display: none;
}

.b_shape_bg1{
  width: 100%;
  left: 0;
  bottom: 0;
}

.b_shape_bg2{
  width: 100%;
  right: 0;
  bottom: 0px;
  z-index: 1;
}

.b_shape_bg4{
  width: 110%;
  left: 0;
  top: 600px;
}

.b_shape_bg5{
  width: 110%;
  right: 0;
  top: 700px;
  z-index: 1;
}

#topbusiness .b_shape_bg1{
  width: 120%;
  left: 0;
  bottom: inherit;
  top: 400px;
}

#topbusiness .b_shape_bg2{
  width: 120%;
  right: -100px;
  bottom: inherit;
  top: 500px;
}

/*Aboutページアニメーション*/

.about_shape3{
  width: 105px;
  left: -50px;
  top: 25px;
  z-index: 1;
}

.about_dot1{
  width: 24px;
  left: 10px;
  top: -10px;
  z-index: 1;
}

.about_dot2{
  width: 21px;
  right: 10px;
  top: 80px;
  z-index: 1;
}

.about_obj2{
  width: 120px;
  right: 0;
  top: 10px;
  z-index: 0;
}

.about_obj3{
  width: 30px;
  right: 30%;
  top: -40px;
  z-index: 1;
}

.about_wave1{
  width: 200px;
  left: 0;
  top: 0px;
}

.about_dot3{
  width: 25px;
  left: 10%;
  top: 20px;
}

.about_shape4{
  width: 240px;
  right: -90px;
  bottom: 50px;
}

.about_wave2{
  width: 200px;
  right: 0;
  bottom: -10px;
  z-index: 1;
}

.about_dot4{
  width: 25px;
  left: 60%;
  bottom: 450px;
}

.about_dot5{
  width: 32px;
  right: 100px;
  bottom: 300px;
}

.about_shape_bg1{
  width: 90%;
  left: 0;
  bottom: 300px;
}

.about_shape_bg2{
  width: 100%;
  right: 0!important;
  bottom: 200px;
  z-index: 1;
}

.about_shape_bg3{
  width: 110%;
  left: 0;
  top: 600px;
}

.about_shape_bg4{
  width: 110%;
  right: 0!important;
  top: 700px;
  z-index: 1;
}

.about_shape_bg5{
  width: 90%;
  left: 0;
  bottom: -50px;
}

.about_obj4{
  width: 100px;
  right: 5%;
  top: -20px;
  z-index: 1;
}

.about_obj5{
  width: 200px;
  left: 5%;
  top: 30%;
  z-index: 1;
}

.about_obj6{
  width: 20px;
  right: 15px;
  top: 20px;
  z-index: 2;
}

.about_obj7{

  width: 150px;
  right: -50px;
  bottom: 500px;
  z-index: 0;
}

.about_obj8{
  width: 150px;
  right: -50px;
  bottom: 100px;
  z-index: 2;
}

/*Businessページアニメーション*/

.business_obj3{
  width: 20px;
  right: 0;
  bottom: -10px;
  z-index: 1;
}

.business_obj4{
  width: 90px;
  right: 0px;
  top: -10px;
  z-index: 1;
}

.business_obj5{
  width: 100px;
  left: -30px;
  top: 10px;
  z-index: 2;
}

.business_shape4{
  width: 125px;
  right: -60px;
  bottom: -50px;
  z-index: 2;
}

.business_obj6{
  width: 20px;
  right: 5%;
  top: 200px;
  z-index: 2;
}

.business_obj7{
  /*width: 170px;*/
  width: 100px;
  right: -40px;
  bottom: 50px;
  z-index: 2;
}

.b_shape_bg3{
  /*width: 480px;*/
  width: 360px;
  left: -20px;
  top: 10px;
  z-index: 1;
}

.business_obj8{
  /*width: 170px;*/
  width: 120px;
  right: 0;
  top: 30px;
  z-index: 1;
}

.business_dot1{
  /*width: 42px;*/
  width: 36px;
  right: 10px;
  top: 10px;
  z-index: 1;
}

/*ニュース*/

#topnews{
  background: linear-gradient(to bottom,  rgba(218,233,244,1) 0%,rgba(225,237,246,0) 20%,rgba(255,255,255,0) 100%);
}

.news_ttl{
  border-bottom: 1px solid #0086d1;
  padding-bottom: 10px;
  color: #0086d1;
}

.news_en,
.news_en span{
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
}

.news_en{
}

.news_ttl h2,
.ttl2 h3{
  padding-top: 5px;
  font-size: 15px;
  font-weight: 600;
}

.news_post li{
  width: 100%;
  border-bottom: 1px solid #dddddd;
}

.news_post li a{
  display: block;
  padding: 20px 30px 20px 0;
  background: url(images/ar_blue.png) no-repeat right center;
  background-size: 20px;
}

.news_post li a:hover{
  color: #0086d1;
}

.inr_post{
  
}

.inr_post2{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.date{
  width: 100px;
  padding-left: 10px;
  display: inline-block;
}

.inr_post2 .date{
  padding-left: 0px;
}

.cate{
  width: 110px;
  background: #ffffff;
  box-sizing: border-box;
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 26px;
  padding: 2px 5px 1px;
  display: inline-block;
}

.cate2{
  width: 110px;
}

.cate2 a{
  background: #ffffff;
  box-sizing: border-box;
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 26px;
  padding: 2px 10px 1px;
  display: block;
}

.inr_post h3{
  font-size: 17px;
  padding-top: 10px;
}

.singlebox{
  background: #ffffff;
  padding: 25px 20px 20px;
  border-radius: 15px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.singlebox img{
  margin: 20px 0 0;
  border-radius: 15px;
}

.sin_con p{
  padding: 8px 0;
}


/*ボタン*/

#topnews .btn{
  margin: 30px auto 0;
}

.btn a{
  color: #ffffff;
  font-size: 17px;
  border-radius: 5px;
  padding: 15px 40px 15px 15px;
  display: block;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.btn a::before{
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.4s ease;
  z-index: 2;
}

.btn a:hover::before {
  z-index: 3;
}

.btn a::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: width 0.4s ease;
}

.btn a:hover::after{
  width: 100%;
  border-radius: 5px;
}

.btn_blue a{
  background: linear-gradient(to right,  rgba(0,134,209,1) 0%,rgba(74,201,227,1) 100%);
}

.btn_blue a::before{
  background: #ffffff url(images/ar_blue.png) no-repeat center center;
  background-size: 20px;
}

.btn_blue a:hover {
  color: #0086d1;
}

.btn_blue a:hover::after {
  border: #0086d1 solid 1px;
}

.btn_blue a:hover::before {
  background-image:
    url(images/ar_white.png),
    linear-gradient(to right, rgba(0,134,209,1), rgba(74,201,227,1));
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: 20px, cover;
  z-index: 3;
}

.btn_pink a{
  background: linear-gradient(to right, rgba(191,77,165,1) 0%,rgba(240,148,145,1) 100%);
}

.btn_pink a::before{
  background: #ffffff url(images/ar_pink.png) no-repeat center center;
  background-size: 20px;
}

.btn_pink a:hover {
  color: #bf4da5;
}

.btn_pink a:hover::after {
  border: #bf4da5 solid 1px;
}

.btn_pink a:hover::before {
  background-image:
    url(images/ar_white.png),
    linear-gradient(to right, rgba(191,77,165,1) 0%,rgba(240,148,145,1));
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: 20px, cover;
  z-index: 3;
}

.btn_green a:hover {
  color: #00a499;
}

.btn_green a{
  background: linear-gradient(to right,  rgba(0,164,153,1) 0%,rgba(161,216,132,1) 100%);
}

.btn_green a::before{
  background: #ffffff url(images/ar_green.png) no-repeat center center;
  background-size: 20px;
}

.btn_green a:hover::after {
  border: #00a499 solid 1px;
}

.btn_green a:hover::before {
  background-image:
    url(images/ar_white.png),
    linear-gradient(to right,  rgba(0,164,153,1) 0%,rgba(161,216,132,1));
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: 20px, cover;
  z-index: 3;
}

.btn_pink a:hover{
  background: linear-gradient(to right,  rgba(191,77,165,1) 0%,rgba(240,148,145,1) 100%);
}

.btn_pink a::before:hover{
  background: #ffffff url(images/ar_pink.png) no-repeat center center;
  background-size: 20px;
}

.btn_green a:hover{
  background: linear-gradient(to right,  rgba(0,164,153,1) 0%,rgba(161,216,132,1) 100%);
}

.btn_green a::before:hover{
  background: #ffffff url(images/ar_green.png) no-repeat center center;
  background-size: 20px;
}


/*フッタ*/

footer{
  padding-top: 50px;
  background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 90%,rgba(202,230,245,1) 100%);
}

.ft_sitemap_sp ul{
  background: #f2f2f2;
}

.pg_sitemap{
  
}

.pg_clm{
  width: 100%;
}

.ft_clm h3{
  border-bottom: 1px dotted #bfbfbf;
  padding-bottom: 5px;
}

.pg_clm h3{
  border-bottom: 2px solid#0086d1;
}

.ft_clm h3 a,
.pg_clm h3 a{
  display: block;
  color: #0086d1;
  font-weight: 600;
  line-height: 50px;
  padding-right: 40px;
  position: relative;
  opacity: 1;
}

.ft_clm h3 a:hover,
.pg_clm h3 a:hover{
  opacity: .6;
}

.ft_clm h3 a{
  font-size: 26px;
}

.pg_clm h3 a{
  font-size: 26px;
}

.ft_clm h3 a .f_ttl,
.pg_clm h3 a .f_ttl{
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
}

.ft_clm h3 a .f_ttl{
  font-size: 15px;
  font-weight: 500;
  padding-left: 5px;
}

.pg_clm h3 a .f_ttl{
  font-size: 15px;
  font-weight: 500;
  padding-left: 5px;
}

.ft_clm h3 a .ar,
.pg_clm h3 a .ar{
  background: linear-gradient(to right, rgba(0,134,209,1) 0%, rgba(74,201,227,1) 100%);
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 10px;
  border: 1px solid #ffffff;
  z-index: 3;
}

.ft_clm h3 a .ar::after,
.pg_clm h3 a .ar::after{
  content: '';
  display: block;
  width: 28px;
  height: 30px;
  background:url(images/ar_white.png) no-repeat center center;
  background-size: 15px;
}

.ft_clm ul,
.pg_clm ul{
  padding-top: 10px;
  display:-webkit-box;
  display:-moz-box;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:-moz-flex;
  display:flex;
  -webkit-box-lines:multiple;
  -moz-box-lines:multiple;
  -webkit-flex-wrap:wrap;
  -moz-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}

.ft_clm li,
.pg_clm li{
  width: 50%;
  padding-right: 15px;
  box-sizing: border-box;
}

.ft_clm li a,
.pg_clm li a{
  display: block;
  position: relative;
  padding: 5px 0px 5px 25px;
}

.pg_clm li a{
  font-size: 15px;
}

.ft_clm li a::before,
.pg_clm li a::before{
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 30px;
  background: url(images/ar2.png) no-repeat 10px center;
  background-size: 8px;
}

#copyright{
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 10px;
  color: #453721;
  text-align: right;
  white-space: nowrap;
}

/*トップコンテンツ*/

#topabout{
  padding-top: 40px;
  position: relative;
  background: linear-gradient(to bottom,  rgba(255,255,255,1) 36%,rgba(148,217,238,1) 100%);
}

.bg_topaboutimg{
  width: 100%;
  height: 550px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
  background: url(images/top_aboutimg.jpg) no-repeat center center;
  background-size: cover;
  border-top-right-radius: 600px;
  border-bottom-right-radius: 600px;
}

.bg_topaboutimg::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: url(images/bg_filter2.png) repeat center center;
}

.t_about_flex{
  
}

.t_about_txt{
  flex: 1;
  color: #ffffff;
}

.t_about_flex .btn{
  margin-top: 20px;
}

.t_about_flex2{
  
}

.t_about_btn,
.t_about_img{
  width: 100%;
  box-sizing: border-box;
}

.t_about_img{
  margin-top: 40px;
  width: 100%;
  aspect-ratio: 5 / 3;
  position: relative;
  border-radius: 20px;
}

.t_about_btn ul {
  display:-webkit-box;
  display:-moz-box;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:-moz-flex;
  display:flex;
  -webkit-box-lines:multiple;
  -moz-box-lines:multiple;
  -webkit-flex-wrap:wrap;
  -moz-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}

.t_about_btn li {
  width: 49%;
  box-sizing: border-box;
  margin: 30px 1% 0 0;
}

.t_about_btn li a {
  display: block;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 25px 5px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(to right,  rgba(191,77,165,1) 0%,rgba(240,148,145,1) 100%);
  position: relative;
  -webkit-transition: all .5s ease;
	transition: all .5s ease;
  opacity: 1;
}

.t_about_btn li a:hover {
  -webkit-transition: all .5s ease;
	transition: all .5s ease;
  opacity: .5;
}

.t_about_btn li img {
  display: block;
  width: 50px;
  margin: 0 auto 10px;
}

.t_about_btn li h3{
  font-size: 16px;
}

.t_about_btn li a .ar,
.t_about_img a .ar{
  background: linear-gradient(to right,  rgba(191,77,165,1) 0%,rgba(240,148,145,1) 100%);
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  bottom: -15px;
  border: 1px solid #ffffff;
  z-index: 3;
}

.t_about_btn li a .ar{
  right: 10px;
  bottom: -10px;
}

.t_about_img a .ar{
  right: 15px;
  bottom: -20px;
}

.t_about_btn li a .ar::after,
.t_about_img a .ar::after{
  content: '';
  display: block;
  width: 38px;
  height: 38px;
  background:url(images/ar_white.png) no-repeat center center;
  background-size: 20px;
}

.t_about_img a{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(images/top_aboutimg2.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.t_about_img a:hover{
  opacity: .5;
}

.t_about_img a p{
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-size: 20px;
  color: #ffffff;
}

#topbusiness{
  position: relative;
}

#topbusiness .ttl{
  padding-bottom: 40px;
}

.t_business_flex2{
  
}

.t_business_clm{
  width: 90%;
  padding-top: 30px;
  padding-bottom: 40px;
  margin: 0 auto;
}

#message .t_business_clm{
  padding-top: 0px;
}

.t_business_txt,
.message_txt{
  box-sizing: border-box;
  
}

.btn.mg_left{
  
}

.t_business_img,
.message_imgbg2{
  width: 95%;
  aspect-ratio: 4 / 3;
  margin-left: auto;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.t_business_img .swiper-container {

}

.t_business_img .swiper-slide {

}

.slide-bg {
  /*position: absolute;
  top: 0;
  left: 0;*/
  width: 100%;
  aspect-ratio: 4 / 3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 6s ease-in-out;
}

.t_business_img .swiper-slide-active .slide-bg {
  transform: scale(1.2);
}

.business_s1{
  background: url(images/top_business_s1.jpg) no-repeat center center;
  background-size: cover;
}

.business_s2{
  background: url(images/top_business_s2.jpg) no-repeat center center;
  background-size: cover;
}

.business_s3{
  background: url(images/top_business_s3.jpg) no-repeat center center;
  background-size: cover;
}

.business_s4{
  background: url(images/top_business_s4.jpg) no-repeat center center;
  background-size: cover;
}


/* ズームアニメーション */
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.t_business_txt2{
}

.t_business_flex ul{
  display: block;
}

.t_business_flex li{
  width: 100%;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  position: relative;
  overflow: hidden;
}

.t_business_flex li:nth-child(1){
  z-index: 1;
}

.t_business_flex li:nth-child(2){
  z-index: 2;
  margin-top: -50px;
}
.t_business_flex li:nth-child(3){
  z-index: 3;
  margin-top: -50px;
}

.t_business_flex li a{
  display: block;
  width: 100%;
  padding: 200px 0 250px;
  text-align: center;
  position: relative;
}

.t_business_flex li a::after{
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.t_business_flex li p{
  color: #ffffff;
  font-size: 26px;
  font-weight: 500;
  line-height: 40px;
  padding: 0 40px 0 0;
  position: relative;
  display: inline-block;
  z-index: 2;
}

.t_business_flex li p .ar{
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(to right, rgba(0,164,153,1) 0%,rgba(161,216,132,1) 100%);
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ffffff;
}

.t_business_flex li p .ar::after{
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background:url(images/ar_white.png) no-repeat center center;
  background-size: 20px;
}

 .t_business_flex li .en {
  display: inline-block;
  writing-mode: vertical-rl;
  font-size: 35px;
  color: rgba(0, 164, 153, 0.5);
  font-weight: 600;
  line-height: 1.2;
  position: absolute;
  left: 0;
  top: 30px;
}

.t_b_bg1::before,
.t_b_bg2::before,
.t_b_bg3::before{
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform: scale(1);
  z-index: 0;
}

.t_b_bg1:hover::before,
.t_b_bg2:hover::before,
.t_b_bg3:hover::before{
  transform: scale(1.1);
}

.t_b_bg1 > *,
.t_b_bg2 > *,
.t_b_bg3 > *{
  position: relative;
  z-index: 1;
}

.t_b_bg1::before{
  background: url(images/ft_link_bg1.jpg) no-repeat center center;
  background-size: cover;
}

.t_b_bg2::before{
  background: url(images/ft_link_bg2.jpg) no-repeat center center;
  background-size: cover;
}

.t_b_bg3::before{
  background: url(images/ft_link_bg3.jpg) no-repeat center center;
  background-size: cover;
}

/*タイトル*/

.txt_s{
  font-size: 13px;
  line-height: 20px;
}

.txt_ns{
  font-size: 15px;
  line-height: 27px;
}

.txt_n{
  font-size: 17px;
  line-height: 32px;
  font-weight: 500;
}

.txt_m{
  font-size: 20px;
  line-height: 40px;
  font-weight: 600;
}

.txt_ms{
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
}

.txt_l{
  font-size: 26px;
  line-height: 42px;
  font-weight: 600;
}

.single_ttl,
.con_ttl,
.business_post2 h3,
.group_post h3{
  font-size: 22px;
  line-height: 40px;
  font-weight: 600;
}

.business_post h3{
  font-size: 22px;
  line-height: 40px;
  font-weight: 600;
}

.single_ttl,
.con_ttl{
  border-bottom: #0086d1 solid 2px;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.business_post h3,
.business_post2 h3{
  border-bottom: 2px solid #00a499;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.group_post h3{
  border-bottom: 2px solid #bf4da5;
  padding: 5px 0 5px 30px;
  margin-bottom: 20px;
  background: url(images/about_dot1.png) no-repeat left center;
  background-size: 20px;
}

.txt_b,
.txt_b span{
  font-size: 24px;
  line-height: 45px;
  font-weight: 600;
}

.txt_c{
  text-align: center;
}

.txt_r{
  text-align: right;
}

.mgat{
  margin: 0 auto;
}

.wid_1{
  width: 260px;
}

.wid_2{
  width: 300px;
}

.ttl{
  margin-bottom: 30px;
}

.ttl h2,
.ttl h3{
  font-weight: 600;
}

.ttl p.en,
.ttl p.en span{
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
}

.subvl .ttl{
  margin-bottom: 0;
}

.subvl .ttl h3,
.subvl .ttl h2{
  font-size: 15px;
}

.subvl .ttl p.en,
.subvl .ttl p,
.subvl .ttl h2,
.subvl .ttl h3{
  color: #ffffff;
}

.ttl2{
  padding-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.ttl2.txt_pink{
  border-bottom: 1px solid #bf4da5;
}

.ttl2 .en,
.ttl2 .en span{
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
}

.ttl2 .en{
  padding-right: 10px;
}

/*パンくず*/

.pankuzu_list{
  padding: 20px 0 0;
  position: relative;
  z-index: 2;
}

.pankuzu_list li{
	display: inline-block;
	vertical-align: middle;
  font-size: 13px;
	line-height: 30px;
	color: #0086d1;
}

.pankuzu_list li::after{
	content: '>';
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
  line-height: 30px;
	padding: 0 5px 0px 8px;
	color: #453721;
}
.pankuzu_list li a{
	color: #333333;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  line-height: 30px;
  padding: 0;
}

.pankuzu_list li:last-child::after{
	display: none;
}


/* ページネーション */

.postbtn {
  margin: 40px 0 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.postbtn .page-numbers {
  flex: 1;
  text-align: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.postbtn .page-numbers li {
  display: inline-block;
}

.postbtn .page-numbers li a,
.postbtn .page-numbers li span {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  color: #0086d1;
  font-size: 24px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.postbtn .page-numbers li a:hover {
  background-color: #0086d1;
  color: #ffffff;
}

.postbtn .page-numbers li .current {
  background-color: #0086d1;
  color: #ffffff;
  cursor: default;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.postbtn .page-numbers .dots {
  cursor: default;
  color: #0086d1;
  border: none;
  background: none;
}

.postbtn .prevbtn,
.postbtn .nextbtn {
  color: #ffffff;
  font-size: 22px;
  border-radius: 5px;
  display: block;
  position: relative;
  background: linear-gradient(to right, rgba(0,134,209,1) 0%, rgba(74,201,227,1) 100%);
  width: 150px;
  text-align: center;
  transition: color 0.4s ease;
  z-index: 1;
}

/* 共通のホバーエフェクト背景 */
.postbtn .prevbtn::after,
.postbtn .nextbtn::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: width 0.4s ease;
  border-radius: 5px;
}

.postbtn .prevbtn::after{
  right: 0;
}

.postbtn .nextbtn::after{
  left: 0;
}

/* ホバー時の背景スライドと枠線 */
.postbtn .prevbtn:hover::after,
.postbtn .nextbtn:hover::after {
  width: 100%;
  border: 1px solid #0086d1;
}

.postbtn .prevbtn:hover,
.postbtn .nextbtn:hover {
  color: #0086d1;
}

/* ::before 矢印部分 */
.postbtn .prevbtn::before,
.postbtn .nextbtn::before {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-image 0.4s ease, background-color 0.4s ease;
}

.postbtn .prevbtn::before {
  left: 10px;
  background: #ffffff url(images/ar_blue2.png) no-repeat center center;
  background-size: 20px;
}

.postbtn .nextbtn::before {
  right: 10px;
  background: #ffffff url(images/ar_blue.png) no-repeat center center;
  background-size: 20px;
}

/* ホバー時：矢印を白い背景＋青の画像に */
.postbtn .prevbtn:hover::before {
  background-image: url(images/ar_white2.png), linear-gradient(to right, rgba(0,134,209,1), rgba(74,201,227,1));
  background-size: 20px, cover;
}

.postbtn .nextbtn:hover::before {
  background-image: url(images/ar_white.png), linear-gradient(to right, rgba(0,134,209,1), rgba(74,201,227,1));
  background-size: 20px, cover;
}

/* padding 調整 */
.postbtn .prevbtn {
  padding: 15px 20px 15px 50px;
}

.postbtn .nextbtn {
  padding: 15px 50px 15px 20px;
}

/*下層ページ（About）*/

.about_clm,
.business_clm{
  width: 90%;
  margin: 0 auto;
}

.about_img,
.business_img,
.business_img2{
  width: 95%;
}

.about_txt,
.business_txt,
.business_txt2{
  padding-top: 40px;
}

.about_img,
.business_img{
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  z-index: 1;
  aspect-ratio: 5/3;
}

.business_img2{
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  z-index: 1;
  aspect-ratio: 5/3;
  margin-left: auto;
}

.message_imgbg1{
  background: url(images/messageimg1.jpg) no-repeat center top;
  background-size: cover;
  aspect-ratio: 5/3;
}

.message_imgbg2{
  background: url(images/messageimg2.jpg) no-repeat center top;
  background-size: cover;
  min-height: 600px;
}

.about_imgbg{
  background: url(images/about_img1.jpg) no-repeat center center;
  background-size: cover;
}

.business_imgbg1{
  background: url(images/business_img1.jpg) no-repeat center center;
  background-size: cover;
}

.business_imgbg2{
  background: url(images/business_img2.jpg) no-repeat center center;
  background-size: cover;
}

.business_imgbg3{
  background: url(images/business_img3.jpg) no-repeat center center;
  background-size: cover;
}

.dl_table1 dl{
  border-bottom: 1px solid #dddddd;
}

.dl_table1 dt{
  border-top: 1px solid #dddddd;
  padding: 20px 10px 5px;
  box-sizing: border-box;
}

.dl_table1 dt:first-of-type,
.dl_table1 dd:first-of-type{
  border-top: none;
}

.dl_table1 dt{
}

.dl_table1 dd{
  padding: 0 10px 20px;
}

.dl_table1 dt .label {
  font-weight: 600;
  font-size: 17px;
}

/*文字幅調整*/
.t_label1 {
}

.t_label2 {
}

.t_label3 {
}

.gmap iframe{
  width: 100%;
  height: 350px;
}

.bg_history{
  background: url(images/about_img2.jpg) no-repeat center center;
  background-size: cover;
  padding-top: 100px;
  overflow: hidden;
}

.bg_history::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: url(images/bg_filter2.png) repeat center center;
}

.history_list li{
  padding-bottom: 30px;
  margin-left: 22px;
  border-left: solid 2px #ffffff;
  position: relative;
  color: #ffffff;
  font-size: 17px;
  /*display: flex;
  justify-content: flex-start;*/
}

.history_list li:last-child{
  border-left: none;
  padding-bottom: 0;
}

.history_list li::before{
  content: '';
  height: 24px;
  width: 24px;
  background: #bf4da5;
  border-radius: 50%;
  border: solid 2px #ffffff;
  position: absolute;
  left: -12px;
  top: 0px;
  z-index: 1;
}

.years{
  position: relative;
  padding-left: 50px;
  color: #ffffff;
  font-weight: 600;
}

.years::before{
  content: '';
  position: absolute;
  width: 45px;
  height: 2px;
  background: #ffffff;
  left: 0px;
  top: 15px;
  z-index: 0;
}

.history_list li h3{
  padding-left: 50px;
  padding-top: 5px;
  font-size: 17px;
}

.business_post ul{

}

.business_post li{
  background: #ffffff;
  box-sizing: border-box;
  padding: 20px;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.business_post2{
  
}

.business_post li:nth-child(odd){
  margin-right: 1%;
}

.business_post li:nth-child(even){
  margin-left: 1%;
}

.thumbimg {
	aspect-ratio: 5/3;
	width: 100%;
  border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.thumbimg img {
	height: auto;
	width: 110%;
	max-width: inherit;
	position:absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
  transition: transform 0.5s ease; 
	-webkit-transition: transform 0.5s ease;
	-moz-transition: transform 0.5s ease;
	-o-transition: transform 0.5s ease;
}

.thumbimg a:hover img {
	transform: translate(-50%, -50%) scale(1.1);
}

.thumbimg2 {
	margin-bottom: 10px;
  text-align: center;
}


.dl_clm dl,
.dl_clm2 dl{
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
}

.dl_table2 dt,
.dl_table2 dd{
  padding-top: 5px;
  padding-bottom: 5px;
  box-sizing: border-box;
  font-size: 16px;
}

.dl_table2 dt{
  font-weight: 600;
  padding-right: 10px;
  width: 80px;
}

.dl_table2 dd{
  flex: 1;
}


.clm_img ul {
  
}

.clm_img li{
}

.clm_img li:nth-child(even){
  margin-top: 10px;
}

.con_form dl,
.con_form2 dl{
  padding-top: 10px;
}

.con_form dt,
.con_form dd{
  
}

.con_form dt,
.con_form2 dt{
  font-size: 17px;
  font-weight: 600;
  padding: 10px 0 5px;
}

.con_form2 dd{
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
}

.con_form2 dd::after{
  content: '';
  clear: both;
  display: block;
}

.con_form dd,
.con_form2 dd{
  padding: 5px 0 30px;
}

.t_dl{

}

.t_dl h4{
  font-size: 15px;
  font-weight: 600;
  padding: 5px 0;
}

.t_dt{

}

.group_flex{

}

.dot_list{
  padding-bottom: 30px;
}

.group_post li{
  padding-top: 40px;
  position: relative;
}

.dot_list li{
  position: relative;
  padding: 2px 0 2px 15px;
}

.dot_list li::before{
  content: '';
  background: #bf4da5;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}

.sign_flex{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 40px;
}

.sign_flex p{
  padding-right: 15px;
  display: inline-block;
}

.sign1{
  width: 180px;
}

.sign_flex2{
  width: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #bf4da5;
}

.sign_flex2 p{
  font-size: 20px;
  font-weight: 600;
  padding-right: 10px;
  display: inline-block;
  white-space: nowrap;
}

.sign2{
  width: 180px;
}

.hissu1,
.hissu2{
	font-weight: 600;
  width: 50px;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  text-align: center;
  border-radius: 5px;
  font-size: 15px;
  line-height: 22px;
  padding: 2px 0 1px;
  margin-right: 10px;
}

.hissu1{
	color: #0086d1;
  border: 1px solid #0086d1;
  background: #ffffff;
}

.hissu2{
	color: #ffffff;
  border: 1px solid #b3b3b3;
  background: #b3b3b3;
}

.con_ttl span.hissu1{
  
}

.linktxt{
  color: #0086d1;
  text-decoration: underline;
}


/********************************************
 * 共通要素
 ********************************************/

.line1{
  border-top: 1px solid #dddddd;
}

.line2{
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

.tb_non,
.sp_non{
	display:none;
}

.pdl_no{
  padding-bottom: 0;
}


@media screen and (max-width: 450px) {
.maintxt h2,
.maintxt h2 span{
  font-size: 22px;
  line-height: 35px;
}

}