@charset "utf-8";
/* CSS Document */
body {
	margin: 0;
	padding: 0;
	font-family: Noto Sans JP,sans-serif;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #efe3cb calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #efe3cb calc(100% - 1px));
  background-size: 20px 20px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #f2eee6;
}
p, ul, li, dt, dd {
    padding: 0;
	margin: 0;
}
.mb1 {margin-bottom: 1rem;}
.mb2 {margin-bottom: 2rem;}
.mb3 {margin-bottom: 3rem;}
.t_center {text-align: center;}
.container {
    max-width: 980px;
    margin: 0 auto 2rem;
} 
.kv {
	text-align: center;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .kv img {
	margin: 1.5rem;
	border-radius: 1.5rem;
    }
}

@media (max-width: 767px) {
    .kv img {
        width: 100%;
    }
}

.kyozai {
    display: flex;
    flex-wrap: wrap;
}
.subject {
	width: 45%;
	margin: 1rem auto;
	padding: 1rem;
	border-radius: 1rem;
	background-color: #ffffff;
}
@media (max-width: 767px) {
    .subject {
        width: 80%;
		margin: 1rem auto;
    }
}
.txt {
	padding: 0 10px;
	line-height: 1.6;
}
.box {
    display: flex;
    margin: 0 auto;
	align-items: center;
	width: 90%;
	line-height: 1.6;
}
  @media only screen and (min-width: 480px) {
.box {
	justify-content: center;
	  }
}
  @media only screen and (min-width: 600px) {
    .box {
      flex-direction: row; /* タブレット以上の場合は横方向に配置 */
    }
    .text {
      margin-top: 0; /* タブレット以上の場合は上のスペースを削除 */
      margin-left: 20px; /* 画像とテキストの間のスペース */
    }
  }
.box img {
	margin-right: 10px;
	border: 1px solid #cccccc;
}
.box ul {
  list-style: none; /* デフォルトのリストマークを削除 */
}
.box ul li::before {
  content: "・"; /* 疑似要素でリストマークを作成 */
  margin-right: 5px; /* リストマークとテキストの間隔を調整 */
}
h2 {
	font-size: 1.75rem;
	font-weight: 500;
	text-align: center;
	padding: 20px 10px;
	color: #ffffff;
}
h2 span {
	display: block;
	font-size: 1rem;
	font-weight: 400;
}
.ttlsho1 h2 {background-color: #ea5463;}
.ttlsho2 h2 {background-color: #008ccf;}
.ttlsho3 h2 {background-color: #eb6d8e;}
.ttlsho4 h2 {background-color: #00a051;}
.ttlsho5 h2 {background-color: #f18d00;}
.ttlsho6 h2 {background-color: #006cb8;}
h3 {
	text-align: center;
	margin: 0 1rem 1rem;
}
.atn {
  padding-left: 1rem;
  text-indent: -1rem;
	font-size: 80%;
	margin-top: 5px;
}
.atn2 {
	font-size: 80%;
	margin-top: 5px;
}
.cv {
	text-align: center;
	margin-top: 5rem;
}
/*CVボタン*/
.btn {
  display: block;
  width: 80%;
  max-width: 500px;
  margin: 20px auto;
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
#ctaButton1 {text-decoration: none;}
#ctaButton2 {text-decoration: none;}
.btn:hover {
  opacity: 0.7;
}

.sample {
  background-color: #009fe8;
}

.entry {
  background-color: #e50012;
}

/*========= モーダル表示のためのCSS ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}
.modaal-content-container dt {
	font-weight: bold;
}

