@charset "utf-8";

/*

トップページ用のスタイルです。

*/

/* ------------ */
/* デザイン共通 */
/* ------------ */

article {
 padding: 50px 0;
}

ul li {
 list-style: none;
}

/* -------------- */
/* メインビジュアル */
/* ------------- */

.MainVisual {
 position: relative;
 top: 0;
 z-index: 5;
 width: 100%;
 height: 100vh;
 color: #fff;
 text-align: center;
 background: url(images/home/main_v_sp_2604.jpg) 50% 100% no-repeat;
 background-position: center center;
 background-size: cover;
}

.MainVisual.v2604 {}

.MainVisual.center {
 display: flex;
 justify-content: center;
 align-items: center;
}

.MainVisual::before {
 display: block;
 content: "";
 position: absolute;
 top: 0;
 z-index: 1;
 width: 100%;
 height: 100%;
 background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.4) 100%);
 background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.4) 100%);
}

.MainVisual>div {
 position: relative;
 z-index: 3;
}

.MainVisual .MainCopy {
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 margin: auto;
 color: #fff;
 line-height: 1;
}

.MainVisual .MainSubCopy {
 right: 0;
 bottom: calc(50% - 176px);
 left: 0;
 margin: auto;
}

.MainVisual .MainCopyJp {
 padding: 0.2em 0.5em;
 background-color: rgba(9, 107, 173, 0.7);
 font-size: clamp(1.625rem, 1rem + 2.67vw, 3rem);
 font-weight: 600;
}

.MainVisual>div.MainScroll {
 right: 0;
 bottom: 0;
 left: 0;
 margin: auto;
 padding: 0;
 line-height: 0;
 text-align: center;
}

.MainVisual>div.MainScroll {
 position: absolute;
 z-index: 3;
}

.MainVisual>div.MainScroll .Txt {
 display: block;
 margin: 0;
 padding: 0;
 line-height: 1;
}

.MainVisual>div.MainScroll .Bar {
 display: block;
 width: 2px;
 height: 60px;
 margin: 1rem auto 0;
 padding: 0;
 position: relative;
}

.MainVisual>div.MainScroll .Bar::before,
.MainVisual>div.MainScroll .Bar::after {
 content: "";
 width: 2px;
 height: 100%;
 position: absolute;
 display: block;
 background: #ccc;

 animation-duration: 3s;
 animation-iteration-count: infinite;
 animation-timing-function: linear;

 -webkit-animation-duration: 3s;
 -webkit-animation-iteration-count: infinite;
 -webkit-animation-timing-function: linear;
}

.MainVisual>div.MainScroll .Bar::before {
 top: 0;
 transform-origin: center top;

 animation-name: BorderBefore;
 -webkit-animation-name: BorderBefore;
}

.MainVisual>div.MainScroll .Bar::after {
 bottom: 0;
 transform-origin: center bottom;

 animation-name: BorderAfter;
 -webkit-animation-name: BorderAfter;
}

@keyframes BorderBefore {
 0% {
  transform: scale(1, 0);
 }

 25% {
  transform: scale(1, 0);
 }

 50% {
  transform: scale(1, 1);
 }

 100% {
  transform: scale(1, 1);
 }
}

@-webkit-keyframes BorderBefore {
 0% {
  -webkit-transform: scale(1, 0);
 }

 25% {
  -webkit-transform: scale(1, 0);
 }

 50% {
  -webkit-transform: scale(1, 1);
 }

 100% {
  -webkit-transform: scale(1, 1);
 }
}

@keyframes BorderAfter {
 0% {
  transform: scale(1, 1);
 }

 25% {
  transform: scale(1, 1);
 }

 40% {
  transform: scale(1, 0);
 }

 100% {
  transform: scale(1, 0);
 }
}

@-webkit-keyframes BorderAfter {
 0% {
  -webkit-transform: scale(1, 1);
 }

 25% {
  -webkit-transform: scale(1, 1);
 }

 40% {
  -webkit-transform: scale(1, 0);
 }

 100% {
  -webkit-transform: scale(1, 0);
 }
}

@media print,
screen and (max-width: 767px) {
 .MainVisual .MainCopyJp {
  padding: 0.6em 0.5em;
 }

 .MainVisual .MainCopy {
  height: 135px;
  font-size: 45px;
 }

 .MainVisual .MainSubCopy {
  bottom: calc(50% - 150px);
  font-size: 21px;
 }

 .MainVisual>div.MainScroll .Bar {
  height: 40px;
 }
}

@media print,
screen and (min-width: 768px) {
 .MainVisual .MainCopy {
  height: 214px;
  padding: 0 1em;
  font-size: 81px;
 }

 .MainVisual .MainSubCopy {
  font-size: 23px;
 }
}

@media print,
screen and (min-width: 1024px) {
 .MainVisual .MainCopy {
  height: 214px;
  padding: 0;
  font-size: 100px;
 }

 .MainVisual {
  background-image: url(images/home/main_v_2604.jpg);
 }

}

/* ------ */
/*  main  */
/* ------ */

@media print,
screen and (max-width: 767px) {}

@media print,
screen and (min-width: 768px) {
 main {
  width: 100%;
  margin: 25px 0;
 }
}

@media print,
screen and (min-width: 1024px) {
 main {
  width: 100%;
  margin: 25px 0;
 }
}

/* --------------- */
/*  Section About  */
/* --------------- */
.SecAbout {
 width: 100%;
}

.SecAbout>div {
 color: #fff;
 background: rgba(9, 107, 173, 0.95);
}

.SecAbout .Heading01 {
 color: #fff;
}

.SecAbout .Heading01::after {
 display: block;
 content: "";
 height: 11px;
 margin-top: 1rem;
 background: url("images/title_deco_unsymme.png") 50% 50% no-repeat;
}

.SecAbout>div p {
 line-height: 1.8;
}

@media print,
screen and (max-width: 767px) {
 .SecAbout {}

 .SecAbout>div {
  width: 100%;
  height: 100%;
  padding: 45px 25px;
 }

 .SecAbout .Heading01 {
  margin-bottom: 1.5rem;
 }

 .SecAbout .Heading01::after {
  margin-top: 1.5rem;
 }
}

@media print,
screen and (min-width: 768px) {
 .SecAbout {
  position: relative;
  height: 500px;
  background: url("images/home/section_bg_about.jpg") 50% 50% no-repeat;
  background-size: cover;
 }

 .SecAbout>div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 440px;
  height: 420px;
  padding: 50px 45px;
 }

 .SecAbout .Heading01::after {
  margin-top: 1rem;
 }
}

@media print,
screen and (min-width: 1024px) {}

/* --------------- */
/*  Section About  */
/* --------------- */

@media print,
screen and (max-width: 767px) {
 .AreaServiceWorks {
  width: 100%;
  margin: 0;
  padding: 60px 20px;
 }

 .AreaServiceWorks>section {
  width: 100%;
 }

 .AreaServiceWorks>section.SecWorks {
  margin-top: 40px;
 }

 .AreaServiceWorks>section a {
  display: block;
  position: relative;
  width: 100%;
  height: 192px;
  margin: 0 0 0.5rem;
  overflow: hidden;
 }

 .AreaServiceWorks>section a::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  transform: scale(1.1);
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
 }

 .AreaServiceWorks>section.SecService a::before {
  background: url("images/home/section_img_service.jpg") 50% 50% no-repeat;
  background-size: cover;
 }

 .AreaServiceWorks>section.SecWorks a::before {
  background: url("images/home/section_img_works.jpg") 50% 50% no-repeat;
  background-size: cover;
 }

 .AreaServiceWorks>section a:hover::before {
  transform: scale(1);
 }

 .AreaServiceWorks>section a h1 {
  display: inline-block;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 1rem 2rem 0 0;
  line-height: 1;
  background: rgba(255, 255, 255, 1);
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
 }

 .AreaServiceWorks>section a h1 span {
  display: inline-block;
  margin-left: 1rem;
 }

 .AreaServiceWorks>section a:hover h1 {
  color: #0884af;
 }

 .AreaServiceWorks>section p {
  padding: 1rem 0;
  line-height: 2;
 }
}

@media print,
screen and (min-width: 768px) {
 .AreaServiceWorks {
  display: -ms-flex-box;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 90%;
  margin: 80px auto;
 }

 .AreaServiceWorks>section {
  width: 48%;
 }

 .AreaServiceWorks>section.SecWorks {
  margin-top: 80px;
 }

 .AreaServiceWorks>section a {
  display: block;
  position: relative;
  width: 100%;
  height: 350px;
  margin: 0 0 0.5rem;
  overflow: hidden;
 }

 .AreaServiceWorks>section a::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  transform: scale(1.1);
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
 }

 .AreaServiceWorks>section.SecService a::before {
  background: url("images/home/section_img_service.jpg") 50% 50% no-repeat;
  background-size: cover;
 }

 .AreaServiceWorks>section.SecWorks a::before {
  background: url("images/home/section_img_works.jpg") 50% 50% no-repeat;
  background-size: cover;
 }

 .AreaServiceWorks>section a:hover::before {
  transform: scale(1);
 }

 .AreaServiceWorks>section a h1 {
  display: inline-block;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 1rem 2rem 0.5rem 1rem;
  line-height: 1;
  background: rgba(255, 255, 255, 1);
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
 }

 .AreaServiceWorks>section a h1 span {
  display: inline-block;
  margin-left: 1rem;
 }

 .AreaServiceWorks>section a:hover h1 {
  color: #0884af;
 }

 .AreaServiceWorks>section p {
  padding: 1rem;
  line-height: 2;
 }
}

@media print,
screen and (min-width: 1024px) {
 .AreaServiceWorks {
  width: 1024px;
 }

 .AreaServiceWorks>section {
  width: 510px;
 }
}

/* ----------------- */
/*  Section Message  */
/* ----------------- */

@media print,
screen and (max-width: 767px) {
 .SecMessage {
  width: 100%;
  height: 400px;
 }

 .SecMessage a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
 }

 .SecMessage a::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url("images/home/section_bg_message.jpg") 50% 50% no-repeat;
  background-size: cover;
  transform: scale(1.1);
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
 }

 .SecMessage a:hover::before {
  transform: scale(1);
 }

 .SecMessage h1 {
  position: absolute;
  top: -0.65em;
  left: 0;
  z-index: 3;
  width: 100%;
  /*height:120px;*/
  margin: auto;
  padding: 0;
  color: #fff;
  text-align: left;
  font-size: 170px;
  transform: rotate(90deg);
  transform-origin: left bottom;
 }

 .SecMessage h1 span {
  display: block;
  position: absolute;
  /* left: 50%; */
  left: 30%;
  width: 100%;
  margin: auto;
  padding: 0;
  color: #0884af;
  line-height: 1.25;
  text-align: left;
  font-size: 40px;
  transform: rotate(-90deg);
  transform-origin: left top;
 }
}

@media print,
screen and (min-width: 768px) {
 .SecMessage {
  width: 100%;
  height: 300px;
 }

 .SecMessage a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
 }

 .SecMessage a::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url("images/home/section_bg_message.jpg") 50% 50% no-repeat;
  background-size: cover;
  transform: scale(1.1);
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
 }

 .SecMessage a:hover::before {
  transform: scale(1);
 }

 .SecMessage h1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 120px;
  margin: auto;
  padding: 0;
  color: #fff;
  text-align: left;
  font-size: 140px;
 }

 .SecMessage h1 span {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 90px;
  margin: auto;
  padding: 0 0 0 3em;
  color: #0884af;
  line-height: 1.25;
  text-align: left;
  font-size: 40px;
 }
}

@media print,
screen and (min-width: 1024px) {}

/* ---------------------- */
/*  Section News  */
/* ---------------------- */


.SecNews {
 position: relative;
 margin-bottom: 60px;
 padding: 45px 25px;
 background: linear-gradient(90deg, #0884af, #5900d4);
}

.SecNews .Heading01 {
 margin-bottom: 3rem;
 color: #fff;
}

.SecNews .Heading01::after {
 display: block;
 content: "";
 height: 11px;
 margin-top: 1rem;
 background: url("images/title_deco_skyblue.png") 50% 50% no-repeat;
}


.NewsLists {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 5rem 2rem;
 max-width: 1100px;
 padding: 0;
 margin: 0 auto;
 margin-bottom: 50px;
}

.NewsList {
 position: relative;
 bottom: 0;
 left: 0;
 z-index: 0;
 width: 100%;
 max-width: 300px;
 /* background: hsla(0, 0%, 100%, 0.4); */
 display: block;
 overflow: hidden;
}

/* 
.NewsList::before {
	content: "";
	position: absolute;
	left: -125%;
	bottom: 0%;
	z-index: -1;
	width: 120%;
	height: 90%;
	background-color: #FFF;
	transform: skewX(15deg);
	transition: 0.3s ease-out;
}

@media (hover:hover) {
	.NewsList:hover::before {
		left: -10%;
	}
} */

.NewsListLink {
 display: block;
 gap: 1rem;
 position: relative;
 z-index: 1;
 width: 100%;
 max-width: 300px;
 height: 100%;
 margin-left: auto;
 margin-right: auto;
 padding-bottom: 1.5rem;
 border-bottom: 1px solid #fff;
 color: #fff;
 transition: 0.3s ease-out;
}

.NewsListPic {
 display: block;
 width: 100%;
 max-width: 300px;
 max-height: 300px;
 margin-bottom: 2rem;
 margin-left: auto;
 margin-right: auto;
 box-shadow: 2px 2px 15px -2px rgba(192, 192, 192, 0);
 transition: 0.3s ease-out;
}

.NewsListPic img {
 width: 100%;
 height: 100%;
 -o-object-fit: cover;
 object-fit: cover;
 aspect-ratio: 1 / 1;
}

/* .NewsListBody{} */
.NewsListBodyBox {
 margin-bottom: 0.5em;
}

.NewsListTime {
 display: inline-block;
 /* padding: 0.2em 0.4em; */
 /* background-color: #fff; */
 font-size: 14px;
 font-weight: bold;
 color: rgba(9, 107, 173, 0.95);
 /* background-color: rgba(9, 107, 173, 0.95); */
 color: #fff;
 transition: 0.3s ease-out;
}

.NewsListNew {
 display: inline-block;
 padding: 0.2em 0.4em 0.1em;
 margin-left: 0.4em;
 background-color: #fff;
 /* background-color: rgba(9, 107, 173, 0.95); */
 font-size: 14px;
 font-weight: bold;
 color: rgba(9, 107, 173, 0.95);
 transition: 0.3s ease-out;
 /* color: #fff; */
}

.NewsListTit {
 font-size: 16px;
 color: #fff;
 transition: 0.3s ease-out;
}


.SecNews .BtnList {
 position: relative;
 top: 0;
 right: 0;
 display: block;
 width: 200px;
 margin: auto;
 padding: 1.3rem 0;
 color: #333;
 line-height: 1rem;
 text-align: center;
 border: #fff 1px solid;
 background: #fff;
}

.SecNews .BtnList:hover {
 color: #fff;
 background: transparent;
}

.SecNews .BtnList::after {
 display: block;
 content: "";
 position: absolute;
 top: 0;
 bottom: 0;
 right: -10px;
 width: 35px;
 height: 2px;
 margin: auto;
 background: #ccc;
 transform: scaleX(1);
 transform-origin: right;
 transition: 0.2s ease-out;
}

.SecNews .BtnList:hover::after {
 transform: scaleX(0);
 transform-origin: right;
}

@media print,
screen and (max-width: 767.9px) {

 .SecNews dl {
  margin-bottom: 3rem;
 }

 .SecNews .BtnList {
  position: relative;
 }
}

@media print,
screen and (min-width: 768px) {
 .SecNews {
  margin-bottom: 0;
  padding-top: 80px;
  padding-bottom: 80px;
 }

 .NewsList::before {
  content: "";
  position: absolute;
  left: -135%;
  bottom: 0%;
  z-index: -1;
  width: 120%;
  height: 90%;
  background-color: #FFF;
  transform: skewX(15deg);
  transition: 0.3s ease-out;
 }

 .NewsLists {
  gap: 30px 40px;
 }

 .NewsList {
  width: calc((100% - 40px)/2);
  max-width: none;
 }

 .NewsListLink {
  display: flex;
  align-items: center;
  max-width: none;
  padding-bottom: 1rem;
 }

 .NewsListPic {
  width: 100px;
  height: 100px;
  margin: 0;

 }

 .NewsListBody {
  width: calc(100% - 80px - 1rem);

 }

 @media print,
 screen and (min-width: 1024px) {
  .SecNews {
   margin-top: 60px;
   margin-bottom: 0;
  }

  .NewsListLink {
   align-items: flex-end;
  }

  .NewsListPic {
   width: 150px;
   height: 150px;
   margin: 0;

  }

  .NewsListBody {
   width: calc(100% - 150px - 1rem);
  }


  @media (hover:hover) {
   .NewsList:hover::before {
    left: -10%;
   }

   .NewsList:hover .NewsListTime {
    color: #003F7A;
   }

   .NewsList:hover .NewsListTit {
    color: #003F7A;
   }

   .NewsList:hover .NewsListNew {
    background-color: rgba(9, 107, 173, 0.95);
    color: #fff;
   }

   .NewsList:hover .NewsListPic {
    box-shadow: 0px 6px 15px -2px rgb(225 225 225 / 95%);
   }
  }
 }

}

/* ---------------------- */
/*  Section Contact  */
/* ---------------------- */
/* .AreaNewsContact {
 margin-top: 50px;
} */

.SecContact {
 position: relative;
 text-align: center;
 background: #ccc;

}

.SecContact .Heading01 {
 color: #0953ad;
}

.SecContact .Heading01::after {
 display: block;
 content: "";
 height: 11px;
 margin-top: 1rem;
 background: url("images/title_deco_lavender.png") 50% 50% no-repeat;
}

.SecContact .Heading01 span {
 color: #1a1a1a;
}

.SecContact a {
 display: block;
 width: 100%;
 height: 100%;
 position: relative;
 z-index: 10;
}

.SecContact::before {
 display: block;
 content: "";
 width: 100%;
 height: 100%;
 position: absolute;
 top: 0;
 left: 0;
 z-index: 1;
 transform: scaleX(0);
 transform-origin: left;
 background: #fff;
 -webkit-transition: 0.2s ease-out;
 -moz-transition: 0.2s ease-out;
 -ms-transition: 0.2s ease-out;
 transition: 0.2s ease-out;
}

.SecContact:hover::before {
 transform: scaleX(1);
}

.SecContact::after {
 display: block;
 content: "";
 width: 100%;
 height: 100%;
 position: absolute;
 top: 0;
 left: 0;
 z-index: 5;
 background: url(images/home/section_contact_grid.png) 50% 50%;
}

@media print,
screen and (max-width: 767px) {
 .AreaNewsContact>* {
  padding: 40px 2rem 20px;
  letter-spacing: normal;
 }

 .SecContact .Heading01 {
  margin-bottom: 0;
 }

 .SecContact a img {
  transform: scale(0.6);
 }
}


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


 .AreaNewsContact {
  display: -ms-flex-box;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  /* min-height: 400px; */
  letter-spacing: -0.4em;
 }

 .AreaNewsContact>* {
  /* height:100%; */
  letter-spacing: normal;
 }

 .SecContact {
  width: 50%;
  max-width: 480px;
  /* width: 100%; */
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
 }

 /* .SecContact .Heading01 {
  margin-bottom: 2rem;
 } */

 .SecContact a {
  padding: 40px 90px;
 }
}