@charset "utf-8";


.m-section01 {
    border: 1px solid #191919;
    border-radius: var(--section-border-radius);
    background-color: #fff;
}

.m-section01.section01-has-bgcolor01 {
    background-color: var(--bg-color);
}
.m-section01 + .m-section01 {
    margin-top: 25px;
}
.m-section01-header {
    /*border-bottom: 1px solid var(--text-color);*/
    border-radius: 40px 40px 0 0;
    overflow: hidden;
}

.m-section01-body.body-has-col {
    display: flex;
}
.m-section01-body-col.col-aside {
    flex: 0 0 268px;
    padding: 50px 0 50px 50px;
    border-right: 1px solid var(--text-color);
}
.m-section01-body-col.col-main {
    flex: 1;
    min-width: 0;
}

.m-section01-footer {
    position: relative;
}
.m-section01-footer::before {
    content: "";
    display: block;
}
.m-section01-footer-label {
    padding: 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-box: var(--text-box-both-trim);
    border-radius: 0 0 40px 40px;
    background: #fff;
}
.m-page-aside-nav-item + .m-page-aside-nav-item {
    margin-top: 20px;
}
.m-page-aside-nav-item a {
    display: block;
    padding: .125em 0;
    text-box: var(--text-box-both-trim);
}
.m-page-aside-nav-item a.active {
    color: var(--main-color);
    text-decoration: underline;
}

@media screen and (max-width: 1200px) {
    .m-section01-body-col.col-aside {
        flex: 0 0 218px;
    }
}
@media screen and (max-width: 950px) {
    .m-section01-body-col.col-aside {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .m-section01-footer-label {
        padding: 23px 0;
        font-size: 12px;
    }
}










.m-page-aside-nav {
    position: sticky;
    top: 100px;
}
.m-page-section-content {
    padding: 50px 50px 120px;
}
.m-page-section-content + .m-page-section-content {
    border-top: 1px solid var(--text-color);
}
.m-page-section-content-header {
    display: flex;
    justify-content: space-between;
}
.m-page-section-content-header.header--btm80 {
    margin-bottom: 80px;
}
.m-page-section-content-header.header--btm100 {
    margin-bottom: 100px;
}
.m-page-section-content-header.header--btm120 {
    margin-bottom: 120px;
}
.m-page-section-content-header-ja {
    padding: .2em 0;
    font-size: 34px;
    font-weight: 700;
    text-box: var(--text-box-both-trim);
}
.m-page-section-content-header-en {
    padding: .2em 0;
    font-size: 14px;
    font-weight: 600;
    text-box: var(--text-box-both-trim);
}
.m-page-section-content-body.body--side-space {
    padding: 0 45px;
}

@media screen and (max-width: 1100px) {
    .m-page-section-content-body.body--side-space {
        padding: 0;
    }
}

@media screen and (max-width: 768px) {
    .m-page-section-content {
        padding: 25px 25px 60px;
    }
    .m-page-section-content-header-ja {
        font-size: 24px;
    }
    .m-page-section-content-header-en {
        font-size: 11px;
    }

    .m-page-section-content-header.header--btm100,
    .m-page-section-content-header.header--btm120 {
        margin-bottom: 60px;
    }
    .m-page-section-content-body.body--side-space {
        padding: 0;
    }
}




.m-header01 {
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
    gap: 50px;
    padding: 40px 50px;
    overflow: hidden;
}
.m-header01-aside.aside-sp {
    display: none;
}
.m-header01-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px 22px;
    line-height: 1;
}
.m-header01-title-en {
    padding: .02em 0;
    font-size: 60px;
    font-weight: 600;
    text-box: var(--text-box-both-trim);
}
.m-header01.header01--single .m-header01-title-en {
    font-size: 30px;
}
.m-header01-title-ja {
    font-size: 14px;
    font-weight: 700;
}

.m-header02 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--main-color);
}





.m-btn01 {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--text-color);
    border-radius: 9999px;
    background-color: #fff;
    color: #000;
    font-weight: 700;
    line-height: 1;
    letter-spacing: var(--letter-spacing-min);
    text-decoration: none;
    cursor: pointer;
    box-shadow: 6px 6px 0 #000;
    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

/* 押下表現（任意） */
.m-btn01:hover {
    transform: translate(6px, 6px);
    box-shadow: 0 0 0 #000;
}

.m-header01-btn {
    position: relative;
    top: -3.5px;
    width: 186px;
    height: 50px;
}

.m-btn01.btn01--medium {
    width: 190px;
    height: 50px;
}


@media screen and (max-width: 768px) {
    .m-header01 {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    .m-header01.header01--page,
    .m-header01.header01--single {
        flex-direction: column-reverse;
        gap: 15px;
        padding: 20px 25px 22px;
    }
    .m-header01-title {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .m-header01.header01--single .m-header01-title {
        flex-direction: row;
    }
    .m-header01-title-en {
        font-size: 45px;
    }
    .m-header01.header01--single .m-header01-title-en {
        font-size: 25px;
    }
    .m-header01-title-ja {
        font-size: 12px;
    }
    .m-header01-aside {
        width: 100%;
    }
    .m-header01-aside.aside--pc {
        display: none;
    }
    .m-header01-aside.aside-sp {
        display: block;
        margin-top: 40px;
        padding: 0 40px 25px;
    }
    .m-header01-aside .poppin-rtl {
        width: 100%;
    }
    .m-header01-btn {
        width: 100%;
        height: 38px;
    }
    
    .m-header02 {
        font-size: 15px;
    }
    .m-btn01.btn01--medium {
        width: 145px;
        height: 38px;
    }
}





/*==========================================================================

   tile

==========================================================================*/
.m-tile-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.m-tile-item {
    padding: 12px 20px 40px;
    border: 1px solid var(--text-color);
    border-radius: 20px;
}
.m-tile-item.item--10col-pc { width: calc((100% - 20px * 2) / 3); }
.m-tile-item.item--15col-pc { width: calc(((100% - 20px * 2) / 3) * 1.5 + 20px * 0.5); }
.m-tile-item.item--20col-pc { width: calc(((100% - 20px * 2) / 3) * 2 + 20px); }
.m-tile-item.item--30col-pc { width: 100%; }

.m-tile-item-header {
    display: flex;
    align-content: space-between;
    margin-bottom: 24px;
}
.m-tile-item-header-label {
    flex: 1;
}
.m-tile-item-header-icon {
    width: 40px;
}
.m-tile-item-body-value {
    text-align: center;
    font-family: var(--font-en);
    line-height: 1;
}
.m-tile-item-body-value.value--comparison {
    position: relative;
    display: flex;
    gap: 30px;
}
.m-tile-item-body-value.value--comparison::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 131px;
    background: url(../img/hr01.png) no-repeat left top / contain;
    transform: translate(-50%, -50%);
}
.m-tile-item-body-value-comparison-item {
    flex: 1;
}
.m-tile-item-body-unit.unit--en {
    font-size: 16px;
    font-weight: 600;
}
.m-tile-item-body-unit.unit--ja {
    font-size: 16px;
    font-weight: 700;
}
.m-tile-item-header-label-unit {
    margin-left: .25em;
    font-size: 12px;
}
.m-tile-item-text {
    padding: 0 20px;
}
.m-tile-item-text em {
    font-size: 12px;
}
.m-tile-item-notes {
    margin-top: 10px;
    padding: 0 20px;
    font-size: 12px;
}
.m-tile-item-footer {
    margin-top: 25px;
    font-size: 12px;
    text-align: right;
}
.m-tile-item-btn {
    margin-right: 6px;
}

@media screen and (max-width: 768px) {
    .m-tile-content {
        gap: 10px;
    }
    .m-tile-item {
        padding: 10px 10px 50px;
    }
    .m-tile-item-header-label-unit {
        font-size: 9px;
    }
    .m-tile-item-header-icon {
        width: 30px;
    }
    .m-tile-item.item--10col-pc { width: auto; }
    .m-tile-item.item--15col-pc { width: auto; }
    .m-tile-item.item--20col-pc { width: auto; }
    .m-tile-item.item--30col-pc { width: auto; }

    .m-tile-item.item--10col-sp { width: calc((100% - 10px) / 2); }
    .m-tile-item.item--20col-sp { width: 100%; }

    .p-recruit-data-tile-item-count {
        font-size: 60px;
    }
    .m-tile-item-body-unit.unit--ja {
        font-size: 13px;
    }
    .m-tile-item-body-unit.unit--en {
        font-size: 15px;
    }
    .m-tile-item-body-value.value--comparison::after {
        width: 30px;
        height: 97px;
    }
}


/*==========================================================================

   shadow-box

==========================================================================*/
.m-shadow-box {
    position: relative;
}
.m-shadow-box::before {
    content: '';
    position: absolute;
    top: 6px;
    right: -6px;
    bottom: -6px;
    left: 6px;
    background: #000;
    z-index: 0;
    transition: opacity .3s ease, background-color .3s ease;
}
.m-shadow-box:hover::before {
    background: var(--main-color);
}
.m-shadow-box-inner {
    display: block;
    position: relative;
    transition: transform .3s ease;
    z-index: 1;
}
.m-shadow-box:hover .m-shadow-box-inner {
    transform: rotate(-5deg);
}
.m-shadow-box.box-radius::before,
.m-shadow-box.box-radius .m-shadow-box-inner {
    border-radius: 20px;
}







/*==========================================================================

   ticker

==========================================================================*/
.m-ticker01 {
    white-space:nowrap;
    width: 100%;

    display: flex;
    align-items: center;
    overflow: hidden;
}
.m-ticker01 ul {
    display: flex;
    align-items: center;
    animation: ticker 20s linear infinite;
}
.m-ticker01 li {
    margin-right: 20px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}



/*==========================================================================

   content

==========================================================================*/
.m-content h1 {
    margin-bottom: .25em;
    font-size: 24px;
}
.m-content h2 {
    margin-bottom: .25em;
    font-size: 20px;
}
.m-content p,
.m-content ul {
    margin-bottom: 1.25em;
}
.m-content ul {
    list-style: disc;
}
.m-content ol {
    list-style: decimal;
}
.m-content ul,
.m-content ol {
    padding-left: 1.5em;
}


/*==========================================================================

   bread

==========================================================================*/
.m-bread {
    display: flex;
    gap: 8px;
    line-height: 1;
}
.m-bread-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}
.m-bread-item + .m-bread-item::before {
    content: "\e906";
    font-family: 'tada-icon' !important;
    font-size: 10px;
    font-weight: 300;
    line-height: 1;
    margin-right: 5px;
}
.m-bread-item-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.m-bread-item:last-child {
    color: var(--main-color);
}
.m-bread-item:last-child::before {
  color: var(--text-color);
}


/*==========================================================================

   table

==========================================================================*/
.m-table01 {
    table-layout: fixed;
    width: 100%;
}
.m-table01 th,
.m-table01 td{
    border-right: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
}
.m-table01 th {
    background-color: #f5f5f5;
}
.m-table01 tr > *:last-child{
    border-right: 0;
}
.m-table01 tbody tr:last-child > *,
.m-table01 tfoot tr:last-child > *{
    border-bottom: 0;
}


/*==========================================================================

   pager
 
==========================================================================*/
.m-pager01 {
    display: flex;
    justify-content: center;
    font-size: 16px;
}
.m-pager01__current {
    color: #fff;
    background: #0072ce;
}
.m-pager01__current,
.m-pager01__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    border: 1px solid #000;
}
.m-pager01__dots {
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: 40px;
    height: 40px;
}
.m-pager01__next,
.m-pager01__prev {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}
.m-pager01__next {
    margin-left: 18px;
}
.m-pager01__prev {
    margin-right: 18px;
}
.m-pager01__prev span,
.m-pager01__next span {
    font-size: 26px;
}

.m-pager01__link + .m-pager01__link,
.m-pager01__link + .m-pager01__current,
.m-pager01__current + .m-pager01__link {
    margin-left: -1px;
}


.m-pager02 {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.m-pager02-prev,
.m-pager02-next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 15px;
    border: 1px solid #000;
    border-radius: 9999px;
    box-shadow: 6px 6px 0 #000;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .m-pager02 {
        gap: 21px;
    }
    .m-pager02-prev,
    .m-pager02-next {
        width: 38px;
        height: 38px;
        font-size: 11px;
    }
}



/*==========================================================================

   modal

==========================================================================*/
/* 開くボタン */
.open-modal {
    background-color: #f7d96b;
    color: #5b370d;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.open-modal:hover {
    background-color: #dfbb36;
}

/* モーダル背景 */
.m-modal01 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(79, 79, 79, 0.5);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* モーダル表示状態 */
.m-modal01.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

/* モーダルの中身 */
.m-modal01__content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    width: 80vw;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

/* アニメーション */
.m-modal01.active .m-modal01__content {
    animation: fadeInScale 0.4s ease forwards;
}
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 閉じるボタン */
.m-modal01__close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: #5b370d;
    line-height: 1;
}
.m-modal01__close:hover {
    transform: scale(1.2);
}

/* 前へ・次へボタン */
.m-modal01__prev,
.m-modal01__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    line-height: 1;
    transition: background 0.3s ease;
    color: #5b370d;
    border-radius: 5px;
}
.m-modal01__prev {
    left: -50px;
}
.m-modal01__next {
    right: -50px;
}
.m-modal01__prev:hover,
.m-modal01__next:hover {
    background: rgba(255, 255, 255, 1);
}
.m-modal01__prev.hidden,
.m-modal01__next.hidden {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    .m-modal01__prev {
        left: 10px;
    }
    .m-modal01__next {
        right: 10px;
    }
}



/*==========================================================================

   slider

==========================================================================*/
.m-simple-slider01 {
    position: relative;
}
.m-simple-slider01-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 10px;
    border: 1px solid var(
    --text-color);
    border-radius: 9999px;
    background-color: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: color .3s;
}
.m-simple-slider01-nav.nav--prev { left: -15px;}
.m-simple-slider01-nav.nav--next { right: -15px;}

.m-simple-slider01-nav:hover {
    color: var(--main-color);
}

/*==========================================================================

   scroll modal

==========================================================================*/
/* モーダル背景 */
.m-scroll-modal01 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.m-scroll-modal01.active {
	display: block;
	opacity: 1;
	pointer-events: auto;
}
.m-scroll-modal01__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
}
.m-scroll-modal01__container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
    /*cursor: pointer;*/
}
.m-scroll-modal01__close {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: none;
	font-size: 18px;
	cursor: pointer;
	z-index: 10001;
	transition: opacity .3s ease;
	line-height: 1;
	color: #333;
	border: 1px solid var(--text-color);
	border-radius: 50%;
    background: #fff;
}
.m-scroll-modal01__close:hover {
    opacity: .65;
}
.m-scroll-modal01__scroll {
	width: 100%;
	max-width: 720px;
	height: 100%;
	overflow-y: auto;
	scroll-behavior: smooth;
	
	/* スクロールバーを非表示 */
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE, Edge */
}
.m-scroll-modal01__scroll::-webkit-scrollbar {
	display: none; /* Chrome, Safari */
}

/* スクロールバーのスタイル */
.m-scroll-modal01__scroll::-webkit-scrollbar {
	width: 10px;
}
.m-scroll-modal01__scroll::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
}
.m-scroll-modal01__scroll::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 5px;
}
.m-scroll-modal01__scroll::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.5);
}

.m-scroll-modal01__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10002;
    transition: opacity 0.3s ease;
}
.m-scroll-modal01__nav:hover {
    color: var(--main-color);
}
.m-scroll-modal01__nav.nav--02 {
    width: 40px;
    height: 140px;
    font-size: 24px;
    border-radius: 9999px;
}
.m-scroll-modal01__nav:hover {
    opacity: 0.7;
}

.m-scroll-modal01__nav--prev {
    left: 20px;
}

.m-scroll-modal01__nav--next {
    right: 20px;
}

@media screen and (max-width: 768px) {
    .m-scroll-modal01__container {
        padding: 0 15px;
    }
    .m-scroll-modal01__close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
    .m-scroll-modal01__nav.nav--02 {
        width: 27px;
        height: 95px;
        font-size: 16px;
    }
    .m-scroll-modal01__nav.nav--02.m-scroll-modal01__nav--prev {
        left: 16px;
    }
    .m-scroll-modal01__nav.nav--02.m-scroll-modal01__nav--next {
        right: 16px;
    }
}


/*==========================================================================

   pagetop

==========================================================================*/
.js-pagetop {
    opacity: 0;
}
.m-pagetop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    font-size: 58px;
    border-radius: 9999px;
    background: #fff;
    z-index: 1000;
    cursor: pointer;
}
.m-pagetop:hover {
    opacity: .65;
}

@media screen and (max-width: 768px) {
    .m-pagetop {
        right: 5px;
        bottom: 40px;
        width: 40px;
        height: 40px;
        font-size: 40px;
    }
}


/*==========================================================================

   form

==========================================================================*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea,
select {
    position: relative;
    top: -5px;
    border: 1px solid #b4b4b4;
    padding: 12px 15px 9px;
    outline: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 5px;
    font-size: 18px;
    color: #777;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    display: block;
    background: #fff;
}
input::placeholder,
textarea::placeholder {
    color: #b4b4b4;
}

.m-form01 input[type="checkbox"] {
    border-color: #b4b4b4;
    accent-color: #b4b4b4;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    top: -.15em;
    vertical-align: middle;
}
.m-form01-check-list .wpcf7-list-item {
    margin-left: 0;
}
.m-form01-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.m-form01-row + .m-form01-row {
    margin-top: 57px;
}
.m-form01-col.col-header {
    padding: .2em 0;
    font-size: 18px;
    text-box: var(--text-box-both-trim);
}
.m-form01-group.group-name {
    display: flex;
    gap: 20px;
}
.m-form01-notes {
    margin-top: 100px;
    padding: .2em 0;
    font-size: 18px;
    text-box: var(--text-box-both-trim);
}
.m-form01-notes a {
    font-weight: 700;
    /* text-decoration: underline; */
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 100% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
}
.m-form01-notes-blank {
    margin-left: .5em;
    font-size: 6px;
}
.m-form01-footer {
    margin-top: 58px;
}
.m-form01-btn input[type=submit] {
    width: 326px;
    height: 60px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: var(--letter-spacing-min);
    color: #fff;
    border: 1px solid #b4b4b4;
    border-radius: 9999px;
    background: #b4b4b4;
    cursor: pointer;
    transition: .3s;
}
.m-form01-btn input[type=submit]:hover {
    color: #b4b4b4;
    background: #fff;
}
.m-form01 .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
}
.m-form01 .wpcf7-checkbox label {
    color: #b4b4b4;
  }
  .m-form01 input[type="checkbox"] {
    border-color: #b4b4b4;
    accent-color: #b4b4b4;
    opacity: .5;
}
.m-form01 .wpcf7-list-item-label {
    cursor: pointer;
}

/* チェックボックス選択時のスタイル */
.m-form01 input[type="checkbox"]:checked + .wpcf7-list-item-label {
    color: #191919;
}
.m-form01 input[type="checkbox"]:checked {
    border-color: #191919;
    accent-color: #191919;
    opacity: 1;
}
.i-must01::before {
    display: inline;
    position: relative;
    left: -.15em;
    content: "*";
    color: #f00;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select,
    .m-form01-col.col-header {
        font-size: 13px;
    }
    .m-form01-row {
        gap: 12px;
    }
    .m-form01-row + .m-form01-row {
        margin-top: 25px;
    }
    .m-form01-notes {
        margin-top: 45px;
        font-size: 13.5px;
    }
    .m-form01-footer {
        margin-top: 30px;
    }
    .m-form01-btn input[type=submit] {
        width: 100%;
        height: 45px;
        font-size: 15px;
    }
}




/*==========================================================================

	animation
	
==========================================================================*/
@keyframes action-blur {
  from {
    opacity: 0;
    filter: blur(15px);
  }
  to {
      opacity: 1;
    filter: blur(0px);
  }
}
