@charset "UTF-8";

/*
Theme Name: wp_tanahashi
Description: xxxxxxx（テーマの説明）
Version: xxx
Author: xxx
*/

/*全体*/
*{
    box-sizing: border-box;
    transition:all .3s;
}
html {
    scroll-behavior: smooth;
}
body{
    font-family: "Noto Sans JP", serif;
    margin:0;
    padding:0;
    color:#000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.05em;
}
a{
    text-decoration: none;
    color:#000;
}
ul{
    list-style: none;
    padding:0;
    margin:0;
}
img{
    max-width:100%;
    height:auto;
    vertical-align: bottom;
}
section{
    display:block;
}
dl,dd,dt{
    margin:0;
}

/*テキストアニメーション下から上に*/
.fade-in{
    opacity:0;
    transform:translateY(40px);
}
.fade-in.js-on {
  animation-name: fadeout;
  animation-duration: 1s;
  animation-delay: .2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes fadeout {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*ヘッダー*/
.header{
    height:140px;
    width:100%;
    max-width:100%;
    background:#fff;
}
.header_item01{
    border-bottom:1px solid #9c9c9c;
    width:100%;
    padding:8px 40px;
    box-sizing: border-box;
}
.header_item01_txt{
    margin:0;
    font-size:.9em;
}
.ttl_flex{
    display:flex;
    align-items: baseline;
    gap:1em;
}
.ttl02{
    margin:0;
    font-size:2.2em;
}
.ttl03{
    font-weight:bold;
    font-size:.9em;
}
.header_item02_flex{
    display:flex;
    width:100%;
    justify-content: space-between;
    align-items: center;
    padding:14px 40px;
    background:#fff;
    position:absolute;
    z-index:9999;
}
.header_item02:hover{
    opacity:.6;
    transition:all .3s;
}
 /*ヘッダー固定*/
.header_item02_flex.fixed{
    position:fixed;
    top:0;
    box-shadow:0 4px 7px rgba(0,0,0,0.1);
}


/*ナビ*/
.header_right{
    display:flex;
    align-items: center;
    gap:60px;
}
.gnav_list{
    display:flex;
    gap:40px;
}
.gnav_item a{
    font-weight:bold;
}
.gnav_item_link{
    color:#000;
    background:linear-gradient(to right,#C22222 50%,#000 50%) 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size:200% 100%;
    background-position: 100% 0;
    transition:background-position .3s ease;
}
.gnav_item_link:hover{
    background-position:0 0;
}
.gnav_item_link[aria-current="page"] {
  transition: none;
  background-image: none;
  background-position: initial;
  -webkit-text-fill-color: #C22222;
  color: #C22222;
}

/*SNS*/
.header_sns{
    display:flex;
    gap:20px;
}
.header_sns_insta:hover,
.header_sns_fb:hover,
.header_sns_line:hover{
    opacity:.6;
    transition:all .3s;
}

/*ハンバーガーメニュー*/
#header-hamburger, #hamburger-window{
    display:none;
}

/*メインビジュアル*/
.mv{
    width:100%;
    height:800px;
    background: linear-gradient(
    -35deg,
    #ccd0e8 0%,
    #a0add1 20%,
    #7389ba 40%,
    #4766a3 70%,
    #1b428c 100%
  );
  position:relative;
  animation: fadeIn 2s ease-in-out 0.01s 1 forwards;
}
.mv_inner{
    width:100%;
    height:100%;
    position: relative;
}


.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.slide-content {
  width: 100%;
  height: 100%;
  position:relative;
}
.slide-item {
  width: 100%;
  height: 400px;
  position:absolute;
  top:0;
  left:0;
}
.slide-item img {
    width: auto;
    height: 100%;
    object-fit:cover;
    object-position:bottom;
    position:absolute;
    right:3%;
    bottom:0;
}
.mv_txt{
    position:absolute;
    top:50%;
    left:10%;
    transform: translateY(-50%);
    color:#fff;
    z-index:2;
}
/*.mv_txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    -35deg,
    #ccd0e8 0%,
    #a0add1 20%,
    #7389ba 40%,
    #4766a3 70%,
    #1b428c 100%
  );
  z-index: -1;
  animation: fadeIn 1.2s ease-in-out 0.01s 1 forwards;
}*/
.mv_txt01{
    font-weight:900;
    font-size:6vmax;/*画面幅に合わせて縮小*/
    margin:0;
    overflow: hidden;
}
.mv_txt02{
    font-weight:bold;
    font-size:4vmax;
    margin:30px 0 0 0;
    overflow: hidden;
    line-height: 1.1;
}
.mv_txt02 span{
    overflow: hidden;
}
/*キャッチコピー アニメーション*/
:root {
  --char-delay-unit: 0.12s;
}
 /* 各行にグループ遅延を指定 */
.mv_txt01 { --group-delay: 0.8s; }
.mv_txt02 { --group-delay: 1.3s; }

@keyframes slideUpFade {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.showBottom .char {
  opacity: 0;
  transform: translateY(100%);
}
.showBottom.isActive .char {
  animation-name: slideUpFade;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
  animation-delay: calc(
    var(--group-delay, 0s)
    + var(--char-index) * var(--char-delay-unit)
  );
}

.mv_img_sp{
    display:none;
}
/*メインビジュアル　フェードイン*/
@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: visible;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
.mv_img {
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 2s ease-in-out 0.01s 1 forwards;
}
/*メインビジュアル　お知らせ*/
.news_wrapper{
    position:absolute;
    bottom:0;
    right:0;
    background:#eee;
    padding:30px 40px;
    display:flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    z-index: 2;
}
.news{
    color:#fff;
    background:#1B428C;
    padding:3px 8px;
}
.news_btn{
    margin:0;
}
.news_list{
    display:flex;
    align-items: center;
    column-gap: 50px;
}
.news_item{
    margin:0;
    border-bottom:1px solid #000;
    display:flex;
    column-gap: 2em;
}
.news_item:hover{
    opacity:.6;
}
/* ↓タイトル文字数制限*/
.news_ttl{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 28ch; /* 約28文字分の幅を確保 */
    font-weight:bold;
}
.news_btn_link{
    display:inline-flex;
    align-items: center;
    padding-right:1em;
    font-size:.9em;
}
.arrow-icon2{
    opacity: 1;
    transform: translateX(0);
    will-change: transform, opacity;
}
.news_btn_link:hover .arrow-icon2 {
  animation: arrowFlow .3s ease-in-out forwards;
}

@keyframes arrowFlow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(101%);
    opacity: 0;
  }
  31% {
    transform: translateX(-101%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/*メッセージ*/
.message{
    padding:100px 40px 50px 40px;
}
.message_wrapper{
    text-align:left;
    width:100%;
    max-width: 1000px;
    margin:0 auto;
    display:flex;
    flex-direction: column;
    justify-content: right;
    align-items: flex-end;
}
.message_wrapper p{
    font-size:1.3em;
    font-weight:500;
    line-height: 2.2;
    margin:0;
}
.message_wrapper span{
    font-size:1.1em;
    font-weight:500;
}
/*臨時追加*/
.rinji_inner{
    display:flex;
    max-width:1400px;
    margin:0 auto;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    gap:18vw;
}
.rinji_right{
    display:flex;
    align-items: flex-start;
    gap:50px;
}

/*政策・主張*/
.policy{
    padding:130px 40px;
}
.policy_wrapper2{
    display:flex;
    justify-content: space-between;
    max-width:1200px;
    margin:0 auto;
}
.policy_inner{
    text-align:center;
    /*margin:0 auto;*/
}
.calendar{
    width:40%;
}
.calendar_inner a img{
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.calendar_inner a:hover{
    opacity:0.6;
}
.policy_ttl2{
    font-size:2em;
    text-align: center;
}

.policy_ttl{
    font-weight:bold;
    color:#1B428C;
    font-size:2.5em;
    margin:0 0 70px 0;
}
.policy_concept{
    font-size:2.2em;
    margin:0 0 70px 0;
    color:#C22222;
}
.policy_wrapper{
    display:flex;
    align-items: flex-start;
    justify-content: center;
    width:100%;
    max-width:1200px;
    margin:0 auto;
    column-gap: 200px;
}
.policy_list{
    text-align: left;
    display:flex;
    flex-direction: column;
    row-gap: 20px;
}
.policy_item{
    display:flex;
    align-items:center;
    font-size:1.5em;
    font-weight:bold;
}
.policy_item p{
    margin:0;
}
.policy_item span{
    margin-right:1em;
    font-size:1.55em;
    color:#1B428C;
}
.poster_new{
    box-shadow: 4px 4px 7px rgba(0,0,0,0.2);
}
.poster_new a:hover{
    opacity:.6;
}

.policy_btn{
    margin:50px auto 0 auto;
    width:15em;
    height:80px;
}
.policy_btn_link{
    display:inline-flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100%;
    border:1px solid #000;
    position:relative;
    overflow: hidden;
    font-weight:bold;
}
.fa-solid{
    font-weight:600;
    position:absolute;
    right:30px;
    transition:all .3s ease-in-out;
}
.policy_btn:hover{
    background:#C22222;
    transition:all .3s;
}
.policy_btn_link:hover{
    color:#fff;
}

/*矢印が流れるアニメーション*/
.arrow-icon {
  position: absolute;
  right: 30px;
  transition: none;
  opacity: 1;
  transform: translateX(0);
  will-change: transform, opacity;
}
.policy_btn:hover .arrow-icon {
  animation: arrowFlow .25s ease-in-out forwards;
}
@keyframes arrowFlow {
  0% {
    transform: translateX(-105%);
    opacity: 0;
  }
  30% {
    transform: translateX(0);
    opacity: 1;
  }
  60% {
    transform: translateX(105%);
    opacity: 0;
  }
  61% {
    transform: translateX(-105%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/*活動報告*/
.activity{
    padding:130px 40px;
    background:#eee;
}
.activity_inner{
    text-align:center;
    margin:0 auto;
    width:100%;
    max-width:1200px;
}
.activity_ttl{
    font-weight:bold;
    color:#1B428C;
    font-size:2.5em;
    margin:0 0 70px 0;
}
.activity_list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.activity_item{
    max-width:360px;
    width:100%;
    overflow: hidden;
}
.activity_date{
    text-align: left;
    margin:0 0 10px 0;
}
.activity_img{
    width:100%;
    max-width:360px;
    aspect-ratio: 1/1;
}
.activity_img img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(100%) brightness(90%);
    transition:all .8s;
}
.activity_item:hover .activity_img img {
    filter: none;
    transform:scale(1.15);
}

.activity_txt{
    font-weight:bold;
    font-size:1.2em;
    text-align:left;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width:30ch;
    white-space: nowrap;
}
.activity_btn{
    margin:100px auto 0 auto;
    width:15em;
    height:80px;
}
.activity_btn_link{
    display:inline-flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100%;
    border:1px solid #000;
    position:relative;
    overflow: hidden;
    font-weight:bold;
}
.fa-solid{
    font-weight:600;
    position:absolute;
    right:30px;
    transition:all .3s ease-in-out;
}
.activity_btn:hover{
    background:#C22222;
    transition:all .3s;
}
.activity_btn_link:hover{
    color:#fff;
}

/*矢印が流れるアニメーション*/
.arrow-icon {
  position: absolute;
  right: 30px;
  transition: none;
  opacity: 1;
  transform: translateX(0);
  will-change: transform, opacity;
}
.activity_btn:hover .arrow-icon {
  animation: arrowFlow .25s ease-in-out forwards;
}
@keyframes arrowFlow {
  0% {
    transform: translateX(-105%);
    opacity: 0;
  }
  30% {
    transform: translateX(0);
    opacity: 1;
  }
  60% {
    transform: translateX(105%);
    opacity: 0;
  }
  61% {
    transform: translateX(-105%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/*活動報告 画像マスク表示*/
.mask{
    position:relative;
    overflow: hidden;
    width:100%;
    aspect-ratio: 1/1;
    isolation: isolate;
}
.mask img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    transform:translateX(-100%);
    transition:transform .55s ease-out;
}
.mask::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(0);
    transition: transform .5s ease-in-out;
    z-index: 2;
}
.mask.js-on img {
    transform: translateX(0);
}
.mask.js-on::after {
    transform: translateX(100%);
}

/*sns*/
.activity_sns_link{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top:100px;
}
.activity_sns_ttl{
    font-size:2em;
    margin:0;
}
.activity_sns_subttl{
    font-weight:bold;
}
.sns_account{
    margin-top:30px;
    width:100%;
}
.sns_account_list{
    display:flex;
    gap:40px;
    justify-content: center;
    align-items: center;
}
.sns_account_item{
    background:#fff;
    width:100%;
    max-width:180px;
    aspect-ratio: 1/1;
    display:flex;
    justify-content: center;
    align-items: center;
}
.sns_account_item img{
    width:48px;
}
.sns_account_item a:hover{
    opacity:.6;
    transition:all .3s;
}

/*事務所案内*/

/*追加事項*/
.iten{
    border:2px solid #c22222;
    width:max-content;
    margin-top:20px;
}
.iten > p{
    margin:0;
}
.iten > p > a{
    display: block;
    width:100%;
    height:100%;
    padding:20px;
}

.map{
    padding:130px 40px;
}
.map_inner{
    width:100%;
    max-width:1120px;
    margin:0 auto;
}
.map_ttl{
    font-weight:bold;
    color:#1B428C;
    font-size:2.5em;
    margin:0 0 70px 0;
    text-align: center;
}
.map_01_wrapper{
    display:flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom:100px;
    border:2px solid #bbbbbb;
    width:100%;
}
.map_02_wrapper{
    display:flex;
    align-items: center;
    border:2px solid #bbbbbb;
    width:100%;
}
.map_txt{
    padding-left:80px;
    width:50%;
}
.map_01, .map_02{
    width:50%;
    max-width:560px;
    height:460px;
}
.map_01 iframe, .map_02 iframe{
    width:100%;
    height:100%;
}
.map_txt01{
    font-size:1.8em;
    margin:0;
}
.map_txt02{
    line-height: 1.8;
}
.map_txt03{
    line-height: 1.8;
    margin-bottom:0;
}

/*フッター*/
.footer{
    background-image:url(../images/footer.jpg);
    background-repeat:no-repeat;
    background-size: cover;
    width:100%;
    height:100%;
    padding:100px 0;
}
.footer_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
}
.footer_contents_01 a{
    color:#fff;
}
.footer_contents_01{
    display:flex;
    justify-content: space-between;
    align-items: center;
    border-bottom:1px solid #fff;
    padding-bottom:40px;
    margin-bottom:40px;
}
.footer_contents_01_left{
    display:flex;
    flex-direction: column;
    gap:30px;
}
.footer_contents_01_left a h2,
.footer_contents_01_left a p{
    margin:0;
}
.footer_contents_01_left a h2{
    font-size:2.8em;
}
.map_link_btn{
    width:10em;
    height:50px;
}
.map_link{
    display:inline-flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100%;
    border:1px solid #fff;
    position:relative;
    overflow: hidden;
    font-size:.9em;
}
.arrow-icon3{
    position:absolute;
    right:12px;
    top:38%;
    transition:none;
    opacity:1;
    transform:translateX(0);
    will-change: transform, opacity;
}
.map_link_btn:hover .arrow-icon3 {
  animation: arrowFlow .3s ease-in-out forwards;
}
@keyframes arrowFlow {
  0% {
    transform: translateX(-101%);
    opacity: 0;
  }
  30% {
    transform: translateX(0);
    opacity: 1;
  }
  60% {
    transform: translateX(101%);
    opacity: 0;
  }
  61% {
    transform: translateX(-101%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
#map{
    scroll-margin-top:100px;
}

.footer_contents_01_left_txt01:hover{
    opacity:.6;
    transition:all .3s;
}

.footer_contents_01_right{
    display:flex;
    flex-direction: column;
    align-items: end;
    gap:45px;
}
.f_gnav_list{
    display:flex;
    gap:40px;
}
.f_gnav_item a{
    font-weight:bold;
}
.f_gnav_item a:hover{
    opacity:.6;
    transition:all .3s;
}
.f_sns_list{
    display:flex;
    gap:20px;
}
.f_sns_item a:hover{
    opacity:.6;
    transition:all .3s;
}

.footer_contents_02{
    display:flex;
    justify-content: space-between;
    align-items: end;
    width:100%;
}
.footer_contents_02_left{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.8;
}
.footer_contents_02_left a{
    text-decoration: underline;
}
.footer_contents_02_left a:hover{
    text-decoration: none;
    transition:all .5s;
}
.footer_contents_02_left a,
.footer_smtxt{
    color:#fff;
}

.footer_contents_02_right{
    display:flex;
    align-items: start;
    gap:20px;
}
.gaibu_link01{
    width:100%;
    max-width:150px;
}
.gaibu_link02{
    width:100%;
    max-width:230px;
}
.gaibu_link01:hover,
.gaibu_link02:hover{
    opacity:.8;
    transition:all .3s;
}
/*ページトップ*/
.pagetop_link{
    position:fixed;
    z-index:2;
    bottom:0;
    right:0;
    width:64px;
    height:64px;
    display:block;
}
.pagetop_link::before{
    content:"";
    width:0;
    height:0;
    border-style:solid;
    border-width:0 0 64px 64px;
    border-color:transparent transparent #000 transparent;
    position:absolute;
    bottom:0;
    right:0;
    cursor: pointer;
}
.pagetop{
    position:absolute;
    right:20%;
    bottom:12%;
}
.pagetop img{
    width:14px;
}
.pagetop_link:hover::before{
    border-color:transparent transparent #C22222 transparent;
}

/*
プロフィール
*/
.page-ttl{
    position:relative;
    color:#fff;
    text-align: center;
    font-size:2.5em;
    font-weight:bold;
    padding:50px 0;
}
.page-ttl::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(-35deg,
    #ccd0e8 0%,
    #a0add1 20%,
    #7389ba 40%,
    #4766a3 70%,
    #1b428c 100%);
    transform-origin:left center;
    animation:bg 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.inn{
    position:relative;
    z-index:1;
}
@keyframes bg{
    0%{
        opacity:0;
        transform:scaleX(0) translateX(-5%);
    }
    30%{
        transform:scaleX(1) translateX(0);
    }
    100%{
        transform:scaleX(1) translateX(0);
    }
    30%,100%{
        opacity:1;
    }
}

/*
プロフィール
*/
.profile_basic{
    padding:130px 40px;
}
.profile_basic_inner{
    display:flex;
    align-items: flex-start;
    justify-content: center;
    gap:60px;
}
.profile_basic_img{
    width:100%;
    max-width:500px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
}
.profile_basic_img img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center center;
    transform:scale(1.6);
}
.profile_basic_ex{
    display:flex;
    flex-direction: column;
    gap:30px;
}
.profile_name{
    text-align:center;
    border-bottom:2px solid #1b428c;
    font-size:3em;
    letter-spacing: .1em;
    font-weight:bold;
}
.profile_name rt{
    margin-bottom:5px;
}
.profile_dob,
.profile_senkyoku_txt{
    font-weight:bold;
    font-size:1.3em;
    margin:0;
    white-space: nowrap;
}
.profile_senkyoku_img{
    width:100%;
    max-width:200px;
    aspect-ratio: 1 / 1;
}
.profile_senkyoku_list_wrapper{
    display:flex;
}
.profile_senkyoku_list li::marker{
    content:"・";
    font-size:1.2em;
}
.profile_senkyoku_item{
    margin-left:1em;
}

/*経歴*/
.career{
    background:#eee;
    width:100%;
    margin:0 auto;
    padding:130px 40px;
}
.career_ttl{
    font-size: 2em;
    text-align:center;
    color:#1b428c;
    margin:0 0 50px 0;
}
.career_list{
    background:#fff;
    padding:80px;
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.career_list_item{
    position:relative;
    margin-left:1em;
    padding-bottom:1em;
}
.career_list_item::before{
    content:"";
    position:absolute;
    top:5px;
    left:-10px;
    width:1px;
    height:100%;
    background:#1b428c;
    display:block;
}
.career_list_item:last-child::before{
    display:none;
}
.career_list_item::after{
    content:"";
    position:absolute;
    top:5px;
    left:-18px;
    display:block;
    box-sizing: initial;
    width:12px;
    height:12px;
    background:#1b428c;
    border-radius:50%;
    border:3px solid #fff;
}
.month{
    width:100%;
    max-width:90px;
    text-align:right;
}
.career_list_item dt{
    margin-left:1em;
    font-size:1.2em;
    font-weight:bold;
    margin-bottom:.5em;
}
.career_list_item dd{
    display:flex;
    gap:1em;
    margin-bottom:10px;
}
.txt_red{
    color:#C22222;
}

/*
政策・主張
*/
/*.parallax{
    background-image:url(../images/policy/parallax_bg.jpg);
    background-repeat:no-repeat;
    background-size:cover;
    background-position: center center;
    height:100%;
    position:fixed;
    top:0;
    position:relative;
    padding:130px 40px;
    z-index: -1;
}*/
.parallax{
    position:relative;
    overflow: hidden;
}
.parallax_bg{
    background-image:url(../images/policy/parallax_bg.png);
    background-size:cover;
    background-repeat: no-repeat;
    background-position: top;
    position:fixed;
    top:0;
    width:100%;
    height:100%;
    z-index: -1;
}
.parallax_content{
    display:flex;
    flex-direction: column;
    gap:100px;
    position:relative;
    z-index:1;
    padding:130px 40px;
}
.policy_list2{
    background:rgba(255,255,255,0.8);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:60px;
    height:100%;
    min-height:550px;
    display:flex;
    align-items: center;
}
.policy_item2{
    display:flex;
    align-items: center;
    justify-content: center;
    gap:90px;
}
.policy_icon{
    background:linear-gradient(-35deg,
    #ccd0e8 0%,
    #a0add1 20%,
    #7389ba 40%,
    #4766a3 70%,
    #1b428c 100%);
    width:100%;
    max-width:300px;
    aspect-ratio: 1 / 1;
    display:flex;
    align-items: center;
    justify-content: center;
}
.policy_icon img{
    width:100%;
    max-width:150px;
    aspect-ratio: 1 / 1;
}
.policy_item_txt1{
    font-weight:bold;
    font-size:2em;
    display:flex;
    gap:.5em;
    margin-top:0;
}
.txt_blue{
    color:#1b428c;
}
.policy_item_txt2{
    font-size:1.2em;
    line-height: 1.7;
}

.result{
    padding:130px 40px;
    background:#fff;
}
.result_inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}
.result_ttl{
    margin-top:0;
    margin-bottom:50px;
    text-align: center;
    font-size:2em;
    color:#1b428c;
}
.result_new{
    display:flex;
    justify-content: center;
    flex-direction: column;
    width:100%;
    max-width:610px;
    margin:0 auto;
}
.result_new span{
    margin-bottom:5px;
}
.result_pdf{
    background: #eee;
    position: relative;
    box-shadow: 4px 4px 7px rgba(0,0,0,0.2);
}
.result_pdf a{
    display:flex;
    width:100%;
    height:100%;
    align-items: center;
    justify-content: center;
    gap:5px;
}

.result_pdf a:hover,
.backnumber_item :hover{
    opacity:.6;
    transition:all .3s;
}
.backnumber_ttl{
    text-align: center;
    margin-top:100px;
    margin-bottom:50px;
    font-size:1.5em;
}
.backnumber_list{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:50px;
}
.backnumber_item{
    width:100%;
    /*aspect-ratio: 3 / 4;*/
    background:#eee;
    position:relative;
    opacity:1;
}
.backnumber_item a{
    display:flex;
    width:100%;
    height:100%;
    align-items: center;
    justify-content: center;
}
.backnumber_item.hidden{
    display:none;
}
.backnumber_btn button{
    background:#fff;
    color:#000;
    font-weight:bold;
    font-size:1em;
    border:1px solid #000;
    padding:15px 50px;
    cursor: pointer;
    position:relative;
}
.backnumber_btn{
    text-align: center;
    margin-top:30px;
}
.backnumber_btn button::before{
    content:"＋";
    position:absolute;
    top:50%;
    left:15%;
    transform:translate(-50%,-50%);
}

/**
活動報告
**/
.activity2{
    width:100%;
    max-width:1250px;
    margin:0 auto;
    padding:130px 40px;
}
.select{
    text-align: right;
    margin-bottom:50px;
    width:100%;
    max-width:180px;
    margin-left:auto;
    position:relative;
}
.select-label{
    display:block;
    text-align:left;
    font-size:.9em;
}
.select select{
    height:3.5em;
    width:180px;
    padding:0 20px 0 5px;
    font-size:.9em;
    background:#eee;
    appearance: none;
    -webkit-appearance:none;
    -moz-appearance:none;
}
.select select:focus{
    color:#000;
}
.select::after{
    content:"";
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(50%);
    width:0;
    height:0;
    border-left:6px solid transparent;
    border-right:6px solid transparent;
    border-top:8px solid #1b428c;
}
.activity_list2{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 40px;
}
/*ページネーション*/
.pagination{
    text-align: center;
    color:#fff;
    width:100%;
    margin:60px auto 0 auto;
    display:flex;
    align-items: center;
    justify-content: center;
    gap:20px;
    font-weight:bold;
}
.wp-pagenavi{
    display:flex;
    gap:20px;
}
.current{
    background:#000;
    width:1.5em;
    height:1.5em;
    border-radius:50px;
    font-size:1.1em;
}
.nextpostslink{
    font-weight:bold;
}

/**
活動報告シングルページ
**/
.activity-single{
    padding:130px 40px;
}
.single_inner{
    width:100%;
    max-width:1000px;
    margin:0 auto;
}
.single_img{
    width:100%;
    max-width:1000px;
}
.single_img img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center center;
}
.single_date{
    margin-top:0;
    margin-bottom:10px;
    font-weight:bold;
    font-size:1.2em;
}
.single_ttl{
    font-weight:bold;
    font-size:1.5em;
    margin:30px 0;
}
.single_txt{
    line-height: 1.2;
    margin:0;
}
.single_inner p a{
    color:#c22222;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.pre_btn{
    width:15em;
    height:80px;
    margin:0 auto;
}

.post-navigation{
    display:flex;
    align-items: center;
    justify-content: center;
    margin-top:80px;
    gap:30px;
}
.nav-previous,
.nav-next{
    background:#000;
    width:30px;
    height:30px;
    border-radius:50px;
    display:flex;
    align-items: center;
    justify-content: center;

}
.nav-previous:hover {
  transform: translateX(5px);
}
.nav-next:hover {
  transform: translateX(-5px);
}
.nav-next:not(:has(a)) {
  display: none !important;
}
.nav-previous:not(:has(a)) {
  display: none !important;
}
.fas-custom{
    color:#fff;
}

.pre_btn_link{
    display:inline-flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100%;
    border:1px solid #000;
    position:relative;
    overflow: hidden;
    font-weight:bold;
}
.pre_btn:hover{
    background:#C22222;
    transition:all .3s;
}
.pre_btn_link:hover{
    color:#fff;
}
.pre_btn:hover .arrow-icon{
    animation:arrowFlow .25s ease-in-out forwards;
}

/**
ご意見
**/
.contact{
    padding:130px 40px;
}
.contact_inner{
    width:100%;
    max-width:1000px;
    margin:0 auto;
}
.form_ttl{
    text-align: center;
    font-weight:bold;
    font-size:1.8em;
    margin:0 0 80px 0;
}
.mail_form_item dt{
    display:flex;
    align-items: center;
    gap:7px;
}
.dt_gazo{
    margin-bottom:8px;
}
.mail_form_content{
    font-weight:bold;
    line-height: 1.7;
}
.required_mark{
    color:#fff;
    background:#1b428c;
    font-size:.7em;
    padding:3px;
    text-align: center;
    line-height: 1;
}
.mail_form_item{
    margin-bottom:45px;
}
.mail_form_item .input{
    width:100%;
    height:3em;
    border:1px solid #000;
    font-size:1em;
    border-radius: 3px;
    margin-top:8px;
    padding:6px;
}
.mail_form_item .input:focus,
.mail_form_item .input2:focus{
    background:rgb(194, 34, 34,0.4);
}

.mail_form_item .input2{
    width:30%;
    height:3em;
    border:1px solid #000;
    font-size:1em;
    border-radius: 3px;
    margin-top:8px;
    padding:6px;
}
.textarea{
    width:100%;
    border-radius:3px;
    margin-top:8px;
    border:1px solid #000;
    font-size:1.2em;
    padding:6px;
}
.mail_form_item .required{
    background:rgba(27,66,140,0.4);
}
.mail_form_item .required:focus{
    background:rgb(194, 34, 34,0.4);
}
.mail_form_item .required:valid{
    background:#fff;
}
.mail_form_item small{
    font-size:.7em;
}
.privacypolicy_concent{
    display:flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width:max-content;
    margin:0 auto;
}
.privacypolicy_txt{
    text-align:center;
    font-size:.9em;
    margin-top:30px;
}
.checkbox_icon{
    display:inline-block;
    margin-right:1em;
    transform:scale(1.8);
    accent-color:#1b428c;
}
.privacypolicy_link{
    text-decoration: underline;
    color:#1b428c;
    font-weight:bold;
    transition:all .3s;
}
.privacypolicy_link:hover{
    color:#c22222;
    text-decoration: none;
}
.submit{
    width:100%;
    max-width:240px;
    height:70px;
    margin:0 auto;
    text-align: center;
}
.submit_btn{
    background:#fff;
    color:#000;
    border:1px solid #000;
    padding:20px 25px;
    font-size:1em;
    font-weight:bold;
    cursor: pointer;
}
.contact_sns{
    background:#eee;
    padding:90px 40px;
}
.contact_sns_inner h3{
    text-align: center;
    margin:0 0 50px 0;
    font-size:1.6em;
}
.ress_font-size{
    font-size:.8em;
}

/**プライバシーポリシー**/
.privacy{
    padding:130px 40px;
}
.privacy_inner{
    width:100%;
    max-width:1000px;
    margin:0 auto;
    display:flex;
    flex-direction: column;
    gap:50px;
}
.privacy_item h4{
    margin:0;
    font-size:1.2em;
    display:flex;
    align-items: flex-start;
    gap: 1em;
}
.privacy_item p{
    font-size:.9em;
    margin-bottom:0;
}
.privacy_item ul{
    margin-left:1em;
    margin-top:10px;
    font-size:.9em;
}
.privacy_item ul li{
    position:relative;
    padding-left:1em;
}
.privacy_item ul li::before{
    content:"";
    width:10px;
    height:10px;
    border-radius: 20px;
    background:#000;
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
}
.g-ana_link{
    font-weight:bold;
    text-decoration: underline;
}
.g-ana_link:hover{
    text-decoration: none;
    color:#c22222;
    transition:all .3s;
}

/**
お知らせ
**/
.news2{
    padding:130px 40px;
}
.news2_inner{
    width:100%;
    max-width:1000px;
    margin:0 auto;
}
.news2_item{
    border-bottom:2px solid #1b428c;
    transition:all .3s;
}
.news2_item a{
    display:flex;
    flex-direction: column;
    gap:10px;
    padding:20px 0;
}
.news2_item a:hover .news2_ttl{
    color:#c22222;
}
.news2_date{
    margin:0;
    font-size:.9em;
}
.news2_ttl{
    margin:0;
    font-weight:bold;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width:50ch;
    white-space: nowrap;
}

/**
お知らせシングル
**/
.news-single{
    padding:130px 40px;
}

/**404リダイレクト**/
.not_found{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    font-size:1.2em;
    padding:130px 40px;
    text-align: center;
}
.not_found_txt{
    text-align: center;
    border: 1px solid #000;
    padding:30px;
}
.not_found_link{
    font-size:.9em;
}
.not_found_link:hover{
    color:#c22222;
    transition:all .3s;
}