<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Quicksand&amp;display=swap");
@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:300&amp;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: #333;
}

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

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

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: 1170px;
  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 &gt; img {
  width: 100%;
  height: auto;
}

.header .freq {
  width: 100%;
  max-width: 1170px;
  margin: 15px auto 5px;
  font-size: 1rem;
  text-align: right;
  line-height: 1.2;
  font-family: 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 &gt; li {
  margin-bottom: 30px;
}

.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 &gt; li {
  margin: 0 20px;
}

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

@media (max-width: 480px) {
  .ham {
    display: block;
  }
}

@media (min-width: 481px) and (max-width: 800px) {
  .ham {
    display: block;
  }
}

#menu.is-open {
  display: block;
  overflow-y: hidden;
}

.main {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.mainNav {
  width: auto;
  height: 70px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  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 &gt; li {
  padding-right: 30px;
}

.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 &gt; li {
  margin-left: 15px;
}

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

@media (max-width: 800px) {
  .mainNav {
    display: none;
  }
}

@media (max-width: 480px) {
  .mainNav {
    display: none;
  }
}

/* -- lead -- */
.lead {
  margin: 10px 0 30px 0;
  padding: 2%;
  color: #154d97;
  font-size: 160%;
  font-weight: bold;
  text-align: center;
  border: 1px dashed #154d97;
}

.lead span {
  font-size: 90%;
  font-weight: normal;
}

@media (max-width: 800px) {
  .lead {
    width: 90%;
    margin: 5% auto 0;
    padding: 0;
    font-size: 130%;
    font-weight: bold;
    line-height: 1.3;
    border: none;
  }
  .lead span {
    font-size: 70%;
    font-weight: normal;
  }
}

/* -- kv -- */
.kv {
  width: 100%;
  margin: 0 0 90px 0;
  max-width: 1170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.kv .mainTtl {
  width: 50%;
  margin: 0 0 0 0;
  text-align: center;
}

.kv .mainTtl img {
  width: 100%;
  height: auto;
}

.kv article {
  width: 46%;
}

.kv article .about_subttl {
  font-size: 160%;
  line-height: 1.3;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.kv article img {
  width: 100%;
  height: auto;
  margin: 0 0 30px 0;
}

.kv article p {
  margin: 15px 0 0 0;
  line-height: 1.8;
}

@media (max-width: 800px) {
  .kv {
    display: inline;
  }
  .kv .mainTtl {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  .kv .mainTtl img {
    width: 100%;
    height: auto;
  }
  .kv article {
    padding: 0 15px;
    width: auto;
  }
  .kv article br {
    display: none;
  }
}

/* -- about -- */
.about {
  margin: 90px 0 0 0;
}

.about_inner {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.about_ttl {
  margin: 0 0 50px 0;
  text-align: center;
  background: url(../../img/border_bg.png) no-repeat center;
}

.about_ttl img {
  width: 90px;
  height: auto;
  padding: 0 20px;
  background: #fff;
}

.about_subttl {
  margin: 0 0 30px 0;
  text-align: center;
  color: #c8102e;
  font-size: 150%;
}

.about p {
  width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .about {
    width: 95%;
    margin: 9% auto 0;
  }
  .about_ttl {
    margin: 0 0 7% 0;
  }
  .about_ttl img {
    width: 90px;
    height: auto;
    padding: 0 5%;
    background: #fff;
  }
  .about_subttl {
    margin: 0 0 5% 0;
    font-size: 140%;
    line-height: 1.2;
  }
  .about p {
    width: 90%;
    margin: 5% auto 0;
  }
}

/* -- program -- */
.program {
  margin: 0 0 90px 0;
}

.program_inner {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.program_ttl {
  margin: 0 0 50px 0;
  text-align: center;
  font-size: 120%;
  background: url(../../img/border_bg.png) no-repeat center;
}

.program_ttl img {
  width: 130px;
  height: auto;
  padding: 0 20px;
  background: #fff;
}

.program_subttl {
  margin: 0 0 30px 0;
  text-align: center;
  font-size: 150%;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.program_subttl span {
  color: #c8102e;
}

.program_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.program_list li {
  width: 32%;
  margin-bottom: 30px;
  list-style: none;
  font-size: 95%;
}

.program_list li:not(:nth-of-type(3n)) {
  margin-right: 2.0%;
}

.program_list li span {
  color: #154d97;
  font-size: 110%;
}

.program_list li strong {
  display: block;
  font-size: 120%;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  border-bottom: 1px dashed #333;
  color: #c8102e;
  padding: 10px 0 7px 0;
  margin-bottom: 10px;
}

.program_list li img {
  width: 100%;
  height: auto;
  margin: 0 0 7px 0;
}

@media (max-width: 800px) {
  .program {
    width: 95%;
    margin: 9% auto 0;
  }
  .program_inner {
    width: 98%;
    margin: 0 auto;
  }
  .program_ttl {
    margin: 0 0 7% 0;
  }
  .program_ttl img {
    width: 130px;
    height: auto;
    padding: 0 20px;
    background: #fff;
  }
  .program_subttl {
    margin: 0 0 7% 0;
    font-size: 100%;
  }
  .program_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .program_list li {
    width: 80%;
    margin: 0 0 6% 0;
    list-style: none;
    font-size: 80%;
  }
  .program_list li:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .program_list li strong {
    font-size: 130%;
  }
  .program_list li span {
    color: #154d97;
    font-size: 110%;
  }
  .program_list li img {
    width: 100%;
    height: auto;
    margin: 0 0 7px 0;
  }
}

/* -- note -- */
.note {
  margin: 0 auto 90px;
  max-width: 1170px;
}

.note_ttl {
  margin: 0 0 35px 0;
  padding-bottom: 15px;
  text-align: center;
  font-size: 150%;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  border-bottom: 4px double #333;
}

.note_ttl span {
  color: #c8102e;
}

.note_contents {
  max-width: 1170px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.note_ph {
  width: 35%;
  list-style: none;
}

.note_att {
  color: #c8102e;
  font-weight: bold;
}

.note_subttl {
  margin: 0 0 1% 0;
  font-size: 120%;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding-left: 20px;
  background: url(../../img/arrow.svg) no-repeat 0 10px;
  background-size: 15px 10px;
}

.note_subttl2 {
  margin: 0 0 1% 0;
  font-size: 120%;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.note_list {
  width: 65%;
  list-style: none;
  padding-top: 15px;
  padding-left: 50px;
  font-size: 100%;
}

.note_list li {
  margin-bottom: 30px;
}

.note_list li span {
  display: block;
}

.note_txt {
  margin-bottom: 30px;
  text-align: center;
}

.note_container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.note_box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 300px;
  max-width: 70%;
  height: auto;
  margin: 0 auto 30px;
}

@media (max-width: 800px) {
  .note {
    width: 95%;
    margin: 0 auto;
  }
  .note_ttl {
    margin: 0 0 4% 0;
    font-size: 110%;
  }
  .note_subttl {
    margin: 0 0 7% 0;
    font-size: 100%;
  }
  .note_subttl2 {
    margin: 0 0 1% 0;
    font-size: 100%;
  }
  .note_subttl2 li {
    border-bottom: 0px dashed #333;
  }
  .note_list {
    padding-top: 0;
  }
  .note_list li {
    padding-bottom: 15px;
    border-bottom: 1px dashed #333;
  }
  .note_list li:last-child {
    border-bottom: 0px dashed #333;
  }
  .note_txt {
    width: 90%;
    margin: 0 auto 30px;
    text-align: left;
  }
  .note_contents {
    max-width: 100%;
    margin: 0 auto;
    display: inline;
  }
  .note_ph {
    margin: 0 auto 30px;
    width: 80%;
  }
  .note_subttl {
    margin: 0 0 1% 0;
    font-size: 100%;
    font-weight: bold;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .note_list {
    margin: 0 auto;
    width: 95%;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .note_ttl {
    margin: 0 0 1% 0;
    font-size: 110%;
  }
  .note_note {
    width: 100%;
  }
  .note_subttl {
    margin: 0 0 7% 0;
  }
  .note_contents {
    padding: 0 2%;
  }
}

@media (max-width: 320px) {
  .note_subttl {
    margin: 0 0 7% 0;
    font-size: 110%;
    line-height: 1.2;
    color: #c8102e;
    text-align: center;
  }
  .note_comment ul li.icon {
    width: 100%;
    display: block;
    margin: 0 0 0 0;
  }
  .note_comment ul li.icon .ph {
    position: relative;
    width: 74%;
    display: block;
    margin: 0 auto;
  }
  .note_comment ul li.icon .ph img {
    display: block;
    width: 67%;
    margin: 0 auto 5%;
    border: 1px solid #ccc;
    border-radius: 50%;
    z-index: 1;
    text-align: center;
  }
  .note_comment ul li.icon .ph em {
    position: absolute;
    top: 0;
    left: -20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 75px;
    height: 75px;
    font-size: 65%;
  }
}

.footer {
  border-top: 1px solid #333;
}

.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 &gt; img {
  width: 30px;
  min-height: 0;
}

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

.more a {
  width: 250px;
  height: 25px;
  font-family: 'Noto Sans', sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: bottom;
      -ms-flex-align: bottom;
          align-items: bottom;
  text-align: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../../img/arw.svg) no-repeat 95% center;
  background-size: 15px 10px;
  background-color: #c8102e;
  padding: 15px 0 10px;
  font-weight: bold;
  color: #ffffff;
  list-style: none;
}

@media (max-width: 480px) {
  .more a {
    max-width: 250px;
  }
}

@media (max-width: 800px) {
  .more a {
    margin: 0 auto;
    max-width: 250px;
  }
}

/* =========================================================
  clearfix
  ========================================================= */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

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

.spDetail {
  display: none;
}

@media (max-width: 800px) {
  .spDetail {
    display: block;
  }
  .pcDetail {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */</pre></body></html>