@charset "UTF-8";
/* Scss Document */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: Helvetica, 'Noto Sans JP','ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.75;
  /*letter-spacing: 0.05em;*/
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

@media only screen and (min-width: 415px) {
  /* Tablet */
}
@media only screen and (min-width: 769px) {
  /* Laptop PC */
  body {
    font-size: 16px;
  }
}
ul li {
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
}

a {
  color: #01a799;
  text-decoration: none;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 1;
    animation-duration: .5s;
    animation-name: flash;
  }

  @keyframes flash {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
h1, h2, h3, h4, h5, h6, h7, h8 {
  font-weight: normal;
}

/* clearfix
-------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.sp_none {
  display: none !important;
}

@media only screen and (min-width: 415px) {
  /* Tablet */
}
@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .pc_none {
    display: none !important;
  }

  .sp_none {
    display: inline-block !important;
  }
}
/* ---------------------------------------------------
 Loding
--------------------------------------------------- */
.loadingAnim {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.loadingAnim:before,
.loadingAnim:after {
  line-height: 1;
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  margin-right: auto;
  margin-left: auto;
  content: ' ';
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: .3s;
  background-color: #fff;
}

.loadingAnim:before {
  top: 0;
}

.loadingAnim:after {
  bottom: 0;
}

.loaded .loadingAnim:before {
  height: 0;
  -webkit-transform: translateY(-1%);
  -ms-transform: translateY(-1%);
  transform: translateY(-1%);
}

.loaded .loadingAnim:after {
  height: 0;
  -webkit-transform: translateY(1%);
  -ms-transform: translateY(1%);
  transform: translateY(1%);
}

.loadingAnim_line {
  /*line-height: 1;*/
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 2px;
  margin: auto;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: .6s;
  text-align: center;
}

.loadingAnim_line:after {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto  auto auto 0;
  content: ' ';
  -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  background-color: #01a799;
  will-change: transform, width;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
/* ---------------------------------------------------
 Main
--------------------------------------------------- */
#Main {
  width: 100%;
  text-align: center;
}
#Main img {
  max-width: 1440px;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
}
/* ---------------------------------------------------
 Common
--------------------------------------------------- */
#Wrapper {
  width: 100%;
}

h2 {
  font-size: 2em;
  font-weight: 600;
  width: 18px;
  /*border-bottom: 2px solid #666;*/
  margin-bottom: 10px;
}

.common_content {
  width: 90%;
  margin: 30px auto 0;
}

/* アニメーション */
.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0;
}

.u-fade {
  opacity: 0;
}

.u-fade-type-up.is-active,
.u-fade.is-active {
  transition: .6s;
  transform: translateY(0);
  opacity: 1;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  h2 {
    font-size: 3em;
    width: 24px;
    float: left;
  }

  .common_content {
    width: 80%;
    max-width: 1100px;
  }
}
/* ---------------------------------------------------
 Intro
--------------------------------------------------- */
#Intro {
  padding-bottom: 20px;
}
#Intro .midashi {
  font-size: 1.6em;
  font-weight: 600;
  padding-bottom: 10px;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Intro {
    padding-bottom: 60px;
  }
  #Intro .midashi {
    font-size: 2em;
    padding-bottom: 30px;
  }
  #Intro .tx {
    line-height: 2.4;
  }
}
/* ---------------------------------------------------
 Kaijo
--------------------------------------------------- */
#Kaijo {
  padding-bottom: 20px;
}
#Kaijo p {
  padding-bottom: 10px;
  font-size: .8em;
}
#Kaijo img {
  border-radius: 8px;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Kaijo {
    padding-bottom: 80px;
  }
}
/* ---------------------------------------------------
 Outline
--------------------------------------------------- */
#Outline ul.details_list {
  width: 100%;
  margin: 0 auto;
  padding-left: 10%;
  border-left: 1px solid #000;
}
#Outline ul.details_list li {
  display: flex;
  padding: 10px 0;
}
#Outline ul.details_list li .item {
  width: 30%;
  font-weight: 600;
}
#Outline ul.details_list li .content {
  width: 70%;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Outline, #Goods {
    padding: 60px 70px;
    border: 1px solid #000;
    border-radius: 8px;
  }

  #Outline ul.details_list {
    width: 65%;
    max-width: 660px;
    margin: 0;
    float: right;
    padding: 0;
    border: 0;
  }
  #Outline ul.details_list li .item {
    width: 20%;
  }
  #Outline ul.details_list li .content {
    width: 80%;
  }
}
/* ---------------------------------------------------
 Goods
--------------------------------------------------- */
#Goods .content {
  padding-left: 10%;
  border-left: 1px solid #000;
}
#Goods .content .tx2 {
  padding: 10px 0 30px;
}
#Goods .kome {
  font-size: 10px;
  padding-top: 20px;
  text-align: center;
  border-left: 1px solid #000;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Goods .content {
    float: right;
    display: inline-block;
    max-width: 830px;
    width: 90%;
    padding: 0;
    border: 0;
  }
  #Goods .content .tx1 {
    padding-left: 130px;
  }
  #Goods .content .tx2 {
    padding: 10px 0 40px 130px;
  }
}
/* ---------------------------------------------------
 Film_info
--------------------------------------------------- */
#Film_info {
  background: #35b4a5;
  width: 100%;
  color: #fff;
  padding: 10px 0 40px;
  margin-top: 60px;
}
#Film_info h3 {
  font-size: 1.4em;
  font-weight: 600;
  padding-bottom: 30px;
}
#Film_info h4 {
  font-weight: 600;
  font-size: 1.2em;
  color: #02a18f;
  background: #fff;
  padding-left: 10px;
  line-height: 2;
  margin-bottom: 15px;
  border-radius: 3px;
}
#Film_info .hosoda_box {
  margin-top: 40px;
}
#Film_info .hosoda_box strong {
  font-size: 1.6em;
  letter-spacing: 0.1em;
}
#Film_info .others_box {
  border-top: 1px dashed #fff;
  margin-top: 40px;
  padding-top: 40px;
}
#Film_info .others_box ul li {
  display: flex;
  padding-bottom: 8px;
}
#Film_info .others_box ul li a {
  color: #fff;
  text-decoration: underline;
}
#Film_info .others_box ul li .item {
  width: 50%;
}
#Film_info .others_box ul li .content {
  width: 50%;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Film_info {
    padding: 60px 0 100px;
    margin-top: 120px;
  }
  #Film_info h3 {
    font-size: 1.8em;
    padding-bottom: 40px;
  }
  #Film_info h4 {
    font-size: 1em;
  }
  #Film_info .story_box {
    width: 48%;
    float: left;
  }
  #Film_info .right {
    width: 48%;
    float: right;
  }
  #Film_info .hosoda_box {
    margin-top: 0;
  }
  #Film_info .hosoda_box strong {
    font-size: 1.3em;
  }
  #Film_info .others_box {
    margin-top: 20px;
    padding-top: 20px;
  }
  #Film_info .others_box ul li {
    padding-bottom: 0px;
  }
  #Film_info .others_box ul li .item {
    width: 42%;
  }
  #Film_info .others_box ul li .content {
    width: 58%;
  }
}
.note {
  font-size: 10px;
}

.byt_logo {
  width: 120px;
  margin: 40px auto 0;
}

.copyRight {
  font-size: 10px;
  text-align: center;
  width: 100%;
  padding: 20px 5% 40px;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .bottoms {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0 60px;
  }

  .note {
    float: left;
    width: 70% !important;
  }

  .right {
    float: right;
    width: 120px;
  }

  .byt_logo {
    text-align: right;
    margin: 30px 0 10px 0;
  }

  .copyRight {
    text-align: right;
    padding: 0;
  }
}
