@charset "UTF-8";

/* ==================================================
   【1】基本リセット & 全体レイアウト
   ================================================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}
.title_mem {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
font-size: 2.0rem;
margin:30px 0 15px;
padding:0 15px;
text-align:center;
z-index:100;
}
.title_mem_page {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
font-size:160%;
margin:30px 0;
z-index:100;
}
.content_main{
	min-height:700px!important;
}
.mem_head_img{
	width:100%;
}
.mem_head_img img{
	width:100%;
}
.mem_txt01{
	text-align:justify;
	line-height:1.8em;
}
/* ==================================================
   【2】ヘッダー (PC/SP共通)
   ================================================== */
.jti-header {
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
    border-bottom: none !important; 
    box-shadow: none !important;
}

/* 内部のレイアウト用ラッパー */
.jti-header-inner {
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ロゴ部分 */
.jti-logo a {
    display: block;
}

.jti-logo img {
    height: 55px; 
    width: auto;
    display: block;
}

/* ==================================================
   【3】PC用ナビゲーション
   ================================================== */
.jti-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;       
    padding: 0;      
}

.jti-nav-item {
    margin-left: 40px;
}

/* メニューリンクのスタイル */
.jti-nav-link {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none !important;
    letter-spacing: 0.05em;
    transition: color 0.3s;

    /* ▼ 追加：下線アニメーション用 */
    position: relative;
    padding-bottom: 6px;
}

/* ▼ 追加：疑似要素で下線を作る */
.jti-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #0064b3;
    transition: width 0.35s ease;
}

.jti-nav-link:hover {
    color: #0064b3;
}

/* ▼ 追加：ホバー時に下線を広げる */
.jti-nav-link:hover::after {
    width: 100%;
}

/* PC用 CONTACTボタン */
.jti-desktop-nav .jti-btn-contact {
    background-color: #0064b3;
    color: #fff !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 35px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
    display: inline-block;
    line-height: 1;
}

.jti-desktop-nav .jti-btn-contact:hover {
    opacity: 0.8;
    text-decoration: none;
}
/* CONTACTボタンは下線なし */
.jti-nav-link.jti-btn-contact::after {
    display: none;
}
/* ==================================================
   【4】ドロワーメニュー (ハンバーガー内)
   ================================================== */

/* --- ハンバーガーボタン --- */
.jti-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    cursor: pointer;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1100;
    padding: 0;
    outline: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.jti-mobile-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.jti-mobile-toggle:focus,
.jti-mobile-toggle:active {
    outline: none !important;
    box-shadow: none !important;
}
.jti-mobile-toggle::-moz-focus-inner { border: 0; }

.jti-mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #1a1a1a;
    position: absolute;
    left: 16px;
    transition: all 0.4s ease;
}

.jti-mobile-toggle span:nth-child(1) { top: 22px; }
.jti-mobile-toggle span:nth-child(2) { top: 29px; }
.jti-mobile-toggle span:nth-child(3) { top: 36px; }

/* active時 */
.jti-mobile-toggle.active span:nth-child(1) {
    top: 29px;
    transform: rotate(45deg);
}
.jti-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.jti-mobile-toggle.active span:nth-child(3) {
    top: 29px;
    transform: rotate(-45deg);
}

/* --- ドロワーメニュー本体 --- */
.jti-drawer-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100dvh !important;
    background-color: #fff !important;
    z-index: 1050 !important;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    flex-direction: column !important;
    opacity: 0.95;
}

.jti-drawer-nav.is-open {
    transform: translateX(0);
}

/* --- ドロワー内ロゴ --- */
.jti-drawer-logo {
    width: 180px;
    max-width: 80%;
    margin-bottom: 40px;
}
.jti-drawer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- ドロワー内リスト --- */
.jti-drawer-list {
    flex-direction: column !important;
    text-align: center !important;
    display: flex !important;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 80px !important; 
}

.jti-drawer-item {
    margin: 10px 0 !important;
}

.jti-drawer-link {
    font-size: 1.4rem !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.jti-drawer-link:hover {
    color: #0064b3 !important;
}

/* ドロワー用 CONTACTボタン */
.jti-drawer-nav .jti-btn-contact {
    color: #fff !important;
    background-color: #0064b3; 
    padding: 12px 40px;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.1rem !important;
    text-decoration: none;
    margin-top: 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

/* body固定用 */
body.nav-open {
    overflow: hidden;
}

/* ==================================================
   【5】ページトップ戻るボタン
   ================================================== */
.jti-pagetop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ffcc00;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    outline: none !important;
}

.jti-pagetop.is-show {
    opacity: 1;
    pointer-events: auto;
    bottom: 95px;
}

.jti-pagetop:hover {
    background-color: #ffd200; 
    transform: translateY(-3px);
}

.jti-pagetop svg {
    width: 30px;
    height: 30px;
    fill: #000;
}
.soshin_img{
text-align:center;
margin-bottom:30px;
}
.soshin_img img{
	width:200px;
}
.soshin_00{
text-align:center;
font-weight:bold;
font-size:130%;
}
.soshin_t{
	text-align:center;
	font-weight:bold;
	font-size:180%;
	letter-spacing:0.1em;
margin-left:0.1em;
margin-bottom:50px;
}
.contact_caution{
margin-left:-30px;
margin-bottom:100px;
}
/* --- ドロワー専用：青ボタン (CONTACT) 280pxに固定 --- */
.jti-drawer-nav .jti-btn-contact {
    display: block !important;
    width: 200px !important;    /* ★ご指定の幅 */
    max-width: 90% !important;  /* ★ご指定の最大幅 */
    margin: 15px auto 0 !important; /* 上に30px、左右中央 */
    padding: 12px 0 !important;
    background-color: #0064b3 !important;
    color: #fff !important;
    border-radius: 50px !important;
    text-align: center !important;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
}

/* --- ドロワー専用：赤ボタン (初回相談申込み) さらに大きく --- */
.jti-drawer-nav .jti-btn-consult {
    display: block !important;
    width: 340px !important;    /* CONTACTより大きい幅に固定 */
    max-width: 90% !important;
    margin: 30px auto 0 !important; /* 上に15px、左右中央 */
    padding: 12px 0 !important;
    background-color: #d70930 !important;
    color: #fff !important;
    border-radius: 50px !important;
    text-align: center !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
    transition: opacity 0.3s;
}

.jti-drawer-nav .jti-btn-contact:hover,
.jti-drawer-nav .jti-btn-consult:hover {
    opacity: 0.8;
}

/* 親要素（li）で中央配置を保証 */
.jti-drawer-item {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}
/* ==================================================
   【6】レスポンシブ対応
   ================================================== */

/* --- 1201px 〜 1400px --- */
@media screen and (min-width:1201px) and (max-width:1400px) {
    .jti-header-inner {
        padding: 0 30px;
    }   
}

/* --- 992px 〜 1200px --- */
@media screen and (min-width:992px) and (max-width:1200px) {
    .jti-header-inner {
        padding: 0 20px;
    }   
}

/* --- 991px以下 (タブレット・スマホ) --- */
@media (max-width: 991px) {
    .jti-desktop-nav {
        display: none !important;
    }
    
    .jti-header-inner {
        padding: 0 15px;
    }

    .jti-mobile-toggle {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 30px !important;
        height: 24px !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        margin-left: 20px;
    }

    .jti-mobile-toggle span {
        width: 100% !important;
        left: 0 !important;
    }

    .jti-mobile-toggle span:nth-child(1) { top: 0 !important; }
    .jti-mobile-toggle span:nth-child(2) { top: 11px !important; }
    .jti-mobile-toggle span:nth-child(3) { top: 22px !important; }

    .jti-mobile-toggle.active span:nth-child(1),
    .jti-mobile-toggle.active span:nth-child(3) { top: 11px !important; }

    .jti-pagetop.is-show {
        bottom: 25px;
    }
}

/* --- 767px以下 (スマホ) --- */
@media (max-width: 767px) {
    .jti-pagetop {
        right: 18px;
        bottom: 15px; 
        width: 50px;
        height: 50px;
    }
    .jti-pagetop.is-show {
        bottom: 15px;
    }
}