/* ========================================
 * mai-ryosuke-party v1.0.0 Base Stylesheet
 * 2021.07.10
 * ----------------------------------------*/

/* =========================================
 * fonts set
 * ----------------------------------------- */

@font-face {
  font-family: "ranking-caps";
  src: url(../fonts/Rankings-Caps.woff);
}

@font-face {
  font-family: "north-avellion";
  src: url(../fonts/North-Avellion.woff);
}

@font-face {
  font-family: "noto-sans-cjk-jp-regular";
  src: url(/fonts/NotoSansCJKjp-Regular.woff);
}

@font-face {
  font-family: "noto-sans-cjk-jp-medium";
  src: url(/fonts/NotoSansCJKjp-Medium.woff);
}

@font-face {
  font-family: "noto-sans-cjk-jp-bold";
  src: url(/fonts/NotoSansCJKjp-Bold.woff);
}

/* =========================================
 * Base style set
 * ----------------------------------------- */
 * {
  transition: 0.2s;
}

html {
  font-size: 10px;
}
@media only screen and (max-width: 400px) {
  html {
    font-size: 9.411764705882353px;
  }
}

html, body {
  height: 100%;
}

body {
  font-family: "source-sans-pro-regular", "noto-sans-cjk-jp-regular";
  font-size: 1.3rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1.765;
  color: #555555;
  margin: 0;
  padding: 0;
}

/* ---------------------------------------- 
 * Links
 * ---------------------------------------- */
a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
  color: gray;
}

a:hover,
a:active {
  outline: 0;
}

h1, .h1 {
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
}

@media only screen and (max-width:600px) {
  h1, .h1 {
    font-size: 3.3rem;
    letter-spacing: -0.07rem;
  }

}

h2, .h2 {
  font-size: 3rem;
  line-height: 1.3;
}

h3, .h3 {
  font-size: 2.4rem;
  line-height: 1.25;
}

h4, .h4 {
  font-size: 2.1rem;
  line-height: 1.286;
}

h5, .h5 {
  font-size: 1.7rem;
  line-height: 1.235;
}

h6, .h6 {
  font-size: 1.4rem;
  line-height: 1.286;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
}

h2 {
  font-family: "ranking-caps";
  position: relative;
  display: inline-block;
  padding: 3.6rem;
  padding-bottom: 10px;
}

h2:after {
  position: absolute;
  bottom: 0.5px;
  left: calc(10% - 8px);
  width: 200px;
  height: 6px;
  content: '';
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}

h3 {
  font-family: "north-avellion";
  position: relative;
  display: inline-block;
  padding: 3.6rem;
  padding-bottom: 10px;
}

h4 {
  position: relative;
  display: inline-block;
  padding: 3.6rem;
  padding-bottom: 10px;
}

input,
button,
select,
textarea {
  font-size: 14px;
}

input,textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
}

input {
  margin: 10px;
  padding: 10px;  
}

textarea {
  margin: 10px 0 0;
  padding: 5px;  
  width: 100%;
  height: 8em;
}