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

html {
    font-size: 62.5%;
    /* 16px * 62.5% = 10px */
    width: 100%;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
	overflow: scroll !important;
}

img {
    width: 100%;
}
/*header*/
.header{
	height: 60px;
	width: 100%;
	max-width: 1920px;
	background: rgba(0,0,0,0.25);
	position: fixed;
	z-index: 10;
	text-align: left;
	margin: 0 auto;
	display: flex;
}
.header__logo{
	margin:10px 24px ;
	width:40%;
	height: auto;
	object-fit: contain;
	}
.header nav{
	
	text-align: right;
	margin: 15px 15px 15px auto;
}
.menu{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	
}
.menu li{
	padding: 0px 24px;
}
.menu li a{
	display: block;
	color: #FFFFFF;
	text-align: center;
	font-size: 2.0rem;
}
.nav__top {
	font-weight: 900;
	font-size: 2.5rem;
}
.nav__contact{
	border: 1px solid #FFFFFF;
	width: 120px;
	height: 38px;
	font-weight: 900;
	font-size: 2.5rem;
}

@media (max-width: 960px) {
	.header{
		height: 60px;
	}
	.header__logo{
	width:40%;
	}
	.menu li a{
	font-size: 3.0rem;
}
	.nav__top {
	font-size: 3.5rem;
}
.nav__contact{
	font-size: 3.5rem;
}

	::before , ::after {
	box-sizing: inherit;
}
button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
	/**************** 以下、メニューのスタイリング ****************/
.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -70%;
	width: 70%;
	height: 70vh;
	background-color: rgba(0,0,0, .7);
	color: #FFFFFF;
	transition: .3s;
}
.menu li {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.menu li:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .3s;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
	position: absolute;
	right: 0;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
	/* ボタンの配置位置  */
	position: fixed;
	right: 10px;
	/* 最前面に */
	z-index: 1000;
	/* ボタンの大きさ  */
	width: 30px;
	height: 30px;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 2px;
	/* バーガー線の色 */
	background-color: #FFFFFF;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-8px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(8px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #8D7848;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
	}
/*footer*/
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer {
  padding: 2rem;
  font-size: 3.0rem;
  color: #ffffff;
	background-image:url("../images/common/footer.jpg");
	background-repeat: no-repeat;
}

.footer__navi-heading {
  font-weight: 600;
}
 
.footer__logo { 
  margin:10px 24px ;
	width:20%;
	height: auto;
	object-fit: contain;
}
.footer__logo2 { 
  margin:10px 24px ;
	width:10%;
	height: auto;
	object-fit: contain;
}

.footer__navi-contact_style{
	font-size: 1.5rem;
	font-weight: 300;
}
.footer__navi li {
	color: #ffffff;
	font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.footer__navi li a{
	color: #ffffff;
}
.footer__navi-heading a{
	color: #FFFFFF;
}
.footer__navi-contact_border{
	border: solid 1px #ffffff;
	padding:5px 15px;
}
.copyright{
	font-size: 1.6rem;
}
.footer-navi_privacy{
	color: #FFFFFF;
	font-size: 1.8rem;
	text-decoration: underline;
}
.footer-navi_privacy a{
	color: #FFFFFF;
}

@media (min-width: 768px) {

  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
	.footer__navi-contact_style{
	font-size: 1.3rem;
}
}
