@charset "UTF-8";
/*---------------------------------------
	RESET
---------------------------------------*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
  font-weight: 300;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

img {
  width: 100%;
}

/*---------------------------------------
	全体の設定
---------------------------------------*/
.pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  .pc {
    display: inline;
  }
}

.sp {
  display: inline;
}
@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }
}

@font-face {
  font-family: "NotoSerifJP-Regular";
  src: url("../fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../fonts/NotoSerifJP-Regular.otf") format("woff");
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansJP-Regular";
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff2") format("woff2"), url("../fonts/Lato-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: "Orlando";
  src: url("../fonts/Orlando.woff2") format("woff2"), url("../fonts/Orlando.woff") format("woff");
  font-display: swap;
  font-weight: 300;
}
body {
  color: #000;
  font-family: "NotoSerifJP-Regular", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-size: 15px;
  font-weight: 300;
  position: relative;
  line-height: 2.125em;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 16px;
  }
}

a {
  color: #fff;
  text-decoration: none;
}

address {
  font-style: normal;
}

/*---------------------------------------
	ANIMATION
---------------------------------------*/
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  transition: 1.5s;
}
.fadein.is-show {
  opacity: 1;
}

/*---------------------------------------
	HEADER
---------------------------------------*/
#header {
  width: 100%;
  color: #fff;
  top: 0;
  position: fixed;
  z-index: 90;
  background: rgba(109, 109, 109, 0.7);
}
#header #header_inner {
  -webkit-animation: fadein 1s forwards;
          animation: fadein 1s forwards;
  width: 90%;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 1400px) {
  #header #header_inner {
    padding: 25px 0;
    max-width: 1620px;
    display: grid;
    justify-content: space-between;
    grid-template-columns: 240px 540px;
  }
}
@media screen and (min-width: 1400px) {
  #header #header_inner {
    grid-template-columns: 700px 540px;
  }
}
#header #header_inner #header_logo_container {
  display: grid;
  align-content: center;
  grid-template-columns: 280px 1fr;
  justify-content: start;
}
#header #header_inner #header_logo_container #header_logo {
  transition: 0.2s ease-out;
  width: 168px;
  display: block;
}
@media screen and (min-width: 680px) {
  #header #header_inner #header_logo_container #header_logo {
    width: 240px;
  }
}
#header #header_inner #header_logo_container #header_expo {
  opacity: 0;
  display: none;
  font-family: "NotoSansJP-Regular";
  font-size: 0.75em;
  line-height: 1.666em;
}
@media screen and (min-width: 680px) {
  #header #header_inner #header_logo_container #header_expo {
    -webkit-animation: fadein 1s forwards;
            animation: fadein 1s forwards;
    display: block;
    opacity: 1;
  }
}
#header #header_inner #header_nav_container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
}
#header #header_inner #header_nav_container #header_nav {
  display: none;
}
@media screen and (min-width: 1400px) {
  #header #header_inner #header_nav_container #header_nav {
    -webkit-animation: fadein 1s forwards;
            animation: fadein 1s forwards;
    display: grid;
    align-content: center;
    grid-template-columns: 1fr auto;
  }
}
#header #header_inner #header_nav_container #header_nav li {
  display: inline-block;
  margin-right: 35px;
}
#header #header_inner #header_nav_container #header_nav li a {
  transition: all 0.2s;
}
#header #header_inner #header_nav_container #header_nav li a:hover {
  opacity: 0.7;
}
#header #header_inner #header_nav_container .btn_sns_container {
  display: none;
}
@media screen and (min-width: 1400px) {
  #header #header_inner #header_nav_container .btn_sns_container {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .btn_sns_container {
    height: 30px;
  }
}
.btn_sns_container li {
  display: inline-block;
  margin-right: 20px;
}
.btn_sns_container li:last-child {
  margin-right: 0;
}
.btn_sns_container li a {
  display: block;
  overflow: hidden;
  opacity: 0.7;
  width: 30px;
  height: 30px;
  text-indent: 100%;
  white-space: nowrap;
  background-size: 100%;
  background-repeat: no-repeat;
  transition: all 0.2s;
}
.btn_sns_container li a.btn_sns_line {
  background-image: url(../images/common/btn_sns_line.png);
}
.btn_sns_container li a.btn_sns_insta {
  background-image: url(../images/common/btn_sns_insta.png);
}
@media screen and (min-width: 1025px) {
  .btn_sns_container li a:hover {
    opacity: 1;
  }
}

#btn_menu_container {
  width: 30px;
  height: 30px;
  display: inline-block;
  cursor: pointer;
  z-index: 110;
  position: fixed;
  top: 12px;
  right: 5%;
}
@media screen and (min-width: 680px) {
  #btn_menu_container {
    top: 19px;
  }
}
@media screen and (min-width: 1400px) {
  #btn_menu_container {
    display: none;
  }
}
#btn_menu_container #btn_menu {
  position: relative;
  width: 30px;
  height: 30px;
  top: 0;
}
#btn_menu_container #btn_menu span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  transition: all 0.5s;
  background-color: #fff;
}
#btn_menu_container #btn_menu span:nth-of-type(1) {
  top: 10px;
}
#btn_menu_container #btn_menu span:nth-of-type(2) {
  bottom: 10px;
}
#btn_menu_container #btn_menu.active span {
  background-color: #fff;
}
#btn_menu_container #btn_menu.active span:nth-of-type(1) {
  transform: translateY(5px) rotate(-30deg);
}
#btn_menu_container #btn_menu.active span:nth-of-type(2) {
  transform: translateY(-4.2px) rotate(30deg);
}

#spmenu {
  width: 100%;
  position: fixed;
  background-color: #898989;
  transform: translateY(-100%);
  transition: all 0.5s;
  top: 0;
  opacity: 0;
  z-index: 0;
  height: 0;
  height: 100vh;
  padding-top: 11.8483412322vh;
}
#spmenu.open {
  transform: translateY(0);
  height: 100vh;
  opacity: 1;
  z-index: 100;
  overflow-y: scroll;
}
@media screen and (min-width: 1400px) {
  #spmenu {
    display: none;
  }
}
#spmenu .menu_inner {
  padding-bottom: 40px;
}
#spmenu .menu_inner .menu_nav_container {
  display: block;
}
#spmenu .menu_inner .menu_nav_container .menu_nav {
  font-size: 1.2em;
}
#spmenu .menu_inner .menu_nav_container .menu_nav ul li {
  display: block;
}
#spmenu .menu_inner .menu_nav_container .menu_nav ul li a {
  padding-bottom: 30px;
}
#spmenu .menu_inner .menu_logo {
  width: 50.7692307692%;
  margin: 0 auto 8.29383886vh;
}
#spmenu .menu_inner .btn_sns_container li a {
  width: 36px;
  height: 36px;
}

/*---------------------------------------
	FOOTER / SPMENU 共通
---------------------------------------*/
.menu_inner {
  width: 85%;
  color: #fff;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .menu_inner {
    max-width: 1180px;
  }
}
.menu_inner .menu_logo {
  display: block;
  width: 65.25679758%;
  margin-bottom: 30px;
  transition: 0.2s ease-out;
}
@media screen and (min-width: 1025px) {
  .menu_inner .menu_logo {
    width: 23.55932203%;
    margin-bottom: 44px;
  }
}
@media screen and (min-width: 1025px) {
  .menu_inner .menu_nav_container {
    display: grid;
    grid-template-columns: auto 95px;
    justify-content: space-between;
  }
}
.menu_inner .menu_nav_container .menu_nav {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .menu_inner .menu_nav_container .menu_nav {
    font-size: 0.9375em;
    font-size: 1em;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .menu_inner .menu_nav_container .menu_nav ul li {
    display: inline-block;
  }
}
.menu_inner .menu_nav_container .menu_nav ul li a {
  display: inline-block;
  padding: 0 0 10px;
}
@media screen and (min-width: 1025px) {
  .menu_inner .menu_nav_container .menu_nav ul li a {
    padding: 0 30px 0 0;
    transition: all 0.2s;
  }
  .menu_inner .menu_nav_container .menu_nav ul li a:hover {
    opacity: 0.7;
  }
}
.menu_inner .menu_nav_container .btn_sns_container {
  margin-bottom: 24px;
}
.menu_inner .copyright {
  font-family: "Lato";
  font-size: 0.9375em;
}

/*---------------------------------------
	FOOTER
---------------------------------------*/
#footer {
  background-color: #898989;
  padding: 40px 0;
}
@media screen and (min-width: 1025px) {
  #footer {
    padding: 90px 0;
  }
}

/*---------------------------------------
	PARTS
---------------------------------------*/
.section_inner {
  width: 95%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .section_inner {
    width: 100%;
    max-width: 1180px;
  }
}

.btn_detail {
  font-size: 0.9375em;
  display: inline-block;
  font-family: "NotoSansJP-Regular";
  position: relative;
  line-height: 50px;
  width: 167px;
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .btn_detail {
    width: 217px;
    line-height: 80px;
    margin-top: 0;
  }
}
.btn_detail::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all 0.2s;
}
.btn_detail:hover::before {
  opacity: 0;
}
.btn_detail:hover span::before {
  right: -6px;
}
.btn_detail:hover span::after {
  background-color: rgba(0, 0, 0, 0.1);
}
.btn_detail span {
  position: relative;
  display: block;
}
.btn_detail span::before {
  content: "";
  z-index: 1;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/common/ico_arrow_right_w.svg);
  background-position: center center;
  background-size: 15px 9px;
  background-repeat: no-repeat;
  transition: 0.2s ease-out;
}
@media screen and (min-width: 1025px) {
  .btn_detail span::before {
    width: 60px;
    height: 60px;
    background-size: 22px 15px;
  }
}
.btn_detail span::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 60px;
  border: #fff 1px solid;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-out;
}
@media screen and (min-width: 1025px) {
  .btn_detail span::after {
    width: 60px;
    height: 60px;
  }
}

.bnr_detail {
  display: block;
  border-radius: 5px;
  text-align: center;
  background: #fff;
  margin: 0 auto;
  width: 85%;
  max-width: 1180px;
  padding: 25px 0 15px;
  position: relative;
  color: #000;
  transition: all 0.2s;
}
@media screen and (min-width: 1025px) {
  .bnr_detail {
    padding: 60px 0;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .bnr_detail:hover {
    background-color: rgba(255, 255, 255, 0.7);
  }
  .bnr_detail:hover .bnr_detail_inner::after {
    right: -15px;
  }
}
.bnr_detail .bnr_detail_inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.bnr_detail .bnr_detail_inner p {
  font-family: "Lato";
  font-size: 1.466666em;
  font-weight: 400;
  margin-bottom: -7px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1025px) {
  .bnr_detail .bnr_detail_inner p {
    font-size: 2.75em;
    margin-bottom: 10px;
  }
}
.bnr_detail .bnr_detail_inner span {
  font-size: 0.8em;
  font-family: "NotoSansJP-Regular";
}
@media screen and (min-width: 1025px) {
  .bnr_detail .bnr_detail_inner span {
    font-size: 1em;
  }
}
.bnr_detail .bnr_detail_inner::after {
  content: "";
  z-index: 1;
  display: inline-block;
  width: 19px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/common/ico_arrow_right_b.svg);
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  transition: 0.2s ease-out;
}
@media screen and (min-width: 1025px) {
  .bnr_detail .bnr_detail_inner::after {
    width: 45px;
    height: 30px;
  }
}

.bnr_sns_line {
  display: block;
  border-radius: 5px;
  text-align: center;
  margin: 0 auto;
  padding: 12px 0;
  position: relative;
  color: #00b900;
  transition: all 0.2s;
  border: #00b900 1px solid;
  font-family: "Lato";
  font-size: 1.1254em;
  font-weight: 400;
}
.bnr_sns_line::after {
  content: "";
  z-index: 1;
  display: inline-block;
  width: 22px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url(../images/common/ico_arrow_right_g.svg);
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  transition: 0.2s ease-out;
}
.bnr_sns_line:hover::after {
  right: 13px;
}