/*===============================

	common

================================*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", system-ui;
  font-size: 15px;
  color: #383838;
}

.wrapper {
  display: flex;
}

#PAGES main {
  margin-top: 200px;
}

.page {
  position: relative;
  min-height: 100vh;
  padding-bottom: 250px;
}

/*-------------------------
  only
-------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/*-------------------------
  font
-------------------------*/
.en {
  font-family: "Jost", system-ui;
}

/*-------------------------
  title
-------------------------*/
.title {
  color: #C81C1D;
  line-height: 1.3;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.title span {
  color: #8B8B8B;
  display: block;
  font-weight: 600;
  font-size: 18px;
}

/*-------------------------
  img
-------------------------*/
img {
  width: 100%;
}

/*-------------------------
  Bg
-------------------------*/
.ImgBg {
  background-image: url(../images/image_bg1.jpg);
  background-repeat: no-repeat;
  background-position: 0% 0%;
  background-attachment: fixed;
  background-size: 100%;
  padding: 80px 0px;
  filter: brightness(100%);
}

.OrangeBg {
  background-color: #ffa200;
  background-image: url(../images/image_dot.png);
  background-size: 2px;
}

/*-------------------------
  width
-------------------------*/
.W800 {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.W900 {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/*-------------------------
  margin
-------------------------*/
.Mb10 {
  margin-bottom: 10px;
}

.Mb20 {
  margin-bottom: 20px;
}

.Mb30 {
  margin-bottom: 30px;
}

.Mb40 {
  margin-bottom: 40px;
}

.Mb60 {
  margin-bottom: 60px;
}

.Mb80 {
  margin-bottom: 80px;
}

.Mb100 {
  margin-bottom: 100px;
}

.Mb150 {
  margin-bottom: 150px;
}

.Mt100 {
  margin-top: 100px;
}

/*-------------------------
  Btn
-------------------------*/
.MoreBtn {
  text-align: center;
}

.MoreBtn a::before {
  content: '';
  width: 22px;
  height: 22px;
  background: #F5A620;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  right: 8px;
  bottom: 0;
  margin: auto;
}

.MoreBtn a::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0px;
  right: 17px;
  bottom: 0;
  margin: auto;
}

.MoreBtn a {
  padding: 13px 80px 13px 40px;
  border: 2px solid #F5A620;
  border-radius: 40px;
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #F5A620;
  font-weight: 700;
}

.TopBtn img {
  width: 100px;
}

.TopBtn span {
  display: block;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 700;
  margin-right: 5px;
  color: #F5A620;
}

.TopBtn a {
  display: block;
  position: fixed;
  bottom: 70px;
  right: 30px;
  text-align: center;
  z-index: 10;
}

/*-------------------------
  Bnr
-------------------------*/
#banner .OrangeBg {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

.content .Bnr {
  padding: 30px 10px;

}

.content .Bnr ul.wrapper {
  justify-content: center;
  margin-bottom: 20px;
}

.content .Bnr ul li {
  width: 27%;
  margin: 0 10px;
}

.content .Bnr ul li img {
  border: 1px solid #ccc;
}

.content .Bnr p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.content .Bnr ul li a {
  display: inline-block;
  transition: .3s;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*-------------------------
  PageHeader
-------------------------*/
#PAGES .PageHeader {
  background-color: #F5A620;
  position: fixed;
  width: 100%;
  height: 110px;
  z-index: 10;
  top: 0;
}

#PAGES .PageHeader .logo {
  max-width: 220px;
  margin: 0 auto;
  padding: 25px;
  margin-bottom: 80px;
}

/*-------------------------
  footer
-------------------------*/
footer {
  background-color: #F5A620;
  padding: 10px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

footer .copyright {
  text-align: center;
  color: #fff;
  font-size: 13px;
}