/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 30 2026 | 13:40:37 */
/*-------------------------------*/
/*タイトル共通*/
/*-------------------------------*/

@media (min-width: 600px) {
    .l-topTitleArea {
        min-height: 280px;
    }
}
.l-topTitleArea .u-obf-cover {
    object-position: 100% 100%;
}
.l-topTitleArea__body {
    text-shadow: none;
	font-family: "Zen Maru Gothic", sans-serif;
	padding-top: 1em;
}
/*タイトル*/
.wp-singular .c-pageTitle, .blog .c-pageTitle {
    background: #fff;
    color: #121212;
    display: inline-grid;
    padding: .3em .5em;
    border-radius: 4px;
    box-shadow: 4px 4px 0 #62C6E3;
	font-weight:400 !important;
}
/*サブタイトル*/
.wp-singular .c-pageTitle__subTitle,
.blog .c-pageTitle__subTitle{
    font-style: normal;
	font-size: 15px;
    color: #3A4268;
    font-weight: 600;
    opacity: 1;
    position: absolute;
    top: -2em;
	margin-left:2em;
}
/*サブタイトル横の装飾*/
.wp-singular .c-pageTitle__subTitle::after,
.blog .c-pageTitle__subTitle::after{
  content: "";
  position: absolute;
  top: 65%;
  left: -27px;
  width: 20px;
  height: 20px;
  background-image: url(https://soraie.co.jp/wp-content/uploads/2026/07/h_deco.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  transform: translateY(-50%);
}
/*-------------------------------*/
/*会社概要ページ*/
/*-------------------------------*/
/*-------------会社概要セクション-------------*/
.company_section .wp-block-table td, 
.company_section .wp-block-table th {
    padding: 1em .75em;
}
.company_section .wp-block-table th {
    border-bottom:1px solid #3A4268;
}
.company_section .wp-block-table.is-style-simple tbody tr:first-child th,
.company_section .wp-block-table.is-style-simple tbody tr:first-child td {
  border-top: none;
}
/*-------------------------------*/
/*各サービスページ*/
/*-------------------------------*/
/*---------メインビジュアル---------*/
/*サービス番号*/
.service_mv .num .wp-block-image img {
    vertical-align: middle;
}
/*見出し(サービス名)*/
.service_mv .heading_wrap{
    padding: .5em 1em;
    border-radius: 5px;
    display: inline-block;
}
.service_mv h2 span{
	font-weight:500 !important;
}
/*1のみ*/
.service_mv.-s1 .heading_wrap{
	box-shadow:4px 4px 0 #FDA237;
}
/*2のみ*/
.service_mv.-s2 .heading_wrap{
	box-shadow:4px 4px 0 #00A494;
}
/*3のみ*/
.service_mv.-s3 .heading_wrap{
	box-shadow:4px 4px 0 #EB838A;
}
/*4のみ*/
.service_mv.-s4 .heading_wrap{
	box-shadow:4px 4px 0 #5AC3E1;
}
/*---------お悩みセクション---------*/
.solution_section h2 span{
	font-weight:500 !important;
}
.solution_wrap{
	position: relative;
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

/* 三角の影 */
.solution_wrap::before {
    content: "";
    position: absolute;
    bottom: -66px;
    left: calc(50% + 0px);
    transform: translateX(-50%);
    width: 125px;
    height: 62px;
    background: rgba(0, 0, 0, 0.1);
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    z-index: 0;
}
/* 白い三角 */
.solution_wrap::after {
	content: "";
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 60px;
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	z-index: 1;
}
.solution_wrap .comment{
	padding:.8em 1em;
	border-radius:50px 50px 50px 0;
}
.solution_wrap .comment.wp-block-group.is-row {
    gap: .3em;
}
@media (max-width: 960px) {
  .solution_wrap{
	padding:1em !important;
}
	.solution_wrap p{
     font-size:13px;
}
	
}
/*---------サービス内容セクション---------*/
.point_card{
	position:relative;
	padding:0 !important;
	border-radius:10px;
	overflow: hidden;
}
.point_card .num{
	position:absolute;
	padding: 0 .8em;
	border-radius:10px 0 10px 0;
}
.point_card .num span{
	font-weight:500;
}
/*---------利用の流れセクション---------*/
/*数字*/
.service_folw_section .num{
	width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
	z-index: 1;
    position: relative;
}
.service_folw_section .img_wrap {
	position: relative;
	background: transparent !important;
}

/* ぼかした円形背景 */
.service_folw_section .img_wrap::before {
	content: "";
	position: absolute;
	width: 80%;
	aspect-ratio: 1 / 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	background-color: #BDE9FE;
	border-radius: 50%;
	filter: blur(20px);
	
	z-index: 0;
}

/* 画像を背景より前へ */
.service_folw_section .img_wrap .wp-block-image {
	position: relative;
	z-index: 1;
}
.flow_wrap{
	position:relative;
}
.flow_wrap::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #EB838A;
    z-index: -1;
    width: 80%;
    margin: 0 auto;
}
/*2のみ*/
.flow_wrap.-s2::before {
    background-color: #00A494;
}
/*3のみ*/
.flow_wrap.-s3::before {
    background-color: #EB838A;
}
/*4のみ*/
.flow_wrap.-s4::before {
	width: 70%;
    background-color: #5AC3E1;
}
@media (max-width: 960px) {
	.flow_wrap::before {
        display:none;
}
}
/*---------よくある質問セクション---------*/
/*アコーディオン*/
.s_faq_section .swell-block-accordion__title::before{
	content: "Q";
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}
/*グリーン(サービス2)*/
.s_faq_section.-s2 .swell-block-accordion__title{
	background:#EAF8F7;
}
.s_faq_section.-s2 .swell-block-accordion__title::before{
	background: #00A494;
}
.s_faq_section.-s2 .icon-arrow_drop_up:before,
.s_faq_section.-s2 .icon-caret-up:before,
.s_faq_section.-s2 .icon-arrow_drop_down:before, 
.s_faq_section.-s2 .icon-caret-down:before{
	color: #00A494;
}
/*ピンク(サービス3)*/
.s_faq_section.-s3 .swell-block-accordion__title{
	background:#FDF7F7;
}
.s_faq_section.-s3 .swell-block-accordion__title::before{
	background: #EB838A;
}
.s_faq_section.-s3 .icon-arrow_drop_up:before,
.s_faq_section.-s3 .icon-caret-up:before,
.s_faq_section.-s3 .icon-arrow_drop_down:before, 
.s_faq_section.-s3 .icon-caret-down:before{
	color: #EB838A;
}
/*ブルー(サービス4)*/
.s_faq_section.-s4 .swell-block-accordion__title{
	background:#F5FAFD;
}
.s_faq_section.-s4 .swell-block-accordion__title::before{
	background: #5AC3E1;
}
.s_faq_section.-s4 .icon-arrow_drop_up:before,
.s_faq_section.-s4 .icon-caret-up:before,
.s_faq_section.-s4 .icon-arrow_drop_down:before, 
.s_faq_section.-s4 .icon-caret-down:before{
	color: #5AC3E1;
}
.s_faq_section .swell-block-accordion__body::before {
    content: "A";
	background: #3A4268;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}
.s_faq_section .swell-block-accordion__title .swell-block-accordion__label,
.s_faq_section .swell-block-accordion__body p{
	padding-left:2.5em;
}
/*---------お問い合わせセクション---------*/
/* ---画像の絶対配置--- */
/* 左下 */
.s_contact_section.bl_parent {
	position: relative;
	z-index:10;
}
.s_contact_section .bl_children {
	position: absolute;
	bottom: -9em;
	left: 5%;
	z-index: 1;
}
/* 右上 */
.s_contact_section.tr_parent {
	position: relative;
	z-index:10
}

.s_contact_section .tr_children {
	position: absolute;
	top: -10em;
	right: 5%;
	z-index: 1;
}
/*----------------------------*/
/* PC：画面端から5%に固定 */
/*----------------------------*/
@media screen and (min-width: 961px) {

	.s_contact_section .bl_children {
		left: calc(50% - 45vw);
	}

	.s_contact_section .tr_children {
		right: calc(50% - 45vw);
	}

}
@media (max-width: 960px) {
/* 左下 */
.s_contact_section .bl_children {
	bottom: -7em;
}
/* 右上 */
.s_contact_section .tr_children {
	top: -7em;
}
}
/*サービスページ用cta*/
.service_cta .swell-block-fullWide__inner {
    padding: 0;
}
/* -----------------------------
hover時 opacity
----------------------------- */
.-ps-style-normal .p-postList__item:hover .p-postList__body,
.-type-card .p-postList__item:hover .p-postList__body,
.-type-list .p-postList__item:hover .p-postList__body {
  opacity: 1;
}

/* アーカイブ hover */
.post-type-archive-construction .l-mainContent__inner .p-postList__item .p-postList__body:hover {
  opacity: 1;
}

/* -----------------------------
お知らせ
----------------------------- */
.-type-simple .p-postList__body {
  display: flex;
  flex-direction: column;
  gap: .4em;
}

.-type-simple .p-postList__cat {
  background: #eef4f1;
  color: var(--color_main);
  padding: .2em .6em;
  border-radius: 20px;
  font-size: .75rem;
}

/* -----------------------------
もっと見るボタン
----------------------------- */
.is-style-more_btn {
  margin-top: 2em;
  text-align: center;
}

.is-style-more_btn .btn_text {
  padding: .7em 1.8em;
  font-size: .9rem;
  font-weight: 600;
  color: var(--color_main);
  border: 1px solid var(--color_main);
  border-radius: 999px;
  background: #fff;
  transition:
    background-color .25s ease,
    color .25s ease,
    transform .25s ease;
}

/* -----------------------------
投稿にボタンの追加
----------------------------- */
.c-tabBody__item .-type-card .p-postList__meta:after {
  content: "詳細はこちら »";
  display: inline-block;
  width: 100%;
  padding: 0.6rem 1rem;
  margin: 1em auto 0;
  background-color: #333;
  color: #fff;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.c-tabBody__item .-type-card .p-postList__meta::after:hover {
  background-color: #555;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.c-tabBody__item .p-postList__link {
  display: flex;
  flex-direction: column;
}

.c-tabBody__item .p-postList__body {
  position: relative;
  transition: opacity .25s;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.p-postList .p-postList__title {
  flex-grow: 1;
}

/* -----------------------------
一覧ページ記事設定
----------------------------- */
.-type-card .p-postList__title,
.-type-list .p-postList__title,
.-type-list2 .p-postList__title {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.-type-card .p-postList__title::after,
.-type-list .p-postList__title::after,
.-type-list2 .p-postList__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 0.5px;
  background-color: #000;
}

@media (min-width: 600px) {
  #sidebar .-type-list .p-postList__title,
  .-type-card .p-postList__excerpt {
    font-size: 12px;
  }
}

@media (min-width: 600px) {
  #sidebar .-type-card .p-postList__title,
  .-related .p-postList__title,
  .-type-thumb .p-postList__title,
  .w-footer:not(.-col1) .p-postList__title {
    font-size: 12px;
  }
}

/* -----------------------------
サイドバーの設定
----------------------------- */
.p-profileBox {
  position: relative;
  padding: 16px;
  overflow: hidden;
  z-index: 1;
    background-image: repeating-linear-gradient(45deg, #dcdcdc14, #81818114 2px, transparent 2px, transparent 9px);
  box-shadow: 1px 2px 9px #ddd;
  border: none;
}

.p-profileBox::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, #000000, #cccccc);
  border-radius: inherit;
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.p-profileBox__btn a {
  width: 100%;
}
/* この記事を書いた人：装飾（ブランドカラーver） */
.l-articleBottom__section.-author {
  margin-top: 64px;
  padding: 36px;
  background: linear-gradient(135deg, #fff 0%, rgba(0,0,0,0.02) 100%);
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color_deep02);
}

.l-articleBottom__section.-author .l-articleBottom__title {
  margin-bottom: 24px;
  text-align: center;
  color: var(--color_deep02);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  position: relative;
    border-left: none;
}

/* タイトル下ライン */
.l-articleBottom__section.-author .l-articleBottom__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color_deep02);
  margin: 10px auto 0;
  opacity: 0.6;
position: static;
}

.l-articleBottom__section.-author .p-authorBox {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px;
  background: #fff;
  border-radius: 24px;
}

/* 左側 */
.l-articleBottom__section.-author .p-authorBox__l {
  flex: 0 0 180px;
  text-align: center;
}

.l-articleBottom__section.-author .avatar {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 3px solid var(--color_deep02);
}

/* 名前 */
.l-articleBottom__section.-author .p-authorBox__name {
  display: block;
  margin-top: 14px;
  color: var(--color_deep02);
  line-height: 1.6;
  transition: 0.3s;
}

.l-articleBottom__section.-author .p-authorBox__name:hover {
  opacity: 0.7;
}

/* 右側テキスト */
.l-articleBottom__section.-author .p-authorBox__desc {
  margin: 0;
  color: #444;
  font-size: 0.98rem;
  line-height: 2;
}

/* スマホ時は非表示 */
@media screen and (max-width: 767px) {
  .l-articleBottom__section.-author {
    display: none;
  }
}
/* -----------------------------
投稿の詳細ページ
----------------------------- */
@media (min-width: 600px) {
  .single .c-postTitle__ttl {
    margin: 0 0.4em 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 0.3em 0;
  }
}

.c-postTitle__date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color_main);
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  flex: none;
  margin: 0;
  padding: 0;
}

/* 年部分 */
.c-postTitle__date .__y {
  font-size: 0.75rem;
  opacity: 0.8;
}

@media (min-width: 600px) {
  .c-postTitle__date .__y {
    font-size: 13px;
  }
}

@media (min-width: 600px) {
  .c-postTitle__date .__md {
    font-size: 13px;
  }
}

/* -----------------------------
-type-listの装飾
----------------------------- */
.c-tabBody__item .p-postList .p-postList__title {
  padding: 0.2em;
}

.-type-list .p-postList__item {
  margin-bottom: 0;
  margin-top: 0;
  border-bottom: 1px dashed var(--color_main);
  padding: 1em 0;
}

.c-tabBody__item .p-postList__body {
  position: relative;
  transition: opacity .25s;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-image:
    linear-gradient(transparent calc(100% - 1px), var(--color_gray) 50%, var(--color_gray)),
    linear-gradient(90deg, transparent calc(100% - 1px), var(--color_gray) 50%, var(--color_gray));
  background-repeat: repeat;
  background-size: 16px 16px;
  margin: 0 0 0 1em;
}

.c-tabBody__item .p-postList .p-postList__title {
  flex-grow: 1;
}

.c-tabBody__item .p-postList__meta {
  text-align: center;
}

/* -----------------------------
サイドバー設定（装飾）
----------------------------- */
.widget_archive select,
.widget_categories select,
.wp-block-archives select,
.wp-block-categories select {
  border: 1px solid var(--color_main);
}

.c-listMenu a {
  border-bottom: 1px dashed var(--color_main);
}

.widget_categories > ul > .cat-item > a:before,
.wp-block-categories-list > li > a:before {
  color: var(--color_main);
}

/* -----------------------------
目次の設定
----------------------------- */
ul.is-style-index li:before {
  font-family: 'Font Awesome 6 Free';
  content: '\f044' !important;
  border-bottom: 0;
  border-left: 0;
  top: 0;
  background: no-repeat;
}

.p-toc__link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px dashed var(--color_main);
  transition: color 0.3s ease;
}

.p-toc__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: var(--color_main);
  transition: width 0.3s ease;
  z-index: 1;
}

.p-toc__link:hover {
  color: var(--color_main_hover);
}

.p-toc__link:hover::after {
  width: 100%;
}
/* 検索フォーム全体 */
#search-2 .c-searchForm {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  overflow: hidden;
}

/* 入力欄 */
#search-2 .c-searchForm__s {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
}

/* プレースホルダー */
#search-2 .c-searchForm__s::placeholder {
  color: #999;
}

/* 検索ボタン */
#search-2 .c-searchForm__submit {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--color_main) !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
    right: 10px;
    top: initial;
}

/* ホバー */
#search-2 .c-searchForm__submit:hover {
  opacity: .85;
  transform: scale(.96);
}