/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #ffffff;
  color: #494949;
  font-family: "Poppins", helvetica;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.nowrap {
  white-space:nowrap;
}




/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #928a99;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #FE7139;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  background-color: #fff;
  top: -100%;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
}
#header.header-scrolled, #header.header-inner-pages {
  top: 0;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Playfair Display", sans-serif;
  font-style: italic;
}
#header .logo a {
  color: #898989;
}
#header .logo img {
  max-height: 60px;
}
@media (max-width: 992px) {
  #header {
    border: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #7e7d7d;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar li:hover > a {
  color: #596fb5;
}
.navbar .active, .navbar .active:focus{
  color: #FE7139;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #596fb5;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #4b4a4a;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(49, 49, 49, 0.9);
  transition: 0.3s;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  max-height: 340px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #4b4a4a;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #596fb5;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #596fb5;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
  /*background: url("../img/home-bg.jpg") repeat scroll center center/cover;*/
  /* height: 65vh; */
  width: 100%;
}

.max-h-hero{max-height: 70%;} /* ^^^^^ TOP画像の高さを指定する ^^^^^ */

/*-----------------------------------------------------------------------------------*/
/*  About
/*-----------------------------------------------------------------------------------*/
#about {
  width: 100%;
  height: auto;
  padding-top: 0;
}

.f-size-about{font-size: 14px;}

.about-center{
  margin: 0 auto;
  text-align: center;
}

.main-logo{
  position: absolute;
  top: 15%;
  left: 15%;
}
.main-logo img{
  width:300px;
}

@media (max-width: 991px)
{
  .main-logo img{
    width:250px;
  }
}

@media (max-width: 767px)
{
  .main-logo img{
    width:200px;
  }
}

@media (max-width: 575px)
{
  .main-logo{
    left: 10%;
  }
  .main-logo img{
    width:150px;
  }

  .about-center{
    margin: 0 auto;
    text-align: left;
  }
}





.a-logo-pc{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.a-logo-pc2{
  display: block;
  position: absolute;
  top: 11%;
  right: 14%;
}

.a-logo-phone{
  display: block;
  position: absolute;
  top: 51%;
  left: 19%;
}

.a-logo-width img{
  width: 120px;
}

@media (min-width: 425px) {
  #about {
    width: 100%;
    height: auto;
    /* background: #f7f7f7; */
    padding-top: 30px;
  }
  .f-size-about{font-size: 1.1rem;}



  .a-logo-pc{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
  }

  .a-logo-pc2{
    display: block;
    position: absolute;
    top: 11%;
    right: 14%;
  }

  .a-logo-phone{
    display: block;
    position: absolute;
    top: 47%;
    left: 18%;
  }

  .a-logo-width img{
    width: 150px;
  }
}


@media (min-width: 768px) {
  #about {
    width: 100%;
    height: auto;
    /* background: #f7f7f7; */
    padding-top: 30px;
  }
  .f-size-about{font-size: 1.1rem;}

  .about-center{
    margin: 0 auto;
    text-align: center;
  }

  .a-logo-pc{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
  }

  .a-logo-pc2{
    display: block;
    position: absolute;
    top: 11%;
    right: 19%;
  }

  .a-logo-phone{
    display: block;
    position: absolute;
    top: 56%;
    left: 22%;
  }

  .a-logo-width img{
    width: 200px;
  }
}



@media (min-width: 1024px) {
  #about {
    width: 100%;
    height: auto;
    padding-top: 30px;
  }
  .f-size-about{font-size: 1.1rem;}

  .about-center{
    margin: 0 auto;
    text-align: center;
  }

  .a-logo-pc{
    display: block;
    position: absolute;
    top: 54%;
    left: 22%;
  }

  .a-logo-pc2{
    display: block;
    position: absolute;
    top: 11%;
    right: 20%;
  }

  .a-logo-phone{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
  }

  .a-logo-width img{
    width: 200px;
  }
}

@media (min-width: 1200px) {
  #about {
    width: 100%;
    height: auto;
    padding-top: 30px;
  }
  .f-size-about{font-size: 1.1rem;}

  .about-center{
    margin: 0 auto;
    text-align: center;
  }

  .a-logo-pc{
    display: block;
    position: absolute;
    top: 52%;
    left: 19%;
  }

  .a-logo-pc2{
    display: block;
    position: absolute;
    top: 11%;
    right: 20%;
  }

  .a-logo-phone{
    display: none;
    position: absolute;
    top: 0;

  }

  .a-logo-width img{
    width: 300px;
  }
}

@media (min-width: 1400px) {
  #about {
    width: 100%;
    height: auto;
    padding-top: 30px;
  }
  .f-size-about{font-size: 1.1rem;}

  .about-center{
    margin: 0 auto;
    text-align: center;
  }

  .a-logo-pc{
    display: block;
    position: absolute;
    top: 52%;
    left: 19%;
  }

  .a-logo-pc2{
    display: block;
    position: absolute;
    top: 11%;
    right: 20%;
  }

  .a-logo-phone{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
  }

  .a-logo-width img{
    width: 300px;
  }
}



/*--------------------------------------------------------------
# Movie
--------------------------------------------------------------*/
#movie {
  background: #faf9fd;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}


@media (max-width: 575px){
  .youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  }

  .youtube iframe {
    width: 100%;
    height: 100%;
  }
}


.max-w-movie{max-width: 560px;}

.movie-bg{position: absolute;top: 15%;}

.movie-bg-box{
  background: url(../img/bg-pattern-movie.png);
  width: 100%;height: 110px;
  background-repeat: repeat;
}

.fluid-box{
  position: relative;
  width: 100vw;
}

@media (min-width: 376px) {
  .movie-bg-box{
    height: 150px;
  }
}

@media (min-width: 444px) {
  .movie-bg-box{
    height: 190px;
  }
}

@media (min-width: 576px) {
  #movie {
    background: #faf9fd;
    position: relative;
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .movie-bg-box{
    height: 200px;
  }
}


/*--------------------------------------------------------------
# picture
--------------------------------------------------------------*/
#portfolio {
  position: relative;
  padding-bottom: 50px;
}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
スクロールで出てくる画像
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
.site-blocks-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-position: center center; }
  .site-blocks-cover.overlay {
    position: relative; }
    .site-blocks-cover.overlay:before {
      position: absolute;
      content: "";
      left: 0;
      bottom: 0;
      right: 0;
      top: 0;
      background: rgba(255, 255, 255, 0.4); }
  .site-blocks-cover .player {
    position: absolute;
    bottom: -250px;
    width: 100%; }
  .site-blocks-cover, .site-blocks-cover .row {
    min-height: 400px;
    height: calc(100vh - 73px); }
  .site-blocks-cover.inner-page-cover, .site-blocks-cover.inner-page-cover .row {
    min-height: 400px;
    height: calc(30vh); }
  .site-blocks-cover h2, .site-blocks-cover h3, .site-blocks-cover h4, .site-blocks-cover h5 {
    color: #fff; }
  .site-blocks-cover h1 {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    line-height: 1.5; }
    @media (min-width: 768px) {
      .site-blocks-cover h1 {
        font-size: 50px; } }
  .site-blocks-cover p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.5; }
  .site-blocks-cover .intro-text {
    font-size: 16px;
    line-height: 1.5; }
  @media (max-width: 991.98px) {
    .site-blocks-cover .display-1 {
      font-size: 2rem; } }

.site-block-subscribe .btn {
  padding-left: 20px;
  padding-right: 20px; }

@media (max-width: 991.98px) {
  .display-4 {
    font-size: 1.8rem; } }

.site-block-tab .nav-item {
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 20px; }
  .site-block-tab .nav-item:first-child {
    margin-left: 0 !important; }
  .site-block-tab .nav-item > a {
    padding-left: 0 !important;
    background: none !important;
    padding-right: 0 !important;
    border-bottom: 2px solid transparent;
    border-radius: 0 !important;
    font-weight: bold;
    color: #cccccc; }
    .site-block-tab .nav-item > a:hover, .site-block-tab .nav-item > a.active {
      border-bottom: 2px solid #ffffff;
      color: #000; }

#date-countdown .label {
  font-size: 40px;
  color: #000; }

.next-match .image {
  width: 50px;
  border-radius: 50%; }

.site-block-feature-7 .icon {
  -webkit-transition: .2s all ease-in-out;
  -o-transition: .2s all ease-in-out;
  transition: .2s all ease-in-out;
  position: relative;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.site-block-feature-7:hover .icon, .site-block-feature-7:focus .icon, .site-block-feature-7:active .icon {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2); }


/*--------------------------------------------------------------
# shop
--------------------------------------------------------------*/
#journal, #journal-blog {
  height: auto;
  width: 100%;
  background: #f7f7f7;
  position: relative;
}

.shop-left{
  display: flex;
  align-items: center;
  justify-content: center;
  /* position: relative; */
}

.lb{width: 80px;padding: 0 5px;}

@media (min-width: 992px) {
  .shop-img{
    margin-left:50px;
  }
}


.box-shop{
  position: relative;
}

.box-shop img {
  position: absolute;
}

.img-shop{width: 230px;}

.img-shop-1{width: 200px;top: 20px;left: 20px;}
.img-shop-2{width: 150px;top: 0px;left:0px;}
.img-shop-3{width: 70px;top: 170px;left: 170px;}
.img-position{}


.wrapper{
  margin: auto;
  text-align: center;
}

.txt {
  display: inline-block;
  text-align: left;
}

.f-size-shop{font-size: 14px;}
.f-size-shop-name{font-size: 1.1rem;}

.company-brand{margin-bottom: 0.25em;}

/* companyのflexbox */
/* ブランドロゴのflexbox */

.s-flexbox{display: flex;flex-wrap: wrap;justify-content: center;align-items: center;}
.s-company-item{margin: 0 15px 10px 15px;}
  .s-company-item > a{color:#787bdd;text-decoration: none;}
  .s-company-item > a:hover{color:#FE7139;text-decoration: underline;}

.s-brand-logo-size{width: 150px;}
.s-brand-item{padding: 6px;}

.font-18{font-size: 18px;}
.font-23{font-size: 23px;}
.font-24{font-size: 24px;}
.font-28{font-size: 28px;}
.font-32{font-size: 32px;}

.s-name-mb div{margin-bottom: 8px;}
.s-name-lh{line-height: 2rem;}

@media (min-width: 576px) {
  .wrapper{
    margin: auto;
    text-align: center;
  }

  .f-size-shop{font-size: 1rem;}

  .s-brand-item{padding: 10px;}
}

@media (min-width: 992px) {
  .wrapper{
    max-width: 370px;
    margin: auto;
    text-align: center;
  }

  .f-size-shop{font-size: 1rem;}
}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
枠の四隅
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
.circle-rb {
	position: relative;
	width: 40px;
	height: 40px;
}

.circle-rb::after {
	content: "";
	position: absolute;
	border: solid #ecece9;
	border-width: 40px 40px 0 0;
	border-top-left-radius: 100px;

}

.circle-lb {
	position: relative;
	width: 40px;
	height: 40px;
}

.circle-lb::after {
	content: "";
	position: absolute;
	border: solid #ecece9;
	border-width: 40px 40px 0 0;
	border-top-right-radius: 100px;
}

.circle-rt {
	position: relative;
	width: 40px;
	height: 40px;
}

.circle-rt::after {
	content: "";
	position: absolute;
	border: solid #ecece9;
	border-width: 40px 40px 0 0;
	border-bottom-left-radius: 100px;
}

.circle-lt {
	position: relative;
	width: 40px;
	height: 40px;
}

.circle-lt::after {
	content: "";
	position: absolute;
	border: solid #ecece9;
	border-width: 40px 40px 0 0;
	border-bottom-right-radius: 100px;
}

.position-corner{position: relative; width: 100%;}
.position-rt{position: absolute;right: 0%;top: 0%}
.position-lt{position: absolute;left: 0%;top: 0%;}
.position-rb{position: absolute;right: 0%;bottom: 0%;}
.position-lb{position: absolute;left: 0%;bottom: 0%;}


.shop-box {
	width: 100%;
	margin: 0 auto;
	background-image: url(../img/shop-bg-1.png);
  background-repeat: repeat;
}



/*--------------------------------------------------------------
# slide
--------------------------------------------------------------*/
#slide {
  height: auto;
  width: 100%;
}

.wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slideshow {
  display: flex;
  animation: loop-slide 20s infinite linear 1s both;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*--------------------------------------------------------------
# BRAND
--------------------------------------------------------------*/
.b-logo img{width: 150px;margin:15px;}


@media (max-width: 480px) {
  .b-logo img{width: 150px;margin:8px;}
}



/*--------------------------------------------------------------
# company
--------------------------------------------------------------*/
#company {
  height: auto;
  width: 100%;
}

.w-company{width: auto;}

.f-size-company{font-size: 14px;}

@media (min-width: 576px) {
  .f-size-company{font-size: 1rem;}
}

@media (min-width: 992px) {
  .w-company{width: 75%;}
  .f-size-company{font-size: 1rem;}
}


/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
お問い合わせボタン
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
/* .btn-contact {
  align-items: center;
  background-image: linear-gradient(144deg,#3e66e7, #957dcf 50%,#fe7139);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(41, 25, 255, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #695d85;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 300px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.btn-contact:active,
.btn-contact:hover {
  outline: 0;
  color: #ffffff;
}

.btn-contact span {
  background-color: #ffffff;
  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}

.btn-contact:hover span {
  background: none;
  color: #ffffff;
}

@media (min-width: 768px) {
  .btn-contact {
    font-size: 24px;
    min-width: 196px;
  }
} */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #596fb5;
  padding-top: 50px;
  padding-bottom: 60px;
}

/** Width between 1200x to 0
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
/** Width between 992px to 1199px
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
/** Width between 768px to 991px
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */



 /*--------------------------------------------------------------
# 共通
--------------------------------------------------------------*/
.font-body{font-family: 'メイリオ', Meiryo,'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;}
.font-title{font-family: 'El Messiri', sans-serif;}
.font-area{font-family: 'Zen Kaku Gothic New', sans-serif;}
.font-shop{font-family: 'Sawarabi Gothic', sans-serif;}
.font-shop-name{font-family: YuGothic,'Yu Gothic',sans-serif;}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
なみなみ画像
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
.bg-wave{bottom: 145px;}
.bg-wave-2{bottom: 0;}
.bg-wave-p{padding: 5% 0;}  /* なみなみ画像が内容と被らないようにするための余白 */
@media (min-width: 576px) {
.bg-wave{bottom: 140px;}
}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
各項目の大枠のpadding-top
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
.p-outline{padding-top: 50px;padding-bottom: 60px;}


/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
width= 70%
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
.w-70{width: 70%;}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
hr(境界線)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
hr.hr-a{
  border-top: 1px solid #c5c5c3;
  border-bottom: 1px solid #fff;
}

.hr-b{
  height: 8px;
  background-image: repeating-linear-gradient(45deg, #ccc 0, #ccc 1px, transparent 0, transparent 50%), repeating-linear-gradient(135deg, #ccc 0, #ccc 1px, transparent 0, transparent 50%);
  background-size: 8px 8px;
  margin: auto;
}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
スクロールするとふわっと表示
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}
.fade-in-up {transform: translate(0, 50px);}

.scroll-in {
opacity: 1;
transform: translate(0, 0);
}



@media (min-width: 1400px) {
  .w-frame{width: 75%;}
}

@media (min-width: 1200px) {
  .w-frame{width: 90%;}
}

@media (min-width: 992px) {
  /* .w-frame{width: 75%;} */
}

/** Width between 767px to 0
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
@media (max-width: 767px) {
  /* Navbar */
  /* nav {
    padding: 20px 15px;
  } */

  .w-frame{width: auto;}
}
/** Width between 600px to 0
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
@media (max-width: 600px) {
  /* Navbar */
  /* nav {
    padding: 20px 15px;
  } */

  .w-frame{width: auto;}
}
/** Width between 480px to 0
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
@media (max-width: 480px) {
  /* Navbar */
  /* nav {
    padding: 20px 15px;
  } */

  .w-frame{width: auto;}
}
/** Width between 320px to 0
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
@media (max-width: 320px) {
  /* Navbar */
  /* nav {
    padding: 20px 15px;
  } */

  .w-frame{width: auto;}
}