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

body {
  font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin: 0;
  padding: 0;
}

/*menu CSS*/
.site-header{
    background: #fff;
    display: flex;
    padding: 10px 10px;
    position: fixed;
    justify-content: space-between;
    width: 100%;
	margin: 0;
	top: 0;
}
.site-logo{
	margin: 0;
	padding: 0;
}
.site-logo img{
    width: 180px;
	margin: 0;
	padding-left: 10px;
	padding-top: 5px;
}
.gnav__menu{
    display: flex;
    justify-content: flex-end;
    height: 50px;
	width: auto;
    align-items: center;
	margin: 0;
}
.gnav__menu li {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
    list-style: none;
	padding: 30px;
	font-size: 18px;
	margin: 0;
}
li:nth-child(3) {
  padding-right: 100px;
}
.gnav__menu__item{
    margin-left: 0px;
}
.gnav__menu__item a{
    color: #333;
    text-decoration: none;
}
/*menu CSS*/

/*.pc .ul-pc ul {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
	list-style-type: none;
	padding-left: 0;
}
.pc .ul-pc li {
	width: 200px;
	height: 50px;
	padding: 50px 20px;
	margin: 10px;
}
.pc .inline {
	text-align: center;
	padding: 20px 0;
}
.pc .inline li {
	display: inline;
}

.pc .ul-pc a {
	text-decoration: none;
	color: #000;
}*/

.pc ul {
	padding-inline-start:0;
}

/*PCの場合*/
.pc	{ display:inline!important; }
.mb	{ display:none!important; }
@media screen and (max-width: 767px) {
/*タブレット、スマホの場合*/
.pc	{ display:none!important; }
.mb { display:inline!important;
	}
}

/*MAIN*/

.header__top {
    width: 100%;
    max-width: 1400px;
    height: 130px;
    margin: 0 auto;
    position: relative;
}
.header__top h1{
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}
        
.header__top ul {
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: space-between;
    
    position: absolute;
    bottom: 25px;
    right: 0;
    
    list-style: none;
}
.header__top ul li {
    list-style: none;
}
.header__top ul li a {
    color: #4d4d4d;
    text-decoration: none;
}
.header__top ul li:nth-child(3) {
    padding-right: 0px;
}

.box1 {
	background-color: #E6E6E6;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 18px;
	padding: 10px;
	line-height: 40px;
	text-align: center;
}

.box2 {
	width: 80%;
	margin: auto;
	padding: 70px 0 100px 0;
	
}


.box2 div {
	max-width: 1200px;
	text-align: left;
	padding-bottom: 38px;
	margin: auto;
}

/*MAIN*/


@media screen and (max-width: 1270px) {
    .header__top ul {
        bottom: -25px;
    }
}
@media screen and ( max-width:1025px ) {
    
    /*-------------------------
    　ハンバーガーメニュー　追加CSS
    -------------------------*/
    .nav__pc{
        display: none;
    }
    
    .nav__sp {
        display: block;
    }
    .nav__sp ul {
        display: block;
        overflow: hidden;
    }
    .nav__sp ul {
        background-color:rgba(255,255,255,0.70);
        backdrop-filter: blur(5px);
        width: 150px;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -200px;
        z-index: 1;
        
        padding-top: 300px;
        margin: 0;
        transition: .7s;
    }
    .nav__sp ul.active {
        right: 0;
    }
    
    .nav__sp ul li {
        margin-bottom: 40px;
        
        position: relative;
    }
    .nav__sp ul li::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        height: 1px;
        width: 0%;
        background-color: #4d4d4d;
        transition: .3s;
    }
    .nav__sp ul li:hover::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        height: 1px;
        width: 100%;
        background-color: #4d4d4d;
    }
    
    .header__top h1 {
        max-width: 220px;
        margin: 0 auto 0 20px;
        padding-top: 1.5rem;
        text-align: left;
    }
    
    .hamburger-wrap {
        width: 50px;
        height: 35px;
        margin: 0 15px 0 auto;
        z-index: 2;
        position: fixed;
        top: 30px;
        right: 10px;
        cursor:pointer;
    }
    .hamburger-wrap span:nth-child(1) {
        display: block;
        width: 100%;
        height: 1.5px;
        background-color: #4d4d4d;
        position: absolute;
        top: 0;
        
        transition: .5s;
    }
    .hamburger-wrap span:nth-child(2) {
        display: block;
        width: 100%;
        height: 1.5px;
        background-color: #4d4d4d;
        position: absolute;
        top: 15px;
        
        transition: .5s;
    }
    .hamburger-wrap span:nth-child(3) {
        display: block;
        width: 100%;
        height: 1.5px;
        background-color: #4d4d4d;
        position: absolute;
        top: 30px;
        
        transition: .5s;
    }
    
    .hamburger-wrap.active span:nth-child(1) {
        transform: rotate(135deg);
        top: 15px
    }
    .hamburger-wrap.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-wrap.active span:nth-child(3) {
        top: 15px;
        transform: rotate(225deg);
    }
    
}
@media screen and (max-width: 767px) {

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px 0 10px;
  background: #fff;
}

.logo img{
  width: 180px;
}

/*------------------------------

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
  
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #000;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.drawer-content {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  padding: 30px 0; 
  text-align: left; 
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #E6E6E6;
  transition: .5s;
}
.drawer-content ul{
  list-style: none;
}
.drawer-content li{
  padding: 15px 0;
}

.drawer-content a:link{
  color: #000;
  text-decoration: none;
}
.drawer-content a:visited{
  color: #000;
  text-decoration: none;
}
.drawer-content a:hover{
  color: #000;
  text-decoration: none;
}
.drawer-content a:active{
  color: #000;
  text-decoration: none;
}
.drawer-list {
  font-size: 20px;	
	}
.drawer-list2 {
  font-size: 10px;	
	}
.drawer-list3 {
	width: 200px;
	}
.drawer-list3 img{
	max-width: 30px;
	padding: 0 10px;
	}
	
/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}
/*end*/	
	

.nav-list {
    list-style: none;
    display: none;
    margin: 20px;
    padding: 20px;
}

.nav-list li {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 20px;
    padding: 30px 10px; 
	text-align: left;
}
.p_box {
		font-size: 12px;
	}
.box3 {
		font-size: 12px;
	}

.nav {
    background-color: #E6E6E6;
}
	
.box2 {
	width: 80%;
	padding: 50px 0 100px 0;
	margin: auto;	
}
	
.box2 div {
	max-width: 800px;
	text-align: left;
	margin: auto;
	padding-bottom: 20px;
}

footer a{
	display: block;
    text-decoration: none;
    color: #000;
}

.footer_box {
	background-color: #E6E6E6;
	padding: 50px 0; 
}
.sns {
	text-align: left;
}
.sns li {
display: inline-block;
width: 45px;
margin: 0 20px;
}
	
.footer_menu {
	text-align: left;
}

.footer_menu li {
font-family: 'Roboto', sans-serif;
font-weight: 500;
font-size: 18px;
display: block;
margin: 0 10px;
padding-top: 30px;
}

.footer_menu a {
    text-decoration: none;
    color: #000;
}

.copyright li{
font-family: 'Roboto', sans-serif;
font-weight: 500;
font-size: 8px;
display: inline-block;
width: auto;
padding: 0;
margin: 0 20px;
}

footer .copyright {
text-align: center;
}

.copyright {
padding-left: 0;
}


}

footer {
	text-align: center;
}

footer a{
	display: block;
    text-decoration: none;
    color: #000;
}

.pc .footer_box {
	background-color: #E6E6E6;
	padding: 50px 0; 
}
.pc .sns {
	text-align: center;
}
.pc .sns li {
display: inline-block;
width: 45px;
margin: 0 20px;
}

.pc .footer_menu {
	text-align: center;
}

.pc .footer_menu li {
font-family: 'Roboto', sans-serif;
font-weight: 500;
font-size: 18px;
display: inline-block;
width: auto;
padding-top: 30px;
margin: 0 20px;
}

.pc .footer_menu a {
    display: block;
    text-decoration: none;
    color: #000;
}

.pc .copyright li{
font-family: 'Roboto', sans-serif;
font-weight: 500;
font-size: 15px;
display: inline-block;
width: auto;
padding: 20px 0;
margin: 0 20px;
}

.pc .copyright p {
font-family: 'Roboto', sans-serif;
font-weight: 500;
font-size: 15px;
}