/*
Theme Name: theme
Author: Marie
Version: 2022
*/
@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}
/* reCaptcha */

.grecaptcha-badge {
  opacity: 0;
  z-index: -1;
}



img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}

/*新しく追加したもの*/
.container_in {
  margin: 30px 0;
	 max-width:100%;
height: auto;/*高さ自動*/
}

.Form {
  margin-top: 20px;
  margin-left: 0px;
  margin-right: auto;
  max-width: 630px;
}


.Form-Item {
  border-top: 1px solid #ddd;
  width: 100%;
  align-items: center;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  
}
.Form-Item:nth-child {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  letter-spacing: 0.05em;
  font-weight: bold;
max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  
}


.Form-Item-Label.isMsg {
  margin-top: 0px;
  margin-bottom: auto;
}



.Form-Item-Label-Required {
  margin-right: 8px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
	 border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
}


.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 0px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
    flex: inherit;
  width: 100%;
  max-width: 600px;
  background: #f5f5f5;
}


.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 18px;
    margin-left: 0;
  padding-left: 1em;
  padding-right: 1em;
  flex: 1;
  width: 100%;
  max-width: 600px;
  background: #f5f5f5;
  font-size: 15px;
	height: 200px;
}
.wpcf7-not-valid-tip {text-align: left;}

.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #5bc8ac;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
transition: 0.5s ;/*ゆっくり色を変える*/
}

.Form-Btn:hover {
	background: #5bc8ac;
}
 
.privacy-policy {
    height: 150px;
    padding: 2em;
    overflow-y: scroll;
	 border: 1px solid #ddd;
	margin-left: 0px;
  border-radius: 6px;
  margin-top: 18px;
  padding-left: 1em;
  padding-right: 1em;
  flex: 1;
  width: 100%;
  max-width: 600px;
  background: #f5f5f5;
}

.privacy-policy__head{
  margin-bottom: 0.5em;
	color: #000;
	font-size: 0.8em;
	line-height: 1.5em;
	text-align: left;
}

.privacy-policy__detail{
  margin-bottom: 1.5em;
	color: #000;
	font-size: 0.7em;
	line-height: 1.5em;
	text-align: left;
}
/* チェックボックスデザインクリア */
input[type="checkbox"] {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

/* 同意チェックボックスデザイン */
input[type="checkbox"] {
    cursor: pointer;
    padding-left: 30px;/*label手前にチェックボックス用の余白を開ける*/
    vertical-align: middle;
    position: relative;
	
  }
  input[type="checkbox"]::before,
  input[type="checkbox"]::after {
    content: "";
    display: block; 
    position: absolute;
  }
  input[type="checkbox"]::before {
    background-color: #f5f5f5;
    border-radius: 3px;
    border: 1px solid #ddd;
    width: 20px;/*チェックボックスの横幅*/
    height: 20px;/*チェックボックスの縦幅*/
    transform: translateY(-50%);
    top: 50%;
    left: 5px;
  }
  input[type="checkbox"]::after {
    border-bottom: 3px solid #5bc8ac;/*チェックの太さ*/
    border-left: 3px solid #5bc8ac;/*チェックの太さ*/
    opacity: 0;/*チェック前は非表示*/
    height: 8px;/*チェックの高さ*/
    width: 16px;/*チェックの横幅*/
    transform: rotate(-45deg);
    top: -5px;/*チェック時の位置調整*/
    left: 8px;/*チェック時の位置調整*/
  }
  input[type="checkbox"]:checked::after {
    opacity: 1;/*チェック後表示*/
  }
/* チェックボックスデザイン */
.checkbox-002 {
    display: flex;
    flex-wrap: wrap;
    gap: .5em 2em;
    border: none;
	margin-right:3px;
}

.checkbox-002 label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
}

.checkbox-002 label::before {
    border-radius: 3px;
    content: '';
	 background-color: #f5f5f5;
    border: 1px solid #ddd;
    width: 20px;/*チェックボックスの横幅*/
    height: 20px;/*チェックボックスの縦幅*/
	margin-right:3px;
	
}
.checkbox-002 label:has(:checked)::after {
    position: absolute;
    top: 3px;
    left: 6px;
    transform: rotate(45deg);
    width: 8px;
    height: 16px;
    border: solid #5bc8ac;
    border-width: 0 3px 3px 0;
    content: '';
}

.checkbox-002 input {
    display: none;
}

.form{
	display: flex;/*フレックスボックスを使用して、div を水平方向の中央に配置*/
  justify-content: center;/*フレックスボックスを使用して、div を水平方向の中央に配置*/
}
.box_17 {
	border: 1px solid #f5f5f5;
	width: 100%;
	background: #f5f5f5;
	 text-align: center ;
	margin: 0px;
	}
.box_17_ttl {
	margin: 0;
	background: #f5f5f5;
	color: #000;
	padding: 10px;
	text-align: center;
	font-size: 1.2em;
	font-family: 'Zen Maru Gothic', sans-serif;
		 font-weight:600;
	}
.box_17_txt {
font-family:  'Zen Maru Gothic', sans-serif;
	text-align: center;
	font-size: 1em;
	}

.box_17 img {
  width: 100px ;
  height:100px ;
}
.box_18 img {
  width: 100px ;
  height:100px ;
}
.box_18 {
	border: 1px solid #f5f5f5;
	width: 100%;
	height: 230px;
	background: #f5f5f5;
	 text-align: center ;
	margin: 50px 0px 0px;
	min-height: 100px;
	}
.box_18_ttl {
	margin: 0;
	background: #f5f5f5;
	color: #000;
	padding: 10px;
	text-align: center;
	font-size: 1.2em;
	font-family: 'Zen Maru Gothic', sans-serif;
		 font-weight:600;
	}
.box_18_txt {
font-family:  'Zen Maru Gothic', sans-serif;
	text-align: center;
	}
.box_18_txt2 {
font-family:  'Zen Maru Gothic', sans-serif;
	text-align: center;
	font-size: 1.5em;
	}

.setumei{
    margin: 1em 0;
    color: #000;
    font-size: 0.7em;
    line-height: 1.5em;
    width: 100%;
}

/*お問い合わせ*/

.box_31 {
	border: 1px solid #f5f5f5;
	background: #f5f5f5;
	 text-align: center ;
	margin: 10px;
	min-height: 200px;
	 position: relative;
	}

.box_30 {
	border: 1px solid #f5f5f5;
	background: #f5f5f5;
	 text-align: center ;
	margin: 10px;
	min-height: 400px;
	 position: relative;
	}
.box_30_ttl {
	margin: 0;
	background: #f5f5f5;
	color: #000;
	padding: 10px;
	text-align: center;
	font-size: 1.5em;
	font-family: 'Zen Maru Gothic', sans-serif;
		 font-weight:600;
	}
.box_30_txt {
	margin: 0;
	padding: 1em;
font-family: 'Montserrat', sans-serif;
	text-align: left;
	 position: absolute;/*テキスト位置を下揃え */
  bottom: 0;/*テキスト位置を下揃え */
  right: 0;/*テキスト位置を下揃え */
	}
.box_30 img {
  width: 150px ;
  height:150px ;
}

.spinY {
  transition: 1s ;
  transform: rotateY( 0deg ) ;
}
.spinY:hover {
  transition: 1s ;
  transform: rotateY( 360deg );
}
.button-004 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 270px;
	height: 40px;
    margin:0 auto;
    padding: .9em 2em;
    border: solid 4px #000;
    border-radius: 50px;
    background-color: #FFF;
    color: #000;
    font-weight: 600;
    font-size: 1.2em;
 font-family: 'Montserrat', sans-serif;
	}

.button-004:hover {
    background-color: #000;
	color: #fff;
	 border: solid 4px #000;
	transition: 0.5s ;/*ゆっくり色を変える*/
}

/*ヘッダー 追記
-------------------------------------*/
.row2{width: 100%;
      max-width: 1250px; 
      margin: 0 auto;
	padding-top: 10px;
}

.row2 ul{
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.row2 ul li{list-style:none;
}

.rowmoji{
	font-family: 'Montserrat', sans-serif;
	font-size: 1.2rem;
	font-weight:500;
	color: #000	;
	padding-left: 20px;
		}

/*ヘッダー
-------------------------------------*/


.contact-button {
	padding: 1rem;
	border: 2px solid var(--base-color);
}
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;
}
nav li {
	flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: var(--back-color);   
}
nav a {
    padding: 0.5rem;
}

/*ビデオ
-------------------------------------*/
video {
  width: 100%;
  height: 100%;
}

/*背景動画にフィルタをかける*/
.container-video_2 {
  position: relative;
  height: 600px;
  overflow: hidden;
  opacity: 0.01;
  animation: load 1.5s 0.8s ease-out forwards;
}
.container-video_2 #video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(1.05);
  filter: grayscale(0.0) contrast(1);/*背景動画にかけるフィルタ*/
  transition: 0.3s;
}

@keyframes load {
  100% {
    opacity: 1;
  }
}
.table-center {
  display: table;
  width: 100%;
  position: relative;
  height: 100%;
}
.table-center > div {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  text-align: center;
}
.table-center > div p {
  color: #fff;
  text-shadow: 0 0px 10px rgba(0, 0, 0, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px;
  font-size: 2em;
  font-weight: 500;
font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;

}


/*会社概要のテーブル
-------------------------------------*/

.tableb{border-collapse: collapse;
	width: 98%;
	margin-left: 1%;
	margin-right: 1%;
	display:inline-block
}


.tableb1p{
    width: auto;
   padding: 10px;
	font-family: 'Zen Maru Gothic', sans-serif;
   font-size: 1.2rem;/* 24px*/
   			font-weight:400;
			color: #000;
   text-align:left;

}

.tableb3p{
    width: auto;
   padding: 10px;
	font-family: 'Zen Maru Gothic', sans-serif;
   font-size: 1.5rem;/* 24px*/
   			font-weight:400;
			color: #000;
   text-align:left;

}
/*メニューのもじ
-------------------------------------*/
.moji1{
	font-family: 'Montserrat', sans-serif;
		 font-size: 1.2rem;
		 font-weight:600;
			color: #000	;

		}	
.moji2{
	font-family: 'Montserrat', sans-serif;
		 font-size: 1.2rem;
		 font-weight:500;
			color: #000	;

		}


.moji4{
	font-family: 'Zen Maru Gothic', sans-serif;
		 font-size: 1.5rem;
		 font-weight:600;
			color: #000;
		}

.moji5{
	font-family: 'Zen Maru Gothic', sans-serif;
		 font-size: 1.2rem;
		 font-weight:600;
			color: #000;

		}

.moji10 { font-size: 2.4rem;
	line-height: 1.35;
	letter-spacing: -.08rem;
font-family: 'Zen Maru Gothic', sans-serif;
color: #000;
}


/*WORKS
-------------------------------------*/
.worksitemimg {
  max-width: 100%;
  height: auto;
  	display: block;
	margin: 0 auto;
	padding: 0;
}


.worksitem .tooltip img {
	vertical-align: bottom;
}

.worksitem .sample3 img {
	vertical-align: bottom;
}

.worksitem2  {
	background: #f7f6f5;
	height: 80px;
	padding-top: 30px;
	padding-left: 20px;
	  text-align: left;
    color:		#FFF;
   
}

/* マウスオーバー文字 */
.sample3 {
	overflow:		hidden;
	position:		relative;
}
.sample3 {
	text-align: 		center;
	color:			#000;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0px;
	line-height: 20px;
}



.sample3 .mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;/* -9 */
	left: 0px;
	opacity: 0;	/* マスクを表示しない */
	background-color: rgba(255,255,255,0.8);
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}



.sample3:hover .mask {
	opacity:		1;	/* マスクを表示する */
	padding-top:		20px;	/* ホバーで下にずらす */
}

.caption {
	text-align: 		left;
	text-decoration: none;
	letter-spacing: 0px;
	line-height: 20px;
	font-size: 1.5rem;
	font-weight: 600;
	color:#000;
	padding: 10%;
	font-family:"M PLUS Rounded 1c";
}

.click {

	font-size: 100%;
	font-weight: 600;
	color:#F66;
	font-family:"M PLUS Rounded 1c";
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 250px;
}

.mail:hover { opacity: 0.6; 
	transition: all .3s;
 
}

/* 表1*/
/* 複製の表1*/
.table-scroll{
  overflow-x : auto;
	margin: 1em 1em 2em;
}
	.aaa table { widh: 100%;
		height: 100px;
		border-collapse:collapse;
table-layout: fixed;
}
	.aaa td { border:solid 1px #778899;
		}

	.aaa th  { width:  15em;
		color: #000000;/*文字色*/
		font-weight: 600;
  background-color: #f0f8ff;/*背景色*/
		padding: 20px 10px;
		text-align: center;
vertical-align: middle;
		border:solid 1px #778899;
	}
	.aaa td { width: 50em;
		color: #000000;/*文字色*/
  background-color: #FFFFFF;/*背景色*/
		padding: 20px 10px;
		text-align: center;
vertical-align: middle;
	}

/* 複製の表1　終わり*/

table{
  border-collapse: collapse;
  width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 10px;
  border: solid 1px #ccc;
  text-align:center;
  box-sizing:border-box;
}
.tb01 th {
  background: #e8ecef;
  color: #050505;
  
}
/* 価格表テーブル　終わり*/

.tb10 th,
.tb10 td{
  padding: 10px;
  border: solid 1px #ccc;
  text-align:center;
  box-sizing:border-box;
}
.tb10 th {
  background: #e8ecef;
  color: #050505;

  
}


/* テーブルのスクロール*/
.table-scroll{
  overflow: auto; /*スクロールさせる*/
  white-space: nowrap; /*文字の折り返しを禁止*/

}

/* 以下、スクロールバーを追加 */

.table-scrolldiv::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.table-scroll::-webkit-scrollbar-track{
 background: #333;
}
.table-scroll::-webkit-scrollbar-thumb {
 background: #999;
}

/* フローデザイン*/
.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: #3f98ef;
  background: #0033ff;
  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 #3f98ef;
	border-top: 20px solid #0033ff;
  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 #f2f2f2;
  position: relative;
	font-family: 'Zen Maru Gothic', sans-serif;
}
.flow07 > li dl dt::after {
  content: '';
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #3f98ef;
	background-color: #87cefa;
	
}

.flow07 > li dl dd {
  margin: 0;
	font-family: 'Zen Maru Gothic', sans-serif;
}
  

.button05allwhite{
    width: 80%;
	height: 100px;
	background-color: #FFF; 
	padding-top: 20px;
	padding-bottm: 10px;

  }


.btn2 {
	background:#fff;
  color: #000;   /*文字色 */
  padding: 10px 30px; /* 上下の余白、左右の余白 */
  text-decoration: none; /* デフォルトで入る下線を消す */
  border-radius: 30px; /* 角を丸くする */
font-family: 'Zen Kaku Gothic New', sans-serif;
font-size: 1em;
	font-weight: 600;
	border: 2px solid #000;
	position: relative;
		width: fit-content;
}

.btn2:hover {
	background: #0033ff;  /*背景色 */
	color: #FFF;   /*文字色 */
	transition: 0.5s ;/*ゆっくり色を変える*/
}

.btn2::after{
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 15px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.5em;   /* arrow size */
  height: 0.5em;  /* arrow size */
  border-top: 3px solid #000;  /* thickness, color */
  border-right: 3px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-top {
	background:#fff;
  color: #000;   /*文字色 */
  padding: 10px 30px; /* 上下の余白、左右の余白 */
  text-decoration: none; /* デフォルトで入る下線を消す */
  border-radius: 30px; /* 角を丸くする */
font-family: 'Zen Kaku Gothic New', sans-serif;
font-size: 1em;
	font-weight: 600;
	border: 2px solid #000;
	position: relative;
		width: fit-content;
}

.btn-top:hover {
	background: #0033ff;  /*背景色 */
	color: #FFF;   /*文字色 */
	transition: 0.5s ;/*ゆっくり色を変える*/
}

.btn-top::after{
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 15px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.5em;   /* arrow size */
  height: 0.5em;  /* arrow size */
  border-top: 3px solid #000;  /* thickness, color */
  border-right: 3px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*ボタン END*/


.fukusei4{
   display: block;
   padding: 1em;
font-family: 'Kosugi', sans-serif;
   font-size: 0.9rem;
   			font-weight:400;
			color: #000;
   text-align:left;
	width: 87%;
	border:solid 1px #ebf6f7;
	margin: 1em 2em 1em 1em ;
	background-color: #ebf6f7;/*背景色*/
}
.fukusei{
   display: block;
   padding: 1em;
font-family: 'Kosugi', sans-serif;
   font-size: 0.9rem;
   			font-weight:400;
			color: #000;
   text-align:left;
	width: 80%;
	border:solid 1px #778899;
	margin: 1em 0em 1em 1em ;
}

.bango{
 display:inline-block;
 padding: 0.5em 1em;
 margin: 2em 0;
 font-weight: 500;
	font-size: 1.2rem;
 border: solid 1px #778899;
	border-radius: 10px;/*角の丸み*/
}
.bango p {
 margin: 0; 
 padding: 0;
	
}


.centercenter{
 text-align: center;}

.red{
	color:red;
	font-size: 2.0rem;
}

.bango2{
 /*display:inline-block;*/
 padding: 0.5em 1em;
 margin: 1em 0;
border:solid 1px #3f98ef;
	background-color: #ebf6f7;/*背景色*/
	text-align:center;
	
}

.bango3{
 display:inline-block;
 padding: 0.5em 1em;
 margin: 1em 0;
	background-color: #FFF;
	text-align:center;
	border: solid 1px #ccc ;
border-radius: 15px;/*角の丸み*/
	font-family: 'Zen Maru Gothic', sans-serif;

}
.bango3 p {
 margin: 0; 
 padding: 0;
font-size: 2.5rem;
font-weight:500;
color: #0080FF;
}


.heading04 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	text-align: center;
}

.heading04::before,
.heading04::after {
	content: '';
	width: 3px;
	height: 40px;
	background-color: #3fc1c9;
}

.heading04::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.heading04::after {
	margin-left: 30px;
	transform: rotate(35deg)
}

.heading03 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	text-align: center;
}

.heading03::before,
.heading03::after {
	content: '';
	width: 70px;
	height: 3px;
	background-color: #ee827c;
}

.heading03::before {
	margin-right: 20px;
}
.heading03::after {
	margin-left: 20px;
}
.heading01 {
	display: inline;
	font-size: 20px;
	font-weight:600;
	background-image: linear-gradient(rgba(0,0,0,0) 70%, rgb(135,206,250) 70%);
}

.heading06 {
	position: relative;
	padding-top: 25px;
	padding-bottom: 50px;
	font-size: 26px;
	text-align: center;
font-family: 'M+PLUS+Rounded+1c', sans-serif;
	color:#000;
	font-weight:600;
}

.heading06 span {
	position: relative;
	z-index: 2;
}

.heading06::before {
	content: attr(data-en);
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(224,66,114,0.2);
	color: rgba(135, 206, 250, 0.2);
	font-size: 60px;
	font-style: italic;
}

/* リストデザイン002 */
.list_design002 li {
  color: #f4a006;
	margin-top:20px;
	 text-align:left ;
}
.list_design002 li span {
  color: #333;
}

.left{ text-align:left ;
	}

/* リストデザイン003 */
.list_design003 li {
  color: #f4a006;
	margin-top:10px;
	 text-align:left ;
	font-family: 'Zen Maru Gothic', sans-serif;
	}

ul.list_design003   {
	font-size: 1.2rem;
	font-weight: 600;
	}

 ul.list_design003 li {
  padding-top:3px;
  padding-bottom:3px;
}
.list_design003 li span {
  color: #333;
}
.fukusei3{
   display: inline-block;
   padding: 1em;
	font-family: 'Zen Maru Gothic', sans-serif;
   font-size: 1.2rem;
   			font-weight:400;
			color: #000;
	width: fit-content;/*文字数に幅をフィットさせる*/
	border:solid 1px #e8ecef;
	margin: 1em 1em 1em 1em ;
	background-color: #e8ecef;/*背景色*/
	   text-align:left;
}
.kome{
   font-size: 1.2rem;
   			font-weight:400;
			color: #000;
}
.kome2{
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 1.0rem;
	font-weight:400;
	color: #000;
	text-align: left;
	margin-top: 20px;
}
.kome3{
	font-family: 'Kosugi', sans-serif;
	font-size: 1.5rem;
	font-weight:500;
	color: #3f98ef;
	text-align: left;
	padding: 20px 0 3px 0;
}
.kakaku{
   display: inline-block;
font-family: 'Kosugi', sans-serif;
   font-size: 1.2rem;
   			font-weight:400;
			color: #000;
	   text-align:left;
}
.fukusei5{
   display: inline-block;
   padding: 3em;
font-family: 'M+PLUS+Rounded+1c', sans-serif;
   font-size: 1.5rem;
   			font-weight:500;
			color: #2b2b2b;
	width: 90%;
	border:solid 1px #89c3eb;
	margin: 1em 1em 1em 1em ;
	background-color: #ebf6f7;/*背景色*/
	   text-align:left;
	border-radius: 30px;/*角の丸み*/
}

.fukusei7{
   display: inline-block;
   padding: 2em;
font-family: 'M+PLUS+Rounded+1c', sans-serif;
   font-size: 1.5rem;
   			font-weight:500;
			color: #2b2b2b;
	width: 90%;
	border:solid 1px #89c3eb;
	margin: 1em 1em 1em 1em ;
	background-color: #ebf6f7;/*背景色*/
	   text-align:left;
	border-radius: 30px;/*角の丸み*/
}

.fukusei8{
   display: inline-block;
   padding: 1em;
	font-family: 'Zen Maru Gothic', sans-serif;
   font-size: 1.5rem;
   			font-weight:600;
			color: #2b2b2b;
	border:solid 1px #87cefa;
	margin: 1em 1em 1em 0em ;
	background-color: #ebf6f7;/*背景色*/
	   text-align:left;
	border-radius: 20px;/*角の丸み*/
}

.fukusei9{
	width: 60%;
   padding: 1em;
	font-family: 'Zen Maru Gothic', sans-serif;
   font-size: 1.5rem;
   			font-weight:600;
			color: #2b2b2b;
	border:solid 1px #87cefa;
	margin: 0 auto ;
	background-color: #ebf6f7;/*背景色*/
	   text-align:left;
	border-radius: 20px;/*角の丸み*/
}

.point{
 color: #050505;/*文字色*/
  /*線の種類（点線）2px 線色*/
  border-bottom:double #87cefa;
}


.moji3{
	font-family: 'Zen Maru Gothic', sans-serif;
		 font-size: 1.2rem;
		 font-weight:400;
			color: #000	;
		}
.moji6{
	font-family: 'Zen Maru Gothic', sans-serif;
		 font-size: 1.4rem;
			color: #004f9d;
		}

.hr1 {
  border-top: 1px solid #aaa;
margin-left: 2em;
	margin-right: 2em;
}

.Qa-Box {
  width: 95%;
  margin: 0 auto;
}
/*よくある質問*/
.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 15px 0;
  padding: 15px;
}

.Qa-Box .Qa dt {
  background: #F5F5F5;
}

.Qa-Box .Qa dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}

.Qa-Box .Qa dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
}

.Qa-Box .Qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #3fc1c9;
  width: 2em;
  height: 2em;
}

.Qa-Box .Qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #f4a006;
  width: 2em;
  height: 2em;
}




/* ｍ調整 */
.fukusei5{
   padding: 1em;
font-family: 'M+PLUS+Rounded+1c', sans-serif;
   font-size: 1.2rem;
	margin: 1em 1em 1em 1em ;
   			font-weight:600;
		width: 90%;


}
/* ｍ調整 */
.moji3{
		 font-size: 1.0rem;
		 font-weight:500;
		}

/*メイン画像
-------------------------------------*/
.mainimg img {
    width: 100vw;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 0 0;
}
section {
	margin: 5rem 0;
	padding: 3rem 0;
}
.gray-back {
	background-color: var(--back-color);
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
}
.catch h2 {
    padding-bottom: 1rem;
}
.under {
    border-bottom: 0.4rem solid var(--base-color);
    padding:0.5 0.5rem 0.5rem 0.5rem;
}
.center {
	text-align: center;
	margin-bottom: 1rem;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
    padding: 0rem 0;
}




/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 3rem 0;
    background-color: #66ccff;
	margin-bottom: 0;
}
.copyright p {
    color: #050505;
	font-weight: bold;
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  background: #0033ff;
  border-radius: 50%;
}
#pagetop a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#pagetop a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 35px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.box_30 {
	min-height: 450px;

	}

	
/*ヘッダー
-------------------------------------*/
.header-box {
	display: none;
}	
/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}






@media screen and (max-width: 640px) {
  .tb01 .head{
    display:none;
  }
  .tb01 {
    width: 100%;
  }
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
  }
  table.tb01 td:first-child{
    background: #ff7bac;
    color:#fff;
    font-weight:bold;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #ccc;
  }
}


a.btn_black {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	max-width: 300px;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 2px solid #222222;
	color: #222222;
	border-radius: 100vh;
	transition: 0.5s;
	background: #FFF;
	margin-top: 50px;
	font-size: 120%;
}
a.btn_black:hover {
	color: #fff;
	background: #222222;
}
a.btn_black-w {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	max-width: 400px;
	margin: 0 auto 45px;
	padding: 1rem;
	font-weight: bold;
	border: 2px solid #222222;
	color: #222222;
	border-radius: 100vh;
	transition: 0.5s;
	background: #FFF;
	font-size: 120%;
}
a.btn_black-w:hover {
	color: #fff;
	background: #222222;
}


@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}


@media screen and (max-width: 768px){

nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}


.btn-top {
display: none;
}	
	
	/* ｍ調整 */
.fukusei8{
	margin: 3em 1em 1em 0em ;
}
/* ｍ調整 */
	.logo img{width: 250px;
	}
.fukusei9{
	width: 100%;
}
	
}


