@charset "UTF-8";

body {
  font-family:"メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif, Verdana, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  background-color: #fff;
  padding-top: 80px;
}
@media screen and (max-width:768px) {
	body {
		padding-top: 60px;
	}
}
/* ヘッダー */
.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%;
  height: 80px;
	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: 0.8rem;
  font-weight: bold;
}

.header__list--en {
  font-size: 0.6em;
}

#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;
}
.marker {
  background: linear-gradient(transparent 70% , yellow 70%);
}
@media screen and (max-width:768px) {
	.main {
		font-size: 1rem;
	}
}

/*PCでは無効（改行しない）*/
.br-sp {
	display: none;
}
/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
	.br-sp {
			display: block;
	}
}

/* ファストビュー */
.fv {
	width: 100%;
}
.fv__img {
	width: 100%;
}
.img-sp {
	display: none;
}
@media screen and (max-width:768px) {
	.img-pc {
			display: none;
	}
	.img-sp {
			display: block;
	}
}
/* CTA */
.cta {
	width: 350px;
	margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 20px;
}

/* キャンペーン */
.campaign {
	padding-top: 10px;
}
.campaign img {
	margin: 0 auto;
}
@media screen and (max-width:768px) {
	.campaign {
		padding: 10px;
	}
}

/* セクションタイトル */
.section_title {
	padding-top: 200px;
}
.section_title_en h2 {
	color: #00ACEB;
	font-size: 16px;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}
.section_title_jp h1 {
	font-size: 30px;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}

/* フェードアップ */
.fadeUpTrigger{
	opacity: 0;
}
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes fadeUpAnime{
from {
	opacity: 0;
	transform: translateY(200px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}

/* サービス紹介 */
.video {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9のアスペクト比 */
	height: 0;
}
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.bg {
  background-image: url('../images/bg01.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.service_text,.service_text2  {
	padding-top: 40px;
}
.service_text2 {
	font-size: 1.5rem;
}
.service_img01 {
	padding-top: 100px;
}
.service_img01 img,.service_img02 img,.service_img03 img,.service_img04 img {
	margin: 0 auto;
}
.img-sp_nayamiimg02 {
	display: none;
}
.strong {
	font-size: 40px;
	font-weight: bold;
}
h3 {
	padding-top: 100px;
	font-size: 30px;
	font-weight: bold;
	padding-bottom: 20px;
}
.service_img02 {
	background-color: #B3DBEB;
}
.service_img03 {
	padding-top: 40px;
}
.service_img04 {
	padding: 100px 0 100px;
}
@media screen and (max-width:768px) {
	.service_text {
		font-size: .9rem;
	}
	.service_img01 {
		padding: 100px 10px 20px;
	}
	.service_text2 {
		font-size: 20px;
	}
  .img-pc_nayamiimg02 {
    display: none;
  }
  .img-sp_nayamiimg02 {
    display: block;
  }
	.strong {
		font-size: 1.5rem;
		font-weight: bold;
		margin: 0 10px ;
	}
}

/* 選ばれる理由 */
.img-sp_reason {
	display: none;
}
.reason01,.reason03 {
	background-color:#B3DBEB;
	max-width: 1280px;
	margin-top: 40px;
}
.reason {
	display: flex;
	padding-left: 180px;
	padding-top: 40px;
	padding-bottom: 30px;
}
.reason_left {
	text-align: left;
	width: 70%;
}
.reason_title {
	display: flex;
	font-size: 20px;
	font-weight: bold;
}
.reason_title-reason {
	text-decoration:underline;
}
.reason_title_text {
	padding-left: 40px;
}
.reason_text {
	padding-top: 40px;
}
.reason_right {
	width: 200px;
	padding-left: 40px;
}
.reason_img img {
	width: 100%;
}
.reason02 {
	background-color:#B3DBEB;
	max-width: 1280px;
	margin:40px 0 0 auto;
}
.reason03 {
	margin-bottom: 100px;
}
@media screen and (max-width:768px) {
	.reason01,.reason02,.reason03 {
		display: none;
}	.img-sp_reason {
		display: block;
		margin: 0 auto;
		padding-top: 40px;
	}
}

/* 比較表 */
.table-scroll {
  overflow-x: auto;
	margin-top: 40px;
}
.table_design12 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  min-width: 700px;
  font-weight: bold;
  text-align: center;
}
.table_design12 thead th {
  padding: 1em .8em;
  border-right: 2px solid#fff;
}
.table_design12 thead th:not(:first-child) {
  background: #00ACEB;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 15px 15px 0 0;
  padding: 0.5em;
}
.table_design12 tbody td span {
  font-size: .8rem;
}
.table_design12 tbody td:nth-child(2) {
  font-size: 1.5rem;
}
.table_design12 thead th:nth-child(2) {
  background-color: #f88400;
  position: relative;
}
.table_design12 tbody {
  border: 2px solid #d2e8f1;
}
.table_design12 tbody tr {
  background-color: #e7f9ff;
}
.table_design12 tbody tr:nth-child(odd) {
  background-color: #fff;
}
.table_design12 td {
  border-left: 2px solid #d2e8f1;
}
.table_design12 td {
  color: #00ACEB;
  padding: 1em;
}
.table_design12 td:nth-child(2) {
  color: #f88400;
  border-right: 2px solid #f88400;
  border-left: 2px solid #f88400;
}
.table_design12 tr:last-child td:nth-child(2) {
  border-bottom: 2px solid #f88400;
}
/* スクロールバー全体を対象にする */
.table-scroll::-webkit-scrollbar {
  width: 10px; /* スクロールバーの幅 */
  height: 10px; /* スクロールバーの高さ */
}
/* スクロールバーの背景部分をカスタマイズ */
.table-scroll::-webkit-scrollbar-track {
  background: #f1f1f1; /* スクロールバーの背景色 */
  border-radius: 5px; /* 角丸にする */
}
/* スクロールバーの操作部分をカスタマイズ */
.table-scroll::-webkit-scrollbar-thumb {
  background: #888; /* スクロールバーの操作部分の背景色 */
  border-radius: 5px; /* 角丸にする */
}
/* スクロールバーの操作部分にホバーした時のスタイル */
.table-scroll::-webkit-scrollbar-thumb:hover {
  background: #555; /* ホバー時のスクロールバーの操作部分の背景色 */
}
@media screen and (max-width:768px) {
	.table_design12 {
		min-width: 300px;
	}	
	.table_design12 thead th {
		padding: 0;
	}
	.table_design12 thead th:not(:first-child) {
		font-size: 1.3rem;
		border-radius: 15px 15px 0 0;
		padding: 10px;
	}
	.table_design12 td {
		padding: 0;
	}
	.table_td {
		font-size: 1rem;
	}
	.table_design12 tbody td span {
		font-size: .7rem;
	}		
}

/* お客様の声 */
.card_wrap {
	background-color: #B3DBEB;
}
.card-container {
  white-space: nowrap;
  overflow-x: auto;
}
/* スクロールバー全体を対象にする */
.card-container::-webkit-scrollbar {
  width: 10px; /* スクロールバーの幅 */
  height: 10px; /* スクロールバーの高さ */
}
/* スクロールバーの背景部分をカスタマイズ */
.card-container::-webkit-scrollbar-track {
  background: #f1f1f1; /* スクロールバーの背景色 */
  border-radius: 5px; /* 角丸にする */
}
/* スクロールバーの操作部分をカスタマイズ */
.card-container::-webkit-scrollbar-thumb {
  background: #888; /* スクロールバーの操作部分の背景色 */
  border-radius: 5px; /* 角丸にする */
}
/* スクロールバーの操作部分にホバーした時のスタイル */
.card-container::-webkit-scrollbar-thumb:hover {
  background: #555; /* ホバー時のスクロールバーの操作部分の背景色 */
}
.card {
  display: inline-block;
	vertical-align: top;
	height: 650px;
	align-items: stretch;
	width: 500px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 20px;
	position:relative;
}
.card_flex {
	display: flex;
}
.card_voice_left {
	width: 125px;
}
.card_voice_left img {
	width: 100%;
}
.card_voice_right {
	width: 250px;
	text-align: left;
	padding-left: 40px;
}
.card_voice_right p {
	border-bottom: 3px solid #B3DBEB;
}
.card_text {
	text-align: left;
	text-wrap: wrap;
}
.card_text p {
	padding-top: 20px;
}
.card_voice_arrow {
	padding-top: 20px;
}
.card_voice_img {
	position:absolute;
	bottom: 15px;
	right: 0px;
}
.card_voice_img img {
	margin: 0 auto;
}
@media screen and (max-width:768px) {
	.card {
		width: 300px;
		margin: 5px;
		padding: 10px;
		height: 500px;
}
	.card_voice_left {
		width: 100px;
	}
	.card_voice_right {
		width: 200px;
		text-align: left;
		padding-left: 10px;
	}
	.card_text {
		font-size: 0.8rem;
		}
	.card_text p {
		padding-top: 10px;
	}
	.card_voice_arrow {
		padding-top: 10px;
	}
	.card_voice_arrow img {
		width: 100px;
	}
	.card_voice_img {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.card_voice_img {
		position:absolute;
		bottom: 5px;
		right: 0px;
	}
	}


/* 開始までの流れ */
.img-sp_flow {
	display: none;
}
.flow_wrap {
	width: 1020px;
	margin: 0 auto;
}
.flow_container {
	border: solid 4px #202020;
	border-radius: 20px;
	margin: 40px 0 40px;
}
.flow_flex {
	display: flex;
	height: 280px;
}
.flow_flex_01 {
	background-color: #B3DBEB;
	border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
	width: 155px;
}
.flow_flex_01 dt {
	padding-top: 80px;
	font-size: 30px;
	font-weight: bold;
}
.flow_flex_01 dd {
	font-size: 50px;
	font-weight: bold;
}
.flow_flex_02 {
	width: 280px;
}
.flow_flex_02 img {
	max-height: 250px;
	padding: 40px;
}
.flow_flex_03 {
	text-align: left;
}
.flow_arrow img {
	margin: 0 auto;
}
@media screen and (max-width:768px) {
	.flow_wrap {
		display: none;
}	.img-sp_flow {
		display: block;
		margin: 0 auto;
		padding-top: 40px;
	}
}

/* 理念 */
.bg02 {
  background-image: url('../images/bg02.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.philosophy_text {
	font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: rgba(255, 255, 255, 0.562);
}
.philosophy_strong {
	font-size: 30px;
	font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
}
.philosophy_text p {
	padding-bottom: 100px;
}
@media screen and (max-width:768px) {
	.philosophy_text {
		padding-right: 10px;
		padding-left: 10px;
		text-align: left;
		font-size: 0.9rem;
	}
	.philosophy_strong {
		font-size: 1.2rem;
	}
	.philosophy_text p {
		padding-bottom: 50px;
	}
}

/* よくある質問 */
.faq_wrap {
	background-color: #B3DBEB;
	padding-top: 80px;
	padding-bottom: 100px;
}
/* Safari対応　デフォルトの三角形アイコン非表示 */
details summary::-webkit-details-marker {
  display: none;
}

.qa-1 {
  max-width: 700px;
  margin-bottom: 7px;
  border: 1px solid #ffffff;
  border-radius: 25px;
	margin: 0 auto;
	margin-top: 10px;
	text-align: left;
}

.qa-1 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #202020;
  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 #202020b3;
  border-right: 3px solid #202020b3;
  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;
}

.qa-1[open] p {
  transform: none;
  opacity: 1;
}

.qa-1 p::before {
  color: #ff8d8d;
  line-height: 1.2;
  content: "A";
}

/* CTA */
.cta_last {
	width: 350px;
	margin: 0 auto;
	padding-top: 100px;
	padding-bottom: 100px;
}

/* フッター */
.footer {
	margin-top: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 25px 10px 10px;
  background-color: #b3dbeb;
}
.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;
	padding-bottom: 100px;
  color: #ffffffb3;
  font-weight: 200;
  font-size: .8em;
}
@media screen and (max-width:768px) {
	.footer_flex {
		display: block;
	}
	.footer__copyright {
		padding-bottom: 80px;
	}
}

.float-button__wrap {
	display: none;
	width: 100%;
	position: fixed;
	bottom: 10px;
	z-index: 10;
	opacity: 0.95;
}
	.float-button__wrap a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		text-decoration: none;
	}

