@charset "utf-8";

/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
	width: 90%;
  max-width: var(--wrap);
	margin: 0 auto;
}
.l_wrap_lg {
	width: 90%;
  max-width: 1200px;
	margin: 0 auto;
}
.l_wrap_inner {
	width: 100%;
  max-width: 1080px;
	margin: 0 auto!important;
}


/*----------------------------------------------
	.l_over_wrap
---------------------------------------------*/
.l_over_wrap{
  position: relative;
  left: -30px;
  width: calc(100% + 60px);
}


/*----------------------------------------------
	.l_logo
---------------------------------------------*/
.l_logo {
  width: 260px;
  height: auto;
}

/*----------------------------------------------
	.l_content
---------------------------------------------*/
.l_content {
  position: relative;
  background: #FFFFFF;
  padding: 60px 0 100px 0;
}
.l_content p > a {
  color: #D87A11 ;
  text-decoration: underline;
}


/*----------------------------------------------
	.l_mv_wrap
---------------------------------------------*/
.l_mv_wrap {
  position: relative;
  z-index: 1;
  height: 100svh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 40px;
  margin-top: 40px;
}


/*----------------------------------------------
	.l_mv_saiyou
---------------------------------------------*/
.l_mv_saiyou {
  position: relative;
  z-index: 1;
  height: 100svh;
}


/*----------------------------------------------
	.l_mv_inner
---------------------------------------------*/
.l_mv_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  flex-wrap: wrap;
  gap: 30px;
}


/*----------------------------------------------
	.l_mv
---------------------------------------------*/
.l_mv {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.l_mv img{
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}

.l_mv_copy {
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}


/*----------------------------------------------
	.l_header_area
---------------------------------------------*/
.l_header_area {
  position: fixed;
  z-index: 999;
  top: 0;
  /*width: calc(100% - 50px * 2);*/
  right: 0;
  left: 0;
  margin: 0 auto;
}
.l_header_top {
  background: #333333;
  display: flex;
  justify-content: flex-end;
  padding: 0 30px;
}
.l_header_top div.l_search {
  margin-right: 40px;
}
.l_header_top ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}
.l_header_top ul li:not(:last-of-type) {
  margin-right: 30px;
}
.l_header_top ul li a {
  text-decoration: none;
  position: relative;
  padding-left: 15px;
  color: #FFFFFF;
}
.l_header_top ul li a::before,
.l_header_top ul li a::after{
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  width: 6px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.l_header_top ul li a::before {
  transform: rotate(45deg);
}
.l_header_top ul li a::after {
  transform: rotate(-45deg);
}
.l_header_bottom {
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
}
.l_header_bottom > div:last-of-type {
  display: flex;
  align-items: center;
}
.l_header_logo {
  display: none;
  position: absolute;
  top: 30px;
  left: 5%;
  z-index: 9;
  width: 65%;
}
.l_header_logo img {
  width: 100%;
  max-width: 300px;
}

/*----------------------------------------------
	.l_header_right
---------------------------------------------*/
.l_header_right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/*----------------------------------------------
	.l_nav_area
---------------------------------------------*/
.l_nav_area {
  padding: 15px 40px;
  width: 100%;
  position: relative;
  background: #ffffffc9;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 30px;
}


/*----------------------------------------------
	.l_page
---------------------------------------------*/
.l_page {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}


/*----------------------------------------------
	.l_container
---------------------------------------------*/
.l_container {
  flex: 1;
}

/*----------------------------------------------
	.l_ttl
---------------------------------------------*/
.l_ttl {
  padding: 40px 0 30px;
  text-align: center;
}
.l_ttl img{
  width: 100%;
  height: auto;
}
.l_ttl.is_jp img{
  max-width: 900px;
}
.l_ttl.is_en img{
  max-width: 990px;
}




/*----------------------------------------------
  .l_footer
---------------------------------------------*/
.l_footer {
  background: var(--color2);
  padding: 50px 0;
  position: relative;
}
.l_footer_inner{
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 50px;
}
.l_footer_inner::before {
    content: "";
    border: 1px solid #d3d3d3;
    align-self: stretch;
}
.l_footer_menu {
  width: 55%;
}
.l_footer_menu_flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.l_footer_menu > div{
  display: flex;
  gap: 50px;
}
.l_footer_dtl{
  width: 45%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
}
.l_footer_dtl {
    order: -1;
}
.l_footer_dtl .is_logo{
  width: 416px;
  height: auto;
  margin-bottom: 20px;
}


/*----------------------------------------------
  .l_copy
---------------------------------------------*/
.l_copy {
  background: var(--color3);
  padding: 10px 0;
}
.l_copy > div {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.l_copy .is_links{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}


/*----------------------------------------------
  .l_inner_header
---------------------------------------------*/
.l_inner_header{
  position: relative;
  padding-top: 160px;
  height: 500px;
  width: 100%;
}
.l_inner_header .is_bg{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*----------------------------------------------
  .l_inner_list
---------------------------------------------*/
.l_inner_list {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 20px 40px;
}
.l_inner_list div a {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  background: #F5F5F5;
  height: 90px;
  padding: 0 80px 0 30px;
  border-radius: 15px;
  font-weight: bold;
  position: relative;
  font-size: 2rem;
}
.l_inner_list div a::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 50px;
  background: #D87A11;
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
}
.l_inner_list div a::after {
  content: '';
  background: url("../images/icon_arrow_orange.png");
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  width: 6px;
  height: 12px;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/*----------------------------------------------
  .l_btns
---------------------------------------------*/
.l_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/*----------------------------------------------
  .l_pagetop
---------------------------------------------*/
.l_pagetop {
  position: fixed;
  right: 25px;
/*	left: calc(50% + 550px);*/
  bottom: 50px;
	z-index: 99;
}
.l_pagetop a{
	line-height: 0;
	display: block;
}
.l_pagetop img {
  width: 50px;
  height: 50px;
}
.l_pagetop img:hover {
	opacity: 0.9;
}
/*
.l_pagetop.attached {
  position: absolute;
  bottom: 0;
}
*/
/*画面幅が1250pxを下回るとボタンが隠れるため*/
/*
@media only screen and (max-width: 1250px) {
  .l_pagetop {
    left: auto;
    right: 25px;
  }
  .l_pagetop.attached {
    position: fixed;
    bottom: 240px;
    right: 25px;
  }
}
*/
/*----------------------------------------------
  .l_double
---------------------------------------------*/
.l_double > div {
  width: 49%;
  display: inline-block;
}
.l_double:nth-child(1) { margin-left: 0; }
.l_double:nth-child(2) { margin-right: 0; }

/*----------------------------------------------
  .l_double02
---------------------------------------------*/
.l_double02 {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.l_double02 > * {
	width: 49%!important;
}


/*----------------------------------------------
	.l_news
---------------------------------------------*/
.l_news {
  width: 95%;
  margin: 0 auto;
  padding: 80px 60px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-top: -215px;
  position: relative;
  z-index: 9;
  margin-bottom: 450px;
}
.l_news_inner{
  display: flex;
  gap: 40px;
  position: relative;
  align-items: flex-start;
}
.l_news_head{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-shrink: 0;
  gap: 55px;
}
.l_news_right{
  width: 100%;
}
.l_news_dtl{
  width: 100%;
  max-height: 430px;
  overflow-y: auto;
}
.l_news_cat_btn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.l_news_cat_btn > a > div {
  border-radius: 10px!important;
  height: inherit!important;
  padding: 36px 10px 10px 10px!important;
  justify-content: flex-end!important;
  font-size: 1.8rem!important;
}
.l_news_dtl.is_inner{
  max-height: unset;
}


/*----------------------------------------------
	.l_ranking
---------------------------------------------*/
.l_ranking{
  padding: 213px 0 120px;
  position: relative;
  z-index: 2;
  background: #F6F6F6;
  border-radius: 50px 50px 0 0;
  margin-bottom: 450px;
}
.l_ranking::before {
  content: 'RANKING';
  position: absolute;
  top: -50px;
  left: 0;
  color: #EEEEED;
  font-size: 35rem;
  font-weight: 700;
  z-index: -9;
}


/*----------------------------------------------
	.l_picup
---------------------------------------------*/
.l_picup{
  position: relative;
  z-index: 2;
  padding: 200px 0 0;
}
.l_picup::before {
  content: 'PICKUP';
  position: absolute;
  top: -50px;
  left: 0;
  color: #EEEEED;
  font-size: 35rem;
  font-weight: 700;
  z-index: -9;
}
.l_picup_slider a {
  width: 700px;
  height: 100px;
  margin: 80px 10px 10px 10px;
  background: #333333;
  padding: 0 30px;
  color: #FFFFFF;
  font-size: 2.3rem;
  font-weight: 500;
  border-radius: 10px;
  position: relative;
}
.l_picup_slider a::after {
  content: '';
  display: inline-block;
  background: url("../images/icon_ranking_after.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 50px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/*----------------------------------------------
	.l_about
---------------------------------------------*/
.l_about{
  padding: 213px 0 120px;
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-radius: 50px 50px 0 0;
  margin-bottom: 450px;
}
.l_about::before {
  content: 'ABOUT';
  position: absolute;
  top: -50px;
  left: 0;
  color: #F7F7F6;
  font-size: 35rem;
  font-weight: 700;
  z-index: -9;
}


/*----------------------------------------------
	.l_uses
---------------------------------------------*/
.l_uses{
  padding: 213px 0 120px;
  position: relative;
  z-index: 2;
  background: #F6F6F6;
  border-radius: 50px 50px 0 0;
  margin-bottom: 450px;
}
.l_uses::before {
  content: 'USES';
  position: absolute;
  top: -50px;
  left: 0;
  color: #EEEEED;
  font-size: 35rem;
  font-weight: 700;
  z-index: -9;
}
.l_uses_cards{
  width: 95%;
  /*min-width: 1200px;*/
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 50px;
  margin-bottom: 50px;
}
.l_uses_cards.is_col2{
  width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 50px;
}

/*----------------------------------------------
	.l_links
---------------------------------------------*/
.l_links{
  padding: 100px 0;
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-radius: 50px 50px 0 0;
}
.l_links_cards{
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 30px;
  margin-bottom: 30px;
}
.l_links_cards.is_col1{
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

/*----------------------------------------------
	.l_bottom_cards
---------------------------------------------*/
.l_bottom_cards{
  position: relative;
  width: 100%;
}
.l_bottom_cards .is_inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -60px;
  z-index: 2;
}
.l_bottom_cards::before{
  content: '';
  width: 100%;
  height: 450px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/img_bg.webp) no-repeat;
  background-size: cover;
}


/*----------------------------------------------
	.l_breadcrumbs
---------------------------------------------*/
.l_breadcrumbs {
  margin-bottom: 80px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.l_breadcrumbs a {
  color: #D87A11!important;
}
.l_breadcrumbs > * {
  flex-shrink: 0;
}
.l_breadcrumbs > *:last-child {
  flex-shrink: 1;
}


/*----------------------------------------------
	.l_inner_news_header
---------------------------------------------*/
.l_inner_news_header .c_news {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.l_inner_news_header .c_news span {
  margin-right: 10px;
}
.l_news_btn_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


/*----------------------------------------------
	.l_article
---------------------------------------------*/
.l_article {
  margin-bottom: 60px;
}

/*----------------------------------------------
	.l_require
---------------------------------------------*/
.l_require{
  padding: 100px 0 120px;
}


/*----------------------------------------------
	.l_require_column
---------------------------------------------*/
.l_require_column{
  display: flex;
  gap: 60px;
}

/*----------------------------------------------
  .l_tab_menu
---------------------------------------------*/
.l_tab_menu{
  display: flex;
  flex-direction: column;
  max-width: 200px;
  flex-shrink: 0;
  width: 100%;
}


/*----------------------------------------------
  .l_tab_inner
---------------------------------------------*/
.l_tab_inner{
  display: none;
  width: 100%;

  &.is_active{
    display: block;
  }
}


/*----------------------------------------------
	.l_flow
---------------------------------------------*/
.l_flow{
  background: #F2F6FA;
  padding: 100px 0 120px;
}


/*----------------------------------------------
	.l_faq
---------------------------------------------*/
.l_faq{
  padding: 100px 0;
}


/*----------------------------------------------
	.l_contact
---------------------------------------------*/
.l_contact{
  display: flex;
  flex-direction: column;
}


/*----------------------------------------------
	.l_sitemap
---------------------------------------------*/
.l_sitemap{
  display: flex;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}


/*----------------------------------------------
	.l_modal
---------------------------------------------*/
.l_modal{
  position: fixed;
  background: var(--rec_menu_bg);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 9999;
}


/*----------------------------------------------
	.l_thumb
---------------------------------------------*/
.l_thumb{
  max-width: 700px;
  height: auto;
  width: 100%;
  object-fit: cover;
  margin: 0 auto 60px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}


/*----------------------------------------------
	.l_news_content
---------------------------------------------*/
.l_news_content {
  display: flex;
  justify-content: space-between;
}
.l_news_content .l_news_dtl {
  width: 88%;
}
.l_news_content .l_year_filter {
  width: 10%;
}
