@charset "utf-8";

/* head,text */
.article_style01 {
  font-size:2rem;
  font-weight:700;
  margin-bottom:1em;
  text-align:center;
}
.article_style02 {
  color: #f68a16;
  font-size:1.75rem;
  font-weight:600;
  margin-bottom:0.5em;
}
p.text,
.texts>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;
}
@media screen and (min-width: 769px) {
  .pc_center {
  	text-align: center !important;
  }
}
.limit_lh p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.lead_style{
  font-size:1.25rem;
  line-height:1.8;
  font-weight:500;
  margin-bottom:3em;
}
.lead_style p{
  width:fit-content;
  margin-inline:auto;
}
.ttls_style{
  margin-bottom:1em;
  font-size:1.25rem;
  font-weight:600;
}
.ttls_style *:not(p){
  font-size:1.4em;
  font-weight:600;  
}
.ttls_style > p{
  color:#ff8a0d;
  margin-bottom:0.5em;
}
.flex-col{
  display:flex;
  gap:4%;
}
.flex-col > [class*="col"]{
  flex-grow:1;
  flex-shrink:1;
  flex:1;
}
@media screen and (max-width: 768px) {
  .article_style01{
    font-size:1.5rem;
  }
  p.text,
  .texts>p {
    font-size: 1rem;
  }
 .ttls_style{
    font-size:1.125rem;
  }
  .lead_style{
    font-size:1.125rem;
    margin-bottom: 2em;
  }
  .flex-col.break{
    flex-direction:column;
    row-gap:1em;
  }
}
/* Link */
.text_link a,
a.text_link {
  font-size:1rem;
  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;
}
.text_link a span,
a.text_link span {
  position:relative;
  z-index:10;
  margin-right:0.5em;
}
.text_link a span::after,
a.text_link span::after {
  position:absolute;
  z-index:5;
  display:inline-block;
  content:"";
  width:100%;
  height:1px;
  background:#212240;
  left:0;
  bottom:-3px;
  transform:scale(1,1);
  transform-origin:left;
  transition:transform .4s;
}
.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: background 0.4s, color 0.4s, border 0.4s;
}
.block_link a img {
  transition: opacity 0.4s;
}
.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 {
  text-align: center;
  margin: 0 auto;
}
.common_btn a {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 322px;
  width: fit-content;
  min-height: 4em;
  font-size: 1.125rem;
  font-weight: bold;
  --font-color:#282828;
  --bg-color:#fff;
  --key-color:#f68a16;
  color:var(--font-color);
  background-color:var(--bg-color);
  border-radius: 4em;
  padding: 0.5em 3.5em;
  text-decoration: none;
  filter: drop-shadow(2px 4px 5px rgba(0,0,0,.3));
  overflow: hidden;
  margin: 0 auto;
  transition:background .4s,color .4s;
}
.common_btn a i {
  position: absolute;
  z-index: -5;
  content: "";
  font-size:0.875rem;
  width: 2.75em;
  height: auto;
  aspect-ratio: 1/1;
  color:var(--bg-color);
  background-color:var(--key-color);
  border-radius: 50%;
  top:50%;
  right:1em;
  transform:translateY(-50%);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .4s,color .4s;
}
.common_btn a i img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(346deg) brightness(99%) contrast(98%);
  transition:filter;
  width:1rem;
  height:auto;
  aspect-ratio:1 / 1;
  transition:filter .4s;
}
.common_btn.btn-org a {
  --font-color:#fff;
  --bg-color:#f68a16;
  --key-color:#282828;
}
.common_btn.ico-green a {
   --key-color:#58dad4; 
}
.common_btn.ico-blue a {
   --key-color:#99c3fd; 
}
.common_btn.btn-org a i{
  color:var(--key-color);
  background-color:var(--font-color);
}
@media (any-hover: hover) {
  .common_btn a:hover{
    background-color:var(--key-color);
    color:var(--bg-color);
  }
  .common_btn a:hover i{
    background:var(--bg-color);
    color:var(--font-color);
  }
  .common_btn a:hover i img{
    filter: brightness(0) saturate(100%) invert(56%) sepia(69%) saturate(1129%) hue-rotate(350deg) brightness(98%) contrast(96%);
  }
  .common_btn.btn-org  a:hover{
    background-color:var(--font-color);
    color:var(--key-color);
  }
}
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;
}
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;
}
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: 767px) {
  .common_btn a {
    min-width:auto;
    width:300px;
    box-shadow:0px 2px 16px rgba(0,0,0,0.1);
  }
  a .arrow_link p,
  a.arrow_link,
  .arrow_link a {
    font-size: 1rem;
  }
  .arrow_link span::before{
    display:none;
  }
  a:hover .arrow_link .icon-arrow,
  a.arrow_link:hover .icon-arrow,
  .arrow_link a:hover .icon-arrow,
  a:hover .arrow_link .icon-target,
  a.arrow_link:hover .icon-target,
  .arrow_link a:hover .icon-target{
    border-color:#212240;
    background:#fff;
  }
  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:#212240;
  }
  a:hover .arrow_link .icon-arrow svg,
  a.arrow_link:hover .icon-arrow svg,
  .arrow_link a:hover .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:#212240;
  }
  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:#fff;
  }
}
/* list */
.topics_list {
  border-top: #DDDDDD solid 1px;
}
.topics_list li {
  border-bottom: #DDDDDD solid 1px;
}
.topics_list li a,
.topics_list li>div {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}
.topics_list li a:hover {
  text-decoration: none;
}
.topics_list time,
.topics_list h2,
.topics_list p {
  display: inline-block;
}
.topics_list a:hover h2 {
  color: #fff;
  background: #E60012;
  border-color: #ddd;
  transition: background-color 0.5s, color 0.5s;
}
.topics_list a:hover time,
.topics_list a:hover p {
  text-decoration: underline;
}
.topics_list time {
  margin-right: 20px;
}
.topics_list h2 {
  padding: 5px 5px;
  width: 10em;
  text-align: center;
  border: solid 1px #666666;
  margin-right: 20px;
  transition: background-color 1s, color 1s;
}
.blog-list{
  display:flex;
  justify-content:flex-start;
  align-items:stretch;
  flex-wrap:wrap;
  gap:0 1.5em;
}
.blog-list .blog-item{
  width:calc(50% - 0.75em);
}
.blog-list .blog-item a{
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  gap: 0 1.25em;
  border-bottom:1px solid #efefef;
  padding:1em 0;
  text-align: left;
  text-decoration:none;
}
.blog-list .blog-item:first-child a,
.blog-list .blog-item:nth-child(2) a{
  border-top:1px solid #efefef;
}
.blog-list .blog-item_image{
  position:relative;
  z-index:10;
  width: 157px;
  padding-top: 24%;
  overflow:hidden;
}
.blog-list .blog-item_image img{
  position:absolute;
  z-index: 20;
  max-height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition:transform 0.4s;
}
.blog-list .blog-item:hover .blog-item_image img{
  transform:scale(1.1);
}
.blog-list .blog-item_title{
  font-size:1.125rem;
  font-weight:600;
  margin-bottom:0.5em;
}
.blog-list .blog-item_text time{
  font-size:0.875rem;
  font-weight:600;
  color:#9a9a9a;
}
@media screen and (max-width:767px) {
  .blog-list{
    flex-direction:column;
    gap:0;
  }
  .blog-list .blog-item{
    width:100%;
  }
  .blog-list .blog-item a{
    gap: 0 .75em;
    padding:0.75em 0;
  }
  .blog-list .blog-item_image{
    width: 35%;
  }
  .blog-list .blog-item:hover .blog-item_image img{
    transform:none;
  }
  .blog-list .blog-item_title{
    margin-bottom:0.25em;
  }
}
/*  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 {
  max-width: calc(1600px + 4%);
  margin: 0 auto 4em;
  text-align: right;
  color: #fff;
}
#pan ul {
  padding: 0 2%;
  margin: 0;

}
#pan li,
#pan li * {
  display: inline-block;
  vertical-align: middle;
  margin-block: 0;
}
#pan li * {
  display: inline;
  vertical-align: middle;
  font-weight: 500;
  font-size: 0.875rem;
}
#pan li + li{
  margin-left: 2em;
  position: relative;
}
#pan li:before {
  content: "";
  display: inline-block;
  width:1em;
  height: 1px;
  top: 0.85em;
  bottom: 0;
  left: -1.6em;
  background:#ffffff;
  position:absolute;
}
#pan li:first-child:before {
  content: "";
  display: none;
  margin-right: 0;
}
#pan a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  #pan a:hover{
    text-decoration: none;
  }
}

@media only screen and (max-width: 767px) {
  #pan {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 2em;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
}
/*  ページャー  */
.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;
}
.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;
}
.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>input[type="radio"] {
  display: none;
}
.tab_change>input[type="radio"]~.tab_table .tab_content {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  z-index: -10;
  visibility: hidden;
  transition: opacity .4s;
}
.tab_change>input[id$="01"]:checked~.tab_table div[class$="01"],
.tab_change>input[id$="02"]:checked~.tab_table div[class$="02"],
.tab_change>input[id$="03"]:checked~.tab_table div[class$="03"],
.tab_change>input[id$="04"]:checked~.tab_table div[class$="04"],
.tab_change>input[id$="05"]:checked~.tab_table div[class$="05"],
.tab_change>input[id$="06"]:checked~.tab_table div[class$="06"],
.tab_change>input[id$="07"]:checked~.tab_table div[class$="07"],
.tab_change>input[id$="08"]:checked~.tab_table div[class$="08"] {
  opacity: 1;
  z-index: 10;
  visibility: visible;
  max-height: 200vh;
  overflow: visible;
  width: 100%;
}
.tab_controller {
  display: flex;
  justify-content: flex-start;
  margin: 0.5em 0;
  flex-wrap: wrap;
}
.tab_controller label,
.tab_controller a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #b7b7b7;
  background: #fff;
  width: calc(25% - 3px);
  min-height: 30px;
  border-radius: 50px;
  font-weight: 500;
  margin-right: 4px;
  font-size: 0.875rem;
  line-height: 1.1;
  text-align: center;
  padding: 0px 6px;
  letter-spacing: -0.03em;
}
.tab_controller label:nth-child(4n),
.tab_controller a:nth-child(4n) {
  margin-right: 0;
}
.tab_controller label:nth-child(n+5),
.tab_controller a:nth-child(n+5) {
  margin-top: 4px;
}
.tab_controller a:hover,
.tab_controller a.on,
.tab_change>input[id$="01"]:checked~.tab_controller label[for$="01"],
.tab_change>input[id$="02"]:checked~.tab_controller label[for$="02"],
.tab_change>input[id$="03"]:checked~.tab_controller label[for$="03"],
.tab_change>input[id$="04"]:checked~.tab_controller label[for$="04"],
.tab_change>input[id$="05"]:checked~.tab_controller label[for$="05"],
.tab_change>input[id$="06"]:checked~.tab_controller label[for$="06"],
.tab_change>input[id$="07"]:checked~.tab_controller label[for$="07"],
.tab_change>input[id$="08"]:checked~.tab_controller label[for$="08"] {
  background: #f6f6f6;
}
.tab_controller a {
  transition: background .4s;
  text-decoration: none;
}
.tab_change_style .tab_controller {
  justify-content: space-between;
}
.tab_change_style .tab_controller a {
  width: 23%;
  text-decoration: none;
  transition: background .4s, color .4s;
}
.tab_change_style .tab_controller a.active,
.tab_change_style .tab_controller a:hover {
  background: #f2f2f2;
  border-color: #f2f2f2;
}
.tab_change_style .tab_table {
  box-shadow: none;
}
.table_wrap table {
  max-width:1000px;
  margin:0 auto;
}
.table_wrap table th,
.table_wrap table td{
  font-size:1rem;
  padding:1.5em 2em;
  border:solid 1px #d4d4d4;
  line-height:1.85;
  font-weight:500;
}
.table_wrap table th{
  background:#f3f3f3;
  font-weight:700;
  white-space:nowrap;
}
.table_wrap table th + td{
  border-left:none;
}
.table_wrap table:has(th + td) th{
  border-right:none;
  width:260px;
}
.table_wrap table .caption{
  font-size:0.875em;
  line-height:1.6;
}
.table_wrap table *:not(.caption) + .caption{
  margin-top:1em;
}
@media screen and (max-width: 768px) {
  .table_wrap table,
  .table_wrap table thead,
  .table_wrap table tbody,
  .table_wrap table tr,
  .table_wrap table th,
  .table_wrap table td{
    display:block;
  }
  .sitewrap .table_wrap {
    margin-left:-15px;
    margin-right:-15px;
  }
  .table_wrap table th,
  .table_wrap table:has(th + td) th{
    white-space:normal;
    width:auto;
    padding:0.5em 1em;
    text-align:center;
    border-left:none;
  }
  .table_wrap table td{
    border:none;
    padding:1em 1em 2em;
    font-size:0.94rem;
  }
  .table_wrap table *:not(.caption) + .caption{
    margin-top:1em;
  }
}

/*  フォーム  */
.smf-form .smf-item .smf-item__label__text{
	font-weight:500;
}
.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 {
	appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	vertical-align: middle;
	border: solid 1px #fff;
	border-radius: 0;
	font-size: 0.875rem;
	padding: 0 0.5em;
	height: 2.5em;
	line-height: 2.5em;
	background: #fff;
	margin: 0;
}
.smf-form .smf-item input::placeholder,
.smf-form .smf-item textarea::placeholder {
	color: #d2d2d2;
}
.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: #d2d2d2 solid 1px;
	display: block;
	width: 100%;
	height: 3.5em;
	line-height: 3.5em;
	padding: 0 1em;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0 !important;
	border-radius: 0;
}
.smf-form .smf-item select{
	padding: 0 2rem 0 1em;
	background: none;
}
.smf-form .smf-item input[name="zip"] {
	width: 180px;
	display: inline-block;
}
.smf-form .smf-item input.other_text{
	margin-top: 0.5em;
	width: 20%;
	min-width: 20em;
}
.smf-form .smf-item textarea {
	height: auto;
	line-height: 1.5em;
	padding: 1em;
}
.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.5em;
	position: relative;
}
.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 #000000;
	border-radius: 2px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: opacity .2s;
	font-weight: 400;
}
.smf-form .smf-item label input[type="checkbox"]+span:after{	
	border: none;
	width: 0.875rem;
	height: 0.5rem;
	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: 20px;
	height: 20px;
}
.smf-form .smf-item label input[type="radio"]+span:after {
	border-radius: 50%;
	width: 14px;
	height: 14px;
	border: none;
	background: #cc000b;
	top: 0;
	left: 3px;
	opacity: 0;
}
.smf-form .smf-item label input[type="checkbox"]:checked+span:before {
	border-color: #cc000b;
	background: #cc000b;
}
.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 {

}
.smf-form .smf-checkbox-control__control{
	width: 1.5em;
	height: 1.5em;
	margin-top: 0.2em;
}
.smf-form .smf-checkbox-control__control:checked{
	background-color: #cc000b;
	border-color: #cc000b;
}
.smf-form .smf-checkbox-control:after{
	width: 1.25rem;
	height: 1.25rem;
}
.smf-action {
	display: flex;
	justify-content: center;
	margin-top: 4em;
	gap: 0 1em;
}
.smf-action .smf-button-control__control {
	display:flex;
	width: fit-content;
	max-width: 300px;
	min-width: 242px;
	border: solid 2px #cc000b;
	color: #FFF;
	background: #cc000b !important;
	font-size: 1rem;
	font-weight: 600;
	padding: 10px 2em;
	min-height: 58px;
	align-items:center;
	justify-content:center;
	text-decoration:none;
	border-radius: 3em;
	margin: 1em auto 2em;
	transition: transform 0.3s;
	text-decoration:none;
	border:solid 1px var(--keycolor);
	position:relative;
	z-index:1;
	font-weight:600;
	margin-top:2em;
	transition:var(--hover);
	cursor:pointer;
}
.smf-action .smf-button-control__control:after {
	content: "";
	display: block;
	position: absolute;
	z-index: 10;
	font-size: 1rem;
	display:flex;
	width:12px;
	aspect-ratio:1 / 1;
	border-top:solid 2px #fff;
	border-right:solid 2px #fff;
	transform:rotate(45deg);
	position:absolute;
	inset:auto;
	right:1.5em;
	align-items:center;
	justify-content:center;
	transition:var(--hover);
}
.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 a{
	color: #cc000b;
	text-decoration:underline;
}
@media (any-hover: hover) {
	.smf-action .smf-button-control__control:hover {
		background: #ffffff !important;
		color: #cc000b !important;
	}
	.smf-action .smf-button-control__control:hover:after{
		border-top:solid 2px #cc000b;
		border-right:solid 2px #cc000b;
	}
}
@media (any-hover: hover) {
	.smf-form .smf-complete-content .common_btn a:hover{
		background: #ffffff !important;
		color: #0368be !important;
		opacity:1;
	}
	.smf-form a:hover{
		color: #222;
		text-decoration-color:transparent;
	}
}
.smf-form--letter .smf-text-control__control,
.smf-form .smf-textarea-control__control:active,.smf-form .smf-textarea-control__control:focus,.smf-form .smf-textarea-control__control:focus-within,.smf-form .smf-textarea-control__control[aria-selected=true] {
	font-weight: 500;
}
.smf-form .form-agree-area{
	font-size: 1.125rem;
	font-weight: 600;
	padding: 2em 0 0;
	text-align: center;
}
.smf-form .form-agree-area a{
	font-size: 1rem;
}
.smf-action .smf-button-control__control[data-action="back"] {
	color: #cc000b;
	background: #ffffff !important;
}
.smf-action .smf-button-control__control[data-action="back"]:after {
	content: "";
	display: block;
	position: absolute;
	z-index: 10;
	font-size: 1rem;
	display:flex;
	width:12px;
	aspect-ratio:1 / 1;
	border-top:solid 2px #cc000b;
	border-right:solid 2px #cc000b;
	transform:rotate(-135deg);
	position:absolute;
	inset:auto;
	left:1.5em;
	align-items:center;
	justify-content:center;
	transition:var(--hover);
}
@media (any-hover: hover) {
	.smf-action .smf-button-control__control[data-action="back"]:hover {
		color: #ffffff!important;
		background: #cc000b !important;
	}
	.smf-action .smf-button-control__control[data-action="back"]:hover:after {
		border-top:solid 2px #ffffff;
		border-right:solid 2px #ffffff;
	}
}
@media screen and (max-width:767px) {
	.smf-form .form-agree-area .text_lead,
	.smf-form .form-promotion-area .text_lead{
		text-align: left;
	}
	.smf-action .smf-button-control+.smf-button-control{
		margin-left: 0;
	}
}
@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 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;
	}
	.smf-action {
		flex-direction: column-reverse;
		justify-content: center;
		margin-top: 3em;
		gap: 1em 1em;
	}
	.smf-action .smf-button-control__control {
		margin-bottom: 0em;
	}
	.smf-action .smf-button-control+.smf-button-control {
	    margin-left: 0;
	}
	.smf-form .sp_t-left{
		text-align: left;
	}
}