/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 08 2026 | 11:16:09 */
/* ==========================================================================
   基本スタイル / Base Styles
   ========================================================================== */

body{
background-color:#fffcfa;
font-family: source-han-sans-cjk-ja, sans-serif;
font-weight: 400;
font-style: normal;
letter-spacing:0.04em;
}

.post, .page {
  margin: 0;
}

a {
    color: #005AB4;
}

a:visited {
    color: #005AB4;
}

p {
    line-height: 2.2;
    display: block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    unicode-bidi: isolate;
}

ul,
ol {
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}


ul {
  list-style: none;
}

/* ==========================================================================
   レイアウト / Layout
   ========================================================================== */

/* Flexbox レイアウト */
.flex {
    display: flex;
    align-items: center;
}

.flex_bet {
    display: flex;
    justify-content: space-between;
}



.flex_top {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.flexmenu {
    display: flex;
    align-items: center;
}

/* ブログレイアウト */
.flex-blog {
    display: flex;
    align-items: flex-start;
    margin-top: 50px;
    gap: 60px;
}

.blog_main {
    width: 70%;
	padding:0 20px;
}

.blog_side {
    width: 30%;
	padding:0 20px;
}

.widget_archive{
	background: rgba(255,255,255,0.8);
	padding:20px 20px 20px 30px;
	border-radius:10px;
}

/* コンテンツエリア */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.content p {
    line-height: 1.8;
    color: #666;
}


/* ==========================================================================
   ヘッダー / Header
   ========================================================================== */

.site-header {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
    padding: 30px 20px;
}

.site-branding img {
    max-width: 370px;
}

.bg_header {
    margin-top: -135px;
    height: 200px;
    z-index: 1;
    background: #08379c;
    background: linear-gradient(155deg, rgba(8, 55, 156, 1) 0%, rgba(42, 102, 212, 1) 63%, rgba(0, 106, 255, 1) 100%);
}

.title_blog{
	position:relative;
	text-align:center;
	font-size:2rem;
	font-weight:600;
	letter-spacing:0.1em;
	margin:10px auto 60px;
	z-index:10;
}

.entry-title_blog{
	font-size:1.7rem;
	font-weight:600;
	margin-bottom:15px;
}

#breadcrumbs{
	font-size:14px;
	padding:25px 0;
}

/* ==========================================================================
   ナビゲーション / Navigation
   ========================================================================== */

.main-navigation a {
    color: #fff;
    font-size: 1.1em;
    padding-top: 7px;
    font-weight: bold;
    margin-left: 40px;
}

.nav {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    margin-left: 30px;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s;
}

a.nav_menu {
    position: relative;
    display: inline-block;
}

a.nav_menu::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

a.nav_menu:hover::after {
    transform: scale(1, 1);
}

.nav-subtitle {
    display: none;
}


/* サイドナビゲーションメニュー */
  .menu-button {
    position: fixed;
    top: -120px; /* 円の上半分を隠す */
    right: -110px; /* 円の右半分を隠す */
    width: 240px;
    height: 240px;
	background-color: rgba(0,90,180,0.8);
    border-radius: 50%; /* 完全な円形 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    padding-bottom: 60px; /* 中身を左下に移動 */
    padding-right: 90px; /* 中身を左下に移動 */
	color:#fff;
	border:none;
	padding-top:150px;
	font-size:12px;
	letter-spacing:0.2em;
  }




.menu-button:hover {
    background-color: #357abd;
}

.a_left{
text-align:left;
}

.menu-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
	margin-top:9px;
  }

  .menu-lines span {
    width: 33px;
    height: 1px;
    background-color: white;
    display: block;
    transition: all 0.3s ease;
  }
  .menu-lines span:nth-child(2) {
    width: 20px;
    height: 1px;
    background-color: white;
    display: block;
    transition: all 0.3s ease;
  }

.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 160px;
    background-color: #005AB4;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-radius: 0 0 0 10px;
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-menu ul {
    list-style: none;
}

.nav-menu ul li {
    border-bottom: 1px dotted #f0f0f0;
}

.nav-menu ul li:last-child {
    border-bottom: none;
}

.nav-menu ul li a {
    display: block;
    padding: 22px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
	letter-spacing:0.08em;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    line-height: 16px;
}

.nav-menu ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: #005AB4;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.nav-menu ul li a:hover {
    background-color: #f8f9fa;
    padding-left: 20px;
    color: #005AB4;
}

.nav-menu ul li a:hover::before {
    transform: scaleY(1);
}

/* オーバーレイ */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}





/* メニューボタン */
.menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  border-bottom-left-radius: 0; /* 削除またはリセット */
  clip-path: circle(130px at 130px 0); /* ← これで四分円を切り抜く */
  background-color: rgba(0,90,180,0.8);
  border: none;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  padding-left: 45px;
  transition: all 0.3s ease;
}

.menu-btn_menu {
	color:#fff;
	font-size:10px;
	letter-spacing:0.2em;
	margin-bottom:12px;
}

.menu-btn:hover {
    transform: scale(1.1);
}



        /* ハンバーガーアイコン（2本線） */
        .hamburger {
            position: relative;
            width: 32px;
            height: 12px;
        }

        .hamburger span {
            position: absolute;
            width: 100%;
            height: 1px;
            background: white;
            transition: all 0.3s ease;
		            z-index:1010;
        }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 10px;
        }

        /* メニューが開いた時のアイコン */
        .menu-btn.active .hamburger span:nth-child(1) {
            top: 5px;
            transform: rotate(45deg);
        }

        .menu-btn.active .hamburger span:nth-child(2) {
            top: 5px;
            transform: rotate(-45deg);
        }


.flex_menu {
    display: flex;
    justify-content: space-between;
	gap: 50px;
	background-color: #fff;
	border-radius:10px;
	padding:10px 30px 15px;
	max-width:600px;
	margin-top:20px;
}

        /* 円形オーバーレイ */
        .circle-overlay {
            position: fixed;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background-color: rgba(0,90,180,0.9);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 998;
            pointer-events: none;

        }

        /* メニューコンテンツ */
        .menu-content {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            opacity: 0;
            pointer-events: none;
        }

        .menu-content.active {
            pointer-events: auto;
        }

        .menu-nav {
            text-align: center;
			margin:0 20px;
        }

.menu_main{
			border-bottom:1px solid #005AB4;

}

.flex_50{
	flex-basis: 50%;
}

        .menu-nav ul {
            list-style: none;
			width:100%;
        }

        .menu-nav li {
			text-align: left;
			display:block;
            margin: 20px 0;
            opacity: 0;
            transform: translateY(20px);
			width:100%;
			border-bottom:1px solid #005AB4;
        }

        .menu-nav a {
            color: #005AB4;
            text-decoration: none;
            font-size:0.8rem;
			letter-spacing:0.07em;
            font-weight: bold;
            transition: all 0.3s ease;
            display: block;
			width:100%;
			padding-bottom:10px;

        }

        .menu-nav a:hover {
            color: #4a9eff;
            transform: translateY(-8px);
        }

/* ==========================================================================
   ヒーローセクション / Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center top;
    padding: 170px 0 80px;
    min-height: 300px;
    margin-top: -135px;
}

/* ダークオーバーレイ */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 2rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ヒーローテキスト */
.herotop {
    font-size: 2.6em;
    color: #fff;
    text-align: center;
    font-weight: 600;
	z-index:800;
	position:relative;
}
.herotop_2 {
	padding-top:10px;
    font-size: 1.8em;
    color: #fff;
    text-align: center;
    font-weight: 600;
	z-index:800;
	position:relative;
}

.heromini {
    font-size: 1.2em;
    color: #fff;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
}

.herominiwaku {
    background-color: #005ab4;
	border-radius:6px;
    padding: 10px;
}

.wp-block-uagb-container.uagb-block-1040c803.uag-blocks-common-selector {
  --z-index-mobile: 8!important;
}

/* 波形シェイプ */
.uagb-container__shape {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.uagb-container__shape-bottom {
    bottom: -1px;
    transform: scaleY(-1);
    z-index: 2;
}

.uagb-container__shape-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.uagb-container__shape-fill {
    fill: #ffffff;
}

/* トップテキスト配置 */
.relative {
    position: relative;
}

.relative_waku {
    position: relative !important;
    width: 100%;
    height: 370px;
    text-align: center;
    padding: 0 !important;
}

.toptextwaku {
    width: 100% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 800;
}

.txt_c{
	text-align:center;
}


/* ==========================================================================
   メインコンテンツ / Main Content
   ========================================================================== */

.site-main {
    margin-top: -135px;
    z-index: 3;
    position: relative;
}

.single-post .site-main,
.archive .site-main,
.blog .site-main {
    max-width: 1170px;
    margin: 0 auto;
}

/* 投稿 */
.post {
    margin: 0 0 2em;
    padding-bottom: 3em;
    border-bottom: 1px dotted #333;
}

.entry-title {
    margin-top: 0;
}

.entry-title a {
    font-size: 1.2em;
    color: #404040;
    text-decoration: none;
}

.kb-post-list-item .type-post {
    border: 1px solid #ddd;
}

.posted-on{
background-color: rgba(255,255,255,0.6);
font-size:14px;
padding:4px 8px;
border-radius:6px;
}

.entry-meta{
	padding-bottom:10px;
}

/* セクションタイトル */
.sec_sub {
    text-align: center;
    font-size: 28px;
    color: #005AB4;
    margin-bottom: 15px;
    font-weight: 600;
}

.m50{
	margin-top:-40px;
}

.mar_b_30{
	margin-bottom:30px;
}

.sec_sub_white {
	display:inline-block;
	width:auto !important;
	padding:3px 20px;
    text-align: center;
    font-size: 22px;
	border-radius:6px;
	background-color:#fff;
    color: #005AB4;
    margin-bottom: 25px;
    font-weight: 600;
	margin-right:auto;
	margin-left:auto;
}

.sec_title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 600;
	margin-top:-40px;
}

.sec_title.topmini {
    font-size: 32px !important;
}

.sec_title_white {
    text-align: center;
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 600;
	color:#fff;
	margin-top:-40px;
}

.about_title{
    text-align: center;
    font-size: 23px;
    font-weight: 600;
}

.title_gyomu{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
	color: #005AB4;
	margin-bottom:20px;
}


.sec_text {
    text-align: center;
    line-height: 2em;
}

.circle_white {
            width: 190px !important;
            aspect-ratio: 1 / 1;  /* 正円を保証 */
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            border: 1px dotted #005AB4;
            box-sizing: border-box;  /* borderを含めたサイズ計算 */
            
            /* 文字を中央に配置 */
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;  /* 縮まないようにする */
            
            /* 文字のスタイル */
            font-size: 22px;
			letter-spacing:0.08em;
            font-weight: bold;
            color: #fff;
            text-align: center;
}

.circle_blue {
            width: 190px !important;
            aspect-ratio: 1 / 1;  /* 正円を保証 */
	        background-color: rgba(255,255,255,0.2);
            border: 1px dotted #005AB4;
            border-radius: 50%;
            box-sizing: border-box;  /* borderを含めたサイズ計算 */
            
            /* 文字を中央に配置 */
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;  /* 縮まないようにする */
            
            /* 文字のスタイル */
            font-size: 22px;
			letter-spacing:0.08em;
            font-weight: bold;
            color: #005AB4;
            text-align: center;
}

.flex_center{
	display:flex;
	justify-content: center;
}
.name{
	font-size:20px;
	font-weight:600;
	margin-right:20px;
}
.name_eng{
	font-size:20px;
	font-weight:600;
}

.faq .uagb-faq-questions{
	align-items: flex-start;
}

/* フッター */
.site-info {
    text-align: center;
    font-size: 0.9em;
	padding:30px 20px;
}



/* ==========================================================================
   背景・装飾 / Backgrounds & Decorations
   ========================================================================== */

.bgblue_g {
    background: #08379c;
    background: linear-gradient(155deg, rgba(8, 55, 156, 1) 0%, rgba(42, 102, 212, 1) 63%, rgba(0, 106, 255, 1) 100%);
}

.whiteback {
	position:relative;
    background-color: #ebebeb;
    opacity: 1;
    background-image: linear-gradient(#f8f8f8 1.2px, transparent 1.2px), linear-gradient(to right, #f8f8f8 1.2px, #ebebeb 1.2px);
    background-size: 24px 24px;
}

.blueback {
	position:relative;
    background-color: #005AAF;
    opacity: 1;
    background-image: linear-gradient(#3168b7 1.2px, transparent 1.2px), linear-gradient(to right, #3168b7 1.2px, #005AAF 1.2px);
    background-size: 24px 24px;
}

.z900{
	z-index:900;
}



.perspective-grid {
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #0066cc 0%, #004d99 100%);
    position: relative;
}

.perspective-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(255, 255, 255, 0.3) 19px, rgba(255, 255, 255, 0.3) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(255, 255, 255, 0.3) 19px, rgba(255, 255, 255, 0.3) 20px);
}

/* 地図 */
#map-grayscale {
    height: 300px;
    width: 100%;
}


        .circle-container {
            display: flex;
            position: relative;
			justify-content: center;
			margin:30px auto 50px;
        }

        .circle {
            width: 180px;
            aspect-ratio: 1 / 1;
            border: 1px dotted #005ab4;
			background-color: rgba(255,255,255,0.7);
            border-radius: 50%;
            box-sizing: border-box;

            display: flex;
            justify-content: center;
            align-items: center;

            font-size: 20px;
            font-weight: bold;
            color: #005ab4;
            text-align: center;

            /* アニメーション */
            opacity: 0;
            transform: scale(0);
            animation: appearCircle 1s ease-out forwards;
        }

        /* 円を1/5ずつ重ねる（150pxの1/5 = 30px） */
        .circle:not(:first-child) {
            margin-left: -15px;
        }

        /* 各円のアニメーション遅延 */
        .circle:nth-child(1) {
            animation-delay: 0s;
            z-index: 4;
        }

        .circle:nth-child(2) {
            animation-delay: 0.3s;
            z-index: 3;
            border-color: #fff;
            color: #fff;
			background-color: rgba(0,90,180,0.8);
        }

        .circle:nth-child(3) {
            animation-delay: 0.6s;
            z-index: 2;
            border-color: #005ab4;
            color: #005ab4;
			background-color: rgba(255,255,255,0.7);
        }

        .circle:nth-child(4) {
            animation-delay: 0.9s;
            z-index: 1;
            border-color: #fff;
            color: #fff;
			background-color: rgba(0,90,180,0.8);
        }

        @keyframes appearCircle {
            0% {
                opacity: 0;
                transform: scale(0);
            }
            60% {
                transform: scale(1.1);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

/* ==========================================================================
   3Dキューブアニメーション / 3D Cube Animation
   ========================================================================== */

.stage {
    margin: 0 auto;
    width: 400px;
    perspective: 700px;
}

.cube {
    position: relative;
    width: 400px;
    height: 400px;
    transform-style: preserve-3d;
    animation: mixedRotation 8s linear infinite;
    z-index: 0 !important;
}

.panel {
    width: 400px;
    height: 400px;
    border: 1px solid #fff;
    box-sizing: border-box;
    font-weight: bold;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.panel p {
    font-size: 40px;
    height: 400px;
    line-height: 400px;
    margin: 0;
}

.front {
    transform: translateZ(200px);
}

.back {
    transform: translateZ(-200px) rotateX(180deg);
}

.left {
    left: -200px;
    transform: rotateY(-90deg);
}

.right {
    left: auto;
    right: -200px;
    transform: rotateY(-90deg);
}

.top {
    top: -200px;
    transform: rotateX(90deg);
}

.bottom {
    top: auto;
    bottom: -200px;
    transform: rotateX(-90deg);
}


/* ==========================================================================
   フォーム / Forms (Contact Form 7)
   ========================================================================== */

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 16px;
}

table th {
    width: 25%;
    background-color: #fff;
    border: 1px solid #ddd;
    box-sizing: border-box;
    padding: 15px;
    vertical-align: middle;
    font-weight: bold;
    text-align: left;
}

table td {
    border: 1px solid #dddddd;
    background-color: #f9f9f9;
    box-sizing: border-box;
    padding: 15px;
    vertical-align: top;
    text-align: left;
}

/* フォーム要素 */
input,
input[type="radio"] + label,
input[type="checkbox"] + label:before,
select option,
textarea,
select {
    padding: 1em;
    line-height: 1.4;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

input:focus,
textarea:focus {
    outline: 0;
    border-color: #333;
}

input[type="radio"]:checked + label,
input:checked + label:before,
select:focus,
select:active {
    background-color: #ffe530 !important;
    color: #fff;
    border-color: #ffe530;
}

input.wpcf7-text {
    box-sizing: border-box;
    width: 100%;
}

.wpcf7 textarea {
    box-sizing: border-box;
    width: 100%;
}

/* Contact Form 7 カスタムスタイル */
div.CF7_req {
    display: inline-block;
    background-color: #005AB4;
    color: #fff;
    font-size: 0.7em;
    white-space: nowrap;
    line-height: 1em !important;
    padding: 2px 6px 2px;
    margin-right: 8px;
    border-radius: 4px;
    vertical-align: middle;
}

.CF7_btn {
    text-align: center;
    margin-top: 20px;
}

.wpcf7 input.wpcf7-submit {
    background-color: #005AB4;
    border-radius: 4px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 30px auto;
    padding: 14px 80px;
	border:none;
}

.wpcf7 input.wpcf7-submit:hover{
    background-color: #fff;
    color: #005AB4;
    border:none;
}

.wpcf7-response-output {
    color: #fff;
    border: 2px solid #1254E1 !important;
}

.wpcf7-spinner {
    width: 0;
    margin: 0;
}

.wpcf7-not-valid-tip {
    font-size: 0.8rem;
    color: #ff6000;
}

#autozip {
    background-color: #0A55BD !important;
}

.wpcf7-response-output{
	color:#404040;
}

/* ==========================================================================
   ユーティリティクラス / Utility Classes
   ========================================================================== */

/* マージン */
.m90 {
    margin-top: -40px !important;
}

.mar_t_40 {
    margin-top: 40px;
}
.mar_t_10 {
    margin-top: 10px;
}
.mar_t_15 {
    margin-top: 15px;
}

.mar_icon{
	width:14px;
    margin-right: 10px;
	padding-bottom:3px;
}

.mar_up{
	margin-top:-150px;
	margin-bottom:50px;
}
.mar_b_10 {
    margin-bottom: 10px;
}

.mar_b_20 {
    margin-bottom: 20px;
}

.mar_b_30 {
    margin-bottom: 30px;
}

.mar_b_40 {
    margin-bottom: 40px;
}

.mar_b_50 {
    margin-bottom: 50px;
}

/* パディング */
.par_r_10 {
    padding-right: 10px;
}

/* 表示・非表示 */
.nomob {
    display: block;
}

.pc {
    display: block;
}

.mob {
    display: none;
}

/* z-index */
.z100 {
    z-index: 100;
}

/* カラー */
.blue {
    color: #005AB4;
}

.white {
    color: #fff !important;
}


/* ==========================================================================
   アニメーション / Animations
   ========================================================================== */

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mixedRotation {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}


/* ==========================================================================
   レスポンシブデザイン / Responsive Design
   ========================================================================== */

/* テーブルのレスポンシブ */
@media all and (max-width: 600px) {
    table th {
        text-align: left;
    }

    table th,
    table td {
        display: block;
        width: 100%;
        border-bottom: none;
    }

    table tr:last-child td:last-child {
        border-bottom: 1px solid #ccc;
    }
}

/* ヒーローセクションのレスポンシブ */
@media (max-width: 800px) {
    .hero-section {
        padding: 100px 0 80px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .uagb-container__shape-bottom svg {
        height: 60px;
    }
}

/* メインレスポンシブ */
@media screen and (max-width: 800px) {

    /* 表示切替 */
    .pc {
        display: none;
    }

    .mob {
        display: block;
    }

    .nomob {
        display: none;
    }
	
	body{
		font-size:15px;
	}

    /* ヘッダー */
    .site-header {
        padding: 20px 15px;
    }

    .site-branding img {
        max-width: 260px;
    }


    .nav {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background: #0a55bd;
        flex-direction: column;
        padding: 0;
        transition: right 0.3s;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* サイドメニュー */
	
/* サイドナビゲーションメニュー */
.menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-bottom-left-radius: 9999px; /* 右下の角だけを丸める */
	background-color: transparent;
	border: none;
	cursor: pointer;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	padding-top:17px;
	padding-left:20px;
	transition: all 0.3s ease;
        }
	
	.single-post .menu-btn_menu, .blog .menu-btn_menu, .archive .menu-btn_menu{
		color:#333;
	}
	
	.single-post .hamburger span, .blog .hamburger span, .archive .hamburger span{
		background-color:#333;
	}
	
	.menu-btn_menu {
  padding-left:16px;
		letter-spacing:0.1em;
}

    /* ヒーローセクション */
    .herotop {
        font-size: 1.76em;
    }
	 .herotop_2 {
        font-size: 1.2em;
    }

    .herominiwaku {
        padding: 7px;
    }

    .heromini {
        font-size: 0.9em;
    }

    /* セクションタイトル */
    .sec_sub {
        font-size: 20px;
    }

    .sec_title {
        font-size: 22px;
		margin-top: -43px;
    }
	
.sec_title.topmini {
    font-size: 21px !important;
	margin-bottom: 10px;
}
	
	.sec_title_white {
        font-size: 24px;
		margin-top: -43px;
    }
.about_title{
    font-size: 20px;
}
	
.circle{
	font-size:18px;	
	}
	
.circle_white {
            width: 155px !important;
            font-size: 21px;
}

.circle_blue {
            width: 155px !important;
            font-size: 20px;
}

.flex-blog{
	flex-direction:column;
	padding:0 20px;
	}
.blog_main, .blog_side {
  width: 100%;
}
	
.title_blog{
	position:relative;
	text-align:center;
	font-size:2rem;
	font-weight:600;
	letter-spacing:0.1em;
	margin:30px auto 40px;
	z-index:10;
}
	
.flex_menu {
	gap: 30px;
}
}


/* アニメーションを適用する要素の初期状態 */
.fade-in-item {
    opacity: 0; /* 透明 */
    transform: translateY(30px); /* 下から20px移動 */
    transition: opacity 1s ease-out, transform 1s ease-out; /* アニメーションの設定 */
}

/* アニメーション後の状態（JavaScriptで追加するクラス） */
.fade-in-item.is-visible {
    opacity: 1; /* 不透明 */
    transform: translateY(0); /* 元の位置に戻る */
}


/* アニメーションを適用する要素の初期状態 */
.spectra-image-gallery__media-wrapper {
    opacity: 0; /* 透明 */
    transform: translateY(30px); /* 下から20px移動 */
    transition: opacity 1s ease-out, transform 1s ease-out; /* アニメーションの設定 */
}

/* アニメーション後の状態（JavaScriptで追加するクラス） */
.spectra-image-gallery__media-wrapper.is-visible {
    opacity: 1; /* 不透明 */
    transform: translateY(0); /* 元の位置に戻る */
}



:root {
  --kd-green: #005ab4;       /* サイトのグリーン系アクセント */
  --kd-green-light: rgba(255, 255, 255, 0.3);
  --kd-text: #2d2d2d;
  --kd-sub: #666;
  --kd-head-bg: #005ab4;
}

/* ---- テーブル共通 ---- */
.kd-table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.75;
  margin-bottom: 0.5em;
}
 
.kd-table th,
.kd-table td {
  padding: 0.65em 1em;
  text-align: left;
  vertical-align: top;
}
 
/* カテゴリ列 */
.kd-table th {
  background-color: var(--kd-green-light);
  color: var(--kd-green);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  width:30%;
}
 
/* 内容列 */
.kd-table td {
  color: var(--kd-text);
  background-color: var(--kd-green-light);
  width:70%;
}
 
/* ヘッダー行 */
.kd-table thead tr th {
  background: var(--kd-head-bg);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
 
/* 偶数行の背景 */
.kd-table tbody tr:nth-child(even) td {
  background-color: #fafcfa;
}
 
/* タグ風スタイル（商品開発実績の各アイテム） */
.kd-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.kd-tag-list li {
  background: var(--kd-green-light);
  color: var(--kd-green);
  border-radius: 3px;
  padding: 1px 8px;
  font-size: 0.8rem;
  line-height: 1.7;
  white-space: nowrap;
}
 
/* ---- レスポンシブ ---- */
@media (max-width: 640px) {
  .kd-table,
  .kd-table thead,
  .kd-table tbody,
  .kd-table tr,
  .kd-table th,
  .kd-table td {
    display: block;
    width: 100%;
  }
  .kd-table thead {
    display: none;
  }
  .kd-table tr {
    margin-bottom: 0.8em;
    border-radius: var(--kd-radius);
    overflow: hidden;
  }
  .kd-table th {
    border-left-width: 4px;
    border-bottom: none;
    width: auto;
  }
  .kd-table td {
    border-top: none;
  }
}






/* ========================================
   吹き出し（初期状態・共通）
======================================== */
.circle .circle-desc {
    display: block;
    position: absolute;
    top: calc(100% + 18px);
    bottom: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 150px;
	height:158px;
    background: rgba(30, 30, 30, 0.88);
    color: #fff;
    font-size: 0.7em;
    line-height: 1.6;
    padding: 10px 14px;
    border-radius: 6px;
    text-align: left;
    pointer-events: none;
    opacity: 0;              /* ← 最初は非表示 */
    white-space: normal;
    z-index: 10;
}

/* 三角（上向き） */
.circle .circle-desc::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(30, 30, 30, 0.88);
}

/* ========================================
   アニメーション定義
======================================== */
@keyframes descFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* is-visible で順番に表示 */
.circle-container.is-visible .circle:nth-child(1) .circle-desc {
    animation: descFadeIn 0.6s ease forwards;
    animation-delay: 0.3s;
}
.circle-container.is-visible .circle:nth-child(2) .circle-desc {
    animation: descFadeIn 0.6s ease forwards;
    animation-delay:0.6s;
}
.circle-container.is-visible .circle:nth-child(3) .circle-desc {
    animation: descFadeIn 0.6s ease forwards;
    animation-delay: 0.9s;
}
.circle-container.is-visible .circle:nth-child(4) .circle-desc {
    animation: descFadeIn 0.6s ease forwards;
    animation-delay: 1.2s;
}

/* ========================================
   スマホ：2列グリッド
======================================== */
@media (max-width: 768px) {
	
	.circle {
width:165px;
margin-bottom: 70px;
    }
	
.circle:not(:first-child) {
  margin-left:0;
}
	
.circle-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 55px 15px;
        align-items: start;   /* ← これを追加 */
        justify-content: center; 
	justify-items: center; 
    }

    .circle {
        margin-bottom: 70px;
    }
	
    .circle .circle-desc {
        position: absolute;
        top: calc(100% + -40px);
        left: 50%;
        transform: translateX(-50%) translateY(-6px);
        background: rgba(30, 30, 30, 0.88);
        color: #fff;
        font-size: 14px;
        line-height: 1.6;
        padding: 10px 14px;
        border-radius: 6px;
        opacity: 0;
        text-align: left;
        white-space: normal;
        z-index: 10;
    }

    /* 三角も表示 */
    .circle .circle-desc::after {
        display: block;   /* ← noneを解除 */
    }
}