@charset "UTF-8";
@font-face {
    font-family:'DM Serif Display';
    src: url(/public/fonts/DMSerifDisplay-Regular.ttf);
}
@font-face {
    font-family:'Noto Sans Japanese';
    src: url(/public/fonts/NotoSansJP-Medium.ttf);
}
@font-face {
    font-family:'Oswald';
    src: url(/public/fonts/Oswald-Regular.ttf);
}
@font-face {
    font-family:'PinyonScript';
    src: url(/public/fonts/PinyonScript-Regular.ttf);
}
/*******************************************************************************************
共通処理
*******************************************************************************************/
html {
    font-size: 100%;
    scroll-snap-type:y proximity;/*ページ内リンク少し上に着地調整*/
    scroll-padding-top:15vh;/*ページ内リンク少し上に着地調整*/
    /*scroll-behavior:smooth;/*上に戻る挙動をスムーズ化　　問い合わせフォームの画面外のフォームエラーが表示されなくなる影響あり*/
    scroll-behavior:auto;/*上に戻る挙動をスムーズ化　　問い合わせフォームの画面外のフォームエラーが表示されなくなる影響あり*/
}
body {
    background-color:white;
    font-family:'Noto Sans Japanese';
    font-size: 0.9rem;
    line-height: 1.7;
}
/*中身のコンテンツ幅指定の共通クラス*/
.wrapper {
    width:1000px;
    max-width:100%;
    margin: 0 auto;
    text-align: center;
    position:relative;
}
/*H3レイアウト*/
.title_h3{
    font-size:1.8vw;
    font-weight:bold;
    white-space: nowrap;
    text-shadow:1px 2px 3px gray;
}
/*新着記事に「NEW」を付与*/
.text_icon{
    color:white;
    font-weight:bold;
    background-color:red;
    border-radius:30px;
    padding:3px 10px;
    margin-left:10px;
}
/*スマホ用改行*/
.br_sm{
    display:none;
}
/*ＰＣ用改行*/
.br_pc{
    display:block;
}
/**/
span.inline{
    display:inline-block;
}
/*******************************************************************************************
h1　（非表示）
*******************************************************************************************/
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/*******************************************************************************************
  パンくずリスト
*******************************************************************************************/
#breadcrumbs {
    background-color: #f5f5f5; /* 王道の薄いグレー背景 */
    font-size: 14px;
    color: #666;
}
#breadcrumbs .wrapper {
    padding: 8px 16px; /* 上下の余白だけ少し */
}
#breadcrumbs ul {
    display: flex;
    flex-wrap: wrap; /* 画面が狭いときは折り返しOK */
    gap: 4px;        /* li同士の最小間隔 */
    list-style: none;
    margin: 0;
    padding: 0;
}
#breadcrumbs li {
    display: flex;
    align-items: center;
}
/* 区切り（>）を2つ目以降に表示 */
#breadcrumbs li + li::before {
    content: ">";
    margin: 0 6px;
    color: #aaa;
    font-size: 12px;
}
/* トップへのリンク */
#breadcrumbs li.top a {
    text-decoration: none;
    color: #4087BF; /* 既存のアクセントブルーに合わせるなら */
}
#breadcrumbs li.top a:hover {
    text-decoration: underline;
}
/* 現在ページ（リンクなし） */
#breadcrumbs li.current {
    font-weight: 600;
    color: #333;
}
/*******************************************************************************************
変数定義
*******************************************************************************************/
body{
    /*テーマカラー*/
    --themecolor:#F6B7C1;
    /*メインフォントカラー*/
    --fontcolor:#666666;
}
/*******************************************************************************************
header
*******************************************************************************************/
#header {
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    height:110px;
    max-height:110px;
    max-width:100%;
    background-color:rgb(246,244,239,0.8);
    transition-duration:0.5s;
    height:auto;
    z-index:20;
}
#header #header_menu_area{
    height:100%;
    position:relative;
    z-index:20;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
#header #header_menu_area #header_menu{
    display:flex;
    width:100%;
    height:110px;
    justify-content:space-between;
    align-items:center;
}
#header_menu #header_logo{
    display:block;
    width:230px;
    height:auto;
    margin-left:80px;
}
#header_menu #header_logo .header_menu_title{
    display:flex;
    vertical-align: middle;/*inline-block上下中央に必須*/
    height:100%;
    width:100%;

}
#header_menu #header_logo .header_menu_title img{
    display:flex;
    width:100%;
    height:100%;
    object-fit:contain;
}
#header_menu #nav{
    display:flex;
    height:100%;
    position:relative;
}
#header_menu #nav #nav_contact{
    display:flex;
    width:110px;
    height:110px;
    color:white;
    font-size:0.8rem;
    background-color:var(--themecolor);
    background-image:url(/public/img/mail.png);
    background-repeat:no-repeat;
    background-size:40px 30px;
    background-position:center top 30px;
    position:absolute;
    top:0;
    right:0;
}
#header_menu #nav #nav_contact .btn{
    display:flex;
    width:100%;
    height:100%;
    justify-content:center;
    align-items:flex-end;
    padding-bottom:20px;

}
#header_menu #nav #nav_menu1{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    text-align:center;
    height:100%;
    margin-right:10px;
    padding-bottom:10px;
}
#header_menu #nav #nav_menu1 .nav_menu1_item{
    color: var(--fontcolor);
    font-size:1.0vw;
    /*font-weight:bold;*/
    white-space:nowrap;
    position:relative;
    padding:5px 10px;
    border-radius:20px;
    margin-left:20px;
    transition-duration:0.5s;
}
#header_menu #nav #nav_menu1 .nav_menu1_item::after{
    content:"";
    width:100%;
    height:2px;
    background-color:var(--fontcolor);
    position:absolute;
    bottom:0;
    left:0;
    /*visibility:hidden;*/
    opacity:0;
}
#header_menu #nav #nav_menu1 .nav_menu1_item:hover::after{
    /*visibility:visible;*/
    opacity:1;
    transition:1.0s;
}
/*
sns
*/
#header_menu ul.sns_list{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    text-align:center;
    margin-right: 125px;
    padding-bottom: 10px;
}
#header_menu ul.sns_list li{
    padding:5px 5px;
}
#header_menu ul.sns_list li a.sns-btn {
    display:flex;
    width:30px;
    height:30px;

}
/*
ハンバーガメニュー 
*/
#header #header_menu_area .hamburger_btn{
    display:none;
    position:relative;
    width:70px;
    height:8vh;
    margin:0 0 0 auto;
    z-index:100;
}
/*ボタン外側*/
#header #header_menu_area .hamburger_btn .header_menu_lines{
    position: relative;/*ボタン内側を基点とする*/
    background:var(--themecolor);
    cursor: pointer;
    width: 100%;
    height:100%;
}
/*ボタン内側*/
#header #header_menu_area .hamburger_btn .header_menu_lines span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    transform:translateX(-50%);
    height: 2px;
    border-radius: 5px;
    background: white;
    width: 75%;
}
#header #header_menu_area .hamburger_btn .header_menu_lines span:nth-of-type(1) {
    /*top:15px;*/
    top:calc(50% - 20%);
}
#header #header_menu_area .hamburger_btn .header_menu_lines span:nth-of-type(2) {
    /*top:25px;*/
    top:calc(50%);
} 
#header #header_menu_area .hamburger_btn .header_menu_lines span:nth-of-type(3) {
    /*top:35px;*/
    top:calc(50% + 20%);
}
#header #header_menu_area .hamburger_btn .header_menu_lines.active span:nth-of-type(1) {
    top: 21px;
    left:13px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}
  
#header #header_menu_area .hamburger_btn .header_menu_lines.active span:nth-of-type(2) {
    opacity: 0;
}
#header #header_menu_area .hamburger_btn .header_menu_lines.active span:nth-of-type(3){
    top: 33px;
    left: 15px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}
#header #header_menu_area .hamburger_btn .header_menu_lines.active span:nth-of-type(3)::after {
    transform: translateY(0) rotate(-45deg);
    top:5px;
    left:4px;
}
#header #header_slide_menu_area{
    display:none;/*PC非表示*/
    background-color:#e6778a;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 80%;
    height:100%;
    transform: translateX(100%); /* ハンバーガーメニューOFF時、右側へスライドさせておく */
    z-index:100;
    transition: 0.4s;
    overflow-y:scroll;/*メニュー縦スクロール許可*/
}
#header #header_slide_menu_area.active{
    transform: translateX(0);
    display:block;
}
#header #header_slide_menu_area .menu_head{
    display:flex;
    align-items:center;
    background-color:white;
    margin-bottom:30px;
}
#header #header_slide_menu_area .menu_head a{
    margin-left:10px;
}
#header #header_slide_menu_area .menu_head .logo_area{
    display:flex;
    width:150px;
}
/*
ハンバーガメニュー スライドメニュー用
*/
#header #header_slide_menu_area .hamburger_btn{
    display:none;
    position:relative;
    width:40px;
    height:40px;
    margin:0 10px 0 auto;
    z-index:100;
}
/*ボタン外側*/
#header #header_slide_menu_area .hamburger_btn .header_menu_lines{
    position: relative;/*ボタン内側を基点とする*/
    background:var(--themecolor);
    cursor: pointer;
    width: 100%;
    height:100%;
}
/*ボタン内側*/
#header #header_slide_menu_area .hamburger_btn .header_menu_lines span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 5px;
    height: 2px;
    border-radius: 5px;
    background: white;
    width: 75%;
}
#header #header_slide_menu_area .hamburger_btn .header_menu_lines span:nth-of-type(1) {
    top:15px; 
}
#header #header_slide_menu_area .hamburger_btn .header_menu_lines span:nth-of-type(2) {
    top:25px;
} 
#header #header_slide_menu_area .hamburger_btn .header_menu_lines span:nth-of-type(3) {
    top:35px;
}
#header #header_slide_menu_area .hamburger_btn .header_menu_lines.active span:nth-of-type(1) {
    top: 50%;
    left:50%;
    transform: translate(-50%) rotate(-45deg);
    width: 50%;
}
#header #header_slide_menu_area .hamburger_btn .header_menu_lines.active span:nth-of-type(2) {
    opacity: 0;
}
#header #header_slide_menu_area .hamburger_btn .header_menu_lines.active span:nth-of-type(3){
    top: 50%;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    width: 50%;
}
#header #header_slide_menu_area .hamburger_btn .header_menu_lines.active span:nth-of-type(3)::after {
    /*content:"Close";MENU文言非表示*/
    transform: translateY(0) rotate(-45deg);
    top:5px;
    left:4px;
}

#header #header_slide_menu_area .header_slide_menu{
    margin:0 10% 30px 10%;
}
#header #header_slide_menu_area .header_slide_menu li.main_item{
    border-bottom:1px dotted white;
    padding:0.5em;
    position:relative;
}
#header #header_slide_menu_area .header_slide_menu li.main_item.home:before{
    content:"";
    display:block;
    width:15px;
    height:15px;
    background-image:url(/public/img/home-icon.svg);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center center;
    position:absolute;
    top:50%;
    left:0;
    translate:0 -50%;
}
#header #header_slide_menu_area .header_slide_menu li.main_item:first-child{
    border-top:1px dotted white;
}
/* 大見出し */
#header #header_slide_menu_area .header_slide_menu li.main_item a.header_slide_menu_btn {
    color:white;
    position: relative;
    padding-left:20px;
    padding-right: 30px;
}
#header #header_slide_menu_area .header_slide_menu li.main_item a.header_slide_menu_btn:before{
    content:"";
    display:block;
    width:15px;
    height:15px;
    background-image:url(/public/img/sakura-icon.svg);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center center;
    position:absolute;
    top:50%;
    left:0;
    translate:0 -50%;
}
#header #header_slide_menu_area .header_slide_menu li.main_item a.header_slide_menu_btn.home:before{
    background-image:url(/public/img/home-icon.svg);
}
/* 矢印（閉じ） */
#header #header_slide_menu_area .header_slide_menu li.main_item a.header_slide_menu_btn::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.25s ease;
}
/* 矢印（開） */
#header #header_slide_menu_area .header_slide_menu li.main_item a.header_slide_menu_btn.is-open::after {
    transform: translateY(-40%) rotate(-135deg);
}
#header #header_slide_menu_area .header_slide_menu li.main_item:first-of-type ul.sub_menu{
    display:block;
}
#header #header_slide_menu_area .header_slide_menu li.main_item ul.sub_menu{
    display:none;
}
#header #header_slide_menu_area .header_slide_menu li.main_item ul.sub_menu li.sub_item a.sub_btn{
    display:list-item;
    list-style:disc;
    color:white;
    font-size:0.7rem;
    margin-left:40px;
    padding:5px 5px;
}
#header #header_slide_menu_area .sns_area{
    background-color:white;
    margin:0 10% 30px 10%;
    padding:1em 0;
}
#header #header_slide_menu_area .sns_area .sns_title{
    width:fit-content;
    color:#e6778a;
    font-size:1rem;
    text-align:center;
    margin:0 auto 10px auto;
    position:relative;
}
#header #header_slide_menu_area .sns_area .sns_title::before{
    content:"";
    display:block;
    width:20px;
    height:20px;
    background-image:url(/public/img/megaphone-icon.png);
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center center;
    position:absolute;
    top:50%;
    left:0;
    translate:-100% -50%;
}
#header #header_slide_menu_area .sns_area .sns_title::after{
    content:"";
    display:block;
    width:80%;
    height:2px;
    background-color:#e6778a;
    position:absolute;
    top:100%;
    left:50%;
    translate:-50% 0%;
}
#header #header_slide_menu_area .sns_area p.intro{
    color:#e6778a;
    font-size:0.7rem;
    text-align:center;
}
#header #header_slide_menu_area .sns_area ul.sns_list{
    display:flex;
    justify-content:center;
}
#header #header_slide_menu_area .sns_area ul.sns_list li{
    display:flex;
    width:40px;
    height:40px;
    background-color:#e6778a;
    border-radius:10px;
    margin:10px;
}
#header #header_slide_menu_area .sns_area ul.sns_list li a.sns-btn{
    display:flex;
    width:100%;
    height:100%;
} 
#header #header_slide_menu_area .sns_area ul.sns_list li a.sns-btn img{
    display:flex;
    width:100%;
    height:100%;
    object-fit:contain;
}   
#header #header_slide_menu_area #nav_contact_sm{
    margin:0 10% 30px 10%;
}
#header #header_slide_menu_area #nav_contact_sm a{
    display:block;
    width:100%;
    color:#333333;
    text-align:center;
    background-color:white;
    border:3px solid #e6778a;
    border-radius:100px;
    box-shadow: 0 0 4px gray;
    padding:10px 30px;
}
#header #header_slide_menu_area .header_slide_menu2{
    display:flex;
    flex-wrap:wrap;
    font-size:0.8rem;
    color:white;
    margin:0 10% 50px 10%;
}
#header #header_slide_menu_area .header_slide_menu2 li{
    padding:0 10px;
    border-right:1px solid white;
    margin-bottom:10px;
}
#header #header_slide_menu_area .header_slide_menu2 li:last-child{
    border-right:none;
}
/*******************************************************************************************
マスクエリア
*******************************************************************************************/
#mask_area.active {
    display:block;
}
#mask_area{
    display:none;
    width:100vw;
    height:100vh;
    background-color:rgb(0,0,0,0.4);
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:99;
}
/*******************************************************************************************
mainvisual_slide（スライドショー用）
*******************************************************************************************/
#mainvisual_slide{
    position:relative;
    width:100%;
    margin-top:100px;
}
#mainvisual{
    position:relative;
    overflow:hidden;
    width:68%;
    height:86vh;
    max-height:86vh;
    margin-right:2.5vw;
    margin-left:auto;
}
/*メインビジュアル画像DIV*/
#mainvisual div{
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100vh;
    max-height:100vh;
    background-position: 50% 0%;/*画像のポジション調整 横% 縦%*/
    background-size: cover; /*画像のポジション調整*/
    background-repeat: no-repeat;
    z-index: 10;
    opacity: 0;
}
/*
mainvisual スライドショー アニメーション処理
*/
.anime_mainvisual div{
    animation-name: fade;
    animation-duration: 36s;
    animation-iteration-count: infinite;
}
@keyframes fade {
    0%{
        opacity: 0;
    }
    20%{
        opacity: 1;
    }
    80%{
        opacity: 0;
        transform: scale(1.2);
    }
    100%{
        opacity: 0;
        z-index: 0;
    }
}
/* 1枚目のスライド */
.anime_mainvisual div:first-of-type{
    background-image: url(/public/img/mainvisual.jpg);
}
/* 2枚目のスライド */
.anime_mainvisual div:nth-of-type(2){
    background-image: url(/public/img/mainvisual.jpg);
    animation-delay: 12s;/*2枚目開始秒数*/
}
/* 3枚目のスライド */
.anime_mainvisual div:last-of-type{
    background-image: url(/public/img/mainvisual.jpg);
    animation-delay: 24s;/*3枚目開始秒数*/
}
/*******************************************************************************************
mainvisual_video（動画用）
*******************************************************************************************/
.mainvisual_video{
    width:100%;
    height:100vh;
    overflow: hidden;
    /*position:absolute;*/
    position:relative;
    top:0;
    left:0;
    right:0;
}
.mainvisual_video::after{
    content: '';
    display: none;
    width: 100%;
    height: 100%;
    background-color:#F6B7C1;
    position: absolute;
    left: 0;
    top: 0;
    opacity:0.35;
    z-index:0;
}
.mainvisual_video .mainvisual_video_content{
    width:100%;
    height:100%;
    position:relative;
    overflow: hidden;
}
.mainvisual_video .mainvisual_video_content video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}
/*******************************************************************************************
ニュース
*******************************************************************************************/
.page-index #news{
    margin-top:100px;
    margin-bottom:100px;
}
.page-index #news #news_box{
    display:flex;
    justify-content:space-between;
}
.page-index #news #news_box .news_head h2{
    color:#444444;
    font-size:1.8rem;
    font-weight:bold;
    text-align:left;
    letter-spacing:0.2rem;
}
.page-index #news #news_box .news_head h2 .title_en{
    display:block;
    position:relative;
    margin-bottom:10px;
}
.page-index #news #news_box .news_head h2 .title_en::after{
    content:"";
    width:30px;
    height:2px;
    background-color:#444444;
    position:absolute;
    bottom:0;
    left:0;
}
.page-index #news #news_box .news_head h2 .title_jp{
    display:block;
    color:#444444;
    font-size:0.8rem;
    text-align:left;
}
/* 右側カラム */
.page-index #news #news_box .news_contents {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.page-index #news .news_tabs {
    display: flex;
}
.page-index #news .news_tab {
    background: #2f2f2f;
    color: #eaeaea;
    border: 1px solid #2f2f2f;
    border-bottom: 2px solid transparent;
    padding: 0.5em 1em;
    font-size: 0.85rem;
    cursor: pointer;
    margin-right: 2px;
    margin-left:2px;
    border-radius: 6px 6px 0 0;
    transition: background-color 0.2s, color 0.2s;
}
.page-index #news .news_tab:hover {
    background: #3a3a3a;
}
.page-index #news .news_tab.is-active {
    background: #ffffff;
    color: #2f2f2f;
    border: 1px solid #666666;
    font-weight: 700;
    z-index: 2;
}
.page-index #news #news_box .news_head{
    padding:0 50px;
}
.page-index #news #news_box .news_body1{
    text-align:left;
    position:relative;
    padding:10px;
    flex:1;
    border:1px solid #666666;
    border-radius:5px;
    box-shadow: 2px 2px 4px gray;
}
.page-index #news #news_box .news_body1 .body1_inner ul{
    height: 200px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 10px;
}
.page-index #news #news_box .news_body1 h3{
    color:var(--fontcolor);
    font-size:1.2rem;
    margin-bottom:20px;
    padding:0 10px;
}
.page-index #news #news_box .news_body1 ul li{
    margin:1em;
}
.page-index #news #news_box .news_body1 ul li .news_list{
    display:inline-block;
    position:relative;
}
.page-index #news #news_box .news_body1 ul li .news_list::after{
    content:"";
    width:100%;
    height:1px;
    position:absolute;
    /*bottom:0; 付与すると一番上の線が太くなるためコメントアウト*/
    left:0;
    opacity:0;
    transition:1.0s;
}
.page-index #news #news_box .news_body1 ul li .news_list:hover::after{
    opacity:1;
}
.page-index #news #news_box .news_body1 ul li .news_list time,
.page-index #news #news_box .news_body1 ul li .news_list .category{
    white-space: nowrap;   /* 折り返し防止 */
}
.page-index #news #news_box .news_body1 ul li .news_list time{
    display:inline-block;
    color:#444444;
    font-size:1rem;
    border-right:1px solid var(--fontcolor);
    padding:0 10px 0 0;
}
.page-index #news #news_box .news_body1 ul li .news_list .category{
    display:inline-block;
    color:#444444;
    font-size:1rem;
    font-weight:bold;
    border-right:1px solid var(--fontcolor);
    padding:0 10px;
}
.page-index #news #news_box .news_body1 ul li .news_list .title{
    flex-basis: 100%;
    color:var(--fontcolor);
    font-size:1rem;
    padding:0 10px;
}
/*******************************************************************************************
service
*******************************************************************************************/
.page-index #service{
    --service-sec-solor1:#f6ebe7;
    --service-sec-solor2:white;
    --service-sec-font-color1:#603813;
}
.page-index #service{
    padding-bottom:70px;
    background-color:#FAF7F5;
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;
    position:relative;
}
.page-index #service .service_head{
    display:block;
    width:100%;
    max-height:300px;
    position:relative;
    overflow:hidden;
}
.page-index #service .service_head::after{
    content:"";
    display:block;
    width:100%;
    height:100%;
    background-color:rgba(255,255,255,0.5);
    position:absolute;
    top:0;
    left:0;
    right:0;
    z-index:1;
}
.page-index #service .service_head .img_area{
    position:relative;
    display:block;
    width:100%;
    height:100%;
}
.page-index #service .service_head .img_area img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.page-index #service .service_head .text_area{
    display:block;
    width:fit-content;
    position:absolute;
    top:50%;
    left:50%;
    translate:-50% -50%;
    z-index:2;
}
.page-index #service .service_head .text_area h2 .title_en{
    display:block;
    width:fit-content;
    color:#333333;
    font-size:3rem;
    font-weight:bold;
    letter-spacing:0.1rem;
    margin-bottom:20px;
    position:relative;
    margin:0 auto;
}
.page-index #service .service_head .text_area h2 .title_en::after{
    display:block;
    content:"";
    width:50%;
    height:2px;
    background-color:#333333;
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}
.page-index #service .service_head .text_area h2 .title_jp{
    display:none;
    font-size:0.9rem;
    color:var(--service-sec-font-color1);
}
.page-index #service .service_head .text_area .explain_area{
    display:block;
}
.page-index #service .service_head .text_area .explain_area .text1{
    display:block;
    color:#333333;
    font-size:1.2rem;
    text-align:center;
    margin-top:20px;
}
.page-index #service .content .intro_area{
    margin-top:50px;
    margin-bottom:50px;
}
.page-index #service .content .intro_area p.text1{
    color: #2b2b2b;
    font-size:1rem;
    text-align:justify;
    margin:0;
}
.page-index #service .content .intro_area p.text2{
    color: #666666;
    font-size:1rem;
    text-align:justify;
    margin:0;
}
.page-index #service .content .intro_area p.message{
    color: #2b2b2b;
    font-size:1.5rem;
    font-weight:bold;
    text-align:center;
    margin:0;
    padding:50px 0;
}
.page-index #service .content .img_top_area{
    display:block;
    width:100%;
    background-color:var(--service-sec-solor2);
    border-radius:10px;
    margin-bottom:50px;
}
.page-index #service .content .img_top_area img{
    display:block;
    margin:0 auto;
}
.page-index #service .content .service_text{
    display:block;
    width:100%;
    padding:50px 0;
}
.page-index #service .content .service_btn{
    display:block;
    padding-bottom:50px;
}
.page-index #service .content .service_btn .btn{
    display:inline-block;
    color:var(--service-sec-font-color1);
    font-size:1.2rem;
    font-weight:bold;
    line-height:1.4rem;
    border:3px solid var(--service-sec-font-color1);
    padding:0px 5px 0px 5px;
    transition:0.2s;
}
.page-index #service .content .service_btn .btn:hover{
    color:var(--service-sec-font-color1);
    background-color:var(--themecolor);
}
.page-index #service .content .service_btn .btn span{
    padding-right:35px;
    background-image:url(/public/img/arrow_right_long_black.svg);
    background-repeat:no-repeat;
    background-size:15px auto;
    background-position:right center;
    transition:0.2s;
}
.page-index #service .content .service_btn .btn span:hover{
    background-image:url(/public/img/arrow_right_long_white.svg);
}
.page-index #service .content .service_body ul.list{
    display:flex;
    justify-content:space-between;
    align-items: stretch;
}
.page-index #service .content .service_body ul.list li.item{
    display:flex;
    width:calc(100% / 3);
    min-width:0;
}
.page-index #service .content .service_body ul.list li.item:nth-of-type(1){
    background-color:#FF8F8F;
}
.page-index #service .content .service_body ul.list li.item:nth-of-type(2){
    background-color:#C2E2FA;
}
.page-index #service .content .service_body ul.list li.item:nth-of-type(3){
    background-color:#B7A3E3;
}
.page-index #service .content .service_body ul.list li.item a.link{
    display:flex;
    flex-direction:column;
    width:100%;
}
.page-index #service .content .service_body ul.list li.item a.link .head{
    display:block;
    background-color:rgba(255,255,255,0.7);
    position:relative;
}
.page-index #service .content .service_body ul.list li.item a.link .head::after{
    content: "";
    display: block;
    width: 100%;
    height: 30px;
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: rgba(255,255,255,0.7);
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(100%);  
}
.page-index #service .content .service_body ul.list li.item:nth-of-type(1) a.link .head{
    color:#FF8F8F;
    font-size:1.5rem;
    font-weight:bold;
}
.page-index #service .content .service_body ul.list li.item:nth-of-type(2) a.link .head{
    color:#C2E2FA;
    font-size:1.5rem;
    font-weight:bold;
}
.page-index #service .content .service_body ul.list li.item:nth-of-type(3) a.link .head{
    color:#B7A3E3;
    font-size:1.5rem;
    font-weight:bold;
}
.page-index #service .content .service_body ul.list li.item a.link .head h3{
    display:flex;
    flex-direction:column;
    padding:0.5em;
}
.page-index #service .content .service_body ul.list li.item a.link .head h3 span.title1{
    display:flex;
    width:fit-content;
    border-radius:50px;
    margin:0 auto;
    text-shadow: 
    1px 1px 0 #000,
   -1px 1px 0 #000,
    1px -1px 0 #000,
   -1px -1px 0 #000,
    1px 0 0 #000,
   -1px 0 0 #000,
    0 1px 0 #000,
    0 -1px 0 #000;
}
.page-index #service .content .service_body ul.list li.item a.link .head h3 span.title2{
    display:flex;
    width:fit-content;
    color:white;
    font-size:0.7em;
    line-height:0.7em;
    border-radius:50px;
    margin:0 auto;
    padding:0.5em;
}
.page-index #service .content .service_body ul.list li.item:nth-of-type(1) a.link .head h3 span.title2{
    background-color:#FF8F8F;
}
.page-index #service .content .service_body ul.list li.item:nth-of-type(2) a.link .head h3 span.title2{
    background-color:#C2E2FA;
}
.page-index #service .content .service_body ul.list li.item:nth-of-type(3) a.link .head h3 span.title2{
    background-color:#B7A3E3;
}
.page-index #service .content .service_body ul.list li.item a.link .body{
    display:flex;
    flex-direction:column;
    background-color:white;
    border-radius:10px;
    margin:50px 1em 1em 1em;
    overflow:hidden;
    flex:1;
}
.page-index #service .content .service_body ul.list li.item a.link .body .img_area{
    display:block;
    width:100%;
    height:200px;
}
.page-index #service .content .service_body ul.list li.item a.link .body .img_area img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.page-index #service .content .service_body ul.list li.item a.link .body .text_area{
    display:flex;
    width:100%;
    height:100%;
    padding:1em;
    text-align:justify;
    color: #666666;
}
.page-index #service .content .service_body ul.list li.item a.link .body .text_area p{
    white-space: normal;
    word-break: break-all;/*flex配下で改行させるため*/
    overflow-wrap: break-word;/*flex配下で改行させるため*/
}
.page-index #service .content .service_body ul.list li.item a.link span.btn_area{
    display:inline-block;
    width:fit-content;
    color:var(--service-sec-font-color1);
    background-color:var(--service-sec-solor2);
    border:2px solid var(--service-sec-solor2);
    box-shadow: 2px 2px 4px gray;
    transition: box-shadow 0.4s ease, 
                background-color 0.4s ease, 
                color 0.4s ease;
    border-radius:50px;
    padding:0.5em 1em;
    margin:0 auto 1em auto;
}
.page-index #service .content .service_body ul.list li.item:nth-of-type(1) a.link span.btn_area:hover {
    box-shadow: none;
    color:var(--service-sec-solor2);
    background-color:#FF8F8F;
}
.page-index #service .content .service_body ul.list li.item:nth-of-type(2) a.link span.btn_area:hover {
    box-shadow: none;
    color:var(--service-sec-solor2);
    background-color:#C2E2FA;
}
.page-index #service .content .service_body ul.list li.item:nth-of-type(3) a.link span.btn_area:hover {
    box-shadow: none;
    color:var(--service-sec-solor2);
    background-color:#B7A3E3;
}
/*******************************************************************************************
代表挨拶
*******************************************************************************************/
.page-index .greeting {
    background-color: #ffffff;
    padding: 100px 0;
}
.page-index .greeting_inner {
    max-width: 1100px;
    margin: 0 auto;
}
.page-index .greeting_title {
    text-align: center;
    margin-bottom: 60px;
}
.page-index .greeting_title .title_en {
    display: block;
    color:#333333;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}
.page-index .greeting_title .title_jp {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
}
.page-index .greeting_contents {
    display: flex;
    gap: 60px;
    align-items: center;
}
.page-index .greeting_image {
    flex: 0 0 35%;
}
.page-index .greeting_image img {
    display:block;
    width: 100%;
    border-radius: 8px;
}
.page-index .greeting_text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 2;
    color: #444;
}
.page-index .greeting_text p.text {
    text-align:justify;
    margin-bottom: 20px;
}
.page-index .greeting_name {
    text-align:right;
    margin-top: 40px;
    font-weight: 600;
}
.page-index .greeting_name .position {
    display: block;
    font-size: 0.85rem;
    color: #666;
}
.page-index .greeting_name .name {
    display: block;
    font-size: 1rem;
    margin-top: 5px;
}
/******************************************************************************************* 
Q&A
*******************************************************************************************/ 
.page-index .faq{
    padding: 72px 16px;
    background: #F6F9FB;
}
.page-index  .faq__head{
    text-align: center;
    margin-bottom: 60px;
}
.page-index .faq__kicker{
    display: inline-block;
    font-weight: 700;
    letter-spacing: .12em;
    font-size: 0.9rem;
    font-weight:bold;
    color: #666;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom:10px;
}
.page-index .faq__title{
    font-size: 2rem;
    font-weight:bold;
    line-height: 1.25;
    letter-spacing: .02em;
    color: #333333;
}
.page-index .faq__lead{
    margin: 0 auto;
    max-width: 680px;
    color: #2b2b2b;
    line-height: 1.8;
    font-size: 15px;
}
.page-index .faq__navWrap{
    margin: 0 auto 18px;
    max-width: 980px;
}
.page-index .faq__nav{
    width: 100%;
}
.page-index .faq__navList{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}
.page-index .faq__navBtn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid #333333;
    background: #fff;
    color: #333333;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition:
        background .15s ease,
        color .15s ease,
        transform .15s ease,
        box-shadow .15s ease;
}
.page-index .faq__navBtn:hover{
    background: #333333;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.page-index .faq__group{
    margin-top: 26px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e9e9f1;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0,0,0,.04);
    scroll-margin-top: 90px;
}
.page-index .faq__groupTitle{
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.4;
    text-align:left;
    padding:0.5em 0 0.5em 10px;
    border-left: 4px solid #4087BF;
    color: #333333;
}
.page-index .faq__item{
    border-top: 1px solid #efeff6;
}
.page-index .faq__item:first-of-type{
    border-top: none;
}
.page-index .faq__q{
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 10px;
    user-select: none;
}
.page-index .faq__q::-webkit-details-marker{
    display: none;
}
.page-index .faq__label{
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    background: #333333;
}
.page-index .faq__label--a{
    background: #2b6cb0;
}
.page-index .faq__qText{
    flex: 1 1 auto;
    line-height: 1.6;
    color: #2b2b2b;
    text-align:left;
}
.page-index .faq__icon{
    position: relative;
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}
.page-index .faq__icon::before,
.page-index .faq__icon::after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #222;
    border-radius: 999px;
    transform: translateY(-50%);
}
.page-index .faq__icon::after{
    transform: translateY(-50%) rotate(90deg);
    transition: transform .18s ease;
}
.page-index .faq__a{
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding: 0 10px 16px;
}
.page-index .faq__aBody{
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    text-align:left;
}
.page-index .faq__aBody p{
    margin: 0;
}
.page-index .faq__item[open] .faq__icon::after{
    transform: translateY(-50%) rotate(0deg);
}
.page-index .faq__item[open]{
    background: linear-gradient(
        180deg,
        rgba(43,108,176,.06),
        rgba(0,0,0,0)
    );
    border-radius: 10px;
}
/******************************************************************************************* 
Instagram 
*******************************************************************************************/ 
.page-index #instagram{
    --service-sec-solor1:#f6ebe7;
    --service-sec-solor2:white;
    --service-sec-font-color1:#603813;
}
.page-index #instagram {
    padding: 60px 0;
    background-color:white;
    text-align: center;
}
.page-index #instagram h2{
    display:block;
    width:fit-content;
    color: #333333;
    font-size:3rem;
    font-weight:bold;
    font-family:'PinyonScript';
    letter-spacing:0.1rem;
    margin-bottom:20px;
    position:relative;
    margin:0 auto 50px auto;
}
.page-index #instagram h2.sec-title::after{
    display:block;
    content:"";
    width:50%;
    height:2px;
    background-color:#333333;
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}
.page-index #instagram p.intro_area{
    display:block;
    color:#2b2b2b;
    margin-bottom:50px;
}
.page-index #instagram .insta_grid {
    display: grid;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}
.page-index #instagram .insta_item {
    position: relative;
    width: 100%;
    padding-top: 100%; 
    overflow: hidden;
    background-color: #f6f6f6;
    border-radius: 12px;
}
.page-index #instagram .insta_item .instagram-media {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    border-radius: 12px;
    opacity: 0;
    transition: opacity .4s ease;
}
.page-index #instagram .insta_item .instagram-media[style] {
    opacity: 1;
}
.page-index #instagram .instagram-media {
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
}
.page-index #instagram iframe {
    height: 100% !important;
    min-height: 0 !important;
}
.page-index #instagram .btn-area{
    display: inline-block;
    background-color: #444444;
    color: white;
    padding: 0.5em 2em;
    border: 2px solid #444444;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.page-index #instagram .btn-area:hover{
    background-color: #666666;
}
.page-index #instagram .insta_grid {
    grid-template-columns: repeat(3, 1fr);
}
/*******************************************************************************************
会社情報（PROFILE）
*******************************************************************************************/
.page-index #profile {
    --profile-font-color1: #603813;
    --profile-sec-solor1:#f6ebe7;
    background-color: white;
    padding: 100px 0;
}
.page-index #profile{
    background-color:#FAF7F5;
}
.page-index #profile .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.page-index #profile .inner .img_area img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}
.page-index #profile .inner .info_area {
    color: var(--profile-font-color1);
    display: flex;
    flex-direction: column;
    justify-content: left;
}
.page-index #profile .inner .info_area h2 {
    width:fit-content;
    font-size: 3rem;
    font-weight: bold;
    text-align: left;
    color: #333333;
    border-radius: 10px;
    margin-bottom: 20px;
    position:relative;
}
.page-index #profile .inner .info_area h2::after {
    display: block;
    content: "";
    width: 50%;
    height: 2px;
    background-color: #444444;
    position: absolute;
    bottom: 0;
    left: 0;
}
.page-index #profile .inner .info_area .profile-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.page-index #profile .inner .info_area .profile-grid .item {
    display: grid;
    grid-template-columns: 100px 10px 1fr;
    gap: 8px;
    align-items: start;
}
.page-index #profile .inner .info_area .label.justify {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #2b2b2b;
}
.page-index #profile .inner .info_area .label.justify span {
    display: inline-block;
}
.page-index #profile .inner .info_area .colon {
    text-align: center;
    font-weight: bold;
    color: #2b2b2b;
}
.page-index #profile .inner .info_area .content {
    line-height: 1.6;
    text-align: left;
    color: #666666;
}
/*******************************************************************************************
アクセス
*******************************************************************************************/
.page-index #access {
    background-color: #FAF7F5;
    padding: 100px 0;
    --service-sec-font-color1: #603813;
}
.page-index #access .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.page-index #access .inner .info_area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #333333;
}
.page-index #access .inner .info_area h2 {
    width:fit-content;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    position:relative;
}
.page-index #access .inner .info_area h2::after {
    display: block;
    content: "";
    width: 50%;
    height: 2px;
    background-color: #333333;
    position: absolute;
    bottom: 0;
    left: 0;
}
.page-index #access .inner .info_area .access-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.page-index #access .inner .info_area .access-grid .item {
    display: grid;
    grid-template-columns: 100px 10px 1fr;
    gap: 8px;
    align-items: start;
}
.page-index #access .inner .info_area .access-grid .item .label.justify {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #2b2b2b;
}
.page-index #access .inner .info_area .access-grid .item .label.multiline{
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.4em; 
}
.page-index #access .inner .info_area .access-grid .item .label.justify span {
    display: inline-block;
}
.page-index #access .inner .info_area .access-grid .item .colon {
    text-align: center;
    font-weight: bold;
    color: #333333;
}
.page-index #access .inner .info_area .access-grid .item .content {
    line-height: 1.6;
    text-align: justify;
    color: #666666;
}
.page-index #access .inner .map_area {
    height: 100%;
}
.page-index #access .inner .map_area iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.page-index #access .inner .map_area .map_btn_area {
    text-align: center;
    margin-top: 10px;
}
.page-index #access .inner .map_btn_area .map_btn {
    display: inline-block;
    background-color: #444444;
    color: white;
    padding: 0.5em 2em;
    border:2px solid #444444;
    border-radius:50px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.page-index #access .inner .map_btn_area .map_btn:hover {
    background-color: #666666;
}
/*******************************************************************************************
サポーター
*******************************************************************************************/
.page-index #supporter {
    background-color: white;
    padding: 100px 0;
    --service-sec-font-color1: #603813;
}
.page-index #supporter .inner .info_area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #333333;
}
.page-index #supporter .inner .info_area h2 {
    width:fit-content;
    font-size: 2rem;
    font-weight: bold;
    text-align:center;
    margin:0 auto 20px auto;
    position:relative;
}
.page-index #supporter .inner .info_area h2::after {
    display: block;
    content: "";
    width: 50%;
    height: 2px;
    background-color: #333333;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate:-50% 0;
}
.page-index #supporter .inner .info_area span.sub-title{
    margin-bottom:50px;
}
.page-index .supporters_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ★横3列 */
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.page-index .supporter_item {
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-index .supporter_item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}
.page-index .supporters_note {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 30px;
}
/*******************************************************************************************
お問合せ（共通）
*******************************************************************************************/
#contact{
    margin-top:0;
    padding-top:50px;
    padding-bottom:60px;
    background-image:url(/public/img/contact_back.png);
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
    position:relative;
}
/*背景画像にフィルター*/
#contact::after{
    content:"";
    display:block;
    width:100%;
    height:100%;
    background: linear-gradient(
        to bottom,
        #FCE5EB 0px,     /* ← 一番上が少し白い */
        #F6B7C1 50px,    /* ← 50px地点で元の色に到達 */
        #F6B7C1 100%     /* ← 以降はずっと同じ色 */
    );
    position:absolute;
    top:0;
    left:0;
    right:0;
}
#contact #contact_area{
    display:flex;
    justify-content:space-between;
    position:relative;
    padding:0 1%;
    z-index:2;
}
#contact #contact_area .contact_head h2 .title_en{
    display:block;
    color:white;
    font-size:2rem;
    font-weight:bold;
    text-align:left;
    letter-spacing:0.2rem;
    padding:10px 0;
    position:relative;
}
#contact #contact_area .contact_head h2 .title_en::after{
    content:"";
    display:block;
    width:30px;
    height:1px;
    background-color:white;
    position:absolute;
    bottom:0;
    left:0;
    margin-bottom:15px;
}
#contact #contact_area .contact_head h2 .title_jp{
    display:block;
    color:white;
    font-size:0.8rem;
    text-align:left;
}
#contact #contact_area .contact_body{
    display:flex;
    padding:20px 30px 30px 30px;
}
#contact #contact_area .contact_body .contact_tell{
    display:flex;
    margin-right:50px;
}
#contact #contact_area .contact_body .contact_tell .tell1{
    text-align:left;
}
#contact #contact_area .contact_body .contact_tell .tell1 .text{
    display:block;
    color:white;
    font-size:1.1rem;
}
#contact #contact_area .contact_body .contact_tell .tell1 .number{
    display:block;
    color:white;
    font-size:2.0rem;
    font-weight:bold;
    font-family:'Oswald';
    letter-spacing:0.2rem;
    padding-left:50px;
    position:relative;
}
#contact #contact_area .contact_body .contact_tell .tell1 .number::after{
    content:"";
    width:50px;
    height:50px;
    background-image:url(/public/img/tel_icon_white.svg);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center center;
    position:absolute;
    top:50%;
    left:0;
    translate:0 -50%;
}
#contact #contact_area .contact_body .contact_tell .tell1 .businesshours{
    color:white;
    font-size:0.9rem;
}
#contact #contact_area .contact_body .contact_mail{
    display:block;
    width:300px;
    padding:0 0px 0px 30px;
}
#contact #contact_area .contact_body .contact_mail .text{
    color:white;
    font-size:1.1rem;
    text-align:left;
    margin-bottom:5px;
}
#contact #contact_area .contact_body .contact_mail .btn{
    display:block;
    font-size:1.1rem;
    color:var(--fontcolor);
    background-color:white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.10);
    border-radius:50px;
    padding:5px 0;
}
#contact #contact_area .contact_body .contact_mail .btn:hover{
    background-color:#E6F2FB;
}
/*******************************************************************************************
フッターメニュー
*******************************************************************************************/
#footer{
    scroll-behavior:auto;
}
#footer #footer_menu{
    background-color:#333333;
    padding-top:100px;
    padding-bottom:20px;
}
#footer #footer_menu #footer_menu_area{
    display:flex;
    justify-content:center;
    margin-bottom:100px;
}
#footer #footer_menu #footer_menu_area .item{
    display:flex;
    width:0;
    flex-direction:column;
    flex:1;
}
#footer #footer_menu #footer_menu_area .item ul.list1{
    display:block;
    color:white;
    text-align:left;
}
#footer #footer_menu #footer_menu_area .item ul.list1 li.list1_item{
    display:block;
    font-size:0.8rem;
}
#footer #footer_menu #footer_menu_area .item ul.list2{
    color:white;
    text-align:left;
    list-style:disc;
    padding-left:30px;
    padding-bottom:10px;
}
#footer #footer_menu #footer_menu_area .item ul.list2 li.list2_item a.link2{
    overflow-wrap:break-word;
}
#footer #footer_menu #footer_menu_area .item ul.list2 li.list2_item.dummy{
    list-style:none;
} 
#footer #footer_menu #footer_menu_area .item .btn{
    font-size:1.5rem;
    color:white;
    border:5px solid white;
    padding:20px;
}
#footer #footer_menu #request_area{
    display:inline-block;
    color:white;
    padding:5px 80px;
    border:2px solid white;
    margin-bottom:50px;
}
/*******************************************************************************************
フッターＳＮＳ
*******************************************************************************************/
#footer #footer_menu #footer_sns_area{
    position:relative;
}
#footer #footer_menu #footer_sns_area h2{
    color:white;
}
#footer #footer_menu #footer_sns_area .list{
    display:flex;
    justify-content:center;
}
#footer #footer_menu #footer_sns_area .list .item{
    display:block;
    width:50px;
    height:50px;
    margin:20px;
}
#footer #footer_menu #footer_sns_area .list .item img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
}
#footer #footer_menu #footer_sns_area .logo{
    width:200px;
    height:auto;
    position:absolute;
    top:0;
    right:0;
}
/*******************************************************************************************
トップに戻るボタン
*******************************************************************************************/
#footer{
    position:relative;
    z-index:12;
}
#footer #return_top_btn {
    right: 1rem;
    width:3.5rem;
    height:3.5rem;
    z-index:99;/*ハンバーガーメニュー表示中は後ろに隠す*/
    scroll-behavior:smooth;
}
/*******************************************************************************************
ボトムナビゲーション
*******************************************************************************************/
#footer #bottom_navi{
    display:none;
}
/*******************************************************************************************
コピーライト
*******************************************************************************************/
#footer #copyright{
    width:100%;
    background-color:#333333;
    text-align:center;
    padding:0 10px 10px 10px;
}
#footer #copyright .copyright_area{
    width:100%;
    color:white;
    font-size:0.8rem;
}
#footer #copyright .webdesign_area{
    color:white;
    font-size:0.7rem;
}
/*******************************************************************************************
お問合せフォーム メインビジュアル部
*******************************************************************************************/
#contact_main{
    width:100%;
    margin:110px 0 50px 0;
}
#contact_main #contact_main_head{
    width:100%;
}
#contact_main #contact_main_head .head_area{
    position:relative;
    height:430px;
}
#contact_main #contact_main_head .head_area .img_area{
    height:100%;
}
#contact_main #contact_main_head .head_area .img_area img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    margin:auto;
}
#contact_main #contact_main_head .head_area .title_area{
    display:block;
    background-color:var(--themecolor);
    position:absolute;
    bottom:0;
    left:0;
    transform:translateY(50%);
}
#contact_main #contact_main_head .head_area .title_area h2{
    padding:10px 20px 10px 280px;
    line-height:2.8rem;
}
#contact_main #contact_main_head .head_area .title_area h2 .title_en{
    display:block;
    color:white;
    font-size:3.0rem;
    font-weight:bold;
    letter-spacing:0.3rem;
}
#contact_main #contact_main_head .head_area .title_area h2 .title_jp{
    display:block;
    color:white;
    font-size:1.3rem;
}
/*******************************************************************************************
お問合せフォーム
*******************************************************************************************/
#contact_main #contact_main_area form{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:0 200px;
}
#contact_main .title_area {
    color: #333333;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 50px;
    text-align: center;
    padding-top:60px;
}
#contact_main .title_area .en {
    display: block;
    font-size: clamp(13px, 1.3vw, 16px);
    margin-top: .4rem;
    color: #603813;
    font-family: 'Montserrat', sans-serif;
}
#contact_main #contact_main_area .explanation{
    color:#2b2b2b;
    font-size:1rem;
    text-align:justify;
    padding:0 100px;
    margin-bottom:50px;
}
#contact_main #contact_main_area iframe{
    margin:0 auto;
    text-align:center;
}
#contact_main #contact_main_area form .input_item{
    display:flex;
    flex-direction:column;
    margin-bottom:50px;
}
#contact_main #contact_main_area form .input_item .sex_item{
    display:flex;
}
#contact_main #contact_main_area form .input_item .sex_item p.text{
    color:var(--fontcolor);
}
#contact_main #contact_main_area form .input_item input{
    border:1px solid var(--fontcolor);
    border-radius:5px;
    padding:5px;
    margin-right:10px;
    appearance: revert;/*ラジオボタンのチェックボタン表示に必要*/
    vertical-align:middle
}
#contact_main #contact_main_area form .input_item input::placeholder{
    color:rgb(0,0,0,0.5);
}
#contact_main #contact_main_area form .input_item label{
    color:var(--fontcolor);
    font-size:1rem;
    margin-bottom:10px;
}
#contact_main #contact_main_area form .input_item label span{
    color:red;
    margin-left:10px;
}
#contact_main #contact_main_area form .select_box{
    position:relative;
}
#contact_main #contact_main_area form .select_box::after{
    content:"";
    display:block;
    width:1px;
    height:50%;
    background-color:var(--fontcolor);
    position:absolute;
    bottom:0;
    right:45px;
}
#contact_main #contact_main_area form .select_box select{
    color:var(--fontcolor);
    border:1px solid var(--fontcolor);
    border-radius:5px;
    text-align:center;
    padding:5px;
    position:relative;
    background-image:url(/public/img/cursol_down.svg);
    background-repeat:no-repeat;
    background-size:20px 20px;
    background-position:right calc(45px / 2 - 10px) center;
}
#contact_main #contact_main_area form .input_item textarea{
    border:1px solid var(--fontcolor);
    border-radius:5px;
    padding:5px;
}
#contact_main #contact_main_area form .input_item textarea::placeholder{
    color:rgb(0,0,0,0.5);
}
#contact_main #contact_main_area form button{
    margin:0 auto 100px auto;
    color:white;
    background-color:var(--themecolor);
    border:1px solid var(--themecolor);
    padding:10px 20px;
    transition:0.5s;
}
#contact_main #contact_main_area form button:hover{
    color: var(--themecolor);
    background-color:white;
}
/*******************************************************************************************
  就労継続支援Ａ型｜完全デザインCSS（最新版：page-title対応）
*******************************************************************************************/
/***********************************************
  Welfare Coordi A型ページ｜配色統一テーマ
***********************************************/
:root {
  --base-white: #ffffff;
  --base-beige: #F6EBE7;
  --base-softpink: #FAF7F5;

  --accent-blue: #4087BF;
  --accent-blue-light: #C2E2FA;

  --accent-purple: #B7A3E3;

  --text-main: #2B2B2B;
  --text-muted: #666666;

  --card-bg: #FAF7F5;
  --border-color: #E8E5E0;

  --section-bg-1: #ffffff;
  --section-bg-2: #F6F9FB;
}

/************************************************
  ◇ 0. A型ページ全体共通
************************************************/
.page-worktype-a #a-type-intro,
.page-worktype-a #a-type-feature,
.page-worktype-a #a-type-flow,
.page-worktype-a #a-type-work,
.page-worktype-a #a-type-target,
.page-worktype-a #a-type-support,
.page-worktype-a #a-type-salary,
.page-worktype-a #a-type-flow2,
.page-worktype-a #a-type-faq,
.page-worktype-a #a-type-access {
    font-family: 'Noto Sans JP','Montserrat',sans-serif;
    color: var(--text-main);
    padding: clamp(48px, 6vw, 80px) 0;
}


/************************************************
  ◇ 見出し（h1 = page-title / h2 = section-title）
************************************************/
/* h1（導入タイトル専用） */
.page-worktype-a .page-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 100px;
    text-align: center;
}
.page-worktype-a .page-title .en {
    display:block;
    font-size: clamp(13px, 1.3vw, 16px);
    margin-top:.4rem;
    color: #603813;
    font-family:'Montserrat',sans-serif;
}
.page-worktype-a .section-title .en {
    display:block;
    margin-top:.35rem;
    font-size: clamp(11px, 1.2vw, 15px);
    color: #603813;
    letter-spacing:.03em;
    font-family:'Montserrat',sans-serif;
}
/************************************************
  ◇ 見出し（h1 = page-title / h2 = section-title）
************************************************/
/* h1（ページ最上部タイトル） */
.page-worktype-a .page-title {
    color:#333333;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 80px;
    text-align: center;
}
.page-worktype-a .page-title .en {
    display:block;
    font-size: clamp(13px, 1.3vw, 16px);
    margin-top:.4rem;
    color: #603813;
    font-family:'Montserrat',sans-serif;
}
/* h2（セクションタイトル） */
.page-worktype-a .section-title {
    color:#333333;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 50px;
    text-align:center;
}
.page-worktype-a .section-title .en {
    display:block;
    margin-top:.35rem;
    font-size: clamp(11px, 1.2vw, 15px);
    color: #603813;
    letter-spacing:.03em;
    font-family:'Montserrat',sans-serif;
}
/************************************************
パンくず
************************************************/
.page-worktype-a #breadcrumbs{
    margin-top:110px;
}
/************************************************
  ◇ 1. 導入（INTRO）
************************************************/
.page-worktype-a #a-type-mainvisual{
    display:block;
    width:100%;
    height:400px;
    overflow:hidden;
    position:relative;
}
.page-worktype-a #a-type-mainvisual::after{
    content:"";
    display:block;
    width:100%;
    height:100%;
    background-color:rgba(255,255,255,0.4);
    position:absolute;
    top:0;
    left:0;
    right:0;
    z-index:2;
}
.page-worktype-a #a-type-mainvisual .mainvisual-inner{
    display:block;
    width:100%;
    height:100%;
}
.page-worktype-a #a-type-mainvisual .mainvisual-inner img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.page-worktype-a #a-type-intro {
    background:
        radial-gradient(80rem 40rem at 10% -10%, #f6ebe7 0%, transparent 60%),
        radial-gradient(70rem 35rem at 110% 10%, #f6ebe7 0%, transparent 55%),
        var(--base-softpink);
    padding: 60px 0;
}
.page-worktype-a #a-type-intro .lead {
    font-size: clamp(15px, 1.8vw, 16px);
    text-align:justify;
    color: #2b2b2b;
    line-height: 1.9;
    margin-bottom: 60px;
}
/************************************************
  ◇ 2. 主な作業内容（WORK）
************************************************/
.page-worktype-a #a-type-work {
    background: #F6F9FB;
}
.page-worktype-a #a-type-work .content .intro { 
    color: #2b2b2b;
    text-align:justify;
    margin-bottom:50px;
}
.page-worktype-a #a-type-work .content .work-grid {
    display:grid;
    gap: clamp(18px,3vw,28px);
    grid-template-columns: repeat(2, 1fr);
}
.page-worktype-a #a-type-work .content .work-card {
    width:420px;
    background:var(--card-bg);
    border:1px solid var(--border-color);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.05);
    transition:.25s;
    margin: 0 auto;
}
.page-worktype-a #a-type-work .content .work-card:hover {
    transform:translateY(-4px);
    box-shadow:0 10px 24px rgba(64,135,191,.15);
}
.page-worktype-a #a-type-work .content .work-card figure{
    display:block;
    width:100%;
    height:200px;
}
.page-worktype-a #a-type-work .content .work-card figure img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.page-worktype-a #a-type-work .content .work-card .text{
    display:block;
    padding:15px;
}
.page-worktype-a #a-type-work .content .work-card .text h3{
    color:#333333;
    font-size:1.2rem;
    font-weight:bold;
    margin-bottom:10px;
}
.page-worktype-a #a-type-work .content .work-card .text p{
    color:#666666;
    text-align:justify;
}
/************************************************
  ◇ 3. 一日の流れ（FLOW）
************************************************/
.page-worktype-a #a-type-flow {
    background: white;
}
.page-worktype-a #a-type-flow .content .intro {
    color: #2b2b2b;
    text-align:justify;
    margin-bottom:50px;
}
.page-worktype-a #a-type-flow .content .timeline .time-block {
    background-color:white;
    border:1px solid #4087BF;
    border-radius:10px;
    position:relative;
    padding:10px 10px 20px 10px;
    margin-bottom:50px;
}
.page-worktype-a #a-type-flow .content .timeline .time-block::after {
    content:"";
    display:block;
    width:20px;
    height:20px;
    background-color: #2b2b2b;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    position:absolute;
    top:100%;
    left:50%;
    translate:-50% 10px;
}
.page-worktype-a #a-type-flow .content .timeline .time-block:last-child::after{
    display:none;
}
.page-worktype-a #a-type-flow .content .timeline .time-block .desc h3{
    color:#333333;
    font-size:1.3rem;
    font-weight:bold;
    margin-bottom:10px;
}
.page-worktype-a #a-type-flow .content .timeline .time-block .time {
    color: var(--accent-blue);
    font-size:1rem;
    font-weight:700;
}

/************************************************
  ◇ 4. 利用できる方（TARGET）
************************************************/
.page-worktype-a #a-type-target { 
    background: var(--section-bg-2); 
}
.page-worktype-a #a-type-target .content p.intro{ 
    color:#2b2b2b;
    text-align:left;
}
.page-worktype-a #a-type-target .target-box {
    display:flex;
    width:100%;
    height:350px;
    justify-content:center;
    align-items:center;
    gap: clamp(24px,4vw,48px);
    background:#fff;
    background-image:url(/public/img/target_people.png);
    background-size:cover;
    background-repeat:no-repeat;
    border:1px solid var(--border-color);
    border-radius:16px;
    margin-top:50px;
    margin-bottom:100px;
    box-shadow:0 8px 20px rgba(64,135,191,0.08);
    position:relative;
}
.page-worktype-a #a-type-target .target-box figure{
    display:none;
    width:400px;
    border-radius:15px;
    overflow:hidden;
}
.page-worktype-a #a-type-target .target-box figure img{
    display:block;
    object-fit:cover;
    object-position: center;
}
.page-worktype-a #a-type-target .target-box .checklist{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:100%;
    background-color:rgba(255,255,255,0.6);
    border-radius:10px;
    padding:10px;
}
.page-worktype-a #a-type-target .target-box .checklist ul{
    width:500px;
    background-color:rgba(255,255,255,0.5);
    border-radius:10px;
}
.page-worktype-a #a-type-target .target-box .checklist li {
    color:#333333;
    font-size:1.2rem;
    font-weight:bold;
    text-align:left;
    position:relative;
    padding: 0.5em 0.5em 0.5em 1.8em;
    line-height:1.9;
}
.page-worktype-a #a-type-target .target-box .checklist li::before {
    content:"✔";
    color: var(--accent-blue);
    position:absolute;
    top:50%;
    left:0;
    translate:50% -50%;
}
.page-worktype-a #a-type-target .note a.btn{
    font-weight:bold;
    background-color: #7DBB7C;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 18px);
    padding: 14px 104px;
    margin: 32px auto 0;
    max-width: 480px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
/************************************************
  ◇ 5. サポート体制（SUPPORT）
************************************************/
.page-worktype-a #a-type-support { 
    background: var(--section-bg-1); 
}
.page-worktype-a #a-type-support .intro{
    text-align:left;
    margin-bottom:50px;
}
.page-worktype-a #a-type-support .support-grid {
    display:grid;
    gap: clamp(18px,3vw,28px);
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    margin-bottom:50px;
}
.page-worktype-a #a-type-support .support-card {
    background:var(--card-bg);
    border:1px solid var(--border-color);
    border-radius:16px;
    padding: clamp(20px,2.5vw,28px);
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,.05);
    transition:.25s;
}
.page-worktype-a #a-type-support .support-card figure{
    display:block;
    width:100%;
    aspect-ratio:1 / 0.6;
    border-radius:5px;
    overflow:hidden;
}
.page-worktype-a #a-type-support .support-card figure img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.page-worktype-a #a-type-support .support-card h3{
    font-size:1.3rem;
    font-weight:bold;
    padding:0.3em 0;
}
.page-worktype-a #a-type-support .support-card p{
    color:#666666;
    text-align:justify;
}
.page-worktype-a #a-type-support .team-box {
    color:#333333;
    background: linear-gradient(180deg,var(--section-bg-2),#fff);
    border:1px solid var(--border-color);
    border-radius:14px;
    padding: clamp(20px,3vw,32px);
}
.page-worktype-a #a-type-support .team-box h3{
    font-size:1.3rem;
    font-weight:bold;
    padding:0.5em 0;
}
.page-worktype-a #a-type-support .team-box dl{
    display:grid;
    grid-template-columns: 150px 1fr;
    width:600px;
    text-align:left;
    margin: 0 auto;
}
.page-worktype-a #a-type-support .team-box dl dt{
    font-weight:bold;
    padding:0.5em 0;
}
.page-worktype-a #a-type-support .team-box dl dd{
    color:#2b2b2b;
    padding:0.5em 0;
}
/************************************************
   ◇ 6. 給与・待遇セクション（A型）
************************************************/
.page-worktype-a #a-type-salary {
    background: #FAF7F5;
    padding: 80px 0;
}
.page-worktype-a #a-type-salary .section-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 50px;
}
.page-worktype-a #a-type-salary .section-title .en {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: #603813;
}
.page-worktype-a #a-type-salary .intro {
    text-align: justify;
    margin: 0 auto 50px auto;
    line-height: 1.8;
    font-size: 16px;
    color: var(--text-main);
}
.page-worktype-a .salary-points {
    display: grid;
    grid-auto-flow: column; 
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.page-worktype-a .salary-points .point {
    background: #fff;
    background-image:url(/public/img/salary-back-design.png);
    background-size:100px 100px;
    background-repeat:no-repeat;
    background-position:right bottom;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    border-left: 8px solid var(--accent-blue-light);
}
.page-worktype-a .salary-points .point h3 {
    font-size: 1.5rem;
    font-weight:bold;
    color: #333333;
    margin-bottom: 10px;
}
.page-worktype-a .salary-points .point p {
    font-size: 15px;
    line-height: 1.7;
    text-align:justify;
}
.page-worktype-a .salary-table h3 {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--accent-blue);
}
.page-worktype-a .salary-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.page-worktype-a .salary-table th,
.page-worktype-a .salary-table td {
    padding: 14px 16px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}
.page-worktype-a .salary-table th {
    background: var(--accent-blue-light);
    color: #333333;
    font-weight: 600;
}
.page-worktype-a .salary-table tr:last-child td {
    border-bottom: none;
}
.page-worktype-a .salary-table .note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}
/************************************************
  ◇ 7. 利用までの流れ（FLOW2）
************************************************/
.page-worktype-a #a-type-flow2 {
    background: var(--section-bg-1); 
}
.page-worktype-a #a-type-flow2 .flow-inner .flow-content p.intro{
    display:block;
    color:#2b2b2b;
    text-align:left;
    margin-bottom:50px;
}
.page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step{
    display:flex;
    justify-content:center;
    align-items:center;
    background-color:white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border:2px solid #E8E5E0;
    border-radius:10px;
    padding:20px;
    margin-bottom:50px;
    position:relative;
}
.page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step::before{
    content:"";
    display:flex;
    width:70px;
    height:50px;
    max-height:100%;
    background-repeat:no-repeat;
    background-size:contain;
    position:absolute;
    top:50%;
    left:0;
    translate:50% -50%;
}
.page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step:nth-of-type(1)::before{
    background-image:url(/public/img/flow-number-1.png);
}
.page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step:nth-of-type(2)::before{
    background-image:url(/public/img/flow-number-2.png);
}
.page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step:nth-of-type(3)::before{
    background-image:url(/public/img/flow-number-3.png);
}
.page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step:nth-of-type(4)::before{
    background-image:url(/public/img/flow-number-4.png);
}
.page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step:nth-of-type(5)::before{
    background-image:url(/public/img/flow-number-5.png);
}
.page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step::after{
    content:"";
    display:flex;
    width:80px;
    height:80px;
    background-image:url(/public/img/flow-decoration.png);
    background-repeat:no-repeat;
    background-size:contain;
    position:absolute;
    top:0%;
    right:0;
    translate:-10% 10%;
}
.page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step .text h3{
    color:#333333;
    font-size:1.3rem;
    font-weight:bold;
    margin-bottom:10px;
}
.page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step .text p{
    color:#666666;
}
/*******************************************************************************************
  就労継続支援Ｂ型｜完全デザインCSS（最新版：page-title対応）
*******************************************************************************************/
/***********************************************
  Welfare Coordi B型ページ｜配色統一テーマ
***********************************************/
:root {
  --base-white: #ffffff;
  --base-beige: #F6EBE7;
  --base-softpink: #FAF7F5;

  --accent-blue: #4087BF;
  --accent-blue-light: #C2E2FA;

  --accent-purple: #B7A3E3;

  --text-main: #2B2B2B;
  --text-muted: #666666;

  --card-bg: #FAF7F5;
  --border-color: #E8E5E0;

  --section-bg-1: #ffffff;
  --section-bg-2: #F6F9FB;
}

/************************************************
  ◇ 0. B型ページ全体共通
************************************************/
.page-worktype-b #b-type-intro,
.page-worktype-b #b-type-feature,
.page-worktype-b #b-type-flow,
.page-worktype-b #b-type-work,
.page-worktype-b #b-type-target,
.page-worktype-b #b-type-support,
.page-worktype-b #b-type-salary,
.page-worktype-b #b-type-flow2,
.page-worktype-b #b-type-faq,
.page-worktype-b #b-type-access {
    font-family: 'Noto Sans JP','Montserrat',sans-serif;
    color: var(--text-main);
    padding: clamp(48px, 6vw, 80px) 0;
}


/************************************************
  ◇ 見出し（h1 = page-title / h2 = section-title）
************************************************/
/* h1（導入タイトル専用） */
.page-worktype-b .page-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 100px;
    text-align: center;
}
.page-worktype-b .page-title .en {
    display:block;
    font-size: clamp(13px, 1.3vw, 16px);
    margin-top:.4rem;
    color: #603813;
    font-family:'Montserrat',sans-serif;
}
.page-worktype-b .section-title .en {
    display:block;
    margin-top:.35rem;
    font-size: clamp(11px, 1.2vw, 15px);
    color: #603813;
    letter-spacing:.03em;
    font-family:'Montserrat',sans-serif;
}
/************************************************
  ◇ 見出し（h1 = page-title / h2 = section-title）
************************************************/
/* h1（ページ最上部タイトル） */
.page-worktype-b .page-title {
    color:#333333;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 80px;
    text-align: center;
}
.page-worktype-b .page-title .en {
    display:block;
    font-size: clamp(13px, 1.3vw, 16px);
    margin-top:.4rem;
    color: #603813;
    font-family:'Montserrat',sans-serif;
}
/* h2（セクションタイトル） */
.page-worktype-b .section-title {
    color:#333333;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 50px;
    text-align:center;
}
.page-worktype-b .section-title .en {
    display:block;
    margin-top:.35rem;
    font-size: clamp(11px, 1.2vw, 15px);
    color: #603813;
    letter-spacing:.03em;
    font-family:'Montserrat',sans-serif;
}
/************************************************
パンくず
************************************************/
.page-worktype-b #breadcrumbs{
    margin-top:110px;
}
/************************************************
  ◇ 1. 導入（INTRO）
************************************************/
.page-worktype-b #b-type-mainvisual{
    display:block;
    width:100%;
    height:400px;
    overflow:hidden;
    position:relative;
}
.page-worktype-b #b-type-mainvisual::after{
    content:"";
    display:block;
    width:100%;
    height:100%;
    background-color:rgba(255,255,255,0.4);
    position:absolute;
    top:0;
    left:0;
    right:0;
    z-index:2;
}
.page-worktype-b #b-type-mainvisual .mainvisual-inner{
    display:block;
    width:100%;
    height:100%;
}
.page-worktype-b #b-type-mainvisual .mainvisual-inner img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.page-worktype-b #b-type-intro {
    background:
        radial-gradient(80rem 40rem at 10% -10%, #f6ebe7 0%, transparent 60%),
        radial-gradient(70rem 35rem at 110% 10%, #f6ebe7 0%, transparent 55%),
        var(--base-softpink);
    padding: 60px 0;
}
.page-worktype-b #b-type-intro .lead {
    font-size: clamp(15px, 1.8vw, 16px);
    text-align:justify;
    color: #2b2b2b;
    line-height: 1.9;
    margin-bottom: 60px;
}
/************************************************
  ◇ 2. 主な作業内容（WORK）
************************************************/
.page-worktype-b #b-type-work {
    background: #F6F9FB;
}
.page-worktype-b #b-type-work .content .intro { 
    color: #2b2b2b;
    text-align:justify;
    margin-bottom:50px;
}
.page-worktype-b #b-type-work .content .work-grid {
    display:grid;
    gap: clamp(18px,3vw,28px);
    grid-template-columns: repeat(2, 1fr);
}
.page-worktype-b #b-type-work .content .work-card {
    width:420px;
    background:var(--card-bg);
    border:1px solid var(--border-color);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.05);
    transition:.25s;
    margin: 0 auto;
}
.page-worktype-b #b-type-work .content .work-card:hover {
    transform:translateY(-4px);
    box-shadow:0 10px 24px rgba(64,135,191,.15);
}
.page-worktype-b #b-type-work .content .work-card figure{
    display:block;
    width:100%;
    height:200px;
}
.page-worktype-b #b-type-work .content .work-card figure img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.page-worktype-b #b-type-work .content .work-card .text{
    display:block;
    padding:15px;
}
.page-worktype-b #b-type-work .content .work-card .text h3{
    color:#333333;
    font-size:1.2rem;
    font-weight:bold;
    margin-bottom:10px;
}
.page-worktype-b #b-type-work .content .work-card .text p{
    color:#666666;
    text-align:justify;
}
/************************************************
  ◇ 3. 一日の流れ（FLOW）
************************************************/
.page-worktype-b #b-type-flow {
    background: white;
}
.page-worktype-b #b-type-flow .content .intro {
    color: #2b2b2b;
    text-align:justify;
    margin-bottom:50px;
}
.page-worktype-b #b-type-flow .content .timeline .time-block {
    background-color:white;
    border:1px solid #4087BF;
    border-radius:10px;
    position:relative;
    padding:10px 10px 20px 10px;
    margin-bottom:50px;
}
.page-worktype-b #b-type-flow .content .timeline .time-block::after {
    content:"";
    display:block;
    width:20px;
    height:20px;
    background-color: #2b2b2b;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    position:absolute;
    top:100%;
    left:50%;
    translate:-50% 10px;
}
.page-worktype-b #b-type-flow .content .timeline .time-block:last-child::after{
    display:none;
}
.page-worktype-b #b-type-flow .content .timeline .time-block .desc h3{
    color:#333333;
    font-size:1.3rem;
    font-weight:bold;
    margin-bottom:10px;
}
.page-worktype-b #b-type-flow .content .timeline .time-block .time {
    color: var(--accent-blue);
    font-size:1rem;
    font-weight:700;
}

/************************************************
  ◇ 4. 利用できる方（TARGET）
************************************************/
.page-worktype-b #b-type-target { 
    background: var(--section-bg-2); 
}
.page-worktype-b #b-type-target .content p.intro{ 
    color:#2b2b2b;
    text-align:left;
}
.page-worktype-b #b-type-target .target-box {
    display:flex;
    width:100%;
    height:350px;
    justify-content:center;
    align-items:center;
    gap: clamp(24px,4vw,48px);
    background:#fff;
    background-image:url(/public/img/target_people.png);
    background-size:cover;
    background-repeat:no-repeat;
    border:1px solid var(--border-color);
    border-radius:16px;
    margin-top:50px;
    margin-bottom:100px;
    box-shadow:0 8px 20px rgba(64,135,191,0.08);
    position:relative;
}
.page-worktype-b #b-type-target .target-box figure{
    display:none;
    width:400px;
    border-radius:15px;
    overflow:hidden;
}
.page-worktype-b #b-type-target .target-box figure img{
    display:block;
    object-fit:cover;
    object-position: center;
}
.page-worktype-b #b-type-target .target-box .checklist{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:100%;
    background-color:rgba(255,255,255,0.6);
    border-radius:10px;
    padding:10px;
}
.page-worktype-b #b-type-target .target-box .checklist ul{
    width:500px;
    background-color:rgba(255,255,255,0.5);
    border-radius:10px;
}
.page-worktype-b #b-type-target .target-box .checklist li {
    color:#333333;
    font-size:1.2rem;
    font-weight:bold;
    text-align:left;
    position:relative;
    padding: 0.5em 0.5em 0.5em 1.8em;
    line-height:1.9;
}
.page-worktype-b #b-type-target .target-box .checklist li::before {
    content:"✔";
    color: var(--accent-blue);
    position:absolute;
    top:50%;
    left:0;
    translate:50% -50%;
}
.page-worktype-b #b-type-target .note a.btn{
    font-weight:bold;
    background-color: #7DBB7C;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 18px);
    padding: 14px 104px;
    margin: 32px auto 0;
    max-width: 480px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
/************************************************
  ◇ 5. サポート体制（SUPPORT）
************************************************/
.page-worktype-b #b-type-support { 
    background: var(--section-bg-1); 
}
.page-worktype-b #b-type-support .intro{
    text-align:left;
    margin-bottom:50px;
}
.page-worktype-b #b-type-support .support-grid {
    display:grid;
    gap: clamp(18px,3vw,28px);
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    margin-bottom:50px;
}
.page-worktype-b #b-type-support .support-card {
    background:var(--card-bg);
    border:1px solid var(--border-color);
    border-radius:16px;
    padding: clamp(20px,2.5vw,28px);
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,.05);
    transition:.25s;
}
.page-worktype-b #b-type-support .support-card figure{
    display:block;
    width:100%;
    aspect-ratio:1 / 0.6;
    border-radius:5px;
    overflow:hidden;
}
.page-worktype-b #b-type-support .support-card figure img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.page-worktype-b #b-type-support .support-card h3{
    font-size:1.3rem;
    font-weight:bold;
    padding:0.3em 0;
}
.page-worktype-b #b-type-support .support-card p{
    color:#666666;
    text-align:justify;
}
.page-worktype-b #b-type-support .team-box {
    color:#333333;
    background: linear-gradient(180deg,var(--section-bg-2),#fff);
    border:1px solid var(--border-color);
    border-radius:14px;
    padding: clamp(20px,3vw,32px);
}
.page-worktype-b #b-type-support .team-box h3{
    font-size:1.3rem;
    font-weight:bold;
    padding:0.5em 0;
}
.page-worktype-b #b-type-support .team-box dl{
    display:grid;
    grid-template-columns: 150px 1fr;
    width:600px;
    text-align:left;
    margin: 0 auto;
}
.page-worktype-b #b-type-support .team-box dl dt{
    font-weight:bold;
    padding:0.5em 0;
}
.page-worktype-b #b-type-support .team-box dl dd{
    color:#2b2b2b;
    padding:0.5em 0;
}
/************************************************
   ◇ 6. 給与・待遇セクション（A型）
************************************************/
.page-worktype-b #b-type-salary {
    background: #FAF7F5;
    padding: 80px 0;
}
.page-worktype-b #b-type-salary .section-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 50px;
}
.page-worktype-b #b-type-salary .section-title .en {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: #603813;
}
.page-worktype-b #b-type-salary .intro {
    text-align: justify;
    margin: 0 auto 50px auto;
    line-height: 1.8;
    font-size: 16px;
    color: var(--text-main);
}
.page-worktype-b .salary-points {
    display: grid;
    grid-auto-flow: column; 
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.page-worktype-b .salary-points .point {
    background: #fff;
    background-image:url(/public/img/salary-back-design.png);
    background-size:100px 100px;
    background-repeat:no-repeat;
    background-position:right bottom;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    border-left: 8px solid var(--accent-blue-light);
}
.page-worktype-b .salary-points .point h3 {
    font-size: 1.5rem;
    font-weight:bold;
    color: #333333;
    margin-bottom: 10px;
}
.page-worktype-b .salary-points .point p {
    font-size: 15px;
    line-height: 1.7;
    text-align:justify;
}
.page-worktype-b .salary-table h3 {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--accent-blue);
}
.page-worktype-b .salary-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.page-worktype-b .salary-table th,
.page-worktype-b .salary-table td {
    padding: 14px 16px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}
.page-worktype-b .salary-table th {
    background: var(--accent-blue-light);
    color: #333333;
    font-weight: 600;
}
.page-worktype-b .salary-table tr:last-child td {
    border-bottom: none;
}
.page-worktype-b .salary-table .note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}
/************************************************
  ◇ 7. 利用までの流れ（FLOW2）
************************************************/
.page-worktype-b #b-type-flow2 {
    background: var(--section-bg-1); 
}
.page-worktype-b #b-type-flow2 .flow-inner .flow-content p.intro{
    display:block;
    color:#2b2b2b;
    text-align:left;
    margin-bottom:50px;
}
.page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step{
    display:flex;
    justify-content:center;
    align-items:center;
    background-color:white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border:2px solid #E8E5E0;
    border-radius:10px;
    padding:20px;
    margin-bottom:50px;
    position:relative;
}
.page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step::before{
    content:"";
    display:flex;
    width:70px;
    height:50px;
    max-height:100%;
    background-repeat:no-repeat;
    background-size:contain;
    position:absolute;
    top:50%;
    left:0;
    translate:50% -50%;
}
.page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step:nth-of-type(1)::before{
    background-image:url(/public/img/flow-number-1.png);
}
.page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step:nth-of-type(2)::before{
    background-image:url(/public/img/flow-number-2.png);
}
.page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step:nth-of-type(3)::before{
    background-image:url(/public/img/flow-number-3.png);
}
.page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step:nth-of-type(4)::before{
    background-image:url(/public/img/flow-number-4.png);
}
.page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step:nth-of-type(5)::before{
    background-image:url(/public/img/flow-number-5.png);
}
.page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step::after{
    content:"";
    display:flex;
    width:80px;
    height:80px;
    background-image:url(/public/img/flow-decoration.png);
    background-repeat:no-repeat;
    background-size:contain;
    position:absolute;
    top:0%;
    right:0;
    translate:-10% 10%;
}
.page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step .text h3{
    color:#333333;
    font-size:1.3rem;
    font-weight:bold;
    margin-bottom:10px;
}
.page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step .text p{
    color:#666666;
}
/*******************************************************************************************
グループホーム
*******************************************************************************************/
.page-grouphome #breadcrumbs {
    margin-top: 110px;
}
.page-grouphome #gh-mainvisual{
    display:block;
    width:100%;
    height:400px;
}
.page-grouphome #gh-mainvisual:after{
    content:"";
    display:block;
    width:100%;
    height:100%;
    background-color: rgba(255, 255, 255, 0.4);
    position:absolute;
    top:0;
    left:0;
    right:0;
}
.page-grouphome #gh-mainvisual .mainvisual-inner{
    display:block;
    width:100%;
    height:100%;
}
.page-grouphome #gh-mainvisual .mainvisual-inner img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
/*******************************************************************************************
 グループホーム グループホームとは
*******************************************************************************************/
.page-grouphome #about-group-home {
    --base-white: #ffffff;
    --base-beige: #F6EBE7;
    --base-soft: #FAF7F5;
    --accent-blue: #4087BF;
    --text-main: #333333;
    --text-muted: #666666;
}
.page-grouphome #about-group-home {
    padding: 80px 0;
    color: var(--text-main);
}
.page-grouphome #about-group-home .wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}
.page-grouphome .about-gh-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.page-grouphome #about-group-home .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 50px;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}
.page-grouphome #about-group-home .section-title .en {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-blue);
}
.page-grouphome #about-group-home figure img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.page-grouphome #about-group-home .lead {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.9;
    color: #2b2b2b;
    text-align:justify;
    margin-bottom:50px;
}
.page-grouphome #about-group-home figure{
    display:block;
    width:200px;
    margin:0 auto;
}
.page-grouphome #about-group-home .sub-title {
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 8px;
    color: var(--accent-blue);
}

/***********************************************
 グループホーム  1日の流れ（Daily Schedule）
***********************************************/
.page-grouphome #gh-daily {
  --base-white: #ffffff;
  --base-soft: #FAF7F5;
  --accent-blue: #4087BF;
  --accent-blue-light: #C2E2FA;
  --border-light: rgba(0, 0, 0, 0.06);
  --text-main: #333333;
  --text-muted: #666666;
}
.page-grouphome #gh-daily {
    background-color: white;
    padding: 80px 0;
    color: var(--text-main);
}
.page-grouphome #gh-daily .wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}
.page-grouphome .daily-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.page-grouphome #gh-daily .section-title {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom:50px;
}
.page-grouphome #gh-daily .section-title .en {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-blue);
}
.page-grouphome #gh-daily .lead {
    font-size: clamp(15px, 1.8vw, 16px);
    text-align:justify;
    line-height: 1.9;
    color: #2b2b2b;
}
.page-grouphome .daily-timeline {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    padding-left: 32px;
}
.page-grouphome .daily-timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(var(--accent-blue-light), var(--accent-blue));
    border-radius: 4px;
}
.page-grouphome .daily-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
}
.page-grouphome .daily-time {
    min-width: 80px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-blue);
    margin-top: 6px;
}
.page-grouphome .daily-card {
    background: var(--base-white);
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(64, 135, 191, 0.05);
    flex: 1;
}
.page-grouphome .daily-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--accent-blue);
}
.page-grouphome .daily-card p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
}
.page-grouphome .daily-item::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--accent-blue);
    border: 3px solid var(--base-white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--accent-blue-light);
}

/***********************************************
 グループホーム 施設紹介（設備）
***********************************************/
.page-grouphome #gh-facility {
  --base-white: #ffffff;
  --base-soft: #FAF7F5;
  --base-beige: #F6EBE7;
  --accent-blue: #4087BF;
  --accent-blue-light: #C2E2FA;
  --text-main: #333333;
  --text-muted: #666666;
}
.page-grouphome #gh-facility {
    background-color:#FAF7F5;
    padding: 80px 0;
    color: var(--text-main);
}
.page-grouphome #gh-facility .wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}
.page-grouphome .facility-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.page-grouphome #gh-facility .section-title {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom:50px;
}
.page-grouphome #gh-facility .section-title .en {
    font-size: 12px;
    color: var(--accent-blue);
    letter-spacing: 0.18em;
}
.page-grouphome #gh-facility .lead {
    font-size: clamp(15px, 1.8vw, 16px);
    color: #2b2b2b;
    line-height: 1.9;
    text-align:left;
}
.page-grouphome .facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 3vw, 28px);
    margin-top: 16px;
}
.page-grouphome .facility-card {
    background: var(--base-white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 16px rgba(64, 135, 191, 0.08);
    display: flex;
    flex-direction: column;
}
.page-grouphome .facility-card .fac-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f2f2f2;
}
.page-grouphome .facility-card .fac-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-grouphome .facility-card .fac-title {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 14px 18px 4px;
}
.page-grouphome .facility-card .fac-text {
    font-size: 14px;
    color: var(--text-muted);
    text-align:justify;
    line-height: 1.8;
    padding: 0 18px 18px;
    flex-grow: 1;
}

/***********************************************
 グループホーム 支援内容（Support Services）
***********************************************/
.page-grouphome #gh-support {
    --base-white: #ffffff;
    --base-soft: #FAF7F5;
    --accent-blue: #4087BF;
    --accent-blue-light: #C2E2FA;
    --accent-purple: #B7A3E3;
    --text-main: #333333;
    --text-muted: #666666;
}
.page-grouphome #gh-support {
    background: var(--base-soft);
    padding: 80px 0;
    color: var(--text-main);
}
.page-grouphome #gh-support .wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}
.page-grouphome .support-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.page-grouphome #gh-support .section-title {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom:50px;
    position:relative;
}
.page-grouphome #gh-support .section-title .en {
    font-size: 12px;
    color: var(--accent-blue);
    letter-spacing: 0.18em;
}
.page-grouphome #gh-support .lead {
    font-size: clamp(15px, 1.8vw, 16px);
    text-align:left;
    color: #2b2b2b;
    line-height: 1.9;
}
.page-grouphome .support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(22px, 3vw, 28px);
    margin-top: 16px;
}
.page-grouphome .support-card {
    background: var(--base-white);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 18px rgba(64, 135, 191, 0.08);
    padding: 22px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.page-grouphome .support-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: var(--accent-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.page-grouphome .support-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}
.page-grouphome .support-title {
    font-size: 1.3rem;
    font-weight: 700;
    position:relative;
    margin-left:30px;
    padding-left:5px;
}
.page-grouphome .support-title::before{
    content:"";
    display:block;
    width:35px;
    height:35px;
    background-image:url(/public/img/support-header-deco.png);
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center center;
    position:absolute;
    top:50%;
    left:0;
    translate:-100% -50%;
}
.page-grouphome .support-text {
    color: #666666;
    font-size: 14px;
    line-height: 1.8;
    text-align:justify;
}
/***********************************************
グループホーム 入居までの流れ（Flow to Admission）
***********************************************/
.page-grouphome #gh-flow {
    --base-white: #ffffff;
    --base-soft: #FAF7F5;
    --accent-blue: #4087BF;
    --accent-blue-light: #C2E2FA;
    --accent-purple: #B7A3E3;
    --text-main: #333333;
    --text-muted: #666666;
}
.page-grouphome #gh-flow {
    background-color: white;
    padding: 80px 0;
    color: var(--text-main);
}
.page-grouphome #gh-flow .wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}
.page-grouphome .flow-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.page-grouphome #gh-flow .section-title {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 50px;
}
.page-grouphome #gh-flow .section-title .en {
    font-size: 12px;
    color: var(--accent-blue);
    letter-spacing: 0.18em;
}
.page-grouphome #gh-flow .lead {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.9;
    color: #2b2b2b;
    text-align: left;
}
.page-grouphome .flow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 28px);
    margin-top: 16px;
}
.page-grouphome .flow-step {
    background: var(--base-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 18px rgba(64, 135, 191, 0.08);

    padding: 24px 20px;

    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}
.page-grouphome .flow-icon {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.page-grouphome .flow-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}
.page-grouphome .flow-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.page-grouphome .flow-num {
    font-size: 1.1rem;
    font-weight:bold;
    letter-spacing: 0.15em;
    color: var(--accent-blue);
    text-transform: uppercase;
}
.page-grouphome .flow-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
}
.page-grouphome .flow-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/***********************************************
  グループホーム 対象となる方（Eligible Users）
***********************************************/
.page-grouphome #gh-target {
    --base-white: #ffffff;
    --base-soft: #FAF7F5;
    --accent-blue: #4087BF;
    --accent-blue-light: #C2E2FA;
    --accent-purple: #B7A3E3;
    --text-main: #333333;
    --text-muted: #666666;
}
.page-grouphome #gh-target {
    background: var(--base-soft);
    padding: 80px 0;
    color: var(--text-main);
}
.page-grouphome #gh-target .wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}
.page-grouphome .target-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.page-grouphome #gh-target .section-title {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom:50px;
}
.page-grouphome #gh-target .section-title .en {
    font-size: 12px;
    color: var(--accent-blue);
    letter-spacing: 0.18em;
}
.page-grouphome #gh-target .lead {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.9;
    color: #2b2b2b;
    text-align:left;
}
.page-grouphome .target-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 28px);
    margin-top: 12px;
}
.page-grouphome .target-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--base-white);
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 16px rgba(64, 135, 191, 0.08);
    overflow:hidden;
    position:relative;
}
.page-grouphome .target-card:after {
    content:"";
    display:block;
    width:20px;
    height:100%;
    background-image:url(/public/img/target-deco.png);
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center center;
    position:absolute;
    top:50%;
    right:0;
    translate: 0 -50%;
    opacity:0.5;
}
.page-grouphome .target-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.page-grouphome .target-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}
.page-grouphome .target-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #2b2b2b;
}

/***********************************************
  グループホーム 利用料金（Fee Structure）
***********************************************/
.page-grouphome #gh-fee {
  --base-white: #ffffff;
  --base-soft: #FAF7F5;
  --accent-blue: #4087BF;
  --accent-blue-light: #C2E2FA;
  --accent-purple: #B7A3E3;
  --text-main: #333333;
  --text-muted: #666666;
}
.page-grouphome #gh-fee {
    background: #ffffff;
    padding: 80px 0;
    color: var(--text-main);
}
.page-grouphome #gh-fee .wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}
.page-grouphome .fee-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.page-grouphome #gh-fee .section-title {
    font-size:1.7rem;
    font-weight: 700;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    letter-spacing: 0.08em;
    margin-bottom:50px;
}
.page-grouphome #gh-fee .section-title .en {
    font-size: 12px;
    color: var(--accent-blue);
    letter-spacing: 0.18em;
}
.page-grouphome #gh-fee .lead {
    font-size: clamp(15px, 1.8vw, 16px);
    color: #2b2b2b;
    line-height: 1.9;
    text-align:left;
}
.page-grouphome #gh-fee .lead span.underline-dotted{
    font-weight:bold;
    border-bottom:1px dotted gray;
}
.page-grouphome .fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 3vw, 28px);
}
.page-grouphome .fee-card {
    display: flex;
    flex-direction: column;
    background: var(--base-white);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 16px rgba(64, 135, 191, 0.08);
    padding: 22px 20px;
    gap: 8px;
    position:relative;
}
.page-grouphome .fee-card:before{
    content:"";
    display:block;
    width:90px;
    height:90px;
    border-radius:50%;
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center center;
    position:absolute;
    top:0;
    left:0;
    translate:-25% -10%;
}
.page-grouphome .fee-card.sum {
    border: 1px solid #F6B7C1;
    box-shadow: none;
    background-color:#FAF7F5;
}
.page-grouphome .fee-card:nth-of-type(1):before{
    background-image:
        url(/public/img/fee-deco1.png),
        radial-gradient(circle, #f6ebe7 0%, #f6ebe7 25%, #faf4ef 55%, #ffffff 100%);
}
.page-grouphome .fee-card:nth-of-type(2):before{
    background-image:
        url(/public/img/fee-deco2.png),
        radial-gradient(circle, #f6ebe7 0%, #f6ebe7 25%, #faf4ef 55%, #ffffff 100%);
    }
.page-grouphome .fee-card:nth-of-type(3):before{
    background-image:
        url(/public/img/fee-deco3.png),
        radial-gradient(circle, #f6ebe7 0%, #f6ebe7 25%, #faf4ef 55%, #ffffff 100%);
}
.page-grouphome .fee-card:nth-of-type(4):before{
    background-image:
        url(/public/img/fee-deco4.png),
        radial-gradient(circle, #f6ebe7 0%, #f6ebe7 25%, #faf4ef 55%, #ffffff 100%);
}
.page-grouphome .fee-card:nth-of-type(5):before{
    background-image:
        url(/public/img/fee-deco5.png),
        radial-gradient(circle, #f6ebe7 0%, #f6ebe7 25%, #faf4ef 55%, #ffffff 100%);
}
.page-grouphome .fee-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-blue);
}
.page-grouphome .fee-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}
.page-grouphome .fee-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    text-align:justify;
}
.page-grouphome .fee-notes {
    background: var(--base-soft);
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid rgba(0,0,0,0.06);
}
.page-grouphome .notes-title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
}
.page-grouphome .notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.page-grouphome .notes-list li {
    position: relative;
    padding-left: 1.4em;
    font-size: 14px;
    text-align:left;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.page-grouphome .notes-list li::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text-muted);
    font-weight: bold;
}
/*******************************************************************************************
サイトマップ
*******************************************************************************************/
.page-sitemap #sitemap_main #breadcrumbs{
    margin-top:110px;
}
.page-sitemap #sitemap_main #sitemap_head h2{
    color:#333333;
    font-size:2rem;
    font-weight:bold;
    text-align:center;
    margin-top:50px;
}
.page-sitemap #sitemap_main #sitemap_main_body .sitemap_inner{
    margin:50px 0;
}
.page-sitemap #sitemap_main #sitemap_main_body .sitemap_inner .list {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 30px 40px;
}
.page-sitemap #sitemap_main #sitemap_main_body .sitemap_inner .list ul.items li.parent{
    list-style: none;
    padding-left: 0;
    color:#2b2b2b;
    text-align:left;
}
.page-sitemap #sitemap_main #sitemap_main_body .sitemap_inner .list ul.items li.child{
    list-style: disc;
    list-style-position: inside;
    margin-left: 0.5em;
    color:#666666;
    text-align:left;
}
/*******************************************************************************************
プライバシーポリシー　個人情報保護方針
*******************************************************************************************/
.page-privacypolicy #breadcrumbs{
    margin-top:110px;
}
.page-privacypolicy #privacypolicy_main #privacypolicy_head{
    margin-top:50px;
}
.page-privacypolicy #privacypolicy_main #privacypolicy_head h2{
    font-size:2rem;
    font-weight:bold;
    text-align:center;
}
.page-privacypolicy #privacypolicy_main #privacypolicy_main_body .privacypolicy_inner{
    text-align:left;
    margin:50px 0;
    color:#2b2b2b;
}
.page-privacypolicy #privacypolicy_main #privacypolicy_main_body .privacypolicy_inner p.text{
    text-align:justify;
}
.page-privacypolicy #privacypolicy_main #privacypolicy_main_body .privacypolicy_inner h3{
    font-size:1.3rem;
    font-weight:bold;
    margin:0.5em 0;
}
.page-privacypolicy #privacypolicy_main #privacypolicy_main_body .privacypolicy_inner ul.text_sub_box{
    padding:0.5em 1em;
}
.page-privacypolicy #privacypolicy_main #privacypolicy_main_body .privacypolicy_inner p.text_end{
    text-align:right;
    margin:1em 0;
}
/*******************************************************************************************
アニメーション（共通）
*******************************************************************************************/
/*
アニメーション（スクロール時、右下にフェードイン）
フェードイン前の初期ポジションを指定用？
*/
.anime_slideBottom {
    opacity: 0;
    transform: translateY(20px);
    transition-property:all;
    transition-duration:0.5s;
    transition-delay:0s;
    transition-timing-function:ease-in-out;
}
/*******************************************************************************************
Media Queries
*******************************************************************************************/
/* タブレットおよびスマホ */
@media screen and (max-width: 1024px) {
    .wrapper {
        width: min(1000px, 100%);
        padding-inline: clamp(16px, 4vw, 32px);
        margin: 0 auto;
        text-align: center;
        position: relative;
    }
    /*header*/
    #header_menu #nav #nav_menu1 .nav_menu1_item {
        font-size: 0.9rem;
    }
    #header_menu #header_logo {
        margin-left:20px;
    }
    .mainvisual_video {
        height: auto;
        aspect-ratio: 16 / 9;
        margin-top:110px;
    }
    .mainvisual_video .mainvisual_video_content video {
        object-fit: contain;
    }
}

/* スマホ専用 */
@media only screen and (max-width: 767px) {
    /*スマホ用改行*/
    .br_sm{
        display:block;
    }
    /*ＰＣ用改行*/
    .br_pc{
        display:none;
    }
    .wrapper {
        width:100%;
        max-width:100%;
        /*margin: 0 20px;*/
        padding:0 20px;
    }
    /*header*/
    #header #header_menu_area #header_menu{
        height:auto;
    }
    #header_menu #header_logo {
        display: block;
        width: 150px;
        height: auto;
        margin-left: 0px;
    }
    #header_menu #nav {
        display: none;
    }
    #header #header_menu_area .hamburger_btn {
        display: flex;
    }
    #header #header_slide_menu_area .hamburger_btn {
        display: flex;
    }
    .mainvisual_video {
        margin-top:71px;
    }
    #footer #footer_menu {
        padding-top: 50px;
    }
    #footer #footer_menu #footer_menu_area {
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-bottom:0;
    }
    #footer #footer_menu #footer_menu_area .item {
        width: 50%;
        flex: none;
        margin-bottom: 30px;
    }
    /*service*/
    .page-index #service .service_head {
        display: block;
        width: 100%;
        height:200px;
        position: relative;
        overflow: hidden;
    }
    .page-index #service .service_head .text_area {
        display: block;
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        z-index: 2;
    }
    .page-index #service .service_head .text_area h2 .title_en {
        font-size: 1.8rem;
    }
    .page-index #service .content .service_body ul.list{
        flex-direction:column;
    }
    .page-index #service .content .service_body ul.list li.item {
        width: 100%;
        margin-bottom:30px;
    }
    /*news*/
    .page-index #news #news_box {
        flex-direction:column;
    }
    .page-index #news #news_box .news_head {
        padding: 0 5px;
    }
    .page-index #news .news_tab {
        padding:  0.5em;
        font-size: 0.7rem;
    }
    .page-index #news #news_box .news_contents {
        margin-top:50px;
    }
    .page-index .greeting_contents {
        display: flex;
        flex-direction:column;
    }
    /*greeting*/
    .page-index .greeting_title .title_en {
        font-size: 1.8rem;
    }
    /*Q&A*/
    .page-index .faq{
        padding: 56px 14px;
    }
    .page-index .faq__title{
        font-size: 1.8rem;
    }
    .page-index .faq__lead {
        text-align:justify;
    }
    .page-index .faq__group{
        padding: 14px;
    }
    .page-index .faq__navBtn{
        font-size: 13px;
        padding: 4px 10px;
    }
    .page-index .faq__aBody{
        font-size: 14px;
    }
    /*instagram*/
    .page-index #instagram h2 {
        font-size: 1.8rem;
    }
    .page-index #instagram .insta_grid {
        grid-template-columns: 1fr;
    }
    .page-index #instagram p.intro_area {
        text-align:left;
    }
    /*profile*/
    .page-index #profile .inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-index #profile .inner .info_area h2 {
        color: #333333;
        font-size:1.8rem;
        margin:0 auto 20px auto;
    }
    .page-index #profile .inner .info_area h2::after {
        width: 50%;
        left: 50%;
        translate:-50% 0;
    }
    .page-index #profile .inner .img_area {
        order: 2;
    }
    .page-index #profile .inner .info_area {
        order: 1;
    } 
    .page-index #profile {
        padding: 50px 0;
    }
    /*access*/
    .page-index #access {
        padding: 50px 0;
    }
    .page-index #access .inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index #access .inner .info_area h2 {
        font-size: 1.8rem;
        margin:0 auto 20px auto;
    }
    .page-index #access .inner .info_area h2::after {
        left: 50%;
        translate:-50% 0;
    }
    .page-index #access .inner .map_area {
        height: 300px;
    }
    /*supporter*/
    .page-index #supporter .inner .info_area h2 {
        font-size: 1.8rem;
    }
    .page-index #supporter .inner .info_area .supporters_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /*contact　共通*/
    #contact #contact_area {
        flex-direction:column;
    }
    #contact #contact_area .contact_head h2{
        margin-bottom:30px;
    }
    #contact #contact_area .contact_head h2 .title_en {
        font-size: 1.8rem;
        text-align:center;
    }
    #contact #contact_area .contact_head h2 .title_en::after {
        left: 50%;
        translate:-50% 0;
    }
    #contact #contact_area .contact_head h2 .title_jp {
        text-align: center;
    }
    #contact #contact_area .contact_body {
        display: flex;
        flex-direction:column;
        padding: 0;
    }
    #contact #contact_area .contact_body .contact_tell {
        margin:0 auto;
    }
    #contact #contact_area .contact_body .contact_tell .tell1 {
        text-align: center;
        margin-bottom:30px;
    }
    #contact #contact_area .contact_body .contact_mail .text {
        text-align: center;
    }
    /*worktype-a a-type-work*/
    .page-worktype-a #breadcrumbs {
        margin-top: 60px;
    }
    .page-worktype-a #a-type-work .content .work-card {
        width: 100%;
    }
    .page-worktype-a #a-type-work .content .work-grid {
        grid-template-columns: 1fr;
    }
    .page-worktype-a #a-type-target .target-box {
        background-position: center;
    }
    .page-worktype-a #a-type-support .team-box dl {
        width: 100%;
    }
    .page-worktype-a #a-type-target .note a.btn {
        padding: 1em 2em;
        max-width: 100%;
    }
    .page-worktype-a .salary-points {
        grid-auto-flow: row;
        grid-template-rows: none;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .page-worktype-a .salary-points .point h3 {
        font-size: 1.3rem;
    }
    .page-worktype-a .salary-table .note {
        text-align: left;
    }
    .page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step {
        padding: 20px 50px;
    }
    .page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step::before {
        width: 30px;
        height: 30px;
    }
    .page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step .text h3 {
        margin:0 auto;
    }
    .page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step .text p {
        width:100%;
        margin:0 auto;
    }
    .page-worktype-a #a-type-flow2 .flow-inner .flow-content .flow-steps .step::after {
        width: 50px;
        height: 50px;
    }
    /*worktype-b b-type-work*/
    .page-worktype-b #breadcrumbs {
        margin-top: 60px;
    }
    .page-worktype-b #b-type-work .content .work-card {
        width: 100%;
    }
    .page-worktype-b #b-type-work .content .work-grid {
        grid-template-columns: 1fr;
    }
    .page-worktype-b #b-type-target .target-box {
        background-position: center;
        height:500px;
    }
    .page-worktype-b #b-type-support .team-box dl {
        width: 100%;
    }
    .page-worktype-b #b-type-target .note a.btn {
        padding: 1em 2em;
        max-width: 100%;
    }
    .page-worktype-b .salary-points {
        grid-auto-flow: row;
        grid-template-rows: none;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .page-worktype-b .salary-points .point h3 {
        font-size: 1.3rem;
    }
    .page-worktype-b .salary-table .note {
        text-align: left;
    }
    .page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step {
        padding: 20px 50px;
    }
    .page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step::before {
        width: 30px;
        height: 30px;
    }
    .page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step .text h3 {
        margin:0 auto;
    }
    .page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step .text p {
        width:100%;
        margin:0 auto;
    }
    .page-worktype-b #b-type-flow2 .flow-inner .flow-content .flow-steps .step::after {
        width: 50px;
        height: 50px;
    }
    /*grouphome about*/
    .page-grouphome #breadcrumbs {
        margin-top: 60px;
    }
    .page-grouphome #about-group-home {
        padding: 56px 0;
    }
    .page-grouphome .about-gh-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    /*grouphome 一日の流れ*/
    .page-grouphome #gh-daily {
        padding: 56px 0;
    }
    .page-grouphome .daily-time {
        min-width: 72px;
        font-size: 13px;
    }
    .page-grouphome .daily-card {
        padding: 14px 16px;
    }
    .page-grouphome .daily-card p{
        text-align:justify;
    }
    .page-grouphome .daily-timeline {
        padding-left: 28px;
    }
    /*grouphome 施設紹介*/
    .page-grouphome #gh-facility {
        padding: 56px 0;
    }
    .page-grouphome .facility-card .fac-title {
        padding: 12px 14px 4px;
    }
    .page-grouphome .facility-card .fac-text {
        padding: 0 14px 14px;
    }
    /*grouphome サポート体制*/
    .page-grouphome #gh-support {
        padding: 56px 0;
    }
    .page-grouphome .support-card {
        padding: 18px 16px;
    }
    .page-grouphome .support-icon {
        width: 56px;
        height: 56px;
    }
    /*grouphome 入居までの流れ*/
    .page-grouphome .flow-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .page-grouphome .flow-text-wrap {
        text-align: center;
        align-items: center;
    }
    .page-grouphome .flow-icon {
        width: 70px;
        height: 70px;
    }
    .page-grouphome .flow-icon img {
        width: 100%;
        height: 100%;
    }
    .page-grouphome .flow-text {
        text-align:left;
    }
    /*grouphome 対象となる方*/
    .page-grouphome #gh-target {
        padding: 56px 0;
    }
    .page-grouphome .target-card {
        padding: 20px 35px;
    }
    .page-grouphome .target-icon {
        width: 26px;
        height: 26px;
        position:absolute;
        top:50%;
        left:5px;
        translate:0 -50%;
    }
    .page-grouphome .target-text {
        text-align:left;
    }
    .page-grouphome .target-card:after {
        background-size: cover;
    }
    /*grouphome 利用料金*/
    .page-grouphome #gh-fee {
        padding: 56px 0;
    }
    .page-grouphome .fee-card {
        padding: 18px 16px;
    }
    .page-grouphome .fee-card:before {
        width: 70px;
        height: 70px;
        position: absolute;
        top: 0;
        left: 0;
        translate: -15% -8%;
    }
    .page-grouphome .fee-notes {
        padding: 20px 20px;
    }
    /*お問い合わせページ*/
    #contact_main #contact_main_area .explanation{
        padding:0;
    }
    #contact_main {
        width: 100%;
        margin: 60px 0 50px 0;
    }
    /*サイトマップ*/
    .page-sitemap #sitemap_main #breadcrumbs {
        margin-top: 60px;
    }
    .page-sitemap #sitemap_main #sitemap_head h2{
        font-size: 1.8rem;
    }
    .page-sitemap #sitemap_main #sitemap_main_body .sitemap_inner .list {
        max-width: 80%;
        margin:0 auto;
        grid-template-rows: none;     /* 行指定を解除 */
        grid-template-columns: 1fr;   /* 1列 */
        grid-auto-flow: row;          /* 上から縦 */
        gap: 20px;     
    }
    /*個人情報保護方針*/
    .page-privacypolicy #breadcrumbs {
        margin-top: 60px;
    }
    .page-privacypolicy #privacypolicy_main #privacypolicy_head h2{
        font-size: 1.8rem;
    }
    .page-privacypolicy #privacypolicy_main #privacypolicy_main_body .sitemap_inner .list {
        max-width: 80%;
        margin:0 auto;
        grid-template-rows: none;     /* 行指定を解除 */
        grid-template-columns: 1fr;   /* 1列 */
        grid-auto-flow: row;          /* 上から縦 */
        gap: 20px;     
    }
}
