@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Quicksand&display=swap");
@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* -- FOUNDATION -- */
/* reset CSS */
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* reset CSS ここまで */
html {
  font-size: 62.5%;
}

body {
  font: 1.6rem/1.5 sans-serif;
  color: #575757;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #575757;
}

a:hover {
  opacity: 0.8;
}

main {
  display: block;
}

/* -- LAYOUT -- */
.header {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #333;
}

.header_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 90%;
  height: auto;
  max-width: 1000px;
  margin: 0 auto;
  background-position: bottom right;
}

.header .logo_tfm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 140px;
  height: 80px;
}

.header .logo_tfm > img {
  width: 100%;
  height: auto;
}

.header .freq {
  margin-bottom: 5px;
  font-size: 1rem;
  text-align: right;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 800px) {
  .header {
    height: 70px;
  }

  .header_container {
    background: none;
  }

  .header .logo_tfm {
    width: 105px;
    height: 70px;
  }

  .header .freq {
    display: none;
  }
}
.ham {
  display: none;
}

.ham_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 70px;
  cursor: pointer;
}

.ham_menu {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: white;
  left: 0;
  top: 0;
  z-index: 2;
}

.ham_menu .hideIcon {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 15px;
  right: 5%;
  cursor: pointer;
}

.ham_contents {
  margin-top: 100px;
  font-family: "Quicksand", sans-serif;
  text-align: center;
}

.ham_contents > li {
  margin-bottom: 30px;
}

.ham_contents > li a span {
  font-size: 1.0rem;
}

.ham_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}

.ham_sns > li {
  margin: 0 20px;
}

.ham_sns > li > a > img {
  width: 30px;
  height: auto;
}

@media (max-width: 480px) {
  .ham {
    display: block;
  }
}
#menu.is-open {
  display: block;
  overflow-y: hidden;
}

.main {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  margin-inline: auto;
}

.mainNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 70px;
  font-family: "Quicksand", sans-serif;
  word-break: keep-all;
}

.mainNav_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Quicksand", sans-serif;
}

.mainNav_menu > li {
  padding-right: 30px;
}

.mainNav_menu > li a span {
  font-size: 1.1rem;
}

.mainNav_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mainNav_sns > li {
  margin-left: 15px;
}

.mainNav_sns > li > a > img {
  width: 25px;
  height: 25px;
}

@media (max-width: 480px) {
  .mainNav {
    display: none;
  }
}
.mainTtl {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  box-sizing: border-box;

  font-size: 3.6rem;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.2em;
  text-align: center;
  position: relative;
  inset-inline: 50%;
  width: 100vw;
  margin-inline: -50vw;
  background-color: #dce6f2;
}
.mainTtl a img {
  width: 100%;
  max-width: 1500px;
  height: auto;
  vertical-align: bottom;
}

.mainTtl span {
  font-size: 2.2rem;
}

@media (max-width: 480px) {
  .mainTtl {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
  }

  .mainTtl span {
    font-size: 1.6rem;
  }
}
.lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 48px auto 44px;
}
.lead_icon {
  text-align: center;
}
@media (max-width: 800px) {
  .lead_icon {
    width: 12%;
  }
}
.lead_icon img {
  width: 53%;
}
@media (max-width: 800px) {
  .lead_icon img {
    width: 100%;
  }
}

.lead_ttl {
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 800px) {
  .lead_ttl {
    width: 80%;
  }
}
.lead_ttl_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1a2e6e;
}
@media (max-width: 800px) {
  .lead_ttl_wrapper {
    margin-right: -1.8rem;
  }
}
.lead_ttl.--small {
  font-size: 1.6rem;
}
@media (max-width: 800px) {
  .lead_ttl.--small {
    font-size: 1.4rem;
  }
}

.lead_wrap {
  margin: 0px auto 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  position: relative;
  -webkit-column-gap: 0.2rem;
          column-gap: 0.2rem;
  width: 434px;
}
@media (max-width: 800px) {
  .lead_wrap {
    width: 100%;
    -webkit-column-gap: 0;
            column-gap: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 14vw;
  }
}

.lead_person {
  font-size: 2rem;
  color: #1a2e6e;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 800px) {
  .lead_person {
    font-size: 1.8rem;
  }
}
.lead_person_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.2rem;
          column-gap: 1.2rem;
}
@media (max-width: 800px) {
  .lead_person_wrapper {
    -webkit-column-gap: 0;
            column-gap: 0;
  }
}
.lead_person.--small {
  font-size: 1.6rem;
  font-weight: 700;
}
.lead_person.--smallest {
  font-size: 1.1rem;
}
@media (max-width: 800px) {
  .lead_person.--smallest {
    font-size: 1rem;
    letter-spacing: -0.01em;
  }
}
.lead_person.--underline {
  border-bottom: solid 1px #1a2e6e;
  padding-bottom: 2px;
}
.lead_person_slash {
  font-size: 2.4rem;
  margin: -5px 15px 0 -12px;
  font-weight: 700;
  color: #1a2e6e;
}
@media (max-width: 800px) {
  .lead_person_slash {
    font-size: 2rem;
    margin-top: -2px;
  }
}
.lead_person a {
  color: #1a2e6e;
  font-weight: 700;
  padding-bottom: 2px;
  letter-spacing: 0.035em;
}

.lead_name {
  padding-top: 10px;
  letter-spacing: 0.15em;
  line-height: 1;
  text-align: center;
  vertical-align: bottom;
}

.lead_name span {
  display: block;
  letter-spacing: 0;
  margin-top: 6px;
  font-size: 1.1rem;
}

.lead_txt {
  text-align: center;
  line-height: 2;
}
@media (max-width: 800px) {
  .lead_txt {
    line-height: 1.48;
  }
}

.lead_txt_audee {
  padding-top: 55px !important;
  color: #1a2e6e;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .lead_txt_audee {
    font-size: 1rem;
    padding-top: 4vw !important;
    width: 90%;
    margin: auto;
  }
}

.btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin: 0 auto 56px;
  max-width: 700px;
}

@media (max-width: 800px) {
  .btnBox {
    margin-bottom: 12vw;
  }
}
.btn, .btn-tfm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px;
  padding: 20px;
  width: 300px;
  height: 70px;
  text-align: center;
  font-family: "Quicksand", "M PLUS Rounded 1c", sans-serif;
  font-size: 2.4rem;
  color: #fff;
  background: #772f85;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn-tfm {
  background: #13307f;
}

@media (max-width: 480px) {
  .btn, .btn-tfm {
    font-size: 2rem;
  }
}
.bnr {
  text-align: center;
}

.bnr > img {
  max-width: 100%;
  height: auto;
}

.sponsor {
  width: 500px;
  margin: 0 auto;
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sponsor__bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: auto;
  margin: 0 auto 70px;
  padding: 15px 25px 25px;
  border: 1px solid #ddd;
}

.sponsor__bnr img {
  width: 100%;
  max-width: 189px;
  height: auto;
}

@media (max-width: 480px) {
  .sponsor {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
  }

  .sponsor__bnr {
    margin: 20px auto 0;
  }
}
.copyright {
  margin-top: -20px;
  padding: 0 5% 30px;
  font-size: 1.2rem;
  text-align: center;
  font-family: "Quicksand", sans-serif;
}

@media (max-width: 800px) {
  .copyright {
    margin-top: 20px;
  }
}
.pagetop {
  position: fixed;
  padding: 2px 5px;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 7px;
  z-index: 100;
}

.pagetop > img {
  width: 30px;
  min-height: 0;
}

.pagetop > p {
  margin-top: 1px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
}

/* -- UTILITY -- */
/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pcDetail {
  display: block;
}

.spDetail {
  display: none;
}

@media (max-width: 800px) {
  .spDetail {
    display: block;
  }

  .pcDetail {
    display: none;
  }
}
.audee_kana {
  font-size: 75%;
}

.audee_kana2 {
  font-size: 60%;
}

/* -- TW ウィジェット -- */
.widget {
  width: 600px;
  margin: 70px auto;
}

@media (max-width: 480px) {
  .widget {
    width: 90%;
    margin: 35px auto 0;
  }
}
.wrapper {
  border-bottom: 4px double #1a2e6e;
  padding-bottom: 4.8rem;
  overflow-x: hidden;
}

#read_more {
  margin: auto;
  width: 253px;
}
#read_more img {
  width: 253px;
}

.contents_wrapper {
  font-family: "Noto Sans JP", sans-serif;
}

.one_data {
  border: solid 1px #1a2e6e;
  padding: 0;
  overflow: hidden;
}
.one_data ul {
  padding: 15px;
  width: 90%;
}
.one_data p {
  padding: 0 15px 15px;
  margin: 0;
}
.one_data .name {
  color: #1a2e6e;
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 800px) {
  .one_data .photo {
    padding: 0;
  }
}
.one_data .photo img, .one_data .photo video {
  width: 100%;
  margin: 10px auto;
}
.one_data .time {
  color: #1a2e6e;
  text-align: left;
}

.btn_audee {
  width: 707px;
  margin: 90px auto 0;
}
@media (max-width: 800px) {
  .btn_audee {
    width: 100%;
    margin: 14vw auto 0;
  }
}

.supported {
  font-size: 1.3rem;
  text-align: center;
  margin-top: 1.2rem;
  color: #1a2e6e;
}
@media (max-width: 800px) {
  .supported {
    margin-top: 0;
  }
}
.supported a {
  font-weight: 700;
  color: #1a2e6e;
}

.area_follow {
  color: #1a2e6e;
  margin-inline: auto;
  margin-bottom: 6rem;
}
.area_follow_inner {
  padding: 5.5rem 0;
  position: relative;
  inset-inline: 50%;
  width: 100vw;
  margin-inline: -50vw;
  background-color: #eff3f6;
}
.area_follow_txt {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
}
@media (max-width: 800px) {
  .area_follow_txt {
    font-size: 1.6rem;
  }
}
.area_follow_txt.--bigger {
  font-size: 2.5rem;
  font-weight: 900;
}
@media (max-width: 800px) {
  .area_follow_txt.--bigger {
    font-size: 2rem;
  }
}

.btn-follow {
  text-align: center;
}
.btn-follow a img {
  width: 555px;
}
@media (max-width: 800px) {
  .btn-follow a img {
    width: 90%;
  }
}

.twitterhashtag_contents_ttl_wrapper {
  font-size: 2.5rem;
  margin-inline: auto;
  color: #1a2e6e;
  font-weight: 700;
}
@media (max-width: 800px) {
  .twitterhashtag_contents_ttl_wrapper {
    font-size: 2rem;
  }
}
.twitterhashtag_contents_ttl {
  position: relative;
  inset-inline: 50%;
  width: 100vw;
  margin-inline: -50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5.4rem;
}
.twitterhashtag_contents_ttl::before, .twitterhashtag_contents_ttl::after {
  content: "";
  height: 10px;
  background-image: url(../../img/line.png);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.twitterhashtag_contents_ttl::before {
  margin-right: 1rem;
}
.twitterhashtag_contents_ttl::after {
  margin-left: 1rem;
}

/*# sourceMappingURL=style.css.map */