<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
#info {
    margin: 0 0 0 30px;
    padding: 20px 0;
    font-size: 1.7rem;
    font-weight: bold;
    border: #cc0000 2px solid;
    display: flex;
    justify-content: center;
    background: rgba(255,255,255,0.7);
}

#wrap {
    background: url(../images/main.jpg) 100% 140px no-repeat;
/*	background: url(../images/main.jpg) 100% 30px no-repeat;*/
    /*background: url(../images/main.jpg) 100% 160px no-repeat;*/
}


#wrap-t {
	margin-bottom: 70px;
	letter-spacing: -0.4em;
}


#wrap-b {
	letter-spacing: -0.4em;
}


#main {
	width: 770px;
	letter-spacing: normal;
	display: inline-block;
	vertical-align: top;
    position: relative;
}


#chair {
	margin-top: 35px;
	float: right;
}


#chair li {
	margin-bottom: 20px;
	text-align: left;
}


#column {
	width: 700px;
	letter-spacing: normal;
	display: inline-block;
	vertical-align: top;    
}


#hybrid {
    margin-bottom: 30px;
    padding: 20px;
    font-size: 2rem;
    text-align: center;
    color: #fff;
    background-color: #ea5550;
    border-radius: 10px;
}


#hybrid strong {
    font-size: 2.2rem;
}


#new {
}


#new h3 {
	margin-bottom: 20px;
}


#new dl {
    height: 180px;
    overflow: auto;
}


#new dt {
	width: 7em;
	float: left;
	clear: left;
}


#new dd {
	margin-bottom: 15px;
	padding: 0 0 15px 7em;
	border-bottom: #bbb 1px dotted;
}


#sec {
    margin-top: 40px;
	/*width: 350px;
	margin-left: 50px;
	letter-spacing: normal;
	display: inline-block;
	vertical-align: top;*/
}


#sec dl {
	padding: 30px;
	background-color: #f3f3f3;
	border-radius: 5px;
	border-right: #eaeaea 3px solid;
	border-bottom: #eaeaea 3px solid;
}


#sec dt {
	margin-bottom: 15px;
	padding-bottom: 10px;
	font-size: 14px;
	font-weight: bold;
	border-bottom: #bbb 1px dotted;
}


#sec dd {
	font-size: 13px;
}


#poster {
    width: 250px;
    margin-left: 50px;
    letter-spacing: normal;
    display: inline-block;
}


#poster a:hover {
    opacity: 0.7;
}


#poster dt {
    margin-bottom: 7px;
}


#poster dt a {
    padding: 10px 0;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background-color: #ea5350;
    display: block;
}


#newsletter_btn {
    width: 230px;
    margin: 15px 0 0 40px;
}


#newsletter_btn a {
    padding: 10px 0;
    font-size: 1.7rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
    line-height: 1.3;
	color: #fff;
	display: block;
	background-color: #5098ea;
	border-radius: 3px;
	border-right: #367ecf 3px solid;
	border-bottom: #367ecf 3px solid;
    transition: 0.5s;
}


#newsletter_btn a:hover {
    background-color: #8abcf5;
	border-right: #619bdc 4px solid;
	border-bottom: #619bdc 4px solid;
}


#bnr_top {
    margin: 680px 0 0 40px;
    display: flex;
    flex-wrap: wrap;
}


#bnr_top li {
    margin-right: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}


#bnr_top li:nth-child(3n) {
    margin-right: 0;
}



/***** CLASS *****/
.info {
    margin-bottom: 30px;
    padding: 20px;
    letter-spacing: normal;
    /*color: #cc0000;*/
    border: #cc0000 2px solid;
    border-radius: 10px;
}


.info p {
    margin-bottom: 15px;
}


.info ul {
    display: flex;
}


.info li {
    font-size: 1.3rem;
    text-align: center;
    flex: auto;
}


.vm_btn a {
    width: 60%;
    margin: 0 auto 20px;
    padding: 10px 0;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: block;
    border-radius: 100px;
    transition: 0.5s;
    background-color: #ebb32c;
    border: #ebb32c 2px solid;
}


.vm_btn a:hover {
    background-color: #f7da94;
}


.vm_btn a .win-icon {
	background: url(../images/win_icon_w.png) 100% 0.4em no-repeat;
}




/***** アコーディオン *****/
.accordion {
    width: 720px;
    position: absolute;
    top: 85px;
    left: 50px;
}


.accordion &gt; dt {
    padding: 10px 15px;
    font-size: 1.7rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    cursor: pointer;
    background-color: #ea5550;
    position: relative;
}


.accordion &gt; dt::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 35%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.accordion &gt; dt.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}


.accordion &gt; dd {
    padding: 20px;
    display: none;
    background-color: #fff;
    border: #ea5550 1px solid;
}


.accordion &gt; dd p {
    margin-bottom: 15px;
}


.accordion &gt; dd ul {
    display: flex;
}


.accordion &gt; dd li {
    font-size: 1.3rem;
    text-align: center;
    flex: auto;
}
</pre></body></html>