@charset "UTF-8";
/* Zen Kaku Gothic Antique */
/* Montserrat */
/* 【ホバーアクション】下線が出てくる
  ・aタグにhov_lineをつける
  ・白線の場合hov_line_white
---------------------------------------------------------- */
.hov_line, .hov_line_white {
  position: relative;
  display: inline-block;
}
.hov_line::before, .hov_line_white::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #3D434E;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
@media (hover: hover) {
  .hov_line:hover::before, .hov_line_white:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}

.hov_line_white::before {
  background-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

body {
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #3D434E;
}

a img {
  border: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul,
li,
ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

input,
label,
select,
textarea {
  vertical-align: middle;
}

button {
  color: unset;
  background-color: unset;
  border: none;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

/* 共通スタイル
---------------------------------------------------------- */
body {
  font-optical-sizing: auto;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #3D434E;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (min-width: 751px) {
  body {
    font-size: 16px;
  }
}

/* インナー
---------------------------------------------------------- */
.inner {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
}
@media all and (min-width: 751px) {
  .inner {
    padding: 0 83px;
  }
}

/* 表示 非表示
---------------------------------------------------------- */
.forSP {
  display: block;
}
@media all and (min-width: 751px) {
  .forSP {
    display: none;
  }
}

.forPC {
  display: none;
}
@media all and (min-width: 751px) {
  .forPC {
    display: block;
  }
}

/* 位置
---------------------------------------------------------- */
.center {
  text-align: center;
}

p {
  line-height: 2;
}

/* パンくず
---------------------------------------------------------- */
.breadcrumb {
  margin: 20px 0 85px;
}
@media all and (min-width: 751px) {
  .breadcrumb {
    margin: 20px 0 100px;
  }
}
.breadcrumb .breadcrumb_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb .breadcrumb_list .breadcrumb_item {
  font-size: 12px;
  line-height: 1.83;
  color: #9EA1A5;
  /* 斜めの線 /  */
}
@media all and (min-width: 751px) {
  .breadcrumb .breadcrumb_list .breadcrumb_item {
    font-size: 14px;
  }
}
.breadcrumb .breadcrumb_list .breadcrumb_item.line {
  padding: 0 6px;
}
@media all and (min-width: 751px) {
  .breadcrumb .breadcrumb_list .breadcrumb_item.line {
    padding: 0 6px 0 8px;
  }
}

/* 一覧ボタン
---------------------------------------------------------- */
.all_btn {
  padding: 17px 70px 17px 54px;
  display: inline-block;
  position: relative;
  border: 1px solid #3D434E;
  border-radius: 50px;
  font-size: 15px;
  font-weight: bold;
}
@media all and (min-width: 751px) {
  .all_btn {
    padding: 22px 88px 22px 70px;
    font-size: 18px;
  }
}
@media all and (min-width: 1350px) {
  .all_btn {
    padding: 22px 58px 22px 70px;
    width: min(271px, 93.5%);
  }
}
.all_btn::before, .all_btn::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.all_btn::before {
  background-image: url(../images/common/more_btn_parts.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 32px;
  width: 10px;
  height: 10px;
}
@media all and (min-width: 751px) {
  .all_btn::before {
    left: 40px;
    width: 15px;
    height: 15px;
  }
}
.all_btn::after {
  background-color: #3D434E;
  border-radius: 50%;
  right: 32px;
  width: 6px;
  height: 6px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .all_btn::after {
    right: 40px;
    width: 8px;
    height: 8px;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .all_btn:hover::after {
    background-image: url(../images/common/more_btn_arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 32px;
    height: 32px;
    right: 28px;
  }
}

/* ボタン
---------------------------------------------------------- */
.more_btn {
  padding: 18px 50px 18px 20px;
  display: inline-block;
  position: relative;
  border: 1px solid #3D434E;
  border-radius: 50px;
  font-size: 13px;
  font-weight: bold;
  width: min(335px, 100%);
}
@media all and (min-width: 751px) {
  .more_btn {
    padding: 21px 87px 21px 40px;
    font-size: 18px;
    width: min(411px, 100%);
  }
}
.more_btn::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #3D434E;
  border-radius: 50%;
  right: 32px;
  width: 6px;
  height: 6px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .more_btn::after {
    right: 40px;
    width: 8px;
    height: 8px;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .more_btn:hover::after {
    background-image: url(../images/common/more_btn_arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 32px;
    height: 32px;
    right: 28px;
  }
}

/* 下層ページ　ファーストビュー　画像あり
---------------------------------------------------------- */
.image_fv {
  overflow: hidden;
  background-color: #F3F7EF;
  margin: 0 calc(50% - 50vw);
  padding: 22px calc(50vw - 50%) 40px;
  border-radius: 0 0 30px 30px;
}
@media all and (min-width: 751px) {
  .image_fv {
    padding: 47px calc(50vw - 50%) 111px;
    border-radius: 0 0 50px 50px;
  }
}
.image_fv .mv_image {
  margin: 0 auto;
  position: relative;
  width: min(1200px, 100%);
}
.image_fv .mv_image img {
  border-radius: 20px;
}
.image_fv .fv_ttl {
  padding: 20px 0 0;
  display: inline-block;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media all and (min-width: 751px) {
  .image_fv .fv_ttl {
    padding: 4.34% 0 5.34% 11.6%;
    background-color: #F3F7EF;
    border-radius: 200px 0 0 0;
    position: absolute;
    bottom: -21%;
    right: 0;
    font-size: 4.1vw;
  }
}
@media all and (min-width: 1366px) {
  .image_fv .fv_ttl {
    padding: 52px 0 64px 139px;
    font-size: 56px;
  }
}

.text_fv {
  padding: 44px 0 40px;
  background-color: #F3F7EF;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
@media all and (min-width: 751px) {
  .text_fv {
    padding: 110px 0 80px;
    border-radius: 0 0 50px 50px;
  }
}
.text_fv .fv_ttl {
  position: relative;
  display: inline-block;
  font-size: 28px;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.4;
}
@media all and (min-width: 751px) {
  .text_fv .fv_ttl {
    font-size: 56px;
    line-height: 1.38;
  }
}
.text_fv .fv_ttl::after {
  position: absolute;
  content: "";
  background-color: #3D434E;
  width: 100vw;
  height: 1px;
  top: 50%;
  left: 100%;
  -webkit-transform: translateX(20px) translateY(-50%);
          transform: translateX(20px) translateY(-50%);
}
@media all and (min-width: 751px) {
  .text_fv .fv_ttl::after {
    -webkit-transform: translateX(80px) translateY(-50%);
            transform: translateX(80px) translateY(-50%);
  }
}

/* 下層ページ　セクションタイトル
---------------------------------------------------------- */
.sec_ttl {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media all and (min-width: 751px) {
  .sec_ttl {
    margin-bottom: 60px;
    font-size: 36px;
  }
}

/* スライドショー
---------------------------------------------------------- */
@media all and (min-width: 751px) {
  .splide__list .splide__slide .image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

/* 矢印を非表示 */
.splide__arrows {
  display: none;
}

/* 新着情報
---------------------------------------------------------- */
.information_list .information_item {
  border-bottom: 1px solid #D0D3CE;
}
.information_list .information_item:first-child {
  border-top: 1px solid #D0D3CE;
}
.information_list .information_item a {
  display: block;
  padding: 35px 0;
}
@media all and (min-width: 751px) {
  .information_list .information_item a {
    padding: 44px 0 48px;
  }
}
@media (hover: hover) {
  .information_list .information_item a:hover .information_ttl {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}

/* カテゴリーと日付 */
.cate_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* カテゴリー */
  /* 日付 */
}
.cate_date .cate {
  padding: 5px 10px;
  border: 1px solid #3D434E;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  /* 特別養護老人ホーム */
  /* いきいきサポートセンター */
  /* ショートステイ */
  /* ショートステイ */
  /* デイサービス */
  /* 採用情報 */
}
@media all and (min-width: 751px) {
  .cate_date .cate {
    padding: 4px 10px;
    font-size: 14px;
  }
}
.cate_date .cate.special_nursing_home {
  color: #F27089;
  border: 1px solid #F27089;
}
.cate_date .cate.support_center {
  color: #EF7B31;
  border: 1px solid #EF7B31;
}
.cate_date .cate.elderly_nursing_home {
  color: #4AB155;
  border: 1px solid #4AB155;
}
.cate_date .cate.short_stay {
  color: #00AEC8;
  border: 1px solid #00AEC8;
}
.cate_date .cate.day_service {
  color: #8292D8;
  border: 1px solid #8292D8;
}
.cate_date .cate.recruit {
  color: #86B401;
  border: 1px solid #86B401;
}
.cate_date .date {
  font-size: 14px;
}
@media all and (min-width: 751px) {
  .cate_date .date {
    font-size: 16px;
  }
}

/* 新着情報タイトル */
.information_ttl {
  margin-top: 20px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .information_ttl {
    font-size: 18px;
    line-height: 1.8;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* 他のページに表示する新着情報
---------------------------------------------------------- */
@media all and (min-width: 1131px) {
  .information_contents {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media all and (min-width: 1131px) {
  .information_contents .details {
    width: 66.75%;
  }
}
.information_contents .all_btn {
  margin-top: 45px;
}
@media all and (min-width: 1131px) {
  .information_contents .all_btn {
    margin-top: 0;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

/* ページナビ
---------------------------------------------------------- */
.wp-pagenavi {
  position: relative;
  margin-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* 現在のページ番号 */
  /* それ以外のページ番号 */
  /* 前へと次へ共通 */
  /* 前へ */
  /* 次へ */
}
@media all and (min-width: 751px) {
  .wp-pagenavi {
    margin-top: 100px;
    text-align: center;
  }
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi span, .wp-pagenavi a {
  padding: 0;
  margin: 0 12px;
  border: none;
  font-size: 13px;
}
@media all and (min-width: 751px) {
  .wp-pagenavi span, .wp-pagenavi a {
    font-size: 18px;
  }
}
.wp-pagenavi a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.wp-pagenavi .current {
  color: #3D434E;
}
.wp-pagenavi .page {
  color: #9EA1A5;
}
@media (hover: hover) {
  .wp-pagenavi .page:hover {
    color: #3D434E;
  }
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: absolute;
  background-image: url(../images/information/ico_information_arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 48px;
  height: 48px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
}
@media all and (min-width: 751px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 70px;
    height: 70px;
  }
}
.wp-pagenavi .previouspostslink {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
@media (hover: hover) {
  .wp-pagenavi .previouspostslink:hover {
    left: -10px;
  }
}
.wp-pagenavi .nextpostslink {
  right: 0;
}
@media (hover: hover) {
  .wp-pagenavi .nextpostslink:hover {
    right: -10px;
  }
}

/* PDFなどのファイル　ダウンロードボタン
---------------------------------------------------------- */
.download_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}
@media all and (min-width: 751px) {
  .download_wrap {
    row-gap: 20px;
  }
}
.download_wrap .wp-block-file {
  width: 100%;
}
@media all and (min-width: 751px) {
  .download_wrap .wp-block-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (min-width: 1000px) {
  .download_wrap .wp-block-file {
    width: calc((100% - 20px) / 2);
  }
}
.download_wrap .wp-block-file a:not(.wp-block-file__button) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* ファイル */
.wp-block-file {
  /* 設定したデータが表示されてしまうため非表示 */
  /* デフォルトでつくダウンロードボタン非表示 */
}
.wp-block-file .wp-block-file__embed {
  display: none;
}
.wp-block-file a:not(.wp-block-file__button) {
  padding: 18px 60px 18px 20px;
  position: relative;
  display: block;
  border: 1px solid #3D434E;
  border-radius: 35px;
  font-size: 13px;
  font-weight: bold;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .wp-block-file a:not(.wp-block-file__button) {
    padding: 21px 89px 21px 30px;
    font-size: 18px;
  }
}
.wp-block-file a:not(.wp-block-file__button)::after {
  content: "";
  position: absolute;
  background-image: url(../images/about/ico_pdf.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 23px;
  height: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
@media all and (min-width: 751px) {
  .wp-block-file a:not(.wp-block-file__button)::after {
    width: 29px;
    height: 29px;
    right: 30px;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .wp-block-file a:not(.wp-block-file__button):hover {
    background-color: #3D434E;
    color: #fff;
  }
  .wp-block-file a:not(.wp-block-file__button):hover::after {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.wp-block-file .wp-block-file__button {
  display: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* アニメーション
---------------------------------------------------------- */
@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeRightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideToRight {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes slideToRight {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@-webkit-keyframes slideToLeft {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes slideToLeft {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0);
  }
}
.fadeUp {
  -webkit-animation: fadeUpAnime 1.5s forwards;
          animation: fadeUpAnime 1.5s forwards;
  opacity: 0;
}

.fadeLeft {
  -webkit-animation: fadeLeftAnime 1.5s forwards;
          animation: fadeLeftAnime 1.5s forwards;
  opacity: 0;
}

.fadeRight {
  -webkit-animation: fadeRightAnime 1.5s forwards;
          animation: fadeRightAnime 1.5s forwards;
  opacity: 0;
}

.fadeIn {
  -webkit-animation: fadeInAnime 1.5s forwards;
          animation: fadeInAnime 1.5s forwards;
  opacity: 0;
}

.delay02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay08 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay10 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@media all and (min-width: 751px) {
  .delay02_pc {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .delay04_pc {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .delay06_pc {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .delay08_pc {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
}
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeInTrigger {
  opacity: 0;
}

.delayScroll > * {
  opacity: 0;
}

/* ==========================================================================//
//
// ヘッダー
//
// ========================================================================== */
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  height: 78px;
  background-color: #F3F7EF;
}
@media all and (min-width: 751px) {
  .header {
    height: 99px;
  }
}
.header .header_top {
  position: fixed;
  z-index: 9999;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* ロゴ */
  /* ハンバーガーメニュー 閉じている時 */
}
@media all and (max-width: 750px) {
  .header .header_top {
    padding: 27px 20px 0;
  }
}
@media all and (min-width: 751px) {
  .header .header_top {
    padding: 34px 53px 20px;
  }
}
.header .header_top .logo {
  width: 157px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .header .header_top .logo {
    width: 252px;
  }
}
@media all and (min-width: 1000px) {
  .header .header_top .logo.logo_on {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.header .header_top .openbtn {
  position: fixed;
  z-index: 9999;
  border: 1px solid #3D434E;
  border-radius: 50%;
  right: 20px;
  width: 38px;
  height: 38px;
  /* 開いた時 */
}
@media all and (min-width: 751px) {
  .header .header_top .openbtn {
    right: 53px;
    width: 48px;
    height: 48px;
    cursor: pointer;
  }
}
.header .header_top .openbtn span {
  position: absolute;
  background-color: #3D434E;
  width: 8px;
  height: 1px;
  top: 14px;
  left: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .header .header_top .openbtn span {
    width: 10px;
    top: 18px;
  }
}
.header .header_top .openbtn span:nth-child(2) {
  top: 18px;
}
@media all and (min-width: 751px) {
  .header .header_top .openbtn span:nth-child(2) {
    top: 23px;
  }
}
.header .header_top .openbtn span:nth-child(3) {
  top: 22px;
}
@media all and (min-width: 751px) {
  .header .header_top .openbtn span:nth-child(3) {
    top: 28px;
  }
}
.header .header_top .openbtn.navOpen span {
  top: 18px;
  left: 33%;
  width: 12px;
  height: 1px;
}
@media all and (min-width: 751px) {
  .header .header_top .openbtn.navOpen span {
    top: 24px;
    left: 34%;
    width: 15px;
    height: 1px;
  }
}
.header .header_top .openbtn.navOpen span:nth-child(1) {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.header .header_top .openbtn.navOpen span:nth-child(2) {
  opacity: 0;
}
.header .header_top .openbtn.navOpen span:nth-child(3) {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.header .header_top.hidden .logo {
  opacity: 0;
}
.header .header_top.hidden .openbtn span:nth-child(1) {
  -webkit-transform: translateY(-50%) rotate(-24deg);
          transform: translateY(-50%) rotate(-24deg);
}
.header .header_top.hidden .openbtn span:nth-child(2) {
  -webkit-transform: translateY(-50%) rotate(24deg);
          transform: translateY(-50%) rotate(24deg);
}
.header .header_top.hidden .openbtn span::before, .header .header_top.hidden .openbtn span::after {
  background-color: #fff;
}
.header #gNav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  mix-blend-mode: normal;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .header #gNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header #gNav.panelactive {
  opacity: 1;
  visibility: visible;
  z-index: 998;
}
.header #gNav .gnav_inner {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 98px 20px;
}
@media all and (min-width: 751px) {
  .header #gNav .gnav_inner {
    position: relative;
    width: 60%;
    height: auto;
    padding: 0 0 0 10.4%;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .header #gNav .gnav_inner {
    width: 86%;
  }
}
.header #gNav .nav {
  margin-bottom: 30px;
  /* ttlクラスがついたaタグ */
  /* ホーム */
  /* nav_list */
  /* sub_list */
}
@media all and (min-width: 751px) {
  .header #gNav .nav {
    margin-bottom: 50px;
  }
}
.header #gNav .nav .ttl {
  position: relative;
  display: block;
  /* 矢印 */
}
@media all and (max-width: 750px) {
  .header #gNav .nav .ttl::after {
    content: "";
    position: absolute;
    background-image: url(../images/common/icon/ico_nav_arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 10px;
    height: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
}
@media all and (min-width: 751px) {
  .header #gNav .nav .ttl {
    display: inline-block;
  }
  .header #gNav .nav .ttl::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: #3D434E;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .header #gNav .nav .ttl span {
    font-weight: 500;
    color: #3D434E;
  }
}
@media all and (min-width: 751px) and (min-width: 751px) {
  .header #gNav .nav .ttl span {
    font-size: 18px;
  }
}
@media screen and (min-width: 751px) and (min-width: 1000px) and (max-width: 1263px) {
  .header #gNav .nav .ttl span {
    font-size: 1.32vw;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .header #gNav .nav .ttl:hover::before {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
@media all and (max-width: 750px) {
  .header #gNav .nav .home {
    border-top: 1px solid rgba(61, 67, 78, 0.2);
    border-bottom: 1px solid rgba(61, 67, 78, 0.2);
  }
}
@media all and (max-width: 750px) {
  .header #gNav .nav .home a {
    padding: 21px 0;
  }
}
@media all and (min-width: 751px) {
  .header #gNav .nav .home a {
    margin-bottom: 44px;
  }
}
.header #gNav .nav .nav_list {
  /* sub_listがあるnav_item */
  /* 縦並びにするnav_item */
}
@media all and (min-width: 751px) {
  .header #gNav .nav .nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media all and (min-width: 751px) {
  .header #gNav .nav .nav_list:nth-of-type(2) {
    margin-top: 44px;
  }
}
@media all and (min-width: 751px) {
  .header #gNav .nav .nav_list .nav_item {
    width: calc((100% - 55px) / 3);
  }
}
@media all and (max-width: 750px) {
  .header #gNav .nav .nav_list .nav_item {
    border-bottom: 1px solid rgba(61, 67, 78, 0.2);
  }
}
@media all and (max-width: 750px) {
  .header #gNav .nav .nav_list .nav_item a {
    padding: 21px 0;
  }
}
.header #gNav .nav .nav_list .add_btn {
  position: relative;
}
@media all and (min-width: 751px) {
  .header #gNav .nav .nav_list .add_btn .ttl {
    margin-bottom: 16px;
  }
}
.header #gNav .nav .nav_list .add_btn .ttl::after {
  display: none;
}
@media all and (min-width: 751px) {
  .header #gNav .nav .nav_list .add_btn .plus_btn {
    display: none;
  }
}
@media all and (max-width: 750px) {
  .header #gNav .nav .nav_list .add_btn .plus_btn {
    position: absolute;
    width: 43px;
    height: 63px;
    top: 0;
    right: 0;
    z-index: 99999;
  }
  .header #gNav .nav .nav_list .add_btn .plus_btn::before, .header #gNav .nav .nav_list .add_btn .plus_btn::after {
    content: "";
    position: absolute;
    background-color: #3D434E;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .header #gNav .nav .nav_list .add_btn .plus_btn::before {
    width: 10px;
    height: 1px;
    right: 0;
  }
  .header #gNav .nav .nav_list .add_btn .plus_btn::after {
    background-image: none;
    width: 1px;
    height: 10px;
    right: 11%;
  }
  .header #gNav .nav .nav_list .add_btn .plus_btn.open::before {
    -webkit-transform: translateY(-50%) rotate(-180deg);
            transform: translateY(-50%) rotate(-180deg);
  }
  .header #gNav .nav .nav_list .add_btn .plus_btn.open::after {
    -webkit-transform: translateY(-50%) rotate(-90deg);
            transform: translateY(-50%) rotate(-90deg);
  }
}
.header #gNav .nav .nav_list .wrap_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (min-width: 751px) {
  .header #gNav .nav .nav_list .wrap_item a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .header #gNav .nav .nav_list .wrap_item a:nth-child(2) {
    margin-top: 36px;
  }
}
@media all and (max-width: 750px) {
  .header #gNav .nav .nav_list .wrap_item a:nth-child(1) {
    border-bottom: 1px solid rgba(61, 67, 78, 0.2);
  }
}
@media all and (min-width: 751px) {
  .header #gNav .nav .sub_list {
    display: block;
  }
}
@media all and (max-width: 750px) {
  .header #gNav .nav .sub_list {
    display: none;
  }
}
@media all and (max-width: 750px) {
  .header #gNav .nav .sub_list .sub_item {
    border-top: 1px solid rgba(61, 67, 78, 0.08);
  }
}
.header #gNav .nav .sub_list .sub_item a {
  padding: 21px 0 21px 20px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-size: 12px;
  color: #5E6674;
}
@media all and (min-width: 751px) {
  .header #gNav .nav .sub_list .sub_item a {
    padding: 4px 0;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1263px) {
  .header #gNav .nav .sub_list .sub_item a {
    font-size: 0.88vw;
  }
}
@media (hover: hover) {
  .header #gNav .nav .sub_list .sub_item a:hover {
    opacity: 0.6;
  }
}
.header #gNav .gnav_img {
  display: none;
}
@media all and (min-width: 1000px) {
  .header #gNav .gnav_img {
    display: block;
    position: relative;
    width: 36%;
    height: 100%;
  }
  .header #gNav .gnav_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* ==========================================================================//
//
// フッター
//
// ========================================================================== */
.footer {
  margin: 95px 0 0;
  padding: 60px 0 16px;
  background-color: #F3F7EF;
  border-radius: 30px 30px 0 0;
}
@media all and (min-width: 751px) {
  .footer {
    padding: 80px 0 64px;
    margin: 160px 0 0;
    border-radius: 50px 50px 0 0;
  }
}
@media all and (min-width: 1300px) {
  .footer .inner {
    padding: 0;
  }
}
.footer .footer_contents {
  margin-inline: auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 10px;
}
@media all and (min-width: 751px) {
  .footer .footer_contents {
    padding: 80px 75px;
    width: min(1258px, 100%);
  }
}
@media screen and (min-width: 900px) and (max-width: 980px) {
  .footer .footer_contents {
    padding: 60px 45px;
  }
}
.footer .footer_contents .footer_list_contents {
  margin-bottom: 40px;
}
@media all and (min-width: 751px) {
  .footer .footer_contents .footer_list_contents {
    margin-bottom: 84px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 751px) and (max-width: 899px) {
  .footer .footer_contents .footer_list_contents {
    display: block;
  }
}
.footer .footer_contents .footer_list_contents .footer_list {
  /* 開閉ボタン付きのメニュー */
}
@media all and (min-width: 900px) {
  .footer .footer_contents .footer_list_contents .footer_list {
    width: calc((100% - 6px) / 3);
  }
}
@media all and (max-width: 750px) {
  .footer .footer_contents .footer_list_contents .footer_list:not(:first-child) {
    margin-top: 16px;
  }
}
@media screen and (min-width: 751px) and (max-width: 899px) {
  .footer .footer_contents .footer_list_contents .footer_list:not(:first-child) {
    margin-top: 28px;
  }
}
.footer .footer_contents .footer_list_contents .footer_list .menu_item:not(:first-child) {
  margin-top: 16px;
}
@media all and (min-width: 751px) {
  .footer .footer_contents .footer_list_contents .footer_list .menu_item:not(:first-child) {
    margin-top: 28px;
  }
}
.footer .footer_contents .footer_list_contents .footer_list .menu_item a {
  padding-left: 30px;
  position: relative;
  font-size: 13px;
  font-weight: bold;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .footer .footer_contents .footer_list_contents .footer_list .menu_item a {
    padding-left: 33px;
    font-size: 16px;
  }
}
.footer .footer_contents .footer_list_contents .footer_list .menu_item a::before {
  position: absolute;
  content: "";
  background-color: #D0D3CE;
  border-radius: 6px;
  width: 15px;
  height: 7px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .footer .footer_contents .footer_list_contents .footer_list .menu_item a::before {
    width: 18px;
    height: 9px;
  }
}
@media (hover: hover) {
  .footer .footer_contents .footer_list_contents .footer_list .menu_item a:hover {
    opacity: 0.6;
  }
}
@media all and (max-width: 750px) {
  .footer .footer_contents .footer_list_contents .footer_list .add_btn {
    position: relative;
    display: inline-block;
    /* detail_list開閉ボタン */
  }
  .footer .footer_contents .footer_list_contents .footer_list .add_btn .btn {
    position: absolute;
    width: 14px;
    height: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -29px;
  }
  .footer .footer_contents .footer_list_contents .footer_list .add_btn .btn::after {
    position: absolute;
    content: "";
    background-image: url(../images/common/icon/ico_footer_arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 14px;
    height: 9px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .footer .footer_contents .footer_list_contents .footer_list .add_btn .btn.btnOpen::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
            transform: translateY(-50%) rotate(-180deg);
  }
}
.footer .footer_contents .footer_list_contents .detail_list {
  margin-top: 15px;
}
@media all and (min-width: 751px) {
  .footer .footer_contents .footer_list_contents .detail_list {
    margin-top: 32px;
  }
}
@media all and (max-width: 750px) {
  .footer .footer_contents .footer_list_contents .detail_list {
    display: none;
  }
}
.footer .footer_contents .footer_list_contents .detail_list .detail_item:not(:first-child) {
  margin-top: 10px;
  font-size: 13px;
}
@media all and (min-width: 751px) {
  .footer .footer_contents .footer_list_contents .detail_list .detail_item:not(:first-child) {
    margin-top: 16px;
  }
}
.footer .footer_contents .footer_list_contents .detail_list .detail_item a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .footer .footer_contents .footer_list_contents .detail_list .detail_item a {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .footer .footer_contents .footer_list_contents .detail_list .detail_item a:hover {
    opacity: 0.6;
  }
}
.footer .footer_contents .footer_bottom_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (max-width: 750px) {
  .footer .footer_contents .footer_bottom_contents .left_contents .logo {
    width: 79.3%;
  }
}
.footer .footer_contents .footer_bottom_contents .left_contents .logo a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (hover: hover) {
  .footer .footer_contents .footer_bottom_contents .left_contents .logo a:hover {
    opacity: 0.6;
  }
}
.footer .footer_contents .footer_bottom_contents .left_contents .copyright {
  padding-top: 20px;
  font-size: 10px;
  color: #D0D3CE;
}
@media all and (min-width: 751px) {
  .footer .footer_contents .footer_bottom_contents .left_contents .copyright {
    font-size: 12px;
  }
}
@media all and (min-width: 751px) {
  .footer .footer_contents .footer_bottom_contents .right_contents {
    padding-right: 8px;
  }
}
.footer .footer_contents .footer_bottom_contents .right_contents a img {
  width: 36px;
  height: 36px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .footer .footer_contents .footer_bottom_contents .right_contents a img {
    width: 50px;
    height: 50px;
  }
}
@media (hover: hover) {
  .footer .footer_contents .footer_bottom_contents .right_contents a:hover img {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
/*# sourceMappingURL=style2.css.map */