@charset "UTF-8";
/*------------------------
  ブレイクポイント
------------------------*/
/*------------------------
  カラー
------------------------*/
:root{
	--color-main: #1f6f78;
	--color-sub: #0f2d3a;
	--color-white: #ffffff;
	--color-bg1: #dff1f2;
	--color-bg2: #c8d0d1;
}




/*------------------------
  共通項目
------------------------*/
.image-guard img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
}

@media screen and (min-width: 961px) {
  .pc-none {
	  display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .sp-none {
	  display: none;
  }
}
ul {
	padding: 0px;
	margin: 0;
	list-style: none;
}
ul.indent li {
	text-indent: -0.6em;
	padding-left: 0.6em;
}
ul.indent2 li {
	text-indent: -1em;
	padding-left: 1em;
}

#wrap {
	width: 100%;
	animation: fadein 2s forwards;
	line-height: 1.8;
  /*padding: 1000px 0px;*/
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

a {
  text-decoration: none;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  color: none;
	/*cursor: url("../images/cursor.svg"), pointer;*/
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:visited {
  color: #000;
}

.header .gnav li:not(:last-child):after {
  z-index: 0 !important;
}

img{
	width: 100%;
	height: auto;
}
.serif{
	font-family: "Oswald", sans-serif;
}
.wrap {
  animation: fadein 1.5s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*------------------------
  ヘッダー
------------------------*/

/*----------ハンバーガーアイコン----------*/
@media screen and (max-width: 960px) {
	.hambover{
		width: 60px;
		height: 60px;
		/*background: #fff;*/
		border-radius: 0 0 0 20px;
		padding-top: 15px;
	}
  .hamburger {
    position: absolute;
    display: block;
    width: 30px;
    height: 25px;
    z-index: 99999;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
  }

  .hamburger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    
    margin: 0 auto;
  }
	.head-v1 .hamburger span{
		background-color: #fff;
	}
	.head-v1.-v2 .hamburger span{
		background-color: #fff;
	}

  .hamburger span:nth-of-type(1) {
    top: 0;
    webkit-animation: menu-ber01 .75s forwards;
    animation: menu-ber01 .75s forwards;
  }

  .hamburger span:nth-of-type(2) {
    top: 11px;
    transition: all .25s .25s;
    opacity: 1;
  }

  .hamburger span:nth-of-type(3) {
    bottom: 0;
    -webkit-animation: menu-ber02 .75s forwards;
    animation: menu-ber02 .75s forwards;
  }

  .active span:nth-of-type(1) {
    -webkit-animation: active-menu-ber01 .75s forwards;
    animation: active-menu-ber01 .75s forwards;
  }

  .active span:nth-of-type(2) {
    opacity: 0;
  }

  .active span:nth-of-type(3) {
    -webkit-animation: active-menu-ber03 .75s forwards;
    animation: active-menu-ber03 .75s forwards;
  }

  @-webkit-keyframes menu-ber01 {
    0% {
      -webkit-transform: translateY(8px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-ber01 {
    0% {
      transform: translateY(10px) rotate(45deg);
    }
    50% {
      transform: translateY(10px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes menu-ber02 {
    0% {
      -webkit-transform: translateY(-13px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-13px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-ber02 {
    0% {
      transform: translateY(-13px) rotate(-45deg);
    }
    50% {
      transform: translateY(-13px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes active-menu-ber01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(10px) rotate(45deg);
    }
  }
  @keyframes active-menu-ber01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(10px) rotate(0);
    }
    100% {
      transform: translateY(10px) rotate(45deg);
    }
  }
  @-webkit-keyframes active-menu-ber03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-13px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-13px) rotate(-45deg);
    }
  }
  @keyframes active-menu-ber03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-13px) rotate(0);
    }
    100% {
      transform: translateY(-13px) rotate(-45deg);
    }
  }
}
.navArea {
    width: 100%;
    position: fixed;
    z-index: 999;
	top: 0;
	padding-top: 2%;
}
header.head-v1 {
	width: 90%;
	margin: 0 auto;
	/*padding: 15px 20px;*/
	transition: 0.6s all;
	background: rgba(31,111,120,0.8);
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	color: #fff;
	border-radius: 30px;
}
header.head-v1.-v2 {
	width: 100%;
	/*padding: 15px 20px;*/
	transition: 0.6s all;
	background: #000;
	border-top: 5px solid #fff;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
}

.menu{
	display: flex;
	align-items: center;
}

ul.menu-sub{
	display: flex;
}
li.menu-box{
	display: inline-block;
	background: #8E8E8E;
	font-size: 14px;
	line-height: 1;
}
li.menu-box:last-child{
	background: #4D4D4D;
}
li.menu-box a{
	width: 120px;
	padding: 36px 0px;
	text-align: center;
	color: #fff;
	display: block;
}
.flow-txt{
	padding: 30px 0px;
}
.area-img{
	padding-bottom: 30px;
	text-align: center;
}
.area-img img{
	width: 100%;
}

.navscr{
	background: rgba(87,196,241,0.8);
}

@media screen and (min-width: 961px) {
  header.head-v1 .head-area {
    width: 100%;
    /*max-width: 1200px;*/
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
	header.head-v1 h1{
		padding: 15px 20px;
	}
  header.head-v1 h1 img {
    width: 80%;
    max-width: 200px;
  }
  header.head-v1 nav.menu ul.main-menu {
    text-align: center;
	  padding-right: 10px;
  }
  header.head-v1 nav.menu ul.main-menu li.menu-item {
    display: inline-block;
    padding: 0px 10px;
    font-size: 1.5rem;
  }
  header.head-v1 nav.menu ul.main-menu li.menu-item a {
    color: #fff;
    position: relative;
    display: inline-block;
    padding: 0px 5px;
  }
  header.head-v1.-v2 nav.menu ul.main-menu li.menu-item a {
    color: #fff;
    position: relative;
    display: inline-block;
    padding: 0px 5px;
  }
  header.head-v1 nav.menu ul.main-menu li.menu-item a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }
  header.head-v1 nav.menu ul.main-menu li.menu-item a:hover::after {
    transform: scale(1, 1);
  }
  header.head-v1 nav.menu ul.main-menu li.menu-item ul.dl-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 20px;
    left: 0;
    width: 200px;
    background: #000;
    /* メガメニューの背景色 */
    color: #fff !important;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
  }
	
  header.head-v1 nav.menu ul.main-menu li.menu-item ul.dl-menu li {
    text-align: left;
    margin-bottom: 20px;
  }
  header.head-v1 nav.menu ul.main-menu li.menu-item ul.dl-menu li:last-child {
    margin-bottom: 0px;
  }
  header.head-v1 nav.menu ul.main-menu li.menu-item ul.dl-menu li a {
    color: #fff;
  }
  header.head-v1 nav.menu ul.main-menu li.menu-item:hover ul.dl-menu {
    top: 30px;
    visibility: visible;
    opacity: 1;
  }
	
}
@media screen and (max-width: 960px) {
  header.head-v1 .head-area {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	  justify-content: space-between;
  }
	.head-area h1{
		padding: 10px;
	}
  header.head-v1 h1 img {
    width: 100px;
  }
  header.head-v1 .nav-header {
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99998;
  }
  header.head-v1 .nav-header #sp-logo {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 20px;
  }
  header.head-v1 .nav-header nav.menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    padding: 0 12%;
    box-sizing: border-box;
    overflow: hidden;
    clear: both;
    line-height: 1;
  }
  header.head-v1 .nav-header nav.menu ul li.menu-item {
    padding-bottom: 5px;
  }
  header.head-v1 .nav-header nav.menu ul li a {
    background: #1f6f78;
    display: block;
    padding: 20px;
    color: #fff;
  }
  header.head-v1 .nav-header nav.menu ul li .dl-menu .dl-list a {
    background: #333;
    border-bottom: 1px solid #444;
  }
  header.head-v1 .nav-header nav.menu ul li .dl-menu .dl-list a::before {
    content: "―";
    padding-right: 5px;
  }
}



header.head-v1.navFix {
  position: fixed;
  top: 0;
  z-index: 999;
	background: #fff;
}
header.head-v1.-v2.navFix {
  position: fixed;
  top: 0;
  z-index: 999;
	background: #000;
}
@media screen and (max-width: 960px) {
  header.head-v1 {
    padding: 0px;
  }
	.second-page header.head-v1{
		background: rgba(87,196,241,0.8);
	}
}
@media screen and (max-width: 960px) {
  header.head-v1 .nav-header {
    background-color: rgba(0,0,0,0.6);
  }
	.menu{
		display: block;
	}
	ul.menu-sub{
		justify-content: space-between;
	}
	ul.menu-sub li{
		width: 100%;
	}
	li.menu-box a{
		width: 100%;
	}
}
nav.menu li.dl-list a {
  color: #fff;
}

footer.tf-over{
	width: 100%;
	background-image: url("../images/top/footer-bg.png");
	background-position: center bottom;
	background-size: 100%;
	background-color: #57C4F1;
	background-repeat: no-repeat;
	padding: 100px 0px 50% 0px;
}



/*------------------------
  MOVIE
------------------------*/
.wrap{
	position: relative;
}
.top-main {
  position: relative;
}

/* video */

.mainvisual {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.video {
  position: absolute;
  top: 50%;
  left: 50%;
	max-width: inherit;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* overlay */

.overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
}

/* text */

.text-box {
  position: absolute;
  top: 80%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.text-box p {
	font-family: serif;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 50px;
  color: #fff;
	font-size: 2rem;
}


/*------------------------
  TOP
------------------------*/
.wrap{
	width: 100%;
	background: #f5f5f5;
}
.para-inner{
	display: flex;
	height: 100%;
	min-height: 100vh;
	justify-content: center;
	/*align-items: center;*/
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

.para-in-con{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0px 300px 0px;
}

.para-in-con h2{
	text-align: left;
	font-weight: 700;
	font-size: 100px;
	margin-bottom: 2rem;
	color: var(--color-sub);
}

#news,
#about{
	background: #fff;
	border-radius: 100px 100px 0px 0px;
}
#service,
#contact{
	background: var(--color-bg1);
	border-radius: 100px 100px 0px 0px;
}
/*.para-over1{
	background: #f5f5f5;
}
.para-over2{
	background: #fff;
}*/
.js-scroll-overlap:not(.is-disabled) {
  --sticky-offset: -1px;
  position: sticky;
  top: var(--sticky-offset);
}
.relative {
  position: relative;
}

.news-area{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
	gap: 5%;
}
.news-area dl dt{
	overflow: hidden;
	line-height: 0;
	margin-bottom: 10px;
}
.news-area dl dt a img{
	transition: all .4s ease;
}
.news-area dl dt a img:hover{
	transform: scale(1.2, 1.2);
    transition: all .4s ease;
    filter: brightness(0.5);
}
.news-area dl dd p.news-day{}
.news-area dl dd p.news-ttl{
	font-size: 1.3rem;
	font-weight: bold;
}


.service-con{
	padding-bottom: 100px;
}
.service-con h3{
	font-size: 1.8rem;
	font-weight: bold;
	border-left: 5px solid #000;
	padding: 5px 0px 5px 1rem;
	margin-bottom: 1rem;
}
.service-txt{
	font-size: 1.4rem;
	line-height: 2.5rem;
}
.service-txt span{
	color: #FF774D;
	font-weight: bold;
}
.card-in{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
	gap: 5%;
}
.card-con{}
.card-con a{
	display: block;
	color: #000;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	border-radius: 30px;
}
.card-con a:hover{
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
}
.card-img{
	line-height: 0;
}
.card-img img{
	border-radius: 30px 30px 0 0;
}
.card-cover{
	padding: 20px;
	border-radius: 0 0 30px 30px;
}
#service .card-cover{
	background: #fff;
}
#about .card-cover{
	background: #f5f5f5;
}
.card-ttl{
	font-size: 1.5rem;
	font-weight: bold;
	padding-bottom: 5px;
}
.card-txt{}


.con-in{
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.con-box{
	width: 48%;
	text-align: center;
	background: #D9D9D9;
	padding: 30px 0px;
}
p.conbox-ttl{
	font-weight: bold;
	font-size: 20px;
}
p.conbox-tel{
	font-weight: 900;
	font-size: 40px;
	padding: 30px 0px;
}
p.conbox-btn a{
	width: 80%;
	display: inline-block;
	background: #1f6f78;
	color: #fff;
	text-decoration: none;
	font-size: 25px;
	font-weight: 900;
	padding: 20px;
	border-radius: 50px;
	margin-top: 40px;
}
p.conbox-btn a:hover{
	background: #0f2d3a;
}

footer{
	background: var(--color-main);
	color: #fff;
	width: 100%;
	border-radius: 100px 100px 0 0;
	padding: 100px 0px 50px 0px;
}
p.copy{
	text-align: center;
}

.foot-inner{
	width: 90%;
	max-width: 1500px;
	margin: 0 auto;
	display: flex;
	padding-bottom: 100px;
}
.f-logo{
	margin-right: 10%;
}
.foot-con{
	margin-right: 10%;
}
.foot-con ul{
	border-left: 2px solid #fff;
	padding-left: 20px;	
}
.foot-con ul li{
	font-size: 20px;
	padding: 10px 0px;
}
.foot-con ul li a{
	color: #fff;
}

.fnav-in{
	display: flex;
    flex-wrap: wrap;
    column-gap: 2%;
    row-gap: 10px;
    width: 50%;
    justify-content: space-between;
}
.fnav-ttl{
	margin-bottom: 10px;
	color: #fff;
	font-weight: bold;
	font-size: 25px;
}
.fnav-ttl a{
	color: #fff;
}
.fnav-rep li{
	margin-bottom: 10px;
	color: #fff;
}

.fnav-rep li a{
	color: #fff;
}
.fnav-rep li a:hover{
	color: #dff1f2;
}

/*------------------------
  下層ページ
------------------------*/
.under-contents{
	width: 100%;
	background-image: linear-gradient(0deg, #f5f5f5, #ffffff);
}

.inner-con{
	width: 90%;
	min-height: 80vh;
	max-width: 1000px;
	margin: 0 auto;
	padding: 50px 0px 100px 0px;
}
.page-ttl{
    padding: 150px 0px;
    text-align: center;
	background-image: url(/common/images/under-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-ttl h2{
    font-size: 60px;
	color: #fff;
	text-shadow: 0px 1px 16px rgba(0, 0, 0, 0.6);
}

.service-lead{
	text-align: center;
	padding-bottom: 50px;
}
.service-lead h3{
	font-size: 40px;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
    padding-bottom: 10px;
}

.service-lead h3:before {
	position: absolute;
	bottom: -10px;
	left: calc(50% - 30px);
	width: 60px;
	height: 5px;
	content: '';
	border-radius: 3px;
	background: #000;
}



.service-rep{
	padding-bottom: 50px;
	margin-bottom: 50px;
	border-bottom: 1px solid #c8d0d1;
}
.service-rep h4{
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 20px;
}
.service-rep h4:first-letter{
	font-size: 50px;
	color: var(--color-main);
}
.service-rep dl{
	background: #f5f6f7;
	padding: 20px;
	margin-bottom: 30px;
}
.service-rep dl dt{
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #999;
}
.service-rep table{
	margin-bottom: 30px;
}

.service-about h4{
	padding-top: 50px;
	font-size: 40px;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
    padding-bottom: 10px;
}

.service-about h4:before {
	position: absolute;
	bottom: -10px;
	left: calc(50% - 30px);
	width: 60px;
	height: 5px;
	content: '';
	border-radius: 3px;
	background: #000;
}


.service-about dl{
	display: flex;
	justify-content: space-between;
	padding: 0px 0px 30px 0px;
	border-bottom: 1px solid #c8d0d1;
	margin-bottom: 30px;
}
.service-about dl dt{
	width: 20%;
	font-weight: bold;
}
.service-about dl dd{
	width: 78%;
}

.service-img{
	text-align: center;
}
.service-img img{
	width: 50%;
}


#outline.inner-con table td,
#outline.inner-con table th{
	padding: 30px;
}


.message{
	text-align: center;
	font-size: 20px;
	line-height: 2;
}
.message p{
	padding-bottom: 2rem;
}
.message p:last-child{
	padding-bottom: 0;
}
p.messe-last{
	font-weight: bold;
	padding-top: 30px;
}


.faq dl{
	margin-bottom: 30px;
}

.faq dl dt{
	padding:30px 42px 30px 30px;
	position:relative;
	cursor:pointer;
	border:solid 1px #E0E0E0;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	font-weight: bold;
}

.faq dl dt:hover{
	border: solid 1px #1f6f78;
}

.faq dl dt::after{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 4px solid #1f6f78;
	border-right: 4px solid #1f6f78;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	position: absolute;
	right: 22px;
	top: 50%;
	margin-top: -5px;
	transition-property: all;
	transition-duration: .3s;
	transition-timing-function: ease-out;
	transition-delay: .1s;
}

.faq dl dt.select::after{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.faq dl dd{
	padding:30px;
	display:none;
	border:solid 1px #E0E0E0;
}

.cs{
	min-height: 80vh;
	text-align: center;
	font-weight: bold;
	font-size: 50px;
}

/*------------------------
  アニメーション等
------------------------*/

.delayScroll li.menu-item {
  opacity: 0;
}

.blur {
  animation-name: blurAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  width: 60px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}

/*リンクを右下に固定*/
p#page-top {
  position: fixed;
  right: 30px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(210px);
}
@media screen and (max-width: 799px) {
	#page-top a {
		width: 30px;
	}
	p#page-top {
		right: 10px;
	}
}
/*　上に上がる動き　*/
p#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(210px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
p#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(210px);
  }
}

@media screen and (max-width: 540px) {
	#news, #about, #service, #contact{
		border-radius: 30px 30px 0 0;
	}
	.para-in-con{
		padding: 50px 0px 100px 0px;
	}
	.para-in-con h2{
		font-size: 50px;
	}
	.news-area{
		grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
	}
	.news-area dl dd p.news-day{
		font-size: .7rem;
	}
	.news-area dl dd p.news-ttl{
		font-size: 1rem;
	}
	.service-txt{
		font-size: 16px;
		line-height: 2;
	}
	.about-in, .service-in{
		display: block;
	}
	.about-in dl, .service-in dl{
		margin-bottom: 20px;
	}
	.con-in{
		display: block;
	}
	.con-box{
		width: 100%;
		margin-bottom: 30px;
	}
	.card-in{
		display: block;
	}
	.card-con{
		padding-bottom: 30px;
	}
	footer{
		border-radius: 30px 30px 0 0;
		padding-top: 50px;
	}
	/*.foot-inner{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}*/
	.foot-inner{
		display: inherit;
	}
	.fnav-in{
		width: 100%;
	}
	.f-logo{
		grid-column: 1 / 4;
		text-align: center;
		margin: 0;
		padding-bottom: 50px;
	}
	.f-logo img{
		width: 50%;
		
	}
	header.head-v1{
		border-radius: 10px;
	}
	.fnav-rep:nth-child(2n+1) {
		width: 50%;
	}
	.fnav-rep:nth-child(2n){
		width: 40%;
	}
	.page-ttl{
		padding: 80px 0px;
	}
	.page-ttl h2{
		font-size: 40px;
	}
	#outline.inner-con table td, #outline.inner-con table th{
		padding: 20px;
	}
	.service-lead h3{
		font-size: 30px;
	}
	.message{
		text-align: left;
		font-size: 16px;
	}
	.cs{
		min-height: inherit;
		font-size: 30px;
	}
	.inner-con{
		min-height: 50vh;
	}
	.service-rep h4{
		font-size: 26px;
	}
	.service-rep h4:first-letter{
		font-size: 40px;
	}
	.service-about h4{
		font-size: 30px;
	}
	.text-box{
		top: 80%;
		left: 45%;
	}
	.text-box p{
		font-size: 12px;
	}
	p.conbox-btn a{
		font-size: 1rem;
	}
	.mainvisual{
		position: inherit;
		overflow: inherit;
		height: inherit;
	}
	.video{
		width: 100%;
		top: 0;
		left: 0;
		position: inherit;
		max-width: inherit;
		min-width: inherit;
		min-height: inherit;
		transform: none;
	}
	.overlay::after{
		height: 98%;
	}
}
