 @charset "utf-8";
/* CSS Document */

/*
Theme Name:Arkhe-child
Template:arkhe
*/

:root {
    --main-color: #0088A0;
    --sub-color: #F3E5E7;
    --bg-color: #E5EAF3;
    --color04: #E8F3E5;
    --color05: #FAF1A3;
    --bg-color01: #F6F2E9;
    --cont-gap: 80px;
    --txt-serif: YakuHanJP_Narrow, "Noto Serif JP", "ヒラギノ明朝 Pro W3", 'Hiragino Mincho Pro', "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    --section-padding: 72px;
}

*{
	margin: 0;
	padding: 0;
	list-style: none;
    transition: 0.3s;
}

/* clearfix */
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* デバイスによって表示・非表示を切り替える */

/* PC非表示 */
@media (min-width: 768px) { 
	.hide-pc {
		display: none;
	}
}
 /* スマートフォン非表示 */
@media (max-width: 767px) {
	.hide-sp {
		display: none;
	}
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
	font-size: 62.5%;
}

body {
/*デザインに合わせて変えて下さい*/
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-size: clamp(1.4rem, 1.6vw, 1.6rem);
}
@media (max-width: 767px) {
	body {
/*		font-size: 1.5rem;*/
	}
}
p{
	font-size: clamp(1.4rem, 1.607vw, 1.6rem);
}
ol, ul{
	margin:0;
	padding:0;
}
a {
    text-decoration: none;
}
/*スマホでスクロールできない事象を防ぐ*/
.l-content {
    overflow-x: visible!important;
}

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

table {
  border-collapse: collapse;
}

/*ページ内共通*/
h2{
    background: var(--ark-color--main);
    border-radius: 5px;
    color: #fff;
    padding: 10px 20px;
    font-size: clamp(1.6rem, 1.6vw, 2.2rem);
    margin-bottom: 20px;
}
h3{
    
}
h4{
	color:var(--ark-color--main);
}
.sub_ti3{
	border-bottom: 3px solid var(--ark-color--main);
    padding: 8px 0px;
}
section {
    padding: 0 0 var(--section-padding) 0;
}
/*ボタン類*/
.btn{
	margin: 30px auto;
    width: 240px;
    position: relative;
    z-index: 5;
}
.btn a{
	line-height: 46px;
    display: block;
    text-align: center;
    color: #3c71a5 !important;
    background: #fff;
    background-size: cover;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none !important;
    position: relative;
    border-radius: 50vh;
    border: 2px solid #3c71a5;
    transition: 0.3s ease;
}
.btn a:hover {
        color: #fff !important;
        background: #3c71a5;
    }
}
.arkhe-svg-home{
	display:none;
}

/*ヘッダー*/
.l-header__body{
	padding-left: 20px;
	height:90px;
}
.c-gnav{
    margin-right:20px;
}
.c-gnav a{
	font-size:1.6rem;
	font-weight:bold;
}
.c-gnav a:hover{
    color:#0057A9;
}
.c-gnav .sub-menu{
	font-size: 1.6rem;
}
.c-headLogo__img{
	vertical-align: top!important;
}
.c-pageTitle__main{
	text-align:left;
	font-size: 3rem;
}
.head-mail a{
	display: flex;
	gap: 8px;
    align-items: center;
    padding: 10px 40px;
    border-radius: 8px;
    color: #fff;
    background-color: var(--main-color);
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    margin-right: 20px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-size: clamp(1.4rem, 1.21vw, 1.5rem);
}
.head-mail a:before{
	font-family: FontAwesome;
    content: "\f0e0";
}
.head-mail a:hover{
	opacity:0.6;
}
.header-sub-title{
	text-align: left;
}
.l-header__center{
	display: grid;
    grid-template-columns: 200px auto;
    align-items: center;
}
.p-topArea{
	min-height: 200px;
}
/*ヘッダーマウスオンの装飾*/
.c-gnav__li{
	height:auto;
}
.c-gnav__li>.c-gnav__a {
	position:relative;
	height:44px;
}
.c-gnav__li>.c-gnav__a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--ark-color--main);
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
    z-index: 1000;
}
.c-gnav__li>.c-gnav__a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}
/*フッター*/
.l-footer{
	background: linear-gradient(to right, #dee8ea 0%, #f3f7f8 100%);
    margin-top: 50px;
}
.l-footer__inner .l-container{
    justify-content: space-between;
}
.l-footer__widgets{
    padding: 3% 0;
}
.l-footer__foot {
    display: flex;
    padding: 0;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 72px;
    background-color: #000000;
    color: #ffffff;
    align-items: center;
}
.footer-logo-img {
    width: clamp(200px, 2.5vw, 250px);
    margin-bottom: 30px;
}
.footer-tel {
    position: relative;
    padding-left: 30px;
    margin: 20px 0 5px;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color01);
    line-height: 1;
}
.footer-tel::before {
    font-family: "Font Awesome 5 Free";
    content: '\f095';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 18%;
    color: var(--color01);
    padding-right: 8px;
    font-size: 20px;
}
.footer-contact-btn a {
    display: flex;
    color: rgb(255, 255, 255);
    height: 65px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: 8px;
    position: relative;
    font-size: clamp(1.4rem, 2vw, 2.2rem);
    font-weight:bold;
    background: linear-gradient(45deg, rgb(255, 69, 0) 10%, rgb(255, 136, 0) 45%, rgb(255, 69, 0) 95%);
    background-size: 200% 100%;
    background-position: right;
    transition: background-position 0.5s ease;
    width: 360px;
	transition: 0.5s;
}
.footer-contact-btn a:hover {
	opacity:0.6;
	transition: 0.5s;
}
.footer-contact-btn a::before {
    font-family: "Font Awesome 5 Free";
    content: '\f003';
    font-weight: 900;
    position: absolute;
    left: 25px;
    color: #ffffff;
    padding-right: 8px;
    font-size: 22px;
}
.footer-contact-btn a::after {
    font-family: "Font Awesome 5 Free";
    content: '\f0a9';
    font-weight: 900;
    position: absolute;
    right: 20px;
    color: #ffffff;
    font-size: 22px;
}
.footer-cont-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 70px 0;
    justify-content: space-between;
    width: 95%;
}
.footer-nav-wrap {
    display: flex;
    gap:50px;
}
@media (max-width: 767px) {
	.footer-nav-wrap {
		flex-direction: column;
	}
}
.footer-nav-box01, .footer-nav-box02 {
    margin-right: clamp(20px, 2vw, 50px);
}
.l-footer__widgets .w-footer {
    flex-basis: auto;
}
.footer-nav-item01 a, .footer-nav-item01 {
    margin-bottom: 10px;
    font-weight: bold;
}
.footer-nav-item02{
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}
.footer-nav-item02 a::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 16px;
    background: #000;
    top: 50%;
    left: 0;
}
.c-copyright{
    font-size: 1.4rem;
}

/*サイドメニュー*/
.c-widget__title,.wp-block-heading{
    font-size:1.8rem;
    border-bottom: 1px solid var(--ark-color--main);
    padding-bottom: 0.25em;
}
.l-sidebar a{
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
}

/*スマホメニュー*/
.p-drawer__nav a{
	font-size:1.6rem;
}
.p-drawer__close{
	font-size: 1.4rem;
}

/*トップページ*/
.ti-top{
	position:relative;
	color: #3a8a9e;
	background:none;
	text-align: center;
	font-size: clamp(2rem, 2vw, 3.8rem);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 1.44px;
	margin-top: 30px;
	font-family: "Zen Maru Gothic", serif;
	position: relative;
}
.ti-top:after{
	display: block;
	content: "";
	width: 25px;
	height: 2.25px;
	background: #3a8a9e;
	margin: 10px auto 0;
	}	
/*トップお知らせ*/
.top-news-item{
	border-bottom: 0.5px solid #d9d9d9;
}	
.top-news-item	a{
	padding: 30px 0px;
    display: block;
   }
@media (max-width: 767px) {
	.top-news-item	a{
		padding: 10px 0px;
	}
}   
.top-news-item	a:hover{
	opacity:0.6;
}
.top-news-date{
	color:#000;
}
.top-news-cate-item{
	color:#000;
	font-size: 13px;
    line-height: 1;
    padding: 5px 20px;
    margin: 0px 20px;
    background: var(--ark-color--border--table);
}
@media (max-width: 767px) {
	.top-news-title{
		display: block;
    	margin: 15px 0;
	}
}
/*トップブログ*/
.top-blog-list{
	display: grid;
    grid-template-columns: calc(50% - 12px)  calc(50% - 12px);
    grid-template-rows: auto auto;
    gap: 24px;
    margin: 30px 0;
}
@media (max-width: 767px) {
	.top-blog-list{
		display:block;	
	}	
}
.top-blog-item a{
	display: grid;
    grid-template-columns: 200px auto;
    grid-template-rows: auto;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px dotted #000;
    list-style: none;
}
@media (max-width: 767px) {
	.top-blog-item a{
		display: flex;
    	flex-direction: column;
	}
}
.top-blog-item a:hover{
	opacity:0.6;
}
.top-blog-ti{
	font-size: 1.8rem;
}
/*トップサービス案内*/
.top-service{
	background: var(--ark-color--gray);
    border-radius: 50px;
    padding: 5%;
}
.top-service .inner{
	display: flex;
    gap: 3%;
}
@media (max-width: 767px) {
	.top-service .inner{
		flex-direction: column;	
	}
}
		
/*トップよくある質問*/
.ti-sub {
    text-align: center;
    margin: 20px 0;
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}
.faq-contents-inner{
	padding:3%;
}
.block-faq-label {
    display: block;
    position: relative;
    padding: 16px 48px 16px 48px;
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
    cursor: pointer;
}
.block-faq-content:before {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0px;
    padding: 8px 0;
    width: 40px;
    height: 100%;
    box-sizing: border-box;
    color: var(--main-color);
    font-size: 2.4rem;
    font-family: var(--txt-serif);
    content: "A.";
}
.block-faq-check {
    display: none;
}
.block-faq-item {
    margin: 0;
    border: 1px solid var(--main-color);
    text-align: left;
    margin: 20px;
    padding: 20px;
    border-radius: 20px;
}
.block-faq-content {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: relative;
    height: 0;
    padding: 0 48px 0 48px !important;
    transition: .5s;
}
.block-faq-check:checked + .block-faq-label + .block-faq-content {
    visibility: visible;
    opacity: 1;
    height: auto;
    margin: 4px 0 0 0;
    padding: 16px 48px 16px 48px !important;
}
.block-faq-item span:before {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0px;
    width: 40px;
    height: 100%;
    box-sizing: border-box;
    color: var(--main-color);
    font-size: 2.4rem;
    font-family: var(--txt-serif);
    content: "Q.";
}
/*ヨコ線*/
.block-faq-label:before{
    content: '';
    display: inline-block;
    position: absolute;
    top:16px;
    right: 10px;
    width: 2px;
    height: 25px;
    background-color: var(--main-color);
    transform: rotate(90deg);
    transition: .6s ease;
}
/*タテ線*/
.block-faq-label:after {
    content: '';
    display: inline-block;
    position: absolute;
    top:16px;
    right: 10px;
    width: 2px;
    height: 25px;
    background-color: var(--main-color);
    transition: .6s ease;
}
.block-faq-check:checked + .top-faq-label:before {
    transform: rotate(90deg);
}
.block-faq-check:checked + .top-faq-label:after {
    transform: rotate(270deg);
}

/*問い合わせページ*/
.contact-page-telbox {
    background-color: #E8F3E5;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    gap: clamp(8px, 5%, 14px);
    width: min(800px, 100%);
    margin: 0 auto 40px;
}
.contact-page-tel {
    position: relative;
    padding-left: 30px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0088A0;
    line-height: 1;
}
.contact-page-tel::before {
    font-family: "Font Awesome 5 Free";
    content: '\f095';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 18%;
    color: #0088A0;
    padding-right: 8px;
    font-size: 20px;
}
/*問い合わせフォーム*/
.hissu {
    font-size: 1.2rem;
    color: #fff;
    background: #E96A15;
    padding: 4px 6px;
    margin-left: 8px;
    position: absolute;
    right: 0;
}
@media (max-width: 767px) {
	.hissu{
		position:relative;
	}
}
.optional {
	font-size: 1.2rem;
    color: #fff;
    background: #9b9ea0;
    padding: 4px 6px;
    margin-left: 8px;
    position: absolute;
    right: 0;
}
.form_table{
	border:none;
	max-width:900px;
	margin:0 auto;
}
.form_table th{
	position: relative;
	width: 25%;
	background:none;
	border:none;
}
@media (max-width: 767px) {
	.form_table th{
		width: auto;
	}
}
.form_table td{
	border:none;
}
.form_table tr {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #cecece;
    padding: 20px 0;
}
@media (max-width: 767px) {
	.form_table tr {
		flex-wrap: wrap;
	}
}
.under_form_txt {
    background-color: #F6F6F6;
    padding: 20px;
    text-align: center;
    max-width: 900px;
    margin: 20px auto 40px;
}
.form_table input, .form_table textarea {
    border: none;
        background: #fff;
        font-size: 15px;
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
        border-radius: 0px;
        outline: none;
        border: 1px solid #d3dfe1;
}
.btn_submit input {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: min(384px, 100%);
    margin: 0 auto;
    border-radius: 8px;
    color: #000000;
    font-weight: bold;
    font-size: clamp(1.4rem, 2vw, 2rem);
    border: none;
    background: linear-gradient(45deg, #FFD427 10%, #FFEE5A 45%, #FFD427 95%);
    background-size: 200% 100%;
    background-position: right;
    transition: background-position 0.5s ease;
}
/*お知らせ*/
.news-contents h2{
	background: none;
    color: var(--ark-color--main);
    padding: 0;
}

/*ブログ*/
.header-blog{
	background: url(https://demo02.ailedesign.co.jp/wp-content/uploads/22137624_s.jpg);
	background-size: cover;
    background-position: center;
}
.blog-cate-item{
	display: inline-block;
    background: #eee;
    padding: 5px 10px;
    margin: 10px;
}
.blog-data {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin: 0 0 20px 0;
    font-size: clamp(1.4rem, 1.428vw, 1.6rem);
}
.txt-more{
	display: flex;
    justify-content: end;
    align-items: center;
    gap: 16px;
    color: var(--main-color);
    font-weight: bold;
}
.txt-more::after {
    font-family: FontAwesome;
    content: "\f105";
}
.news-contents .p-postList__item{
	border-bottom: 1px solid #ccc;
    padding: 3rem 0;
    margin-bottom:0!important;
}
.p-postList .p-postList__title{
	font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
.c-pnNav__item,.p-entry__head,.p-entry__head .c-postMetas,.c-postTerms__link{
	font-size:1.4rem;
}
.p-postList.-type-list .p-postList__item{
	margin-bottom: 3rem;
}
@media (max-width: 767px) {
	.p-postList.-type-list .p-postList__link{
		flex-direction: column;
	}
	.p-postList.-type-list .p-postList__thumb{
		width: 100%;
    	margin: 0 auto 20px;
	}
}
.blog-contents li{
	padding:20px!important;
}
/*ブログ詳細メタ情報*/
.-modified,.c-postMetas__icon,.p-entry__foot .c-postMetas{
	display:none;
}
.p-entry__head .c-postMetas {
	margin-top:20px;
}
.c-postTerms__link{
	margin-left: 10px;
    background: #eee;
    padding: 5px 20px;
}
/*サイドバー*/
.custom-post-latest .post-date{
	font-size:1.4rem;
}
.custom-post-latest li{
	border-bottom: 1px solid #dcdcdc;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
}

/*会社概要*/
.about-message-ceo {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin: 3% auto;
    max-width: 900px;
}
@media (max-width: 767px) {
	.about-message-ceo {
		flex-wrap: wrap;
        gap: 24px;
	}
}
.about-message-img {
    width: 286px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}
@media (max-width: 767px) {
	.about-message-img {
        width: 50%;
        margin: 0 auto;
    }
}
}
.about-message-txt{
	font-family: var(--txt-serif);
}
.about-message-name {
    text-align: right;
}
.company-profile dl{
	border-bottom: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    font-size: clamp(1.6rem, 1.607vw, 1.8rem);
    letter-spacing: .03em;
    line-height: 2;
    margin: 3% auto;
    max-width: 900px;
}
.company-profile dt {
    border-top: 1px solid #ddd;
    box-sizing: border-box;
    padding-left: 10px;
    width: 180px;
}
@media (max-width: 767px) {
	.company-profile dt {
		width: 80px;
	}
}
.company-profile dd {
    border-top: 1px solid #ddd;
    width: calc(100% - 180px);
}
@media (max-width: 767px) {
	.company-profile dd {
		width: calc(100% - 80px);
	}
}
.company-profile dd, .company-profile dt {
    margin: 0;
    padding:2% 0;
}
/*よくある質問*/
.faq-contents .item:nth-child(even) {
    background: var(--bg-color);
}
.faq-contents .item {
    margin: 20px 0;
    padding: 2% 4%;
}
.faq-contents .item .ti-q {
    position: relative;
    margin: 10px 0;
    padding-left: 64px;
    font-size: clamp(1.6rem, 2.5vw, 2.0rem);
    font-weight: bold;
    color: var(--main-color);
}
.faq-contents .item .ti-q::before {
    position: absolute;
    left: 0;
    content: "Q";
    font-family: 'Noto Sans JP';
    padding: 10px 12px;
    background: var(--main-color);
    color: #fff;
    line-height: 1;
}
.faq-contents .item .a-txt {
    position: relative;
    padding-left: 64px;
    margin-top: 25px;
}
.faq-contents .item .a-txt::before {
    position: absolute;
    top: -5px;
    left: 0;
    content: "A";
    font-family: 'Noto Sans JP';
    background: var(--sub-color);
    color: #fff;
    padding: 8px 12.5px;
    line-height: 1;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: bold;
}

/*スライダー*/
.swiper-wrapper {
    /* サイズ調整 */
    width: 100%;
    height: 300px;
  }
  .swiper-slide {
    /* 文字配置調整、背景色設定 */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    background-color: #dfe7fd;
  }
.service-slider{
	width: 44.0678%;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 40px;
    position: relative;
}