@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  overflow-x: hidden;
  font-size: calc(10 / 750 * 100vw);
}

.gDef-top-banner {
  background-color: #fff;
}

.wrapper {
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #404040;
  background-color: #fff;
}
.wrapper img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.wrapper a {
  display: block;
  color: #404040;
}

section,
main,
header,
footer {
  position: relative;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(650 / 750 * 100%);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1200 * 100vw);
  }
  .wrapper {
    font-size: 16px;
  }
  .wrapper a {
    transition: 0.3s ease;
  }
  .inner {
    width: 90%;
    max-width: 1000px;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 10px;
  }
}
/* =====================================================================
*    共通
* =================================================================== */
/* =====================================================================
    header
======================================================================*/
.main {
  padding-top: 13rem;
  background: #f3f3e2;
}
.main::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 29rem;
  background-size: auto auto;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 1rem, #ededd3 1rem, #ededd3 2rem);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 4rem 0 2.5rem;
  background: rgba(255, 255, 255, 0.75);
  z-index: 999;
}
.header.fixed {
  position: fixed;
}
.header h1 {
  margin: 0 auto;
  width: 28.8rem;
}
.header .nav {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 20rem 0;
  background: #ff7607;
}
.header .nav_logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4rem;
  width: 28.8rem;
}
.header .nav_menu {
  position: relative;
  margin: 0 auto;
  width: calc(704 / 750 * 100%);
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.header .nav_menu::-webkit-scrollbar {
  width: 1rem;
}
.header .nav_menu li {
  border-bottom: 0.4rem dotted #fff;
}
.header .nav_menu li:first-child {
  border-top: 0.4rem dotted #fff;
}
.header .nav_menu li a {
  position: relative;
  padding: 7rem 14.2045454545% 7rem 22.7272727273%;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
}
.header .nav_menu li a::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 5rem;
  height: 5rem;
  margin-left: 11.3636363636%;
  transform: translateY(-50%);
}
.header .nav_menu li.nolink a {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.6;
}
.header .nav_youtube a::before {
  background: url(../images/common/icon_nav_youtube.png) no-repeat center/contain;
}
.header .nav_insta a::before {
  background: url(../images/common/icon_nav_insta.png) no-repeat center/contain;
}
.header .nav_twitter a::before {
  background: url(../images/common/icon_nav_twitter.png) no-repeat center/contain;
}
.header .nav_blog a::before {
  background: url(../images/common/icon_nav_blog.png) no-repeat center/contain;
}
.header .nav_announcer a::before {
  background: url(../images/common/icon_nav_announcer.png) no-repeat center/contain;
}
.header .nav_photo a::before {
  background: url(../images/common/icon_nav_photo.png) no-repeat center/contain;
}

.btn_menu {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  width: 3.4rem;
  padding-top: 4.1rem;
  z-index: 2;
}
.btn_menu span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  padding-top: 14.6%;
  background-color: #ff7607;
  transition: all 0.3s;
}
.btn_menu span:nth-of-type(1) {
  top: 0;
}
.btn_menu span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.btn_menu span:nth-of-type(3) {
  bottom: 0;
}
.btn_menu.active span {
  background-color: #fff;
}
.btn_menu.active span:nth-of-type(1) {
  transform: translateY(1.78rem) rotate(-45deg);
}
.btn_menu.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
}
.btn_menu.active span:nth-of-type(3) {
  width: 100%;
  transform: translateY(-1.78rem) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .main {
    padding-top: 11rem;
  }
  .main::before {
    height: 69rem;
  }
  .header {
    padding: 2.7rem 0 1.9rem;
  }
  .header h1 a:hover {
    opacity: 0.7;
  }
  .header .nav {
    padding: 15rem 0;
  }
  .header .nav_logo {
    margin-top: 2.7rem;
  }
  .header .nav_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    height: auto;
    max-height: 100%;
    max-width: 1200px;
  }
  .header .nav_menu li {
    width: calc(466 / 1000 * 100%);
  }
  .header .nav_menu li:nth-child(-n+2) {
    border-top: 0.4rem dotted #fff;
  }
  .header .nav_menu li a {
    padding: 4rem 13.0434782609% 4rem 30.4347826087%;
    font-size: 2rem;
  }
  .header .nav_menu li a::before {
    margin-left: 13.0434782609%;
  }
  .header .nav_menu li a:hover {
    background: #ffb200;
  }
  .btn_menu {
    width: 2.8rem;
    padding-top: 3.3rem;
    cursor: pointer;
  }
  .btn_menu.active span:nth-of-type(1) {
    transform: translateY(1.44rem) rotate(-45deg);
  }
  .btn_menu.active span:nth-of-type(3) {
    transform: translateY(-1.44rem) rotate(45deg);
  }
}
/* =====================================================================
*    banner
* =================================================================== */
.banner_list {
  display: flex;
  flex-wrap: wrap;
}
.banner_list li {
  margin: 0 calc(20 / 650 * 100%) 2rem 0;
  width: calc(315 / 650 * 100%);
}
@media screen and (max-width: 767px) {
  .banner_list li:nth-child(2n), .banner_list li:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .banner_list {
    justify-content: center;
  }
  .banner_list li {
    margin: 0 calc(30 / 1000 * 100%) 3rem 0;
    width: calc(240 / 1000 * 100%);
  }
  .banner_list li:nth-child(3n), .banner_list li:last-child {
    margin-right: 0;
  }
  .banner_list li a:hover {
    opacity: 0.6;
  }
}
/* =====================================================================
*    footer
* =================================================================== */
.footer_sns {
  padding: 15rem 0 10rem;
}
.footer_sns h2 {
  margin: 0 auto 7.5rem;
  width: calc(441 / 650 * 100%);
}
.footer_sns_list {
  display: flex;
  justify-content: center;
}
.footer_sns_list li {
  margin: 0 calc(15 / 650 * 100%);
  width: calc(120 / 650 * 100%);
}
.footer_sns .banner_list {
  margin-top: 17rem;
}

.footer_loop {
  position: relative;
  width: 100%;
  aspect-ratio: 750/355;
  background-image: url(../images/common/img_footer_loop.jpg);
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: auto 100%;
  animation: bgLoopAct 50s infinite linear;
}

@keyframes bgLoopAct {
  0% {
    background-position: right 0 top 0;
  }
  100% {
    background-position: right -167rem top 0;
  }
}
.pagetop {
  text-align: center;
}
.pagetop a {
  padding: 3rem 0;
  background: #f3f3e2;
}
.pagetop a svg {
  margin: auto;
  width: 6.5rem;
  height: 3rem;
  fill: #ff7607;
}

.footer_link {
  padding: 6rem 0 2.5rem;
  background: #ff9600;
}
.footer_link_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer_link_list li {
  margin-bottom: 3.5rem;
  padding: 0 calc(35 / 650 * 100%);
}
.footer_link_list li a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .footer_sns {
    padding: 9rem 0 6rem;
  }
  .footer_sns h2 {
    margin-bottom: 4rem;
    width: calc(397 / 1000 * 100%);
  }
  .footer_sns_list li {
    margin: 0 calc(9 / 1000 * 100%);
    width: calc(98 / 1000 * 100%);
  }
  .footer_sns_list li a:hover {
    transform: translateY(-1rem);
  }
  .footer_sns .banner_list {
    margin-top: 5rem;
  }
  .footer_loop {
    aspect-ratio: 3340/710;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: none;
  }
  .pagetop a {
    padding: 2rem 0;
  }
  .pagetop a svg {
    width: 5.3rem;
    height: 2.5rem;
    transition: 0.3s ease;
  }
  .pagetop a:hover svg {
    transform: translateY(-1rem);
  }
  .footer_link_list li {
    padding: 0 calc(35 / 1000 * 100%);
  }
  .footer_link_list li a {
    font-size: 16px;
  }
  .footer_link_list li a:hover {
    color: #ffeb07;
  }
}
/* =====================================================================
*    popup
* =================================================================== */
.popup {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

.popup_area {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.popup_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
}

.popup_inner {
  position: relative;
  margin: auto;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 100px 0;
  width: 100%;
}

.popup_movie_embed {
  position: relative;
  padding-top: 56.25%;
}
.popup_movie_embed iframe,
.popup_movie_embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup_zoom .popup_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  margin: 30px 0 0;
}
.popup_zoom .popup_close::before, .popup_zoom .popup_close::after {
  content: "";
  display: block;
  width: 2px;
  padding-top: 100%;
  background-color: #ff7607;
  transform: rotate(45deg);
  margin: 0 auto;
}
.popup_zoom .popup_close::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: rotate(-45deg);
}

.popup_close2 {
  margin: 1em auto 0;
  padding: 0.5em;
  width: 30rem;
  font-size: 2.8rem;
  text-align: center;
  background: #f3f3e2;
  color: #fff;
  border: 1px solid #fff;
}

@media screen and (min-width: 768px) {
  .popup_bg {
    cursor: pointer;
  }
  .popup_inner {
    width: 90%;
    max-width: 1000px;
  }
  .popup_zoom .popup_close {
    cursor: pointer;
  }
  .popup_close2 {
    width: 50rem;
    transition: 0.3s ease;
    cursor: pointer;
  }
  .popup_close2:hover {
    background-color: #ff7607;
  }
}/*# sourceMappingURL=base.css.map */