@charset "utf-8";

/*
Theme Name: build-connect-support
Author: kenkaku
Description: ビルドコネクトサポートのオリジナルテーマ
Version： 1.0.0
*/

/*cssのリセット*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 16px;
}

body {
  font-family: MS Pゴシック, sans-serif;/*フォントの指定*/
  line-height: 1.4;/*行間の指定*/
  margin: 0;
  padding: 0;
  color: #333;/*サイトのデフォルトとなる文字の色を指定*/
}

/*見出しを全て太字で表示 + 文字色を黒に*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}


/*コンテンツのサイズ指定*/
.header-inner,
.footer-inner,
.container {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.container {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/*PCレイアウト*/
@media (min-width: 821px) {
  .two-columns {
    display: flex;
    flex-direction: row;

    gap: 2.5rem;
  }

  .two-columns .contents {
    flex: 1 1 auto;
  }

  .two-columns .sidebar {
    flex: 0 0 15.625rem;
	  display: none;
  }
}

/*タブレットレイアウト*/
@media (max-width: 820px) {
  .two-columns .contents {
    margin-bottom: 4rem;
  }
}

/*スマホレイアウト*/
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .container {
    padding-top: 1.4rem;
  }
}


.site-title a img {
  height: 2.5rem!important;
	padding-left: 10px;
}

/*ヘッダー*/
.header {
  border-bottom: 1px solid #ddd;
}

.header-inner {
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.site-title {
  line-height: 1;
  display: inline-block;
}

.site-title a {
  display: block;
  text-decoration: none;
}

/*タイトルを画像にする場合*/
.site-title a img {
  display: block;
  width: auto;
  height: 1.75rem;
}

/*タイトルを文字列にする場合*/
.site-title a {
  font-weight: bold;
  height: 1.75rem;
  color: #000;
}

.header-nav li a {
  display: block;
  text-decoration: none;
}

@media(min-width: 821px) {
  .navbutton {
    display: none;
  }

  .header-nav-wrap {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    margin-left: 15rem;/*タイトル分の余白をあけておく*/
    transform: translateY(-50%);
  }

  .header-nav {
    font-size: 0;
  }

  .header-nav li {
    font-size: 1rem;
    display: inline-block;
    margin-left: 1.5rem;
    padding: .25rem 0;
  }

  .header-nav li a {
    font-weight: 500;
    color: #000;
  }

  .header-nav li a:hover {
    opacity: .6;
  }
}

@media(max-width: 820px) {
  .navbutton {
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 1.5rem;
    display: block;
    cursor: pointer;
    transform: translateY(-50%);
    border: 0;
    background-color: transparent;
  }

  .navbutton:focus {
    outline: 0;
  }

  .navbutton::after {
    font-family: "Material Symbols Outlined";
    font-size: 2.5rem;
    content: "\e5d2";
    color: #000;
  }

  .menu-active .navbutton::after {
    content: "\e5cd";
    color: #fff;
  }

  .header-nav-wrap {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    width: 100%;
    height: 100vh;
    background-color: rgb(50 50 50 / 80%);
  }

  .header-nav {
    padding: 6rem 0;
  }

  .header-nav li a {
    font-weight: 400;
    padding: 0.7rem;
    text-align: center;
    color: #fff;
  }
}

/*フッター*/
.footer {
  background-color: #000;
}

.footer-nav-wrap {
  padding: .75rem 1rem;
  background-color: #f5f5f5;
}

.footer-nav ul {
  font-size: 0;
  text-align: center;
}

.footer-nav ul li {
  font-size: .875rem;
  display: inline-block;
  margin-right: 1rem;
  padding: .25rem 0;
}

.footer-nav ul li:last-child {
  margin-right: 0;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #333;
}

.copyright {
  padding: 1rem;
  text-align: center;
}

.copyright p {
  font-size: .875rem;
  color: #fff;
}


/*投稿*/
.article-head .article-info {
  margin-bottom: .5rem;
}

.article-head .article-info .article-cat {
  display: inline-block;
  vertical-align: middle;
}

.article-head .article-info .article-cat a {
  font-size: .875rem;
  line-height: 1;
  display: inline-block;
  margin-right: .5rem;
  padding: .375rem .5rem;
  text-decoration: none;
  color: #fff;
  background-color: #03162f;
}

.article-head .article-info .article-date {
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  color: #888;
}

.article-head .article-info .article-date i {
  font-size: 1.25rem;
  position: relative;
  top: .25rem;
}

.article-head h1 {
  font-size: 1.5rem;
  margin: 0 0 2rem;
  letter-spacing: 1px;
}

.article-head .article-img {
  margin-bottom: 2rem;
}

.article-head .article-img img {
  display: block;
	width:100%;
}

.article-foot .article-tag {
  margin-bottom: 1rem;
  text-align: right;
}

.article-foot .article-tag ul {
  list-style: none;
}

.article-foot .article-tag ul li {
  font-size: .9rem;
  display: inline-block;
  margin-right: .5rem;
  vertical-align: middle;
}

.article-foot .article-tag ul li:last-child {
  margin-right: 0;
}

.article-foot .article-tag ul li a {
  line-height: 1;
  display: block;
  padding: .25rem .5rem;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
}

.article-foot .article-tag ul li a:hover {
  opacity: .6;
}

.article-foot .article-author {
  font-weight: 500;
  line-height: 1;
  text-align: right;
  vertical-align: middle;
}

.article-foot .article-author i {
  font-size: 1.25rem;
  position: relative;
  top: .25rem;
}

@media(max-width: 480px) {
  .article-head h1 {
    font-size: 1.3rem;
  }
}

/*エディタコンテンツ*/
.editor-content p code,
.editor-content p img,
.editor-content p iframe,
.editor-content p object,
.editor-content figure img,
.editor-content figure iframe,
.editor-content figure video,
.editor-content figure audio,
.editor-content pre code {
  margin-bottom: 0;
}

.editor-content th,
.editor-content td {
  border-color: #ddd;
}

.editor-content p,
.editor-content ul,
.editor-content ol,
.editor-content table,
.editor-content dl,
.editor-content blockquote,
.editor-content pre,
.editor-content code,
.editor-content img,
.editor-content picture img,
.editor-content figure,
.editor-content iframe,
.editor-content object,
.editor-content hr,
.editor-content video,
.editor-content audio {
  margin-bottom: 2.5em;
  letter-spacing: 1px;
}

.editor-content b,
.editor-content strong {
  font-weight: bold;
}

.editor-content a {
  text-decoration: underline;
}

.editor-content ul:not([class]) {
  padding-left: 1.25em;
  list-style: disc;
}

.editor-content ol:not([class]) {
  padding-left: 1.875em;
  list-style: decimal;
}

.editor-content table {
  width: 100%;
}
.editor-content table thead {
  border: none;
}
.editor-content table th,
.editor-content table td {
  box-sizing: border-box;
  padding: .625em;
  text-align: left;
  vertical-align: middle;
 //* border: 1px solid #ddd; *//
}
.editor-content img,
.editor-content iframe,
.editor-content object,
.editor-content video,
.editor-content audio {
  line-height: 1;
}
.editor-content figure {
  max-width: 100%;
}

.editor-content iframe,
.editor-content object {
  width: 100%;
}

.editor-content blockquote {
  line-height: 1.5;
  position: relative;
  padding: 3.125em 1.875em .625em;
  color: #555;
  background-color: #f1f4f4;
}

.editor-content blockquote::before {
  font-family: "Material Symbols Outlined";
  font-size: 1.875em;
  font-weight: 900;
  position: absolute;
  top: .3125em;
  left: .9375em;
  content: "\e244";
  color: #ccc;
}

.editor-content blockquote p,
.editor-content blockquote cite {
  margin-bottom: 1em;
}

.editor-content blockquote p cite {
  margin-bottom: 0;
}
.editor-content blockquote cite {
  font-size: .6125em;
  display: block;
  text-align: right;
}

.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5 {
  line-height: 1.4;
  margin: 3rem 0 2rem;
  letter-spacing: 1px;
}

.editor-content h2 {
  font-size: 1.875rem;
  padding: .75rem 0;
  border-bottom: solid 5px #03162f;
}

.editor-content h3 {
  font-size: 1.5rem;
  padding: 0 1rem;
  border-left: solid .375rem #415671;
  background: transparent;
}

.editor-content h4 {
  font-size: 1.25rem;
}

.editor-content h5 {
  font-size: 1.125rem;
}

@media (max-width: 480px) {
  .editor-content p,
  .editor-content ul,
  .editor-content ol,
  .editor-content table,
  .editor-content dl,
  .editor-content blockquote,
  .editor-content pre,
  .editor-content code,
  .editor-content img,
  .editor-content picture img,
  .editor-content figure,
  .editor-content iframe,
  .editor-content object,
  .editor-content hr,
  .editor-content video,
  .editor-content audio {
    margin-bottom: 1.5em;
  }

  .editor-content th,
  .editor-content td {
    padding: .625em;
  }

  .editor-content blockquote {
    padding: 2.5em 1.875em 1.875em;
  }

  .editor-content blockquote::before
  .editor-content blockquote::after {
    font-size: 1.25em;
  }

  .editor-content blockquote p,
  .editor-content blockquote cite {
    margin-bottom: .625em;
  }

  .editor-content h2,
  .editor-content h3,
  .editor-content h4,
  .editor-content h5 {
    margin: 2rem 0;
  }

  .editor-content h2 {
    font-size: 1.5rem;
  }
  .editor-content h3 {
    font-size: 1.375rem;
  }
  .editor-content h4 {
    font-size: 1.25rem;
  }
  .editor-content h5 {
    font-size: 1rem;
  }
  .editor-content h6 {
    font-size: .9375rem;
  }
}


@media (max-width: 332px) {
  .editor-content h2 {
    font-size: 1.25rem;
  }
  .editor-content h3 {
    font-size: 1.125rem;
  }
  .editor-content h4 {
    font-size: 1rem;
  }
  .editor-content h5 {
    font-size: .9375rem;
  }
  .editor-content h6 {
    font-size: .875rem;
  }
}

/*サイドバーウィジェット*/
.sidebar-wrapper {
  margin-bottom: 2rem;
}

.sidebar .sidebar-title,
.sidebar .wp-block-heading {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 1rem;
  padding: .375rem;
  letter-spacing: 1px;
  border: 0;
  border-bottom: .1875rem solid #1d2d43;
}

.sidebar a {
  text-decoration: none;
  color: #333;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  border-bottom: 1px solid #ddd;
}

.sidebar li a {
  display: block;
  padding: .5rem;
}

.sidebar select {
  display: block;
  width: 100%;
  padding: .5rem;
  border: 1px solid #ddd;
}

/*ページタイトル*/
.page-title-wrap {
  background-color: #1d2d43;
}

.page-title-wrap .page-title {
  position: relative;
  max-width: 1080px;
  height: 15rem;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}

.page-title-wrap .page-title .text-warp {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  width: calc(100% - 3rem);
  transform: translateY(-50%);
  text-align: center;
}

.page-title-wrap .page-title .text-warp h1 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
}

@media(max-width: 820px) {
  .page-title-wrap .page-title {
    height: 20rem;
    margin-bottom: 1rem;
  }

  .page-title-wrap .page-title .text-warp h1 {
    font-size: 2.75rem;
  }
}

@media(max-width: 480px) {
  .page-title-wrap .page-title {
    height: 12rem;
    margin-bottom: 0;
  }

  .page-title-wrap .page-title .text-warp h1 {
    font-size: 2rem;
  }
}

/*記事アーカイブ*/
.article-list {
  display: grid;

  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.article-list .article-item {
  position: relative;
  z-index: 1;
  border: 1px solid #ddd;
}

.article-list .article-item a {
  display: block;
  text-decoration: none;
  color: #333;
}

.article-list .article-item img {
  display: block;
  width: 100%;

  aspect-ratio: 3/2;
  object-fit: cover;
}

.article-list .article-item .text-wrap {
  padding: 1rem;
}

.article-list .article-item .article-cat {
  font-size: .875rem;
  line-height: 1;
  display: inline-block;
  margin-right: .5rem;
  padding: .25rem .5rem;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
  background-color: #03162f;
}

.article-list .article-item .article-date {
  font-size: .875rem;
  display: inline-block;
  vertical-align: middle;
  color: #888;
}

.article-list .article-item .article-date i {
  font-size: 1rem;
  position: relative;
  top: .1875rem;
  margin-right: .125rem;
}

.article-list .article-item .text-wrap h2 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: .5rem;
}

@media(max-width: 480px) {
  .article-list {
    display: block;

    gap: none;
    grid-template-columns: none;
  }

  .article-list .article-item {
    margin-bottom: 2rem;
  }
}


/*ページネーション*/
.pagination {
  margin: 4rem 0;
  text-align: center;
}

.pagination ul {
  font-size: 0;
}

.pagination ul li {
  font-size: 1rem;
  display: inline-block;
  margin-right: .75rem;
}

.pagination ul li:last-child {
  margin-right: 0;
  border: 0;
}

.pagination ul li a,
.pagination ul li .current {
  font-weight: 600;
  line-height: 1;
  display: block;
  padding: .75rem .875rem;
  border: 1px solid #ddd;
}

.pagination ul li a {
  text-decoration: none;
  color: #555;
}

.pagination ul li .current {
  color: #fff;
  background-color: #1d2d43;
}

.pagination ul li .prev,
.pagination ul li .next {
  padding: .75rem .5rem;
  border: 0;
}

.pagination ul li i {
  font-size: 1rem;
  color: #1d2d43;
}

@media(max-width: 480px) {
  .pagination {
    margin: 3rem 0;
  }

  .pagination ul li a {
    padding: .5rem;
  }
}

/*home*/
.home-fv-wrap {
  margin-bottom: 2rem;
}

.home-fv-wrap img {
  display: block;
  width: 100%;
  height: min(31.25rem, 46.5vw);

  object-fit: cover;
}

@media(min-width: 1921px) {
  .home-fv-wrap img {
    height: auto;
  }
}

@media(min-width: 821px) {
  .home-article-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.centerbox{text-align:center;}


.vision {
  padding-top: 100px;
	padding-bottom: 100px;
  text-align: center;
}
.vision h2 {
  font-size: xx-large;
	font-weight:600;
  padding-bottom: 0px;
  width: 70%;
  margin: auto;
}

.vision p {
  font-size: x-large;
	  padding-top: 50px;
  padding-bottom: 50px;
  width: 70%;
  margin: auto;
}

.service {padding-bottom: 100px;text-align: center;padding-top: 100px;}
.service h2 {
  font-size: xx-large;
	font-weight:600;
  padding-bottom: 0px;
  width: 70%;
  margin: auto;
}

.service p {
  font-size: x-large;
	  padding-top: 50px;
  padding-bottom: 50px;
  width: 70%;
  margin: auto;
}
@media screen and (max-width:500px) {
.vision h2 {font-size: x-large; }
.vision p {font-size: large!important;width: 90%!important;}
 .vision p:nth-child(2) {font-size: large!important;}
.service h2 {font-size: x-large; }
.service p {font-size: large!important;width: 90%!important;}
 .service p:nth-child(2) {font-size: large!important;}
.flex-item h3 {font-size: 1.2em!important;}
.flex-item p {font-size: large!important;}
}
@media screen and (max-width:820px) {
.vision p:nth-child(2) {
  font-size: x-large;
  padding-bottom: 50px;
  width: 90%;
  margin: auto;
}	
}

.news h2 {
  font-size: x-large;
  font-weight: 600;
  padding-bottom: 0px;
  width: 70%;
  margin: auto;
}
.newsblock {
  padding-bottom: 100px;
}

.news {
  padding-top: 100px;
  text-align: center;
}
.news p {
  font-size: x-large;
  padding-bottom: 50px;
	font-weight:600;
}
.newsitem {
  display: flex;
  justify-content: center;
		flex-wrap: wrap;
}

.news-block {
  width: 30%;
  margin-right: 2.5%;
	padding-bottom: 10px;
}
.news-block a{
 text-decoration:none;
}
@media screen and (max-width:415px) {
.news-block {
  width: 100%!important;
  margin: 0px!important;

}
  }

.sns {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin-top: 20px;
  border-top: 1px #e1e0e0 solid;
}
li {
  list-style: none;
}

.sns ul {
  display: flex;
  justify-content: center;
}
.sns li {
  list-style: none;
  padding: 10px;
  font-size: smaller;
}
.sns a {
  text-decoration: none;
	    color: #333!important;
}
	.tel a {
    pointer-events: none;
    text-decoration: none;
    color: #333;
 }


.flex-container2 {
  display: flex;
  flex-wrap: wrap;
}
.flex-container1 {
  display: flex;
  flex-wrap: wrap;
	flex-direction:row-reverse;
}
.flex-item {
  width: 50%;
  height: 420px;
  align-content: center;
	font-size: large;
	background-color: #e1d8d8;
}
.flex-item:nth-child(2){
	font-size: large;
  width: 50%;
  height: 420px;
  align-content: center;
	background-color: #efefef;
}
.flex-item h3 {
  font-size: x-large;
	font-weight:400;
  padding: 50px;
  text-align: center;
}
.flex-item p {
  font-size: large;
padding: 0 50px;
}
.flex-item img {
object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width:430px) {
.flex-item {width: 100%!important;}
}

.footer-logo {
  text-align: center;
	padding-top: 20px;
}
.access {
  text-align: center;
  padding: 100px;
  font-weight: 600;
}

.access h2 {
  font-size: x-large;
  font-weight: 600;
  padding-bottom: 0px;
  width: 70%;
  margin: auto;
}




.contact {
  padding: 50px 0px 0px 0px;
  background-color: #eee;
  display: flex;
  justify-content: center;
}
@media screen and (max-width:420px) {
.contact-item {
 padding: 50px 0px 0px 0px;
	font-size:small!important;}
	.tel {
  text-align: center;
  font-size: x-large!important;
  font-weight:900;

}
}
.tel {
  text-align: center;
  font-weight:900;
}
.tel a {
    pointer-events: none;
    text-decoration: none;
    color: #333;
 }

.contact-item {
  padding: 0px 0px;
	text-align:center;
}

.jusho {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 0px 10px 0px;
  justify-content: center;
  background-color: #333;
  color: #FFF;
}.jusho li {
  margin-right: 15px;
}
.jusho li a {
  text-decoration: none;
    color: #fff;
}

.number {
  font-size: xx-large;
  font-weight: 900;
background: linear-gradient(90deg, #e1d8d8 0%, #d2578b 40%, #e8afe7 80%);
    background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 20px;
}

/*メニューをページ下部に固定*/
#sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: 0px;
   font-size: 0;
   opacity: 0.9;
   z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul{
   display: flex;
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}

#sp-fixed-menu li{
   justify-content: center;
   align-items: center;
   width: 50%;
   padding:0;
   margin:0;
   font-size: 14px;
   border-right: 1px solid #fff;
}

/*左側メニューを緑色に*/
#sp-fixed-menu li:first-child{
   background: #7d5279;
}

/*左側メニューをオレンジ色に*/
#sp-fixed-menu li:last-child{
   background: #7d5279;
}

/*ボタンを調整*/
#sp-fixed-menu li a {
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  padding: 20px 0px;
  font-weight: 600;
  text-decoration: none;
}

/*PCの場合にはメニューを表示させない*/
@media (min-width: 768px) {
   .for-sp{display:none;}
}
@media (max-width: 768px) {
.copyright {padding-bottom: 80px;}
}


/*ContactForm7カスタマイズ*/
table.CF7_table{
	width:80%;
	margin:0 auto;
	border: 0px solid #eee;
}

table.CF7_table tr{
	border-top: 0px solid #e5e5e5;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table{
	display:table;
}

/*入力欄*/
.CF7_table input, .CF7_table textarea {
	border: 1px solid #d8d8d8;
}

.CF7_table ::placeholder {
	color:#797979;
}

/*「必須」文字*/
.CF7_req{
	font-size:0.5em;
	padding: 5px;
	background: #a47ba8;
	color: #fff!important;
	border-radius: 3px;
	margin-right:1em;
}

/*「任意」文字*/
.CF7_unreq{
	font-size:0.5em;
	padding: 5px;
	background: #bdbdbd;/*グレー*/
	color: #fff;
	border-radius: 1px;
	margin-right:1em;
}

/* タイトル列 */
@media screen and (min-width: 768px){
	.CF7_table th{
	width:30%;/*横幅*/
	background-color: #e1d8d8;/*イエロー*/
	}
}

/* レスポンシブ */
@media screen and (max-width: 768px){
	table.CF7_table{
	width:100%!important;
	}
	.CF7_table tr, .CF7_table td, .CF7_table th{
	display: block;
	width: 100%;
	line-height:2.5em!important;
	}
	.CF7_table td,{text-align:center!important;}
	.CF7_table th{
		background-color:#e1d8d8;
	}
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
  background-color: #1d2d43;
  border: 0 !important;
  color: #fff;
  font-size: 1.2em !important;
  font-weight: bold;
  margin: 0 auto;
  padding: 10px 50px;
}

.CF7_btn{
	text-align:center;
	margin-top:20px;
}

.wpcf7-spinner{
	width:0;
	margin:0;
}
.CF7_table p {
  margin-bottom: 0px;
  padding-left: 1em;
  padding-top: 1em;
}
.CF7_table th {
font-size: small;
  font-weight: 400;
	border:none!important;
}
.CF7_table td {
	border:none!important;
	text-align: center!important;
}
.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  font-size: small;
}.CF7_table {
background-color: #e1d8d8;
}

.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  padding: 10px;
}
.wpcf7-form-control.wpcf7-text {
  padding: 10px;
}
.company {
  display: flex;
  justify-content: center;
	width:530px;
	margin:0 auto;
	flex-wrap: wrap;
}
.com-item1 {
  flex-basis: 20%;
  border: solid 1px #eee;
  padding: 30px;
  margin-right: 3px;
  margin-bottom: 3px;
  background-color: #efefef;
}
@media(max-width: 821px) {
	.com-item1 {width: 100%!important; padding: 15px!important;flex-basis:100%!important;}
		.com-item2 {width: 100%!important; padding: 15px!important;flex-basis:100%!important;}
	.company {max-width:100%!important;}
}
.com-item2 {
  flex-basis: 50%;
  border: solid 1px #eee;
  padding: 30px;
  margin-right: 3px;
  margin-bottom: 3px;
}
html {
	scroll-behavior: smooth;
}




/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:4s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}

/*==================================================
パタッ
===================================*/


/* 下へ */
.flipDown{
animation-name:flipDownAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipDownAnime{
  from {
    transform: perspective(2500px) rotateX(100deg);
  opacity: 0;
  }

  to {
    transform: perspective(2500px) rotateX(0);
  opacity: 1;
  }
}


/* 左へ */
.flipLeft{
animation-name:flipLeftAnime;
animation-duration:1s;
animation-fill-mode:forwards;
perspective-origin:left center;
opacity:0;
}

@keyframes flipLeftAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
  opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}


/* 左上へ */
.flipLeftTop{
animation-name:flipLeftTopAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipLeftTopAnime{
  from {
   transform: translate(-20px,80px) rotate(-15deg);
  opacity: 0;
  }

  to {
   transform: translate(0,0) rotate(0deg);
  opacity: 1;
  }
}

/* 右へ */
.flipRight{
animation-name:flipRightAnime;
animation-duration:1s;
animation-fill-mode:forwards;
perspective-origin:right center;
opacity:0;
}

@keyframes flipRightAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
  opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}

/* 右上へ */
.flipRightTop{
animation-name:flipRightTopAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipRightTopAnime{
  from {
   transform: translate(-20px,80px) rotate(25deg);
   opacity: 0;
  }

  to {
   transform: translate(0,1) rotate(0deg);
  opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.flipDownTrigger,
.flipLeftTrigger,
.flipLeftTopTrigger,
.flipRightTrigger,
.flipRightTopTrigger{
    opacity: 0;
}

/*==================================================
くるっ
===================================*/


/* X 軸（縦へ） */
.rotateX{
  animation-name:rotateXAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes rotateXAnime{
  from{
    transform: rotateX(0);
    opacity: 0;
    }
  to{
    transform: rotateX(-360deg);
    opacity: 1;
    }
}

/*　Y軸（横へ） */
.rotateY{
  animation-name:rotateYAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes rotateYAnime{
  from{
    transform: rotateY(0);
    opacity: 0;
    }
  to{
    transform: rotateY(-360deg);
    opacity: 1;
    }
}

/* Z 軸（左へ） */
.rotateLeftZ{
  animation-name:rotateLeftZAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes rotateLeftZAnime{
  from{
    transform: rotateZ(0);
    opacity: 0;
    }
  to{
    transform: rotateZ(-360deg);
    opacity: 1;
    }
}

/*　Z 軸（右へ） */
.rotateRightZ{
  animation-name:rotateRightZAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes rotateRightZAnime{
  from{
    transform: rotateZ(0);
    opacity: 0;
    }
  to{
    transform: rotateZ(360deg);
    opacity: 1;
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.rotateXTrigger,
.rotateYTrigger,
.rotateLeftZTrigger,
.rotateRightZTrigger{
    opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/

/* 拡大 */
.zoomIn{
  animation-name:zoomInAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
  transform: scale(0.6);
  opacity: 0;
  }

  to {
    transform: scale(1);
  opacity: 1;
  }
}

/* 縮小 */
.zoomOut{
  animation-name:zoomOutAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
}

@keyframes zoomOutAnime{
  from {
  transform: scale(1.2);
  opacity: 0;
  }

  to {
    transform:scale(1);
  opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.zoomInTrigger,
.zoomOutTrigger{
    opacity: 0;
}

/*==================================================
じわっ
===================================*/

/* ぼかしから出現 */
.blur{
  animation-name:blurAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.blurTrigger{
    opacity: 0;
}

/*==================================================
にゅーん
===================================*/

/* 滑らかに変形して出現 */
.smooth{
  animation-name:smoothAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  　transform-origin: left;
  opacity:0;
}

@keyframes smoothAnime{
  from {
  transform: translate3d(0, 100%, 0) skewY(12deg);
  opacity:0;
  }

  to {
  transform: translate3d(0, 0, 0) skewY(0);
  opacity:1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.smoothTrigger{
    opacity: 0;
}

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/

/*枠線が伸びて出現*/

.lineTrigger{
  position: relative; /* 枠線が書かれる基点*/
  opacity:0;
}

.lineTrigger.lineanime{
  animation-name:lineAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes lineAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*上下線*/
.lineTrigger::before,
.lineTrigger::after{
  position: absolute;
  content:"";
  width:0;
  height:1px;
  background:#333;/* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after{
  position: absolute;
  content:"";
  width: 1px;
  height:0;
  background:#333;/* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
  top:0;
  left:0;
}

.lineTrigger.lineanime::before {
  animation: lineAnime .5s linear 0s forwards;/*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before{ 
  top:0;
  right:0;
}

.lineTrigger.lineanime .line2::before {
  animation: lineAnime2 .5s linear .5s forwards;/*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after { 
  bottom:0;
  right:0;
}

.lineTrigger.lineanime::after {
  animation: lineAnime .5s linear 1s forwards;/*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after{ 
  bottom:0;
  left:0;
}

.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 .5s linear 1.5s forwards;/*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
  0% {width:0%;}
    100%{width:100%;}
}

@keyframes lineAnime2 {
  0% {height:0%;}
    100%{height:100%;}
}

/*枠線内側の要素*/

.lineTrigger.lineanime .lineinappear{
  animation: lineInnerAnime .5s linear 1.5s forwards;/*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0;/*初期値を透過0にする*/ 
}

@keyframes lineInnerAnime{
  0% {opacity:0;}
    100% {opacity:1;}
}


/*==================================================
シャッ（背景色が伸びて出現）
===================================*/

/*背景色が伸びて出現（共通）*/
.bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;/*　はみ出た色要素を隠す　*/
  opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
  animation-name:bgextendAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

/*左から*/
.bgLRextend::before{
  animation-name:bgLRextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

/*右から*/
.bgRLextend::before{
  animation-name:bgRLextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgRLextendAnime{
  0% {
    transform-origin:right;
    transform:scaleX(0);
  }
  50% {
    transform-origin:right;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:left;
  }
  100% {
    transform-origin:left;
    transform:scaleX(0);
  }
}

/*下から*/
.bgDUextend::before{
  animation-name:bgDUextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgDUextendAnime{
  0% {
    transform-origin:bottom;
    transform:scaleY(0);
  }
  50% {
    transform-origin:bottom;
    transform:scaleY(1);
  }
  50.001% {
    transform-origin:top;
  }
  100% {
    transform-origin:top;
    transform:scaleY(0);
  }
}

/*上から*/
.bgUDextend::before{
  animation-name:bgUDextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgUDextendAnime{
  0% {
    transform-origin:top;
    transform:scaleY(0);
  }
  50% {
    transform-origin:top;
    transform:scaleY(1);
  }
  50.001% {
    transform-origin:bottom;
  }
  100% {
    transform-origin:bottom;
    transform:scaleY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger{
    opacity: 0;
}


/*========= レイアウトのためのCSS ===============*/

.wrapper{
  overflow: hidden;
}

.flex{
  display:flex;
  flex-wrap: wrap;
}

.box{
  width: 220px;
  padding: 20px;
    margin: 0 20px 20px 20px;
  background: #666;
  color: #fff;
  box-sizing:border-box;
}

.bgextend,
.lineTrigger{
  width: 220px;
  padding: 20px;
    margin: 0 20px 20px 20px;
  box-sizing:border-box;
}



/*==================================================
アニメーション設定
===================================*/

/* アニメーションの回数を決めるCSS*/

.count2{  
  animation-iteration-count: 2;/*この数字を必要回数分に変更*/
}

.countinfinite{  
  animation-iteration-count: infinite;/*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time05{  
  animation-delay: 0.5s;
}

.delay-time1{  
  animation-delay: 1s;
}

.delay-time15{  
  animation-delay: 1.5s;
}

.delay-time2{  
  animation-delay: 2s;
}

.delay-time25{  
  animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/

.change-time05{  
  animation-duration: 0.5s;
}

.change-time1{  
  animation-duration: 1s;
}

.change-time15{  
  animation-duration: 1.5s;
}

.change-time2{  
  animation-duration: 2s;
}

.change-time25{  
  animation-duration: 2.5s;
}
/* ページtop*/
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 0px;
  bottom: 0px;
  background: #fff;
  border: solid 2px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
@media(max-width: 768px) {
/* ページtop*/
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 0px;
  bottom: 60px!important;
  background: #fff;
  border: solid 2px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}	
}
.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}

.menu span {
  font-size: 10px;
}
.menu{text-align:center;}
.menu a{
  line-height: 1em;
}




.btn-circle {
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  font-weight: 700;
  background-color: #594f4f;
  letter-spacing: 1.5px;
  width: 220px;
  text-align: center;
  padding: 12px 24px;
  position: relative;
  opacity: 1 !important;
  transition: all 0.4s;
  overflow: hidden;
  border: none;
}
.btn-circle:before {
  content: "";
  display: block;
  width: 220px;
  height: 220px;
  background-color: #FFF;
  border-radius: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-100%, 100%);
  transition: all 0.4s;
  pointer-events: none;
}
.btn-circle:after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #FFF;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  transition: all 0.4s;
}
.btn-circle:hover {
  color: #594f4f;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-circle:hover:after {
  width: 0;
  height: 0;
  border-radius: 0;
  background-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #FFF;
  right: 12px;
}
.btn-circle:hover:before {
  transform: translate(-12px, 60px);
}
.btn-circle span {
  position: relative;
  z-index: 99;
}

.qr-code {
  padding-top: 20px;
	width:150px
}


/*==================================================
スライダーのためのcss
===================================*/

.sticky {
position: -webkit-sticky; /* safari対応 */
position: sticky;
top: 0; /* 上からの距離 */
}







.slider{width: 100%;position: relative;z-index: -1;}
@media(max-width: 530px) {.s-items{padding-bottom: 150%!important;}}
.s-items{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 56.25%;
}
.s-item{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  opacity: 0;
  transition: opacity .6s ease-in-out;
}
.current{
  opacity: 1;
}
.s-item img{
  width: 100%;

  object-fit: cover;
}
.buttons{
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
	pointer-events: none;
}
.button{
  width:32px;
  height:32px;
  border: none;
  outline: none;
  padding:0;
  background: transparent center no-repeat;
  cursor: pointer;
  opacity:.4;
  &.prev{
    background-image: url(https://support.buildconnect.net/demo-hp/wp-content/uploads/2024/08/ico_next_b32.png);
  }
  &.next{
    background-image: url(https://support.buildconnect.net/demo-hp/wp-content/uploads/2024/08/ico_next_b32-1.png);
  }
  &:hover{
    opacity:.8;
  }
}


.pc-img { display: inline-block; }
.sp-img { display: none; }
 
@media only screen and (max-width: 530px) {
    .pc-img { display: none; }
    .sp-img { display: inline-block; }
}
.ac-title {
  color: #fff;
}
.nameup {
  text-transform: uppercase;
}


.page-title-wrap {
  width: 100%;
  background: linear-gradient(45deg,#ece1d7,#1f0b37,#a8127b);/*グラデーションを定義*/
  background-size: 200% 200%;/*サイズを大きくひきのばす*/
  animation: bggradient 20s ease infinite;
	z-index: -1;
  position: relative;
}

@keyframes bggradient{
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/*==================================================
メニューサブ項目css
===================================*/


	
@media(min-width: 821px) {
	
  .header-nav li {
	
    position: relative;
	
  }
	
 
	
  .header-nav .sub-menu {
	
    position: absolute;
	
    top: 35px;
	
    left: 0;
	
    overflow: hidden;
	
    width: 200px;
	
    height: 0;
	
    transition: .8s;
	
    transform: translateY(-8%);
	
    opacity: 0;
	
  }
	
 
	
  .header-nav li:hover .sub-menu {
	
    height: auto;
	
    transform: translateY(0);
	
    opacity: 1;
	
  }
	
 
	
  .header-nav .sub-menu li {
	
    display: block;
	
    margin-left: 0;
	
    padding: 0;
	
    border-bottom: 1px solid #ddd;
	
    background-color: rgba(251, 239, 239, 0.9);
	
  }
	
 
	
  .header-nav .menu-item-has-children:nth-last-child(1) .sub-menu,
	
  .header-nav .menu-item-has-children:nth-last-child(2) .sub-menu {
	
    right: 0;
	
    left: auto;
	
  }
	
 
	
  .header-nav .sub-menu li a {
	
    padding: 1em;
	
  }
	
}
	
 
	
/*スマホ用レイアウト*/
	
@media(max-width: 820px) {
	
  .header-nav li a {
	
    text-align: left;
	
  }
	
 
	
  .header-nav .menu-item-has-children > a {
	
    padding-bottom: 1em;
	
  }
	
 
	
  .header-nav .sub-menu li a {
	
    position: relative;
	
    padding: 1rem 1rem 0.5rem 2.75em;
	
  }
	
 
	
  .header-nav .sub-menu li a::before {
	
    position: absolute;
	
    top: 1.25em;
	
    left: 1.75em;
	
    display: block;
	
    width: .5em;
	
    height: .5em;
	
    content: "";
	
    border-bottom: 1px solid #fff;
	
    border-left: 1px solid #fff;
	
  }
	
}

@media(max-width: 820px) {
	.item-course {
  width: 90%!important;
  text-align: center;
  border: solid 1px #eee;
  padding: 10px 0px 0px 0px;
  margin: 3%;
  background-color: #f7f6d8;
}	
}

.course {
  display: flex;
  justify-content: center;
	flex-wrap: wrap;
  padding-top: 100px;
}
.item-course {
  width: 40%;
  text-align: center;
  border: solid 1px #eee;
  padding: 10px 0px 0px 0px;
  margin: 3%;
  background-color: #f7f7f3;
}
.kengaku {
  font-size: x-large;
  padding: 30px;
}

.order {
  width: 100%;
  background-color: #e1d8d8;
  color: #5e5656;
  border-radius: 0px;
  padding: 30px 0px;
  margin: 50px 0px 0px 0px;
	font-weight: 400;
  font-size: x-large;
}
.btn {
  border: solid 1px #6c5d5d;
  padding: 30px 0px;
  width: 50%;
  margin: 50px auto;
}
.cont {
  line-height: 35px;
  margin: 20px 0px 50px 0px;
}
.course-tit {
  font-size: x-large;
  padding-top: 50px;
}


.ninki-oth {
  margin: 16px auto;
    margin-top: 16px;
  text-align: center;
  margin-top: 100px;
  line-height: 50px;
  font-size: large;
}
.ninki-oth ul {
	padding-left: 0;
	list-style: none;
	display: inline-block;
}
.ninki-oth li {
	text-align: left;
}
.ninki-oth ul {
  border: solid 2px #e8afe7;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
  margin-top: 2em;
}
.ninki-oth ul li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;
}
.ninki-oth ul li:before {
  /*リストのアイコン*/
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  position: absolute;
  left : 1em; /*左端からのアイコンまでの距離*/
  color: #e8afe7; /*アイコン色*/
}
.ninki-oth ul li:after {
  /*タブ*/
  background: #e8afe7;
  color: #fff;
  font-family: "Font Awesome 5 Free",'Avenir','Arial',sans-serif;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: '\f0a7  Check';/*アイコンコード＋文字*/
  letter-spacing: 0.05em;/*字間*/
}

.ichida {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.ichida-item {
  width: 50%;
}

.kyoyu {
  border: solid 1px #999;
  margin-top: 30px;
  padding: 30px;
}