@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@100..700&display=swap');

.bg-navi {
    background-color: #FFFBF0;
}

body {
    background-color: #FFFBF0;
    font-family: "M PLUS 1 Code", monospace;
}

a {
    color: #FF5E00;
}

img {
    max-width: 100%;
    height: auto;
}

.co-navbar-sns {
    background-color: #;
    border-radius: 6px;
    flex-direction: row;
    padding-inline: 1rem;
    justify-content: space-around;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    border: 2px solid #FFAC7C;
    color: #FFAC7C;
    border-radius: 0.25rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 172, 124, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    flex-grow: 0;
}

.nav-link {
    color: #FF5E00;
}

.nav-link:hover {
    color: #ff9f63;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #ff9f63;
}

.dropdown-item {
    color: #FF5E00;
}

.dropdown-item:hover {
    color: #ff9f63;
}

#co-slider {
    height: 65lvh;
}

.vegas-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.co-slider-text {
    background-color: rgb(255, 255, 255, .75);
    box-shadow: 0 1em 2em -1em rgb(0, 0, 0, 0.5);
    padding: 1rem;
    font-family: "M PLUS 1 Code", monospace;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.co-slider-img {
    width: min(65vw, 350px);
}

/**/
.co-sticky-footer {
    display: flex;
    font-size: 13px;
    opacity: 0;
}

.co-sticky-footer.is-visible {
    opacity: 1;
    transition: opacity .5s ease-in-out;
}

@media screen and (width >= 500px) {
    .co-sticky-footer {
        display: none;
    }
}

.co-sticky-footer-item {
    flex: 0 0 33.3%;
    font-size: clamp(0.813rem, 4vw, 1.125rem);;
}

.co-nav-link {
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
}

.co-btn-bg-tel {
    background-color: #A3CADD;
}

.co-btn-bg-kengaku {
    background-color: #BE2661;
}

.co-line {
    background-color: #06C755;
}

.co-kengaku {
    background-color: #F1A5FF;
}

.co-icon-circle-bg {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 5px;
}

.co-icon-tel {
    background-color: #41A1BE;
}

.co-icon-kengaku {
    background-color: #BE2661;
}

.lead {
	color: #FF5E00;
	font-weight: 700;
	text-align: center;
}
.address{
	font-size: 0.85rem;
	line-height: 0.9rem;
}
:root {
  --flowchart-size: 30px;/* 番号のサイズ 変更可 */
  --flowchart-border: 5px;/* 縦線太さ 変更可 */
}
.flowchart {
  list-style: none !important;
  counter-reset: flownum;/* リストアイテムの名称(任意) */
  margin: 1em 0;/* フローチャートと前後要素との距離(任意) */
  padding: 0 !important;
}
.flowchart li {
  position: relative;
  padding: 0 0 2em calc(var(--flowchart-size) + 6px);/* 6px がタイトルとの距離であり余白 */
}

/* 番号部位デザイン */
.flowchart li::before {
  content: counter(flownum);
  counter-increment: flownum;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -5px;/* 通常は 0, 横に並ぶタイトルとのバランスを見て調整 */
  left: 0;
  z-index: 2;
  width: var(--flowchart-size);
  height: var(--flowchart-size);
  border-radius: 50%;/* 番号円形, 四角形で良ければこの一行削除 */
  background: rgb(44,182,150);/* 番号背景 */
  color: white;/* 番号文字色 */
}

/* 縦線部位デザイン */
.flowchart li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(var(--flowchart-size) / 2 - calc(var(--flowchart-border) / 2));
  z-index: 1;
  width: var(--flowchart-border);
  height: 100%;
  background: rgb(200,200,200);/* 線の色 */
}

/* 工程タイトル */
.flowchart-title {
  margin: 0 0 .6em;
  font-weight: bold;
  font-size: 1.04em;
  line-height: 1.4;/* 大きめの文字は 1.2 〜 1.4 程度で調整すると良い */
}

/* 最終工程の縦線が必要な方ここから削除 */
.flowchart li:last-of-type::after {
  content: none;
}
/* 最終工程の縦線が必要な方ここまで削除 */

/* p要素を利用した場合の調整 */
.flowchart li p {
  margin: 1em 0 !important;
}
.flowchart li p:last-of-type {
  margin-bottom: 0 !important;
}
.midashi{
	color: #FF5E00;
	font-size: 1.6rem;
	border-bottom-style: dotted;
	border-bottom-color: #FF5E00;
	padding: 10px;
}
.blue{
	color: #00ADFF;    
}
.red{
	color: #FF0004;    
}
.head-txt {/*親div*/
  position: relative;/*相対配置*/
  }

.head-txt p {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin: 0;
	padding: 0;
	font-weight: 700;
	text-shadow: 2px 2px 5px #000000;
	font-size: 1.6rem;
  }

.head-txt img {
  width: 100%;
  }
table {
  border-collapse: separate;
  border-spacing: 3px;
  width: 100%;
}
.staff tr {
  border-bottom: 1px solid #C1EAC6;
}
.staff th {
  background: #C1EAC6;
  border: solid 1px #C1EAC6;
  padding: 10px;
  width: 25%;
}
.staff td {
	border-bottom: 2px solid #C1EAC6;
	padding: 10px;
	width: 25%;
}
.btn-w {
  background-color: #FF5E00;
  border-color: #FF5E00;
  border-radius: 40px;
  -webkit-box-shadow: 2px 2px 3px hsla(0,0%,48%,0.61);
  box-shadow: 2px 2px 3px hsla(0,0%,48%,0.61);
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  width: 95%;
}
.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.btn {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  padding: 0.375rem 0.75rem;
  font-size: 1.2rem;
  line-height: 1.5;
}
.qa-6 {
    max-width: 100%;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 0em;
    font-weight: 600;
    font-size: 2em;
}

.qa-6 summary::before {
    color: #41A1BE;
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #D40000;
    line-height: 1.2;
    content: "A";
}
.bg-white{
	background-color: #FFFFFF;    
}
.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.ms-bottom-button {
  flex: 1 1 50%;
}
.ms-bottom-button__link {
  display: block;
  background-color: #A0E772;
  padding-top: 6px;
  padding-bottom: 6px;
  text-align: center;
  font-size: clamp(0.8rem, 1vw + 1rem, 2.0rem);
  color: #fff;
}
.news{
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border: thin solid #9EFF44;
}
.news h2{
	color: #9EFF44;    
}
.waku{
	margin-top: 2em;
	margin-right: 0.5em;
	margin-bottom: 2em;
	margin-left: 0.5em;
	border: 5px dotted #ACFF1C;
	padding-top: 10px;
}
.text-right{
	text-align: right;    
}

.table_design08 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  text-align: left;
}
.table_design08 th, .table_design08 td {
  border: 2px solid #d2e8f1;
  padding: 1em;
}
.table_design08 td {
  width: 80%;
}
.table_design08 thead th {
  background-color: #4d9bc1;
  color: #fff;
  border: 2px solid #4d9bc1;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.table_design08 thead th:last-of-type {
  border-right: 2px solid #4d9bc1;
}
.table_design08 tbody th {
  color: #4d9bc1;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 787px) {
  .table_design08 {
    text-align: left;
  }
  .table_design08 thead {
    display:none;
  }
.table_design08 td {
  width: 100%;
}

  .table_design08 th, .table_design08 td {
    display: block;
    border: 0;
    border-bottom: 2px solid #e6f1f6;
  }
  .table_design08 tbody th{
    background: #4d9bc1;
    color:#fff;
  }
  .table_design08 td::before{
    content: attr(data-label);
    color: #4d9bc1;
    font-weight: bold;
    width: 20%;
    min-width: 4em;
  }
}
.small2{
    font-size: 70%;
}
.word {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%; /* table幅を100%に指定 */
    background: #fff;
    border: none;
}
.word th,
.word td {
    display: block; /* セルをブロック要素に指定 */
    width: 100%; /* セルを親要素いっぱいの幅に指定 */
    border: none;
    font-size: 14px;   
    padding: 10px;
    vertical-align: top;
    text-align: left;
    box-sizing: border-box;
}
.word th {
    font-weight: 700;
    color: #3A4380;
    background: #BBE7ED; /* thの背景色 */
}

@media screen and (min-width: 768px) {
    .word th,
    .word td {
        display: table-cell; /* デフォルト値に指定 */
        border-bottom: 1px solid #ccc;
        color: #000;
        background: #fff;
    }
    .word th {
        color: #3A4380;
        background: #BBE7ED; /* thの背景色 */
    }
    .word tr th:first-child {
        width: 200px; /* thの固定幅 */
    }
}