@charset "UTF-8";

/* ---------- reset css ---------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transwpent;
}
body {
  line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display:block;
}
nav ul {
  list-style:none;
}
blockquote, q {
  quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}
a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transwpent;
}
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}
mark {
  background-color:#ff9;
  color:#000;
  font-style:italic;
  font-weight:bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
hr {
  display:block;
  height:1px;
  border:0;
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}
input, select {
  vertical-align:middle;
}
input[type='text'],
input[type='submit'],
select,
textarea {
  -webkit-appearance: none;
}
img {
  max-width: 100%;
  line-height: 0;
}

/* ---------- 固定汎用CSS ---------- */
*,
*::after,
*::before {
  line-height: 1.6;
  box-sizing: inherit;
}

html {
	font-size: 62.5%;
}

@media screen and (max-width: 1400px) {
  html {
    font-size: .715vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 1.4vw;
  }
}


body {
  font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	font-size: 1.6rem;
	color: #000;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
ul,ol {
	list-style: none;
}
.pc {
  display: block;
}
.sp {
  display: none !important;
}

@media screen and (max-width:767px) {
	.pc {
    display: none !important;
  }
	.sp {
    display: block !important;
  }
}

/* drawer-menu */
#btn_trigger {
  position: relative;
  cursor: pointer;
}
.nav_line {
  position: relative;
  width: 5.5rem;
  height: 4.2rem;
  z-index: 1000;
}
.nav_line span {
  width: 100%;
  height: 3px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  border-radius: 5px;
  transition: .3s;
}
.nav_line span:nth-child(1) {
  top: 0;
}
.nav_line span:nth-child(2) {
  top: 1.9rem;
}
.nav_line span:nth-child(3) {
  bottom: 0;
}
.header .nav {
  background: #CEA4A8;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 1.8rem;
  width: 40%;
  height: 100vh;
  padding: 8.5rem 7.45rem 5.4rem 6.4rem;
  transform: translateX(100%);
  transition: .3s;
  z-index: 999;
  overflow-y: scroll;
}
.header .nav li {
  font-size: 2.5rem;
  color: #fff;
  font-weight: bold;
  padding: 1.7rem 0 0;
  border-bottom: 1px solid #fff;
}
.header .nav li ul {
  padding: 1.7rem 0;
  border-top: 1px solid #fff;
}
.header .nav li ul li {
  padding: .6rem 0 0 4rem;
  border-bottom: none;
}
.header .nav li a {
  font-size: 2.5rem;
  color: #fff;
  font-weight: bold;
}
.header .nav li.--last {
  border-bottom: none;
  margin-top: 2rem;
}
.header .nav li.--last img {
  max-width: 5rem;
}
.open .nav_line {
  position: absolute;
  right: 5%;
  width: 5.5rem;
  height: 2.2rem;
}
.open .nav_line span {
 background: #fff;
}
.open .nav_line span:nth-of-type(1) {
  -webkit-transform: translateY(.9rem) rotate(45deg);
  transform: translateY(.9rem) rotate(45deg);
}
.open .nav_line span:nth-of-type(2) {
  opacity: 0;
}
.open .nav_line span:nth-of-type(3) {
  -webkit-transform: translateY(-.9rem) rotate(-45deg);
  transform: translateY(-.9rem) rotate(-45deg);
}
.open .header .nav {
  transform: translateX(0);
}
.open .nav_bg {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  transition: .3s;
  z-index: 998;
}

@media screen and (max-width:767px) {
  .header .nav {
    width: 90%;
    padding: 8.5rem 5% 5.4rem;
  }
  .header .nav li {
    font-size: 3rem;
    padding: 2rem 0 0;
  }
  .header .nav li ul {
    padding: 2rem 0;
  }
  .header .nav li ul li {
    padding: .6rem 0 0 4rem;
  }
  .header .nav li a {
    font-size: 3rem;
  }
  .header .nav li.--last {
    border-bottom: none;
    margin-top: 2rem;
  }
  .header .nav li.--last img {
    max-width: 7rem;
  }
  .open .nav_line {
    right: 7%;
    height: 2.3rem;
  }
}
