@charset "utf-8";
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,button,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,summary,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video,*::before,*::after{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}img{vertical-align:bottom}
/* ===============================================
# common
=============================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  font-size: 62.5%;
  color: var(--font-black);
  -webkit-text-size-adjust: 100%;}
body{
  padding: 0;
  word-wrap : break-word;
  overflow-wrap : break-word;
  color: var(--font-black);
  font-size:1.6rem;  
  font-weight: 400;
  line-height: 2;
  font-family: var(--font-main);
  animation: PageIn 1.3s ease 0s 1 normal;
  -webkit-text-size-adjust: 100%;
}
@keyframes PageIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@-webkit-keyframes PageIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.wrapper{
  position: relative;  
  width: 100%;
}
.inner{
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}
a,
a:link,
a:visited{
  color: var(--main-color);
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}
img[src*=".svg"] {
  width: 100%; 
}
button{
  width: 100%;
  text-align: left;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;  
  color: var(--font-black);
  font-family: var(--font-main);
}
.for_pc{
  display: block;
  content-visibility: visible;
}
.for_sp{
  display: none;
  content-visibility: hidden;
}
span.for_pc,
br.for_pc,
img.for_pc{
  display: inline;
  content-visibility: visible;
}
span.for_sp,
br.for_sp,
img.for_sp{
  display: none;
  content-visibility: hidden;
}
.flex{
  display:flex;
}
@media (min-width :835px){
  .flex_pc{
    display:flex;
  }
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
@media screen and (max-width :834px){
  html{
    scroll-padding-top: 70px;
  }
  body{
    font-size:14px;
    font-size:1.4rem;  
    line-height: 1.86;
  }
  .inner{
    padding-left: 5.2%;
    padding-right: 5.2%;
  }    
  img{
    width: 100%;
    height: auto;
  }
  .for_pc{
    display: none;
    content-visibility: hidden;
  }
  .for_sp{
    display: block;
    content-visibility: visible;
  }
  span.for_pc,
  br.for_pc,
  img.for_pc{
    display: none;
    content-visibility: hidden;
  }
  span.for_sp,
  br.for_sp,
  img.for_sp{
    display: inline;
    content-visibility: visible;
  }
}

/*
 マウスオーバー
----------------------------------------------------------- */
.ov,.over{
  display:block;
  text-decoration: none;
  transition: all 0.5s ease;
  cursor: pointer;  
}
@media (hover: hover) and (pointer: fine) {
  .ov:hover{
    opacity: .5;
  }
}

/* main
----------------------------------------------------------- */
main{
  display: block;
  position: relative;
  /* overflow: hidden; */
}
@media screen and (max-width :834px) {
}

/* header
----------------------------------------------------------- */
#header{
  position: sticky;
  top: 0;
  background:#fff;
  z-index: 900;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.header_inner{
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 18px 0 1.56%; 
  font-size: clamp(14px, 0.833vw, 1.6rem);
  justify-content: space-between;  
  z-index: 2;
}
#header .logo img{
  width: 120px;
}

/* hidden_area_side */
#hidden_area_side{
  position: fixed;
  right: 0;
  top:231px;
  width: 88px;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  z-index: 700;
}
#hidden_area_side a{
  display: block;
  min-height: 88px;
  padding: 18px 0 0;
  text-align: center;
  color: var(--font-black);
  text-decoration: none;
  background: #fff;
}
#hidden_area_side li.app a{
  padding-top: 22px;
  background: var(--main-color);
  color: #fff;
}
#hidden_area_side a img{
  width: 32px;
  margin: 0 auto 3px;
}
#hidden_area_side a span{
  display: block;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.143;
}
@media (max-height :510px) and (min-width :1025px) {
  #hidden_area_side{
    top: auto;
    bottom: 0;
  }
}
@media (max-width :1024px) {
  #header{
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  }
  .header_inner{
    padding: 0;
    align-items: stretch;
    font-size: clamp(14px, 0.833vw, 1.6rem);    
    background-color: #fff;
  }
  #header .logo{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-left: 20px;
    background-color: #fff;
    width: 115px;
  }
  #header .logo img{
    width: 83px;
  }  
  /* hidden_area_side */
  #hidden_area_side{
    top: auto;
    bottom: 55px;
    width: 64px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  }
  #hidden_area_side a{
    min-height: 64px;
    padding: 7px 0 0;
  }
  #hidden_area_side li.app a{
    padding-top: 13px;
  }
  #hidden_area_side a img{
    width:24px;
    margin: 0 auto 3px;
  }
  #hidden_area_side a span{
    font-size: 1.1rem;
  }  
}
/* accessilens */
#uni-toolbar.uni-toolbar-disabled #style_selector{
  z-index: 700 !important;
}
#uni-toolbar #style_selector .style-toggle{
  top: 375px !important;
  left: 38px !important;
}
@media (max-height :510px) and (min-width :1025px) {
  #uni-toolbar #style_selector .style-toggle{
    top: auto !important;
    bottom: 10px;
  }
}
@media (max-width :1024px) {
  #uni-toolbar #style_selector .style-toggle{
    top: auto !important;
    bottom:55px !important;
    left: 13px !important;
  }  
}
/*gnav-------------------------------------------------------*/
#gnav{
  display: flex;
  margin-top: 9px;
  align-items: center;
  font-weight: 500;
  z-index: 1;
}
#gnav a{
  text-decoration: none;
  color: var(--font-black);
  transition: all 0.5s ease;
}
@media (hover: hover) and (pointer: fine) {
  #gnav a:hover{
    color: var(--main-color);
  }
}
@media (max-width :1024px) {
  #gnav{
    margin-top: 0;
    flex: 1;
  }  
}
/*list_gmenu-----------*/
.list_gmenu{
  display: flex;
  align-items: center;
  padding: 33px 0;
}
.list_gmenu > li > a{
  line-height: 1.2;
}
@media (min-width :1025px) {
  .list_gmenu > li+li{
    margin-left: 2.08vw;
  }
}
@media (max-width :1024px) {
  .list_gmenu{
    display: none;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    padding: 100px 5.2%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 0;
    background: #fff;
   }
  #header.is_open .list_gmenu{
    display: block;
  }
}
/*list_gtool-----------*/
.list_gtool{
  margin-left: 2.08vw;
  display: flex;
}
.list_gtool > .contact{
  position: relative;
  width: 8.33vw;
  max-width: 160px;
  min-width: 100px;
}
.list_gtool > .contact .txt_pop{
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translate(-50%,-100%);
  padding: 9px 7px 8px;
  background: #000000;
  color: #fff;
  line-height: 1;
  font-size: 1.2rem;
  border-radius: 8px;
  white-space: nowrap;
  text-box: trim-both cap alphabetic;
}
.list_gtool > .contact .txt_pop>span{
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1;
}
.list_gtool > .contact .txt_pop::after{
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,100%);
  content: '';
  width:0;
  height:0;
  border-style:solid;
  border-width: 5px 3px 0 3px;
  border-color: #000000 transparent transparent transparent;
}
.list_gtool > .contact a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  background: #ff9814;
  color: #fff !important;
  line-height: 1;
  border-radius: 23px;
  text-align: center;
  text-box: trim-both cap alphabetic;
}
.list_gtool > .search{
  width: 46px;
  margin-left: 0.83vw;
}

.list_gtool > li.btn{
  display: none;
  content-visibility:hidden;
}

@media (max-width :1024px) {
  .list_gtool{
    position: relative;
    z-index: 1;    
    width: 100%;
    margin-left: 0;
    align-items: center;
    justify-content: flex-end;
    background-color: #fff;
  }
  .list_gtool > .contact{
    width: 100px;
  }
  .list_gtool > .contact .txt_pop{
    display: none;
    content-visibility:hidden;
  }
  .list_gtool > .contact a{
    height: 32px;
    border-radius: 16px;
  }
  .list_gtool > .search{
    width: 32px;
    margin-left: 10px;
  }
  .list_gtool > .search button{
    background-size: 23px 23px;
  }    
  .list_gtool > li.btn{
    display: block;
    content-visibility:auto;
    width: 60px;
    margin-left: 12px;    
  }  
  button#btn_menu {
    display:flex;
    flex-direction: column;   
    align-items: center;
    justify-content: center;
    row-gap: 8px;
    width: 100%;
    height: 60px;
    background-color: #fff;
  }
  button#btn_menu .btn_menu_line,
  button#btn_menu::after {
    content: '';
    display: block;
    width:28px;
    height: 2px;
    background-color: #333333;
    transition: transform 0.3s, opacity 0.3s;
  }
  button#btn_menu.is_open .btn_menu_line{
    transform: translateY(4.5px) rotate(-135deg);
  }
  button#btn_menu.is_open::after {
    transform: translateY(-5px) rotate(135deg);
  }   
  button#btn_menu #menuButtonLabel{
    display: inline-block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }  
}
/*検索窓中*/
.area_hd_search{
  display: none;
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 32px ;
  width: 664px;
  background: #fff;
  border-radius: 0 0 0 var(--radius);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: opacity 0.5s ease;
}
.area_hd_search.is_open{
  display: block;
  opacity: 1;
}
.area_hd_search .list_hotword{
  display: flex;
  margin-top: 24px;
}
.area_hd_search .list_hotword dt{
  flex-shrink: 0;
  margin-right: 24px;
  color: var(--main-color);
}
.area_hd_search .list_hotword .box_list{
  flex:1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area_hd_search .list_hotword dd{
  border: solid 1px var(--color-border);
  border-radius: 4px;
  line-height: 1;
  font-weight: 400;
  font-size: 1.4rem;
  padding: 6px 13px 7px;
}
#hidden_bg_search{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}
#hidden_bg_search.is_open{
  display: block;
}
@media (max-width :1024px) {
  .area_hd_search{
    padding: 32px 20px;
    width: 100vw;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  }
  .area_hd_search .list_hotword{
    display: block;
    margin-top: 10px;
  }
  .area_hd_search .list_hotword dt{
    margin: 0 0 10px;
  }
  .area_hd_search .list_hotword .box_list{
    gap:6px;
  }
  .area_hd_search .list_hotword dd{
    font-size: 1.2rem;
    font-weight: 400;
    padding: 5px 12px 6px;
  }  
}

/* footer
----------------------------------------------------------- */
#footer{
  position: relative;
  padding: 40px 0 20px;
  background-color:#424242;
  color: #fff;
  text-align:center;
  font-weight: 500;
}
#footer .logo img{
  width: 148px;
}
#footer .txt_adr{
  margin-top: 14px;
  font-size: 1.5rem;
}
#footer .copyright{
  margin-top: 20px;
  font-size: 1.2rem;
}
@media (max-width :1024px) {
  #footer{
    padding: 32px 0 10px;
  }
  #footer .logo img{
    width: 122px;
  }
  #footer .txt_adr{
    margin-top: 15px;
    font-size: 1.3rem;
  }
  #footer .copyright{
    margin-top: 20px;
    font-size: 1.1rem;
  }  
}
#pagetop {
  position: fixed;
  bottom: 5px;
  right: 15px;
  width: 40px;
  z-index:700;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#pagetop.is_open{
  opacity: 1;
}

#pagetop.is_abso{
  position: absolute;
  top: -55px;
  bottom: auto;
}

#header_hidden{
  content: '';
  width: 1px;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media print{
  #hidden_area_side{
    display: none;
  }
}

	
.grecaptcha-badge { visibility: hidden; }
