@charset "utf-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 0.3em;
}

body {
  color: #333;
  /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background: #F0F0F0;
}

.main_area {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.display_pc {
  display: block;
}

.display_sp {
  display: none;
}

.display_sp2 {
  display: none;
}

.tx_en {
  font-family: "kaushan-script", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size:5.0rem;
}

.tx_16 {
  font-size: 1.6rem;
}

.tx_20 {
  font-size: 2.0rem;
}

.tx_32 {
  font-size: 3.2rem;
}

.tx_40 {
  font-size: 4.0rem;
}

.tx_50 {
  font-size: 5.0rem;
}

.tx_60 {
  font-size: 6.0rem;
}

.tx_100 {
  font-size: 10.0rem;
}


img {
  width: 100%;
}

@media only screen and (max-width: 1150px) {
  h1 {
    font-size: 4.0rem;
  }
  .display_sp {
    display: block;
  }

  .display_pc {
    display: none;
  }

  .tx_16 {
    font-size: 1.4rem;
  }

  .tx_20{
    font-size: 1.6rem;
  }
.tx_32 {
  font-size: 2.0rem;
}


  .tx_60 {
    font-size: 4.0rem;
  }
 
  .tx_100 {
    font-size: 8.0rem;
  }
}



@media only screen and (max-width: 600px) {
  .main_area {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  
.display_sp2{
  display: block;
}
}