@charset "UTF-8";

/* #header
-------------------------------------------------- */
#header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 75px;
  padding: 0 70px 0 30px;
  position: fixed;
  top: 0;
  left: 0;
  background: none;
  z-index: 1000;
	background: rgba(255,255,255,.9);
  border-bottom: 1px solid #aaa;
}

#header .logo{
  flex: 0 1 150px;
}

#header .logo a, #header .logo a img{
  display: block;
}

#header .btn_shop{
  flex: 0 1 137px;
}

#header .btn_shop a{
  padding-left: 50px;
}

#hamburger {
  display: block;
  width: 53px;
  height: 53px;
  background-color: transparent;
  border-color: transparent;
  position: fixed;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 9999;
  background: #fff;
  border: 1px solid #C92B0F;
}

#hamburger span {
  width: 18px;
  height: 2px;
  background-color: #C92B0F;
  position: relative;
  transition: ease .3s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#hamburger span:nth-child(1) {
  top: 0;
}

#hamburger span:nth-child(2) {
  margin: 6px auto;
}

#hamburger span:nth-child(3) {
  top: 0;
}

#hamburger.active span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
}

#hamburger.active span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}

#nav {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  height: 100vh;
  min-height: 100svh;
  overflow-y: scroll;
  padding: 80px 30px 30px 30px;
  transform: translateX(400px);
  background-color: #fff;
  transition: ease .4s;
}

#nav.active {
  transform: translateX(0);
}

.gnav{
  border-top: 1px solid #a1a1a1;
}

.gnav li{
  border-bottom: 1px solid #a1a1a1;
}

.gnav li a{
  display: block;
  padding: 15px;
}

@media screen and (max-width: 767px) {
	#header{
	  height: 60px;
    padding: 0 15px;
	}
  #header .btn_shop{
    display: none;
  }
  #header .logo{
    flex: 0 1 80px;
  }
  #hamburger {
    display: block;
    width: 40px;
    height: 40px;
  }

  #hamburger span {
    width: 18px;
    height: 2px;
    background-color: #C92B0F;
    position: relative;
    transition: ease .3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #nav {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    height: 100vh;
    min-height: 100svh;
    overflow-y: scroll;
    padding: 80px 30px 30px 30px;
    transform: translateX(400px);
    background-color: #fff;
    transition: ease .4s;
  }
}

/* #footer
-------------------------------------------------- */
#footer{
	padding-top: 40px;
	border-top: 1px solid #aaa;
}

#footer .inner{
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 30px;
  padding-bottom: 40px;
}

#footer .inner .logo{
  width: 240px;
}

.fnav{
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 1.3;
}

.fnav li{
  display: flex;
  gap: 10px;
}

.fnav li:not(:last-child)::after{
  content: "/";
  color: #C92B0F;
}

.fnav li a{
  font-size: 1.6rem;
  color: #C92B0F;
}

.footer_btn {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

a.btn_icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 53px;
  padding-left: 60px;
  text-align: center;
  color: #C92B0F;
  background: #fff;
  border: 1px solid #C92B0F;
  position: relative;
}

a.btn_icon:hover{
  color: #fff;
  background: #C92B0F;
}

a.btn_icon::before{
  content: "";
  display: block;
  width: 31px;
  aspect-ratio: 31 / 33;
	background: #C92B0F;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
  mask-image: url(../img/icon_mail.svg);
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  transition: ease .3s;
}

a.btn_icon:hover::before{
  background: #fff;
}

a.btn_icon.recruit::before{
  mask-image: url(../img/icon_recruit.svg);
}

a.btn_icon.contact::before{
  mask-image: url(../img/icon_mail.svg);
}

a.btn_icon.shop{
  color: #fff;
  background: #C92B0F;
}

a.btn_icon.shop:hover{
  color: #C92B0F;
  background: #fff;
}

a.btn_icon.shop::before{
  background: #fff;
  mask-image: url(../img/icon_cart.svg);
}

a.btn_icon.shop:hover::before{
  background: #C92B0F;
}

#footer small{
  display: block;
  text-align: center;
	font-size: 1.3rem;
	border-top: 1px solid #aaa;
}

#footer_cta{
  display: none;
}

@media screen and (max-width: 1250px){
  #footer .inner{
    width: auto;
    margin: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #footer{
    padding-top: 20px;
  }
  #footer .inner{
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 20px;
  }
  #footer .inner .logo{
    width: 120px;
  }
  .fnav{
    margin-top: 20px;
    gap: 10px;
    line-height: 1.3;
  }
  .fnav li{
    gap: 5px;
  }
  .fnav li a{
    font-size: 1.3rem;
  }
  .footer_btn {
    width: 150px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .footer_btn li a{
    height: 38px;
    padding-left: 20px;
  }
  .footer_btn li a::before{
    width: 20px;
  }
  #footer small{
    padding: 6px 10px 40px 10px;
  }
  #footer_cta{
    width: 100vw;
    position: fixed;
    left: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #footer_cta li a{
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  a.btn_icon::before{
    width: 20px;
    aspect-ratio: 31 / 33;
    top: 50%;
    left: 20px;
    position: static;
    transform: translateY(0);
  }
}

/* 
-------------------------------------------------- */
.bg{
  background:#C92B0F;
}

.ttl{
  margin-bottom: 40px;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 500;
  color: #C92B0F;
}

.bg .ttl{
  color: #fff;
}

.ttl span{
  display: block;
  margin-bottom: 20px;
  font-size: 6rem;
  overflow-wrap: break-word;
  word-break: break-word;
  text-transform: uppercase;
}

.sec{
  padding: 160px 20px;
}

@media screen and (max-width: 767px){
  .ttl{
    font-size: 1.2rem;
  }
  .ttl span{
    margin-bottom: 10px;
    font-size: 3rem;
  }
  .sec{
    padding: 80px 15px;
  }
}

#mv{
  position: relative;
}

#mv::before{
  content: "";
  display: block;
  width: 100%;
  height: 423px;
  background: url(../img/home/mv.webp) no-repeat center bottom / auto 100%;
}

#mv .inner{
  position: relative;
  padding: 30px 30px 30px 80px;
}

#mv .inner .img1{
  width: 283px;
}

#mv .inner .img2{
  display: block;
  width: 600px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-59%);
}

@media screen and (max-width: 1100px){
  #mv::before{
    height: 35vw;
  }
  #mv .inner{
    padding: 30px 30px 30px 20px;
  }
  #mv .inner .img1{
    width: 29%;
    margin: 0;
  }
  #mv .inner .img2{
    width: 50%;
    right: 20px;
    margin: 0;
  }
}
@media screen and (max-width: 767px){
  .home{
    padding-top: 0;
  }
  #mv::before{
    height: auto;
    aspect-ratio: 76 / 37;
  }
  #mv .inner{
    padding: 8vw 15px;
  }
  #mv .inner .img1{
    width: 40vw;
    margin: 0 auto;
    position: static;
  }
  #mv .inner .img2{
    position: static;
    width: 100%;
    margin: 8vw auto 0 auto;
    transform: translateY(0);
  }
}

#aboutus{
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 90px 0;
}

#aboutus::after{
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  left: calc(50% - 600px);
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/home/aboutus.webp) no-repeat right center / cover;
  z-index: 0;
}

#aboutus .inner{
  position: relative;
  padding: 0 50px;
  color: #fff;
  z-index: 1;
}

#aboutus .inner .btn{
  margin: 30px 0 0 0;
}

#aboutus .inner .btn a{
  color: #fff;
  background: none!important;
  border: 1px solid #fff;
}

#aboutus .inner .btn a:hover{
  background: rgba(255,255,255,.12)!important;
}

#aboutus .inner .btn a::before{
  border-color: transparent transparent transparent #fff;
}

@media screen and (max-width: 1100px){
  #aboutus::after{
    background-position: 70% center;
  }
}
@media screen and (max-width: 767px){
  #aboutus{
    padding: 0 15px;
  }
  #aboutus::after{
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 152 / 74;
    background: url(../img/home/aboutus_sp.webp) no-repeat right center / cover;
  }
  #aboutus .inner{
    padding: 0 0 50px 0;
  }
}

#concept{
  color: #fff;
}

#concept .inner{
  display: grid;
  grid-template-columns: 1fr 48%;
  align-items: center;
  gap: 30px;
}

#concept .inner .txt h3{
  font-size: 3rem;
  margin-bottom: 15px;
}

#concept .inner .txt p{
  line-height: 2.2;
}

@media screen and (max-width: 767px){
  #concept{
    padding-top: 30px;
  }
  #concept .inner{
    grid-template-columns: 1fr;
    gap: 0;
  }
  #concept .inner .txt h3{
    font-size: 1.85rem;
    margin-bottom: 15px;
  }

  #concept .inner .txt p{
    line-height: 1.8;
  }
}

#news .inner{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 70px;
}

#news .inner ul{
  border-top: 1px solid #aaa;
}

.news_list li{
  border-bottom: 1px solid #aaa;
}

.news_list li a{
  padding: 20px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
}

.news_list li a time{
  flex: 0 1 auto;
}

.news_list li a p{
  flex: 1 1 0%;
}

@media screen and (max-width: 767px){
  #news .inner{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .news_list li:nth-child(n+4) {
    display: none;
  }
  .news_list li a{
    padding: 15px 0;
    gap: 15px;
  }
}

.business_list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  border: 2px solid #fff;
}

.business_list li{
  display: flex;
  flex-direction: column;
}

.business_list li:not(:last-child) {
  border-right: 2px solid #fff;
}

.business_list li .img{ 
  display: block;
  aspect-ratio: 300 / 280;
  overflow: hidden;
}

.business_list li .img img{
	display: block;
	width: 100%!important;
	height: 100%!important;
	margin: 0!important;
	object-fit: cover!important;
}

.business_list li .wrap{
  display: flex;
  flex-direction: column;
  flex: 1;
  color: #fff;
  padding: 15px 20px;
  line-height: 1.5;
}

.business_list li .wrap h3{
  font-size: 2rem;  
}

.business_list li .txt{
  margin-bottom: 10px;
}

.business_list li .btn{
  margin-top: auto;
}

.business_list li .btn a{
  min-height: 46px;
  padding: 8px 40px 8px 30px;
}

@media screen and (max-width: 900px){
  .business_list{
    grid-template-columns: 1fr 1fr;
    border: none;
  }
  .business_list li {
    border: 2px solid #fff!important;
  }
  .business_list li:nth-child(1),
  .business_list li:nth-child(2){
    border-bottom: none!important;
  }
  .business_list li:nth-child(1),
  .business_list li:nth-child(3){
    border-right: none!important;
  }
}
@media screen and (max-width: 767px){
  .business_list{
    grid-template-columns: 1fr;
  }
  .business_list li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    border: 1px solid #fff!important;
    border-bottom: none!important;
  }
  .business_list li:nth-child(1),
  .business_list li:nth-child(2),
  .business_list li:nth-child(3){
    border: 1px solid #fff!important;
    border-bottom: none!important;
  }
  .business_list li:last-child{
    border-bottom: 1px solid #fff!important;
  }
  .business_list li .img{
    flex: 0 1 38%;
    aspect-ratio: 270 / 372;
  }

  .business_list li .wrap{
    flex: 1 1 0%;
  }
  .business_list li:nth-child(even) .wrap{
    order: -2;
  }
  .business_list li .btn{
    margin: 10px 0 0 0;
  }
  .business_list li .btn a{
    min-height: 32px;
    padding: 5px 30px 5px 20px;
  }
}

#product .inner{
  position: relative;
}

#product .inner .btn{
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
}

.product_list{
  margin-top: 20px;
  display: grid;
	grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  color: #C92B0F;
  font-size: 2rem;
}

.product_list li .img{
  margin-bottom: 10px;
  border: 1px solid #DBDBDB;
}

.product_list li a:hover{
  opacity: 0.8;
}

@media screen and (max-width: 767px){
  #product .inner .btn{
    margin: 30px auto 0 auto;
    position: static;
  }
  .product_list{
    grid-template-columns: 1fr;
    gap: 30px;
    font-size: 1.5rem;
  }
}

.faq_list li{
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
}

.faq_list li p{
  display: flex;
  gap: 20px;
}

.faq_list li p.a{
  margin-top: 10px;
}

.faq_list li p::before{
  content: "Q.";
  color: #C92B0F;
  font-size: 2rem;
}

.faq_list li p.a::before{
  content: "A.";
}


@media screen and (max-width: 767px){
  .faq_list li{
    margin-bottom: 10px;
    padding: 15px;
  }

  .faq_list li p{
    gap: 15px;
  }
  .faq_list li p::before{
    font-size: 1.3rem;
  }
}

main{
  padding-bottom: 80px;
}

.page_body{
  padding: 0 20px;
}

.page_body .main_ttl{
  text-align: center;
  margin-bottom: 100px;
}