<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
/****#e51373****ピンク*/
/****#29d0cd****水色*/
/****#a32884***紫*/
/****#3aa1dc***青*/
/****#ffff00***黄色*/
br.sp {
  display: none;
}
br.pc {
  display: block;
}
html { }
body {
  
  color: #202020;
  overflow-x: hidden !important; /* 水平方向のオーバーフローを非表示にする */
  position: relative; /* 親要素が基準になるように */
  padding: 0; /* 不要なパディングを取り除く */
 margin: 0;	
}

/*スライド*/
.appear {
  opacity: 0;
}
a:hover {}
ul {
  padding: 0;
}
li {
  list-style: none;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

/***********/

.haruko_title {
	
  
	text-align: center;
background-color: #63b6d0;
	padding: 3rem;
	margin-bottom: 1rem;
}
.haruko_title h1{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 4rem;
	color: #fff;
	font-weight:bold;
}
.haruko_title a{
 display: flex;
	justify-content: center;
	align-items: center;
}

p.dayp{
	margin: 1rem auto 0;
	font-size: 2.5rem;
	font-weight: bold;
	color: #63b6d0;
	padding: 1rem 0 ;
	background-color: #fff;
	max-width:1000px;
	border-radius: 20px;
	
}
.dayp span{
	font-size: 3.5rem;
	
}
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
	
}
.tov img:hover{
opacity: 0.7;	
}

/*その他と主な共通部分は省略*/

a.b-flat {
width: 50%;
	height:auto;
  overflow: hidden;
  padding: 1.5rem 6rem;
  color: #fff;
  border-radius: 0;
  background:#63b6d0;
  position: relative;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.b-flat span {
  position: relative;
  z-index: 1;
  transition: color 0.5s ease-in-out; /* スムーズに色を変えるためのトランジション */
	font-size: 1.5rem;
	font-weight: bold;
}

a.b-flat:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  transition: all 0.5s ease-in-out;
  transform: translateX(-96%);
  background: #ffff00;
  z-index: 0;
}

a.b-flat:hover:before {
  transform: translateX(0%);
}

/* a.b-flatがホバーされたときにspanの色を変更 */
a.b-flat:hover span {
  color: #000; /* テキスト色を黒に */
}

.tov{
	margin: 3rem;
	display: inline-block;
}
.tov img{
	padding-bottom: 1.5rem;
}
.footer {
  margin-bottom: 0;
  padding-bottom: 0;
}</pre></body></html>