@charset "UTF-8";
/*====================
{{パソコンを基本設計にする}}
 - 〜479px：SP縦
 - 480px〜599px：SP横
 - 600px〜959px：タブレット
 - 960px〜1279px：小型PC
 - 1280px〜：大型PC
====================*/
.faderight {
  opacity: 0;
  transform: translateX(6vw);
}

.faderight[data-scroll] {
  transition: 1s ease-in-out;
}

.faderight[data-scroll="in"] {
  opacity: 1;
  transform: translateX(0);
}

.faderight[data-scroll="out"] {
  opacity: 0;
  transform: translateX(6vw);
}

.fadeleft {
  opacity: 0;
  transform: translateX(-6vw);
}

.fadeleft[data-scroll] {
  transition: 1s ease-in-out;
}

.fadeleft[data-scroll="in"] {
  opacity: 1;
  transform: translateX(0);
}

.fadeleft[data-scroll="out"] {
  opacity: 0;
  transform: translateX(-6vw);
}

.fadeup {
  opacity: 0;
  transform: translateY(5vh);
}

.fadeup[data-scroll] {
  transition: 0.6s ease-in;
}

.fadeup[data-scroll="in"] {
  opacity: 1;
  transform: translateY(0);
}

.fadeup[data-scroll="out"] {
  transform: translateY(5vh);
}

@keyframes updown {
  0%,
  40%,
  100% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-2vh);
  }
}

@keyframes bigsmall {
  0%,
  100%,
  20%,
  50%,
  80% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1.1);
  }
}

.bigsmall {
  animation: bigsmall2 2s linear 1.6s infinite normal;
}

@keyframes rotate1 {
  0%,
  50%,
  100% {
    transform: rotate(0deg) translateY(0) translateX(0);
  }
  25% {
    transform: rotate(-1deg) translateY(0.3vh) translateX(-1vw);
  }
  75% {
    transform: rotate(1deg) translateY(0.3vh) translateX(1vw);
  }
}

@keyframes open {
  30% {
    opacity: 1;
    transform: scale(1.5);
  }
  40%,
  60%,
  80% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.fade_open {
  transform: scale(0);
  opacity: 0;
  animation: open 2s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}

@keyframes open_opacity {
  100% {
    opacity: 1;
  }
}

.open_opacity {
  opacity: 0;
  animation: open_opacity 2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes mergo {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  40% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.mergo[data-scroll="in"] {
  animation: mergo 1.2s ease 0.5s 1 normal;
}

html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 960px) {
  html {
    font-size: 50%;
  }
}

@media screen and (max-width: 599px) {
  html {
    font-size: 40%;
  }
}

body {
  font-size: 1.6em;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #000;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "Yu Gothic UI", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

.contents_wrap {
  width: 100%;
  overflow: hidden;
}

/* ---------------------------------------- 
 - 共通
---------------------------------------- */
h1,
h2,
h3,
h4,
p {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.imgw {
  display: block;
  width: 100%;
  height: auto;
}

.imgh {
  display: block;
  width: auto;
  height: 100%;
}

.pc {
  display: block;
}

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

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

.tab {
  display: none;
}

@media screen and (max-width: 960px) {
  .tab {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .tab {
    display: none;
  }
}

.sp {
  display: none !important;
}

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

@media screen and (max-width: 599px) {
  .sp {
    display: block !important;
  }
}

.no_sp {
  display: block;
}

@media screen and (max-width: 960px) {
  .no_sp {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .no_sp {
    display: none !important;
  }
}

/* ---------------------------------------- 
 - 個別
---------------------------------------- */
.sec1 {
  background-image: url(../image/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 200px 0 200px;
}

@media screen and (max-width: 599px) {
  .sec1 {
    padding: 40px 0 40px;
  }
}

.sec1__txt1 {
  font-size: 6rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: center;
  margin: 0 auto 0;
  line-height: 1.6;
  text-shadow: 0px 0px 10px RGBA(0, 0, 0, 0.4);
}

@media screen and (max-width: 599px) {
  .sec1__txt1 {
    font-size: 4rem;
    letter-spacing: 2px;
  }
}

.sec2 {
  background-image: url(../image/bg3.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top 0 right 0;
  padding: 60px 0 60px;
}

@media screen and (max-width: 960px) {
  .sec2 {
    background-image: unset;
  }
}

@media screen and (max-width: 599px) {
  .sec2 {
    padding: 30px 0 30px;
  }
}

.sec2__txtWrap {
  max-width: 1100px;
  width: 92%;
  font-size: 1.6rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  margin: 0 auto 0;
  line-height: 1.6;
}

.sec2__txtWrap h2 {
  display: inline-block;
  width: 100%;
  margin: 30px auto;
  padding: 10px 0;
  border-bottom: solid 1px #fb7655;
}

.sec2__txtWrap a {
  color: #fb7655;
}

@media screen and (max-width: 599px) {
  .sec2__txtWrap {
    font-size: 2rem;
    text-align: justify;
  }
  .sec2__txtWrap h2 {
    font-size: 2.6rem;
    margin: 15px auto;
    padding: 10px 0;
  }
}

.sec2__btn {
  max-width: 500px;
  width: 66%;
  margin: 40px auto 0;
  display: block;
  transition-duration: 200ms;
}

.sec2__btn:hover {
  opacity: 0.6;
}

@media screen and (max-width: 599px) {
  .sec2__btn {
    margin: 20px auto 0;
  }
}

/********* footer **********/
.footer {
  background-image: url(../image/bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  text-align: center;
  padding: 60px 0 50px;
  color: #fff;
  line-height: 1.8;
}

.footer a {
  color: #fff;
}

@media screen and (max-width: 599px) {
  .footer {
    padding: 20px 0;
  }
}

.footer__logo {
  display: block;
  max-width: 300px;
  width: 55%;
  margin: 0 auto 30px;
}

@media screen and (max-width: 599px) {
  .footer__logo {
    margin: 0 auto 20px;
  }
}
