body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: white;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
}

header {
    background-color: #333;
    margin:0;
    padding:0;
}



/* Header */
.header {
		background: #2D2D2D;
		height: 66px;
		left: 0;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 9999;
	}
	
	.header-wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: left;
	}
	
	.header-logo {
		align-items: center;
		display: flex;
		justify-content: left;
		max-width: 250px;
		padding: 22px 15px 15px 15px;
		width: 45%;
	}
	
	.header-logo-image {
		height: calc(66px - 44px);
	}

	.header-navi {
		height: auto;
		position: absolute;
		right: 1.5rem;
		top: calc(50%);
		transform: translateY(-50%);
	  	-webkit- transform: translateY(-50%);
		width: 2rem;
	}	

	.menu-trigger,
	.menu-trigger span {
		box-sizing: border-box;
		display: inline-block;
		transition: all .4s;
	}
	.menu-trigger {
		appearance: none;
		background: none;
		border: none;
		cursor: pointer;
		height: 22px;
		position: relative;
		width: 25px;
	}
	.menu-trigger span {
		background-color: #fff;
		border-radius: 2px;
		height: 2px;
		left: 0;
		position: absolute;
		width: 100%;
	}

	.menu-trigger span:nth-of-type(1) {
	  top: 0;
	}
	.menu-trigger span:nth-of-type(2) {
	  top: 10px;
	}
	.menu-trigger span:nth-of-type(3) {
	  bottom: 0;
	}

	.menu-trigger.active span:nth-of-type(1) {
	  transform: translateY(10px) rotate(-45deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
	  opacity: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
	  transform: translateY(-10px) rotate(45deg);
	}
	
	.menu {
		background: #2D2D2D;
		color: #FFFFFF;
		height: 100vh;
		padding: 66px 0 0 0;
		opacity: .95;
		position:fixed;
		width: 100%;
		top:0;
		z-index: 9998;
	}
	
	.menu.hidden {
		display:none;
	}
	
	.menu.animation {
		animation: menu .8s cubic-bezier(.4, 0, .2, 1);
	}

	@keyframes menu {
		0% {
		  opacity: 0;
	  }
		
	  100% {
		  opacity: .95;
	  }
	}
	
	.menu-list {
		margin: 2rem 2rem;
		opacity: 1;
		width: calc( 100% - 4rem);
	}
	
	.menu-item {
		height: 4rem;
	}

	.menu-item span {
		width: 100%;
		text-align: center;
	}

	.menu-border-top {
		border-top : 1px solid rgba(255, 255, 255, .8);
	}

h1 {
    margin:0;
    padding:0;
}

div.main-content {
    width:80%;
    margin-top: 140px;
    margin-left:auto;
    margin-right:auto;
}

div.main-content h2{
    text-align: center;
    color:#91E4CF;
}

#mainlogo {
    width:50%;
    margin-top:300px;
    margin-left:auto;
    margin-right:auto;
}

#mainpolicy {
    width:70%;
    margin-top:1em;
    margin-left:auto;
    margin-right:auto;
}

#mainpolicy p {
    text-align: center;
    font-size: clamp(1rem, 0.6rem + 1.2vw, 1.5rem);
}

.main-content h2{
	font-weight:bold;
	font-size: 1.2em;
	margin: 0.5em 0;
}

/* 親要素：デフォルト（スマホ）は縦並び＆中央寄せ */
.service-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 90%;
    margin: 20px auto;
}

/* 各BOXのスタイル */
.service-box {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* 縦並びを維持 */
}

/* PC向け設定（768px以上） */
@media (min-width: 768px) {
    .service-container {
        flex-direction: row;
        justify-content: center;
        align-items: stretch; /* BOXの高さを一番長いものに合わせる */
        max-width: 1200px;
    }

    .service-box {
        flex: 1;
        max-width: 350px;
    }
}

/* テキストの調整 */
.service-box h2 {
    font-size: 1.2rem;
    color: #91E4CF;
    margin-bottom: 10px;
}

.service-box h3 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    /* --- 修正ポイント：余白を自動で伸ばし、ボタンを下に押し出す --- */
    flex-grow: 1;
    margin-bottom: 20px; 
}

/* --- 追加：詳細リンクボタンのスタイル --- */
.detail-btn {
    display: block;
    width: fit-content;
    
    margin-top: auto; 
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;

    padding: 10px 24px;
    background-color: #91E4CF;
    color: #222;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85rem;
    transition: background-color 0.3s, transform 0.2s;
}

.detail-btn:hover {
    background-color: #b5f0e2;
    transform: translateY(-2px);
}

/* ロゴコンテナの設定 */
.logo-container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; 
    gap: 15px;
    width: 100%;
    margin-bottom: 15px; /* 下の文章との隙間 */
}

.square-logo {
    width: 100px;
    height: 100px;
    flex-shrink: 1;
    object-fit: contain;
    min-width: 50px; 
}




#background-animation-container {
  background-color: #222;
  height: 100vh;

  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: -1000;
}

.ani-bubble {
  background-color: blue;
  border-radius: 75px;
  height: 150px;
  position: absolute;
  top: 100%;
  width: 150px;

  -webkit-animation: bubblemove 10s linear infinite;
  -moz-animation: bubblemove 10s linear infinite;
  animation: bubblemove 10s linear infinite;
}

@-webkit-keyframes bubblemove {
  from { top: 100%; }
  to   { top: -600px; }
}
@-moz-keyframes bubblemove {
  from { top: 100%; }
  to   { top: -600px; }
}
@keyframes bubblemove {
  from { top: 100%; }
  to   { top: -600px; } /* This must be far enough off screen to allow the largest object to wander off with enough delay before restarting at the bottom, to be caught by the interval timer */
}

/* Page */
.content-box {
	background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
    display: block;
	gap: 20px;
	width: 80%;
	margin-top: 86px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

.content-box h2 {
	font-size: 1.4rem;
    color: #91E4CF;
    margin-bottom: 10px;
}


/* footer */
.footer {
		background: #2D2D2D;
		color: #2C748C;
		padding: 30px 15px 1.4rem 15px;
	}
	
	.footer-logo {
		display: block;
		height: 3rem;
		margin: 0 auto;
	}
	
	.footer-logo-image {
    	height: calc(66px - 14px);
	}


	.footer-list {
		width: 100%;
	}
	
	.footer-list-item {	
		border-bottom: 1px solid #2C748C;
		height: 3rem;
	}
	
	.footer-sns-capton {
		margin-right: 1rem;
		text-indent: .5rem;
	}
	
	.footer-sns-icon {
		width: 3rem;
	}
	
	.sns-icon-svg {
		width: 2rem;
	}
	
	.curve-area {
		width: 100%;
		height: 4rem;
		margin: 0 auto;
	}

	.curve-box {
	  height: 100%;
	  background: #FFFFFF;
	  overflow: hidden;
	}

	.curve-section {
	  width: 200%;
	  height: 100%;
	  border-radius: 0%;
	  background: #000;
	  top: 25%;
	  left: -50%;
	  right: 0;
	  position: relative;
	  border-top: 10px solid #BCBCBC;
	}
	
.footer-logo {
	width:60%;
	margin-left:auto;
	margin-right:auto;
}

.footer-logo svg {
	height: 100%;
	width: auto;
}
/* about */
.business-profile {
    display: block;
    line-height: 1.6;
}

.profile-item {
    
    border-bottom: 1px solid #eee;
	margin-bottom: 10px;
}

.profile-item dt {
   	color: #aaa;
    font-size: 0.9em;
}

.profile-item dd {
    
    color: #fff;
}

/* management */
.heading {
	position: relative;
	font-size: 26px;
}

.heading::before {
	content: attr(data-number);
	display: block;
	color: #57C0AB;
	font-size: 30px;
}

.heading::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: #57C0AB;
}

.text-marker-green {
    background: linear-gradient(transparent 70%, #91E4CF 70%);
}

.fc-opt {
 color: rgb(0, 0, 0, 0.5);
}
.circle {
    align-items: center;
    background-color: rgb(87, 192, 171, 0.9);
    border-radius: 50%;
    display: flex;
    height: 50px;
    justify-content: center;
    width: 50px;
}
.appeal-number {
    margin: 0 auto 1.5rem auto;
}

/* --- PRICEセクション全体 --- */
.price-section {
    padding: 60px 0;
    color: #fff;
}

/* 料金カードの枠組み */
.price-card-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #91E4CF;
    border-radius: 12px;
    padding: 40px 30px;
    width: 100%;
    max-width: 500px; /* カードが広がりすぎないように制限 */
    position: relative;
    text-align: center;
    box-shadow: 0 4px 15px rgba(145, 228, 207, 0.1);
}

/* 「初回限定25%OFF」ラベル */
.price-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #91E4CF;
    color: #222;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* プラン名 */
.price-plan-name {
    font-size: 1.4rem;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #fff;
}

/* 価格エリア */
.price-amount-area {
    margin-bottom: 20px;
}

.price-old {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-current {
    font-size: 2.5rem;
    font-weight: bold;
    color: #91E4CF;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    margin-right: 5px;
}

.tax {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: normal;
    margin-left: 5px;
}

/* 仕切り線 */
.price-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

/* サービス内容リスト */
.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.price-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

/* リストの頭にチェックマークをつける */
.price-features li::before {
    content: '✔';
    color: #91E4CF;
    position: absolute;
    left: 0;
    top: 0;
}

.price-features .note {
    font-size: 0.8rem;
    color: #aaa;
    display: block; /* 注釈を改行して表示 */
    margin-top: 2px;
}

/* --- その他のSNSについての注釈エリア --- */
.price-note-area {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.price-note-area p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 0.9rem;
}

/* Chartist */
.x-chart-wrapper {
    position: relative; /* ここが基準 */
    margin: 0 auto;
    width: 100%;        /* スマホ用 */
    height: 280px;      /* スマホ用 */
    background: transparent;
}

/* Policy */
/* --- プライバシーポリシー専用スタイル --- */

.privacy-policy {
    max-width: 800px;
    margin: 60px auto;      /* 上下マージンと中央寄せ */
    padding: 0 20px;        /* スマホ用横余白 */
    color: #fff;            /* 基本文字色：白 */
    font-family: sans-serif;
    line-height: 1.8;       /* 読みやすく行間を広めに */
}

/* タイトル (H2) */
.privacy-policy h2 {
    font-size: 1.8rem;
    font-weight: bold;      /* リセット対策：太字にする */
    color: #91E4CF;         /* テーマカラー */
    text-align: center;
    margin-bottom: 40px;    /* リセット対策：下の余白確保 */
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(145, 228, 207, 0.3); /* 下線 */
}

/* 各条文の見出し (H3) */
.privacy-policy h3 {
    font-size: 1.2rem;
    font-weight: bold;      /* リセット対策 */
    margin-top: 50px;       /* 上の条文との間隔 */
    margin-bottom: 20px;    /* 本文との間隔 */
    padding-left: 15px;     /* 左の余白 */
    border-left: 5px solid #91E4CF; /* 左にアクセントライン */
    line-height: 1.4;
}

/* 本文 (p) */
.privacy-policy p {
    margin-bottom: 20px;    /* リセット対策：段落ごとの余白 */
    font-size: 1rem;
    color: #eee;            /* 真っ白すぎない白 */
}

/* リスト (ol / ul) */
.privacy-policy ol,
.privacy-policy ul {
    margin-bottom: 20px;    /* リセット対策 */
    padding-left: 1.5em;    /* リセット対策：左インデント確保 */
}

/* リストの番号・点 */
.privacy-policy ol {
    list-style-type: decimal; /* リセット対策：数字を出す */
}

.privacy-policy ul {
    list-style-type: disc;    /* リセット対策：黒丸を出す */
}

/* リストアイテム (li) */
.privacy-policy li {
    margin-bottom: 10px;    /* 項目ごとの余白 */
    line-height: 1.6;
}

/* ネスト（入れ子）されたリスト */
.privacy-policy li > ol,
.privacy-policy li > ul {
    margin-top: 10px;
    margin-left: 10px;
    list-style-type: lower-alpha; /* 子リストはアルファベット(a, b...)にするなど */
}

/* 最後の制定日エリアの調整 */
.privacy-policy p:last-child {
    color: #aaa;
    font-size: 0.9rem;
}

/* スマホ調整 */
@media (max-width: 767px) {
    .privacy-policy h2 {
        font-size: 1.5rem;
    }
    .privacy-policy h3 {
        font-size: 1.1rem;
        margin-top: 40px;
    }
}



/* PCサイズ設定 */
@media (min-width: 768px) {
    .x-chart-wrapper {
        width: 80%;
        height: 400px;
    }
}

/* ▼ 背景アイコン：グラフとは別の独立したdivとして配置 */
.x-icon-bg {
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* 高さに応じてサイズ可変（25%） */
    height: 44%;
    width: auto;
    aspect-ratio: 1/1; /* 正方形を維持 */
    
    background-image: url('https://taysikuu.jp/img/icon-x.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    
    opacity: 0.5; /* 透明度 */
    z-index: 1;   /* 一番下 */
}

/* ▼ グラフ本体：背景の上に被せる */
.x-growth-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 2; /* 背景より手前 */
}

/* グラフの中身（SVG） */
.x-growth-chart svg {
    overflow: visible !important;
    width: 100%;
    height: 100%;
}

/* --- 以下グラフのデザイン（変更なし） --- */
.x-growth-chart .ct-series-a .ct-line {
    stroke: #1DA1F2;
    stroke-width: 4px;
    stroke-linecap: round;
}
.x-growth-chart .ct-series-a .ct-point {
    stroke: #1DA1F2;
    stroke-width: 10px;
}
.x-growth-chart .ct-grid {
    stroke: rgba(255,255,255, 0.5); 
    stroke-dasharray: 2px; 
}
.x-growth-chart .ct-label {
    color: #fff;
    font-size: 0.8rem;
    white-space: nowrap; 
}
.ct-point-label {
    fill: #1DA1F2;
    font-weight: bold;
    font-size: 0.9rem;
    paint-order: stroke;
}

/* Contact */
/* --- フォーム全体の枠組み --- */
.contact-form {
    max-width: 700px;           /* フォームの最大幅 */
    margin: 0 auto;             /* 中央寄せ */
    padding: 40px;
    background: rgba(255, 255, 255, 0.03); /* うっすら背景色をつける */
    border: 1px solid rgba(145, 228, 207, 0.2); /* 薄いミントグリーンの枠線 */
    border-radius: 12px;
    box-sizing: border-box;
}

/* --- ラベル（項目名） --- */
.contact-form label {
    display: block;
    margin-bottom: 10px;
    color: #fff;                /* 白文字 */
    font-weight: bold;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

/* 必須項目の「必須」バッジなどを装飾したい場合 */
.contact-form .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

/* --- 入力エリア（テキスト・メール・テキストエリア共通） --- */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form textarea {
    width: 100%;                /* 親要素いっぱいに広げる */
    background-color: rgba(0, 0, 0, 0.5); /* 黒を少し透過 */
    border: 1px solid #555;     /* グレーの枠線 */
    border-radius: 4px;
    padding: 15px;              /* 内側の余白を広めに */
    color: #fff;                /* 入力文字は白 */
    font-size: 1rem;
    box-sizing: border-box;     /* width:100%が崩れないように */
    margin-bottom: 5px;        /* 下の項目との余白 */
    transition: all 0.3s ease;
    font-family: inherit;       /* フォントを継承 */
}

/* --- フォーカス時（入力しようとした時） --- */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #91E4CF;      /* 枠線をミントグリーンに */
    box-shadow: 0 0 10px rgba(145, 228, 207, 0.2); /* ぼんやり光らせる */
    background-color: rgba(0, 0, 0, 0.8);
}

/* --- テキストエリアの高さ調整 --- */
.contact-form textarea {
    height: 200px;              /* 高さを確保 */
    resize: vertical;           /* 縦方向のみリサイズ許可 */
}

/* --- 送信ボタン --- */
.contact-form input[type="submit"] {
    display: block;
    width: 100%;
    max-width: 300px;           /* ボタンが大きくなりすぎないように */
    margin: 10px auto 0;        /* 中央寄せ */
    padding: 15px;
    background-color: #91E4CF;  /* テーマカラー */
    color: #222;                /* 文字は黒 */
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;           /* スマホのデフォルトスタイル解除 */
}

/* 送信ボタンのホバー時 */
.contact-form input[type="submit"]:hover {
    background-color: #b5f0e2;  /* 少し明るく */
    transform: translateY(-3px); /* 浮き上がるアニメーション */
    box-shadow: 0 5px 15px rgba(145, 228, 207, 0.3);
}

/* --- 入力エラーメッセージ（CF7が出すやつ） --- */
.contact-form .wpcf7-not-valid-tip {
    color: #ff6b6b;             /* エラーは赤系で見やすく */
    font-size: 0.85rem;
    margin-top: -20px;          /* 入力欄の下に近づける */
    margin-bottom: 20px;
    display: block;
}

/* --- 送信完了・失敗のメッセージボックス --- */
.contact-form .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px !important;
    border-radius: 4px;
    border: 1px solid #91E4CF !important; /* 枠線をテーマカラーに */
    background-color: rgba(145, 228, 207, 0.1);
    color: #fff;
    text-align: center;
}

/* --- スマホ調整 --- */
@media (max-width: 767px) {
    .contact-form {
        padding: 20px;          /* スマホでは余白を狭く */
    }
    
    .contact-form input[type="submit"] {
        width: 100%;            /* スマホではボタンを幅いっぱいに */
        max-width: none;
    }
}


/* common */


.bg-white {
	background: #FFFFFF;
}

.border-none {
	border: none;
}

.fs-36 {
	font-size: 3.6rem;
}

.fs-20 {
	font-size: 2rem;
}

.fs-18 {
	font-size: 1.8rem;
}

.fs-16 {
	font-size: 1.6rem;
}

.fs-14 {
	font-size: 1.4rem;
}

.fs-12 {
	font-size: 1.2rem;
}

.fs-10 {
	font-size: 1.0rem;
}

.fs-08 {
	font-size: .8rem;
}

.fs-06 {
	font-size: .6rem;
}

.ff-folk {
	font-family: "Shin Go Regular", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-weight: 700;
}

.ff-cursive {
	font-family: "Shin Go Regular", cursive;
}

.ff-test {
	font-family: "Shin Go Bold"
}

.fw-bold {
	font-weight: 700;
}

.fc-verdigris {
	color:#57C0AB;
}

.fc-tealblue {
	color:#2C748C;
}

.fc-jacarta {
	color:#3B365A;
}

.fc-eggblue {
	color:#91E4CF;
}

.fc-white {
	color: #FFFFFF;
}

.fc-black {
	color: #000000;
}

.fc-pink {
	color:#E61673;
}

.fc-disable {
	opacity: .6;
}

.lh-10 {
	line-height: 1;
}

.lh-12 {
	line-height: 1.2;
}

.lh-14 {
	line-height: 1.4;
}
.lh-16 {
	line-height: 1.6;
}

.width-wrap {
	margin: 0 auto;
	max-width: 1000px;
}

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

.centerd-flex {
	align-items: center;
	display: flex;
  	justify-content: center;
}

.table {
	border-collapse: collapse;
	display: table;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
}


.mrg-btm-10 {
	margin-bottom: 1rem;		
}

.mrg-btm-12 {
	margin-bottom: 1.2rem;		
}

.mrg-btm-14 {
	margin-bottom: 1.4rem;		
}
.mrg-btm-16 {
	margin-bottom: 1.6rem;		
}

.mrg-btm-18 {
	margin-bottom: 1.8rem;		
}

.mrg-btm-20 {
	margin-bottom: 2rem;		
}

.mrg-rignt-4 {
	margin-right: .4rem
}

.mrg-rignt-10 {
	margin-right: 1rem
}

.mrg-top-10 {
	margin-top: 1rem;
}

.mrg-top-12 {
	margin-top: 1.2rem;
}

.mrg-auto {
	margin: 0 auto;
}

.pdg-0 {
	padding: 0;
}

.pdg-10 {
	padding: 10px;
}

.pdg-15 {
	padding: 15px;
}

.pdg-20 {
	padding: 20px;
}

.pdg-lr-15 {
	padding: 0 15px;
}

.pdg-ud-15 {
	padding: 15px 0;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.none {
	display: none;
}

.block {
	display: block;
}

.relative {
	position: relative;
}

.absolute-middle {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform : translate(-50%,-50%);
	transform : translate(-50%,-50%);
}

.absolute-indent {
	display: block;
	position: absolute;
	top: 50%;
	left: .5rem;
	transform : translateY(-50%);
}

.absolute-right {
	display: block;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform : translateY(-50%);
}

.absolute-wrap {
	height: 100%;
	left : 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.caption-border {
	align-items: center;
	display: flex;
	justify-content: center;
}
.caption-border:before,
.caption-border:after {
	border-top: 1px solid;
	content: "";
	width: 1rem;
}
.caption-border:before {
	margin-right: 1rem;
}
.caption-border:after {
	margin-left: 1rem;
}

.nav-icon {
    fill: #FFFFFF;
    margin-top: 2px;
    width: .6rem;
}

.pc-only {
    display: none;
}

.pc-center {
    text-align: left;
    display: block;
}

@media (min-width: 768px) {
    .pc-only {
        display: inline;
    }
	.pc-center {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
	
	.service-box h2 {
        min-height: 3.6em; /* 2〜3行分くらいの高さを確保 */
        display: flex;
        align-items: center; /* 文字を上下中央に配置 */
        justify-content: center; /* 文字を左右中央に配置 */
    }

    .service-box h3 {
        min-height: 3em;   /* 2行分くらいの高さを確保 */
        /* サブタイトルも同様に高さを確保 */
    }
}

