@charset "utf-8";
/*==========================================================================

   bread

==========================================================================*/
.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 {
    margin-bottom: 64px;
    padding: 0 32px;
    font-size: 14px;
}
.m-bread-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.m-bread-item + .m-bread-item::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 8px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.m-bread-item a {
    color: #222;
}

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

   table

==========================================================================*/
.m-table01 {
	width: 100%;
	margin-bottom: -1px;
	border-collapse: collapse;
	border-bottom: 1px solid #ebebeb;
	background: #fff;
}
.m-table01 caption {
	padding: 20px;
	text-align: center;
	border-top: 1px solid #aeaeae;
	border-right: 1px solid #aeaeae;
	border-left: 1px solid #aeaeae;
	background: #e5e4e4;
}
.m-table01 th {
	padding: 17px;
	vertical-align: middle;
	border-top: 1px solid #ebebeb;
}
.m-table01 td {
	padding: 17px;
	vertical-align: middle;
	border-top: 1px solid #ebebeb;
}
.m-table01 thead th {
	text-align: center;
	background-color: #e5e4e4;
}
.m-table01 tbody th {
	text-align: left;
	font-weight: normal;
	background-color: #f9f9f9;
}


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

   btn

==========================================================================*/
/* ボタンモジュール01 */
.m-btn01 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #333;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .05em;
    transition: .3s ease;
    width: auto; /* 幅は親やコンテンツに応じて可変 */
}
.m-btn01__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.m-btn01:hover {
    color: #333;
    background: #fff;
}

/* サイズバリエーション */
.m-btn01--small {
    padding: 8px 12px;
    font-size: 12px;
}
.m-btn01--large {
    padding: 16px 24px;
    font-size: 16px;
}
/* 幅100% */
.m-btn01--full {
    width: 100%;
}





.m-text-link01 {
	position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--key-color);
    text-decoration: none;
}
.m-text-link01:hover {
    color: var(--key-color);
}
.m-text-link01:hover:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    background: var(--key-color);
}
.m-text-link01-icon {
    width: 20px;
    height: 20px;
}


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

   accordion

==========================================================================*/
.m-accordion-target {
	display: none;
}


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

   pagetop

==========================================================================*/
.m-pagetop {
	display: block;
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, .75);
	transition: var(--transition-duration);
    z-index: 1000;
	display: none;
}
.m-pagetop:hover {
    background: #666;
    color: #fff;
}



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

   form

==========================================================================*/
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    position: relative;
    top: -5px;
    border: 1px solid #ccc;
    padding: 10px 9px;
    outline: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 5px;
    color: #777;
    margin: 0;
    box-sizing: border-box;
    width: 410px;
    max-width: 100%;
    display: block;
    background: #fff;
}
input[type="submit"] {
    display: block;
    margin: 0 auto;
    padding: 15px 100px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid #333;
    background: #333;
    transition: color var(--transition-duration) border-color var(--transition-duration) background-color var(--transition-duration);
}
input[type="submit"]:hover {
    color: #333;
    font-size: 15px;
    background: #fff;
}
:placeholder-shown {
    line-height: 1.8;
}


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

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