:root {
    --keyColor: #014290;
}

.ttl {
    border-bottom: 3px solid #cce4ff;
    margin: 1.5em 0 1.5em 0;
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
}

.ttl:before {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px var(--keyColor);
  bottom: -3px;
  width: 30%;
}

.contactInner {
    font-size: 16px;
    font-size: 1.6rem;
}

.list_attention {
    margin-left: 1.2em;
}

.list_attention li + li {
    margin-top: .5em;
}


.list_arrow > li {
	position: relative;
	padding-left: 1.2em;
}

.list_arrow > li:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: .58em;
    width: .35em;
    height: .35em;
	border-top: 2px solid var(--keyColor);
    border-right: 2px solid var(--keyColor);
    opacity: .7;
    transform: rotate(45deg);
}

.box01 {
    margin: 2.5em 0 3.5em;
    padding: clamp(1.5em, 3%, 2.5em);
    background: #fff4f4;
}

.box01 .ttl_m {
    margin: 0 0 .5em;
    color: var(--keyColor);
    font-weight: bold;
    transition: margin .2s ease-out;
    color: #ee0000;
}

.contactMenuList {
    margin: 1.25em auto 2em;
    gap: 1.5em;
}

.contactMenuList > * {
    width: calc(calc(100% - 1.5em) / 2) !important;
    border-radius: .35em;
    border: 1px solid var(--keyColor);
    overflow: hidden;
}

.contactMenuList > li > a {
    display: grid;
    place-items: center;
    padding: 1em 2.5em 1em 4em;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 5em;
    color: var(--keyColor) !important;
    font-weight: bold;
    text-decoration: none !important;
    transition: background-color .2s ease-out;
    text-align: center;
}

.contactMenuList > li > a img {
    position: absolute;
    left: 1.5em;
    top: 50%;
    width: 2em;
    transform: translateY(-50%);
}

.contactMenuList > li > a:before {
    content: "";
    display: block;
    position: absolute;
    right: 1.5em;
    top: 50%;
    width: .5em;
    height: .5em;
    border-top: 2px solid var(--keyColor);
    border-right: 2px solid var(--keyColor);
    transform: rotate(45deg) translateY(-50%);
    opacity: .3;
    transition: margin .2s ease-out;
}

.contactMenuList > li > a:hover {
    background: #f4f9ff;
}

.contactMenuList > li > a:hover:before {
    margin-right: -3px;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 200,
  'GRAD' 0,
  'opsz' 24
}

.agreement {
    margin: min(5%, 3em) auto 0;
    text-align: center;
}

.btn {
    position: relative;
    margin: 1em auto 0 !important;
    padding: .7em;
    color: #fff !important;
    border-radius: .3em;
    text-decoration: none !important;
    transition: opacity .3s ease-out;
}

.btn:after {
    display: none;
}

.btn:before {
    content: "";
    display: block;
    position: absolute;
    right: 1.5em;
    top: 50%;
    width: .35em;
    height: .35em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    opacity: .9;
    transition: margin .2s ease-out;
}

.btn:hover {
    opacity: .7;
}

.btn:hover:before {
    margin-right: -3px;
}

.btn.disabled {
    pointer-events: none;
    opacity: .5;
}



@media print, screen and (max-width: 767px) {
    .contactInner {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .contactMenuList > li {
        margin-bottom: 1em;
        width: auto !important;
    }
}