html {
  font-size: 62.5%;
}

html, body {
  background: #f2edeb;
  height: 100%;
  margin: 0;
  padding: 0;
  letter-spacing: 0.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

body {
  background: repeating-linear-gradient(135deg, #ffffff33, #ffffff33 18px, transparent 18px, transparent 36px);
  color: #64040d;
}

.container {
  width: 120rem;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding:0;
  background: rgba(242, 237, 235, 0.95);
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem;
}

.header__logo {
  width: 150px;
}

.header-menu__list {
  color: #64040d;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-menu__list li {
  padding: 0 2rem 0 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.4rem;
  position: relative;
  margin-right: 1rem;
}

ul.header-menu__list > li:last-child{
  padding-right: 0;
  margin-right: 0;
}

.header-menu__sns {
  display: none;
}

.header-menu__list a {
  text-decoration: none;
}

.header-menu__list a:hover {
  text-decoration: underline;
  opacity: 0.6;
}

.header-menu__list a::after {
  font-family: "Material Icons";
  content:"\eacc";
  position: absolute;
  left: 0;
  top:1px;
  color: #64040d;
  font-size: 1.2rem;
}

.sp-nav {
  position: relative;
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
  }
  .header {
    height: 70px;
  }
  .header__logo {
    width: 80px;
  }
  .header-menu__list {
    width: 100%;
  }
  .header-menu__list li {
    padding: 1.5rem 0;
  }
  .header-menu__sns {
    display: flex;
  }
  .header-menu__sns p {
    margin-right: 2rem;
  }
  .header-menu__image-x {
    width: 20px;
  }

  .header-menu__image-discord {
    width: 100px;
  }
  .sp-nav__list {
    margin: 0;
    background-color: #eeeeee;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    left: 0;
    padding: 4rem;
    transform: translateX(-100%);
    transition: 0.3s;
    top: 100%;
    width: 100%;
    opacity: 0.9;
    z-index: 99;
  }
  #hamburger:checked ~ .sp-nav__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}

.sp-nav__input {
  display: none;
}

.sp-nav__bg {
  background-color: #000;
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .sp-nav__bg {
  display: block;
}

.sp-nav__button {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-nav__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; /* カスタマイズしてください */
    height: 32px; /* カスタマイズしてください */
    justify-content: center;
    width: 32px; /* カスタマイズしてください */
  }
}

.sp-nav__button-mark {
  background-color: #000; /* カスタマイズしてください */
  display: block;
  height: 2px; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 30px; /* カスタマイズしてください */
}

@media screen and (max-width: 767px) {
  #hamburger:checked
    ~ .sp-nav__button
    .sp-nav__button-mark:nth-of-type(1) {
    transform: translate(4px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked
    ~ .sp-nav__button
    .sp-nav__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .sp-nav__button
    .sp-nav__button-mark:nth-of-type(3) {
    transform: translate(4px, 8px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}

.top {
  background: #FF2C19;
  background: url('../images/top/wave.svg') no-repeat left bottom -50px, repeating-linear-gradient(135deg, #ffffff33, #ffffff33 18px, transparent 18px, transparent 36px);
}

.top-image {
  padding-top: 10rem;
  position: relative;
}

.top-image__logo {
  position: absolute;
  background-image: url(../images/SabongBird_logo.png);
  background-repeat: no-repeat;
  background-size: 450px;
  width: 450px;
  height: 210px;
  bottom:-50px;
  left: 50%;
  transform: translateX(-50%);
}

.top-block {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FF2C19;
  background: url('../images/bg/playnow.png') no-repeat left bottom 20%, url('../images/bg/playnow_r.png') no-repeat right bottom 20%;
  height: 170px;
}

.top_button {
  width: 400px;
}

.top_button:hover {
    animation: anima-button-41 2s linear infinite;
}

@keyframes anima-button-41 {
    7% {
        transform: translateY(-15px);
    }
    15% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-7px);
    }
    25% {
        transform: translateY(0);
    }
}

@media screen and (max-width: 767px) {
  .top-image {
    padding-top: 6.5rem;
  }
  .top-image__logo {
    background-size: 220px;
    width: 220px;
    height: 120px;
    bottom:-40px;
  }
  .top-block {
    height: 100px;
    background: url('../images/playnow.png') no-repeat left bottom 20%/20%, url('../images/playnow_r.png') no-repeat right bottom 20%/20%, repeating-linear-gradient(135deg, #ffffff33, #ffffff33 18px, transparent 18px, transparent 36px), linear-gradient(90deg, rgba(255, 44, 25, 1) 0%, rgba(255, 198, 93, 1) 85%);
  }
  .top_button {
    width: 250px;
  }
}

.welcome {
  margin: 4rem 0;
  background: url(../images/bg/gameback.png) no-repeat;
  background-size: 80%;
  background-position: center bottom 90px;
}

.welcome-text_box {
  position: relative;
  height: 265px;
}

.welcome-text_box-sp {
  display: none;
}

.welcome-text {
  position: absolute;
  top:0;
}

.welcome-header {
  background: linear-gradient(transparent 50% , #ffc65d 50%);
  position: absolute;
  bottom:5px;
}

@media screen and (max-width: 767px) {
  .welcome-text_box {
    display: none;
  }
  .welcome-text_box-sp {
    display: block;
    position: relative;
    height: 200px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .welcome-text_box {
    position: relative;
    height: 215px;
  }
}

.welcome-block {
}

.welcome-content {
  display: flex;
  align-items: center;
}

.welcome-content__box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
}

.welcome-content__box-orange {
  width: 270px;
}

.text-s {
  font-size: 2rem;
}

.block {
  display: block;
}

.welcome-image {
  margin: 3rem 5rem;
  padding: 2rem;
  background-color: #b56900;
  border-radius: 10px;
}

.welcome-description {
  color: #64040d;
  font-size: 1.6rem;
  line-height: 1.6rem;
  padding: 0 4rem;
  width: 1100px;
  margin: 0 auto;
  background: url(../images/welcome/eda.png) no-repeat left/20px, url(../images/welcome/eda.png) no-repeat right/20px;
}

.welcome-mes {
  margin: 3rem auto;
  width: 1100px;
}

.welcome-mes-sp {
  display: none;
}

.sp-img {
  display: none;
}


@media screen and (max-width: 767px) {
  .welcome {
    margin: 2rem 1rem 4rem;
    background: url(../images/bg/gameback-sp.png) no-repeat;
    background-size: 80%;
    background-position: center top 150px;
  }
  .welcome-text {
    margin: 1rem 1.5rem;
  }
  .welcome-header {
    font-size: 2rem;
    margin: 0.5rem 2rem;
  }
  .welcome-block {
    margin: 0 1rem;
    padding: 0 1rem;
  }
  .welcome-content {
    margin-bottom: 2rem;
  }
  .welcome-content__box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .welcome-content__box-orange {
    width: 100%;
  }
  
  .text-s {
    font-size: 1rem;
  }
  
  .welcome-content img.closs {
    width: 20px;
  }
  .welcome-image {
    margin: 1rem 0;
    padding: 1rem;
  }
  .welcome-description {
    padding: 0;
    background: none;
    line-height: 2rem;
    font-size: 1.4rem;
    width: 100%;
  }

  .welcome-mes {
    display: none;
  }

  .welcome-mes-sp {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .pc-img {
    display: none;
  }
  .sp-img {
    display: block;
  }
}


.archetypes {
  background: url(../images/bg/archetype.png);
  padding: 4rem 0;
}

.archetype-block {
  margin: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0;
  flex-flow: wrap;
}

.archetype-content {
  background: url(../images/archetype/block_archetype.svg) no-repeat;
  width: 350px;
  height: 430px;
  padding: 0 3rem;
  margin: 0 2rem;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.archetype-name {
  font-size: 2rem;
  text-align: center;
  color: #724325;
  font-weight: 700;
}

.archetype-img {
  width: 200px;
  text-align: center;
}

.archetype-text-box {
  height: 70px;
}

.archetype-text {
  padding: 0;
}

.archetype-text-sub {
  font-size: 1.2rem;
  margin: 0;
}

.archetype-status {
  list-style: none;
  padding: 0;
}

.archetype-status__detail {
  display: flex;
  align-items: center;
}

.archetype-status__name {
  padding-right: 1rem;
  width: 80px;
}

.archetype-status__level {
  padding-right: 1rem;
}

.archetype-status__high {
  background: url(../images/archetype/status_high.svg) no-repeat;
  width: 100px;
  height: 10px;
}
.archetype-status_middle {
  background: url(../images/archetype/status_middle.svg) no-repeat;
  width: 100px;
  height: 10px;
}
.archetype-status__small {
  background: url(../images/archetype/status_small.svg) no-repeat;
  width: 100px;
  height: 10px;
}

@media screen and (max-width: 767px) {
  .archetype-block {
    flex-flow: wrap;
  }
  .archetype-content {
    background: url(../images/archetype/block_archetype-sp.svg) no-repeat;
    width: 185px;
    height: 430px;
    padding: 0 1rem;
    margin: 0 0.5rem;
    font-size: 1.2rem;
  }
  .archetype-name {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }
  .archetype-img {
    width: 120px;
  }
  .archetype-text-box {
    height: 120px;
    padding: 0 0.5rem;
  }
  .archetype-text-box_s {
    height: 90px;
  }

  .archetype-text {
    padding: 0;
  }

  .archetype-text-sub {
    font-size: 1.2rem;
    margin: 0;
  }
  .archetype-text {
    font-size: 1.4rem;
    min-height: 60px;
    padding: 0 0.3rem;
  }
  .archetype-status__detail {
    flex-wrap: wrap;
    justify-content: center;
  }
  .archetype-status__name {
    display: block;
  }
  .archetype-status__high, .archetype-status_middle, .archetype-status__small{
    margin-bottom: 0.5rem;
  }
}

.gamesystem {
  background: repeating-linear-gradient(135deg, #ffffff11, #ffffff11 18px, transparent 18px, transparent 36px), url(../images/gamesystem/bg_gamesystem.jpg) no-repeat top/cover;
}

.gamesystem-block {
  padding: 5rem 0;
  position: relative;
}

.swiper-pagination-main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-main > .swiper-pagination-bullet {
  background: url(../images/gamesystem/btn.svg) no-repeat center;
  width: 260px;
  height: 50px;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #64040d;
  border-radius: 0;
}

.swiper-pagination-main > .swiper-pagination-bullet {
  opacity: 0.7;
}

.swiper-pagination-main > .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-pagination-main > .swiper-pagination-bullet:nth-child(1)::after{
  content: "チーム編成"
}
.swiper-pagination-main > .swiper-pagination-bullet:nth-child(2)::after{
  content: "スキル設定"
}
.swiper-pagination-main > .swiper-pagination-bullet:nth-child(3)::after{
  content: "バトル"
}
.swiper-pagination-main > .swiper-pagination-bullet:nth-child(4)::after{
  content: "ゲームモード"
}

.swiper-pagination > .swiper-pagination-bullet {
  background-color: #b56900;
}

.mainslide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gamesystem-slide {
  padding: 5rem;
  max-width: 115rem;
  height: 1150px;
  margin: 5rem auto 0;
  position: relative;
}

.gamesystem-slide__title {
  width: 100%;
  margin: 5rem 0;
  padding: 1rem 0;
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  background: url(../images/gamesystem/title.svg) no-repeat center;
  position: relative;
}

.gamesystem-slide__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  width: 800px;
  padding: 1rem;
  background: rgba(255, 198, 93, 1);
  border-radius: 9px
}

.gamesystem-slide__explanation {
  width: 780px;
  font-size: 1.6rem;
  background: rgba(255, 251, 207, 0.7);
  box-shadow: 0px 0px 0px 10px rgba(255, 251, 207, 0.7);
  border: dashed 2px #ffb03f;
  border-radius: 9px;
  margin-top: 3rem;
  margin-left: 10px;*/
  margin-right: 10px;
  padding: 1rem 2rem;
}

.gamesystem-slide__explanation-header {
  font-size: 1.8rem;
  color: #bf080c;
}
.gamesystem-slide__explanation-subheader {
  font-size: 1.8rem;
  color: #bf080c;
  padding: 0 2rem;
}

.gamesystem-slide__explanation-content {
  display: flex;
}

.gamesystem-slide__text {
  margin: 0;
  padding: 1rem;
  list-style: none;
}

.gamesystem-slide__text li {
  padding: 0.2rem 0;
  position: relative;
  margin-left: 3rem;
}

.gamesystem-slide__text li::before {
    position: absolute;
    top: 12px;
    left: -20px;
    width: 10px;
    height: 5px;
    border-bottom: 2px solid #b56900;
    border-left: 2px solid #b56900;
    transform: rotate(-45deg) translateY(-1.5px);
    content: '';
}

@media screen and (max-width: 767px) {
  .mainslide {
    width: 100%;
  }
  .gamesystem-slide {
    background: none;
    padding: 2rem 2rem;
    max-width: 100%;
    height: 800px;
  }
  .swiper-pagination-main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .swiper-pagination-main > .swiper-pagination-bullet {
    background: url(../images/gamesystem/bk-btn.svg) no-repeat center;
    width: 165px;
    height: 50px;
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #64040d;
    border-radius: 0;
  }
  .gamesystem-slide__title {
    margin: 1rem 0;
    padding: 1rem 0;
    text-align: center;
    font-size: 2rem;
  }
  .gamesystem-slide__title::after {
    font-family: "Material Icons";
    content:"\e9ec";
    position: absolute;
    right: 20px;
    color: #fff;
    font-size: 2rem;
  }
  .gamesystem-slide__content {
    width: 100%;
    height: 210px;
    padding: 0.3rem;
  }
  .gamesystem-slide__explanation {
    width: 350px;
    font-size: 1.6rem;
    background: rgba(255, 251, 207, 0.7);
    box-shadow: 0px 0px 0px 10px rgba(255, 251, 207, 0.7);
    border: dashed 2px #ffb03f;
    border-radius: 9px;
    margin-top: 2rem;
    margin-left: 10px;
    margin-right: 10px;
    padding: 2rem;
    overflow-y: scroll;
    max-height: 300px;
  }

  .gamesystem-slide__explanation-header {
    font-size: 1.4rem;
    font-weight: 600;
  }
  .gamesystem-slide__text {
    margin-left: 0;
    padding: 0;
  }

  .gamesystem-slide__text li {
    padding: 0.2rem 0;
    display: flex;
    gap: 0 5px;
    font-size: 1.2rem;
  }
  .gamesystem-slide__explanation-subheader {
    font-size: 1.2rem;
  }
  .gamesystem-slide__explanation-content {
    display: block;
  }
  .gamesystem-slide__mode {
  }
}

.breeding {
  background-image: url(../images/bg/triangle.svg),  url(../images/bg/egg.png);
  background-repeat: repeat-x, repeat;
  background-position: top, center;
  background-size: 30px, 100px;
}

.breeding-block {
  padding-top: 5rem;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
}

.breeding-decoration {
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
}

.breeding-decoration__img {
  width: 380px;
}

.breeding-catch {
  color: #bf080c;
  font-size: 3rem;
  margin: 5rem 0;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.breeding-catch::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, #22aba3, #22aba3 2px, transparent 2px, transparent 4px);
  background: repeating-linear-gradient(-45deg, #22aba3, #22aba3 2px, transparent 2px, transparent 4px);
}

.breeding-catch-sp {
  display: none;
}

.breeding-swiper {
  position: relative;
  width: 800px;
  height: 500px;
}

.breeding-image {
  border: 10px solid #b56900;
  border-radius: 10px;
}

.breeding-description {
  font-size: 1.8rem;
}

.breeding-description li {
  padding: 0.5rem 0;
}

.breeding-description__text {
  font-size: 2rem;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #bf080c;
  margin-bottom: 3rem;
  margin-top: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .breeding-catch {
    display: none;
  }
  .breeding-catch-sp {
    color: #bf080c;
    font-size: 3rem;
    margin: 1rem 0 5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: block;
  }
  
  .breeding-catch-sp img {
    width: 350px;
  }

  .breeding-catch-sp::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: -webkit-repeating-linear-gradient(-45deg, #22aba3, #22aba3 2px, transparent 2px, transparent 4px);
    background: repeating-linear-gradient(-45deg, #22aba3, #22aba3 2px, transparent 2px, transparent 4px);
  }
  .breeding-catch::after {
    bottom: -10px;
  }
  .breeding-catch br.sp-none {
    display: none:
  }
  .breeding-swiper {
    width: 90%;
    height: 230px;
  }
  .breeding-description {
    font-size: 1.4rem;
    margin: 2rem;
  }
  .breeding-decoration__img {
    width: 300px;
  }
  .breeding-description__text {
    font-size: 1.5rem;
    padding: 0 2rem;
  }
}

.swiper-pagination {
  text-align: center;
}

/* 前へ / 次へボタン */
.swiper-button-prev, .swiper-button-next {
  --swiper-navigation-color: #b56900;
}
.swiper-button-prev::after, .swiper-button-next::after {
  content:"";
}

.swiper-button-prev:hover, .swiper-button-next:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .swiper-button {
    display: none;
  }
}

.page-title {
  font-size: 3rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Aoboshi One", serif;
  font-weight: 400;
  font-style: normal;
}

.page-title::after {
  content: '';
  display: inline-block;
  width: 300px;
  height: 21px;
  background-image: url('../images/bg/title-deco.png');
  background-position: center;
  background-size: 150px;
  background-repeat: no-repeat;
}

.page-title-j {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.page-title_g {
  color: #fff;
}

.page-title_g::after {
  content: '';
  display: inline-block;
  width: 300px;
  height: 21px;
  background-image: url('../images/bg/title-deco-g.png');
  background-position: center;
  background-size: 150px;
  background-repeat: no-repeat;
}

.page-title__en {
  display: block;
  color: #bf080c;
  font-size: 1.2rem;
  padding-bottom: 1rem;
}

.page-title__en_w {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .page-title {
    font-size: 1.8rem;
  }
  .page-title::after {
    background-size: 100px;
  }
}

.footer-info {
  height: 100px;
  background: url(../images/footer/footer-deco-c.png) no-repeat top, url(../images/footer/footer-deco.svg) repeat-x center bottom;
  z-index: 10;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.footer-info.show {
  transform: translateY(0);
  opacity: 1;
}

.fotter-btn-playnow {
  position: absolute;
  right: 100px;
  bottom: 0;
  width: 200px;
}

@media screen and (max-width: 767px) {
  .footer-info {
    background: url(../images/footer/footer-deco-c.png) no-repeat top/85%, url(../images/footer/footer-deco.svg) repeat-x center bottom/120%;
    height:25px;
  }
  .fotter-btn-playnow{
    width: 150px;
    right: 20px;
  }
}

.footer-deco {
  background: url(../images/footer/footer-deco-c.png) no-repeat top, url(../images/footer/footer-deco.svg) repeat-x center bottom;
  height: 100px;
}

@media screen and (max-width: 767px) {
  .footer-deco {
    background: url(../images/footer/footer-deco-c.png) no-repeat top/85%, url(../images/footer/footer-deco.svg) repeat-x center bottom/120%;
    height:25px;
  }
}


.footer {
  background: #B56900;
  background: linear-gradient(360deg, rgba(181, 105, 0, 1) 20%, rgba(255, 198, 93, 1) 85%);
  padding: 5rem 0 2rem;
  font-size: 1.4rem;
  color: #fff;
}

.footer-content{
  display: flex;
  justify-content: center;
}

.footer__logo {
  width: 150px;
}

.footer-menu {
  list-style: none;
  margin: 0 5rem;
}

.footer-menu__list {
  padding: 0.5rem 0;
}

.footer-menu__list a {
  text-decoration: none;
}

.footer-menu__list a:hover {
  color: #64040d;
}

.footer-sns {
  margin-right: 5rem;
}

.footer-sns p {
  margin: 0;
}

.footer-sns__image {
  padding: 1rem 0;
}

.footer-sns__image-x {
  width: 20px;
}

.footer-sns__image-discord {
  width: 100px;
}

.footer-notice {
  background: rgba(255, 198, 93, 0.5);
  border: dotted 2px #b56900;
  margin: 0;
  padding-left: 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.footer__copyright {
  font-size: 1.2rem;
  padding: 2rem 0 1rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer-content{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer__logo {
    width: 90px;
    padding-left: 2rem;
  }
  .footer-menu {
    margin: 0 2rem 2rem 0;
  }
  .footer-sns {
    margin-right: 0;
  }
  .footer-notice {
    font-size: 1.2rem;
  }
  
  .footer-notice li {
    padding: 0.3rem 0;
  }
}

@media screen and (min-width: 1280px) {
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .container {
    width: 100rem;
  }
  .welcome-header {
    font-size: 3.5rem;
  }
  .welcome-content__box {
  }
}

@media screen and (max-width: 767px) {

}

/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  text-align:center;
  background: #2356A7;
  background: linear-gradient(90deg, rgba(255, 44, 25, 1) 0%, rgba(255, 198, 93, 1) 85%), url(../images/bg/bird.png) repeat;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:260px;
}

/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}

/*==================================================
ボンッ
===================================*/

/* 拡大 */
.zoomIn{
  animation-name:zoomInAnime;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
  transform: scale(0.6);
  }

  to {
      transform: scale(1);
  }
}