@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap');
html {
  scroll-behavior: smooth;
}
body{

}
img{
	width: 100%;
	display: block;
}
.flex,.flex-al{
    display: flex;
    flex-wrap: wrap;
}
.flex-sb,.flex-sb-al{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flex-c,.flex-c-al{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.width-ss,.width-s,.width-sm,.width-m,.width-ml,.width-l,.width-ll{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.width-ss{max-width: 800px;}
.width-s{max-width: 900px;}
.width-sm{max-width: 1000px;}
.width-m{max-width: 1200px;}
.width-ml{max-width: 1300px;}
.width-l{max-width: 1400px;}
.width-ll{max-width: 1500px;}

@media screen and (max-width:768px){
    .flex,.flex-sb,.flex-c{
        display: block;
    }
}

/*******************************************/
/*　　ヘッダー
/*******************************************/
.header-top{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #EFEFEF;
}
.header-nav{
    width: 90%;
    margin: auto;
    align-items: center;
    height: 80px;	
}
.header-nav>a{
	display: block;
	width: 200px;
}
.header-nav>ul{
    flex-grow: 1;
    justify-content: end;
    gap: 40px;
    letter-spacing: 1px;
    font-size: 14px;
}
.header-nav>ul>li{
	position: relative;
}
.header-nav ul a{
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
}
.header-nav ul a::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 0;
	background: #333;
	transition: width 0.3s ease;
}
.header-nav ul a:hover::after{
	width: 100%;
}
.p-sidesns01__list--sns a{
    margin-bottom: 10px;
    display: block;
}
.header-nav>ul ul {
  display: none;
  position: absolute;
  top: calc(100% + 10px); /* 間に空白を作る */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px 0;
  z-index: 1000;
  min-width: 220px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header-nav li .hover-bridge {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px; /* 空間の幅に合わせる */
  background: transparent;
}
/* 親 li に hover したら表示 */
.header-nav li:hover > ul,.header-nav li:hover .hover-bridge {
  display: block;
}
.header-nav ul ul li {
  white-space: nowrap;
  padding: 5px 20px;
}
.header-nav ul ul li a {
  display: block;
  text-decoration: none;
  color: #333;
}
.header-nav ul ul {
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
.sp-logo{
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sp-logo>a{
	width: 150px;
}


  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    position: absolute;
    top: 21px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
  }
  .hamburger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
  }
  /* メニュー本体 */
.hamburger-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  overflow-y: auto;
  z-index: 1000;
  padding: 80px 20px 20px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.hamburger-nav.open {
  transform: translateX(0);
}

  .hamburger-nav ul {
    list-style: none;
    padding-left: 0;
  }
  .hamburger-nav li {
    margin-bottom: 12px;
  }
  .hamburger-nav li ul {
    margin-top: 10px;
    padding-left: 15px;
  }
  .hamburger-nav a {
    font-size: 13px;
  }  
  .hamburger-nav ul li ul a{
  	font-size: 11px;
  }
  
  
}


/*******************************************/
/*　　フッター
/*******************************************/
.footer{
    background: #E3E3E3;
    padding: 60px 0;
}
.footer-in{
	padding: 0 100px;
}
.footer-info{
	flex-basis: 300px;
}
.footer-info h2{
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 500;
}
.footer-info h2 span{
	display: block;
	font-size: 12px;
}
.footer-info p{
    display: flex;
    align-items: center;
	margin-bottom: 10px;
	font-size: 14px;
}
.footer-info p img{
	width: 15px;
	margin-right: 10px;
}
.footer-info-in>a{
    margin-bottom: 15px;
    display: flex;
	align-items: center;
}
.footer-info-in>a>img{
	width: 16px;
	margin-right: 10px;
}
.footer-sns{
	margin-bottom: 50px;
	align-items: center;
	gap: 15px;
}
.footer-sns a{
	display: block;
	width: 22px;
}
.footer-in nav{
	flex-basis: calc(100% - 380px);
	gap: 20px;
	flex-wrap: nowrap;
	font-size: 14px;
}
.footer-l{
}
.footer-r{
}
.footer-in nav ul ul{
	margin-top: 20px;
}
.footer-copy{
    font-size: 13px;
    text-align: center;
}
.footer li{
	margin-bottom: 20px;
}

@media screen and (max-width:768px){
.footer {
    padding: 40px 0;
}
.footer-info h2 span {
    font-size: 11px;
}
.footer-info h2 {
    font-size: 14px;
}
.footer-info p {
    font-size: 12px;
}
.footer-info-in>a {
    font-size: 13px;
}
.footer-in {
    padding: 0 20px;
}
.footer-r {
    font-size: 12px;
}
.p-sidesns01__list--link {
    display: none!important;
}
.p-sidesns01__list--link {
    margin: 0px 0 12px;
}
.p-sideblock .p-pagetop img {
    display: none!important;
}
}


 /*pc・タブレットcss*/
  /*pc_defaultset*/
  .pc {
	display: block !important;
}
  /*pcのみ表示ブロック*/
  .pc2 { display: inline-block !important; }
  /*pcのみ表示ブロック*/
  .sp, .sp2 { display: none !important; }

@media screen and (max-width: 768px) {
.pc, .pc2 { display: none !important; }
  /*pcのみ表示ブロック*/
  .sp { display: block !important; }
}