@charset "utf-8";
/* ========================================================
	contents.css 
======================================================== */
/* ヘッダー
============================================================================================================ */
#header {
      font-size: 1.6rem;
      position: fixed;
      width: 100%;
      z-index: 100;
      background: #fff;
      box-sizing: border-box;
}
#header .head {
      padding-left: 2vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
}
@media screen and (max-width: 960px) {
      #header {
            height: 55px;
      }
      #header .head {
            height: 100%;
      }
}
/* logo */
#header .logo {
      width: 30rem;
}
#header .logo img {
      width: 100%;
}
@media screen and (max-width: 1500px) {
      #header .logo {
            width: 25rem;
      }
}
@media screen and (max-width: 1400px) {
      #header {
            font-size: 1.3rem;
      }
}
@media screen and (max-width: 960px) {
      #header {
            font-size: 1.5rem;
      }
      #header .logo {
            width: 25rem;
      }
}
/* globalnavi nav_______ pc
____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ */
/*画像は基本非表示 pcsp*/
.head_housing_list .img {
      display: none;
}
@media screen and (min-width:961px), print {
      #header nav > div > div {
            display: flex;
            align-items: center;
            gap: 2em;
            justify-content: flex-end;
      }
      /*順番*/
      #header nav #global {
            order: 1;
      }
      #header .sns_list {
            order: 2;
      }
      #header .head_contact {
            order: 3;
      }
      #header nav #global {
            display: flex;
            justify-content: flex-end;
            letter-spacing: 1px;
      }
      /*第1*/
      #header nav #global > li {
            z-index: 2;
            max-width: 13em;
      }
      #header nav #global > li > a {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 1.5em;
            height: 90px;
            position: relative;
      }
      .nav_down {
            display: none;
      }
      #header nav #global > li > a:after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--col_main);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
      }
      #header nav #global > li > a:hover:after {
            bottom: 0;
            opacity: 1;
            visibility: visible;
      }
      /*第2*/
      #header nav #global > li .global_inner {
            opacity: 0;
            overflow: hidden;
            height: 0;
            position: absolute;
            top: 90px;
            left: 0;
            width: 100%;
            background: var(--bg_gray_l);
            transition: all 0.15s ease;
            /*開発*/
            /*      opacity: 1;
            overflow: visible;
            height: auto;
            min-height: 40vh;*/
      }
      #header nav #global > li:hover .global_inner, #header nav #global > li .global_inner.focused {
            opacity: 1;
            overflow: visible;
            height: auto;
            min-height: 40vh;
      }
      #header nav #global > li .global_sub_list li a:hover {
            background: var(--col_main_l);
      }
      #header .global_inner_w {
            display: flex;
            flex-wrap: wrap;
            width: 1300px;
            margin: auto;
            padding: 2em 0 5em 0;
            gap: 0 3%;
      }
      /*住宅をお探しの方　nav*/
      #header .head_housing_flex {
            width: 100%;
            display: flex;
            justify-content: space-between;
            gap: 0 3%;
      }
      #header .head_housing_box {
            padding: 1.5em 2em;
            width: 50%;
            background: #fff;
      }
      #header .head_housing_box_title {
            margin-bottom: 1em;
      }
      #header .head_housing_list {
            display: flex;
            gap: 0 5%;
      }
      #header .head_housing_list > li {
            width: 50%;
      }
      #header .head_housing_list .img {
            margin-bottom: 1em;
            display: block;
      }
      #header .head_housing_list .img img {
            width: 100%;
            object-fit: cover;
            object-position: center;
      }
}
@media screen and (max-width: 1360px) {
      .global_inner_w {
            width: 90% !important;
      }
}
/* globalnavi nav_______ sp
____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ */
@media screen and (max-width: 960px) {
      .global_inner_w {
            width: auto !important;
      }
      #header nav #global {
            display: block;
            margin-right: 0;
      }
      #header nav {
            position: fixed;
            width: 100%;
            top: 55px;
            right: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            height: 0;
            visibility: hidden;
            overflow: hidden;
            opacity: 0;
            /*開発*/
            /*         visibility: visible;
            overflow: hidden;
            opacity: 1;
            height: calc(100% - 55px);*/
      }
      #header.open nav {
            visibility: visible;
            overflow: hidden;
            opacity: 1;
            height: calc(100% - 55px);
            border-top: 1px solid var(--bg_gray_ll);
      }
      #header nav > div {
            height: 100%;
            overflow-y: scroll;
            -webkit-overflow-scrolling: touch;
      }
      #header nav > div > div {
            height: 100%;
            overflow-y: auto;
            background: #fff;
            pointer-events: auto;
      }
      /*第1*/
      #header nav #global > li {
            position: relative;
            border-bottom: 1px solid var(--bg_gray_ll);
      }
      #header nav #global > li > a {
            display: block;
            padding: 1.0em 3em 1.0em 5%;
            height: auto;
            position: relative;
      }
      /*矢印 右*/
      #header nav .nav_down {
            position: absolute;
            right: 0;
            width: 3em;
            height: 3.7em;
            top: 0;
      }
      #header nav .nav_down:after {
            background: url("../images/arrow_01.svg") no-repeat;
            filter: var(--fil_main);
            aspect-ratio: var(--arrow_aspct_01);
            width: 0.5em;
            content: "";
            position: absolute;
            margin: auto;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(90deg);
      }
      #header nav .nav_down.open:after {
            transform: translate(-50%, -50%) rotate(270deg);
      }
      /*第2*/
      #header nav #global .global_inner {
            height: 0;
            visibility: hidden;
            opacity: 0;
            transition: all 0.2s;
            border-top: 1px solid var(--bg_gray_ll);
            background: var(--bg_main_l);
            /*開発*/
            /*  height: auto;
            visibility: visible;
            opacity: 1;*/
      }
      #header nav #global .global_inner.open {
            height: auto;
            visibility: visible;
            opacity: 1;
            padding: 1em 0;
      }
      .head_housing_box_title {
            padding-left: 1em;
      }
      .head_housing_list li a {
            font-size: 1.4rem;
      }
}
/* globalnavi nav_______共通デザイン pcsp
____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ */
/*基本タイトルのリンクは非表示　pcsp*/
.global_inner_title {
      display: none;
}
#header .global_inner_title {
      display: inline-block;
      width: 100%;
      font-size: 1.1em;
      padding-bottom: 1.5em;
}
#header .global_inner_title a {
      display: inline-block;
      position: relative;
      padding: 0.5em 0.8em;
}
#header .global_inner_title a:hover {
      background: var(--col_main_l);
}
#header .global_inner_title a:before {
      content: "";
      width: 0.45em;
      aspect-ratio: var(--arrow_aspct_01);
      background: url("../images/arrow_01.svg")no-repeat;
      background-size: contain;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translate(-0%, -50%);
      filter: var(--fil_main);
}
/*global_sub_list 第2
	--------------------------------------------*/
/*任意のブロックごとの時*/
#header .global_sub_list {
      width: calc(30% - 1.5%);
}
#header .global_sub_list > li {
      margin-bottom: 1em;
      /*     width: calc((100% / 3) - (3% / 1.5));*/
}
/*横並びの時の時*/
#header .global_sub_list.one_global_sub_list {
      display: flex;
      gap: 0 3%;
      flex-wrap: wrap;
      width: 100%;
}
#header .global_sub_list.one_global_sub_list > li {
      width: calc((100% / 3) - (3% / 1.5));
}
/*縦並びの時*/
@media screen and (min-width: 681px), print {
      #header .global_sub_list.column_global_sub_list {
            column-count: 3;
            width: 100%;
      }
      #header .global_sub_list.column_global_sub_list > li {
            margin-right: 3%;
      }
}
#header .global_sub_list > li > a {
      display: block;
      padding: 0.5em 0.8em 0.5em 0em;
      position: relative;
      border-bottom: 1px solid var(--bg_gray_ll);
}
#header .global_sub_list > li a:before {
      content: "";
      width: 0.45em;
      aspect-ratio: var(--arrow_aspct_01);
      background: url("../images/arrow_01.svg")no-repeat;
      background-size: contain;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translate(-0%, -50%);
      filter: var(--fil_main);
}
/*global_sub_list 第3
	--------------------------------------------*/
#header .global_sub_list > li ul {
      margin-top: 1em;
}
#header .global_sub_list > li ul li a {
      display: block;
      padding: 0.4em 0em 0.4em 1.2em;
      position: relative;
}
#header .global_sub_list > li ul li a:before {
      content: "";
      width: 0.6em;
      height: 2px;
      background: var(--col_main);
      background-size: contain;
      position: absolute;
      top: 1.2em;
      left: 0;
}
/*アイコン
	--------------------------------------------*/
.ico_blank {
      display: inline-block;
      position: relative;
      padding-right: 1.5em;
}
.ico_blank:after {
      content: "";
      background: url("../images/ico_blank.svg") no-repeat;
      background-size: contain;
      width: 1em;
      aspect-ratio: 1/1;
      position: absolute;
      top: 0.3em;
      right: 0;
}
.ico_arrow {
      display: inline;
      position: relative;
      padding-right: 1.5em;
}
.ico_arrow:after {
      content: "";
      background: url("../images/arrow_01.svg") no-repeat;
      background-size: contain;
      width: 0.8em;
      aspect-ratio: 1/1;
      position: absolute;
      top: 0.4em;
      right: 0;
      filter: invert(54%) sepia(59%) saturate(425%) hue-rotate(66deg) brightness(93%) contrast(95%);
}
.ico_arrow a {
      text-decoration: underline;
      color: var(--col_main);
}
@media screen and (min-width: 961px), print {
      .ico_arrow a:hover {
            text-decoration: none;
      }
}
@media screen and (max-width: 960px) {
      #header .global_inner_title {
            font-size: 1.0em;
            padding-bottom: 0;
      }
      #header .global_inner_title a {
            display: block;
            margin: auto 5%;
      }
      #header .head_housing_flex {
            width: 90%;
            margin: auto;
      }
      #header .head_housing_list {
            padding-left: 1em;
      }
      #header .head_housing_list br {
            display: none;
      }
      #header .head_housing_list li a {
            position: relative;
            padding: 0.5em 0em 0.5em 1.2em;
            display: block;
      }
      #header .head_housing_list li a:before {
            content: "";
            width: 0.6em;
            height: 2px;
            background: var(--col_main);
            background-size: contain;
            position: absolute;
            top: 1.2em;
            left: 0;
      }
      /*global_sub_list 第2
	--------------------------------------------*/
      #header .global_sub_list {
            width: 90%;
            margin: auto 5%;
      }
      #header .global_sub_list > li > a {
            border-bottom: none;
            padding: 0.5em 0em 0.5em 0.8em;
      }
      #header .global_sub_list > li a:before {
            right: auto;
            left: 0;
      }
      #header .global_sub_list > li {
            margin-bottom: auto;
      }
      #header .global_sub_list > li ul {
            margin-top: auto;
            padding-left: 1em;
      }
      /*global_sub_list 第3
	--------------------------------------------*/
      #header .global_sub_list > li ul li a {
            font-size: 1.4rem;
      }
}
/* nav ハンバーガー
------------------------------------------------------------- */
#header .nav_btn {
      display: none;
}
@media screen and (max-width: 960px) {
      #header .nav_btn {
            display: block;
            position: absolute;
            right: 0;
            top: 0;
            z-index: 10;
            background: var(--col_main);
            width: 55px;
            height: 56px;
            transition: all 0.2s;
      }
      #header .nav_btn span {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
      }
      #header .nav_btn:before, #header .nav_btn span:before, #header .nav_btn span:after {
            content: "";
            position: absolute;
            left: 15px;
            right: 15px;
            top: 50%;
            height: 2px;
            margin-top: -1px;
            background-color: #fff;
            transition: all 0.2s;
      }
      #header .nav_btn span:before {
            transform: translateY(-8px);
      }
      #header .nav_btn span:after {
            transform: translateY(8px);
      }
      /* open */
      #header.open .nav_btn:before {
            opacity: 0;
      }
      #header.open .nav_btn span:before {
            transform: translateY(0) rotate(45deg);
      }
      #header.open .nav_btn span:after {
            transform: translateY(0) rotate(-45deg);
      }
}
/* fixed
------------------------------------------------------------- */
#header.fixed {
      box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.12);
}
@media print {
      #header {
            position: relative !important;
      }
      #header.fixed {
            position: relative !important;
      }
}
/* contact head
------------------------------------------------------------- */
.head_contact > a {
      display: flex;
      height: 90px;
      justify-content: center;
      align-items: center;
      color: #fff;
      background: var(--col_main);
      padding: 0 3em;
      box-sizing: border-box;
}
@media screen and (min-width: 961px), print {
      .head_contact > a:hover {
            background: var(--col_main_d);
      }
}
@media screen and (max-width: 960px) {
      .head_contact {
            width: 90%;
            max-width: 40rem;
            margin: 2em auto;
      }
      .head_contact > a {
            padding: 1em 1.5em;
            height: auto;
      }
}
/* sns
------------------------------------------------------------- */
.sns_list {
      display: flex;
      gap: 0 8%;
}
#header .sns_list {
      justify-content: flex-end;
}
.sns_list > li {
      width: 3em;
}
.sns_list > li img {
      height: 2em;
      aspect-ratio: 1/1;
}
@media screen and (max-width: 960px) {
      #header .sns_list {
            max-width: 20rem;
            width: 90%;
            margin: 2em auto;
            justify-content: center;
      }
}
/* footer
============================================================================================================ */
footer {
      position: relative;
      padding: 6em 0 0 0;
      font-size: 1.4rem;
      border-top: 1px solid var(--col_btn_back);
}
.foot_grid_area {
      position: relative;
}
/*第三階層出さない*/
#foot_global .global_sub_list > li ul {
      display: none !important;
}
@media screen and (min-width: 681px), print {
      /*grid*/
      .foot_grid_area {
            width: 1500px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 3fr;
            grid-template-rows: 1fr 0.2fr;
      }
      .foot_info_box {
            margin-right: 2em;
            grid-area: 1 / 1 / 3 / 2;
      }
      .foot_nav_box {
            grid-area: 1 / 2 / 2 / 3;
      }
      .copyright {
            grid-area: 2 / 2 / 3 / 3;
      }
      /*grid end*/
      #foot_global {
            display: flex;
            gap: 0 1%;
      }
      #foot_global > li {
            width: calc((100% / 5) - (1% / 1.5));
            line-height: 1.4;
      }
      #foot_global > li a {
            display: block;
      }
      #foot_global > li > a {
            font-weight: bold;
      }
      #foot_global > li a:hover ,   #foot_global > li a:hover  .ico_blank{
            color: var(--col_main);
            text-decoration: underline;
      }
      #foot_global > li > .global_inner {
            margin-top: 1em;
      }
      #foot_global .head_housing_list > li + li, #foot_global .head_housing_box + .head_housing_box, #foot_global .global_sub_list > li + li, #foot_global .global_sub_list + .global_sub_list {
            margin-top: 0.8em;
      }
      #foot_global .head_housing_box_title {
            display: none;
      }
      #foot_global .ico_blank:after {
            content: none !important;
      }
}
@media screen and (max-width: 1550px) {
      .foot_grid_area {
            width: 95%;
            margin: auto;
      }
}
@media screen and (max-width: 960px) {
      footer {
            padding: 3em 0 1em 0;
      }
      #foot_global {
            flex-wrap: wrap;
            gap: 3em 3%;
      }
}
@media screen and (max-width: 680px) {
      footer {
            padding: 0em 0 1em 0;
            border-top: none;
      }
      /*spデザイン*/
      /*第1*/
      #foot_global > li {
            position: relative;
            border-bottom: 1px solid var(--bg_gray_ll);
      }
      #foot_global > li > a {
            display: block;
            padding: 1.0em 3em 1.0em 5%;
            height: auto;
            position: relative;
      }
      /*矢印 右*/
      #foot_global .nav_down {
            position: absolute;
            right: 0;
            width: 3em;
            height: 3.7em;
            top: 0;
      }
      #foot_global .nav_down:after {
            background: url("../images/arrow_01.svg") no-repeat;
            filter: var(--fil_main);
            aspect-ratio: var(--arrow_aspct_01);
            width: 0.5em;
            content: "";
            position: absolute;
            margin: auto;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(90deg);
      }
      #foot_global .nav_down.open:after {
            transform: translate(-50%, -50%) rotate(270deg);
      }
      /*第2*/
      #foot_global .global_inner {
            height: 0;
            visibility: hidden;
            opacity: 0;
            transition: all 0.2s;
            border-top: 1px solid var(--bg_gray_ll);
            background: var(--bg_main_l);
            /*開発*/
            /*  height: auto;
            visibility: visible;
            opacity: 1;*/
      }
      #foot_global .global_inner.open {
            height: auto;
            visibility: visible;
            opacity: 1;
            padding: 1em 0;
      }
      #foot_global .global_inner ul > li .img {
            display: none;
      }
      /*global_sub_list 第2
	--------------------------------------------*/
      #foot_global .global_sub_list {
            width: 90%;
            margin: auto 5%;
      }
      #foot_global .global_sub_list {
            width: 90%;
            margin: auto 5%;
      }
      #foot_global .global_sub_list > li > a {
            display: block;
            position: relative;
            border-bottom: none;
            padding: 0.5em 0em 0.5em 0.8em;
      }
      #foot_global .global_inner_title a:before, #foot_global .global_sub_list > li a:before {
            content: "";
            width: 0.45em;
            aspect-ratio: var(--arrow_aspct_01);
            background: url(../images/arrow_01.svg) no-repeat;
            background-size: contain;
            position: absolute;
            top: 50%;
            left: 0;
            transform: translate(-0%, -50%);
            filter: var(--fil_main);
      }
      #foot_global .global_sub_list > li a:before {
            right: auto;
            left: 0;
      }
      /*head_housing_list*/
      #foot_global .head_housing_flex {
            width: 90%;
            margin: auto;
      }
      #foot_global .head_housing_list br {
            display: none;
      }
      /*	#foot_global .head_housing_list {
        padding-left: 1em;
    }*/
      #foot_global .head_housing_list li a {
            position: relative;
            padding: 0.5em 0em 0.5em 1.2em;
            display: block;
      }
      #foot_global .head_housing_list li a:before {
            content: "";
            width: 0.6em;
            height: 2px;
            background: var(--col_main);
            background-size: contain;
            position: absolute;
            top: 1.2em;
            left: 0;
      }
      #foot_global .global_sub_list > li {
            margin-bottom: auto;
      }
      #foot_global .global_sub_list > li ul {
            margin-top: auto;
            padding-left: 1em;
      }
      #foot_global .global_inner.open {
            height: auto;
            visibility: visible;
            opacity: 1;
            padding: 1em 0;
      }
      /*global_sub_list 第2
	--------------------------------------------*/
      #foot_global .global_sub_list {
            width: 90%;
            margin: auto 5%;
      }
      #foot_global .global_sub_list > li > a {
            display: block;
            border-bottom: none;
            padding: 0.5em 0em 0.5em 0.8em;
      }
      #foot_global .global_sub_list > li a:before {
            right: auto;
            left: 0;
      }
      #foot_global .global_sub_list > li {
            margin-bottom: auto;
      }
      #foot_global .global_sub_list > li ul {
            margin-top: auto;
            padding-left: 1em;
      }
}
/*foot_info_nav
----------------------------------------------*/
.foot_info_nav {
      display: flex;
      gap: 1em 5%;
      padding-top: 2em;
      max-width: 80%;
}
@media screen and (min-width: 961px), print {
      .foot_info_nav > li a:hover {
            color: var(--col_main);
            text-decoration: underline;
      }
}
@media screen and (max-width: 680px) {
      .foot_info_nav {
            flex-wrap: wrap;
            margin-bottom: 2em;
            max-width: none;
      }
}
/*foot_logo
----------------------------------------------*/
.foot_logo {
      margin-bottom: 10px;
      max-width: 300px;
}
.foot_logo a {
      display: block;
}
.foot_logo img {
      width: 100%;
}
@media screen and (max-width: 680px) {
      .foot_logo {
            max-width: 70%;
      }
}
/*foot_sns
----------------------------------------------*/
.foot_sns {
      margin-top: 2em;
}
.foot_sns .sns_list {
      gap: 0 3%;
}
@media screen and (max-width: 960px) {
      .foot_sns {
            display: flex;
      }
      .foot_info p {
            display: flex;
            justify-content: center;
      }
      .foot_logo img {
            width: 280px;
            height: auto;
      }
}
@media screen and (max-width: 680px) {
      .foot_sns {
            align-items: center;
      }
}
/*p_mark
----------------------------------------------*/
@media screen and (min-width: 681px), print {
      .p_mark {
            position: absolute;
            right: 0;
            bottom: 2em;
      }
}
@media screen and (max-width: 680px) {
      .p_mark {
            width: 3em;
      }
}
/* copyright
------------------------------------------------------------- */
.copyright {
      padding: 2em 0;
      display: block;
      font-size: 1.2rem;
      color: var(--col_gray);
}
/* .page_top
------------------------------------------------------------- */
.page_top {
      position: absolute;
      top: -2em;
      right: 1em;
      z-index: 10;
}
.page_top a {
      display: block;
      background: var(--col_green_b);
      width: 50px;
      aspect-ratio: 1/1;
      position: relative;
}
@media screen and (max-width: 961px), print {
      .page_top a:hover {
            background: var(--col_green);
      }
}
.page_top a:after {
      position: absolute;
      content: "";
      vertical-align: middle;
      right: 0;
      left: 0;
      top: 5px;
      bottom: 0;
      margin: auto;
      width: 14px;
      height: 14px;
      border-top: 2px solid #fff;
      border-right: 2px solid #fff;
      transform: rotate(-45deg);
}
@media screen and (max-width: 680px) {
      .page_top {
            top: auto;
/*            position: fixed;*/
            bottom: 7em;
            right: 0.5em;
            z-index: 10;
      }
      .page_top a {
            width: 50px;
            height: 48px;
      }
}
/* page_title_area
============================================================================================================ */
/*.page_title_area
---------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 961px), print {
      .page_title_info_cont {
            display: flex;
            flex-flow: column;
      }
      .page_title_info_cont .topic_path {
            order: 2;
      }
      .page_title_info_cont .page_title_area {
            order: 1;
      }
}
/*.page_title_area
---------------------------------------------------------------------------------------------------*/
.page_title_area {
      position: relative;
      /*      overflow: hidden;*/
}
.page_title_bg {
      position: relative;
      z-index: -1;
      width: 100%;
}
.page_title_bg img {
      width: 100%;
}
.page_title_w {
      width: 1260px;
      margin: auto;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, -0%);
      z-index: 1;
}
.page_title {
      font-weight: 500;
      letter-spacing: 2px;
      display: inline-block;
      font-size: 2.3em;
      background: #fff;
      padding: 0.9em 1.0em;
      line-height: 1.3;
      border-radius: 0.1em 0.1em 0 0;
      position: relative;
}
/*.page_title:before {
      content: "";
      background: var(--col_main);
      height: 2px;
      width: 1.5em;
      left: 1.0em;
      position: absolute;
      bottom: -1.0em;
}*/
@media screen and (max-width: 1400px) {
      .page_title_w {
            width: 95%;
      }
      .page_title {
            font-size: 2.0em;
      }
}
@media screen and (max-width: 960px) {
      .page_title_area {
            margin-bottom: 1em;
      }
      .page_title {
            padding: 0.5em 1em;
            font-size: 1.8em;
      }
      /*      .page_title:before {
            width: 1.8em;
            transform: translate(-50%, -0%);
            left: 50%;
            bottom: -0.8em;
      }*/
}
@media screen and (max-width: 680px) {
      .page_title_w {
            text-align: center;
      }
      .page_title {
            padding: 0.7em 1em 0.5em;
            font-size: 1.8em;
      }
}
/*.topic_path 
---------------------------------------------------------------------------------------------------*/
.topic_path li {
      min-width: 3.2em;
      position: relative;
      color: var(--col_gray);
}
.topic_path li a {
      color: var(--col_gray);
}
.topic_path li + li {
      padding-left: 3em;
}
.topic_path li + li:after {
      content: "／";
      left: 1em;
      position: absolute;
      top: 0;
}
@media screen and (min-width: 961px), print {
      .topic_path {
            max-width: 90%;
            margin: auto 0 auto auto;
      }
      .topic_path .topic_path_inner {
            display: flex;
            justify-content: flex-end;
      }
      .topic_path {
            font-size: 1.3rem;
            background: #ffffff;
            z-index: 1;
            padding: 0.5em 3em 0.5em 1em;
      }
}
/*topic_path sp */
@media screen and (max-width: 960px) {
      /*追従あり*/
      .topic_path {
            width: 95%;
            padding: 1em 15px 0.5em 15px;
            margin: 0.5em auto 0em auto;
            position: relative;
            z-index: 1;
            white-space: nowrap;
            height: 30px;
            overflow: hidden;
            font-size: 1.2rem;
            -webkit-overflow-scrolling: touch;
      }
      .topic_path .topic_path_inner {
            white-space: nowrap;
            overflow-x: scroll;
            overflow-y: hidden;
            height: 30px;
            transform: translateZ(0);
      }
      .topic_path .topic_path_inner > li {
            display: inline-block;
      }
      .topic_path ul li:last-child {
            margin-right: 20px;
      }
}
/* コンテナ
============================================================================================================ */
#container {
      position: relative;
      font-size: 1.6rem;
      padding-top: 90px;
}
@media screen and (max-width: 960px) {
      #container {
            font-size: 1.5rem;
            padding-top: 55px;
      }
}
/* お知らせセット
============================================================================================================ */
/*公社からのお知らせ
----------------------------------------------------------------------------------------------------------------------------------------------------*/
.info_list > li:nth-child(even) {
      background: var(--bg_gray_l);
}
.info_list > li:first-child {
      border-top: 1px solid var(--bg_gray_ll);
}
.info_list > li a .text_box ,.info_list > li  .text_box a{
      text-decoration: underline;
      color: var(--col_blue);
}
.info_list_inner {
      display: flex;
      gap: 0 2%;
      padding: 1.5em 1.5em;
      border-bottom: 1px solid var(--bg_gray_ll);
}
.info_list_inner_date {
      display: flex;
      gap: 0 2%;
      align-items: flex-start;
      width: 16em;
}
.info_list_inner_date >* {
      width: 7em;
}
.info_cate  >* {
	display: block;
	border: solid 1px var(--col_cate);
      background: var(--col_cate);
      border-radius: var(--rudius_pc);
      padding: 0.2em 0.2em 0.2em 0.2em;
      line-height: 1.2;
      color: #fff;
    transition: all 0.15s ease;
      text-align: center;
}

.info_list_inner .info_cate {
      width: calc(100% - 7em);
      /*カテゴリ色変数 col_cate*/
}
.info_cate span {
      font-size: 0.8em;
}
.info_list_inner .text_box {
      width: calc(100% - 16em);
}
@media screen and (min-width: 961px), print {
      .info_list > li a:hover .text_box, .info_list > li .text_box a:hover {
            text-decoration: none;
      }
	.info_cate > a:hover {
			   color: var(--col_cate);
		   background: #fff;
	}

}
@media screen and (max-width: 680px) {
      .info_list_inner {
            display: block;
            padding: 1.2em 1.3em;
      }
      .info_list_inner_date {
            width: auto;
            margin-bottom: 0.7em;
      }
      .info_list_inner .info_cate {
            width: auto;
            padding: 0em 0.5em 0.2em 0.5em;
            min-width: 8em;
            line-height: 1.5;
      }
      .info_list_inner .text_box {
            width: auto;
      }
}
/*cateなし*/
.info_list_inner.no_cate .info_list_inner_date {
      width: 7em;
}
.info_list_inner.no_cate .text_box {
      width: calc(100% - 7em);
}
@media screen and (max-width: 680px) {
      .info_list_inner.no_cate .text_box {
            width: auto;
      }
}
/*cate　色別*/
.all_catecol {
      --col_cate: var(--col_btn_back);
}
.press-release_catecol{
      --col_cate: var(--col_blue_l);
}
.info_catecol {
      --col_cate: var(--col_green_l);
}
.event_catecol {
      --col_cate: var(--col_yellow);
}
.recruit_catecol {
      --col_cate: var(--col_green_b);
}
.ir_catecol {
      --col_cate: var(--col_pup);
}

/*カードデザイン
============================================================================================================ */
.action_card_list {
      display: flex;
      gap: 1em 1%;
}
.action_card_list li {
      width: calc(100% / 5);
}
/*action_card_list_inner
------------------------------------------------------------*/
.action_card_list_inner {
      background: #fff;
      padding: 1em;
      box-shadow: var(--box_shadow);
}
.action_card_list_inner .text_box {
      margin-top: 1em;
}
.action_card_list_inner .img img {
      width: 100%;
}