@charset "UTF-8";
@import url("grid.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/*font-family: 'Noto Sans', sans-serif;*/
/*ボタン*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.back2 {
	background-color: #07c6a0;    /* 背景画像指定 */
	margin: 0;
    padding: 0;
}
.position-box {
    position: relative;
	max-width:100%;
	height: auto;
}
.position-box2 {
    position: relative;
	align-items: center;
	max-width:60%;
	margin: 0;
    padding: 0;
	top: 0%;
    left: 40%;
}

.sub0{
	
}
.sub {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 35%;
    height: 35%;
    position: absolute;
    top: 0%;
    left: 60%;
}
.sub2 {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 90%;
    height: 90%;
    position: absolute;
    top: 10%;
    left: -60%;
}
.sub3 {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 60%;
    height: 60%;
    position: absolute;
    top: -5%;
    left: -40%;
}
.amecomi {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: auto;
    height: auto;
}
.widthMax { /* 画面幅いっぱいにしたい要素にあてるクラス */
  margin: 0 calc(50% - 50vw);
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  margin: 1rem 4rem;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-border-shadow {
  padding: calc(1.5rem - 12px) 3rem 1.5rem;

  background: #fff;
}

a.btn-border-shadow:before {
  position: absolute;
  top: -6px;
  left: -6px;

  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;

  border: 3px solid #000;
  border-radius: 0.5rem;
}

a.btn-border-shadow:hover {
  padding: calc(1.5rem - 6px) 3rem;
}

a.btn-border-shadow:hover:before {
  top: 0;
  left: 0;
}

a.btn-border-shadow--color {
  border-radius: 0;
  background: yellow;
}

a.btn-border-shadow--color:before {
  border-radius: 0;
}
img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: darkorange;
    text-decoration-line: none;
}
a:hover { 
    color: #999;
}

#navi a:link { color:#000; }
#navi a:visited { color:#000; }
#navi a:hover { color: #999; }

#navi2 a:link { color:#000; }
#navi2 a:visited { color:#000; }
#navi2 a:hover { color: #999; }

.wait-animation{
  …
  /* ５秒かけてアニメーションする */
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  /* 4秒待ってからアニメーションする */
  -webkit-animation-duration: 4s;
  animation-delay:4s; 
  /* 5回繰り返す 
  -webkit-animation-iteration-count: 5;
  animation-iteration-count: 5; */
}
.wait-animation2{
  …
  /* ５秒かけてアニメーションする */
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  /* 4秒待ってからアニメーションする */
  -webkit-animation-duration: 1s;
  animation-delay:1s; 
  /* 5回繰り返す 
  -webkit-animation-iteration-count: 5;
  animation-iteration-count: 5; */
}
.hover_push {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.hover_push:hover {
  transform: translateY(-0.1875em);
}
.hover4 {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
  background-color: #4CAF50;
  color: #fff;
  display: inline-block;
  padding: 0.6em 2em;
  margin: 0 0 1em;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.hover4:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
  transform: translateY(-0.1875em);
}
/*ヘッダー
-------------------------------------*/
.header {
	display: flex;
    flex-direction: row;
    padding: 2rem 0 0 0;
}
.header-box {
	margin-left: auto;
	margin-top: 8px;
}
.contact-button {
	padding: 1rem;
	border: 2px solid #000;
}
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: #f7f7f7;    
}
nav a {
    padding: 0.5rem;
}

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

#navi {
    display: block !important;
}
}

@media screen and (max-width: 768px){
.header {
	flex-direction: column;
    margin-bottom: 10px;
}
.header #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open,#close  {
    display: block;
    width: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}
.header_logo{
  flex: none;
  width: auto;
  height: 50px;
}
.footer_logo{
  flex: none;
  width: auto;
  margin-bottom: 20px;
  height: 50px;
}
.footer_banner{
  flex: none;
  width: auto;
  height: 120px;
}   
.another_cmp{
  flex: none;
  width: auto;
}   
/*メイン画像
-------------------------------------*/
.mainimg img {
    width: 100vw;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 0 0;
}
section {
	margin: 5rem 0;
	padding: 3rem 0;
}
.gray-back {
	background-color: lightgray;
}
.white-back {
	background-color: white;
	line-height: 2.6;
}
.gray-back2 {
	background-color: #f4f4f4;
}
.inline-block_icon {
    display: inline-block;      /* インラインブロック要素にする */
    margin:  0px 20px;             /* 余白指定 */
    height: 100px;              /* 高さ指定 */
}
.inline-block_banner {
    display: inline-block;      /* インラインブロック要素にする */
    margin:  0px 2%;             /* 余白指定 */
	height: 100px;              /* 高さ指定 */
}
figure.icon-box {
float: left;
padding-right: 20px;
}
/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
}
.catch h2 {
    padding-bottom: 1rem;
}
.under {
    border-bottom: 0.2rem solid #000;
    padding:0 1rem 1rem 1rem;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}
.submitarea{
	margin-top: 4rem 0;
}
/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
    background-color: #f7f7f7;
    padding: 5rem 0;
}
footer h4 {
    border-bottom: 3px solid #ccc;
}

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

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #000;
}
.copyright a {
    color: #fff;
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background: #000;
    color: #fff;
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background: #666;
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
	
/*ヘッダー
-------------------------------------*/
.header-box {
	display: none;
}	
/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}
}
.knowledgeside-sample {
  margin: 0;
}
a:link.pagebacklink,
a:visited.pagebacklink,
a:hover.pagebacklink,
a:active.pagebacklink {
  margin: 0;
  padding: 0;
  font-weight: bold;
  text-decoration: none;
  color: #555;
}
.copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 60px;
}
pre {
	background: #555;
	border: solid 8px #aaa;
	color: #eee;
	margin-bottom: 90px;
	width: 100%;
	box-sizing: border-box;
	overflow: auto;
	border-radius: 0;
}
.parallax {
  width: 100%;
	min-height: 600px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;	
	text-align: center;
	padding-top: 120px;
}

.content {
  min-height: 500px;
  width: 100%;
	padding: 60px;
	background-color: #fff;
	text-align: center;
}
.content2 {
  min-height: 500px;
  width: 100%;
	padding: 60px;
	background-color: #f4f4f4;
	text-align: center;
}
.content3 {
  min-height: 500px;
  width: 100%;
	padding: 60px;
	background-image: url(../img/top3.png);    /* 背景画像指定 */
    background-repeat: repeat;                /* 背景の繰り返し設定 */
	text-align: center;
}
.parallax.bg-01 {
	background-image: url(../img/top1.png);
}
.parallax.bg-02 {
	background-image: url(../img/top2.png);
}
.parallax.bg-03 {
	background-image: url(../img/mainimg.jpg);
}
#formWrap {
	width:100%;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
table.formTable{
	width:100%;
	margin:2rem 0;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
table.infoTable{
	width:100%;
	margin:2rem 0;
	border-collapse:collapse;
}
table.infoTable td,table.infoTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.infoTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
table.infoTable th, table.infoTable td {
	width:auto;
	display:block;
}
table.infoTable th {
	margin-top:5px;
	border-bottom:0;
}
input[type="text"], textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
/* 1. 基本のbox-shadow */
.basic1 {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}
/* 2. insetで内側に影をつける。角丸や円形もOK */
.basic2 {
  box-shadow: inset 0 10px 25px 0 rgba(0, 0, 0, .5);
}
/* 3. 影の色・透明度は任意に設定できる */
.basic3 {
  box-shadow: 0 10px 25px 0 rgba(60, 194, 235, 0.5);
}
/* 4. ぼかしを0にしてボーダーのような表現も可能 */
.basic4 {
  box-shadow: 15px 15px 0px 0 rgb(60, 194, 235);
}
}