<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;family=Work+Sans:ital,wght@0,100..900;1,100..900&amp;display=swap');

*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

*::before,
*::after{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

body{
  color: #000;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Noto Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.work_sans{
  font-family: "Work Sans", sans-serif;
}


img{
  display: block;
  object-position: center;
}

#body_wrap{
  overflow: hidden;
}


a{
  color: #000;
}

.fax a{
  pointer-events: none;
}

@media (any-hover:hover){
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*
------------------------------------
ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³é–¢ä¿‚
------------------------------------
*/

.common_hover_opa{
  transition: 0.4s;
}


@media (any-hover:hover){
  .common_hover_opa:hover{
    opacity: 0.5;
  }
  
}


/*
------------------------------------
å…±é€šãƒ‘ãƒ¼ãƒ„
------------------------------------
*/
.container{
  max-width: 1020px;
  margin:0 auto;
}

/*
------------------------------------
ãƒ˜ãƒƒãƒ€ãƒ¼
------------------------------------
*/

header{
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  z-index: 20;
  pointer-events: none;
}

header .header_innder{
  padding:40px 50px 0;
}

header .header_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header_logo{
  display: block;
  width:250px;
  pointer-events: auto;
} 

header .header_logo img{
  width: 100%;
}

header .drawer_open{
  pointer-events: auto;
  cursor: pointer;
}

header .drawer_open_inner{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width:70px;
  height:30px;
  cursor: pointer;
  }

header .drawer_open .bar{
  width:56px;
  height:2px;
  background-color: #CF200E;
  transition-duration: 0.5s;
}

header .drawer_open .bar01{
  margin-left: auto;
}
header .drawer_open .bar02{
  margin:0 auto;
}
header .drawer_open .bar03{
  margin-left: 0;
}

header .drawer_open.active .bar{
  margin:0 auto;
  height:4px;
}

header .drawer_open.active .bar01 {
  transform: translateY(12.8px) rotate(-45deg);
  
}
header .drawer_open.active .bar02 {
  display: none;
}
header .drawer_open.active .bar03 {
  transform: translateY(-12.8px) rotate(45deg);
}


#drawer_menu{
  position: fixed;
  z-index: 18;
  top:0;
  /* right:-600px;
  width:600px; */
  right:-500px;
  width:500px;
  max-width: 100%;
  height: calc(100vh); 
  height: calc(var(--vh2, 1vh) * 100);
  background-color: #fff;
  transition-duration: 0.7s;
  opacity: 0;
  pointer-events: none;
}

#drawer_menu.show{
  opacity: 1;
  pointer-events: auto;
  right:0;
}

#drawer_menu .drawer_inner{
  height:100%;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#drawer_menu .drawer_inner::-webkit-scrollbar {  
  display: none;
}

#drawer_menu .drawer_contents_frame{
  
}  

#drawer_menu .drawer_contents{
  min-height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;

}


#drawer_menu .drawer_nav li + li{
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#drawer_menu .drawer_nav a{
  color: #cf200e;
  text-align: center;
}

#drawer_menu .drawer_nav .ja_title{
  /* font-size: 40px; */
  font-size: 24px;
  
  line-height: 1;
}

#drawer_menu .drawer_nav .en_title{
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  /* font-size: 20px; */
  font-size: 15px;
  line-height: 1;
  margin-top: 12px;
}



/*
------------------------------------
ãƒ•ãƒƒã‚¿ãƒ¼
------------------------------------
*/
footer{
  padding-top: 60px;
  padding-bottom: 20px;
  background-color: #CF200E;
}


footer .footer_inner{
  max-width: 1920px;
  margin:0 auto;
  padding-left: 5%;
  padding-right: 5%;

}

footer .footer_flex{
  display: flex;
  justify-content: space-between;
}

footer .footer_logo{
  display: block;
  width: 245px;
  margin:0 auto;
} 
footer .footer_logo img{
  width: 100%;
}

footer .footer_address{
  margin-top: 40px;
  
  color: #fff;
  line-height: 1.4;
}

footer .footer_tel{
  margin-top: 8px;
  color: #fff;
  line-height: 1.4;
}

footer .footer_tel a{
  color:#fff;
}

footer .footer_right{
  padding-top: 24px;
  padding-right: 5%;
}

footer .footer_nav ul{
  display: flex;
  align-items: flex-start;
} 

footer .footer_nav ul li{
  margin-left: 48px;
}

footer .footer_nav ul li a{
  line-height: 1.4;
  color: #fff;
}


footer .privacy{
  margin-top: 96px;
  text-align: right;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  
}

footer .privacy a{
  color: #fff;
}

footer .copy{
  margin-top: 6px;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1.3;
  color: #fff;

} 

/*
------------------------------------
ãƒ­ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°ç”»é¢
------------------------------------
*/
.loading_section{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  /* opacity: 0;
  pointer-events: none; */
}

.loading_section.show{
  opacity: 1;
  pointer-events: auto;
  transition-duration: 0.7s;
}

.loading_section.show.vanish{
  opacity: 0;
  pointer-events: none;
  transition-delay: 1.5s;
}

.loading_section.vanish02{
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.1s;
}

.loading_section .logo_flex{
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading_section .logo_frame{
  width:130px;
  opacity: 0;
}

.loading_section .logo_frame.show{
  opacity: 1;
}


.loading_section .logo_frame svg{
  width:100%;
}

.loading_section .logo_frame svg path{
  width: 100%;
  fill-opacity: 0; /*é€éŽ0ã§å¡—ã‚Šã®è‰²ãŒè¦‹ãˆãªã„çŠ¶æ…‹*/
  transition: fill-opacity .7s; /*0.5ç§’ã§è‰²ãŒä»˜ãã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³*/
  fill: none; /*å¡—ã‚Šã®è‰²*/
  stroke: #cf000e;
}

.loading_section .text_frame{
  margin-left: 5px;
  transition-duration: 0.7s;
  opacity: 0;
  width: 0;
}
.loading_section .text_frame img{
  height:50px;
}


.loading_section.svg_anime_finish .logo_frame{
  width:65px;
  transition-duration: 0.7s;
}

.loading_section.svg_anime_finish .logo_frame svg path{
  fill:#cf000e;
  fill-opacity: 1; 
  stroke: none;
}

.loading_section.svg_anime_finish .text_frame{
  opacity: 1;
  width: auto;
}

/*
------------------------------------
ãƒšãƒ¼ã‚¸æœ€ä¸‹éƒ¨
------------------------------------
*/
.common_bottom_section{
  padding-top:calc(430 / 1920 * 100vw);
  position: relative;
} 

.common_bottom_section p{
  text-align: right;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  /* font-size: 130px; */
  font-size: calc(130 / 1920 * 100vw);
  letter-spacing: 0.02em;
  line-height: 1;
  color: #aaa5a5;
  opacity: 0.2;
}

/*
------------------------------------
ãƒˆãƒƒãƒ—ãƒšãƒ¼ã‚¸
------------------------------------
*/

body.top_body{
  
}

body.top_body .common_bread_section{
  display: none;
}

main.top_main{

}

.top_section{

}

.top_mv_section{
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.top_mv_section .mv_slide_frame{
  height:100%;
  position: relative;
  overflow: hidden;
}

.top_mv_section .mv_slide_frame .mv_slide{
  position: absolute;
  left:0;
  top:0;
  z-index: 1;
  width: 100%;
  height:100%;
  transition-duration:2s;
  opacity: 0;
  pointer-events: none;
}

.top_mv_section .mv_slide_frame .mv_slide.show{
  opacity: 1;
  pointer-events: auto;
}

.top_mv_section .mv_slide_frame .mv_slide img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.top_mv_section .mv_slide_frame .mv_slide.scale img{
  transition-duration: 20s;
  scale:1.2;
}

.top_mv_section .text_roop_frame{
  position: absolute;
  width: auto;
  min-width: 100%;
  z-index: 2;
  left:0;
  bottom:-60px;
  white-space: nowrap;
}

.top_mv_section .text_roop_item{
  animation: text_loop 20s linear infinite;
}

@keyframes text_loop {
  0%{
    transform: translateX(100vw);
  }
  100%{
    transform: translateX(-100%);
  }
}


.top_mv_section .text01{
  font-size: 36px;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.top_mv_section .text02{
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 200px;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #cf200e;
}

.top_future_section{
  padding-top: 530px;
  padding-bottom: 10px;
  overflow: hidden;
}

.top_future_section .contents_frame{
  width: fit-content;
  margin:0 auto;
  position: relative;
  letter-spacing: 0;
  line-height: 1;
  color: #cf200e;
}

.top_future_section .contents_frame::before{
  content:'';
  width:100vw;
  height:1000px;
  background-color:#F5F5F5 ;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index:-10;
}

.top_future_section .future_item{
  position: absolute;
  border-radius: 10px;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
  object-fit: cover;
}

.top_future_section .future_item01{
  width:267px;
  aspect-ratio: 1/1.486;
  top:-130px;
  left:-410px;
  transform: translate(-200px, -100px);
  filter: grayscale(100%);
}

.top_future_section .future_item02{
  width:184px;
  aspect-ratio: 1/1.298;
  top:-340px;
  left:-15px;
  transform: translate(-100px, -150px);
}
.top_future_section .future_item03{
  width:380px;
  aspect-ratio: 1/0.7;
  top:-310px;
  left:397px;
  transform: translate(100px, -150px);
}
.top_future_section .future_item04{
  width:111px;
  aspect-ratio: 1/1.2;
  top:28px;
  left:874px;
  transform: translate(100px, 50px);
  filter: grayscale(100%);
}
.top_future_section .future_item05{
  width:265px;
  aspect-ratio: 1/0.72;
  top:227px;
  left:630px;
  transform: translate(200px, 100px);
}
.top_future_section .future_item06{
  width:147px;
  aspect-ratio: 1/1.13;
  top:184px;
  left:358px;
  transform: translate(100px, 150px);
  filter: grayscale(100%);
}

.top_future_section .future_item07{
  width:281px;
  aspect-ratio: 1/0.74;
  top:184px;
  left:-15px;
  transform: translate(-200px, 50px);
}


.top_future_section .anime_active .future_item{
  transform: translate(0, 0);
}

.top_future_section .anime_active + .future_item{
  transform: translate(0, 0);
}

.top_future_section .text01{
  display: flex;
  align-items: center;
  font-size: 50px;
  
}

.top_future_section .text01 img{
  width:326px;
  margin-left: 8px;
}

.top_future_section .text02{
  margin-top: 12px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
}

.top_future_section .message_text{
  margin-top: 372px;
  font-size: 18px;
  line-height: 1.4;
}



.top_philo_section{
  padding-top: 180px;
}

.top_philo_section .sec_title{
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 90px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: left;
  color: #cf200e;
}

.top_philo_section .philo_frame{
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
} 

.top_philo_section .philo_block{
  position: relative;
  width:730px;
  padding: 72px 40px;
  color:#fff;
} 

.top_philo_section .philo_block::before{
  content:'';
  width: 280px;
  height:280px;
  background-image: url('../img/common/logo_gray.svg');
  position: absolute;
  z-index: -3;
  left:-250px;
  top:90px;
}

.top_philo_section .philo_block::after{
  content:'';
  width:100vw;
  height:100%;
  background-color: #CF200E;
  border-radius: 15px 0 0 15px;
  position: absolute;
  z-index: -1;
  left:0;
  top:0;
}

.top_philo_section .philo_block .philo_head{
  font-size: 30px;
  line-height: 1.3;
}

.top_philo_section .philo_block .philo_text{
  margin-top: 56px;
  font-size: 20px;
  line-height: 1.4;
}

.top_service_section{
  padding-top: 200px;
  padding-bottom: 200px;
}

.top_service_section .sec_title{
  color:#CF200E;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.top_service_section .sec_title .en_title{
  font-size: 60px;
}

.top_service_section .sec_title .ja_title{
  margin-top: 8px;
  font-size: 20px;
}

.top_service_section .service_list{
  position: relative;
  height:475px;
  margin-top: 40px;
}

.top_service_section .service_block{
  position: absolute;
  top:0;
  width:auto;
  height:100%;
  transition-delay: 0.7s;
  z-index: 1;
}

.top_service_section .service_block .service_inner{
  position: relative;
  width:510px;
  height:100%;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}

.top_service_section .service_block .service_inner::before{
  content:'';
  width:100%;
  height:100%;
  position: absolute;
  top:0;
  left:0;
  z-index:-1;
  filter: grayscale(100%);
}

@media(any-hover:hover){
  .top_service_section .service_block:hover{
    z-index: 3;
    transition-delay: 0s;
  }
  
  .top_service_section .service_block:hover .service_inner{
    width:1020px;
  }
}


.top_service_section .service_block01{
  left:0;
}
.top_service_section .service_block01 .service_inner::before{
  background-image: url('../img/top/top_service01.jpg');

}

.top_service_section .service_block02{
  right:0;
}
.top_service_section .service_block02 .service_inner::before{
  background-image: url('../img/top/top_service02.jpg');
  background-position: left;
}


.top_service_section .service_block .service_title{
  position: absolute;
  left:32px;
  bottom:32px;
  white-space: nowrap;
  color:#CF200E;
}

.top_service_section .service_block .service_title01{
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 60px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.top_service_section .service_block .service_title02{
  margin-top: 10px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.top_news_section{
  padding-top: 48px;
  padding-bottom: 72px;
  background-color: #F6F5F5;
}

.top_news_section .flex{
  display: flex;
  align-items: flex-start;
}

.top_news_section .flex .left{
  width:360px;
  flex-shrink: 0;
  padding-left: 32px;
}

.top_news_section .sec_title{
  color:#CF200E;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.top_news_section .sec_title .en_title{
  font-size: 60px;
}

.top_news_section .sec_title .ja_title{
  margin-top: 8px;
  font-size: 20px;
}

.top_news_section .flex .right{
  width: 100%;
  padding-top: 24px;
}

.top_news_section .news_list li + li{
  margin-top: 40px;
} 

.top_news_section .news_list .news_date{
  font-size: 20px;
  line-height: 1;
}  

.top_news_section .news_list .news_title{
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.3;
}


/*
------------------------------------
ä¸‹å±¤mv
------------------------------------
*/

.page_mv_section{
  position: relative;
  height:min(calc(780 / 1920 * 1920px) , calc(780 / 1920 * 100vw));
}

.page_mv_section::before{
  content:'';
  width: calc(1213 / 1920 * 100vw);
  height:min(calc(873 / 1920 * 1920px) , calc(873 / 1920 * 100vw));
  position: absolute;
  right:0;
  top:0;
  z-index: 1;
  border-radius: 10px 0 0 10px;
}

.page_mv_section .page_title_set{
  position: relative;
  z-index: 2;
  top:min(calc(370 / 1920 * 1920px) , calc(370 / 1920 * 100vw));
  left:calc(180 / 1920 * 100vw);
  font-family: 'Work Sans', sans-serif;
  line-height: 1;
}

.page_mv_section .page_title_set .en_title{
  font-weight: 600;
  font-size: 80px;
  letter-spacing: 0.03em;
  color: #cf200e;
}

.page_mv_section .page_title_set .ja_title{
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #2d2d2d;
  margin-top: 24px;
}

/*
------------------------------------
ãƒ‘ãƒ³ã‚¯ã‚º
------------------------------------
*/

.common_bread_section{
  position: absolute;
  z-index: 1;
  left:72px;
  bottom:40px;
}

.common_bread_section .bread_list{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap:8px;
  line-height: 1.2;
  letter-spacing: 0;
}

.common_bread_section .bread_list a{
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .common_bread_section .bread_list a:hover{
    opacity: 0.5;
  }
}


/*
------------------------------------
ä¼šç¤¾æ¡ˆå†…
------------------------------------
*/

body.company_body{
  
}

main.company_main{

}

.company_mv_section::before{
  background-image: url('../img/company/company_mv.jpg');
}

.company_section01{
  background-color: #F5F5F5;
}

.company_section01 .container{
  padding-top: 180px;
  padding-bottom: 150px;
  position: relative;
}

.company_section01 .container::after{
  content:'';
  width:200px;
  height:200px;
  background-image: url('../img/common/logo_red.svg');
  position: absolute;
  right:0;
  bottom:-100px;
  z-index: 1;
}

.company_section01 .sec_title{
  font-size: 50px;
  text-align: left;
  line-height: 1.4;
}

.company_section01 .p01{
  margin-top: 48px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
}

.company_greeting_section{
  padding-top: 380px;
}

.company_greeting_section .sec_title_set{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color:#CF200E;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 600;
}

.company_greeting_section .sec_title_set .ja_title{
  font-size: 20px;
}

.company_greeting_section .sec_title_set .en_title{
  font-size: 60px;
  margin-top: 6px;
}

.company_greeting_section .greeting_frame{
  display: flex;
  justify-content: flex-end;
}

.company_greeting_section .greeting_block{
  width:700px;
  padding:72px 40px 64px 140px;
  position: relative;
}

.company_greeting_section .greeting_block::after{
  content:'';
  width:100vw;
  height:100%;
  background-color: #F6F5F5;
  border-radius: 15px 0 0 15px;
  position: absolute;
  z-index: -1;
  top:0;
  left:0;
}

.company_greeting_section .greeting_pic{
  position: absolute;
  width:408px;
  top:-288px;
  left:-322px;
}

.company_greeting_section .greeting_text01{
  font-size: 18px;
  line-height: 1.5;
}

.company_greeting_section .greeting_text02{
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.5;
}

.company_overview_section{
  padding-top: 220px;
}

.company_overview_section .sec_title_set{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: fit-content;
  color:#CF200E;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 600;
}

.company_overview_section .sec_title_set .ja_title{
  font-size: 20px;
}

.company_overview_section .sec_title_set .en_title{
  font-size: 60px;
  margin-top: 6px;
}

.company_overview_section .overview_frame{
  display: flex;
  justify-content: flex-end;
  margin-top: 72px;
}

.company_overview_section .overview_list{
  width:700px;
}

.company_overview_section .overview_list li{
  display: flex;
  align-items: flex-start;
  padding:20px 0;
  border-bottom:1px solid #BEBEBE;
}


.company_overview_section .overview_list .overview_title{
  flex-shrink: 0;
  width:170px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: #282828;
  text-align: center;
}

.company_overview_section .overview_list .overview_contents{
  width: 100%;
  font-family: "Noto Sans";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  padding:0 40px;
}

/*
------------------------------------
ã‚µãƒ¼ãƒ“ã‚¹
------------------------------------
*/

body.service_body{
  
}

main.service_main{

}

.service_mv_section::before{
  background-image: url('../img/service/service_mv.jpg');
}

.service_section01{
  background-color: #F5F5F5;
}

.service_section01 .container{
  padding-top: 180px;
  padding-bottom: 120px;
  position: relative;
}

.service_section01 .container::after{
  content:'';
  width:200px;
  height:200px;
  background-image: url('../img/common/logo_red.svg');
  position: absolute;
  right:0;
  bottom:-28px;
  z-index: 13;
}

.service_section01 .sec_title{
  font-size: 50px;
  text-align: left;
  line-height: 1.4;
}

.service_section01 .p01{
  margin-top: 48px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
}

.service_section01 .swiper_block{
  overflow: hidden;
}

.service_section01 .service_wrapper {
  transition-timing-function: linear;
}

.service_section01 .service_slide{
  width: 450px;
}

.service_section01 .service_slide img{
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.service_info_section{
  padding-top: 230px;
}

.service_info_section .service_area{
  position: relative;
}

.service_info_section .service_num{
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 80px;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #cf200e;
}

.service_info_section .service_head_set{
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.service_info_section .service_head_set .service_head01{
  font-size: 40px;

}
.service_info_section .service_head_set .service_head02{
  margin-top: 8px;
  font-size: 20px;
}

.service_info_section .service_frame{
  margin-top: 16px;
  display: flex;
}

.service_info_section .service_block{
  width:700px;
  position: relative;
  padding-top: 72px;
  padding-bottom: 80px;
} 

.service_info_section .service_block::before{
  content:'';
  width:100vw;
  height:100%;
  background-color:#F6F5F5 ;
  position: absolute;
  top:0;
  z-index:-2;
  border-radius: 15px;
}

.service_info_section .service_title{
  font-size: 30px;
  line-height: 1.3;
}

.service_info_section .service_text{
  margin-top: 26px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}

.service_info_section .service_area01{
  padding-top:80px;
}


.service_info_section .service_area01 .service_img01{
  position: absolute;
  width:540px;
  left:36px;
  top:0;
}

.service_info_section .service_area01 .service_num{
  display: flex;
  justify-content: flex-end;
  padding-right: 350px;
}

.service_info_section .service_area01 .service_head_set{
  align-items: flex-end;
}

.service_info_section .service_area01 .service_frame{
  justify-content: flex-end;
}

.service_info_section .service_area01 .service_block{
  padding-left: 72px;
  padding-right: 96px;
}

.service_info_section .service_area01 .service_block::before{
  left:0;
}


.service_info_section .service_area02{
  padding-top:36px;
  margin-top: 120px;
}

.service_info_section .service_area02 .service_img02{
  position: absolute;
  width:408px;
  right:0;
  top:0;
}

.service_info_section .service_area02 .service_num{
  display: flex;
  padding-left: 334px;
}

.service_info_section .service_area02 .service_head_set{
  align-items: flex-start;
}

.service_info_section .service_area02 .service_block{
  padding-right: 72px;
  padding-left: 96px;
}

.service_info_section .service_area02 .service_block::before{
  right:0;
}

/*
------------------------------------
ãƒ—ãƒ©ã‚¤ãƒã‚·ãƒ¼ãƒãƒªã‚·ãƒ¼
------------------------------------
*/

body.privacy_body{
  
}

main.privacy_main{

}

.privacy_mv_section::before{
  background-image: url('../img/privacy/privacy_mv.jpg');
}

.privacy_section01{
  background-color: #F5F5F5;
}

.privacy_section01 .container{
  padding-top: 180px;
  padding-bottom: 90px;
  position: relative;
}

.privacy_section01 .container::after{
  content:'';
  width:232px;
  height:232px;
  background-image: url('../img/common/logo_gray.svg');
  position: absolute;
  right:0;
  bottom:-116px;
  z-index: 13;
}

.privacy_section01 .p01{
  font-size: 14px;
  line-height: 2;
}

.privacy_section02{
  padding-top: 80px;
  letter-spacing: 0.1em;
  line-height: 2;
}

.privacy_section02 * + .privacy_head{
  margin-top: 28px;
}

.privacy_section02 .privacy_text{
  margin-top: 16px;
  font-size: 14px;
}

/*
------------------------------------
ãŠå•ã„åˆã‚ã›
------------------------------------
*/

body.contact_body{
  
}

main.contact_main{

}

.contact_mv_section::before{
  background-image: url('../img/contact/contact_mv.jpg');
}

.contact_section01{
  background-color: #F5F5F5;
}

.contact_section01 .container{
  padding-top: 200px;
  padding-bottom: 80px;
  position: relative;
}

.contact_section01 .container::after{
  content:'';
  width:200px;
  height:200px;
  background-image: url('../img/common/logo_red.svg');
  position: absolute;
  right:-110px;
  bottom:-28px;
  z-index: 13;
}

.contact_section01 .p01{
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
}

.contact_form_section{
  padding-top: 200px;
}

.contact_form_section .form_block{
  max-width: 750px;
  margin:0 auto;
}

.contact_form_section .form_line + .form_line{
  margin-top: 24px;
}

.contact_form_section .form_title{
  font-size: 18px;
  line-height: 1.2;
}

.contact_form_section .form_contents{
  margin-top: 12px;
}

.contact_form_section .form_contents input[type="text"],
.contact_form_section .form_contents input[type="email"],
.contact_form_section .form_contents input[type="tel"],
.contact_form_section .form_contents input[type="number"],
.contact_form_section .form_contents select,
.contact_form_section .form_contents textarea{
  border:none;
  background:none;
  border-radius: 0;
  display: block;
  width: 100%;
  height:45px;
  border:1px solid #707070;
  padding:0 16px;
  font-size: 18px;
  color:#000;
}

.contact_form_section .form_contents select{
  padding:0 16px;
}

.contact_form_section .form_contents textarea{
  height:175px;
  padding:16px;
}

.contact_form_section .privacy_area{
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-weight: 400;
  position: relative;
  gap:0 10px
}

.contact_form_section .privacy_area input{
  display: block;
  width:18px;
  height:18px;
  margin-top: 2px;
}

.contact_form_section .privacy_area .wpcf7-list-item-label{
  display: none;
}

.contact_form_section .privacy_area .wpcf7-not-valid-tip{
  position: absolute;
  text-align: center;
  top:calc(100% + 6px);
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.contact_form_section .privacy_area a{
  text-decoration: underline;
}

@media(any-hover:hover){
  .contact_form_section .privacy_area a:hover{
    text-decoration: none;
  }
}
.contact_form_section .submit_frame{
  margin-top: 48px;
}

.contact_form_section .submit_frame input{
  border:none;
  background:none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:0 auto;
  width: 198px;
  height: 49px;
  background-color: #cf200e;
  border:2px solid #cf200e;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .contact_form_section .submit_frame input:hover{
    background-color: #fff;
    color: #cf200e;
  }
}


/*
------------------------------------
ãƒ‹ãƒ¥ãƒ¼ã‚¹
------------------------------------
*/

body.archive_news_body{
  
}

main.archive_news_main{

}

.archive_news_mv_section::before{
  background-image: url('../img/news/news_mv.jpg');
}

.archive_news_section01{
  height:215px;
  background-color: #CF200E;
  position: relative;
}

.archive_news_section01::after{
  content:'';
  width: 232px;
  height:232px;
  background-image: url('../img/common/logo_gray.svg');
  position: absolute;
  left:calc(50% + 586px);
  bottom:-150px;
}

.archive_news_section02{
  padding-top: 108px;
}

.archive_news_section02 .news_list{
  display: flex;
  flex-wrap: wrap;
  gap:30px;
}

.archive_news_section02 .news_item{
  width:320px;
}

.archive_news_section02 .news_card{
  display: block;
  width: 100%;
  height:100%;
  padding:16px 12px;
  border:1px solid #707070;
  border-radius: 10px 10px 0 0;
}
.archive_news_section02 .news_card .thumb{
  aspect-ratio: 1 / 0.72;
}

.archive_news_section02 .news_card .thumb img{
  width: 100%;
  height:100%;
  object-fit: cover;
}

.archive_news_section02 .news_card .thumb .def_thumb{
  width: 100%;
  height:100%;
  background-color: #F5F5F5;
}

.archive_news_section02 .news_card .news_body{
  padding-top: 10px;
}

.archive_news_section02 .news_card .news_date{
  font-size: 12px;
  line-height: 1;
}

.archive_news_section02 .news_card .news_title{
  margin-top: 10px;
  line-height: 1.3;
  min-height: 44px;
}

.archive_news_section02 .news_card .news_category{
  width: fit-content;
  padding:5px 10px;
  margin-top: 12px;
  background-color: #CF200E;
  font-size: 12px;
  line-height: 1.3;
  color: #fff;

}


.common_pagenation{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:16px;
  margin-top: 48px;
}


.common_pagenation span.current{/*ç¾åœ¨ã®ãƒšãƒ¼ã‚¸ãƒœã‚¿ãƒ³*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #d12a19;
  color: #fff;
}

.common_pagenation a.page-numbers{/*æŒ‡å®šã®ãƒšãƒ¼ã‚¸ç§»å‹•ãƒœã‚¿ãƒ³*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #d12a19;
  border:2px solid #d12a19;
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .common_pagenation a.page-numbers:hover{
    background-color: #d12a19;
    color:#fff;
  }
}


/*
------------------------------------
ãƒ‹ãƒ¥ãƒ¼ã‚¹è©³ç´°
------------------------------------
*/

body.single_news_body{
  
}

main.single_news_main{

}

.single_news_mv_section::before{
  background-image: url('../img/news/news_mv.jpg');
}


.single_news_section01{
  height:215px;
  background-color: #CF200E;
  position: relative;
}

.single_news_section01::after{
  content:'';
  width: 232px;
  height:232px;
  background-image: url('../img/common/logo_gray.svg');
  position: absolute;
  left:calc(50% + 586px);
  bottom:-150px;
}

.single_news_section02{
  padding-top: 80px;
}

.single_news_section02 .flex{
  display: flex;
  align-items: flex-start;
}

.single_news_section02 .left{
  padding-top: 130px;
  width: 100%;
}

.single_news_section02 .news_title{
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-align: left;
}

.single_news_section02 .news_date{
  margin-top: 32px;  
}

.single_news_section02 .news_category_frame{
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}

.single_news_section02 .news_category{
  font-size: 12px;
  line-height: 1.3;
  color: #fff;
  padding:5px 8px;
  background-color: #CF200E;
}

.single_news_section02 .right{
  flex-shrink: 0;
  width:556px;
  margin-left: 56px;
}

.single_news_section02 .right img{
  width: 100%;
}


.single_news_section02 .common_single_frame{
  margin-top: 88px;
}

.common_single_frame h2{
  font-size: 22px;
  list-style: 1.4;
  font-weight: bold;
}

.common_single_frame p{
  font-weight: bold;
  line-height: 1.9;
}

.common_single_frame * + h2{
  margin-top: 40px;
}

.common_single_frame * + p{
  margin-top: 24px;
}

.common_single_frame .wp-block-image{
  margin-top: 32px;

}

.common_single_frame .wp-block-image img{
  max-width: 100%;
}


.single_news_section02 .link_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 56px;
}

.single_news_section02 .link_flex a{
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .single_news_section02 .link_flex a:hover{
    opacity: 0.5;
  }
}

.single_news_section02 .link_flex .archive_link{
  width: 100px;
  height: 24px;
  background: #cf200e;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

.single_news_section02 .link_flex .link{
  width: 30px;
}

.single_news_section02 .link_flex .link a{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #cf200e;
  height: 30px;
}

.single_news_section02 .link_flex .link_prev a::after{
  content:'';
  width:0;
  height:0;
  border-style:solid;
  border-width: 6.5px 14px 6.5px 0;
  border-color: transparent #FFFFFF transparent transparent;
}

.single_news_section02 .link_flex .link_next a::after{
  content:'';
  width:0;
  height:0;
  border-style:solid;
  border-width: 6.5px 0 6.5px 14px;
  border-color: transparent transparent transparent #FFFFFF;
}</pre></body></html>