/*共通*/
a {
    text-decoration: none;
}
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
body {
    margin: 0;
}
button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
.single-ttl {
    width: 100%;
    background-color: #fbba67;
    padding: 10px 0;
}
.single-ttl h2 {
    width: 100%;
    margin: 0 auto;
    font-size: 20px;
    padding: 0 10px;
    color: #fff;
    box-sizing: border-box;
}
/*ヘッダー*/
header {
    background-color: #F6F0DE;
}
header .header-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 25px 10px;
    box-sizing: border-box;
}
header .header-inner .header-l {
    width: calc((100% - 100px) / 2);
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    column-gap: 30px;
}
header .header-inner .header-l img {
    width: 250px;
    height: 56px;
    object-fit: cover;
    margin: auto 0;
}
header .header-inner .header-l a:hover {
    cursor: pointer;
}
header .header-inner .header-l p {
    font-size: 14px;
    color: #ea5319;
    font-weight: bold;
    margin: auto 0;
}
header .header-inner .header-r {
    width: calc((100% - 100px) / 2);
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    column-gap: 30px;
}
header .header-inner .header-r #searchform {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
header .header-inner .header-r input {
    width: calc(100% - 150px);
    height: 56px;
    margin: auto 10px;
    border: none;
    border-radius: 15px;
    padding: 0 10px;
}
header .header-inner .header-r img {
    width: 20px;
    height: 20px;
    margin: auto 0;
}
/*ハンバーガー*/
.hamburger-menu {
    display: none;
}
.hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #242424;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}
.hamburger-menu__bar:first-child {
    top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
    top: 24px;
}
.hamburger-menu__bar:last-child {
    top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
}
/*メイン*/
#main-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    margin: 30px auto;
    padding: 0 10px;
    box-sizing: border-box;
}
/*サイドバー*/
#main-wrap .side_bar {
    width: 20%;
    padding-right: 10px;
	order:1;
}
.accordion {
    max-width: 400px;
    position: relative;
    width: 100%;
    border: 1px solid #fbba67;
}
.accordion h2 {
    font-size: 16px;
    background-color: #fbba67;
    margin: 0;
    padding: 15px 0;
    text-align: center;
    color: #fff;
}
.accordion-container p {
    text-align: center;
    padding: 10px 0;
    margin: 0;
}
.accordion-container .faq,
.accordion-container .contact {
    background-color: #fbba67;
    border-radius: 5px;
    width: 90%;
    margin: 20px auto;
}
.accordion-container .faq-link,
.accordion-container .contact-link {
    color: #fff;
}

.accordion .accordion-item:nth-last-child() {
    border: none;
}
.accordion-title {
    color: #343434;
    cursor: pointer;
    font-size: 16px;
    padding: 15px 20px 15px 40px;
    margin: 0;
}
.accordion-content {
    display: none;
    padding: 0 20px 10px 20px;
}
.accordion-content p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    padding: 5px 0 5px 15px;
    color: #343434;
    position: relative;
    text-align: left;
}
.accordion-content p::before {
    content: '-';
    position: absolute;
    top: 55%;
    left: 5px;
    transform: translateY(-65%);
}
.accordion-content p:hover {
    opacity: 0.8;
}
  /* 矢印 */
.accordion-title {
    position: relative;
}
.accordion-title::before {
    content:'';
    background-image: url('https://manual.tabione.com/wp/wp-content/themes/tabione_manual/img/icon_check.png');
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}
.accordion-title::after {
    border-right: solid 2px #343434;
    border-top: solid 2px #343434;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 25px;
    top: 38%;
    transform: rotate(135deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    width: 8px;
}
.accordion-title.open::after {
    top: 45%;
    transform: rotate(-45deg);
}
/*メインコンテンツ*/
#main-wrap .main-contents {
    width: 80%;
	order:2;
}
#main-wrap .main-contents h2 {
    margin: 0 0 20px 0;
}
#main-wrap .main-contents .main-item {
    margin-bottom: 50px;
}
#main-wrap .main-contents .item-ttl {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    column-gap: 15px;
    margin-bottom: 15px;
}
#main-wrap .main-contents .item-ttl span {
    background-color: #2b3e67;
    color: #fff;
    padding: 10px 15px;
    height: fit-content;
    font-weight: bold;
}
#main-wrap .main-contents .item-ttl h3 {
    margin: auto 0;
}
#main-wrap .main-contents .item-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    column-gap: 10px;
}
#main-wrap .main-contents .item-inner img {
    width: 600px;
    height: 400px;
    object-fit: cover;
}
#main-wrap .main-contents .item-inner ol {
    margin: 0;
}
#main-wrap .main-contents .item-inner ol li {
    margin-bottom: 20px;
    font-size: 14px;
}

/*フッター*/
footer {
    background-color: #F6F0DE;
}
footer .footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 50px 0 20px 0;
}
footer .footer-inner .footer-l {
    width: calc((100% - 100px) / 2);
}
footer .footer-inner .footer-l img {
    width: 250px;
    height: 56px;
    object-fit: cover;
    margin: auto 0;
}
footer .footer-inner .footer-l p {
    color: #ea5319;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
}
footer .footer-inner .footer-r  {
    width: calc((100% - 100px) / 2);
    color: #2b3e67;
}
footer .footer-inner .footer-r p {
    font-weight: bold;
}
footer .footer-inner .footer-r ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    column-gap: 50px;
}
footer .footer-inner .footer-r ul li {
    list-style: none;
    position: relative;
}
footer .footer-inner .footer-r ul li a {
    color: #2b3e67;
}
footer .footer-inner .footer-r ul li:hover {
    opacity: 0.7;
}
footer .footer-inner .footer-r ul li::before {
    content: '-';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}
footer .copylight {
    color: #2b3e67;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    margin: 0;
}
@media screen and (max-width:767px)  {
/*共通*/
.pc-only {
    display: none;
}
.sp-only {
    display: block;
}
.single-ttl h2 {
    box-sizing: border-box;
}
/*ヘッダー*/
header .header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 15px;
    box-sizing: border-box;
}
header .header-inner .header-l {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    column-gap: 10px;
}
header .header-inner .header-l img {
    width: 130px;
    height: 29px;
    object-fit: cover;
    margin: auto 0;
}
header .header-inner .header-l p {
    font-size: 13px;
    color: #ea5319;
    font-weight: bold;
    margin: auto 0;
}
header .header-inner .header-r {
    display: none;
}
header .header-inner .header-r input {
    width: calc(100% - 150px);
    height: 56px;
    margin: auto 0;
    border: none;
    border-radius: 15px;
    opacity: 0;
}
header .header-inner .header-r:hover input {
    opacity: 1;
    transition: all .5s;
}
header .header-inner .header-r img {
    width: 20px;
    height: 20px;
    margin: auto 0;
}

/*ハンバーガー*/
.hamburger-menu {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    z-index: 9999;
}
.hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #242424;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}
.hamburger-menu__bar:first-child {
    top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
    top: 24px;
}
.hamburger-menu__bar:last-child {
    top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
    top: 35%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    background-color: #fff;
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    background-color: #fff;
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
}
/*メイン*/
#main-wrap {
    display: block;
    margin: 30px auto;
}
/*サイドバー*/
#main-wrap .side_bar {
    width: 100%;
    height: 100vh;
    background-color: #F6F0DE;
}
.navigation {
    display: none;
    background: #F6F0DE;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.accordion {
    display: block;
    max-width: 100%;
    position: relative;
    width: 100%;
    border: none;
}
.accordion h2 {
    font-size: 16px;
    color: #fff;
    background-color: #343434;
    margin: 0;
    padding: 20px 0;
    text-align: center;
}
.accordion .accordion-item {
    border-bottom: 1px solid #343434;
}
.accordion .accordion-item:nth-last-child() {
    border-bottom: none;
}
.accordion-title {
    color: #343434;
    cursor: pointer;
    font-size: 16px;
    padding: 15px 20px;
    margin: 0;
}
.accordion-content {
    display: none;
    padding: 0 20px 10px 20px;
}
.accordion-content p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    border-bottom: 1px solid #ccc;
    padding: 5px 0 5px 15px;
    color: #343434;
    position: relative;
}
.accordion-content p::before {
    content: '-';
    position: absolute;
    top: 55%;
    left: 5px;
    transform: translateY(-65%);
}
.accordion-content p:hover {
    opacity: 0.8;
}
  /* 矢印 */
.accordion-title {
    position: relative;
}
.accordion-title::after {
    border-right: solid 2px #343434;
    border-top: solid 2px #343434;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 25px;
    top: 38%;
    transform: rotate(135deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    width: 8px;
}
.accordion-title.open::after {
    top: 45%;
    transform: rotate(-45deg);
}
.side_bar .header-r #searchform {
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 50px;
    padding: 20px 0;
}
.side_bar .header-r #searchform input {
    width: 70%;
    padding: 10px 5px;
    border: none;
    border-radius: 5px;
}
.side_bar .header-r #searchform img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

/*メインコンテンツ*/
#main-wrap .main-contents {
    width: 100%;
}
#main-wrap .main-contents h2 {
    margin: 0 0 10px 0;
}
#main-wrap .main-contents .main-item {
    margin-bottom: 50px;
}
#main-wrap .main-contents .item-ttl {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    column-gap: 10px;
    margin-bottom: 15px;
}
#main-wrap .main-contents .item-ttl span {
    background-color: #2b3e67;
    color: #fff;
    padding: 10px 15px;
    height: fit-content;
    font-weight: bold;
}
#main-wrap .main-contents .item-ttl h3 {
    margin: auto 0;
}
#main-wrap .main-contents .item-inner {
    display: block;
        column-gap: 10px;
}
#main-wrap .main-contents .item-inner img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
#main-wrap .main-contents .item-inner ol {
    margin: 0;
    margin-top: 10px;
    padding-left: 25px;
}
#main-wrap .main-contents .item-inner ol li {
    margin-bottom: 20px;
    font-size: 14px;
}

/*フッター*/
footer {
    background-color: #F6F0DE;
}
footer .footer-inner {
    width: 100%;
    display: block;
    padding: 30px 20px 20px;
    box-sizing: border-box;
}
footer .footer-inner .footer-l {
    width: 100%;
    display: flex;
    column-gap: 15px;
}
footer .footer-inner .footer-l img {
    width: 130px;
    height: 28px;
}
footer .footer-inner .footer-l p {
    font-size: 13px;
    margin: 0;
}
footer .footer-inner .footer-r  {
    width: 100%;
    color: #2b3e67;
}
footer .footer-inner .footer-r p {
    font-weight: bold;
}
footer .footer-inner .footer-r ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 10px;
}
footer .footer-inner .footer-r ul li {
    list-style: none;
    position: relative;
    width: calc((100% - 10px) / 2);
}
footer .footer-inner .footer-r ul li::before {
    content: '-';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}
footer .copylight {
    color: #2b3e67;
    font-size: 11px;
    text-align: center;
}
}
/*TOP*/
/*共通*/
#top a {
    color: #343434;
}
/*サーチフォーム*/
#top .search-wrap {
    background-color: #ccc;
    width: 100%;
}
#top .search-wrap .search-wrap-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px;

}
#top .search-wrap input {
    width: 80%;
    padding: 15px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
}
#top .search-wrap button {
    width: 30px;
    height: 30px;
    margin: auto 0;
    background: none;
    border: none;
}
#top .search-wrap button img {
    width: 30px;
    height: 30px;
}
/*h1*/
#top h1 {
    text-align: center;
    background-color: #ccc;
    margin: 0;
    padding-top: 50px;
}
/*ナビリスト*/
/* リセットCSS */
#top .nav-list .nav-inner {
    margin: 50px auto;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
}
#top .nav-item {
    width: calc((100% - 30px) / 3);
    margin: 0;
}
#top .nav-title {
    background: #2b3e67;
    cursor: pointer;
    font-size: 16px;
    padding: 20px;
    position: relative;
    color: #fff;
}
#top .nav-title:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 2px;
    width: 15px;
    background: #fff;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}
#top .nav-title:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 2px;
    width: 15px;
    background: #fff;
    transition: all .3s ease-in-out;
}
#top .nav-title.open:before { transform: rotate(180deg);
}
#top .nav-title.open:after {
    opacity: 0;
}
#top .nav-text {
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    display: none;
    padding: 20px;
    margin: 0;
}
/*検索結果ページ*/
.search-main {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
}
.search-main ul li {
    width: 100%;
    margin-bottom: 40px;
    font-size: 20px;
    list-style: none;
}
.search-main ul li p {
    margin: 10px;
    font-size: 16px;
}
.search-main ul li a:hover {
    cursor: pointer;
    opacity: 0.7;
}
@media screen and (max-width:767px) {
/*TOP*/
/*共通*/
#top a {
    color: #343434;
}
/*サーチフォーム*/
#top .search-wrap .search-wrap-inner {
    column-gap: 10px;
    padding: 10px 20px 15px 20px;
    box-sizing: border-box;

}
#top .search-wrap input {
    width: 90%;
    padding: 10px;
}
#top .search-wrap button {
    width: 20px;
    height: 20px;
}
#top .search-wrap button img {
    width: 20px;
    height: 20px;
}
/*h1*/
#top h1 {
    padding-top: 15px;
    font-size: 20px;
}
/*ナビリスト*/
/* リセットCSS */
#top .nav-list .nav-inner {
    margin: 30px auto;
    display: block;
}
#top .nav-item {
    width: 100%;
    margin: 10px auto;
    padding: 0 10px;
    box-sizing: border-box;
}
#top .nav-title {
    padding: 15px;
}
#top .nav-text {
    padding: 15px;
}
    /*検索結果ページ*/
.search-main {
    width: 100%;
    margin: 30px auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.search-main ul li {
    margin-bottom: 25px;
    font-size: 18px;
}
.search-main ul li p {
    font-size: 14px;
}
}
/*pt2*/
#pt2 .inner-item {
    width: 100%;
    margin-bottom: 50px;
}
#pt2 .inner-item .main-img {
    width: 100%;
}
#pt2 .inner-item .main-img img{
	max-width:100%;
}
#pt2 .inner-item .item-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
    margin: 50px 0;
}
#pt2 .inner-item .item-contents .table-item {
    width: calc((100% - 30px) / 2);
}
#pt2 .inner-item .item-contents .table-item h3 {
    margin: 10px 0;
}
#pt2 .inner-item .item-contents .table-item table {
    width: 100%;
    border-spacing: 0;
    padding: 10px;
}
#pt2 .inner-item .item-contents .table-item table .td-left {
    font-weight: bold;
    width: 30%;
}
#pt2 .inner-item .item-contents .table-item table td {
    border-bottom: 1px solid #343434;
    padding: 10px 0;
}
@media screen and (max-width: 767px) {
    /*pt2*/
#pt2 .inner-item {
    width: 100%;
    margin-bottom: 50px;
}
#pt2 .inner-item .main-img img {
    height: 250px;
}
#pt2 .inner-item .item-contents {
    display: block;
    margin: 20px auto;
}
#pt2 .inner-item .item-contents .table-item {
    width: 100%;
}
#pt2 .inner-item .item-contents .table-item h3 {
    margin: 30px 0 0;
}
#pt2 .inner-item .item-contents .table-item table {
    padding: 0;
}
#pt2 .inner-item .item-contents .table-item table .td-left {
    font-weight: bold;
    width: 35%;
}
}

/*pt3*/
#pt3 .inner-item {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    column-gap: 10px;
}
#pt3 .inner-item .main-img {
    width: 70%;
}
#pt3 .inner-item .main-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
#pt3 .inner-item .item-right {
    width: calc(30% - 10px);
}
#pt3 .inner-item .item-right .right-item {
    margin-bottom: 40px;
}
#pt3 .inner-item .item-right h3 {
    margin: 0;
}
#pt3 .inner-item .item-right p {
    margin: 5px 0;
    font-size: 14px;
}
/*faqページ*/
#faq .tab-1 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

#faq .tab-1 > label {
    flex: 1 1;
    order: -1;
    min-width: 70px;
    padding: .7em 1em .5em;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    background-color: #e9f0f6;
    color: #535353;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

#faq .tab-1 > label:hover {
    opacity: .8;
}

#faq .tab-1 input {
    display: none;
}

#faq .tab-1 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
}

#faq .tab-1 label:has(:checked) {
    background-color: #fff;
    border-color: #fbba67 #f0f0f0 #fff;
    border-style: solid;
    border-width: 4px 1px 1px;
    border-radius: 5px;
    color: #333333;
}

#faq .tab-1 label:has(:checked) + div {
    display: block;
}

/*faqアコーディオン*/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_qa {
	overflow-x: hidden;
	margin: 0 auto;
	color: #333333;
}
.cp_qa .cp_actab {
	padding: 20px 0;
	border-bottom: 1px dotted #cccccc;
}
.cp_qa label {
	font-size: 1.2em;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 10px 0 48px;
	cursor: pointer;
}
.cp_qa .cp_actab-content {
	font-size: 1em;
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 40px;
	padding: 0 14px;
	-webkit-transition: 0.4s ease;
	transition: 0.4s ease;
	opacity: 0;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	padding: 14px;
	opacity: 1;
}
.cp_qa .cp_plus {
	font-size: 2.4em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin: 3px 0 0 10px;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.cp_qa .cp_actab input[type=checkbox] {
    display: none;
}
/*お問い合わせフォーム*/
.contact-form {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
}
.contact-form .form-inner {
    width: 100%;
}
.contact-form .form-inner .es {
    font-size: 16px;
    color: #4f5577;
    opacity: 90%;
}
.contact-form .form-inner dt {
    margin-top: 20px;
    margin-bottom: 5px;
}
.contact-form .form-inner dd {
    width: 100%;
    margin-left: 0;
}
.contact-form .form-inner dd .input  {
    width: 100%;
    padding: 10px 15px;
    opacity: 90%;
    outline: none;
}
.contact-form .form-inner dd p {
    color: #4f5577;
    opacity: 90%;
    margin: 0;
}
.contact-form .form-inner .contact-btn {
    width: 70%;
    margin: 20px auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: 20px;
}
.contact-form .form-inner .contact-btn .back,
.contact-form .form-inner .contact-btn .submit {
    width: calc((100% - 20px) / 2);
    border: none;
    padding: 15px;
    color: #fff;
    cursor: pointer;
}
.contact-form .form-inner .contact-btn .back {
    background-color: #464c56;
}
.contact-form .form-inner .contact-btn .submit {
    background-color: #fbba67;
}
/*問い合わせ完了画面*/
.form-complete {
    margin: 50px 0;
}
.form-complete .complete-txt {
    margin: 30px 0;
}
.form-complete .complete-txt h2 {
    font-size: 22px;
    text-align: center;
    margin: 10px 0;
    color: #fbba67;
}
.form-complete .complete-txt p {
    font-size: 16px;
    text-align: center;
    margin: 30px 0;
}
.form-complete .complete-txt p .tel {
    color: #fbba67;
}

