@charset "utf-8";
/* CSS Document */

/*☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝

共通

☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝*/

body{
	font-family: "Roboto","Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-style: normal;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: .006em;
color: #222;
}
a:hover{opacity: .5;}
a {
    color: inherit;
    text-decoration: none;
	display: block;
}
img {
    width: 100%;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    font-style: italic;
    vertical-align: middle;
}
.bold{font-weight: 600;}
.sp{display: none;}
@media screen and (max-width: 960px){
	.tb{display: none;}
}
@media screen and (max-width: 768px){
	.pc{display: none;}
	.sp{display: block;}
	body{font-size: 15px;}
}


html {
    scroll-behavior: smooth;
}
#back-to-top {
	position: fixed;
	z-index: 8;
	bottom: 40px;
	right: 40px;
	opacity: 0;
	transform: translateY(20px); 
	transition: opacity 0.3s ease, transform 0.3s ease; 
	height: 80px;
	width: 80px;
	background-color: #006ab5;
	border: none;
	border-radius: 40px;
	cursor: pointer;
	font-size: 14px;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
#back-to-top span{
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 12px solid transparent;
	border-left: 12px solid transparent;
	border-bottom: 22px solid #ffffff;
	border-top: 0;
}
#back-to-top.show {
	opacity: 1; 
	transform: translateY(0); 
	pointer-events: auto; 
}
#back-to-top:hover {
	background-color: #006ab5;
}
@media screen and (max-width: 768px){
	
	#back-to-top {
	bottom: 20px;
	right: 20px;
	opacity: 0;
	transform: translateY(20px); 
	transition: opacity 0.3s ease, transform 0.3s ease; 
	height: 60px;
	width: 60px;
	background-color: #006ab5;
	border: none;
	border-radius: 40px;
	cursor: pointer;
	font-size: 14px;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
#back-to-top span{
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-bottom: 10px solid #ffffff;
	border-top: 0;
}
}
/*☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝

ハンバーガーメニュー

☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝*/
#menu-button {
	padding: 0;
	width: 100%;
    height: 100%;
	border: none;
	cursor: pointer;
	background: #222;
}
.bar{
	display: grid;
	max-width: 64px;
	width: 70%;
	height: 2px;
	border-radius: 1px;
	background-color: #fded52;
	transition: transform 0.3s;
	margin: -11% auto 0;
}
.bar::before,
.bar::after {
	width: 100%;
	height: 2px;
	border-radius: 1px;
	background-color: #fded52;
	transition: transform 0.3s;
}
.bar::before,.bar::after {
    content: "";
    grid-area: 1 / 1;
  }
.bar::before {transform: translateY(-15px);}
.bar::after {transform: translateY(15px);}
/* オープン時のバー */
.menu-open .bar {background-color: transparent;}
.menu-open .bar::before {transform: rotate(45deg);}
.menu-open .bar::after {transform: rotate(-45deg);}
/* メニューラベル */
.menu-label {
	transform: translateY(30px);
	color: #fded52;
	display: grid;
}
/* メニュー */
#menu {
	position: fixed;
	width: calc(85% - 20px);
	height: 100%;
	background-color: #fded52;
	right: 0;
	top: 0;
	z-index: 10;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.3s ease-out; /*スクロールバー非表示（IE・Edge）*/
	-ms-overflow-style: none;	/*スクロールバー非表示（Firefox）*/
	scrollbar-width: none;
	
}
/*スクロールバー非表示（Chrome・Safari）*/
.content::-webkit-scrollbar{display:none;}
#menu ul {
    list-style: none;
    margin:0;
}
#menu .series{background: #f9f8f8;margin: 0;}
#menu .series a{margin: 0 20px;}
#menu div{
	height: 100%;   
	display: flex;
    justify-content: center;
    align-items: center;
	
}
#menu small {
	position: fixed;
    font-size: 16px;
    transform: rotate(90deg);
    right: -100px;
    bottom: 120px;
}
.menu_list>li:last-child{width: 35%;} 
.menu_list>li:nth-last-child(-n+2) li{ margin-bottom: 10%;}
.hamburgerlink{padding: 20px 0 200px;}
.hamburgerlink a{
	padding: 0;
	display: inline-block;
	font-size: 1.5rem;
	border-bottom: solid 1px #000;
	margin-bottom: 10px;
}
.hamburgerlink a::after{display: none;}
/* オープン時のメニュー */
.menu-open #menu {transform: translateX(0);}
/* body */
body {overflow-x: clip;}
/* オープン時のbody */
.menu-open body {overflow: clip;}
.menu_list{
	font-size: 32px;
	color: #000;
	text-align: left;
    display: flex;
	justify-content: space-between;
	width: 70%;
}
@media screen and (max-width: 1300px){
	.menu_list{
		font-size: 24px;
	}
}
@media screen and (max-width: 960px){
	#menu small {
		display: none;
	}
}

@media screen and (max-width: 768px){
	.bar {width: 60%;}
}
/*☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝

header

☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝*/
header{
	position: fixed;
	width: 15%;
	height: 100%;
	border-right: solid 20px #222;
	z-index: 10;
	top: 0;
	left: 0;
}
.wrap{
	  display: flex;
    justify-content: flex-end;
}
.width{
	width: calc(85% - 20px);
	box-sizing: border-box;
}
header >div{
	position: relative;    
	height: 100%;
}
.logo{
	height: 84%;
	position: relative;
}
.logo a{
	max-width: 200px;
	width: 60%;
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
header .bottom{
	height: 16%;
	font-size: 0;
	width: 100%;    
	position: absolute;
    bottom: 0;
	min-height: 90px;
	display: flex;
}
.bottom>li{
	display: inline-block;
	width: 50%;
	height: 100%;
	text-align: center;
	vertical-align: top;
	    min-height: 90px;
}
.bottom>li:last-child{background: #fded52;}
.bottom>li:last-child a{height: 100%;display: grid;align-content: center;}
.bottom>li:last-child img{max-height: 70px; max-width: 64px;width: 70%;margin: 0 auto 10px}
.bottom>li:last-child div,.menu-label{font-size: 1vw;line-height: 1;}
@media screen and (max-width: 960px){
	.menu_list {align-items: center;}
	.menu_list>li:nth-child( -n+2 ){
		text-align: center;
	}
	header {
		position: fixed;
		width: 100%;
		height: auto;
		background:	rgba(102,102,102,.65);
	}
	.width,footer{width: 100%;}
	.logo{
		position: static;
		width: 66px;
		padding: 10px;
	}
	.logo a{
		width: 100%;
		position: static;
		transform: translate(0,0);
	}
	header .bottom { 
		width: 75px;
		right: 0;
		top: 0;
		min-height: 75px;
	}
	.bottom>li {
		width: 75px;
		height: 75px;
		min-height: auto;
	}
	.bottom>li:last-child { display: none;}
	
	
	#menu {
		width: 100%;
		/*top: 75px;*/
	}
	.menu_list {
		font-size: 24px;
    	flex-wrap: nowrap;
		flex-direction: column;
	}
	.menu_list>li:nth-child( -n+2 ),.menu_list>li:nth-last-child(-n+2) li {
		margin-bottom: 20px;
	}
	.menu_list>li:last-child {
		width: 100%;
		max-width: 320px;
	}
	#menu div {
		padding: 105px 0;
		align-items: flex-start;
	}
	.menu-label {  font-size: 14px;}
	#menu-button{position: absolute;
		top: 0;
		right: 0;
		padding: 0;
		place-items: center;
		place-content: center;
		z-index: 100;
		background: transparent;}
	.bar::before {transform: translateY(-12px);}
	.bar::after {transform: translateY(12px);}
	/* オープン時のバー */
	.menu-open .bar {background-color: transparent;}
	.menu-open .bar::before {transform: rotate(45deg);}
	.menu-open .bar::after {transform: rotate(-45deg);}
	/* メニューラベル */
	.menu-label {
		transform: translateY(20px);
		color: #fded52;
		display: grid;
	}
	.menu-open #menu-button{
  	  background: #222;
	}
		
}

@media screen and (max-width: 768px){
	.menu_list {
		width: 85%;
	}
}



/*☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝

btn

☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝*/

.btn{
	background: #222;
	position: relative;
	color: #fded52;
	padding: 23px 40px;
	max-width: 320px;
	box-sizing: border-box;
	font-size: 1.2em;
	text-align: left;
	font-weight: 600;
	border: #222 solid 2px;
}
.btn::after{
	content: "";
	display: inline-block;
	height: 12px;
	width: 12px;
	border-bottom: solid #fded52 2px;
	border-right: solid #fded52 2px;
	transform: rotate(-45deg) translateY(-50%);
    position: absolute;
    right: 40px;
    top: 50%;
}
.btn:hover{
	background: #fded52;
	color: #222;
	opacity: 1;
	border: #222 solid 2px;
}
.btn:hover::after{
	content: "";
	display: inline-block;
	height: 12px;
	width: 12px;
	border-bottom: solid #222 2px;
	border-right: solid #222 2px;
	transform: rotate(-45deg) translateY(-50%);
    position: absolute;
    right: 40px;
    top: 50%;
}
@media screen and (max-width: 1300px){
	.btn{
		padding: 23px 20px;
		width: 60%;
		min-width: 320px;
	}
}

@media screen and (max-width: 768px){
	.btn{
		padding: 20px 20px;
		width: 90%;
		min-width: 250px;
	}
	.btn::after{
		content: "";
		display: inline-block;
		height: 8px;
		width: 8px;
		border-bottom: solid #fded52 2px;
		border-right: solid #fded52 2px;
		right: 20px;
	}
	.btn:hover::after{
		content: "";
		display: inline-block;
		height: 8px;
		width: 8px;
		border-bottom: solid #222 2px;
		border-right: solid #222 2px;
		right: 20px;
	}
}

/*☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝

foot

☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝*/
.footimg{
	background: url("../img/footerimg.webp");
	background-size: cover;
	padding-top: 570px;
	height: 0;
	overflow: hidden;
}
.contact{
	background: #fded52 ;
	padding: 100px 0 20px;
	text-align: center;
}
.contact ul{
	display: flex;
	max-width: 990px;
	width: 60%;
	justify-content: center;
	margin: 0 auto 100px;
}
.contact li{
	width: 465px;
	
}
.contact em{
	font-size: 42px;
	display: block;
	margin: 0 auto 60px;
}
@media screen and (max-width: 1300px){
	.footimg{
		padding-top: 300px;
	}
	.contact{
		padding: 80px 0 40px;
	}
	.contact ul{
		margin: 0 auto 80px;
	}
	.contact em{
		font-size: 36px;
		margin: 0 auto 40px;
	}
}
@media screen and (max-width: 768px){
	.footimg{
		padding-top: 225px;
		overflow: hidden;
	}
	.contact em{
		font-size: 24px;
	}
	.contact{
		padding: 75px 0 20px;
	}
	.contact ul{
		max-width: 673px;
		width: 90%;
		margin: 0 auto 75px;
		flex-direction: column;
		gap:20px;
		align-items: center;
	}
	.contact li{
		width:100%;
	    max-width: 400px;
	}
}



/*☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝

nakape-ji 

☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝☆～*＝＝*/

.naka_mv{
	padding: 120px 5%;
}
.naka_mv h1{
	font-size: 36px;
	color:  #fded52;
}
.naka_mv p{
	font-size: 30px;
	color: #fff;
	margin-top: 10px;
}

.pnkz{
	display: flex;
	gap:12px;
	font-size: 14px;
	padding: 40px 5% 0;
}

.pnkz a{border-bottom: solid #222 1px;}

.content .sec{
	padding: 120px 5% 140px;
}
@media screen and (max-width: 1800px){
	.naka_mv{
		padding: 120px 5%;
	}
	.naka_mv h1{
		font-size: 28px;
	}
	.naka_mv p{font-size: 24px;}
}
@media screen and (max-width: 1300px){
	.naka_mv h1{font-size:26px;}
	.naka_mv p{font-size: 18px;}
	.content .sec{
		padding: 100px 5%;
	}
}
@media screen and (max-width: 960px){
	.naka_mv{padding: 140px 5% 80px;
    }
	
}
@media screen and (max-width: 768px){
	.naka_mv{padding: 105px 5% 40px;}
	.naka_mv h1{font-size:24px;	}
	.naka_mv p{font-size: 14px;}
	.pnkz{
		gap:12px;
		font-size: 14px;
		padding: 30px 5% 0;
	}
	.content .sec{padding: 80px 5%;}
	.content .sec1{padding: 50px 5% 60px;}
}
@media screen and (max-width: 360px) {
    .naka_mv h1{font-size: 21px;}
}

.ttl{
	font-size:32px;
	margin-bottom: 80px;
}
.ttl span{
	width: 55px;
	height: 2px;
	background: #006ab5;
	display: block;
	margin: 5px 0 10px;
}
.ttl div{
	font-size: 18px;
	display: block;
}
@media screen and (max-width: 1800px) {
	.ttl {
		font-size:24px;
		margin-bottom: 60px;
	}
	.ttl div{
		font-size: 16px;
	}
}
@media screen and (max-width: 1300px) {
	.ttl{
		margin-bottom: 60px;
	}
	.ttl div{
		font-size: 16px;
	}
}
@media screen and (max-width: 768px) {
	.ttl{
		font-size:21px;
		margin-bottom: 50px;
	}
	.ttl span{
		width: 40px;
		height: 2px;
		margin: 5px 0 10px;
	}
	.ttl div{
		font-size: 12px;
	}
}
.ttl_2{
	font-size: 1.2em;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 80px;
}
.ttl_2::before{
	content: "";
	width: 40px;
	height: 2px;
	background: #006ab5;
	display: inline-block;
}
@media screen and (max-width: 1300px) {
	.ttl_2{
		margin-bottom: 40px;
	}
	.ttl_2::before{
	content: "";
	width: 20px;
	height: 2px;
}
}