@charset "utf-8"; /*文字コード指定*/
/* Body */
body {
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro"; /*フォントの種類指定(左から優先順位)*/
	background-color: #f2f2f2;
	margin: 0px;
	font-style: normal;
	font-weight: 300;
}

a {
  text-decoration: none;
}
/* Container */
.container {
	width: 948px; /*幅指定*/
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	background-color: #FFFFFF;
}



/* header */

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

.header p{
    font-size: clamp(10px, 1.6vw, 14px);
    padding-left: 2vw ;
    color: #333;
    font-weight:bold;
}

.header .text {
	font-size:  clamp(11px, 1.8vw, 17px);
    font-family: "corporate-logo-ver2", sans-serif;
    font-weight: 700;
    font-style: normal;
    padding-bottom: 2px;
}

 #logo {
    display: block;     
    width: 120px;
	margin: 0;
	padding: 1.5vw 3vw 0 5vw;	/*ロゴの左側に空ける余白*/
}
 #logo img:hover{
    opacity: 0.7;
    transition: all 0.3s linear;
} 


@media (max-width: 500px) {
    .header p{
        display:none;
    }
}


video {
  width: 100%;
  border-bottom: 30px solid #333;
}


.hero_header {
	color: #FFFFFF;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	letter-spacing: 4px;
}
/* Hero Section */
.hero {
	background-color: #B3B3B3;
	padding-top: 150px;
	padding-bottom: 150px;
    border-bottom: 30px solid #333;
}
.light {
	font-weight: bold;
	color: #717070;
}
.tagline {
	text-align: center;
	color: #FFFFFF;
	margin-top: 4px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* About Section */


.image_container {
    gap: 20px 2%; /* 画像の間に余白を設定 */
    margin-top: 40px;
}
.image_container img {
    width: 32%; /* 画像が3つ並ぶように設定 */
    height: auto;
}

.text_column-01 {
	width: 100%;
	text-align: left;
	padding-top:10px;
    padding-bottom: 30px;
    margin: 0 auto; /* 左右中央寄せ */
}

.text_column-01 p{
    font-size: clamp(11px, 1.5vw, 13px); 
    line-height: 180%;
}




.text_column-02{
    font-size: clamp(11px, 1.5vw, 13px); 
	width: 93%;
	text-align: left;
    margin: 0 auto;
    padding-top: 20px;
}


.text_column-03 {
	wwidth: 50%;
	text-align: center;
	padding-top: 30px;
	float: left;  
}



.text_box {
    font-size: clamp(11px, 1.6vw, 13px); 
	width: 70%;
	text-align: left;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.7em;
    border: solid 1px #ccc;    
}




.about01 {
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 10px;
	display: block;
	margin-top: 0px;
    background-image: url("../images/tools-01.png");
    background-size: 250px auto;
    background-position: 90% 15%;
    background-repeat: no-repeat;
    background-color: rgba(255,255,255,0.4);
    background-blend-mode: lighten;
}


.about02 {
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 10px;
	display: block;;
	margin-top: 0px;
    background-image: url("../images/tools-02.png");
    background-size: 320px auto;
    background-position: 90% 4%;
    background-repeat: no-repeat;
    background-color: rgba(255,255,255,0.4);
    background-blend-mode: lighten;
}

.about03 {
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 10px;
	display: block;;
	margin-top: 0px;
    background-image: url("../images/tools-03.png");
    background-size: 250px auto;
    background-position: 95% 8%;
    background-repeat: no-repeat;
    background-color: rgba(255,255,255,0.4);
    background-blend-mode: lighten;
}


.about04 {
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 10px;
	display: block;;
	margin-top: 0px;
    background-image: url("../images/tools-04.png");
    background-size: 300px auto;
    background-position: 90% 5%;
    background-repeat: no-repeat;
    background-color: rgba(255,255,255,0.4);
    background-blend-mode: lighten;
}
.about05 {
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 10px;
	display: block;;
	margin-top: 0px;
}



/* お問合せ/エントリーボタン*/


a.inquiry_btn {
    font-size:  clamp(14px, 2vw, 20px);
	display: inline-block;
    width: 60%;
    box-sizing: border-box;
    background: #00913A;
    padding: 15px 40px;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
    position: relative;
    color: #fff;
    margin: 10px;
}

a.inquiry_btn:hover {
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: ripple-inquiry 1.5s infinite;
	color: #fff;
}
.inquiry_btn::before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #FFF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}
.inquiry_btn::after{
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #00913A;
    border-bottom: 2px solid #00913A;
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 5px);
    left: 24px;
}

@keyframes ripple-inquiry {
	0% {box-shadow: 0 0 0 0 #00913A;}
	70% {box-shadow: 0 0 0 10px rgb(0 143 58 / 0%);}
	100% {box-shadow: 0 0 0 0 rgb(0 143 58 / 0%);}
}


a.entry_btn {
    font-size:  clamp(14px, 2vw, 20px);
	display: inline-block;
    width: 60%;
    box-sizing: border-box;
    background: #B8D200;
    padding: 15px 40px;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
    position: relative;
    color: #fff;
    margin: 10px;
}
a.entry_btn:hover {
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: ripple-entry 1.5s infinite;
	color: #fff;
}
.entry_btn::before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #FFF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}
.entry_btn::after{
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #B8D200;
    border-bottom: 2px solid #B8D200;
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 5px);
    left: 24px;
}
@keyframes ripple-entry {
	0% {box-shadow: 0 0 0 0 #B8D200;}
	70% {box-shadow: 0 0 0 10px rgb(184 210 0 / 0%);}
	100% {box-shadow: 0 0 0 0 rgb(184 210 0  / 0%);}
}

.contact {
    flex-direction: column;
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 565px) {
    
a.inquiry_btn {
    width: 90%;
    line-height: 20px;
    }    
a.entry_btn {
    width: 90%;
    line-height: 20px;
    }
.contact {
    flex-direction: column;
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
}




@media (max-width: 500px) {
  
.about01 {
     background-size: 200px auto;
     background-position: 90% 19%;
    }
    
}
.senior_box {
    display:flex;
    justify-content: space-between;
    flex-direction: row;
    width: 90%;
    height:auto;
    margin: auto;
}


.senior_box h3 {
     font-size: 20px;
     font-weight: bold;
     margin: 0;
}

.senior_box img {
    max-width: 40%;
    height:auto;
    margin-top: 20px;
}


.bxtxt {
    width: 50%;
    padding: 1em 1em;
    margin: 0;
    color: #232323;
    background: #f5f5f5;
    border-left: solid 10px #00913A;
}


.bxtxt  .lb {
    font-size: 1.0rem;
    letter-spacing: .03em;
    font-weight: bold;
    color: #B8D200;
    border: 1px solid #B8D200;
    padding: 2px 8px 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.qa {
    font-weight: bold;
    font-size: 1.2em; 
    margin-bottom: 0;
} 
.qa  span {
  color: #B8D200;
  font-weight: bold;
  font-size: 1.5em;
}
        

@media (max-width: 500px) {
  .senior_box {
      display: flex;
      flex-direction: column;
      align-items: center; /* 中央揃え */
      width: 100%;
  }

  .senior_box img {
      max-width: 70%;
      height: auto;
      margin: 0 auto; /* 画像を中央寄せ */
  }

  .bxtxt {
      width: 90%; /* テキストの幅も調整 */
      text-align: left; /* 文章を左寄せ */
      padding-left: 10%;
  }

}





/* entry */

.flex-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
hr.style-one {
    height: 1px;
	background-color: #ccc;
    border: none ;
}
hr.style-two {
    height: 10px;
	background-color: #B8D200;
    border: none ;
}
       
.flex-item {
    background-color: #F5F5F5;
    width: 90%;
    margin: 10px;
    padding: 20px
}
.flex-item h1{
    margin: 5px;
    font-weight: bold;
    color: #333;
    font-size: 20px;
    
    }
    
.flex-item h4{
    margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
    color: #B8D200;
    font-size: 15px;
    
    }
   
.flex-item p{    
    color: #333;
    font-size: clamp(10px, 1.1vw, 13px); 
    line-height: 20px;
    }


.flex-item02 {
    background-color: #F5F5F5;
    width: 24%;
    margin: 10px;
    padding: 20px
}



.flex-item02 h4{
    margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
    color: #B8D200;
    font-size: 18px;
    text-align: center;
    }


.img-box{
    text-align: center;
}



.flex-item02 img{
    width: 30%;
    margin: 5%;
}


.flex-item02 .photo01{
    width: 100%; 
    height: auto;
    margin: 0%;
    text-align: center;
}

.normal-list {
    display: block !important;
    width: 100% !important;
    color: #333;
    font-size: clamp(10px, 1.1vw, 13px); 
    line-height: 20px;
    margin-left: -20px;
}

.normal-list li {
    display: list-item !important;
    list-style: disc !important;
}




/* @media (max-width: 900px) {  
.flex-item {
  width: 38%;
    } }   */    
    
@media (max-width: 700px) {  
.flex-item {
  width: 90%;
    } 
}  

 @media (max-width: 800px) {     
.flex-item02 {
    background-color: #F5F5F5;
    width: 38%;
    margin: 10px;
    padding: 20px
}    
}
 @media (max-width: 565px) {     
.flex-item02 {
    background-color: #F5F5F5;
    width: 90%;
    margin: 10px;
    padding: 20px
}    
}

/* Parallax Section */
.banner {
	background-color: #FFF;
	background-image: url(../images/background-building.jpg);
    height: 250px;
    margin-top: 30px;
	background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.parallax {
    color: #FFF;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    font-weight: bold;
    text-align: right;
	padding-right: 100px;
	padding-top: 55px;
	letter-spacing: 2px;
	margin-top: 0px;
    font-size: 40px;
}

.parallax_description {
	color: #FFF;
	text-align: right;
	padding-right: 100px;
	width: 30%;
	float: right;
	font-weight: lighter;
	line-height: 25px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    font-size: 18px;
}
/* More_info */
footer {
	background-color: #FFF;
	padding-bottom: 35px;
    padding-top: 20px;
}
.footer_column {
	width: 50%;
	text-align: center;
	padding-top: 30px;
	float: left;
}



footer .footer_column p {
    font-size:  clamp(12px, 1.5vw, 14px);
    line-height: 25px;
    text-align: center;
}  

.button {
	width: 80%;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 10px;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	border: 2px solid #000;
	color: #000;
	transition: all 0.3s linear;
}

.button a {
    text-decoration: none;
}

.button:hover {
	background-color: #333;
	color: #B8D200;
	cursor: pointer;
}
.lower {
    font-size: 12px;
}


.flexbox {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 30px 20px 30px;
  background: #B8D200;
}
.flexbox img{
    width: 150px;
    height: auto;
    display: inline-block;

}
.flexbox .text {
	font-size:  clamp(13px, 1.8vw, 17px);
    font-family: "corporate-logo-ver2", sans-serif;
    font-weight: 700;
    font-style: normal;
    display: inline-block;
    vertical-align: bottom;
    margin-left: 20px;
}
.flexbox .address{
    font-size:  clamp(10px, 1.4vw, 12px);
    line-height: 1.5em;
}
.flexbox__item {
  padding: 0px;
  margin-left: 20px;
  flex-grow: 1;
  flex-basis: 300px;
  box-sizing: border-box;
}
.flexbox__content {
  width: 100%;
  flex-grow: 1;
  flex-basis: 300px;
  box-sizing: border-box;
}


.copyright {
    font-size: x-small;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #333;
	color: #FFFFFF;
	letter-spacing: 2px;
	border-top-width: 2px;
}


.footer_banner {
	background-color: #B8D200;
	padding-top: 20px;
	padding-bottom: 40PX;
    margin-top: 10px;
	margin-bottom: 0px;
}
footer {
	display: inline-block;
}
.hidden {
	display: none;
}

/* Mobile */
@media (max-width: 320px) {
    

/* Container */
.container {
	width: 100%; /*幅指定*/
}
    
/* About Section */  
    
.image_container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}
.image_container img {
    width: 90%; /* 画像が3つ並ぶように設定 */
    height: auto;
    margin: 0 auto;
    }   
    
.text_column-01 {
	width: 100%;
	text-align: center;
	padding-top: 10px;
    padding-bottom: 30px;
}
.text_column-02{
	width: 95%;
	text-align: left;
	padding-top: 30px;

}
.text_column-03 {
	wwidth: 50%;
	text-align: center;
	padding-top: 30px;
	float: left;
}    
.text_box {
	width: 85%;
	text-align: left;

}
.entry {    
    flex-direction: column;
}
    
 
.thumbnail {
	width: 100%;
}  
 
.parallax {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 40px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
    font-weight: bold;
	font-size: 20px;
}
.parallax_description {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 90%;
	margin-top: 25px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	float: none;
	text-align: center;
    font-size: 15px;
}
.banner {
	background-color: #FFF;
	background-image: url(../images/background-building.jpg);
    height: 200px;
	background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.tagline {
	margin-top: 20px;
	line-height: 22px;
}
.hero_header {
	padding-left: 10px;
	padding-right: 10px;
	line-height: 22px;
	text-align: center;
}
 
.footer_column {
	width: 100%;
	text-align: center;
	padding-top: 30px;
}

}

/* Small Tablets */
@media (min-width: 321px)and (max-width: 767px) {
    

/* Container */
.container {
	width: 100%; /*幅指定*/
}    

/* About Section */    
.text_column-01 {
	width: 100%;
	text-align: left;
	padding-top: 10px;
    padding-bottom: 30px;
}
.text_column-02{
	width: 90%;
	text-align:  left;
}
.text_column-03 {
	wwidth: 50%;
	text-align: center;
	padding-top: 30px;
	float: left;
}

.entry {    
    flex-wrap: wrap;
}


    
.banner {
    margin-top: 20px;
}  
.parallax {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
    font-weight: bold;
	font-size: 25px;
}
.parallax_description {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 25px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	float: none;
	width: 100%;
	text-align: center;
}

.banner {
	padding-left: 20px;
	padding-right: 20px;
}
    

}



@media (min-width: 321px)and (max-width: 499px) {
.image_container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}
.image_container img {
    width: 70%; /* 画像が3つ並ぶように設定 */
    height: auto;
    margin: 0 auto;
    }
.footer_column {
	width: 100%;
	text-align: center;
	padding-top: 30px;
}

.text_box {
	width: 80%;
	text-align: left;

}
}


/* Small Desktops */
@media (min-width: 768px) and (max-width: 948px) {
.text_column {
	width: 100%;
}
      
/* Container */
.container {
	width: 90%; /*幅指定*/
} 





  
}

/* パンクズリストの設定 */
.breadcrumb-004 {
    display: flex;
    gap: 0 20px;
    list-style: none;
    padding: 3px 0 3px 9px;
    border-radius: 0px;
    overflow: hidden;
    background-color: #B8D200;
    font-size: .7em;
}

.breadcrumb-004 li {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 20px;
}

.breadcrumb-004 li:first-child a::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 4px;
    margin-bottom: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    vertical-align: text-bottom;
    content: '';
}

.breadcrumb-004 li:not(:last-child)::before,
.breadcrumb-004 li:not(:last-child)::after{
    position: absolute;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    content:'';
}

.breadcrumb-004 li:not(:last-child)::before{
    right: 0;
    border-left: 10px solid #fff;
}

.breadcrumb-004 li:not(:last-child)::after{
    right: 2px;
    border-left: 10px solid #B8D200;
}

.breadcrumb-004 a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-004 a:hover {
    color: #333;
}


/* ページトップへ戻るボタン */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: #00913A;
  text-decoration: none;
  color: #fff;
  width: 50px;
  padding: 23px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}


