@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Typography
------------------------------------------------------*/
em {
	font-weight: 700;
}
address {
	font-style: normal;
}
/*-----------------------------------------------------
	Elements
------------------------------------------------------*/
body {
	word-wrap: break-word;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 500;
  line-height: 1.5;
}
p {
  line-height: 1.7;
}
ul li {
  line-height: 1.6;
	list-style-type: none;
}
ol li {
  line-height: 1.6;
	list-style-type: decimal;
}
img {
	vertical-align: bottom;
}
iframe {
	width: 100%;
}
sup {
	font-size: 70%;
	vertical-align: super;
}
sub {
	font-size: 70%;
	vertical-align: sub;
}
/*-----------------------------------------------------
	Link
------------------------------------------------------*/
a {
	text-decoration: none;
	color: #000033;
	-webkit-transition: all .25s;
	   -moz-transition: all .25s;
	    -ms-transition: all .25s;
	     -o-transition: all .25s;
	        transition: all .25s;
}
a > img {
	-webkit-transition: all .25s;
	   -moz-transition: all .25s;
	    -ms-transition: all .25s;
	     -o-transition: all .25s;
	        transition: all .25s;
}
a:hover > img {
	opacity: 0.85;
}
a[href^="tel:"] {
    pointer-events: none;
}

/*-----------------------------------------------------
	haeder
------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-box-align: center;
  align-items: center;
	width: 100%;
  padding: 35px 0;
  background: rgba(255,255,255, 1);
  box-shadow: 0px 4px 16px -6px rgba(0,0,0,0.3);
}
.header_logo a {
  display: block;
	line-height: 1;
}
.header_logo img {
	height: 22px;
}
header nav {
  width: calc(100% - 200px);
}
header nav ul.flex {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
header nav ul li {
  margin: 0 25px;
}
header nav ul li a {
  position: relative;
	font-size: 16px;
  font-weight: 700;
  color: #000033;
  transition: .3s;
}
header nav ul li a:hover {
  opacity: .65;
}
@media screen and (min-width: 901px) {
	.fat-nav, .fat-nav ul {
		display: none;
	}
}
@media screen and (max-width: 900px) {
  header nav ul li {
    display: none;
  }
  header {
    padding: 37px 0;
  }
	/* SPメニュー */
  .hamburger {
    width: 45px ;
    height: 50px;
    display: block;
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 10000;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
  }
	.hamburger::after {
    position: absolute;
		bottom: 0;
		right: 0;
		display: block;
		content: "MENU";
		font-family: "din-2014", sans-serif;
		font-size: 13px;
		font-weight: 300;
		color: #000033;
  }
  .hamburger__icon {
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
    width: 35px;
    height: 1px;
		position: absolute;
		right: 0;
    display: block;
    background-color: #000033;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
  }
  .hamburger__icon::before, .hamburger__icon::after {
    content: "";
  }
  .hamburger__icon::before {
		width: 45px;
    top: -10px;
  }
  .hamburger__icon::after {
		width: 25px;
    top: 10px;
  }
  .hamburger.active {
    right: 20px;
  }
	.hamburger.active::after {
		content: "CLOSE";
		right: 2px;
  }
	.hamburger.active .hamburger__icon {
    background-color: transparent;
  }
  .hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
		width: 40px;
  }
  .hamburger.active .hamburger__icon:before {
    -moz-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.active .hamburger__icon:after {
    -moz-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  .fat-nav {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
		background: rgba(157,152,151,.85);
  }
  .fat-nav__wrapper {
    width: 80%;
    height: 90%;
		position: relative;
		margin-left: 20%;
		padding: 26.667vw 8vw 8vw;
		background: #f5f5f3;
    display: table;
    table-layout: fixed;
		z-index: 1;
  }
  .fat-nav ul {
    margin: 0;
    padding: 0;
    vertical-align: middle;
  }
  .fat-nav li a {
    display: block;
		position: relative;
		margin-bottom: 5.333vw;
		padding-bottom: 5.333vw;
		border-bottom: 1px solid #000033;
    font-size: 20px;
    font-weight: 700;
  }
	.fat-nav li a::after {
		content: "＞";
		position: absolute;
		top: calc(50% - 2.667vw);
		right: 0;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		color: #000033;
  }
}
/*-----------------------------------------------------
	Layout
------------------------------------------------------*/
.wrap {
  width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .wrap {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 750px) {
  .wrap {
    padding: 0 20px;
  }
}
/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
  position: relative;
  font-family: "din-2014", sans-serif;
  font-size: 46px;
  font-weight: 400;
  color: #000033;
  text-align: center;
}
.midasi_01:before {
  content: '';
  position: absolute;
  top: -10px;
  left: calc(50% - 15px);
  width: 30px;
  height: 3px;
  background: #000033;
}
@media screen and (max-width: 750px) {
  .midasi_01 {
    font-size: 38px;
  }
  .midasi_01:before {
    top: -13px;
  }
}
/*-----------------------------------------------------
	btn
------------------------------------------------------*/
.flat.border {
  width: 100%;
  max-width: 300px;
  position: relative;
  margin: 50px auto 0;
  text-align: center;
  display: block;
  padding: 10px;
  background: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000033;
  border-radius: 30px;
  transition: 0.3s;
  border: 1px solid #000033;
  cursor: pointer;
}
.flat.border:hover {
  background: #1e1e59;
  border: 1px solid #000033;
  color: #fff;
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  padding: 10px 20px;
	text-align: center;
}
footer small.copyright {
	font-size: 13px;
}
/*-----------------------------------------------------
	404
------------------------------------------------------*/
.notfound {
	margin-top: 75px;
	margin-bottom: 150px;
	text-align: center;
}
.notfound h1 {
	margin-bottom: 50px;
}
.notfound p {
	margin-bottom: 80px;
	font-size: 18px;
	text-align: center;
}
@media screen and (max-width: 750px) {
	.notfound {
		margin-top: 50px;
	}
	.notfound p {
		margin-bottom: 80px;
		font-size: 16px;
	}
}
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------
	レスポンシブ
----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.sp {
	display: none !important;
}
.tb {
	display: none !important;
}
@media screen and (max-width: 960px) {
	.tb {
		display: block !important;
	}
}
@media screen and (max-width: 750px) {
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/	
  img {
      max-width: 100%;
      height: auto;
  }
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/
	body {
		word-wrap: break-word;
	}

	a[href^="tel:"] {
		pointer-events: auto;
	}
	/*-----------------------------------------------------
		others
	------------------------------------------------------*/
	.pc {
		display: none !important;
	}
}
@media screen and (max-width: 414px) {
	.tb {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
}
