/* デフォルト スタイル ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
* {transition: all 0.48s;
  -moz-font-smoothing: grayscale;text-rendering: optimizelegibility;
}
html {scroll-behavior: smooth;
  overflow-x: hidden;overflow-y: scroll;
  width: 100%;font-size: 62.5%;
}
body {width: 100%;
  background-color: transparent;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  text-align: left;
  color:#615c61;
}
/* 共通スタイル ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.code_name,
.fc_pnk{color:#f67599; color:rgba(246,117,153,1.0);}/* PANTONE：17-1755 Paradise Pink */
.fc_gly{color:#615c61; color:rgba(097,092,097,1.0);}/* PANTONE：18-3908 Volcanic Glass*/

/* セクショニング スタイル PC ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
header, main, article, aside, footer {
  width: 100%;
  max-width: 127.2rem;
}
header {
  margin: 0 auto 0.8rem;
  padding: 1.6rem;
}
footer {
  margin: 1.6rem auto 0;
  padding: 1.6rem;
}
main {
  margin: 0 auto;
}
article, aside {
  display: flex;flex-wrap: wrap;justify-content: flex-start;
  margin: 0 auto 2.4rem;
  padding: 4.8rem 0 2.4rem;
}
aside {
  margin: 1.6rem auto;
}
section {
  margin: 1.6rem 1.6rem 3.2rem;
  padding: 0.8rem 0;
  width: calc(100% / 1 - 1.6rem * 2);
}
.column_2 section {
  width: calc(100% / 2 - 1.6rem * 2);
}
.column_3 section {
  width: calc(100% / 3 - 1.6rem * 2);
}
/* セクショニング スタイル スマホ ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
@media (max-width : 519px) {
  header, footer {
    margin: 0 auto;
  }
  article, aside {
    margin: 0 auto 2.4rem;
    padding: 2.4rem 0 1.2rem;
  }
  section, .column_2 section, .column_3 section {
    margin: 0.8rem 1.6rem 1.6rem;
    width: calc(100% / 1 - 1.6rem * 2);
  }
}
/* ヘッター スタイル PC ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
header {
  height: 60.0rem;
  background: url("../img/dummy_hd.jpg") no-repeat center / cover;
  text-align: center;
}
header h2 {
  margin: 14.0rem 0 5.6rem;
  font-size: 3.8rem;
  line-height: 1.4;
}
header p {
  margin-bottom: 5.6rem;
  font-size: 2.0rem;
  line-height: 1.8;
}
button a {
  display: block;
  width: 100%;
  max-width: 60.4rem;
  height: 9.0rem;
  margin: 1.6rem auto 2.4rem;
  border: 0.1rem solid;
  font-size: 3.6rem;
  line-height: 9.0rem;
}
button a div {
  display: inline-block;
  font-size: 1.8rem;
}
/* ヘッター スタイル スマホ ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
@media (max-width : 519px) {
  header h2 {
    margin: 6.8rem 0;
    font-size: 2.8rem;
  }
  header h2 span {
    display: block;
  }
  header p {
    margin-bottom: 2.4rem;
    font-size: 1.6rem;
    line-height: 1.9;
    text-align: left;
  }
  button {
  padding: 0 0.8rem;
  }
  button a {
    font-size: 2.8rem;
  }
}
/* 見出し テキスト スタイル PC ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
h1, h2, h3, h4, h5, dt, address, button {
  width: 100%;
  font-weight: 600;
}
h1 {
  font-size: 2.4rem;
  text-align: left;
}
h2 {
  margin-bottom: 3.2rem;
  font-size: 4.8rem;
  line-height: 1.4;
  text-align: center;
}
h2 div {
  font-size: 1.6rem;
}
h3, dt {
  margin-bottom: 0.8rem;
  font-size: 2.4rem;
  line-height: 1.4;
}
strong {
  font-size: 2.4rem;
  line-height: 1.0;
}
h4 {
  margin-bottom: 0.8rem;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 400;
}
p {
  margin-bottom: 0.8rem;
}
figure {
  margin-bottom: 0.6rem;
}
figcaption {
  margin: 0.4rem 0;
  font-size: 1.6rem;
}
address {
  font-size: 1.2rem;
  text-align: center;
}
/* 見出し テキスト スタイル スマホ ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
@media (max-width : 519px) {
  h2 {
    margin-bottom: 1.6rem;
    font-size: 2.7rem;
  }
  h2 div {
    font-size: 1.3rem;
  }
  aside h2 {
    font-size: 2.8rem;
  }
  #register h2 {
    font-size: 2.4rem;
  }
  h3, dt {
    margin-bottom: 0.8rem;
    font-size: 2.0rem;
  }
  strong {
    font-size: 2.2rem;
  }
  h4 {
    margin-bottom: 0.8rem;
    font-size: 2.0rem;
  }
  p {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    line-height: 1.7;
  }
  figcaption {
    font-size: 1.4rem;
  }
}