@charset "UTF-8";
/*HEADER*/
/*******************************************************************/
#header {
  left: 0;
  position: fixed;
  top: 0px;
  z-index: 9000;
  height: auto;
  width: 100%;
  padding: 10px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    top: 0;
    margin: 0;
    box-shadow: none;
    justify-content: flex-start;
    height: 72px;
    background: #fff;
    z-index: 9999;
    padding-bottom: 0;
    border-bottom: none;
    padding: 0;
  }
}
#header .mw {
  margin: auto;
  padding: 0 0 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #header .mw {
    padding: 0 20px 0 0;
  }
}
#header .logo-wrapper {
  width: 240px;
  padding: 0;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  #header .logo-wrapper {
    padding: 0;
    width: 240px;
  }
}
#header .logo-wrapper a {
  line-height: 1.8;
  color: #333 !important;
  letter-spacing: 4px;
}
#header .logo-wrapper img {
  padding: 0px;
}
@media screen and (max-width: 768px) {
  #header .logo-wrapper img {
    padding: 0px 0 0 20px;
  }
}
#header.fixed {
  top: 0;
}
#header.fixed a {
  color: #333 !important;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0px;
  right: -120%;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  /*動き*/
  transition: all 0.6s;
  overflow: hidden;
  transition: all 1s ease-out;
  display: flex;
  overscroll-behavior: contain;
  overflow-y: scroll;
  /*アクティブクラスがついたら位置を0に*/
}
@media screen and (max-width: 1000px) {
  #g-nav {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #g-nav {
    top: 72px;
  }
}
#g-nav.panelactive {
  right: 0;
  /*ナビゲーションの縦スクロール*/
}
#g-nav #g-nav-list {
  z-index: 999;
  width: 50%;
  max-width: 550px;
  margin-left: auto;
  height: calc(var(--vh, 1vh) * 100);
  background: #fff;
  overflow: auto;
  position: relative;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 768px) {
  #g-nav #g-nav-list {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
#g-nav ul {
  padding: 80px 20px 20px;
}
@media screen and (max-width: 768px) {
  #g-nav ul {
    padding: 20px;
  }
}
#g-nav ul li {
  padding: 0px;
}
#g-nav ul li a {
  color: #313131;
  font-weight: 600;
  display: block;
  padding: 20px 10px;
  font-size: 1.4rem;
  position: relative;
  letter-spacing: 2px;
  border-bottom: solid 1px;
}
#g-nav ul li a:hover {
  background: #ED6D00;
  color: #fff !important;
  opacity: 1;
}
#g-nav ul li a:hover:after {
  color: #fff;
}
#g-nav ul li a:after {
  content: "〉";
  right: 10px;
  position: absolute;
  color: #313131;
}
#g-nav ul li a i {
  font-size: 1.4rem;
  opacity: 0.8;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 8px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1000px) {
  .openbtn1 {
    top: 6px;
  }
}
@media screen and (max-width: 768px) {
  .openbtn1 {
    top: 12px;
  }
}
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #333;
  width: 65%;
}
@media screen and (max-width: 1000px) {
  .openbtn1 span {
    background-color: #333;
  }
}
.openbtn1 span:nth-of-type(1) {
  top: 15px;
}
.openbtn1 span:nth-of-type(2) {
  top: 23px;
}
.openbtn1 span:nth-of-type(3) {
  top: 31px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background-color: #333 !important;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
  background-color: #333 !important;
}

nav#g-nav:after {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  height: 100%;
  right: 100%;
  top: 0;
  opacity: 0;
  content: "";
  z-index: -999;
  overflow: hidden;
  transition: all 1s ease-out;
}
@media screen and (max-width: 768px) {
  nav#g-nav:after {
    top: 72px;
    display: none;
  }
}

nav#g-nav.panelactive:after {
  opacity: 1;
  z-index: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  nav#g-nav.panelactive:after {
    top: 72px;
  }
}

.nonScroll {
  height: calc(100vh + 1px);
  width: 1px;
  background-color: transparent;
}

/*============================
#message
============================*/
article#message {
  width: auto;
}
@media screen and (max-width: 768px) {
  article#message {
    width: auto;
  }
}
article#message figure {
  position: absolute;
  height: 100%;
  width: 100%;
}
article#message figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
article#message img.bg {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  article#message img.bg {
    width: auto;
  }
}
article#message section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  article#message section {
    width: auto;
  }
}
article#message section div.wrap {
  width: auto;
}
@media screen and (max-width: 768px) {
  article#message section div.wrap {
    width: auto;
  }
}
article#message section div.wrap h2 {
  width: auto;
  font-size: 2.4rem;
  letter-spacing: 2px;
  color: #fff;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  article#message section div.wrap h2 {
    width: auto;
    line-height: 1.8;
  }
}
article#message section div.wrap p {
  width: auto;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 2px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  article#message section div.wrap p {
    width: auto;
  }
}

/*FOOTER*/
/*******************************************************************/
/*============================
#footer
============================*/
footer#footer {
  width: auto;
  background: #FFFFFF;
  padding: 80px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer#footer {
    width: auto;
  }
}
footer#footer section {
  max-width: 1280px;
  margin: auto;
  padding: 0 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  footer#footer section {
    padding: 0 40px 40px;
  }
}
@media screen and (max-width: 768px) {
  footer#footer section {
    display: block;
    padding: 0 0px 40px;
  }
}
footer#footer section div.content {
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer#footer section div.content {
    width: auto;
  }
}
footer#footer section div.content ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  footer#footer section div.content ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  footer#footer section div.content ul {
    flex-wrap: wrap;
  }
}
footer#footer section div.content ul li.parent {
  width: auto;
}
@media screen and (max-width: 1000px) {
  footer#footer section div.content ul li.parent {
    width: 33.3333333333%;
    padding: 0px 20px 40px;
  }
}
@media screen and (max-width: 768px) {
  footer#footer section div.content ul li.parent {
    width: 100%;
  }
}
footer#footer section div.content ul li.parent h3 {
  font-size: 1.6rem;
  letter-spacing: 2px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  footer#footer section div.content ul li.parent h3 {
    color: #ED6D00;
  }
}
@media screen and (max-width: 768px) {
  footer#footer section div.content ul li.parent h3 {
    color: #ED6D00;
  }
}
footer#footer section div.content ul li.parent ol {
  width: auto;
}
@media screen and (max-width: 768px) {
  footer#footer section div.content ul li.parent ol {
    width: auto;
    display: flex;
    flex-wrap: wrap;
  }
}
footer#footer section div.content ul li.parent ol li {
  font-size: 1.2rem;
  padding: 20px 10px 0 10px;
  letter-spacing: 2px;
  position: relative;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  footer#footer section div.content ul li.parent ol li {
    width: auto;
    padding: 0 15px 0 0;
    margin-right: 15px;
    margin-bottom: 10px;
  }
}
footer#footer section div.content ul li.parent ol li a {
  width: auto;
}
@media screen and (max-width: 768px) {
  footer#footer section div.content ul li.parent ol li a {
    width: auto;
  }
}
footer#footer section div.content ul li.parent ol li:before {
  content: "-";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  footer#footer section div.content ul li.parent ol li:before {
    content: "";
    position: absolute;
    left: auto;
    right: -1px;
    opacity: 0.6;
    top: calc(50% - 7px);
    width: 1px;
    background: #000;
    height: 14px;
    display: none;
  }
}
footer#footer section div.content ul li.parent ol li.last-in-row::before {
  content: none;
}
footer#footer div.copyright {
  width: auto;
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
  font-size: 1.4rem;
  background: #ED6D00;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer#footer div.copyright {
    width: auto;
    flex-wrap: wrap;
  }
}
footer#footer div.copyright ul {
  width: auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  footer#footer div.copyright ul {
    width: auto;
    flex-wrap: wrap;
  }
}
footer#footer div.copyright ul li {
  width: auto;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  footer#footer div.copyright ul li {
    width: auto;
    padding-bottom: 20px;
  }
}
footer#footer div.copyright ul li a {
  color: #fff;
}
footer#footer div.copyright p {
  width: auto;
}
@media screen and (max-width: 768px) {
  footer#footer div.copyright p {
    width: auto;
    text-align: left;
    font-size: 1rem;
    padding-top: 20px;
  }
}/*# sourceMappingURL=main.css.map */