@charset "UTF-8";

html {
  font-size: 100%;
}
body {
  font-family:"メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif, Verdana, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  background-color: #fff;
}
img {
  min-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

/* ヘッダー */
.logo {
	position: absolute;
	top: 0;
	left: 0;
	padding: 15px 0 15px 30px;
	width: 157px;
}
.logo img {
	width: 100%;
	height: auto;
}
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 999;
	padding: 30px 0;
  background-color: #fff;
}
#navwrap {
	position: absolute;
	top: 0;
	right: 0;
	padding: 15px 30px 15px 0;
}
.header_menu {
	display: flex;
}
ul,li {
	list-style: none;
	margin: 0;
}
.header_menu li a {
	cursor: pointer;
	padding: 0 10px;
	text-decoration: none;
	color: #202020;
  display: block;
}
.header_menu li a:hover {
  filter: opacity(0.6); 
}
.header__list--jp {
  font-size: 1rem;
  font-weight: bold;
}


#switch {
	display: none;
}

@media screen and (max-width:768px) {
	#switch ~ label {
		padding: 12px 12px;
		width: 60px;
		height: 60px;
		background: #333;
		position: fixed;
		box-sizing: border-box;
		top: 0;
		right: 0;
		z-index: 999;
		cursor: pointer;
	}
	#switch ~ label span {
		display: block;
		width:22px;
		height:2px;
		top: 50%;
		left: 0;
		right: 0;
		margin:auto;
		background: #fff;
		position: absolute;
		-webkit-transition: 0.2s transform;
		transition: 0.2s transform;
	}
	#switch ~ label span:before,
	#switch ~ label span:after {
		content: "";
		display: block;
		background: #fff;
		position: absolute;
		width:22px;
		height:2px;
		left: 0;
		right: 0;
		margin: auto;
	}
	#switch ~ label span:before {
		top: -9px;
	}
	#switch ~ label span:after {
		top: 9px;
	}
  #switch:checked ~ label span {
	-webkit-transform:rotate(-45deg) ;
	transform:rotate(-45deg) ;
  }
  #switch:checked ~ label span:before {
	top:0;
  }
  #switch:checked ~ label span:after {
	-webkit-transform:rotate(270deg);
	transform:rotate(270deg);
	top:0;
	margin-top:0;
  }

	#navwrap {
		padding-top: 0;
		position: fixed;
		top: -100%;
		left: 0;
		width: calc(100% - 60px);
		height: 100%;
		background: rgba(0,0,0,0.8);
		transition: all 0.4s;
		padding: 30px;
		box-sizing: border-box;
	}
	#switch:checked ~ #navwrap { 
		display: block; 
		top: 0;
	}
	.logo {
		padding: 10px 0 10px 30px;
		width: 157px;
	}
	.header {
		height: 50px;
	}
	.header_menu {
		display: flex;
		flex-direction: column;
	}
	.header_menu li {
		margin: 0 auto 20px;
    text-align: center;
	}
	.header_menu li a {
		color: #fff;
	}
	.scroll-prevent {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
	}
}

/* メイン */
.main {
	text-align: center;
	font-size: 16px;
	margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width:768px) {
	.main {
		font-size: 1rem;
    padding: 0 10px;
	}
}

/*PCでは無効（改行しない）*/
.br-sp {
	display: none;
}
/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
	.br-sp {
			display: block;
	}
}

/* ファストビュー */
.fv {
  padding-top: 100px;
}
.fv__img {
	width: 800px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
	.fv__img {
    width: 90%;
	}
}

/* サービス */
#section_service {
  margin-bottom: 100px;
}
#section_service .inner .service__title .section-title {
  margin: 0;
}
.service__introduction {
  margin-bottom: 100px;
}

.flex-container {
  display: flex;
  justify-content: space-between;
}
.wrapper{
  width: 30%;
  padding: 8px;
  border: .5px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin-bottom: 24px; /*レスポンシブした時の余白*/
}
.img-wrapper img{
  width: 100%;
  vertical-align: bottom;
}
.content-wrapper{
  padding: 8px 0;
}
.content-wrapper .heading{
  margin: 0 0 8px;
}
.content-wrapper .text{
  margin: 0;
  font-size: 14px;
} 
@media screen and (max-width:768px){
  .flex-container{
    flex-direction: column;
    width: 100%;
  }
  .wrapper{
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
  }
}

/* 特徴 */
#section_features {
  margin-bottom: 100px;
}
.feature__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 800px;
  margin: 0 auto;
}
.feature__wrapper .feature__img {
  width: 30%;
}
.feature__wrapper .feature__img img {
  width: 200px;
}
@media screen and (max-width:768px) {
	.feature__wrapper {
    flex-direction: column;
    width: 100%;
  }
  .feature__wrapper .feature__img {
    width: 100%;
  }
  .feature__wrapper .feature__img img {
    width: 100%;
  }
}

/* 料金 */
#section_plan {
  margin-bottom: 100px;
}
.table_design08 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}
.table_design08 th, .table_design08 td {
  border: 2px solid #d2e8f1;
  padding: 1em;
}
.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;
}

/* 流れ */
#section_flow {
  margin-bottom: 100px;
}

.flow_design07 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flow07 {
  padding-left: 0;
}
.flow07 > li {
  list-style-type: none;
  display: flex;
}
.flow07 > li:not(:last-child) {
  margin: 0 0 50px;
}
.flow07 > li .icon07 {
  width: 90px;
  box-sizing: border-box;
  padding: 20px 10px 10px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background: #4d9bc1;
  border-radius: 5px 5px 0 0;
  position: relative;
  line-height: 125%;
  margin: 0;
}
.flow07 > li .icon07::after {
  content: ' ';
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 20px solid #4d9bc1;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.flow07 > li dl {
  padding: 0 0 0 30px;
  width: calc(100% - 115px);
}
.flow07 > li dl dt {
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
}
.flow07 > li dl dt::after {
  content: '';
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #4d9bc1;
}
.flow07 > li dl dd {
  margin: 0;
}

.flow__bar {
  padding-top: 50px;
}

/* faq */
#section_faq {
  margin-bottom: 100px;
  margin: 0 auto;
}

.qa-1 {
  max-width: 700px;
  margin-bottom: 7px;
  border: 1px solid #d6dde3;
  border-radius: 5px;
}

.qa-1 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-1 summary::before,
.qa-1 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}

.qa-1 summary::before {
  color: #75bbff;
  content: "Q";
}

.qa-1 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-1[open] summary::after {
  transform: rotate(225deg);
}

.qa-1 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 3em 1.5em;
  color: #333;
  transition: transform .5s, opacity .5s;
  text-align: left;
}

.qa-1[open] p {
  transform: none;
  opacity: 1;
}

.qa-1 p::before {
  color: #ff8d8d;
  line-height: 1.2;
  content: "A";
}

.image__img {
  width: 500px;
  margin-top: 100px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
	.image__img {
    width: 100vw;
	}
}


/* フッター */
.footer {
	margin-top: 50px;
  display: flex;
  align-items: center;
  text-align: left;
  flex-direction: column;
  padding: 25px 10px 10px;
  background-color: #4d9bc1;
}
.footer_flex {
	display: flex;
	align-items: flex-end;
}
.footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.5em;
  list-style-type: none;
  margin: 0 0 .5em;
  padding: .5em;
	padding-top: 50px;
}
.footer__link {
  color: #fff;
  text-decoration: none;
	font-size: 0.8rem;
}
.footer_company {
	padding-left: 50px;
	font-size: 0.8rem;
}
.footer__copyright {
  margin: 0;
	padding-top: 50px;
  color: #ffffffb3;
  font-weight: 200;
  font-size: .8em;
}
@media screen and (max-width:768px) {
  .footer {
    text-align: center;
  }
	.footer_flex {
		display: block;
	}
}
