@charset "UTF-8";
/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
a:hover{
	opacity: 0.7;
	transition: .3s ease-in-out;
}
body {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
}
.oswald-<uniquifier> {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
/* ヘッダー */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.header-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.logo img {
  height: 60px;
}
.contact-btn {
	font-size: 1.25em;
  background: #2e3c92;
  color: #fff;
	letter-spacing: 0.3em;
  text-decoration: none;
  padding: 6px 40px;
  border-radius: 6px;
}
.contact-btn::before {
	 content: '';
	display: inline-block;
	width: 25px;
	height: 16px;
 background-image: url("../images/icon_mail.png");
	background-repeat: no-repeat;
	background-size: cover;
	margin-right: 10px;
}

/* メインビジュアル */
.mv {
  background: #f8f8f8;
  padding: 70px 0;
	background-image: url("../images/mv-photo.jpg");
	background-repeat: no-repeat;
	background-size: 65% auto;
	background-position: right  top;
}
.mv-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.mv-lead {
  flex: 1;
	width: 100%;
}
.mv-label {
	position: relative;
	width: 390px;
  color: #2e3c92;
  font-weight: 400;
	font-size: 1.5em;
	text-align: center;
	border-style: solid; 
   border-width: 2px 0;
}
.mv-label::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 180px;
  bottom: -15px;
  border-right: 15px solid transparent;
  border-top: 15px solid #2e3c92;
  border-left: 15px solid transparent;
}
.mv-label::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 180px;
  bottom: -12px;
  border-right: 15px solid transparent;
  border-top: 15px solid #f8f8f8;
  border-left: 15px solid transparent;
}
.mv-label-wrap{
	display: flex;
	align-items:center;
	margin-bottom: 15px;
}
.mv-lead h2 {
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3em;
	font-weight: 500;
	font-feature-settings: "palt" 1;
  line-height: 1.4;
	text-decoration-color: #000;
    text-decoration-line: underline;
    text-decoration-style: dotted; 
    text-decoration-thickness: 2px;
	text-underline-offset: 0.3em;
}
.highlight {
	background: linear-gradient(transparent 18%, #ffeb3b 0%);
	font-size: 1.25em;
	line-height: 1.8;
}
.setsuzoku {
	font-size: 0.75em;
}
.mv-image img {
  max-width: 100%;
  border-radius: 8px;
}

/* よくあるお悩み */
.trouble {
  background: repeating-linear-gradient(
    -45deg,
    #f2f2f8,
    #f2f2f8 10px,
    #fff 10px,
    #fff 20px
  );
  padding: 60px 20px;
  text-align: center;
}
.trouble h2 {
  font-size: 2em;
  margin-bottom: -23px;
  color: #2e3c92;
		letter-spacing: 0.1em;
}
.trouble-list {
  max-width: 944px;
  margin: 0 auto;
	padding: 50px 32px 50px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
	background: #f4f4f9;
}
.trouble-item {
	display: flex;
  background: #ff6b6b;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
	border-color: #fff;
	border-style: solid;
	border-width: 2px;
  position: relative;
  text-align: left;
	gap:10px;
	 box-shadow: 5px 5px 0px 0px #bbbcdb;  
}
.trouble-item .number {
	display: inline-block;
  width: 68px;
  height: 68px;
  line-height: 68px;
  border-radius: 50%;
  text-align: center;
  color: #1d2087;
  letter-spacing: 0em;
  font-size: 32px;
  background-color: #fff;
	font-family: "Oswald", sans-serif;
}
.trouble-item p{
  font-size: 1.36em;
	width: 220px;
}
.trouble-item img {
  position: absolute;
  right: 0px;
  bottom: 0px;
	width: 120px;
  height: auto;
}

/* フッター */
.site-footer {
  background: #f8f8f8;
  padding: 30px 20px;
  text-align: center;
}
.footer-inner {
  max-width: 970px;
  margin: 0 auto 20px;
}
.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}
.copy {
  font-size: 12px;
  color: #666;
}

/* レスポンシブ */
@media (max-width: 640px) {
	.header-inner {
		flex-direction: column;
}
	.logo img{
		height: 55px;
	}
  .mv-inner {
    flex-direction: column;
    text-align: center;
  }
	.mv {
		padding: 15px;
		background-position: bottom -250px right 0px;
		background-size: cover;
		height: 63vh;
}
	.mv-lead h2 {
  font-size: 1.8em;
		text-align: left;
	}
	.mv-label{
		font-size: 1.2em
	}
	.highlight{
		font-size: 1.18em;
	}
	.trouble {
		padding: 60px 10px;
	}
	.trouble h2{
		font-size: 1.5em;
	}
	.trouble-item{
		padding: 10px;
		width: 98%;
	}
	.trouble-item img{
		width: 80px;
		right: -10px;
	}
	.trouble-item p{
		font-size: 1.28em;
	}
	.trouble-list {
	padding: 50px 10px 50px 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
	}
	.footer-logo{
		height: 50px;
	}
}