@charset "UTF-8";
/* Scss Document */
@import "common.css";
/* Scss Document */
/*メディアクエリ*/
/*例*/
.hoge {
  color: blue;
}
@media screen and (max-width: 849px) {
  .hoge {
    color: yellow;
  }
}
@media screen and (max-width: 479px) {
  .hoge {
    color: red;
  }
}

@media screen and (max-width: 1279px) {
  body {
    /*background: skyblue;*/
  }
}
@media screen and (max-width: 849px) {
  body {
    /*background: pink;*/
  }
}
@media screen and (max-width: 479px) {
  body {
    /*background: silver;*/
  }
}

/**************************/
html {
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
}
@media screen and (max-width: 849px) {
  html {
    font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
  }
}
@media screen and (max-width: 479px) {
  html {
    font-size: 63%; /*50*/ /* 16px x 0.625 = 10px(=1rem) */
  }
}

body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  line-height: 1.5em;
  font-size: 1.6rem; /* 16px */
  -webkit-text-size-adjust: 100%;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}

/*テーマカラー*/
.colorYellow {
  color: #faf272;
}

a,
.colorMain {
  color: #faf272;
}

a:hover {
  text-decoration: none;
}

.colorBlue {
  color: #00a0e9;
}

.colorRed {
  color: #faf272 !important;
}

.colorOrange {
  color: #fb7e53;
}

.colorPurple {
  color: #ff7bf7;
}

.colorGray {
  color: #484848;
}

.colorWhite {
  color: #fff;
}

.txtS {
  font-size: 0.8em;
}

.txtM {
  font-size: 0.9em;
}

.txtL {
  font-size: 1.2em;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.indent2 {
  margin-left: 1em;
}

.txtThr {
  text-decoration: line-through;
}

.fawesome {
  color: #c8ba9e;
  margin: 0 0.3em 0 0;
}

hr {
  max-width: 500px;
  margin: 3.5em auto 0;
  border: 0;
  border-top: 1px solid #bbb;
}

.hr2 {
  max-width: 500px;
  margin: 5em auto !important;
  border: 0;
  border-top: medium double #bbb;
}

.hr3 {
  max-width: 50px;
  margin: 3em auto;
  border: 0;
  border-top: 1px solid #bbb;
}

.pc {
  display: inline-block;
}
@media screen and (max-width: 849px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 849px) {
  .sp {
    display: inline-block;
  }
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/bg.jpg) no-repeat center center/cover;
  z-index: -1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px 0;
}
header .logo {
  width: 125px;
}
header .box {
  display: flex;
}
header .box .ttl {
  font-size: 1.6rem;
  font-weight: 200;
}
header .box .sns {
  display: flex;
  align-items: center;
  margin: 0 0 0 20px;
}
header .box .sns li {
  width: 28px;
  margin: 0 0 0 20px;
}
header .box .sns li a {
  display: block;
}

main {
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 849px) {
  main {
    height: calc(100vh - 280px);
  }
}
main .box {
  max-width: 446px;
  margin: 0 auto;
}
@media screen and (max-width: 849px) {
  main .box {
    padding: 0 10%;
  }
}
main .box .logo {
  max-width: 411px;
  margin: 0 auto 0;
}
main .box .txt1 {
  max-width: 446px;
  margin: 52px auto 0;
}
main .box .txt2 {
  margin: 50px auto 0;
  max-width: 369px;
}

footer {
  position: fixed;
  bottom: 40px;
  left: 0;
  width: 100%;
  text-align: center;
}
footer .copyright {
  font-size: 1.6rem;
  font-weight: 200;
}

/********** 動画再生ボタン **********/
#videoButtonWrap {
  text-align: center;
  margin: 50px 0 0;
}

.play-video-button {
  background: transparent;
  border: 1px solid #fff;
  color: white;
  padding: 1em 2em;
  font-size: 16px;
  line-height: 1em;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: "Noto Serif JP", serif;
}
.play-video-button::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.7em;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.play-video-button:hover {
  opacity: 0.6;
}

/********** 動画ポップアップ **********/
.video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-popup-container {
  position: relative;
  width: 700px;
  height: auto;
}
@media screen and (max-width: 849px) {
  .video-popup-container {
    width: 88%;
  }
}

.video-popup-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  z-index: 10001;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-popup-close:hover {
  background: rgb(255, 255, 255);
  transform: scale(1.1);
}

.video-popup-content {
  text-align: center;
}

.video-popup-content iframe,
.video-popup-content #youtube-player {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}/*# sourceMappingURL=style.css.map */