@charset "UTF-8";

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Noto Sans JP';
}

#wrapper {
	margin: 0 auto;
	width: 100%;
	position: relative;
	padding: 0 0 60px;
}


header h1 {
	padding: 20px 0 20px;
	font-size: 20px;
	font-weight: 900;
	text-align: center;
}
header h1 a {
	text-decoration: none;
	color: #000;
}
header h1 a:hover {
	text-decoration: none;
	color: #999;
}

#bottom {
}
#bottom p {
	text-align: center;
	font-size: 12px;
}

main {
	margin: 0 auto;
	width: 300px;
}
main h2 {
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	padding: 0 0 20px;
}
main .kantei input.birthday {
	font-size: 26px;
}
main .kantei dl {
	margin: 0;
	position: relative;
}
main .kantei dl dt {
	text-align: center;
	padding: 10px 0 0;
}
main .kantei dl dd {
	text-align: center;
	padding: 0 0 10px;
}
main .kantei dl dd input {
	text-align: center;
}

main .kantei .errorMessage {
	position: absolute;
	top: 85px;
	left: 20px;
	font-size: 13px;
	display: block;
	border: 1px solid #d00;
	padding: 2px 10px;
	background: #FFEBCD;
	color: #d00;
	z-index: 1;
}

.btn_block {
	text-align: center;
}


.inline-wrap {
	position: relative;
	margin: 10px auto;
	max-width: 360px;
	background: #eee;
	padding: 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.day1, .day2, .day3, .day4, .day5, .day6, .profile_block, .color_block {
	display: none;
}


.btn.diag {
	outline:none;
	height: 40px;
	text-align: center;
	border-radius:40px;
	padding: 0 50px;
	background: #fff;
	border: 2px solid #93278F;
	color:#93278F;
	letter-spacing:1px;
	text-shadow:0;
	font:{
		size:12px;
		weight:bold;
	}
	cursor: pointer;
	transition: all 0.25s ease;
	&:hover {
		color:white;
		background: #93278F;
	}
	&:active {
		letter-spacing: 2px ;
	}
	&:after {
		content:"鑑定する";
	}
}

@keyframes rotating {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}


.btn_bottom {
	padding: 40px 0;
}

.btn.login {
  padding: 20px 40px;
  background: none;
  border: none;
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
  cursor: pointer;
  &:after, &:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 2px solid #000;
    transition: transform .2s; 
}
  &:after {
    transform: translate(3px, 3px)  ;
}
  &:before {
    transform: translate(-3px, -3px);
}
  &:hover {
    &:after, &:before {
      transform: translate(0);
	}
}
}




@keyframes materialFadeIn {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.accordion {
	margin: 0 0 25px;
	position: relative;
}

.btn-box button {
	width: 100%;
	padding: 20px 24px;
	background: #f5f5f5;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: left;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-box button:hover {
	background: #e0e0e0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-box button:active {
	background: #d5d5d5;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.more {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: #fff;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-top: -4px;
	position: relative;
	z-index: 1;
}

.more.appear {
	max-height: 600px;
	animation: materialFadeIn 0.3s ease;
}

.accordion:has(.more.appear) .btn-box button::after {
	transform: translateY(-50%) rotate(180deg);
}

.accordion.unsei .more ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.accordion.unsei .more ul li {
	padding: 25px 15px 5px;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
}
.accordion.unsei .more ul li * {
	transition: all 0.3s ease;
}
.accordion.unsei .more ul li:last-child {
	padding: 25px 15px 5px;
	border-bottom: 0;
}



.accordion.unsei .more dl {
	display: table;
}
.accordion.unsei .more dl dt {
	display: table-cell;
	width: 100px;
}
.accordion.unsei .more dl dd {
	display: table-cell;
}
.accordion.unsei .more dl dd.gogyo {
	width: 80px;
	text-align: center;
	position: relative;
}

.accordion.unsei .more dl dd.gogyo .img_block {
	position: absolute;
	width: 100%;
	top: 0;
	right: 15px;
	text-align: right;
	z-index: 1;
}
.accordion.unsei .more dl dd.gogyo .img_block img {
	height: 25px;
	opacity: 0.5;
}

.accordion.unsei .more dl dd.gogyo p {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	margin: 0 auto;
	text-align: center;
	z-index: 2;
	font-weight: 700;
	color: #333;
}

.accordion.unsei .more ul li:hover dt {
	color: #F7931E;
}
.accordion.unsei .more ul li:hover dd.gogyo p {
	color: #F7931E;
}



.accordion.unsei .more dl dd.star {
}
.accordion.unsei .more dl dd.star img {
	width: 15px;
}

.accordion.unsei .more li {
	position: relative;
}
.accordion.unsei .more .options {
	position: absolute;
	top: 0;
	left: 15px;
}
.accordion.unsei .more .options label {
	font-size: 8px;
	padding: 1px 5px;
	margin: 0 2px;
	font-weight: 300;
	border-radius: 10px;
	color: #fff;
}
.accordion.unsei .more .options .tensha {
	background: #ED1C24;
}
.accordion.unsei .more .options .ichiryu {
	background: #F7931E;
}
.accordion.unsei .more .options .tora {
	background: #0071BC;
}
.accordion.unsei .more .options .mi {
	background: #FCEE21;
	color: #666;
}
.accordion.unsei .more .options .tsuchinotomi {
	background: #FF1493;
}
.accordion.unsei .more .options .fujoju {
	background: #aaa;
}


/* today_unsei */
#today_unsei {
	background: #fff;
}
#today_unsei .unsei_title {
	padding: 15px 0 0;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
}
#today_unsei .options {
	height: 18px;
	text-align: center;
}
#today_unsei .options label {
	font-size: 13px;
	padding: 1px 10px;
	margin: 0 2px;
	font-weight: 300;
	border-radius: 10px;
	color: #fff;
}
#today_unsei .options .tensha {
	background: #ED1C24;
}
#today_unsei .options .ichiryu {
	background: #F7931E;
}
#today_unsei .options .tora {
	background: #0071BC;
}
#today_unsei .options .mi {
	background: #FCEE21;
	color: #666;
}
#today_unsei .options .tsuchinotomi {
	background: #FF1493;
}
#today_unsei .options .fujoju {
	background: #aaa;
}

#today_unsei .gogyo_container {
	position: relative;
	height: 240px;
}
#today_unsei .gogyo_container .img_block {
	position: absolute;
	width: 100%;
	top: 20px;
	left: 0;
	margin: 0 auto;
	text-align: center;
	z-index: 1;
}
#today_unsei .gogyo_container .img_block img {
	height: 200px;
}
#today_unsei .gogyo_container .txt_block {
	position: absolute;
	width: 100%;
	top: 80px;
	left: 0;
	margin: 0 auto;
	text-align: center;
	font-family: 'Kaisei Opti';
	z-index: 2;
}

#today_unsei .star_block {
	text-align: center;
}
#today_unsei .star_block img {
	width: 25px;
	margin: 0 3px;
}

#today_unsei .button_area {
	text-align: center;
	margin-top: 20px;
}


.accordion.mygogyo .more {
}
.accordion.mygogyo .more .img_block {
	text-align: center;
}
.accordion.mygogyo .more .img_block img {
	width: 250px;
}
.accordion.mygogyo .more .img_block {
	text-align: center;
}
.accordion.mygogyo .more .title_block {
	font-family: 'Kaisei Opti';
	padding: 35px 0 0;
}
.accordion.mygogyo .more .title_block h3 {
	text-align: center;
	font-size: 20px;
}
.accordion.mygogyo .more .title_block h2 {
	text-align: center;
	font-size: 28px;
}


.accordion.mygogyo .more .gogyo {
	margin: 0 auto;
	margin-top: 40px;
	text-align: center;
	padding: 10px;
	background-color: #333;
	color: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid transparent;
	outline: 1px solid;
	outline-color: #878787;
	outline-offset: 0px;
	text-shadow: none;
	transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

.accordion.mygogyo .more .gogyo:hover {
	border-color: #FFF;
	box-shadow: inset 0 0 20px 
	rgba(255, 255, 255, 0.5), 0 0 20px 
	rgba(255, 255, 255, 0.2);
	outline-color: transparent;
	outline-offset: 12px;
	text-shadow: 2px 2px 3px #000;
	cursor: pointer;
}



/* help */
#help {
	background: #fff;
}
#help .button_area {
	text-align: center;
	margin-top: 20px;
}

#help .title_block {
	font-family: 'Kaisei Opti';
	padding: 45px 0 0;
	position: relative;
	z-index: 1;
}
#help .title_block h3 {
	text-align: center;
	font-size: 20px;
}
#help .title_block h2 {
	text-align: center;
	font-size: 28px;
}

#help .title_block .img_block {
	position: absolute;
	width: 100%;
	top: -10px;
	left: 0;
	margin: 0 auto;
	text-align: center;
	z-index: -1;
}
#help .title_block .img_block img {
	height: 150px;
	opacity: 0.7;
}


#help .memo {
	position: relative;
	z-index: 1;
}

#help .memo .txt_block {
	z-index: 1;
	padding: 15px 10px;
}
#help .memo .txt_block h3 {
	font-size: 20px;
	font-weight: bold;
}

#help .memo .txt_block ul {
	position: relative;
}

#help .memo .txt_block ul li {
	line-height: 1.5;
	padding: 0.5em 0;
	list-style-type: none!important;
}

#help .memo .txt_block ul li:before {
	font-family: "Font Awesome 5 Free";
	content: "\f00c";
	font-weight: 900;
	position: absolute;
	left : 0.3em;
	color: #93278F;
}

#help .aisho h3 {
	font-size: 20px;
	font-weight: bold;
}
#help .aisho .parts {
	padding: 5px 25px 50px;
}

#help .soukan h3 {
	font-size: 20px;
	font-weight: bold;
}

#help .soukan .img_block {
	width: 90%;
	padding: 5px 0 20px;
}
#help .soukan .img_block img {
	width: 100%;
}


.accordion.mycolor {
}
.accordion.mycolor .kubo_block {
	text-align: center;
	padding: 20px 0;
}
.accordion.mycolor .kubo_block p {
	display: inline-block;
	padding: 2px 25px;
	position: relative;
	font-size: 18px;
	cursor: pointer;
	outline: 1px solid;
	outline-color: #fff;
	outline-offset: 0px;
	text-shadow: none;
	transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}


.accordion.mycolor .kubo_block p:hover {
	border-color: #FFF;
	rgba(255, 255, 255, 0.5), 0 0 20px 
	rgba(255, 255, 255, 0.2);
	outline-color: transparent;
	outline-color: #F7931E;
	outline-offset: 12px;
	cursor: pointer;
	color: #F7931E;
}
.accordion.mycolor .kubo_block i {
	position: absolute;
	top: 10px;
	right: 5px;
	color: #33CCE8;
	font-size: 15px;
}

.accordion.mycolor .day_block {
	width: 50%;
	margin: 0 auto;
	padding: 0 5px;
}

.accordion.mycolor .bottom_section {
	position: relative;
}
.accordion.mycolor .month_block {
	width: 50%;
	padding: 0 5px;
}

.accordion.mycolor .year_block {
	width: 50%;
	padding: 0 5px;
}

