@charset "utf-8";
/* CSS Document */




/*--====== パンくずリスト ======--*/
/* パンくず全体 */
#pan_box {
  text-align: right; /* 全体を右寄せ */
	background: #01c0ef;
}

.topic-path {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  top: 15px;
  left: 2.2%;
  z-index:9999;
}

.topic-path li {
  font-size: 60%;
  letter-spacing: 2px;
  font-weight: bold;
}

.topic-path li a,
.topic-path li.visited {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid #ccc;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

/* 通常のリンクボタン */
.topic-path li a {
  color: #333;
}

.topic-path li a:hover {
  background: #ffe680;
  border-color: #f0c040;
}

/* visited風デザイン（固定） */
.topic-path li.visited {
  background: #ffe680;
  color: #555;
  border-color: #f0c040;
}

.topic-path li:not(:last-child)::after {
  content: '➔'; /* 矢印 */
  color: gold;
  margin: 0 0px 0px 8px;
  font-size: 15px;
}
/*--====== ここまでパンくずリスト ======--*/




.mainvisual{
	width: 100%;
	height: 472px;
	background:url(../img/seo/mainvisual.jpg) center top no-repeat;
	position: relative;
}
h1.main_title{
	z-index: 100;
	text-align: center;
	color: #FFF;
	font-size: 250%;
	letter-spacing: 5px;
	font-weight: 900;
	text-align: center;
	text-shadow: 2px 2px 2px #000;
	position: relative;
	top: 185px;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}
span.ss_title{
	font-size:77%;
}

main {
	background: #01c0ef;
    display: flex;
    justify-content: center; /* 横方向センター */
	padding-bottom: 180px;
}

section.container {
  width: 80%;
  height: auto;
  max-width: 1200px; /* PCで広がりすぎないように制限 */
  margin: 0 auto; /* 中央寄せ */
  background: #FFF;
  border-radius: 30px;
  position: relative;
  top: 50px;
  padding:20px 0 110px;
}

/* スマホやタブレットで自動調整 */
@media screen and (max-width: 768px) {
  .container {
    width: 95%;
  }
}
.introductory{
  width: 90%;
  font-size: 120%;
  letter-spacing: 1px;
  line-height: 1.8;
  text-align: center;
  margin: 20px auto 60px;
}
.introductory span,
.introductory strong{
  background: linear-gradient(transparent 65%, #FFF973 10%);
}
.service-list{
  width: 90%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
.service-list article{
  width: calc(92% / 2);
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-list h2{
  position: relative;
  padding: 0 10px;
  margin: 10px 0;
}
.service-list h2::before{
  content: '';
  width: 4px;
  height: 100%;
  background: #f73;
  position: absolute;
  top: 0;
  left: 0px;
}
.service-list h2 a{
  display: block;
  width: fit-content;
  color: #f73;
  position: relative;
  font-size: 120%;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.service-list h2 a::before{
  content: '➞';
  color: #01c0ef;
  font-weight: bold;
  position: absolute;
  left: 105%;
  transition: all 0.3s ease;
}
.service-list h2 a:hover:before{
  left: 110%;
}
.service-list p{
  letter-spacing: 1px;
  line-height: 1.8;
  padding: 0 10px;
  margin-bottom: 15px;
  font-size: 116%;
  text-align: justify;
}
.service-list p span{
  background: linear-gradient(transparent 65%, #FFF973 10%);
}
.service-list .result{
  display: block;
  width: fit-content;
  background: #01c0ef;
  color: #fff;
  line-height: 1.5;
  padding: 10px 10px 13px;
  margin: 20px auto;
  border-radius: 10px;
}
.service-list ul{
  width: fit-content;
  padding: 0 10px;
  margin-bottom: 10px;
  font-size: 116%;
  letter-spacing: 1px;
}
.service-list ul li{
  width: 100%;
  padding: 0 10px 5px 0;
  margin-bottom: 5px;
  border-bottom: 2px dashed #01c0ef57;
}