<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  /* padding-left: 20px;
  padding-right: 20px; */
}

/* ヘッダースタイル */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 90px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 10px 10px -5px rgba(204,204,204,0.5);
}

.hd_cancel {
position: relative;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  max-width: 1300px;
}

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

.header__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 1rem;
  line-height: 40px;
  justify-content: center;
  height: 100%;
}

.header__navList .header__navItem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__navItemLink {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-size: 14px;
  font-weight: 500;
}

/* .header__navItemLink::after {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 12px;
  z-index: -1;
  height: 5px;
  width: calc(100% - 24px);
  background: #6FB92C;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__navItemLink:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
} */

.header__navItemLink i {
  display: block;
  text-align: center;
}

 /* メガメニュースタイル */
.megaMenu__link.is-active::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.megaMenu:hover&gt;.megaMenu__content,.megaMenu:active&gt;.megaMenu__content {
  opacity: 1;
  visibility: visible;
}

.megaMenu__content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background-color: rgba( 255, 255, 255, 0.9 );
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  border-bottom: 1px solid #333;
}

.megaMenu__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.megaMenu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.megaMenu__item {
  color: #666;
  flex-wrap: wrap; 
  display: flex;
  justify-content: space-between;
}

.megaMenu__item a {
  color: #666;
}

.megaMenu__item a i {
  padding-right: .5em;
}

.megaMenu__item img {
  transition: 0.5s;
}

.megaMenu__item img:hover {
  transform: scale(1.1, 1.1);
  opacity: .70;
}
/*=========================================*/

.megaMenu__left {
  width: 16%;
  padding-right: 2%;
}

.megaMenu__left a {
  display: block;
}

.megaMenu__left dl dt {
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.megaMenu__left dl dd span {
	display: block;
	text-align: center;
	text-decoration: none;
	margin: auto;
	font-weight: bold;
  border: 1px solid #666;
	color: #666;
	cursor: pointer;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
  font-size: .8rem;
  padding: 0 3%;
  border-radius: 20px;
}


.megaMenu__left dl dd span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(102, 102, 102);
	transform: translateX(-100%);
	transition: all .3s;
	z-index: -1;
}

.megaMenu__left dl dd span:hover::before {
	transform: translateX(0);
}

.megaMenu__left dl dd span:hover {
	color: #fff;
}

.megaMenu__center {
  width: 64%;
  border-left: 1px solid #666;
  padding: 0 2%;
}

.megaMenu__center ul {
  flex-wrap: wrap; 
  display: flex;
  justify-content: space-between;
}

.megaMenu__center ul li {
  width: 30%;
  margin-bottom: 20px;
}

.megaMenu__center ul li dl dt {
  border: 1px solid #666;
  border-radius: 10px;
  overflow: hidden;
}

.megaMenu__center ul li dl dd {
  font-size: .8rem;
  padding-top: 10px;
}

.megaMenu__right {
  width: 20%;
  border-left: 1px solid #666;
  padding-left: 2%;
}

.megaMenu__right ul li {
  margin-bottom: 2px;
  font-size: .8rem;
}

.megaMenu__right ul li a {
  display: block;
  transition:all 1s ease-out;
}

.megaMenu__right ul li a:hover {
  text-decoration: underline;
  padding-left: .5em;
}

/* megamenu02*/
.megaMenu__content.mega02 .megaMenu__center {
  width: 100%;
  border-left: unset;
}

.megaMenu__content.mega02 .megaMenu__center ul {
  justify-content: flex-start;
  grid-gap: 1rem;
}

.megaMenu__content.mega02 .megaMenu__center ul li {
  width: calc(20% - .8rem);
  min-width: 200px;
  margin: 0;
}

.megaMenu__content.mega02 .megaMenu__center ul li dl dt {
  overflow: hidden;
  aspect-ratio: 210/86;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ここから下がボタンのCSS　*/
.btn-surround {
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  font-weight: 700;
  background-color: #65A04D;
  text-align: center;
  width: inherit;
  min-width: 250px;
  padding: 16px 16px;
  position: relative;
  opacity: 1 !important;
  transition: all 0.3s;
}
.btn-surround:before,
.btn-surround:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #65A04D;
  top: 0;
  pointer-events: none;
}
.btn-surround:before {
  left: 0;
  width: 0;
  height: 2px;
}
.btn-surround:after {
  right: 0;
  width: 2px;
  height: 0;
}
.btn-surround:hover {
  background-color: #FFF;
  color: #65A04D;
}
.btn-surround:hover:before {
  width: 100%;
  transition: width 0.2s 0.2s;
}
.btn-surround:hover:after {
  height: 100%;
  transition: height 0.1s 0.4s;
}
.btn-surround:hover span:before {
  width: 100%;
  transition: width 0.2s 0.5s;
}
.btn-surround:hover span:after {
  height: 100%;
  transition: height 0.1s 0.7s;
}
.btn-surround span:before,
.btn-surround span:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #65A04D;
  bottom: 0;
  pointer-events: none;
}
.btn-surround span:before {
  right: 0;
  width: 0;
  height: 2px;
}
.btn-surround span:after {
  left: 0;
  width: 2px;
  height: 0;
}

.megaMenu__subItemLink {
  position: relative;
  font-weight: 500;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.megaMenu__subItemLink:hover, .megaMenu__subItemLink:focus {
  opacity: 0.7;
}
.megaMenu__subItemLink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  background-color: #ffffff;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

/* その他 */
main {
  margin-top: 90px;
}

/* .pricedown main {
  margin-top: 0;
} */

/*================================================*/
.header .hd_logo {
  flex-wrap: wrap; 
  display: flex;
  justify-content: space-between;
	width: 26%;
	align-items: center;
  align-self: center;
}

.header .hd_logo h1 {
  width: 48%;
}

.header .hd_logo ul {
  width: 50%;
}

.header .hd_logo ul li {
  background-color:#333; 
  color: #fff;
  text-align: center;
  padding: 3px 3%;
  font-size: 11px;
  margin-bottom: .5em;
  transition: background-color .5s;
}

.header .hd_logo ul li:hover {
  background-color:#65A04D; 
}

.header .hd_logo ul li a {
  color: #fff;
  font-size: 11px;
  display: block;
  width: 100%;
}

.header .hd_tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header .hd_tel .tel a {
  font-size: 28px;
}

.header .hd_tel .tel a:before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(/images/common/other/tel_icon.png);
  background-size: contain;
  vertical-align: -1px;
  padding-right: 7px;
  background-repeat: no-repeat;
}

.header .hd_tel p {
  font-size: .7rem;
  text-align: center;
  padding-top: .2em;
}

.header .hd_tel dl {
  font-size: .8rem;
  text-align: center;
  line-height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}


.header .hd_favorite {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13%;
}

.header .hd_favorite a {
  background-color: #eeeeee;
  font-size: .8rem;
  padding: 6px 16%;
  border-radius: 10px;
}

.header .hd_favorite a i {
  color: #e9575b;
  padding-right: .4em;
}

.header .hd_favorite a:hover {
  background-color: #ffd2d5;
}

.header .hd_contact {
  display: flex;
}

#page_main .hd_contact_side {
  /* position: fixed;
  right: 0;
  top: 90px;
  z-index: 999;
  display: flex;
  flex-wrap: wrap; */
  display: none;
}

.header .hd_contact a/*,
#page_main .hd_contact_side a*/{
  display: block;
  font-size: .8rem;
  color: #fff;
  text-align: center;
  padding: .25rem .5rem;
  min-width: 70px;
}

.header .hd_contact a span/*,
#page_main .hd_contact_side a span*/{
  text-align: center;
  display: block;
  font-size: 12px;
  white-space: nowrap;
}

.header .hd_contact a img/*,
#page_main .hd_contact_side a span img*/{
  max-width: 30px;
  max-height: 30px;
  object-fit: contain;
}


.header .raiten_btn,
#page_main .raiten_btn{
  background-color: #0FB5E8;
}

.header .contact_btn,
#page_main .contact_btn{
  background-color: #F600A8;
}

.header .login_btn{
  background-color: #65A04D;
}

.header .logout_btn{
  background-color: #F9BC01;
}

@media all and (min-width:769px) and (max-width:1600px) { 

.header__inner {
  max-width: unset;
  width: calc(96% - 60px);
}

.header .hd_logo h1 {
  width: 40%;
}

.header .hd_logo ul {
  width: 52%;
}

.header .hd_logo ul li a  {
  font-size: 9px;
}

.header .hd_tel .tel a {
  font-size: 22px;
}

.header .hd_tel .tel a::before {
  width: 22px;
  height: 22px;
}

.header .hd_tel p {
  font-size: .6rem;
  text-align: left;
}

.header .hd_tel dl {
  font-size: .7rem;
}
.header .hd_favorite a{
  padding: 6px 8%;
}
}

@media (max-width:1300px) { 

.header .hd_favorite {
  width: 15%;
}
}

@media (max-width:1080px) {
  main {
    margin-top: calc(90px + 1rem + clamp(1rem, 0.188rem + 2.5vw, 1.875rem));
  }
  .header .hd_contact{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
  }
  .header .hd_contact a{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    grid-gap: .5rem;
    justify-content: center;
    align-items: center;
    min-width: unset;
    flex: 1;
    padding: .5rem;
  }
  .header .hd_contact a img{
    order: 1;
    max-width: clamp(1rem, 0.188rem + 2.5vw, 1.875rem);/*16~30px(520~1080px)*/
    max-height: clamp(1rem, 0.188rem + 2.5vw, 1.875rem);/*16~30px(520~1080px)*/
  }
  .header .hd_contact a span{
    font-size: clamp(0.813rem, 0.638rem + 0.54vw, 1rem);/*13~16px(520~1080px)*/
    width: fit-content;
    order: 2;
  }
  .header .hd_contact a span:nth-of-type(2){
    order: 3;
  }
  .header .hd_contact a span.sp_none{
    display: none;
  }
  .header__inner {
    justify-content: center;
    gap:2%;
  }
  .header .hd_favorite {
    width: 24%;
  }
  .header .hd_favorite a {
    text-align: center;
  }
  
  .header .hd_favorite a i {
    padding-right: 0;
  }
  
  .header .hd_favorite a span {
    display: block;
  }
  
  .header .hd_logo {
    padding-left: 2%;
    width: 28%;
    flex-grow: 1;
  }
  
  .header .hd_logo ul {
    width: 40%;
    flex-grow: 1;
    margin: 0 0 0 10px;
  }
  
  .header .hd_tel {
    display: none;
  }
  .megaMenu__inner {
    padding-top: calc(40px + 1rem + clamp(1rem, 0.188rem + 2.5vw, 1.875rem));
  }
}

@media all and (min-width:801px) and (max-width:1000px) {
.header__inner {
  width: 85%;
}
}


@media (max-width:950px) {

.header .hd_logo ul li a {
  font-size: .6rem;
}

.megaMenu__left {
  width: 20%;
}

.megaMenu__center {
  width: 80%;
}

.megaMenu__right {
  border-style: none;
  width: 100%;
  border-top: 1px solid #666;
  padding-top: 20px;
}

.megaMenu__right ul {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: center;
}

.megaMenu__right ul li {
  width: 30%;
}

.megaMenu__right ul:after {
  content: "";
  display: block;
  width: 30%;  
  height: 0;
}
}

@media (max-width:768px) {
.header__inner {
  width: 100%;
}
.inner {
  width: 100%;
  margin: 0 auto 0 0;
  padding-left: 0;
  padding-right: 0;
}

/* #page_main .hd_contact_side{
  width: 100%;
} */

.header .hd_logo {
  width: 60%;
  margin-right: 3%;
}
.header .hd_logo h1{
  width: 40%;
}
.header .hd_logo ul li {
  padding: 1px 2%;
}

.header .hd_favorite {
  margin-right: 15%;
  width: 20%;
}

.header .hd_favorite a {
  padding: 8px 8%;
}

.header .hd_favorite a span {
  font-size: .65rem;
  line-height: 1.6em;
}

/* #page_main .hd_contact_side a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap:5px;
  font-size: .8rem;
  width: 50%;
  height: 10vw;
  position: relative;
}

.header .hd_contact a {
  font-size: .6rem;
}

.header .hd_contact a span,
#page_main .hd_contact_side a span{
  display: block;
  justify-content: unset;
  position: absolute;
  top:50%;
  left:1%;
  transform: translate(0,-50%);
} */

main {
  margin-top: 130px;
}

/* main.demand,
main.loan,
main.soudan,
main.question,
main.special,
main.searchlist {
  margin: 50px auto 0;
} */
}

@media (max-width:520px) {
.header .hd_logo ul li a {
  font-size: 8px;
}
}





</pre></body></html>