@charset "utf-8";
/* CSS Document */

@media (min-width: 768px) {

  body {
    margin: 0;
    padding: 0;
	background-image: url('../img/background.jpg'); /* ここに背景画像のパスを入力 */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }

  .container {
    position: relative;
    width: 100%;
  }
  
  .hamburger {
	display: none;
}

  .menu {
	position: fixed;
	width: 186px;
	top: 0px;
	left: 40px;
	background-color: rgba(256, 256, 256, 0.9); /* メニューの背景色（半透明） */
	color: #666;
	padding: 20px;
	z-index: 2; /* メニューが背景よりも上に表示されるように */
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* ぼかし影の設定 */
	border-radius: 0px 0px 113px 113px;
  }

  .menu ul {
	list-style: none;
	padding: 0;
	margin-top: 50px;
  }

  .menu ul li {
    margin-bottom: 24px;
  }

  .menu ul li a {
	color: #666;
	text-decoration: none;
	font-size: 120%;
	display: block;
	line-height: 100%;
	transition: transform 0.3s ease; /* アニメーションの変化を滑らかにする */
  }
  
  .menu ul li a:hover {
        transform: scale(1.05); /* マウスオーバー時に少し拡大する */
    }
  
  .menu_logo{
	margin-top: 50px;
}

.top_pix{
	position: relative;
    display: inline-block;
	height: 100vh;
	width: 100%;
	z-index: 1;
}

.top_pix img{
	width: 100%;
	height: 100vh;
	object-fit: cover;
}


.message {
    position: absolute;
    bottom: 100px; /* 下からの位置（ピクセル単位で調整） */
    right: 40px; /* 右からの位置（ピクセル単位で調整） */
    font-size: 200%; /* 文字サイズ（ピクセル単位で調整） */
    color: black; /* 文字の色 */
    padding: 30px; /* テキストの周囲の余白（ピクセル単位で調整） */
    background-color: rgba(255, 255, 255, 0.8); /* 背景色（RGBA形式で透明度を指定） */
    border-radius: 20px; /* ボックスの角の丸み（ピクセル単位で調整） */
  }
  
.shift_right{
	margin-left: 266px; /* 左側の余白 */
    overflow-x: hidden; /* 横スクロールを禁止 */
}

.box{
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 107px;
	margin-bottom: 107px;
}

.box_all{
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 57px;
	margin-bottom: 107px;
}

.Content{
	background-color: #FFF;
	width: 100%;
	border-radius: 30px;
	font-size: 110%;
	padding-top: 55px;
	padding-bottom: 55px;
}

.Content_all{
	background-color: #FFF;
	width: 100%;
	border-radius: 30px;
	font-size: 110%;
	padding-bottom: 55px;
}

.top_text{
	font-size: 180%;
	padding-top: 58px;
}

.top_img{
	width: 100%;
	margin-bottom: 61px;
	}
	
.top_img img{
	width: 100%;
	border-radius: 30px 30px 0px 0px;
	}	

/* news */
.news {
	display: flex;
	flex-wrap: wrap;
	padding: 70px;
}


/* 各item */
.item {
  flex: 0 0 calc(30% - 40px); /* 各列の幅を計算し、マージンを考慮する */
  margin: 20px; /* 要素間のマージン */
  border: 2px solid skyblue; /* 水色の線 */
  border-radius: 10px; /* 角丸 */
  padding: 10px; /* 内側の余白 */
}

.item img{
	width: 100%;
}

/*時事内容 */
.kiji {
  font-size: 16px;
  line-height: 1.5;
  min-height: 100px; /* 最小の高さ */
}

/* date と iconを横並びに */
.date,
.icon {
  display: inline-block;
  vertical-align: top; /* 上揃えにする */
}


.image{
	margin-bottom: 58px;
	margin-top: 58px;
}

.image img{
	width: 100%;
}
  
  
  
/* ボタンのスタイル */
    .button {
		font-size: 120%;
        display: inline-block;
        padding: 10px 50px;
        border-radius: 30px; /* 角丸 */
        background-color: #99BF39; /* 初期の色 */
        color: #fff; /* 文字色 */
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease; /* 色とアニメーションの変化を滑らかにする */
    }
    /* マウスオーバー時のスタイル */
    .button:hover {
        background-color: #0056b3; /* マウスオーバー時の色 */
        transform: scale(1.05); /* マウスオーバー時に少し拡大する */
    }

    /* ボタンを親要素に対してセンターに配置 */
    .button-container {
	text-align: center;
	padding: 10px;
    }  

  .footer {
	width: 100%;
	background-color: #F7F7F7;
	padding-top: 33px;
	padding-right: 0;
	padding-bottom: 33px;
	padding-left: 0;
  }
  
  .footer p{
	margin-top: 0px;
	margin-bottom: 0px;
	}
  
  .footer-container{
	margin-left: 40%;
}


/*インスタQRコード*/
.btn_insta{
	display: inline-block;
	margin-left: 20px;
}


.insta {
	display: flex;
	justify-content: space-between; /* 子要素間のスペースを均等にする場合 */
	gap: 20px; /* 子要素間のスペースを固定する場合 */
	width: 320px;
	margin-top: 10px;
        }
        .qr {
	text-align: center;
	font-size: 80%;
        }
		.qr img{
	width: 100%;
			}
  
  
  .heartnet img {
  display: inline-block;
  vertical-align: middle;
}

.heartnet p {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px; /* adjust the margin as needed */
	font-size: 140%;

}

.heartnet,
.btn_contact {
	display: inline-block; /* 要素をインラインブロックとして表示 */
	vertical-align: top; /* 垂直方向に中央揃え */
}

.btn_contact a {
  display: inline-block; /* 要素をインラインブロックとして表示 */
  padding: 10px 50px; /* 余白を指定（上下左右） */
  border: 2px solid #A265A1; /* 境界線の太さと色を指定 */
  border-radius: 30px; /* 角の丸みを指定 */
  text-decoration: none; /* 下線を削除 */
  color: #000; /* テキストの色を指定 */
  font-size: 120%;
}

.btn_contact a:hover {
  background-color: #A265A1; /* ホバー時の背景色を指定 */
  color: #fff; /* ホバー時のテキスト色を指定 */
}

/*下部階層*/
.Widthbasic{
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 32px;
}

.selection{
	width: 100%;
	margin-bottom: 166px;
}

.selection_end{
	width: 100%;
}


/*法人案内*/

.center_title{
	text-align: center;
	}

.blue_linetitle{
	font-size: 140%;
	font-weight: bold;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	color: #1DA3D8;
	border-bottom-color: #1DA3D8;
	line-height: 170%;
	display: inline-block;
	margin-bottom: 26px;
}

.green_linetitle{
	font-size: 140%;
	font-weight: bold;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	color: #99BF39;
	border-bottom-color: #99BF39;
	line-height: 170%;
	display: inline-block;
	margin-bottom: 26px;
}

.pink_linetitle{
	font-size: 140%;
	font-weight: bold;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	color: #CC5D83;
	border-bottom-color: #CC5D83;
	line-height: 170%;
	display: inline-block;
	margin-bottom: 26px;
}

.column {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
.photo {
	flex: 0.4;
	margin-right: 20px;
  }
  
  .photo img{
	width: 100%;
	height: auto;
}
  
  .text {
	flex: 0.6;
	margin-left: 20px;
	line-height: 160%;
	font-weight: normal;
  }  
  
  
  
 /*サービス案内*/
 
 .naiyo {
	display: flex;
	justify-content: space-between; /* 子要素間のスペースを均等にする場合 */
	gap: 20px; /* 子要素間のスペースを固定する場合 */
	width: 800px;
	margin-top: 10px;
	margin-bottom: 20px;
        } 
		
	.jigyo{
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #EBBECE;
	padding-left: 20px;
	width: 65%;
}	

.jigyo li{
	font-weight: normal;
	margin-bottom: 10px;
}

.jigyo_center{
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #EBBECE;
	padding-left: 20px;
	width: 65%;
	margin-right: auto;
	margin-left: auto;
}	


.syumoku{
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #EBBECE;
	padding-left: 20px;
	width: 35%;
}

.syumoku li{
	font-weight: normal;
	margin-bottom: 10px;
}

.two-column {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.two-column li {
  break-inside: avoid;
}


.no-decoration {
  list-style-type: none;
}

.btn_sisetu {
	font-size: 120%;
	display: inline-block;
	border-radius: 30px; /* 角丸 */
	background-color: #CC5D83; /* 初期の色 */
	color: #fff; /* 文字色 */
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.3s ease; /* 色とアニメーションの変化を滑らかにする */
	margin: 5px;
	padding-top: 10px;
	padding-right: 50px;
	padding-bottom: 10px;
	padding-left: 50px;
    }

.btn_sisetu:hover {
	background-color: #FF9900; /* マウスオーバー時の色 */
	transform: scale(1.05); /* マウスオーバー時に少し拡大する */
    }


.sv_photo {
            width: 1000px;
            margin: 0 auto;
            display: flex;
        }
        .sv_photo img {
            width: 32.7%;
            height: auto;
        }
        .sv_photo img:not(:first-child):not(:last-child) {
            margin: 0 10px; /* 中央の画像にのみ左右のマージンを追加 */
        }	
		
		

        .step {
            margin-bottom: 20px;
        }
        .step-number {
            font-size: 150%;
            color: #CC5D83;
            margin-right: 10px;
        }
        .step-title {
            font-size: 115%;
            color: #CC5D83;
        }
        .step-description {
            font-size: 16px;
            margin-top: 5px;
        }	
		
		
		
		.sv2_photo {
            width: 1000px;
            margin: 0 auto;
            display: flex;
        }
        .sv2_photo img {
            width: 49%;
            height: auto;
        }
        .sv2_photo img:first-child {
	margin: 0 20px 0 0 ;
        }
		
		
/*施設案内*/

.sisetu_img{
	width: 1000px;
	margin-bottom: 50px;
}

.sisetu_img img{
	height: auto;
	width: 100%;
}

.jigyousho{
            color: #DD960F;
        }
		
		.jigyousho p{
	margin: 0px;
}
		
		.jigyousho h2{
	font-size: 350%;
	margin: 0px;
	font-weight: normal;
        }
        .info {
            margin-top: 20px;
        }
        .info div {
            margin: 4px 0;
        }
        .contact-info {
            display: flex;
            justify-content: space-between;
            max-width: 400px;
            margin: 20px auto;
        }
        .contact-info div {
            text-align: center;
        }
        .images {
	display: flex;
	justify-content: space-around;
	margin-top: 20px;
	font-weight: normal;
        }
        .image-container {
            text-align: center;
            width: 48%;
        }
        .images img {
            width: 100%;
            border-radius: 10px;
        }
        .map {
	text-align: center;
	margin-top: 20px;
        }
        .map div {
	border: 1px solid #999;
	padding: 10px;
	color: grey;
        }
        .highlight {
            display: inline-block;
            background: #DD960F;
            color: white;
            padding: 5px 10px;
            		border-radius: 10px;
        }	


.sma{
    display: none;
}
		
		
}