@charset "UTF-8";

/****** common *****/
/*html {
  font-size: 62.5%;
}*/

body .hoshino-top {
  color: #444444;
  font-size: 16px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-feature-settings: "palt";
  letter-spacing: 0.05rem;
  line-height: 1;
}

.hoshino-top .min {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.hoshino-top .title {
  display: flex;
  align-items: center;
  margin-bottom: 56px;
  color: #444;
  font-size: 32px;
  letter-spacing: 0.2em;
}

.hoshino-top .title:before,
.hoshino-top .title:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #999;
  display: block;
}

.hoshino-top .title:before {
  margin-right: .8em;
}

.hoshino-top .title:after {
  margin-left: .8em;
}

.hoshino-top .name {
  margin-top: 4%;
  padding-bottom: 2%;
  font-size: 16px;
  font-weight: bold;
}

.hoshino-top .copy {
  letter-spacing: 0.2em;
  line-height: 1.6em;
}

.hoshino-top .container {
  max-width: 1080px;
  width: 100%;
  margin: auto;
}

.hoshino-top #wrapper {
  overflow: hidden;
}


main.hoshino-top {
  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
  }
}

.hoshino-top div,
.hoshino-top p,
.hoshino-top img {
  vertical-align: bottom;
}

.hoshino-top a {
  display: block;
  color: #121212;
  transition: 0.5s;
}
.hoshino-top .slideitem a {
  display: inline;
}
.hoshino-top a:hover {
  color: #121212;
}

.hoshino-top a.icon {
  font-size: 12px;
  color: #fff;
  padding: 6px 4px 6px 8px;
  background: url(../images/icon_arrow03.png) 92% center no-repeat #666;
  background-size: 12px;
  border-radius: 4px;
  box-sizing: border-box;
}

.hoshino-top a.icon:hover {
  background: url(../images/icon_arrow03.png) 92% center no-repeat #999;
  background-size: 12px;
}

.hoshino-top .en {
  font-family: 'Oswald';
}

.hoshino-top .sp {
  display: none;

}

@media screen and (max-width: 1280px) {
  .hoshino-top .container {
    padding: 4vw;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 767px) {
  .hoshino-top .container {
    padding: 4vw;
    box-sizing: border-box;
  }

  .hoshino-top .title {
    margin-bottom: 32px;
    font-size: 20px;
  }

  .hoshino-top .copy {
    letter-spacing: 0.1em;
    line-height: 1.6em;
  }

  .hoshino-top .sp {
    display: block;
  }

  .hoshino-top .pc {
    display: none;
  }
}


/***************************************************

	nav

****************************************************/
.hoshino-top nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 102;
  opacity: 0;
}

.hoshino-top .open nav {
  left: 0;
  opacity: 1;
}

.hoshino-top nav .inner {
  padding: 25px;
}

.hoshino-top nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hoshino-top nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px dotted #333;
}

.hoshino-top nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em 20px;
  background: url(../images/icon_arrow04.png) left center no-repeat;
  background-size: 12px;
  text-decoration: none;
  transition: 0.5s;
}

.hoshino-top nav .inner ul li a:hover {
  background: url(../images/icon_arrow04.png) left center no-repeat #e4e4e4;
  background-size: 12px;
}

@media screen and (max-width: 767px) {
  .hoshino-top nav {
    left: -220px;
    width: 80%;
  }
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 140px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 101;
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #3d7bae;
  border-radius: 4px;
  transition: all .5s;
}

.toggle_btn span:nth-child(1) {
  top: 4px;
}

.toggle_btn span:nth-child(2) {
  top: 14px;
}

.toggle_btn span:nth-child(3) {
  bottom: 4px;
}

.open .toggle_btn span {
  background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

@media screen and (max-width: 767px) {
  .toggle_btn {
    top: 60px;
  }
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .7;
  z-index: 100;
  cursor: pointer;
}


/***************************************************

	page_top

****************************************************/
#page_top {
  position: fixed;
  right: 4vw;
  bottom: -100px;
  width: 80px;
  height: 80px;
}

#page_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(53, 166, 214, 0.8);
  border-radius: 50%;
  transition: 0.5s;
}

#page_top a:hover {
  opacity: 0.5;
}

#page_top a div {
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: #fff transparent transparent #fff;
  transform: rotate(45deg);
}


/***************************************************

	slider

****************************************************/
.slider {
  position: relative;
  width: 100%;
  height: auto;
}

.next-arrow,
.prev-arrow {
  position: absolute;
  top: calc(50% - 30px);
  width: 34px !important;
  margin: auto;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1000;
}

.next-arrow:hover,
.prev-arrow:hover {
  opacity: 0.5;
}

.next-arrow {
  right: 3%;
}

.prev-arrow {
  left: 3%;
}

.slick-dots {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  top: initial;
  left: 0;
  right: 0;
  bottom: -10%;
  width: 100%;
  margin: 0px auto 0;
  list-style: none;
}

.slick-dots li button {
  content: '';
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: #999;
  color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
}

.slick-dots li.slick-active button {
  background: #000;
  border: 1px solid #000;
  color: #000;
}

.slick-dots li button::before {
  content: "";
}

@media screen and (max-width: 768px) {
  .slider {
    height: auto;
  }

  .next-arrow,
  .prev-arrow,
    {
    position: absolute;
    width: 34px !important;
    margin: auto;
    z-index: 10;
  }

  .slick-dots {
    justify-content: space-around;
    width: 50%;
    margin: auto;
    list-style: none;
  }

  .slider .slick-dots,
  .slider02 .slick-dots {
    bottom: -30px;
  }
}

@media screen and (min-width: 1200px) {}



/***************************************************

	tabs　common

****************************************************/
.s_tabWrap {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.s_tabWrap label {
  display: block;
  cursor: pointer;
  width: 25%;
  margin-bottom: 2%;
  padding: 24px 12px;
  text-align: center;
  transition: all 0.2s ease;
  color: #FFF;
  background: #ed4848;
  box-sizing: border-box;
  background: url(../images/common/icon-cmn-arrow.png) #ed4848 90% 50% no-repeat;
}

.s_tabWrap label:hover {
  color: #FFF;
  background: #fac8c8;
  background: url(../images/common/icon-cmn-arrow.png) #ed4848 94% 50% no-repeat;
}

.s_tabWrap label.active {
  color: #FFF;
  background: #fac8c8;
}

.s_tab_content.active {
  display: block;
}

.s_tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}




/***************************************************

	other

****************************************************/
.accordion {
  cursor: pointer;
  transition: 0.3s;
}

.accordionWrap .inner {
  display: none;
}

.accordion .more {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 72px;
  height: 72px;
  background: #fff;
  z-index: 4;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.accordion .more p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  color: #000;
  letter-spacing: 0;
  font-size: 14px;
  text-align: center;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.accordion.active .more {
  display: none;
}

.hoshino-top .arrow {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 0px;
  vertical-align: middle;
  text-decoration: none;
  border: none;
}

.hoshino-top .arrow::before,
.hoshino-top .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

@media screen and (max-width: 1048px) {
  .accordion .more {
    right: 4%;
    bottom: 8%;
    width: 8vw;
    height: 8vw;
  }

  .accordion .more p {
    width: 8vw;
    height: 8vw;
    font-size: 1.5vw;
    line-height: 1.2em;
  }
}

@media screen and (max-width: 768px) {
  .accordion .more {
    right: 2%;
    bottom: 0%;
    width: 10vw;
    height: 10vw;
  }

  .accordion .more p {
    width: 10vw;
    height: 10vw;
    font-size: 1.5vw;
    line-height: 1.8em;
  }
}

@media screen and (max-width: 468px) {}
