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

html {
	font-size: 62.5%;
  height: -webkit-fill-available;
}
body {
	color: #231815;
	width: 100%;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(1.4rem, 1.6vw, 1.6rem);
	line-height: 2.0em;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
}
* {
	margin: 0;
	padding :0;
  box-sizing: border-box;
	position: relative;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
}
img, figure, figcaption {
	border: 0;
	vertical-align: top;
}
img {
  max-width: 100%;
  height: auto;
}
a {
	color: #231815;
  text-decoration: none;
	display: inline-block;
}
a, a:hover, a *, a:hover *, a::before, a:hover::before, a::after, a:hover::after, .slick-arrow {
  transition: border 0.3s ease-out, background 0.3s ease-out, color 0.3s ease-out, opacity 0.3s ease-out;
}
a:hover img {
  opacity: 0.6;
}
ul, ol, li, dl, dt, dd {
	margin: 0;
	padding: 0;
	list-style: none;
}
table {
	width: 100%;
	border: none;
	border-spacing: 0;
}
tbody {
	border-top: 0px;
}
th, tbody th {
	padding-right: 0em;
	border-bottom: none;
}
.list-com, .list-disc {
	margin: 0;
	padding: 0;
}
.list-com li, .list-disc li {
	list-style: none;
	padding: 0 0 0 15px;
	position: relative;
	margin: 0;
	line-height: 2;
}
.list-com li:last-child, .list-disc li:last-child {
    margin: 0;
}
.list-com li:before {
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}
.list-disc li:before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}

.list-nmb {
  list-style-type: none;
  counter-reset: number;/* カウンターを初期化 */
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.list-nmb li {
  position: relative;
  padding: 0 0 0 27px;
}
.list-nmb li::before {
  content: counter(number);
  counter-increment: number;
  font-family: 'Roboto';
  text-align: center;
  font-size: 1.4rem;
  position: absolute;
  left: 1px;
  top: 1px;
  width: 20px;
  height: 30px;
  margin: auto;
}
/* afterで○を作る */
.list-nmb li::after {
  content: '';/* 配置を調整 */
  position: absolute;
  display: block;
  top: 16px;
  left: 0;
  transform: translateY(-50%);/* ○を作る */
  width: 1.3em;
  height: 1.3em;
  border: 1px solid #000;
  border-radius: 50%;
}

@media screen and (max-width: 770px) {
	.list-nmb li::before {
    top: 3px;
  }
  /* afterで○を作る */
  .list-nmb li::after {
    width: 1.5em;
    height: 1.5em;
  }
}


/* CONTENT */
.inner {
  padding: 0 8.33%;
}
.pc {
	display: inline-block;
}
.sp {
	display: none;
}
@media screen and (max-width: 770px) {
	.pc {
		display: none;
	}
	.sp {
		display: inline-block;
	}
}



/*　#Header */
header#Header {
  display: flex;
  width: 90%;
  justify-content: space-between;
  padding: 15px 40px;
  background: #fff;
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  margin: auto;
  top: 30px;
  border-radius: 50px;
  align-items: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
header#Header .Logo {
  width: 190px;
}
header#Header .Nav ul {
  display: flex;
  gap: 20px;
  font-weight: 600;
  align-items: center;
}
header#Header .Nav ul li.head-cont {
  background: #0068b6;
  padding: 5px 20px;
  border-radius: 30px;
}
header#Header .Nav ul li.head-cont a {
  color: #fff;
}

@media screen and (max-width: 999px) {
  header#Header {
    width: 100%;
    padding: 5px 20px;
    top: 0;
    border-radius: 0;
  }
  header#Header .Logo {
    width: 50%;
  }
  div#NavWrap {
    z-index: 100;
    width: auto;
    background: none;
    padding: 0;
  }
  #NavWrap nav {
    background: #FFFFFF;
    width: 100%;
    height: 100%;
    padding: 32px 5.33%;
    padding-top: 80px;
    pointer-events: none;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 0.5s;
    z-index: -99;
    opacity: 0;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-flow: column-reverse;
    justify-content: start;
  }
  #NavWrap.open nav {
    pointer-events: all;
    z-index: 99;
    opacity: 1;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-flow: column-reverse;
    justify-content: start;
    padding: 90px 5.33% 0;
  }
  #NavWrap nav > *:not(:last-child) {
    margin-bottom: 24px;
  }
  #NavWrap .Nav ul {
    flex-flow: column;
    display: flex;
    gap: 30px;
  }
  #NavWrap .Nav ul > *:not(:last-child) {
    margin-bottom: 0;
  }
  #NavWrap .Nav a {
    min-height: 32px;
    padding: 8px;
    font-size: 1.6rem;
    text-align: center;
    display: block;
  }

  .Toggle {
    width: 55px;
    height: 45px;
    box-sizing: border-box;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
    border: none;
  }
  .Toggle span {
    background: #1d1d1d;
    width: 45px;
    height: 1px;
    display: block;
    position: absolute;
    left: 9px;
    border-radius: 4px;
    transition: all 0.5s;
  }
  .Toggle span:nth-child(1) {
    top: 15px;
  }
  .Toggle span:nth-child(2) {
    top: 26px;
  }
  .Toggle span:nth-child(3) {
    bottom: 6px;
  }
  .open .Toggle span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  .open .Toggle span:nth-child(2) {
    opacity: 0;
  }
  .open .Toggle span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-12px) rotate(315deg);
  }
  header#Header .Nav ul li.head-cont {
      padding: 5px 70px;
  }
}



/* FOOTER */
footer#Footer {
  text-align: center;
  padding: 80px 0 30px;
  background: #F8F9FA;
}
footer#Footer .footer-logo {
  width: 300px;
  margin: 0 auto 30px;
}
footer#Footer ul.fMenu {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 0 auto 50px;
  font-weight: 700;
}
footer#Footer .Copy {
  color: #898989;
  font-size: 1.2rem;
  letter-spacing: 2px;
}


@media screen and (max-width: 770px) {
  footer#Footer {
    padding: 50px 8.33% 30px;
  }
  footer#Footer .footer-logo {
    width: 70%;
  }
  footer#Footer ul.fMenu {
    gap: 10px 30px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
  }
  footer#Footer .Copy {
    letter-spacing: 1px;
  }
}