@charset "UTF-8";
/*
  INIT
---------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (min-width: 1920px) {
  html {
    font-size: 0.520833vw;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1180px) {
  html {
    font-size: 0.847458vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.777778vw;
  }
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Helvetica, Arial, Verdana, sans-serif;
  letter-spacing: 0.06em;
  text-rendering: optimizeLegibility;
  line-height: 1.8;
  color: #333;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

main,
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-style: normal;
  text-rendering: optimizeLegibility;
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

img {
  vertical-align: bottom;
  border-style: none;
  max-width: 100%;
  height: auto;
}

map,
area,
map:active,
area:active {
  border: none;
  outline: none;
}

figure {
  margin: 0;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
}
@media only screen and (min-width: 768px) {
  a.alpha {
    transition: 200ms;
  }
  a.alpha:hover {
    opacity: 0.7;
  }
}

@media only screen and (min-width: 768px) {
  .alpha a {
    transition: 200ms;
  }
  .alpha a:hover {
    opacity: 0.7;
  }
}

/** Small Text
==============================================*/
small.small {
  padding-left: 1.5em;
}

small.small::before {
  content: "※";
  display: inline-block;
  text-indent: -1.5em;
}

/** Text alignment
==============================================*/
.text-center, .text-center--pc, .text-center--sm {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .text-center--sm {
    text-align: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .text-center--pc {
    text-align: inherit;
  }
}

.text-left, .text-left--pc, .text-left--sm {
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .text-left--sm {
    text-align: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .text-left--pc {
    text-align: inherit;
  }
}

.text-right, .text-right--pc, .text-right--sm {
  text-align: right;
}
@media only screen and (min-width: 768px) {
  .text-right--sm {
    text-align: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .text-right--pc {
    text-align: inherit;
  }
}

/** Font Weight
==============================================*/
.bold {
  font-weight: bold;
}

.font-normal {
  font-weight: normal;
}

/** Hide & Show
==============================================*/
.show-small {
  display: none;
}
@media only screen and (max-width: 767px) {
  .show-small {
    display: inherit;
  }
}

@media only screen and (max-width: 767px) {
  .hide-small {
    display: none;
  }
}

.row {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 104rem;
}
.row .row {
  padding: 0;
}
.row.nopad {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .row {
    padding: 0 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .row.sp-nopad {
    padding: 0;
  }
}

.w720 {
  max-width: 76rem;
}