@charset "utf-8";

/* base style */


/* これ余白が出来てしまった時（縮小出来てしまうのを防ぐ最終手段のコード） */
html, body {
  overflow-x: hidden;
  width: 100%;
}


body {
  margin: 0;
  font-family: "Noto Sans JP", "Helvetica Neue","Helvetica","Hiragino Sans","Hiragino Kaku Gothic ProN","Arial","Yu Gothic","Meiryo",sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  background-color: #e5e2e2;
}

@media (max-width: 992px){
  body {
  margin: 0;
  font-family: "Noto Sans JP", "Helvetica Neue","Helvetica","Hiragino Sans","Hiragino Kaku Gothic ProN","Arial","Yu Gothic","Meiryo",sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}
}

header {
  background-color: #fff;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: fixed; /*何にも左右されずに固定される*/
  z-index: 10;
  top: 0;
  left: 0;
}
@media (max-width: 992px){
  header {
  background-color: #fff;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: fixed; /*何にも左右されずに固定される*/
  z-index: 10;
  top: 0;
  left: 0;
}
}

.header-logo{
  margin: 0;
}

.header-logo img{
  max-width: 120px;
}
@media (max-width: 992px){
  .header-logo img{
  max-width: 80px;
}
}

.header-navlist{
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 150px;
}

/* .header-navitem{

} */

.header-navitem > a{
  display: block;
  padding: 20px;
  color: #333;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-color .25s;
}

.header-navitem > a:hover{
  border-bottom: 2px solid #333;
}

/* 親アイテムが relative である必要あり */
.header-navitem.has-dropdown {
  position: relative;
}

/* ドロップダウンリストのスタイル */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px 0;
  min-width: 230px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 1px solid #777;
  border-radius: 6px;
  z-index: 1000;
}

/* 吹き出しの三角形 */
.dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #777;
}

/* リスト内のリンク */
.dropdown li {
  padding: 0;
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown li a:hover {
  background: #f0f0f0;
}

/* ホバー時に表示 */
.header-navitem.has-dropdown:hover .dropdown {
  display: block;
}





/* headerのサイト名（デモの参考値） */

/* 全体調整CSS */
.hamburger-demo-menubox *{
	font-size: 16px;
}
.hamburger-demo-menubox li{
	font-size: 14px;
}
/* hamburgerここから */
	/* inputを非表示 */
.input-hidden{
	display: none;
}
	/* label */
.hamburger-demo-switch{
	cursor: pointer;
	position: absolute;
	right: 3%;
	align-items: center; /* ハンバーガーアイコンの位置（上から） */
	z-index: 9999;
	width: 4em; /* アイコン（クリック可能領域）の幅 */
	height: 4em; /* アイコン（クリック可能領域の）高さ */
}
/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-demo1:checked ~ .hamburger-demo-switch{
	position: fixed;
}
/* ハンバーガーアイコン */
.hamburger-switch-line1, .hamburger-switch-line1:before, .hamburger-switch-line1:after{
	width: 25px;
	height: 3px;
	background: #333; /* ハンバーガーアイコンの色 */
	position: absolute;
	top: 50%;
	left: 50%;
	transition: .3s;
	content: "";
}
.hamburger-switch-line1{
		transform: translate(-50%, -50%);
}
.hamburger-switch-line1:before{
	transform: translate(-50%, -300%);
}
.hamburger-switch-line1:after{
	transform: translate(-50%, 200%);
}
/* ハンバーガーアイコン･アニメーション */
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1{
	width: 0;
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:before{
	transform: rotate(45deg) translate(-40%, 325%);
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:after{
	transform: rotate(-45deg) translate(-40%, -325%);
}
/* メニューエリア */
.hamburger-demo-menuwrap{
	position: fixed;
	height: 100%;
	background: #fafafa; /* メニューエリアの背景色 */
	padding: 5em 3% 2em;
	z-index: 9998;
	transition: .3s;
	overflow-y: scroll; /* メニュー内容が多い場合に縦スクロールする */
	top: 0;
	left: 100%;
	width: 70%;
}
/* メニューリスト */
.hamburger-demo-menulist{
	margin-right: 3%;
	padding-left: 5% !important; /* !important不要な場合もあり */
	list-style: none;
}
.hamburger-demo-menulist li a{
	text-decoration: none;
	color: #333; /* メニューリストの文字色 */
	display: block;
  margin: 0;
	padding: .5em 0;
  font-size: 24px;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: border-color .25s;
}
@media (max-width: 992px){
  .hamburger-demo-menulist li a{
	text-decoration: none;
	color: #333; /* メニューリストの文字色 */
	display: block;
  margin: 0;
	padding: .5em 0;
  font-size: 18px;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: border-color .25s;
}
}

.hamburger-demo-menulist li a:hover{
  color: #000;
  font-weight: bold;
  border-bottom: 2px solid #333;
}

/* メニューエリア･アニメーション */
	/* 右から */
#hamburger-demo1:checked ~ .hamburger-demo-menuwrap{
	left: 80%;
}

@media (max-width: 992px){
  #hamburger-demo1:checked ~ .hamburger-demo-menuwrap{
	left: 35%;
}
}

	/* コンテンツカバー */
#hamburger-demo1:checked ~ .hamburger-demo-cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9997;
	background: rgba(3,3,3,.5);
	display: block;
}


@media (max-width: 992px){
  .header-nav{
    display: none;
  }
}


.hero {
  width: 100%;
  position: relative;
}

.hero img {
  width: 100%;
  height: auto; /* 画像のアスペクト比を保ちつつ高さ調整 */
  display: block;
}

@media (max-width: 992px){
  .hero img {
    margin: 50px 0 0;
    width: 100%;
    height: auto;
    display: block;
  }
}


.hero-logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 250px;
  height: auto;
}
@media(max-width:992px){
 .hero-logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100px;
  height: auto;
} 
}

.catchcopy p{
  text-align: center;
  padding: 100px 0 0;
  margin: 200px 0 100px 0;
  font-family: "Great Vibes", cursive;
  font-size: 84px;
  font-style: normal;
}
@media (max-width: 992px){
  .catchcopy p{
  text-align: center;
  padding: 50px 0 0;
  margin: 40px 0 30px 0;
  font-family: "Great Vibes", cursive;
  font-size: 24px;
  font-weight: bold;
  font-style: normal;
}
}



/* section-intro */

.intro{
  margin: 30px 0 200px 0;
}
@media (max-width: 992px){
  .intro{
  margin: 30px 0 50px 0;
}
}

.intro p{
  text-align: center;
  font-size: 40px;
}
@media (max-width: 992px){
  .intro p{
  text-align: center;
  font-size: 16px;
  margin: 10px 0;
}
}


/* new */
.new-contents{
  width: 100%;
  padding: 20px;
  user-select: none;
}
@media (max-width: 992px){
  .new-contents{
    width: 80%;
  margin:0 30px 40px;
  user-select: none;
}
}


[type=radio]{
  display: none;
}

#slider{
  height: 35vw;
  position: relative;
  perspective: 800px;
  transform-style: preserve-3d;
}

#slider label{
  margin: auto;
  width: 60%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: 0;
  cursor: pointer;
  transition: transform 0.4s ease;
}

#s1:checked ~ #slide4, #s2:checked ~ #slide5,
#s3:checked ~ #slide1, #s4:checked ~ #slide2,
#s5:checked ~ #slide3{
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0,.37);
  transform: translate3d(-30%,0,-200px);
}

#s1:checked ~ #slide5, #s2:checked ~ #slide1,
#s3:checked ~ #slide2, #s4:checked ~ #slide3,
#s5:checked ~ #slide4{
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0,.3),0 2px 2px 0 rgba(0, 0, 0,.2);
  transform: translate3d(-15%,0,-100px);
}

#s1:checked ~ #slide1, #s2:checked ~ #slide2,
#s3:checked ~ #slide3, #s4:checked ~ #slide4,
#s5:checked ~ #slide5{
  box-shadow: 0 13px 25px 0 rgba(0, 0, 0,.3),0 11px 7px 0 rgba(0, 0, 0,.19);
  transform: translate3d(0,0,0);
}

#s1:checked ~ #slide2, #s2:checked ~ #slide3,
#s3:checked ~ #slide4, #s4:checked ~ #slide5,
#s5:checked ~ #slide1{
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0,.3),0 2px 2px 0 rgba(0, 0, 0,.2);
  transform: translate3d(15%,0,-100px);
}

#s1:checked ~ #slide3, #s2:checked ~ #slide4,
#s3:checked ~ #slide5, #s4:checked ~ #slide1,
#s5:checked ~ #slide2{
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0,.37);
  transform: translate3d(30%,0,-200px);
}


.new{
  text-align: center;
  font-size: 42px;
  font-style: normal;
}


@media screen and (max-width: 992px) {
  #slider {
    height: 60vw;
  }

  #slider label {
    width: 100%;
  }

  .new {
    font-size: 28px;
  }
}

#slider label {
  pointer-events: auto;
}



/*--------------------------------------
  カード型_06
--------------------------------------*/
.l-wrapper_06 {
  margin: 1rem auto;
  width: 100%;
}






/*
全く納得いってない
なんでcenter使えないの？

*/
@media (max-width: 992px){
  .l-wrapper_06 {
  margin: 0 auto;
  width: 80%;
}
}

.l-wrapper_06:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 34px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
  transition: all .5s;
}
.card_06 {
  background: #fff;
  border-radius: 20px;
  box-shadow: 10px 10px 10px #777;
}

.card-img_06 {
  border-radius: 20px 20px 0 0;
  max-width: 100%;
  height: auto;
}

.card-content_06 {
  padding: 8px 20px 20px;
}
.card-title_06 {
  font-size: 1.6em;
  color: #333;
  font-weight: 700;
}
.card-text_06 {
  color: #777;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.2em;
}
.card-link_06 {
  text-align: center;
  border-top: 1px solid #eee;
  padding: 20px;
}
.card-link_06 a {
  text-decoration: none;
  color: #4f96f6;
  margin: 0 10px;
  font-size: 30px;
  font-weight: bold;
}
.card-link_06 a:hover {
  color: #6bb6ff;
}




/* menu-card-list */
.menu-headline{
  margin-top: 50px;
  text-align: center;
}

.menu p{
  text-align: center;
  font-size: 30px;
}
@media (max-width: 992px){
  .menu p{
  padding: 0 20px;  
  text-align: center;
  font-size: 16px;
}
}


.menu h1{
  font-size: 42px;
}

.menu-cards-lists {
  display: flex;
  justify-content: center; /* 中央揃え */
  flex-wrap: wrap;         /* スマホなどで折り返し可能に */
  gap: 30px;               /* アイテム間の間隔 */
  padding: 0;
  margin: 40px auto 0;      /* 最大幅を制限 */
}


.menu-cards-list {
  list-style: none;
  text-align: center;
  width: 100%;
  max-width: 350px;
  margin-bottom: 50px;
}
@media (max-width: 992px){
  .menu-cards-list {
  list-style: none;
  text-align: center;
  max-width: 100%;
  margin-bottom: 40px;
}
}





/* footer */

.site-footer {
  background-color: #f9f9f9;
  padding: 40px 20px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #ddd;
  max-width: 100%;
}
@media(max-width:992px){
  .site-footer {
  background-color: #f9f9f9;
  padding: 20px 5px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #ddd;
  max-width: 100%;
}
}


footer .footer-nav-box{
  margin: 50px;
  display: flex;
}
@media(max-width:992px){
  footer .footer-nav-box{
  margin: 0;
  display: flex;
  max-width: 700px;
}
}

footer .footer-nav-box .footer-box1{
  display: flex;
  margin: 0 20px;
}


@media(max-width:992px){
  footer .footer-nav-box .footer-box1{
  display: flex;
  flex-direction: column;
  margin: 0 20px;
  justify-content: space-between;
}
}

footer .footer-nav-box .footer-box2{
  display: flex;
  margin: 0 20px;
}

@media(max-width:992px){
  footer .footer-nav-box .footer-box2{
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}
}

footer .footer-nav-box .nav-list{
  margin: 0 50px;
  text-align: left;
}
@media(max-width:992px){
  footer .footer-nav-box .nav-list{
  margin: 0;
  text-align: left;
}
}

footer .footer-nav-box .nav-list .nav-name{
  font-weight: bold;
  font-size: 20px;
  margin-left: 37px;
  
}
@media(max-width:992px){
 footer .footer-nav-box .nav-list .nav-name{
  font-weight: bold;
  font-size: 12px;
  margin-left: 0px;
} 
}

footer .footer-nav-box .nav-list .list-detail{
  list-style: none;
}

/* footer .footer-nav-box .nav-list .list-detail li{
  
} */

@media(max-width:992px){
  footer .footer-nav-box .nav-list .list-detail{
    margin-left: -40px;
  }
}

footer .footer-nav-box .nav-list .list-detail a{
  text-decoration: none;
  color: #333;
  font-size: 16px;
  line-height: 1.6em;
}
@media(max-width:992px){
 footer .footer-nav-box .nav-list .list-detail a{
  text-decoration: none;
  color: #333;
  font-size: 10px;
  line-height: 1.1em;
} 
}
footer .footer-nav-box .nav-list .list-detail a:hover{
  color: #777676;
}


footer .sns-icon {
  display: flex;
  margin: 20px 0 20px 1600px;
}
@media(max-width:992px){
  footer .sns-icon {
  display: flex;
  margin: 20px 0 20px 270px;
}
}



footer .sns-icon img {
  width: 50px;
  height: 50px;
}
@media (max-width: 992px) {
  footer .sns-icon img {
    width: 30px;
    height: 30px;
  }
}



footer .border-line {
  border: 0.2px solid #ddd;
  width: calc(100% - 100px); /* 両端50pxずつ空ける */
  max-width: 2000px;
  margin: 30px auto;
}
@media(max-width:992px){
  footer .border-line {
  border: 0.2px solid #ddd;
  width: calc(100% - 100px); /* 両端50pxずつ空ける */
  max-width: 600px;
  margin: 30px auto;
}
}



.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  margin: 0 5px;
  font-weight: 500;
}
@media(max-width:992px){
 .footer-links a {
  text-decoration: none;
  color: #333;
  margin: 0 5px;
  font-weight: 500;
  font-size: 8px;
} 
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-logo img {
  width: 80px;
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 12px;
  color: #777;
}
@media(max-width:992px){
 .footer-copy {
  font-size: 12px;
} 
}



