@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');



/*-----------------------------------------
-------------------------------------------
-------------------------------------------
-------------------------------------------

目次　※各々レスポンシブ対応あり

01 共通部分設定＆リセットCSS
02 ヘッダーの設定
03 コンテンツの設定
04 フッターの設定

-------------------------------------------
-------------------------------------------
-----------------------------------------*/

/*-----------------------------------------
01 共通部分設定＆リセットCSS
-------------------------------------------*/
body {
  padding: 0;
  margin: 0;
}

div.body {
  margin: auto;
  min-width: 1100px;
  overflow: hidden;
}

@media screen and (max-width:768px) {
  div.body {
    min-width: auto;
  }
}

div.body * {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.center {
  width: calc(100% - 20px);
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.center2 {
  width: calc(100% - 20px);
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
@media screen and (max-width:768px) {
  .center {
    max-width: 500px;
  }
}
.body a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.body a:hover {
  opacity: 1;
}

.body img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.body button,
.body p,
.body a,
.body h1,
.body h2,
.body h3,
.body h4,
.body li,
.body span,
.body div {
  text-shadow: none;
  margin: auto;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif !important;
  background: none;
}

.body li {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width:768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}


.fnt-main {
  font-family: 'Noto Sans JP', sans-serif;
}

:root {
  --blue01:#c9eef4;
  --blue02:#0086c1;
  --blue03:#144b82;
  --orange01:#f15a24;
  --green01:#009f77;
  --sky01: #58b0ca;
}

/*-----------------------------------------
01 共通部分設定＆リセットCSS　ここまで
-------------------------------------------*/

/*-----------------------------------------
02 ヘッダーの設定
-------------------------------------------*/
section.headGrp{
  background: var(--blue01);
  padding: 0;
  margin: 0;
  position: relative;
}
section.headGrp::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20250904/hcr_header_bg.png)no-repeat 50% 90% / 2190px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
div.header_grid{
  display: flex;
  /* width: calc(100% - 30px);
  max-width: 1300px; */
  margin: auto;
}
div.header_title{
  width: 40vw;
  max-width: 650px;
  margin: auto 20px auto auto;
  padding: 3vw 0;
  text-align: center;
      position: relative;
    z-index: 5;
}
div.header_title>p{
  display: inline-block;
  margin: auto;
  padding: 0 20px;
  position: relative;
text-align: center;
font-size: 32px;
font-weight: 700;
line-height: 1;
color: var(--blue03);
}
div.header_title>p::before,
div.header_title>p::after{
  content: "";
  display: block;
  width: 3px;
  height: 24px;
  background: var(--blue03);
  position: absolute;
  bottom: 0;
}
div.header_title>p::before{
  left: 0;
  transform: rotate(-15deg);
}
div.header_title>p::after{
  right: 0;
  transform: rotate(15deg);
}
div.header_img{
  position: relative;
  width: 48vw;
  margin: 0;
  overflow: hidden;
}
div.header_img::before{
  content: "※去年の展示ブース・様子です";
  display: block;
  padding: 10px 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background: var(--blue03);
  position: absolute;
  bottom: 20px;
  left: 30px;
  z-index: 10;
}
div.header_img::after{
  content: "";
  display: block;
  width: 20vw;
  height: 100%;
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20250904/hcr_header_object.png)no-repeat;
  position: absolute;
  top: 0;
  left: -3px;
}
div.header_img img{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 2s ease;
  width: 100%;
}
div.header_img img.active {
  opacity: 1;
}
div.accessGrp{
  position: relative;
  z-index: 5;
  margin-top: -30px;
  margin-right: -30px;
}
div.accessGrp div.center{
  display: flex;
  max-width: 1300px;
}
div.access_contents{
  width: 40%;
  background: #fff;
  padding: 25px;
}
div.access_contents h3,
div.access_contents p{
  color: var(--blue03);
}
div.access_contents h3{
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 0.25em;
  opacity: 0.5;
}
div.access_contents p{
  font-size: 20px;
  font-weight: 700;
}
div.access_btn{
  padding-top: 20px;
}
div.access_btn a{
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  background: var(--blue03);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 0.75em 2em 0.75em 0.75em;
  position: relative;
}
div.access_btn a:hover{
  background: #58b0ca;
}
div.access_btn a i{
position: absolute;
top: 50%;
right: 18px;
transform: translateY(-50%);
color: #fff!important;
}
div.access_perth{
  width: calc(60% - 20px);
}
@media screen and (max-width:1100px) {
  div.header_title{
    width: 40%;
  }
  div.header_img{
    width: 58%;
  }
}

@media screen and (max-width:768px) {
  div.header_grid{
    padding-top: 30px;
  }
  section.headGrp::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20250904/hcr_header_bg_sp.png)no-repeat top center / cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
  div.header_title{
    width: calc(100% - 30px);
    max-width: 500px;
    margin: auto;
  }
  div.accessGrp{
    margin: -5px auto auto;
    padding-bottom: 30px;
  }
div.accessGrp div.center{
  flex-direction: column-reverse;
  max-width: 500px;
}
div.access_contents,
div.access_perth{
  width: 100%;
}
div.header_title>p{
  font-size: 26px;
}
}

@media screen and (max-width:420px) {
div.header_title>p{
  font-size: 6.5vw;
}
div.header_title>p::before, div.header_title>p::after{
  height: 6vw;
}
}

/*-----------------------------------------
02 ヘッダーの設定　ここまで
-------------------------------------------*/

/*-----------------------------------------
03 コンテンツの設定
-------------------------------------------*/


/*Webでの事前登録案内*/
div.advanceGrp{
  position: relative;
  display: block;
  padding: 35px 0;
  background: var(--blue03);
  margin-top: -20px;
  z-index: 5;
}
h3.advance_h3{
  color: #ffe880;
  font-size: 30px;
  margin-bottom: 0.75em;
  line-height: 1.5;
}
a.advance_btn{
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 0;
  margin: auto auto 10px;
  background: #fff;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
  div.advanceGrp{
    margin-top: 0px;
  }
  h3.advance_h3{
    font-size: 24px;
  }
}

@media screen and (max-width:500px) {
h3.advance_h3{
  font-size: 6vw;
}
  a.advance_btn{
    font-size: 5.5vw;
  }
}
/*ボタンの文字部分*/
span.btn-anime{
  display: block;
  width: 100%;
  /* height: 100%; */
  color: var(--blue03);
  font-weight: 700;
  z-index: 10;
  position: relative;
  padding: 0.5em;
}
/*矢印*/
span.btn-anime::after{
  content: "\f054";
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
font-weight: 900;
  color: var(--blue03);
}
/*ホバー時のアニメ―ション*/
span.btn-anime:before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  display: block;
  background: #ffe880;
  z-index: -1;
  transition: all 0.4s ease 0s;
}

span.btn-anime:hover:before{
  width: 100%;
}
p.advance_come{
   font-size: 18px;
   color: #fff;
  }
@media screen and (max-width:500px) {
  p.advance_come{
    font-size: 3.75vw;
    font-weight: 500;
  }
}




/*国際福祉機器展への出展を記念した
各種キャンペーンを実施*/
.mainGrp div.wrap01{
  padding: 60px 0 200px;
}
h3.campaign_h3{
  font-size: 40px;
  font-weight: 700;
  color: var(--blue03);
}
div.fukidashi{
  display: inline-block;
  padding: 15px 60px;
  border-radius: 100px;
  background: var(--blue03);
  margin: 30px auto 40px;
  position: relative;
}
div.fukidashi::after{
  content: "";
  display: block;
  width: 25px;
  height: 15px;
  background: var(--blue03);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
}
div.fukidashi p{
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: #fff;
}

div.campaign_contents{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  max-width: 900px;
}
div.campaign_contents>div{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 25px 25px 0;
  border-radius: 20px;
  background:#d7f1f4;
}
div.campaign_contents>div h4{
  display: block;
  width: 100%;
  padding: 1em;
  margin-bottom: 0.75em;
  background: #fff;
  border-radius: 100px;
  font-size: 24px;
  font-weight: 900;
  color: var(--orange01);
}
div.campaign_contents>div p,
div.campaign_contents>div p span{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
div.campaign_contents>div p{
  color: var(--blue03);
}
div.campaign_contents>div p span{
  color: var(--orange01);
}
div.campaign_contents>div img{
  display: block;
  width: 100%;
  max-width: 310px;
  margin-top: 20px;
}

@media screen and (max-width:768px) {
  .mainGrp div.wrap01{
    padding-bottom: 80px;
  }
 div.campaign_contents{
  grid-template-columns: 1fr;
  max-width: 400px;
 }
 h3.campaign_h3{
  font-size: 30px;
 }
 div.fukidashi p{
  font-size: 20px;
 }
}


@media screen and (max-width:460px) {
   h3.campaign_h3{
  font-size: 7.5vw;
 }
 div.fukidashi p{
  font-size: 6vw;
 }
  div.campaign_contents>div{
    padding: 6vw 6vw 0;
  }
div.campaign_contents>div h4{
  font-size: 5vw;
  padding: 1em;
}
div.campaign_contents>div p,
div.campaign_contents>div p span{
font-size: 4.5vw;
}
}
/*追従メニュー*/
/*メニュー*/
.mainGrp div.wrap02{
position: relative;
}

div.menu_Button{
  transition: all 0.3s ease 0s;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: calc(100% - 20px);
  max-width: 1200px;
  padding: 0 ;
  z-index: 999;
}
ul.menu_ul,
li.menu_li,
li.menu_li a,
li.menu_li p{
  padding: 0;
  margin: 0;
}

ul.menu_ul{
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
}
li.menu_li{
  display: flex;
  align-items: stretch;
  width: calc(calc(100% / 5) - 20px);
 
}
li.menu_li a{
  display: flex;
  justify-content: center;
  width: 100%;
}
li.menu_li a:hover{
  transform: translateY(-5px);
}
li.menu_li p{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background: #fff;
  padding: 60px 0 25px;
  border: 4px solid var(--blue03);
  border-radius: 10px;
  text-align: center;
  color: var(--blue03);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  position: relative;
  transition: all 0s ease 0s;
}
li.menu_li a:hover p{
  color: var(--orange01);
}
li.menu_li p::after{
content: "";
position: absolute;
top: -33px;
left: 50%;
transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 105px;
    height: 85px;
}
li.menu_li:nth-of-type(1) p::after{
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20230829/hcr_icon_01.png)center / contain no-repeat;
}
li.menu_li:nth-of-type(2) p::after{
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20240909/hcr_icon_05.png)center / contain no-repeat;
}
li.menu_li:nth-of-type(3) p::after{
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20230829/hcr_icon_03.png)center / contain no-repeat;
}
li.menu_li:nth-of-type(4) p::after{
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20230829/hcr_icon_02.png)center / contain no-repeat;
}
li.menu_li:nth-of-type(5) p::after{
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20230829/hcr_icon_04.png)center / contain no-repeat;
}

@media screen and (min-width:768px) {
 

/*メニューが追従するアニメーション*/
div.menu_Button.fixed_menu_Button{
  position: fixed;
  top: -15px;
  transition: all 0.3s ease 0s;
  min-width: 1000px;
}
div.menu_Button.fixed_menu_Button li.menu_li p{
  padding: 20px 0 10px 80px;
  font-size: 20px;
  text-align: left;
}
div.menu_Button.fixed_menu_Button li.menu_li p::after{
  top: 55%;
  left: 10px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  width: 70px;
  height: 56px;
}
}



@media screen and (max-width:768px) {
  li.menu_li p{
    font-size: 22px;
    padding: 35px 0 10px;
  }
  li.menu_li p::after{
    width: 80px;
    height: 64px;
  }
  div.menu_Button.fixed_menu_Button{
    min-width: unset;
  }
  div.polygon-arrow{
    height: 70px;
  }
  .headGrp div.wrap03 {
    position: inherit;
    padding-top: 50px;
}
  div.menu_Button{
    position: inherit;
    top: unset;
    left: unset;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
  padding: 0;
  max-width: 500px;
  margin: auto;
  }
  ul.menu_ul{
    flex-wrap: wrap;
    justify-content: space-between;
  }
  li.menu_li{
    width: calc(calc(100% / 2) - 10px);
    padding: 0 0 40px;
  }
}


/*セミナー以降*/
div.hcr_about{
  padding: 160px 0 60px;
    background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20250904/hcr_header_bg.png)no-repeat 50% -10% / 2190px,var(--blue01);
    background-attachment: fixed;
}
div.hcr_about_box{
      background: #fff;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.15));
    padding: 80px 0;
    margin: 0 auto 80px;
    width: calc(100% - 20px);
    max-width: 1200px;
}
/*見出しタイトル*/
h3.hcr_contents_h3,
p.hcr_contents_p{
  color: var(--blue03);
}
h3.hcr_contents_h3{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  text-align: center;
  position: relative;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 600;
}
p.hcr_contents_p{
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  position: relative;
}
p.hcr_contents_p span{
  color: var(--blue03);
}
p.hcr_contents_p::before,
p.hcr_contents_p::after{
position: absolute;
bottom: 2px;
content: "\f7a5";
/* transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%); */
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: var(--blue03)
}
p.hcr_contents_p::before{
  left: -1.25em;
  transform: rotate(-15deg);
}
p.hcr_contents_p::after{
  right: -1.25em;
  transform: rotate(15deg);
}
h3.hcr_contents_h3 img{
  width: 85px;
  height: 68px;
  margin-right: 10px;
}

p.hcr_contents_p_2{
  font-size: 20px;
}
p.come{
  display: block;
  margin-top: 20px;
  color: #6b6b6b;
  font-size: 16px;
}

p.hcr_contents_p_3{
  display: inline-block;
  padding: 20px 30px;
  margin: 35px auto 30px;
  width: calc(100% - 20px);
  max-width: 700px;
  background: var(--yellow01);
  position: relative;
  font-size: 22px;
  font-weight: 500;
  color: var(--blue03);
  border-radius: 15px;
}

p.hcr_contents_p_3>span{
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue03)!important;
}
p.hcr_contents_p_3>span.title{
  font-weight: 700;
  font-size: 28px;
}

@media screen and (max-width:768px) {
  div.hcr_about{
    padding-top: 60px;
  }
  div.hcr_about_box{
    padding: 40px 10px;
  }
  h3.hcr_contents_h3{
    display: flex;
    flex-direction: column;
    font-size: 30px;
  }
  p.hcr_contents_p_2{
    text-align: left;
    margin: auto;
    max-width: 500px;
    font-size: 16px;
  }
  p.hcr_contents_p_2 br{
    display: none;
  }
  p.hcr_contents_p{
    font-size: 22px;
  }
}


@media screen and (max-width:500px) {
  p.hcr_contents_p{
    font-size: 5vw;
  }
  h3.hcr_contents_h3{
    font-size: 7vw;
  }
}
/*トピック内容----*/
div.topic{
  padding: 40px 0;
  margin: 0;
  position: relative;
}
@media screen and (max-width:768px) {
  div.topic{
  padding: 40px 0;
  margin: 0 auto;
  position: relative;
  max-width: 475px;
  }
}
@media screen and (max-width:570px) {
  div.topic{
  padding: 10px 0 30px;
  }
}
/*横ならび*/
div.topic_flex{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-bottom: 40px;
}

div.topic:nth-of-type(odd) div.topic_flex{
  flex-direction: row;
}
div.topic:nth-of-type(even) div.topic_flex{
  flex-direction: row-reverse;
}
@media screen and (max-width:768px) {
  div.topic_flex{
    flex-direction: column!important;
  }
  div.topic01 div.topic_flex{
    margin-bottom: 20px;
  }
}
/*トピックのテキスト内容*/
div.topic_text{
  text-align: left;
  padding-top: 40px;
  width: calc(50% - 15px);
  margin-top: 0;
}
div.topic_text h4,
div.topic_text h4 span{
  font-family: var(--font-noto);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.1em;
}
div.topic_text h4{
  font-size: 27px;
  position: relative;
  padding-top: 10px;
  margin-bottom: 0.5em;
  line-height: 1.25;
}
div.topic_text h4 span{
  display: block;
  font-size: 20px;
}
div.topic:nth-of-type(1) div.topic_text h4,
div.topic:nth-of-type(1) div.topic_text h4 span{
  color: var(--orange01);
}
div.topic:nth-of-type(2) div.topic_text h4,
div.topic:nth-of-type(2) div.topic_text h4 span{
  color: var(--blue03);
}
div.topic:nth-of-type(3) div.topic_text h4,
div.topic:nth-of-type(3) div.topic_text h4 span{
  color: var(--green01);
}
@media screen and (max-width:768px) {
  div.topic_text{
    width: 100%;
  }
}
@media screen and (max-width:550px) {
  div.topic_text h4{
    font-size: 5vw;
  }
  div.topic_text h4 span{
    font-size: 4vw;
  }
}
@media screen and (max-width:450px) {
  div.topic_text h4{
    font-size: 4.5vw;
  }
  div.topic_text h4 span{
    font-size: 3.5vw;
  }
}
/*トピックのタブ---*/
/*破線*/
div.topic_text h4::before{
  content: "";
  position: absolute;
  top: -22px;
  left: 0;
    display: block;
    width: calc(100% - 5px);
  margin: 0 0 0 auto;
  border-top: 5px dotted;
}
div.topic:nth-of-type(1) div.topic_text h4::before{
  border-color: var(--orange01);
}
div.topic:nth-of-type(2) div.topic_text h4::before{
  border-color: var(--blue03);
}
div.topic:nth-of-type(3) div.topic_text h4::before{
  border-color: var(--green01);
}
/*タブ名*/
div.topic_text h4::after{
  position: absolute;
  top: -38px;
  left: 0px;
  display: inline-block;
  padding: 5px 10px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
}

div.topic:nth-of-type(1) div.topic_text h4::after{
  content: "PICK UP!";
  background: var(--orange01);
}
div.topic:nth-of-type(2) div.topic_text h4::after{
  content: "PICK UP!";
  background: var(--blue03);
}
div.topic:nth-of-type(3) div.topic_text h4::after{
  content: "PICK UP!";
  background: var(--green01);
}
@media screen and (max-width:570px) {
  div.topic_text h4::after{
    font-size: 4vw;
  }
  div.topic_text h4::before{
    left: 30vw;
    width: calc(100% - 30vw);
  }
}
/*テキスト*/
div.topic_text>p{
  font-size: 18px;
}
@media screen and (max-width:768px) {
  div.topic_text>p{
    font-size: 19px;
  }
}
@media screen and (max-width:570px) {
  div.topic_text>p{
    font-size: 3.65vw;
    font-weight: 500;
  }
}
/*トピックの画像*/
div.topic_img{
  width: calc(50% - 15px);
  margin-top: 0;
}
div.topic_img img{
  border-radius: 10px;
  height: auto;
}
@media screen and (max-width:768px) {
  div.topic_img{
    width: 100%;
    margin-top: 20px;
  }
}
/*芸人：トピックのボタン-----*/
div.topic_btn a{
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 20px 20px;
  border-radius: 100px;
  position: relative;
}
.topic01 div.topic_btn a{background: var(--orange01);}
.topic02 div.topic_btn a{background: var(--blue03);}
.topic03 div.topic_btn a{background: var(--green01);}

div.topic_btn a::after{
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 22px;
  color: #fff;
}
.topic01 div.topic_btn a:hover{
  background: #fa9623;
}
.topic02 div.topic_btn a:hover{
  background: #4574cc;
}
.topic03 div.topic_btn a:hover{
  background: #23c194;
}
div.topic_btn p{
  font-size: 20px;
  margin-top: 10px;
}
.topic01 div.topic_btn p{
  color: var(--orange01);
}
.topic02 div.topic_btn p{
  color: var(--blue03);
}
.topic03 div.topic_btn p{
  color: var(--green01);
}
@media screen and (max-width:768px) {
  div.topic_btn a{
    font-size: 20px;
  }
}
@media screen and (max-width:570px) {
div.topic_btn a{
font-size: 4vw;
white-space: nowrap;
}
div.topic_btn p{
  font-size:3.75vw;
  font-weight: 500;
}
}
/*鍵屋一：紹介-------*/
div.topic02 p.name{
  font-size: 26px;
  font-weight: 700;
  margin: 0.5em 0 0.25em;
  color: var(--blue03);
}
div.topic_pf p{
  text-align: justify;
  color: #474747;
  font-size: 16px;
  letter-spacing: 0.1em;
}



/*日程一覧---------------------------*/
div.gridGrp{
  padding-top: 50px;
}
div.gridGrp div{
  width: 100%;
  height: 100%;
}
p.gridGrp_p{
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0.75em;
  color: #6b6b6b;
}
div.chart-grid{
  display: grid;
  grid-template-columns: 1fr 5fr 2.5fr; 
  border: 2px solid var(--sky01);
  border-radius: 7px;
  margin-bottom: 50px;
}
/* div.chart-grid:last-of-type{
  margin-bottom: 0;
} */
div.chart-grid p{
  font-family: var(--font-noto);
  transform: rotate(0.03deg);
}

button.toggleButton_css {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 15px auto auto;
  padding: 1em;
  background: var(--blue03);
  border: none;
  border-radius: 10px;
  color: #fff!important;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    transition: all 0.3s 0s ease;
}
button.toggleButton_css:hover{
  background: var(--blue02);
}
button.toggleButton_css::after{
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 22px;
    color: #fff;
}
button.toggleButton_css.close::after{
    content: "\f106";
  }
@media screen and (max-width:768px) {
  div.gridGrp{
    max-width: 475px;
    margin: 0 auto;
    padding-top: 20px;
  }
  p.gridGrp_p{
    text-align: center;
  }
}
/*日付欄-------------*/
div.chart-date{
  grid-column: 1/4;
  grid-row: 1/2;
  background: var(--sky01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  border-radius: 5px 5px 0 0;
  width: calc(100% + 1px)!important;
}
div.chart-date p{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

/*カテゴリー----------*/
div.chart-category{
  display: flex;
  align-items: center;
  padding: 0.5em 1em;
  background: #fff;
}
div.chart-category-date{
  justify-content: center;
}
div.chart-category-date br{
  display: none;
}
div.chart-category-company{
  border-right: none;
}
div.chart-category p{
font-size: 20px;
font-weight: 500;
color: var(--sky01);
}

/*表内容------------*/
div.chart-item{
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

div.chart-item:nth-of-type(6n),
div.chart-item:nth-of-type(6n+1),
div.chart-item:nth-of-type(6n-1){
  background: #e5f1f5;
}

/*時刻の中央寄せ*/
div.chart-category-date,
div.chart-item-date{
  text-align: center;
}
/*点線*/
div.chart-category-date,
div.chart-item-date,
div.chart-category-event,
div.chart-item-event{
  position: relative;
}
div.chart-category-date:after,
div.chart-item-date:after,
div.chart-category-event:after,
div.chart-item-event:after{
  background-image: linear-gradient(to top, var(--sky01), var(--sky01) 2px, transparent 2px);
  background-size: 2px 7px;
  background-position: right top;
  background-repeat: repeat-y;
  width: 10px;
  height: 100%;
  content: "";
    position: absolute;
    top: 0;
    right: 0;
}



/*文字サイズ*/
div.chart-item p{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray03);
}
/*文字の小さめサイズ*/
div.chart-item p.fnt-small{
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
}
/*時刻の文字*/
div.chart-item.chart-item-date p{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}
div.chart-item.chart-item-date p span{
  display: block;
  transform: rotate(90deg);
}
 /*イベント内容*/
div.chart-item-event p{
  text-align: center;
}
/*企業の文字*/
div.chart-item.chart-item-company p{
  letter-spacing: 0;
  text-align: left;
}

/*表最後の一番下セル*/
div.chart-item:nth-last-of-type(3){
  border-radius: 0 0 0 5px;
}
div.chart-item:last-of-type{
  border-radius: 0 0 5px 0;
}

@media screen and (max-width:768px) {
  /*日付欄*/
 div.chart-date{
    grid-column: 1/3;
    grid-row: 1/2;
  }
  div.chart-date p{
    font-size: 4vw;
  }
  /*カテゴリー*/
  div.chart-category-date{
    text-align: center;
  }
  div.chart-category-date br{
    display: block;
  }
  div.chart-category-company{
    display: none;
  }
  div.chart-category-event{
    border-right: none;
  }
  div.chart-category p{
    font-size: 3vw;
  }
  /*表*/
  div.chart-grid{
    grid-template-columns: 1fr 4fr; 
  }
  /*表の文字サイズ*/
  div.chart-item p{
    font-size: 4vw;
  }
  /*時刻*/
  div.chart-item.chart-item-date p{
    font-size: 2.75vw;
  }
  /*イベント内容*/
  div.chart-item-event{
    border-right: none;
    text-align: left;
  }
  div.chart-item-event p{
    font-size: 2.5vw;
    text-align: left;
  }
  /*企業*/
  div.chart-item-company{
    display: none;
  }
  /*点線*/
div.chart-category-event:after,
div.chart-item-event:after{
  display: none;
}
/*表最後の一番下セル*/
div.chart-item:nth-last-of-type(2){
  border-radius: 0 0 5px 0;
}
}

@media screen and (max-width:570px) {
  div.chart-date p{
    font-size: 4.5vw;
  }
  /*時刻*/
  div.chart-item.chart-item-date p{
    font-size: 3.75vw;
  }
  /*イベント内容*/
  div.chart-item-event p{
    font-size: 4vw;
  }
  div.chart-category p{
    font-size: 3.5vw;
  }
}



/*おすすめサービス*/

div.hcr_service_btn{
padding: 30px 0;
max-width: 800px;
margin: 0 auto;
}

div.hcr_service_flex{
  padding: 5px 0 0;
max-width: 800px;
margin: 0 auto;
}
p.hcr_service_p{
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange01);
  margin-bottom: 0.5em;
  line-height: 1.25;
position: relative;
}
div.hcr_service_btn02 p.hcr_service_p{
  font-size: 26px;
}
div.hcr_serviceGrp>p.hcr_service_p{
  margin-top: 20px;
}
p.hcr_service_p::before,
.hcr_service_p::after{
position: absolute;
bottom: 2px;
content: "\f7a5";
/* transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%); */
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: var(--orange01)
}
p.hcr_service_p::before{
  left: -1.25em;
  transform: rotate(-15deg);
}
p.hcr_service_p::after{
  right: -1.25em;
  transform: rotate(15deg);
}
div.hcr_serviceGrp img,
div.hcr_service_btn img{
  border-radius: 10px;
  transition: all 0.3s ease 0s;
}
/* a.rihaplan img{
  object-fit: cover;
    object-position: 99% 50%;
    height: 107%;
} */
div.hcr_serviceGrp img:hover,
div.hcr_service_btn img:hover{
  opacity: 0.8;
  transform: translateY(-3px);
}


@media screen and (max-width:768px) {
  div.hcr_service_btn{
    margin: auto;
    max-width: 500px;
  }
  p.hcr_service_p{
    font-size: 24px;
  }
  div.hcr_service_btn02 p.hcr_service_p{
    font-size: 22px;
  }
}

@media screen and (max-width:500px) {
  p.hcr_service_p{
    font-size: 4vw;
  }
  div.hcr_service_btn02 p.hcr_service_p{
    font-size: 4vw;
  }
}

/*レク体験コーナー-----------------*/
div.hcr_rec_imgGrp{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
div.hcr_rec_img{
  width: calc(50% - 30px);
  margin: 20px 0 60px;
  position: relative;
}
div.hcr_rec_img img{
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
}
div.hcr_rec_img::before,
div.hcr_rec_img::after{
content: "";
position: absolute;
background: #fff;
clip-path: polygon(0 0, 100% 0, 50% 100%);
width: 75px;
height: 30px;
border-top: 1.5px solid #1b1b1b;
z-index: 99;
}
div.hcr_rec_img::before{
  transform: rotate(135deg);
  top: -11px;
  left: -33px;
}
div.hcr_rec_img::after{
  transform: rotate(-45deg);
  bottom: -11px;
  right: -33px;
}
@media screen and (max-width:768px) {
  div.hcr_rec_imgGrp{
    flex-direction: column;
    margin-bottom: 40px;
  }
  div.hcr_rec_img {
    width: 100%;
    max-width: 400px;
    margin:40px auto;
    position: relative;
}
div.hcr_rec_img:last-of-type{
  margin-bottom: 0;
}
}




/*レク・リハビリ用品を多数展示！----*/

div.hcr_rec_displayGrp p.hcr_contents_p{
  font-size: 34px;
  margin-bottom: 15px;
}

p.hcr_rec_display_p{
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange01);
  padding-top: 0.25em;
  margin: 0 auto;
  border-bottom: 7px double var(--orange01);
  width: fit-content;
}


@media screen and (max-width:1080px) {}

@media screen and (max-width:768px) {
  div.hcr_rec_display_img{
    max-width: 500px;
  }
  p.hcr_rec_display_p{
    font-size: 24px;
  }
  div.hcr_rec_displayGrp p.hcr_contents_p{
    font-size: 24px;
  }
}

@media screen and (max-width:500px) {
  p.hcr_rec_display_p{
    font-size:6vw;
  }
  div.hcr_rec_displayGrp p.hcr_contents_p{
    font-size:6vw;
  }
}


/*-----------------------------------------
03 コンテンツの設定ここまで
-------------------------------------------*/

/*-----------------------------------------
04 フッターの設定
-------------------------------------------*/

.footGrp p.hcr_contents_p{
  font-size: 50px;
  display: inline-block;
  text-align: center;
  width: fit-content;
}
.footGrp div.flex{
  display: flex;
}
h2.hcr_footer_title{
  width: 40%;
}
div.hcr_fotter_img{
  width: 60%;
}
.footGrp div.wrap{
  display: flex;
    flex-direction: column;
    align-items: center;
}
.footGrp div.wrap01{
  position: relative;
  padding-bottom: 80px;
}

div.hcr_foot_img{
  width: 100%;
  max-width: 1300px;
    margin: 0 auto;
    z-index: 99;
}
.footGrp div.accessGrp{
position: relative;
    z-index: 5;
    margin-top: 0px;
    margin-right: 0px;
}
.footGrp div.access_contents{
  width: 100%;
}
.footGrp div.access_contents h3,
.footGrp div.access_contents p{
  display: inline-block;
}
.footGrp div.access_contents h3{
  padding: 0 0.5em;
}
.footGrp div.access_contents p br{
  display: none;
}
@media screen and (max-width:1080px) {

}
@media screen and (max-width:768px) {
  .footGrp div.wrap01{
    padding-bottom: 0;
    max-width: 500px;
    margin: auto;
    padding-top: 0;
  }
  .footGrp p.hcr_contents_p{
    font-size: 30px;
  }
  .footGrp div.flex{
    flex-direction: column;
  }
  h2.hcr_footer_title,
  div.hcr_fotter_img{
    width: 100%;
  }

}
@media screen and (max-width:500px) {
.footGrp p.hcr_contents_p{
    font-size: 6vw;
  }
}

/*アニメーション付与*/
 
/*フェードイン*/
.top_fadein{
  opacity: 0;
}
.top_fadein.is-active {
  animation: topfadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0.5s;
}
@keyframes topfadeIn {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

 
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}
 




/*-----------------------------------------
04 フッターの設定ここまで
-------------------------------------------*/




/*スマ介_____EC-CUBE対策*/
main.l-container {
  width:100%;
}
.c-main{
  padding-bottom: 0 ;
  padding-left: 0;
  padding-right: 0;
}
#contentInner{
  width: auto;
  padding-bottom: 0;
}
#wide_main_contents{
  width: 100%;
}

.c-breadcrumb {
    width: 1200px;
    margin: auto;
  }
  @media (max-width: 1230px) {
    main.l-container {
      width:123rem;
    }
  }
@media (max-width: 768px) {
  .pc{
    display: none!important;
  }
  .sp{
    display: block;
  }
  .l-container{
    width:120rem;
  }
  #contentInner{
    width: 1200px;
    padding-bottom: 0;
  }
  #wide_main_contents{
    width:1200px
  }
}
