html {
    height: 100%;
    font-size: clamp(12px, 1vw, 20px);
    /* 最�?12px、最大20px�?5vwの�?囲で可�? */
}

.container {
    margin: 0 15% 0 15%;
}

h1 {
    text-align: center;
    border-radius: 5px;
    background-color: #ED7979;
    color: white;
    padding: 5%;
    margin-bottom: 1%;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1%;
    margin: 0;
    padding: 0;
    font-size: 80%;
    background-repeat: no-repeat;
    list-style: none;
}

.breadcrumbs a {
    color: #666;
}

.breadcrumbs li::before {
    content: "＞";
    /* �?リストアイ�?�?の前に「＞」を追�? */
    color: #666
}

.breadcrumbs li:first-child::before {
    content: "";
    /* 最初�?��?目には「＞」を追�?しな�? */
}

.jump_link a {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #ED7979;
    color: #ED7979;
    text-decoration: none;
    font-weight: bold;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jump_link a:hover {
    background-color: #ED7979;
    color: #fff;
}

.jump_link a .arrow {
    margin-left: 8px;
}

h2 {
    margin: 5% 0 2% 0;
    border-top: 6px solid #ED7979;
    color: #ED7979;
}

.flow{
    margin: 0;
    width: 100%;
}

ol {
    counter-reset: number;
    /*数字をリセ�?�?*/
    list-style-type: none !important;
    /*数字を一旦消す*/
    padding: 0;
}

ol li {
    position: relative;
    padding: 0.5em;
    line-height: 1.5em;
    background: #f2fff1;
    border-left: solid 35px #ED7979;
    margin-bottom: 5px;
}

ol li:before {
    /* 以下数字をつける */
    position: absolute;
    counter-increment: number;
    content: counter(number);
    /*数字�?��?ザイン変え�?*/
    display: inline-block;
    color: white;
    font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -35px;
    width: 35px;
    height: 1em;
    line-height: 1;
    text-align: center;
}

.document,
.appendix {
    padding: 0;
    position: relative;
}

.document li,
.appendix li {
    border-left: solid 6px #ED7979;
    /*左側の�?*/
    background: #f2fff1;
    /*背景色*/
    margin-bottom: 3px;
    /*下�?�バ�?�との余白*/
    line-height: 1.5;
    padding: 0.5em;
    list-style-type: none !important;
    /*ポチ消す*/
}


.text-map {
    display: flex;
    margin-bottom: 5%;
}

.text-map p {
    margin: 2%;
}

.text-map div {
    flex: 1;
}

iframe {
    width: 100%;
}

.other li{
    padding: 0.5%;
}

.contact {
    display: flex;
    margin-bottom: 5%;
}

.information {
    flex: 2;
}

.image {
    flex: 1;
}

img {
    width: 60%;
}


@media (max-width: 950px) {
    .text-map {
        display: block;
    }

    .contact {
        display: block;
    }

    .image {
        display: none;
    }
}

footer {
    margin: 0;
    padding: 0;
}

.footer_nav {
    background-color: rgb(248, 247, 247);
    display: flex;
    gap: 10%;
    justify-content: center;
    margin: 0;
    padding: 2%;
}

.footer_nav li {
    list-style: none;
    color: #555;
}

.footer_nav_inn {
    margin: 5% 0;
    padding: 0;
    font-size: 100%;
    vertical-align: bottom;
    box-sizing: border-box;
}

.service a,
.footer_nav a ,.appendix a{
    color: #ED7979;
}

.footer_bottom {
    margin: 0;
    padding: 0;
    background: #ED7979;
}

.footer_bottom p {
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    color: #fff;
    font-weight: 200;
}

.footer_bottom p a {
    color: #fff;
}
.list-wrap {
    display: flex;
    flex-wrap: wrap; /* �܂�Ԃ������� */
    gap: 20px; /* �v�f�Ԃ̗]�� */
	width: 100%;
    padding: 0;
    list-style: none;
}

.newcard-image {
  width: 100%;
  height: auto;
  max-width: 500px; /* 任意。大きすぎないよう制限したい場合 */
  display: block;
  margin-left: 20%;
}

.newcard-link {
    display: inline-block;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: background-color .25s;
}

.grid-item {
	width: calc(25% - 20px) ; /* 1�s��3���ׂ邽�߂̕��ݒ�B�Ԋu���l�� */
	box-sizing: border-box;  /* �p�f�B���O��}�[�W�����܂߂Čv�Z */
	list-style: none;
    margin-bottom: 5%; /* ← これを追加（お好みで調整） */
}

  @media (max-width: 768px) {
	.grid-item {
	  width: 100%;  /* ��ʕ�������ɋ����Ȃ����ꍇ��1��� */
	}
  }

.card {
    padding: 0 5%;
}
.card-link {
    display: block;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: background-color .25s;
}
.card-link:hover {
    background-color: #eee;
}
.card-label {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #999;
    color: #fff;
    display: block;
    padding: 5px 10px;
    font-size: 12px;
}
.card-image {
	width: 100%;
	height: 70%;
	list-style: none;
}
.card-info {
    padding: 5px 10px;
}
.card-headline {
    margin: 0;
}
.card-description {
    margin: 0;
}