<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* head,text */
p.text,
.texts&gt;p {
  font-size: 1rem;
  line-height: 1.875;
  text-align: left;
}
.f_small {
  font-size: 0.875rem;
}
.mb1em {
  margin-bottom: 1.875em;
}
.mb2em {
  margin-bottom: 3.75em;
}
.limit_lh p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.red {
  color: #e92e3c;
}
@media screen and (max-width: 768px) {

  p.text,
  .texts&gt;p {
    font-size: 1rem;
  }
}
/* Link */
.text_link a,
a.text_link {
  position: relative;
  z-index: 10;
  font-size: 1rem;
  font-weight: 500;
  color: #e92e3c;
  text-decoration: none;
  padding-left: 1.25em;
}
.text_link a span::before,
a.text_link span::before {
  position: absolute;
  z-index: 10;
  display: inline-block;
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-top: 2px solid #e92e3c;
  border-right: 2px solid #e92e3c;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.text_link a span::after,
a.text_link span::after {
  position: absolute;
  z-index: 5;
  display: inline-block;
  content: "";
  width: 100%;
  height: 1px;
  background: #e92e3c;
  left: 0;
  bottom: -3px;
  transform: scale(1, 1);
  transform-origin: left;
  transition: transform .4s;
}
@media (any-hover: hover) {

  .text_link a:hover span::after,
  a.text_link:hover span::after {
    transform: scale(0, 1);
    transform-origin: right;
  }
}
.text_link a i svg,
a.text_link i svg {
  fill: #212240;
}
.block_link a,
a.block_link {
  display: block;
  transition: border 0.4s;
}
.block_link a img {
  transition: opacity 0.4s;
}
@media (any-hover: hover) {

  .block_link a:hover,
  a.block_link:hover {
    text-decoration: none;
  }
  .block_link a:hover img,
  a:hover img.opacity {
    opacity: 0.7;
    text-decoration: none;
  }
}
.common_btn a {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  width: auto;
  min-height: 4.5em;
  font-size: 1rem;
  font-weight: bold;
  color: #282828;
  background: #fff;
  border: 2px solid #e92e3c;
  border-radius: 4em;
  padding: 0.625em 3em;
  text-decoration: none;
  transition: color .4s;
  overflow: hidden;
}
@media (any-hover: hover) {
  .common_btn a:hover {
    color: #fff;
  }
}
.common_btn a::before,
.common_btn a::after,
.common_btn a span::before {
  position: absolute;
  z-index: -10;
  display: inline-block;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
}
.common_btn a::before {
  width: 2em;
  height: 2em;
  background: #e92e3c;
  border-radius: 50%;
  right: 1.25em;
}
.common_btn a span::before {
  width: 100%;
  top: 50%;
  bottom: auto;
  right: 0;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #e92e3c;
  transform-origin: 90%;
  transform: translateY(-50%) scale(0);
  transition: transform .4s;
}
@media (any-hover: hover) {
  .common_btn a:hover span::before {
    transform: translateY(-50%) scale(1);
  }
}
.common_btn a::after {
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 2em;
  transform: rotate(45deg);
}
a .arrow_link p,
a.arrow_link,
.arrow_link a {
  position: relative;
  z-index: 10;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 0.5em;
  width: auto;
  min-height: 3.75em;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: 'Noto Serif JP', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Times New Roman", "HG明朝B", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #212240;
  text-decoration: none;
}
.arrow_link span {
  position: relative;
  z-index: 10;
  display: inline-block;
}
.arrow_link span::before {
  position: absolute;
  z-index: 10;
  display: inline-block;
  content: "";
  width: 100%;
  height: 1px;
  background: #212240;
  bottom: -0.25em;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right;
  transition: transform .4s;
}
@media (any-hover: hover) {

  a:hover .arrow_link span::before,
  a.arrow_link:hover span::before,
  .arrow_link a:hover span::before {
    transform: scale(1, 1);
    transform-origin: left;
  }
}
.arrow_link .icon-arrow,
.arrow_link .icon-target {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-width: 3em;
  height: 3em;
  border: 1px solid #d2d2d2;
  border-radius: 100%;
  background: #fff;
  transition: border-color .4s, background .4s;
}
.arrow_link .icon-arrow svg,
.arrow_link .icon-target svg {
  fill: #212240;
}
@media (any-hover: hover) {

  a:hover .arrow_link .icon-arrow,
  a.arrow_link:hover .icon-arrow,
  .arrow_link a:hover .icon-arrow,
  .arrow_link.arrow_wht .icon-arrow,
  a:hover .arrow_link .icon-target,
  a.arrow_link:hover .icon-target,
  .arrow_link a:hover .icon-target {
    border-color: #fff;
    background: #212240;
  }
  a:hover .arrow_link.arrow_wht .icon-arrow,
  a.arrow_link.arrow_wht:hover .icon-arrow,
  .arrow_link.arrow_wht a:hover .icon-arrow {
    background: #fff;
  }
  a:hover .arrow_link .icon-arrow svg,
  a.arrow_link:hover .icon-arrow svg,
  .arrow_link a:hover .icon-arrow svg,
  .arrow_link.arrow_wht .icon-arrow svg,
  a:hover .arrow_link .icon-target svg,
  a.arrow_link:hover .icon-target svg,
  .arrow_link a:hover .icon-target svg {
    fill: #fff;
  }
  a:hover .arrow_link.arrow_wht .icon-arrow svg,
  a.arrow_link.arrow_wht:hover .icon-arrow svg,
  .arrow_link.arrow_wht a:hover .icon-arrow svg {
    fill: #212240;
  }
}
a .arrow_link.arrow_wht p,
a.arrow_link.arrow_wht,
.arrow_link.arrow_wht a {
  color: #fff;
}
.arrow_link.arrow_wht span::before {
  background: #fff;
}
@media screen and (max-width: 768px) {

  a .arrow_link p,
  a.arrow_link,
  .arrow_link a {
    font-size: 1rem;
  }
  .arrow_link span::before {
    display: none;
  }
}
/* list */
.topics_list {
  padding: 0;

}
.topics_list li {
  border-bottom: #bdbdbd solid 1px;
}
.topics_list li a,
.topics_list li&gt;div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.55em 0.25em;
  text-decoration: none;
  color: #282828;
}
@media (any-hover: hover) {
  .topics_list li a:hover {
    background: #f7e9e8;
  }
}
.topics_list time,
.topics_list p {
  display: inline-block;
}
.topics_list time {
  font-size: 0.875rem;
  line-height: 1.375rem;
  min-height: 1.375rem;
  margin-right: 20px;
  white-space: nowrap;
  width: 75px;
}
.topics_list .cat {
  display: block;
  width: 90px;
  padding: 5px 10px;
  border: 1px solid #e92e3c;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e92e3c;
  text-align: center;
  line-height: 1;
  margin-right: 20px;
}
.topics_list .cat+.cat {
  margin-top: 0.5em;
}
.topics_list li p {
  margin-bottom: 0;
  line-height: 1.4;
  width: calc(100% - 190px);
}
@media screen and (max-width: 767px) {

  .topics_list li a,
  .topics_list li&gt;div {
    padding: 0.75em 0.25em;
    flex-wrap: wrap;
  }
  .topics_list time {
    font-size: 0.85rem;
    line-height: 1.4;
    min-height: 0;
    margin-right: 0;
    margin-bottom: 0.25em;
  }
  .topics_list .cat {
    display: inline-block;
    margin-bottom: 0.5em;
    margin-right: 0;
  }
  .topics_list .cat+.cat {
    margin-top: 0;
  }
  .topics_list li p {
    width: 100%;
  }
}
/*  GoogleMAP・動画埋め込み  */
.map_wrap iframe {
  width: 100%;
}
#campus_map {
  height: 390px;
  margin-bottom: 20px;
}
.movie_wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.movie_wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.movie_wrap2 {
  width: 100%;
  height: 0;
  padding-bottom: 590px;
  overflow: hidden;
  position: relative;
}
.movie_wrap2 iframe,
.movie_wrap2 video {
  min-width: 100%;
  min-height: 590px;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  #campus_map {
    margin: 0 15px;
    box-sizing: border-box;
    width: auto;
    height: 320px;
  }
}
/*  パンくずリスト  */
#pan {
  padding: 10px 4em 14px;
  background: #f7e9e8;
  text-align: left;
}
#pan ol {
  display: flex;
  align-items: center;
  overflow-y: hidden;
  overflow-x: auto;
  font-size: 0.875rem;
  padding: 0;
  margin: 0;
}
#pan li,
#pan li * {
  display: inline-block;
  vertical-align: middle;
}
#pan li * {
  display: inline;
  vertical-align: middle;
}
#pan li {
  margin-right: 0.25em;
  white-space: nowrap;
}
#pan li a {
  color: #e92e3c;
  text-decoration: none;
  border-bottom: 1px solid #e92e3c;
}
#pan li:before {
  content: "\003E";
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: middle;
}
#pan li:first-child:before {
  content: "";
  display: none;
  margin-right: 0;
}
@media (any-hover: hover) {
  #pan li a:hover {
    border-bottom: none;
  }
}
@media only screen and (max-width: 767px) {
  #pan {
    padding: 5px 15px;
    overflow: hidden;
    position: relative;
    z-index: 2;
  }
  #pan li:last-child {
    position: relative;
    padding-right: 10px;
    margin-right: 0;
    flex-grow: 1;
  }
  #pan:after,
  #pan li:last-child:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    width: 10px;
    z-index: 1;
    background: rgb(247, 233, 232);
    background: -moz-linear-gradient(90deg, rgba(247, 233, 232, 0) 0%, rgba(247, 233, 232, 1) 50%);
    background: -webkit-linear-gradient(90deg, rgba(247, 233, 232, 0) 0%, rgba(247, 233, 232, 1) 50%);
    background: linear-gradient(90deg, rgba(247, 233, 232, 0) 0%, rgba(247, 233, 232, 1) 50%);
  }
  #pan li:last-child:after {
    top: -1em;
    bottom: -1em;
    right: 0;
    background: rgb(247, 233, 232);
    background: -moz-linear-gradient(90deg, rgba(247, 233, 232, 0) 0%, rgba(247, 233, 232, 1) 50%);
    background: -webkit-linear-gradient(90deg, rgba(247, 233, 232, 0) 0%, rgba(247, 233, 232, 1) 50%);
    background: linear-gradient(90deg, rgba(247, 233, 232, 0) 0%, rgba(247, 233, 232, 1) 50%);
  }
  #pan a {
    text-decoration: underline;
  }
}
/*  ページャー  */
.pager_style {
  text-align: center;
  padding: 30px 0 0 0;
}
.pager_style li {
  width: 40px;
  border: 1px solid #BBBBBB;
  background: #fff;
  display: inline-block;
  margin: 0 0 10px 0;
}
@media (any-hover: hover) {
  .pager_style li:hover {
    background: #024384;
  }
}
.pager_style li.on {
  background: #024384;
}
.pager_style li a {
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 8px 0;
}
.pager_style li.on a {
  color: #fff;
}
@media (any-hover: hover) {
  .pager_style li a:hover {
    color: #fff;
  }
}
.pager_style li.prev {
  margin: 0 10px 0 0;
}
.pager_style li.next {
  margin: 0 0 0 10px;
}
@media screen and (max-width: 768px) {
  .pager_style li {
    width: 30px;
  }
  .pager_style li a {
    font-size: 12px;
    padding: 6px 0;
  }
  .pager_style li.prev,
  .pager_style li.next {
    margin: 0;
  }
}
/*  モーダル  */
.modal-content {
  width: 80%;
  max-width: 1240px;
  margin: 0px;
  padding: 10px 20px;
  background: none;
  position: fixed;
  display: none;
  z-index: 1020;
}
#modal-overlay {
  z-index: 1000;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.66);
}
.modal_tit {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  max-width: 250px;
  text-align: center;
  line-height: normal;
  font-size: 20px;
  z-index: 1025;
  overflow: hidden;
  padding: 0px 30px;
  color: #fff;
}
.modal_tit span {
  display: block;
  position: relative;
  padding: 10px 0px;
  background: rgb(0, 0, 0);
  z-index: 2;
  border-bottom: 1px solid rgb(255, 255, 255);
}
.modal-content .close_btn {
  position: absolute;
  top: -10%;
  right: 0px;
  color: rgb(255, 255, 255);
  font-size: 40px;
  line-height: 1;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }
}
/*  タブ切替  */
.tab_change&gt;input[type="radio"] {
  display: none;
}
.tab_change&gt;input[type="radio"]~.tab_table .tab_content {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  z-index: -10;
  visibility: hidden;
  transition: opacity .4s;
}
.tab_change&gt;input[id$="01"]:checked~.tab_table div[class$="01"],
.tab_change&gt;input[id$="02"]:checked~.tab_table div[class$="02"],
.tab_change&gt;input[id$="03"]:checked~.tab_table div[class$="03"],
.tab_change&gt;input[id$="04"]:checked~.tab_table div[class$="04"] {
  opacity: 1;
  z-index: 10;
  visibility: visible;
  max-height: max-content;
  overflow: visible;
  width: 100%;
}
.tab_controller label {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  width: calc(50% - 1em);
  min-height: 2.25em;
  text-align: center;
  font-size: 1.375rem;
  font-weight: bold;
  color: #fff;
  background: #d4d4d4;
  border-radius: 50px;
  padding: 0px 6px;
}
.tab_controller label:hover,
.tab_change&gt;input[id$="01"]:checked~.tab_controller label[for$="01"],
.tab_change&gt;input[id$="02"]:checked~.tab_controller label[for$="02"],
.tab_change&gt;input[id$="03"]:checked~.tab_controller label[for$="03"],
.tab_change&gt;input[id$="04"]:checked~.tab_controller label[for$="04"] {
  background: #e92e3c;
  color:#fff;
}
@media screen and (max-width: 768px) {
  .tab_controller label {
    max-width: 180px;
    min-height: 2.75em;
    font-size: 1rem;
  }
}
/*  フォーム  */
.smf-form .smf-item.required-box .smf-item__description {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1;
  color: #e52331 !important;
  background: #fff !important;
  border: 1px solid #e52331;
  border-radius: 4px;
  padding: 0.35em 0.75em;
  margin: 0;
}
.smf-form .smf-item input::placeholder,
.smf-form .smf-item textarea::placeholder {
  color: #919191;
}
.smf-form .smf-item input[type="text"],
.smf-form .smf-item input[type="search"],
.smf-form .smf-item input[type="email"],
.smf-form .smf-item input[type="tel"],
.smf-form .smf-item input[type="number"],
.smf-form .smf-item input[type="password"],
.smf-form .smf-item input[type="date"],
.smf-form .smf-item textarea,
.smf-form .smf-item select {
  border: #e5e5e5 solid 1px;
  display: block;
  width: 100%;
  height: 3.5em;
  line-height: 3.5em;
  padding: 0 1em !important;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0 !important;
  border-radius: 0;
}
.smf-form .smf-item input[name$="zip"] {
  width: 244px;
  display: inline-block;
}
.smf-form .smf-item textarea {
  height: auto;
  line-height: 1.5em;
  padding: 1em !important;
}
.smf-form .smf-item label {
  cursor: pointer;
}
.smf-form .smf-item input[type="radio"],
.smf-form .smf-item input[type="checkbox"] {
  position: absolute;
  z-index: -10;
  font-size: 0;
  line-height: 0;
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
  width: 0;
  height: 0;
  margin: 0
}
.smf-form .smf-item input[type="radio"]::before,
.smf-form .smf-item input[type="checkbox"]::before {
  display: none !important;
}
.smf-form .smf-item input[type="radio"]+span,
.smf-form .smf-item input[type="checkbox"]+span {
  display: inline-block;
  padding: 0.25em 0.25em 0.25em 1.75em;
  position: relative;
}
.smf-form .smf-item input[type="checkbox"]+span {
  padding-left: 1.75em;
}
.smf-form .smf-item label input[type="radio"]+span:before,
.smf-form .smf-item label input[type="checkbox"]+span:before,
.smf-form .smf-item label input[type="radio"]+span:after,
.smf-form .smf-item label input[type="checkbox"]+span:after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: solid 1px #919191;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: opacity .2s;
}
.smf-form .smf-item label input[type="checkbox"]+span:after {
  border: none;
  width: 0.875rem;
  height: 0.5rem;
  background: none;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(135deg);
  top: -4px;
  left: 3px;
  opacity: 0;
}
.smf-form .smf-item label input[type="radio"]+span:before {
  border-radius: 50%;
  width: 1.25em;
  height: 1.25em;
}
.smf-form .smf-item label input[type="radio"]+span:after {
  border-radius: 50%;
  width: 0.75em;
  height: 0.75em;
  border: none;
  background: #e92e3c;
  top: 0;
  left: 0.25em;
  opacity: 0;
}
.smf-form .smf-item label input[type="checkbox"]:checked+span:before {
  border-color: #c6311d;
  background: #c6311d;
}
.smf-form .smf-item label input[type="radio"]:checked+span:after,
.smf-form .smf-item label input[type="checkbox"]:checked+span:after {
  opacity: 1;
}
.smf-form .smf-item input[type="radio"]:focus+span::before,
.smf-form .smf-item input[type="checkbox"]:focus+span::before {
  outline: 1px solid;
}
.smf-form .smf-item input[type="radio"]+label {
  padding: 0.25em 0 0.25em 2em;
}
.smf-form .smf-item input[type="radio"]+label:before {
  border: #b0b0b0 solid 1px;
  width: 1.5em;
  height: 1.5em;
}
.smf-form .smf-item input[type="radio"]+label:after {
  width: 0.5625em;
  height: 0.5625em;
  top: 0.975em;
  left: 0.5em;
}
.smf-form .smf-item input[type="checkbox"]+label {
  padding: 0.5em 0 0.5em 2em;
}
.smf-form .smf-item input[type="checkbox"]+label:before {
  border: #b0b0b0 solid 1px;
  width: 1.5em;
  height: 1.5em;
}
.smf-form .smf-item input[type="checkbox"]+label:after {
  top: 0.75em;
  left: 0.5em;
}
.smf-form .smf-item .smf-select-control {
  width: 40%;
}
.smf-action {
  display: flex;
  justify-content: center;
  margin: 0 auto !important;
  gap: 0 1em;
  max-width: 800px;
}
.smf-action .smf-button-control {
  margin: 0 auto;
  width: 100%;
  min-height: 4.375em;
  margin-bottom: 80px;
  text-align: center;
}
.smf-action .smf-button-control__control {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4.5em;
  font-size: 1rem;
  font-weight: bold;
  color: #282828;
  background: #fff;
  border: 2px solid #e92e3c;
  border-radius: 4em;
  padding: 0.625em 3em;
  text-decoration: none;
  transition: color .4s, background .4s;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}
.smf-action .smf-button-control__control[data-action="back"] {
  color: #fff;
  background: #e92e3c;
}
@media (any-hover: hover) {
  .smf-action .smf-button-control__control:hover {
    color: #fff;
    background: #e92e3c;
    border-color: #e92e3c;
  }
  .smf-action .smf-button-control__control[data-action="back"]:hover {
    color: #282828;
    background: #fff;
  }
}
.snow-monkey-form[data-screen="confirm"] .smf-button-control__control {
  width: 100%;
}
.snow-monkey-form[data-screen="input"] .form-confirm,
.snow-monkey-form[data-screen="invalid"] .form-confirm,
.snow-monkey-form[data-screen="confirm"] .form-input,
.snow-monkey-form[data-screen="invalid"] .form-input {
  display: none;
}
.smf-form .smf-item{
  padding: 1.5rem 0;
}
.smf-form .smf-item:not(div:has(.form-confirm)) {
  border-bottom: 1px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.smf-form .smf-item:last-child {
  border-bottom: none;
}
.smf-form .smf-item .smf-item__col--label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  max-height: 3.5em;
  flex: 300px;
  width: 300px;
  padding-right: 4em;
  box-sizing: border-box;
}
.smf-form .smf-item:not(.required-box) .smf-item__col--label {
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}
.smf-form .smf-item .smf-item__label__text {
  font-size: 1.125rem;
  font-weight: bold;
}
.smf-form .smf-item .smf-item__col--controls {
  flex: calc(100% - 300px);
  max-width: calc(100% - 300px);
}
.smf-form .smf-item .adrees-flex+.adrees-flex {
  margin-top: 0.75em;
}
.smf-form .smf-item .adrees-flex .smf-placeholder {
  width: calc(100% - 89px);
}
.smf-form .smf-item [data-name^="file"] {
  border: 1px solid #e5e5e5;
  padding: 0.5em;
  margin-bottom: 0.5em;
}
.smf-form .smf-item.privacy-box {
  justify-content: center;
  text-align: center;
}
.smf-form .smf-item.privacy-box label {
  font-size: 1.125rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {

  .smf-form .smf-item input[type="text"],
  .smf-form .smf-item input[type="search"],
  .smf-form .smf-item input[type="email"],
  .smf-form .smf-item input[type="tel"],
  .smf-form .smf-item input[type="number"],
  .smf-form .smf-item input[type="password"],
  .smf-form .smf-item input[type="date"],
  .smf-form .smf-item textarea,
  .smf-form .smf-item select {
    font-size: 1rem;
  }
  .smf-form .smf-item input[name$="zip"] {
    width: 120px;
  }
  .smf-form .smf-item label input[type="radio"]+span,
  .smf-form .smf-item label input[type="checkbox"]+span {
    font-size: 1rem;
    padding-left: 1.25em;
  }
  .smf-form .smf-item label input[type="checkbox"]+span::before {
    width: 1.125rem;
    height: 1.125rem;
  }
  .smf-form .smf-item label input[type="checkbox"]+span::after {
    width: 1rem;
    height: 0.5rem;
    border-width: 3px;
    left: 1px;
    top: 0;
  }
  .smf-form .smf-item label input[type="radio"]+span::before {
    width: 14px;
    height: 14px;
  }
  .smf-form .smf-item label input[type="radio"]+span::after {
    width: 8px;
    height: 8px;
    left: 3px;
  }
  .snow-monkey-form[data-screen="confirm"] .smf-action {
    flex-direction: column-reverse;
    gap: 0.75em;
  }
  .smf-action .smf-button-control+.smf-button-control {
    margin: 0;
  }
  .smf-action .smf-button-control__control {
    min-width: 220px;
    min-height: 3.5em;
  }
  .smf-form .smf-item {
    flex-direction: column;
    gap: 1em;
    padding: 1rem 0;
  }
  .smf-form .smf-item .smf-item__col--label {
    flex: 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .smf-form .smf-item.required-box .smf-item__col--label {
    justify-content: flex-start;
    gap: 0 0.5em;
    max-height: 3.5em;
  }
  .smf-form .smf-item .smf-radio-buttons-control__control .smf-label {
    display: block !important;
    margin: 0 !important;
  }
  .smf-form .smf-item .smf-item__col--controls {
    flex: 100%;
    max-width: 100%;
  }
  .smf-form .smf-item .adrees-flex+.adrees-flex {
    margin-top: 0.5em;
  }
  .smf-form .smf-item [data-name^="file"] * {
    font-size: 0.875rem;
  }
}
.flyer_area {
  position: relative;
  z-index: 15;
}
.flyer_area+.flyer_area {
  margin-top: 90px;
}
.flyer_area .flyer_tit {
  margin-bottom: 40px;
}
.flyer_area .flyer_tit .chirashi_name {
  position: relative;
}
.flyer_area .flyer_tit .chirashi_name:after {
  content: "\3001";
}
.flyer_area .flyer_tit .chirashi_name:last-child:after {
  display: none;
}
.flyer_area .flyer_col {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0 4%;
}
.flyer_area .flyer_col .flyer_left {
  width: 29%;
}
.flyer_area .flyer_col .flyer_left .flyer_image {
  margin-bottom: 30px;
}
.flyer_area .flyer_col .flyer_left .flyer_image a {
  display: block;
  transition: .5s opacity;
}
@media (any-hover: hover) {
  .flyer_area .flyer_col .flyer_left .flyer_image a:hover {
    opacity: 0.7;
  }
}
.flyer_area .flyer_col .flyer_right {
  width: 67%;
}
.flyer_area .flyer_col .flyer_right .period_area {
  margin-bottom: 40px;
  font-size: 1.125rem;
  font-weight: bold;
}
.flyer_area .flyer_col .flyer_right .period_area em {
  color: #e92e3c;
}
.flyer_area .flyer_col .flyer_right .txt_area {
  background: #f7e9e8;
  padding: 50px 60px;
  border-radius: 20px;
}
.flyer_area .flyer_col .flyer_right .txt_area p {
  line-height: 1.875
}
.flyer_area .flyer_col .flyer_right .txt_area *+* {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .flyer_area+.flyer_area {
    margin-top: 50px;
  }
  .flyer_area .flyer_tit {
    margin-bottom: 20px;
  }
  .flyer_area .flyer_tit .h_style02 {
    margin-bottom: 10px;
  }
  .flyer_area .flyer_col {
    flex-direction: column-reverse;
  }
  .flyer_area .flyer_col .flyer_left {
    width: 100%;
  }
  .flyer_area .flyer_col .flyer_left .flyer_image {
    margin-bottom: 20px;
  }
  .flyer_area .flyer_col .flyer_right {
    width: 100%;
    margin-bottom: 1.5em;
  }
  .flyer_area .flyer_col .flyer_right .period_area {
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: bold;
  }
  .flyer_area .flyer_col .flyer_right .txt_area {
    padding: 20px 15px;
    border-radius: 10px;
  }
}</pre></body></html>