/*
 Subtonez.web
*/

@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family:'Helvetica Neue','Arial','Hiragino Kaku Gothic ProN','Hiragino Sans','Meiryo', sans-serif;
  color: #444444;
  background-color: #d1e4dd;
}

a {
  color: #222;
}

a:hover {
  color: #555;
  text-decoration: none;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix:before {
  content: "";
  display: block;
  clear: both;
}
.clearfix {
  display: block;
}

.pc_only{
  display: block;
}
.sp_only{
  display: none;
}
@media screen and (max-width: 767px) {

.pc_only{
  display: none;
}

.sp_only{
  display: block;
}
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #ff9606;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #feb147;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}



/*--------------------------------------------------------------

イラスト INDEX
body .sbtz

--------------------------------------------------------------*/

/* hero_sbtz */

.hero_sbtz{
  position: relative;
  max-width: 980px;
  margin: auto;
}

.hero_sbtz .left_base{
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 54% ;
  z-index: 1;
}

.hero_sbtz .bikke{
  position: absolute;
  top: 0%;
  left: 34%;
  width:8% ;
  z-index: 3;
}

.hero_sbtz .fukudashi_about{
  position: absolute;
  top: 9%;
  left: 2%;
  width: 20% ;
  z-index: 3;
}

.hero_sbtz .boku{
  position: absolute;
  top: 9%;
  left: 21%;
  width:10% ;
  z-index: 3;
}

.hero_sbtz .fukidashi_new_arrival{
  position: absolute;
  top: 35%;
  left: 29%;
  width:21% ;
  z-index: 3;
}

.hero_sbtz .new_arriva_over{
  position: absolute;
  top: 27%;
  left: 7%;
  width:33% ;
  z-index: 3;
}

.hero_sbtz .fukidashi_map{
  position: absolute;
  bottom: 12%;
  left: 9%;
  width: 15% ;
  z-index: 3;
}

.hero_sbtz .information{
  position: absolute;
  top: 5%;
  right: 7%;
  width: 35% ;
  z-index: 1;
}

.hero_sbtz .remakes{
  position: absolute;
  bottom: -2%;
  right: 11%;
  width: 35% ;
  z-index: 2;
}

.hero_sbtz .shopping{
  position: absolute;
  bottom: -1%;
  left: 23%;
  width: 15% ;
  z-index: 2;
}


.hero_sbtz .stnz_info{
  position: absolute;
  top: 32%;
  right: 10%;
  width: 28%;
  text-align: center;
  z-index: 4;
}

.hero_sbtz .stnz_info p{
  font-size: .9rem;
}

.hero_sbtz .logo_stnz{
  width: 78%;
  margin: 5% auto 1%;
}

@media (max-width: 480px) {
  .hero_sbtz .stnz_info {
    position: absolute;
    font-size: 11px;
    top: 25%;
    right: 9%;
    width: 30%;
}
}








/* 普通 INDEX */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background-color: #d1e4dd;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#header .logo a {
  color: #111111;
}

#header .logo span{
  font-size: 18px;
  display: block;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
  #header .logo {
    font-size: 28px;
  }
  #header .logo span{
  font-size: 16px;
}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #111111;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #ff9606;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;/**/
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ff9606;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}


/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #111111;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #111111;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #feb147;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 82px;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 16px;
  font-weight: 200;
  line-height: 2;
}


@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 58px;
  }
  #hero h1 {
    font-size: 28px;
  }
  #hero h2 {
    font-size: 14px;
    line-height: 2;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ff9606;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0 8px;
  background: #8c713c;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 0px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #fff;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #ff9606;
  content: "/";
}



/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# home_news
--------------------------------------------------------------*/
.home_news .home_news-item {
  margin-bottom: 30px;
}

.home_news .home_news-item .info{
  padding: .5rem .5rem 0;
  border: dashed 1px;
}

.home_news .home_news-item .info a{
  text-decoration: underline;
}

.home_news .home_news-item h4{
  font-size: 1.2rem;
}

.home_news .home_news-item p{
  font-size: 1rem;
}

/*--------------------------------------------------------------
. blog
--------------------------------------------------------------*/

.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 400px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #111111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #feb147;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 14px;
  padding-right: 4px;
}

.blog .entry .entry-meta a {
  color: #5e5e5e;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #ff9606;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #feb147;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #8b8b8b;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #feb147;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}


/*記事を書いた人*/
.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
}

.blog .blog-author h4 {
  margin-left: 140px;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
}

.blog .blog-author .social-links {
  margin: 0 0 5px 140px;
}

.blog .blog-author .social-links a {
  color: #777777;
}

.blog .blog-author p {
  margin-left: 140px;
  font-style: italic;
  color: #b7b7b7;
}
/*記事を書いた人*/

/*コメント*/
.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  width: 50px;
}

.blog .blog-comments .comment h5 {
  margin-left: 65px;
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #feb147;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #111111;
}

.blog .blog-comments .comment time {
  margin-left: 65px;
  display: block;
  font-size: 14px;
  color: #777777;
  margin-bottom: 5px;
}

.blog .blog-comments .comment p {
  margin-left: 65px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}
/*コメント*/


.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.blog .blog-pagination li {
  border: 1px solid white;
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li.active {
  background: white;
}

.blog .blog-pagination li a {
  color: #aaaaaa;
  padding: 7px 16px;
  display: inline-block;
}

.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #ff9606;
  border: 1px solid #ff9606;
}

.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .blog-pagination li.disabled {
  background: #fff;
  border: 1px solid white;
}

.blog .blog-pagination li.disabled i {
  color: #f1f1f1;
  padding: 10px 16px;
  display: inline-block;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111111;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #ff9606;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.blog .sidebar .search-form form button:hover {
  background: #2b2b2b;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #515151;
}

.blog .sidebar .categories ul a:hover {
  color: #feb147;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #777777;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: black;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #feb147;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #777777;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #c4c4c4;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #111111;
  background: #111111;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #8c713c;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #acc79a;
  color: #444;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #ff9606;
  bottom: 0;
  left: 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #444;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #feb147;
  color: #fff;
  text-decoration: none;
}

.fs-mini{
  font-size: .8rem!important;
}


/*waiting_hero*/
.waiting_hero{
  position: relative;
  max-width: 980px;
  margin: auto;
}

.waiting_hero .waiting_info{
  position: absolute;
  font-size: 18px;
  top: 22%;
  right: 8%;
  width: 28%;
}

@media (max-width: 480px) {
  .waiting_hero .waiting_info {
    position: absolute;
    font-size: 11px;
    top: 19%;
    right: 7%;
    width: 30%;
}
}



/*--------------------------------------------------------------
animetion
--------------------------------------------------------------*/

/*ぽよぽよ収縮*/
.anim-box.poyopoyo {
  animation: poyopoyo 3s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

/*ぽよぽよ収縮2*/
.anim-box.poyopoyo2 {
  animation: poyopoyo 4s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo2 {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

/*ぽよぽよ収縮3*/
.anim-box.poyopoyo3 {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo3 {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}


/*ゆらゆら*/
.yurayura{
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(2deg);
  }
  50%{
      transform: rotate(-2deg);
  }
}


/*ふわふわ揺れる*/
.fuwafuwa {
  animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-3deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(3deg);
  }
}


.zoom-in {
  animation: zoomIn 0.5s ease-in-out forwards;
  animation-delay: 1s;
  transform: scale(0,0);
}

@keyframes zoomIn {
  100% {
    transform: scale(1,1);
  }
}
/**/

/* ---------------------
   About サブトーンズについて
--------------------- */
.about {
  background-color:#1a1f1b;
  margin: 0;
  padding: 0;
}

.about #wrapper{
  max-width:100%;
  overflow: hidden;
}

.about .flex_box{
  display: flex;
  align-items: center;
}

.about .about_1{
  width: 55%;
  position: relative;
}

.about .about_2{
  width: 45%;
  position: relative;
}

.about .about_1 .logo{
  z-index: 10;
  position: absolute;
  left: 10px;
}

.swiper-wrapper .swiper-slide {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.txt_area{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #fff;
}

.txt_area .txt{
        font-size: 16px;
 }

.about_2 .inner{
  position: relative;
}

.txt_area_2{
  width: 90%;
  margin: auto auto;
  color: #fff;
  padding: 30px 0 ;
}

.about_2 .about_menu{
  width: 90%;
  margin: auto auto;

  text-align: center;
}


.about_2 .about_menu ul{
  display: flex;
  justify-content: center;
}

a.white{
  color:#fff;
  text-decoration:none;
  font-size:16px;
}

a[href*="tel:"] {
  color:#fff;
}

@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
color:#fff;
}
}

a.red{
  color:#d22a11;
  text-decoration:none;
  font-size:16px;
}

@media screen and (max-width: 1200px) {
  .about .flex_box{
  display: block;
  align-items: center;
}

.about .about_1, .about .about_2{
  width: 100%;
  position: relative;
  margin: 0 auto;
}

  }

@media screen and (max-width: 640px) {
  .txt_area{
    position: absolute;
    top: 60%;
    width: 90%;
}
}

@media screen and (max-width: 375px) {
  .txt_area{
    position: absolute;
    top: 60%;
    width: 90%;
    margin: 30px 0;
}
.txt_area img{
  width: 60px;
}
}

/* ---------------------
   Map アクセス・マップ
--------------------- */

.map {
  background:url(../img/back_map.jpg) repeat-x left top;
  background-color:#000;
  /*background-attachment:fixed;*/
  margin: 0;
  padding: 0;
}

.map #wrapper{
  max-width:100%;
  overflow: hidden;
}

.map .header{
  display: flex;
  background:url(../img/hd_map.jpg) repeat-x left top;
  width: 100%;
  height: 222px;
  position:relative;
}

.map .header .logo{
  margin: 0 0 0 10px;
  width:20%;
}

.map .header .title{
  width: 30%;
  margin-top: 30px;
  margin-left: 30px;
  position: absolute;
  left: 110px;
  bottom: 0;
}

.map .map-navi{
  width: 50%;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  bottom: 0;
}

.map .map-navi img{
  max-width: 100%;
}

.map .map-navi ul{
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 8% 2%;
  padding: 0;
}

.map .map-navi ul li{
  width: 33%;
}

.map .map-navi ul .navi_map01{
  transform: rotate(-25deg);
  margin-bottom: 40px;
}

.map .map-navi ul .navi_map02{
  transform: rotate(5deg);
}

.map .map-navi ul .navi_map03{
  transform: rotate(15deg)
}

.map .map-navi .navi_base{
  position: absolute;
  bottom: 0%;
  right: 0%;
  z-index: 3;
}

@media screen and (min-width: 540px) and  (max-width: 820px) {
.map .header .logo{
  margin: 0 0 0 10px;
  width:20%;
}

.map .header .title{
  width: 30%;
  margin-top: 30px;
  margin-left: 30px;
  left: 111px;
}

.map .map-navi{
  width: 50%;
  display: flex;
  justify-content: flex-end;
  right: 0;
}

.map .map-navi ul{
  align-items: flex-end;
}

.map .map-navi ul .navi_map01{
  transform: rotate(-25deg);
  margin-bottom: 35px;
}

.map .map-navi ul .navi_map02{
  transform: rotate(5deg);
  margin-bottom: 35px;
}

.map .map-navi ul .navi_map03{
  transform: rotate(15deg);
  margin-bottom: 10px;
}
  }



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

.map .header .logo{
  margin: 0 0 0 10px;
  width:25%;
}

.map .header .title{
  width: 53%;
  margin-top: 30px;
  margin-left: 0px;
  left: 138px;
}

.map .map-navi{
  width: 22%;
  display: flex;
  justify-content: flex-end;
  right: 0;
}

.map .map-navi ul{
  list-style: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 8%;
  padding: 0;
}

.map .map-navi ul li{
  width: 100%;
  text-align: center;
  height: 33%;
}

.map .map-navi ul .navi_map01{
  transform: rotate(-25deg);
  margin-bottom: 0px;
  width: 74px;
}

.map .map-navi ul .navi_map02{
  transform: rotate(5deg);
  margin-bottom: 0px;
  width: 74px;
}

.map .map-navi ul .navi_map03{
  transform: rotate(15deg);
  margin-bottom: 0px;
  width: 74px;
}

.map .map-navi .navi_base{
  display: none;
}

  }/**/

.map .access{
  position: relative;
  max-width: 980px;
  margin: auto auto;/**/
  padding: 0 20px;
}

.access_box{
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.map .bytrain_stnz {
  margin: 50px 0px;
  background-color: rgba(255, 255, 255, .6);
  padding: 3%;
  border-radius: 10px;
  max-width: 610px;
}

.map .bybus_stnz {
  margin: 30px 0px 50px;
  background-color: rgba(255, 255, 255, .6);
  padding: 3%;
  border-radius: 10px;
  max-width: 490px;
}

.map p.green{
  color:#4f5432;
  font-weight:bold;
  font-size:16px;
  margin-bottom: 1rem;
}

.map .mail_stnz {
  margin: 0px 0 ;
  background-color: rgba(255, 255, 255, .6);
  padding: 3%;
  border-radius: 10px;
  text-align: center;
}

.map a.red{
  color:#d22a11;
  text-decoration:none;
  font-size:16px;
}

.map .access2{
  position: relative;
  max-width: 980px;
  margin: 100px auto 50px;
  padding: 0 20px;
}

.map .map_area{
  position: relative;
  text-align: center;
}

.map .map_area .here_stnz{
    position: absolute;
    top: -97%;
    left: 30%;
    width: 24%;
}

.map .map_area .map_stnz{
  width: 46%;
}

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

.map .bybus_stnz {
  margin: 0px 0px 20px;
}

.map .map_area .here_stnz{
    position: absolute;
    top: -43%;
    left: 20%;
    width: 34%;
}

.map .map_area .map_stnz{
  width: 100%;
}
}