@charset "UTF-8";
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 変数の定義
--------------------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* 色のクラス
--------------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #111111;
}

.green {
  color: #006335;
}

.orange {
  color: #FFA322;
}

/* フォントの定義
--------------------------------------------------*/
html,
body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
table,
tr,
th,
td,
a,
figure {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #111111;
}

body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
a,
table,
tr,
th,
td,
figure {
  font-size: 1.6rem;
}
@media screen and (max-width: 999px) {
  body,
  ul,
  ol,
  dl,
  li,
  dt,
  dd,
  p,
  div,
  img,
  svg,
  a,
  table,
  tr,
  th,
  td,
  figure {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 700;
}

.en {
  font-family: "Lato", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}

.zen {
  font-family: "Zen Kaku Gothic Antique", serif;
  letter-spacing: 0.1em;
}

.list_nav li a {
  font-family: "Zen Kaku Gothic Antique", serif;
}

/* 共通
--------------------------------------------------*/
body {
  word-break: break-word;
}

a {
  transition-duration: 0.3s;
  animation-timing-function: ease-out;
}

span {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* ヘッダー
--------------------------------------------------*/
header {
  position: absolute;
  top: 30px;
  left: 3%;
  display: flex;
  width: 94%;
  gap: 5vw;
  justify-content: space-between;
  align-items: center;
  height: auto;
  z-index: 99;
  padding-bottom: 25px;
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 1399px) {
  header {
    gap: 2vw;
  }
}
@media screen and (max-width: 999px) {
  header {
    position: fixed;
    top: 20px;
    left: 2.5%;
    width: 95%;
    padding-bottom: 20px;
    border-bottom: none;
  }
}
@media screen and (max-width: 449px) {
  header {
    left: 0;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
header .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
header .logo .mark {
  width: 180px;
}
@media screen and (max-width: 1399px) {
  header .logo .mark {
    width: clamp(113px, 12.85vw, 12.85vw);
  }
}
@media screen and (max-width: 999px) {
  header .logo .mark {
    width: 140px;
  }
}
@media screen and (max-width: 768px) {
  header .logo .mark {
    width: 100px;
  }
}
header .logo .mark img {
  width: 100%;
  height: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
header .nav_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1399px) {
  header .nav_head {
    gap: 2vw;
  }
}
header .nav_head .list_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 2vw;
  border-radius: 60px;
  gap: 2vw;
}
@media screen and (max-width: 1399px) {
  header .nav_head .list_nav {
    gap: 1vw;
  }
}
@media screen and (max-width: 999px) {
  header .nav_head .list_nav {
    display: none;
  }
}
header .nav_head .list_nav li,
header .nav_head .list_nav a {
  transition-duration: 0.3s;
  animation-timing-function: ease-out;
  font-size: 1.4rem;
  letter-spacing: 0.12rem;
  font-weight: 500;
}
@media screen and (max-width: 1399px) {
  header .nav_head .list_nav li,
  header .nav_head .list_nav a {
    font-size: clamp(1.2rem, 1vw, 1vw);
  }
}
header .nav_head .list_nav a:hover {
  color: #006335;
}
header .nav_head .btn {
  background: #FFA322;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  height: 40px;
  width: auto;
  border-radius: 100vh;
}
@media screen and (max-width: 449px) {
  header .nav_head .btn {
    padding: 8px 16px;
  }
}
header .nav_head .btn .txt {
  font-weight: 500;
}
@media screen and (max-width: 449px) {
  header .nav_head .btn .txt {
    font-size: 1.2rem;
  }
}
header .nav_head .btn:hover {
  transform: scale(1.05);
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* フッター
--------------------------------------------------*/
footer {
  background-color: #F4F4F4;
  padding: 60px 0;
  overflow: hidden;
}
@media screen and (max-width: 449px) {
  footer {
    padding: 40px 0;
  }
}
@media screen and (max-width: 999px) {
  footer .w1200 {
    width: 94.28%;
  }
}
footer .wrap_footer {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 999px) {
  footer .wrap_footer {
    flex-direction: column;
  }
}
footer .wrap_footer > .left {
  padding-right: 140px;
  padding-top: 30px;
  padding-bottom: 50px;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  min-width: 376px;
}
@media screen and (max-width: 999px) {
  footer .wrap_footer > .left {
    width: 100%;
    padding: 0 20px 40px;
    border-right: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }
}
footer .wrap_footer > .left .logo {
  text-align: center;
  width: 200px;
}
@media screen and (max-width: 999px) {
  footer .wrap_footer > .left .logo {
    width: 100%;
  }
}
@media screen and (max-width: 999px) {
  footer .wrap_footer > .left .logo img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
    width: 40vw;
  }
}
@media screen and (max-width: 449px) {
  footer .wrap_footer > .left .logo img {
    margin: 0;
  }
}
footer .wrap_footer > .left .list_links {
  margin-top: 30px;
  opacity: 0.6;
}
@media screen and (max-width: 999px) {
  footer .wrap_footer > .left .list_links {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}
@media screen and (max-width: 449px) {
  footer .wrap_footer > .left .list_links {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
    margin-top: 20px;
  }
}
footer .wrap_footer > .left .list_links li:not(:last-child) {
  margin-bottom: 6px;
}
footer .wrap_footer > .left .list_links li,
footer .wrap_footer > .left .list_links a {
  color: #111111;
  font-size: 1.4rem;
  margin-top: 10px;
}
@media screen and (max-width: 999px) {
  footer .wrap_footer > .left .list_links li,
  footer .wrap_footer > .left .list_links a {
    margin-top: 3px;
  }
}
@media screen and (max-width: 449px) {
  footer .wrap_footer > .left .list_links li,
  footer .wrap_footer > .left .list_links a {
    font-size: 1.2rem;
  }
}
footer .wrap_footer > .left .list_links li:first-child,
footer .wrap_footer > .left .list_links a:first-child {
  margin-top: 0;
}
footer .wrap_footer > .left .list_links a {
  position: relative;
}
footer .wrap_footer > .left .list_links a:hover {
  opacity: 0.6;
}
footer .wrap_footer > .left .list_links a.blank::after {
  transition-duration: 0.3s;
  animation-timing-function: ease-out;
  content: "";
  display: inline-block;
  background-image: url(/test_mtrad_corp/wp/img/lp/kaigo_fukushi-lp/link_icon_gray.svg);
  width: 10px;
  height: 10px;
}
footer .wrap_footer > .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 30px;
  padding-left: 80px;
}
@media screen and (max-width: 999px) {
  footer .wrap_footer > .right {
    display: block;
    width: 100%;
    padding: 40px 20px 0;
  }
}
footer .wrap_footer > .right .nav_foot .list_nav_foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 999px) {
  footer .wrap_footer > .right .nav_foot .list_nav_foot {
    justify-content: center;
  }
}
@media screen and (max-width: 449px) {
  footer .wrap_footer > .right .nav_foot .list_nav_foot {
    justify-content: flex-start;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
footer .wrap_footer > .right .nav_foot .list_nav_foot li a {
  font-size: 1.4rem;
}
@media screen and (max-width: 449px) {
  footer .wrap_footer > .right .nav_foot .list_nav_foot li a {
    font-size: 1.2rem;
  }
}
footer .wrap_footer > .right .nav_foot .list_nav_foot li a:hover {
  color: #006335;
}
footer .wrap_footer > .right .wrap_bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 999px) {
  footer .wrap_footer > .right .wrap_bottom {
    align-items: center;
  }
}
@media screen and (max-width: 449px) {
  footer .wrap_footer > .right .wrap_bottom {
    align-items: flex-start;
  }
}
footer .wrap_footer > .right .wrap_bottom .badge {
  display: flex;
  gap: 10px;
}
footer .wrap_footer > .right .wrap_bottom .badge img {
  width: 90px;
  border-radius: 0;
}
@media screen and (max-width: 999px) {
  footer .wrap_footer > .right .wrap_bottom .badge img {
    width: 60px;
  }
}
@media screen and (max-width: 449px) {
  footer .wrap_footer > .right .wrap_bottom .badge img {
    width: 13.33vw;
  }
}
footer .wrap_footer > .right .wrap_bottom .small {
  font-size: 1rem;
}

/* 流用パーツ
--------------------------------------------------*/
.pc-view {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc-view {
    display: block;
  }
}

.sp-view {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp-view {
    display: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
  br.tab {
    display: none;
  }
}
br.pc-view {
  display: none;
}
@media screen and (min-width: 769px) {
  br.pc-view {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 850px) {
  br.pc-view.blank {
    display: none;
  }
}
br.xl-view {
  display: none;
}
@media screen and (max-width: 1199px) {
  br.xl-view {
    display: block;
  }
}
br.xl-none {
  display: block;
}
@media screen and (max-width: 1199px) {
  br.xl-none {
    display: none;
  }
}
br.lg-view {
  display: block;
}
@media screen and (min-width: 1000px) {
  br.lg-view {
    display: none;
  }
}
br.sp-view {
  display: block;
}
@media screen and (min-width: 769px) {
  br.sp-view {
    display: none;
  }
}
br.sm-view {
  display: none;
}
@media screen and (max-width: 449px) {
  br.sm-view {
    display: block;
  }
}
@media screen and (max-width: 999px) {
  br.lg-none {
    display: none;
  }
}
@media screen and (max-width: 449px) {
  br.sm-none {
    display: none;
  }
}

.x50 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 50%;
}

.x60 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 60%;
}

.x66 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 66.66%;
}

.x70 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 70%;
}

.x80 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 80%;
}

.x85 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 85%;
}

.x90 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 90%;
}

.x40 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 40%;
}

.x120 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 120%;
}

.x130 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 130%;
}

.x140 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 140%;
}

.x150 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 150%;
}

.x160 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 160%;
}

.mb0 {
  margin-bottom: 0;
}

.mb30 {
  margin-bottom: 30px;
}

.mt50 {
  margin-top: 50px;
}

.mt100 {
  margin-top: 100px;
}

.pt100 {
  padding-top: 100px;
}

.w90p {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w90p {
    width: 90%;
  }
}

.w70p {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w70p {
    width: 90%;
  }
}

.w60p {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w60p {
    width: 90%;
  }
}

.w50p {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w50p {
    width: 90%;
  }
}

.w1400 {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.w1320 {
  width: 94.28%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .w1320 {
    width: 90%;
  }
}

.w1200 {
  width: 85.71%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w1200 {
    width: 90%;
  }
}

.w1000 {
  width: 71.42%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1199px) {
  .w1000 {
    width: 85.71%;
  }
}
@media screen and (max-width: 768px) {
  .w1000 {
    width: 90%;
  }
}

/* 共通パーツ
--------------------------------------------------*/
.w_common {
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .w_common {
    width: calc(100% - 40px);
  }
}

.w_common_inner {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .w_common_inner {
    width: 88%;
  }
}

.thumb {
  overflow: hidden;
}
.thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.shadow {
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.05);
}

.fadeInBottom {
  opacity: 0;
  transform: translateY(30%);
}