@charset "UTF-8";
html {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  word-wrap: break-word;
  font-weight: 500;
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}
a {
  outline: none;
  color: inherit;
  text-decoration: none;
  transition: all ease-in-out .3s;
}
a * {
  backface-visibility: hidden;
}
a:hover {
  opacity: .7;
}
#wrapper {
  overflow: hidden;
}
a:focus, *:focus {
  outline: none;
}
img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
}
.txt {
  line-height: 2.1rem;
}
@media only screen and (max-width: 767px) {
  .txt {
    line-height: 2rem;
  }
}
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flowLink {
  display: block;
  position: relative;
  padding-bottom: 6px;
}
@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    height: 2px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease .5s;
  }
}
.flowLink:hover::after {
  transform: scale(1);
}
.scroll_item, .scroll_list_item {
  opacity: 0;
  transition: all ease-in-out .6s;
}
.scroll_item.scrollActive, .scroll_list_item.scrollActive {
  opacity: 1;
  transform: translate(0) scale(1) !important;
}
.flex_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
/*PC 共通
-----------------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  html {
    font-size: 20px;
  }
  .sp {
    display: none;
  }
  .flex_box_pc {
    display: flex;
    flex-wrap: wrap;
  }
  #wrapper:not(.preload) * {
    transition: none !important;
  }
  main {
    font-size: 0.66667vw;
  }
  main p {
    font-size: 1.33333vw;
  }
}
@media screen and (min-width: 1501px) {
  main {
    font-size: 62.5%;
  }
  main p {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1000px) {
  html {
    font-size: 2vw;
  }
}
/*--------------------------endPC--------------------------------*/
/*SP共通
-----------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  html {
    font-size: 4vw;
  }
  .pc {
    display: none;
  }
  .flex_box_sp {
    display: flex;
    flex-wrap: wrap;
  }
}
/*--------------------------endSP--------------------------------*/

/*-----------------------------------------------------------
header
-----------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 4.5rem;
  width: 100%;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  .header {
    height: 4.33333rem;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 93.3%;
}
@media only screen and (max-width: 767px) {
  .header__wrapper {
    width: 89%;
  }
}
.header__logo {
  width: 11.6%;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    width: 38.5%;
    z-index: 1001;
  }
}
.header__logo figure {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .header__nav {
    position: fixed;
    background-color: #fff;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    transform: translate(100%, 0);
    transition: all ease .6s;
    overflow-y: scroll;
    z-index: 1000;
  }
}
@media only screen and (max-width: 767px) {
  .header__nav.active {
    transform: translate(0%, 0);
  }
}
.header__list {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .header__list {
    display: block;
    margin: 10rem auto 1rem;
    width: 78.6%;
  }
}
.header__item {
  margin-top: -0.4rem;
}
@media only screen and (max-width: 767px) {
  .header__item {
    border-bottom: 2px dotted #e9bd7e;
  }
}
.header__item:not(:last-of-type) {
  margin-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .header__item:not(:last-of-type) {
    margin-right: 0;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header__item:first-of-type figure {
    height: 1.5rem;
  }
}
.header__item:nth-of-type(3) a {
  height: 1.1rem;
}
@media only screen and (max-width: 767px) {
  .header__item:nth-of-type(3) a {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .header__item:nth-of-type(3) a figure {
    height: 1.3rem;
  }
}
.header__item a {
  display: block;
  position: relative;
  height: 1.1rem;
}
@media only screen and (max-width: 767px) {
  .header__item a {
    padding: 1.66667rem 0 3.16667rem;
    height: auto;
  }
}
.header__item a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.7rem;
  left: 0;
  margin: auto;
  border-style: solid;
  border-width: 0.4rem 0.375rem 0 0.375rem;
  border-color: #e2c724 transparent transparent transparent;
  height: 0;
  width: 0;
}
@media only screen and (max-width: 767px) {
  .header__item a::before {
    bottom: 1.5rem;
  }
}
.header__item figure {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .header__item figure {
    height: 1.4rem;
  }
}
.header__item img {
  height: 100%;
}
.header__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.53333rem;
  background-color: #fff;
  border-radius: 10px;
  z-index: 1001;
}
@media print, screen and (min-width: 768px) {
  .header__btn {
    display: none;
  }
}
.header__btn.active {
  background-color: #fff;
}
.header__btn.active .header__bar {
  background-color: #000;
}
.header__btn.active .header__bar:first-of-type {
  transform: translateY(0.56667rem) rotate(30deg);
}
.header__btn.active .header__bar:nth-child(2) {
  transform: translateY(-50%);
  opacity: 0;
}
.header__btn.active .header__bar:last-of-type {
  transform: translateY(-0.36667rem) rotate(-30deg);
  width: 100%;
}
.header__btn.active .header__menu.menu {
  display: none;
}
.header__btn.active .header__menu.close {
  display: block;
  margin-top: 0.5rem;
  color: #000;
}
.header__mark {
  position: relative;
  cursor: pointer;
  height: 1rem;
  width: 1.8rem;
}
.header__bar {
  position: absolute;
  left: 0;
  background-color: #000;
  height: 0.13333rem;
  width: 100%;
}
.header__bar:first-of-type {
  top: 0;
}
.header__bar:nth-child(2) {
  top: 0.43333rem;
}
.header__bar:last-of-type {
  bottom: 0;
}
.header__mark, .header__bar {
  transition: all .6s ease;
  box-sizing: border-box;
}
.header__menu {
	margin-top: 0.1rem;
  width: 2.5rem;
}
.header__menu.menu {
  display: block;
}
.header__menu.close {
  display: none;
	width: 2rem;
}
/*-----------------------------------------------------------
footer
-----------------------------------------------------------*/
.footer__sns {
  display: flex;
  justify-content: center;
  padding-top: 1.75rem;
}
@media only screen and (max-width: 767px) {
  .footer__sns {
    padding-top: 1.86667rem;
  }
}
.footer__sns a {
  margin: 1.25rem;
  width: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .footer__sns a {
    margin: 0 0.5rem;
    width: 3rem;
  }
}
.footer__banner {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 0 2.5rem;
  margin: auto;
  max-width: 1000px;
  width: 85%;
}
@media only screen and (max-width: 767px) {
  .footer__banner {
    flex-wrap: wrap;
    padding: 1rem 0 1.66667rem;
    width: 15.33333rem;
  }
}
.footer__banner a {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .footer__banner a {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footer__banner a:first-of-type {
    margin-bottom: 0.66667rem;
  }
}
.footer__copy {
  border-top: 1px solid #D2D2D2;
  font-size: 0.7rem;
  padding: 1rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer__copy {
    font-size: 0.66667rem;
    padding: 1.2rem 0;
  }
}