@charset "UTF-8";
@import url(//use.fontawesome.com/releases/v5.0.6/css/all.css);
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", serif;
  font-family: Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6em;
  background: rgba(255,255,255,0);
  color: #333;
  line-height: 1.8;
  letter-spacing: 1px;
}

a {
  color: #333;
  text-decoration: none;
  transition: opacity .2s ease;
}
a:hover {
  opacity: .7;
  transition: opacity .2s ease;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.disp-pc {
  display: block;
}
.disp-sp {
  display: none;
}

@media only screen and (max-width: 768px) {
  .disp-pc {
    display: none;
  }
  .disp-sp {
    display: block;
  }
}

/*------------------------------------------
  parts
------------------------------------------*/

/*------------------------------------------
  header
------------------------------------------*/
.cmn-header {
  position: relative;
}

.flex-nav {
	width: 100%;
	background: rgba(255,255,255,0.85);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: .5rem;
	box-sizing: border-box;
}
.flex-nav .flex-logo {
	width: 280px;
}
.flex-nav .flex-list {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
.flex-nav .flex-list li {
	position: relative;
}
.flex-nav .flex-list li a {
	box-sizing: border-box;
	font-size: 16px;
	display: block;
	padding: 18px 1.5rem;
	color: #333;
	position: relative;
}
.flex-nav .flex-list li a .span01 {
	transition: 0.5s;
}
.flex-nav .flex-list li .span02 {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	display: block;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: 0.5s;
	color: #333;
	letter-spacing: -2px;
}
.flex-nav .flex-list li a:hover {
	opacity: 1;
}
.flex-nav .flex-list li a:hover .span01 {
	opacity: 0;
	transition: 0.5s;
}
.flex-nav .flex-list li a:hover .span02 {
	opacity: 1;
	transition: 0.5s;
	color: #333;
}

.gnav {
	display: none;
}
.gnav-list {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 1);
  left: -100%;
  z-index: 20;
  -webkit-transition: .4s;
          transition: .4s;
}
.gnav-list-open {
  border-right: 1px solid #c2b8ae;
  left: 0 !important;
  -webkit-transition: .4s;
          transition: .4s;
}
.gnav-list li {
  width: 100%;
  text-align: left;
  -webkit-flex: none;
          flex: none;
  border-bottom: 1px solid #c2b8ae;
}
.gnav-list a {
  display: block;
  padding: 1em 2em;
  font-weight: bold;
}
.gnav-list a:hover {
  opacity: 1;
  color: #fff;
  background: rgba(194, 184, 174, .8);
}
.gnav-toggle {
  display: block;
  cursor: pointer;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 30px;
  top: 35px;
  z-index: 20;
}
.gnav-toggle-icon {
  position: relative;
}
.gnav-toggle-icon div {
  position: absolute;
  width: 30px;
  height: 20px;
  top: -5px;
  left: 10px;
}
.gnav-toggle-icon span {
  -webkit-transition: .2s;
          transition: .2s;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #888;
  position: absolute;
  left: 0;
}
.gnav-toggle-icon span:nth-of-type(1) {
  top: 0;
}
.gnav-toggle-icon span:nth-of-type(2) {
  top: 50%;
  margin-top: -2px;
}
.gnav-toggle-icon span:nth-of-type(3) {
  bottom: 0;
}
.gnav-toggle-icon p {
	padding-top: 15px;
	font-size: 12px;
}
.gnav-open .gnav-toggle-icon span {
  -webkit-transition: .2s;
          transition: .2s;
}
.gnav-open .gnav-toggle-icon span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
}
.gnav-open .gnav-toggle-icon span:nth-of-type(2) {
  opacity: 0;
}
.gnav-open .gnav-toggle-icon span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}
/* ↓子メニューがある場合 */
/*
.flex-nav .flex-list li:hover .gnav-child {
	display: block;
}
.flex-list .gnav-child {
	display: none;
	width: 130px;
	background: rgba(255,255,255,0.85);
	position: absolute;
	top: 64px;
	left: -42%;
	padding: 0 1rem;
	box-sizing: border-box;
}
.flex-list .gnav-child li {
	display: block;
	text-align: center;
}
.flex-list .gnav-child li a {
	display: block;
	font-size: 16px;
	padding: 0.5rem 5px;
	box-sizing: border-box;
	border-bottom: 0.5px solid #707070;
	font-size: 14px;
}
.flex-list .gnav-child li:last-child a {
	border-bottom: none;
}
*/

@media only screen and (max-width: 1024px) {
  .gnav-toggle {
    top: 20px;
    right: 10px;
  }
  .flex-nav {
		display: none;
	}
	.gnav {
	  display: block;
	  position: fixed;
	  background: #fff;
	  padding: 0.5rem 1rem;
	  width: 100%;
	  left: 0;
	  top: 0;
	  z-index: 99;
	  box-sizing: border-box;
  }
  .gnav .flex-logo {
	  width: 300px;
  }
}

/*------------------------------------------
  footer
------------------------------------------*/
.cmn-footer {
  background: #333333;
  color: #fff;
  font-size: 14px;
}
.cmn-footer .inner {
	max-width: 1200px;
	width: 95%;
	margin: auto;
	padding: 6.024rem 0;
}
.cmn-footer .txt {
	font-size: 18px;
	font-weight: bold;
}
.cmn-footer .copy {
	font-size: 12px;
	text-align: center;
}

@media only screen and (max-width: 1024px) {
	.cmn-footer .inner {
		padding: 3rem 0;
	}
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 480px) {
	.cmn-footer {
		font-size: 12px;
	}
}

/*------------------------------------------
  contents
------------------------------------------*/
/* Common */
.cmn-main {
  position: relative;
  z-index: 1;
}

/*------------------------------------------
  Clearfix
------------------------------------------*/
.clearfix, .list-type01 li {
  *zoom: 1;
}
.clearfix:after, .list-type01 li:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
