@charset "utf-8";

/* reset
-----------------------------------------------*/
html{
  width: 100%;
}
body{
  *font-size: small;
  *font: x-small;
  font-size: 13px;
  color: #333333;
  line-height: 1.2;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: left;
  width: 100%;
  margin: 0px;
  padding: 0px;
  -webkit-text-size-adjust: 100%;
}
@font-face{
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face{
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face{
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face{
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face{
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
h1,h2,h3,h4,h5,p,ul,ol,li,img,table,th,td,dl,dt,dd,figure{
  margin: 0px;
  padding: 0px;
  font-size: 1rem;
}
li{
  list-style-type: none;
}
table{
  border-collapse: collapse;
}
a{
  cursor: pointer;
  color: #333;
  text-decoration: none;
}
a: hover{
  text-decoration: none;
}
a{
  -webkit-tap-highlight-color: transparent;
}
img{
  vertical-align: top;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
a img{
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
input,
textarea,
select,
button,
label{
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
:focus {
  outline: 0;
  border-color: orange;
}


/* common
-----------------------------------------------*/
.section {
  padding: 64px 30px 120px;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.container__small {
  max-width: 1040px;
}
.heading02 {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  color: #003459;
  margin-bottom: 42px;
}

/* =========================
   CTAボタン 共通スタイル
========================= */
.cta-btn {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00afdd !important;
    font-size: 1.125rem;
    text-align: center;
    font-weight: bold;
    background-color: #d5f5ff;
    border: 2px solid #00afdd;
    background-image: url(../img/icon_arrow_blue.svg);
    background-repeat: no-repeat;
    background-position: top 10px right 10px;
    background-size: 12px auto;
}

.cta-btn:hover {
  opacity: .7;
  text-decoration: unset;
}

.u-bold {
  font-weight: bold;
}
.u-oswald {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
}
.u-fc-navy {
  color: #003459;
}
.u-pc {
  display: block;
}
.u-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
  .section {
    padding: 48px 16px 64px;
  }
  .heading02 {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
	
　.cta-btn {
    max-width: 90%;            
    height: 60px;               
    font-size: 1rem;           
    background-position: center right 10px;
    background-size: 10px auto;
  }
}

/* KV専用CTA */
.slider__nav {
  position: absolute;
  bottom: 80px;           
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 5;
  flex-wrap: nowrap;
}

.slider__btn {
  text-align: center;
  padding: 12px 50px;
  font-size: 1.0rem;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;  
  display: inline-flex;
  align-items: center;
  justify-content: center;
	
}

.slider__btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);   
  transition: margin-left 0.3s ease; /* 横移動は margin で */
}

.slider__btn:hover {
  background: rgba(255,255,255,0.2);
  color: #fff !important;
  text-decoration: none;      
}

/* PCだけ矢印を動かす */
@media (min-width: 751px) {
  .slider__btn:hover::after {
   margin-left: 10px; /* ← 左余白を広げるだけなので水平移動になる */
  }
}

/* スマホ */
@media screen and (max-width: 750px) {
  .slider__nav {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 12px;
    max-width: 95%;
    margin: 16px auto 0;
  }
	
  .slider__btn {
    width: 100%;
    margin: 0 auto;
    font-size: 1rem;
    padding: 12px;
    border: 1px solid #1b558c;
    background: #fff;
    color: #003459 !important;
    display: block;            /* ← flex解除してシンプルに */
  }
	
   .slider__btn::after {
    content: none;             /* ← スマホでは矢印非表示 */
  }

   .slider__btn:hover {
    background: #00afdd;
    color: #fff !important;
    text-decoration: none;
  }
}


/* footstepBox
-----------------------------------------------*/
.footstepBox{
  position: absolute;
  top: 10px;
  left: 50%;
  margin-top: 0px;
  margin-left: -451px;
  z-index: 100;
  width: 902px;
  font-size: .75rem;
}
.footstepBox,
.footstepBox a{
  color: #fff !important;
}
.footstepBox a {
  text-decoration: underline;
}
@media screen and (max-width: 750px) {
  .footstepBox {
    top: 0;
    left: 10px;
    margin-left: 0;
  }
}
/* kv
-----------------------------------------------*/
.main {
  position: relative;
}

/* スライダー */
.slider {
  position: relative; 
  z-index: 1;
}

.slider__item {
  width: 100%;
  height: 560px;
  background-image: url(../img/slider01.jpg);
  background-size: cover;
  background-position: center center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  text-align: center;
  display: flex
}
.slider__item:not(:first-of-type) {
  display: none;
}
.slider__item.slick-slide {
  display: flex!important;
}
.slider__item02 {
  background-image: url(../img/slider02.jpg);
}
.slider__item03 {
  background-image: url(../img/slider03.jpg);
}
.slider__item04 {
  background-image: url(../img/slider04.jpg);
}
.slider__item:before {
  content: "";
  display: block;
  background-color: #000000;
  opacity: .3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider__item__lead {
  position: relative;
  z-index: 1;
  font-size: 2.25rem;
  font-weight: normal;
  margin-bottom: 46px;
  color: #fff;
  text-align: center;
}
.slider__item__txt {
  position: relative;
  z-index: 1;
  font-size: 1.625rem;
  line-height: 1.6153;
}
.slick-next,
.slick-prev{
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 0;
  z-index: 1;
  background: rgba(0,26,44,0.5);
  padding: 0;
  border: none;
  cursor: pointer;
  transition: background .3s cubic-bezier(.210, .60, .350, 1), opacity .8s cubic-bezier(.210, .60, .350, 1);
  margin-top: -10px; /* dotsの分、上に引き上げる */
}
.slick-next:hover,
.slick-prev:hover{
  background: #00afdd;
}
.slick-next{
  right: 0;
}
.slick-prev{
  left: 0;
}
.slick-arrow::before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  box-sizing: border-box;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
.slick-next::before{
  right: 20px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.slick-prev::before{
  left: 20px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.slick-dots {
  position: relative;
  z-index: 3;
  text-align:center;
  margin: 16px 0 0 0;
}
.slick-dots li {
  display:inline-block;
  margin:0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width:40px;
  height:4px;
  display:block;
  background:#00afdd;
  border: none;
  cursor : pointer;
  opacity: .2
}
.slick-dots .slick-active button{
  background:#00afdd;
  opacity: 1;
}
@media screen and (max-width: 750px){
  .slider__item {
    height: 360px;
  }
  .slider__item__lead {
    font-size: 1.625rem;
    line-height: 1.6153;
    margin-bottom: 24px;
  }
  .slider__item__txt {
    font-size: 1.125rem;
  }
}


/* reason
-----------------------------------------------*/
.reason {
  background-image: url(../img/reason_bg.png);
  background-size: cover;
  background-position: center;
  margin-top: 16px;
}
.reason__list {
  display: flex;
  gap: 16px;
  padding-top: 20px;
}
.reason__item {
  background-color: #F5F5F5;
  padding: 1px 21px 20px;
  max-width: 336px;
  box-sizing: border-box;
}
.reason__item__num {
  text-align: center;
  font-size: 2.5rem;
  color: #003459;
  margin-top: -32px;
  margin-bottom: 16px;
}
.reason__item__num span {
  font-size: 3rem;
  margin-left: 8px;
}
.reason__item__img {
  text-align: center;
  margin-bottom: 24px;
}
.reason__item__ttl {
  font-size: 1.25rem;
  color: #003459;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
}
.reason__item__txt {
  line-height: 1.625;
}
@media screen and (max-width: 750px){
  .reason__list {
    flex-direction: column;
    gap: 40px 0;
    padding-top: 16px;
  }
  .reason__item {
    padding: 1px 15px 15px;
    max-width: unset;
  }
  .reason__item__num {
    font-size: 2rem;
    margin-top: -26px;
    margin-bottom: 10px;
  }
  .reason__item__num span {
    font-size: 2.5rem;
    margin-left: 8px;
  }
  .reason__item__img {
    width: 70px;
    flex-shrink: 0;
    text-align: left;
    margin-bottom: 0;
  }
  .reason__item__body {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0 10px;
    margin-bottom: 16px;
  }
  .reason__item__ttl {
    width: calc(100% - 80px);
    font-size: 1rem;
    text-align: left;
    margin-bottom: 0;
  }
  .reason__item__txt {
    font-size: .875rem;
  }
}

/* scene
-----------------------------------------------*/
.scene {
  background-color: #F6F6F6;
  background-image: url(../img/scene_bg.png);
  background-size: cover;
  background-position: center center;
}
.scene__list {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
.scene__item {
  display: flex;
  align-items: center;
}
.scene__item__img {
  width: 650px;
}
.scene__item__body {
  background: rgba(255,255,255,.9);
  padding: 40px 60px;
  box-sizing: border-box;
  width: 740px;
  height: fit-content;
  margin-left: -190px;
  position: relative;
  z-index: 1;
}
.scene__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.scene__item:nth-of-type(even) .scene__item__body {
  margin-left: unset;
  margin-right: -190px;
}

/* =========================
   共通タイトル
========================= */
.scene__item__ttl {
  font-size: 1.625rem;   /* PC用 */
  font-weight: bold;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

/* 発熱外来 */
.scene__item__ttl-fever { color: #00AFDD; }
.scene__item__ttl-fever:after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #00AFDD;
  position: absolute;
  left: 0;
  bottom: 0;
}

/* 医療施設 */
.scene__item__ttl-medical { color: #00AFDD; }
.scene__item__ttl-medical:after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #00AFDD;
  position: absolute;
  left: 0;
  bottom: 0;
}

/* 薬局 */
.scene__item__ttl-pharmacy { color: #00AFDD; }
.scene__item__ttl-pharmacy:after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #00AFDD;
  position: absolute;
  left: 0;
  bottom: 0;
}

/* 介護・福祉施設 */
.scene__item__ttl-welfare { color: #00AFDD; }
.scene__item__ttl-welfare:after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #00AFDD;
  position: absolute;
  left: 0;
  bottom: 0;
}

.scene__item__txt {
  font-size: 1.125rem;
  line-height: 1.8125;
  margin-bottom: 40px;
}
.scene__item__btn {
  margin-right: 0;
  max-width: 340px;
  height: 68px;
}
@media screen and (max-width: 750px){
  .scene__list {
    flex-direction: column;
    gap: 24px 0;
  }
  .scene__item {
    display: block;
  }
  .scene__item__img {
    width: 100%;
  }
  .scene__item__body {
    padding: 20px 15px;
    width: 100%;
    margin-left: 0;
  }
  .scene__item:nth-of-type(even) .scene__item__body {
    margin-right: 0;
  }
  .scene__item__ttl {
    font-size: 1.25rem;  /* 小さめ */
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .scene__item__ttl:after {
    width: 70px;         /* 下線短め */
  }
	
  .scene__item__txt {
    font-size: .8125rem;
    margin-bottom: 24px;
  }
  .scene__item__btn {
    max-width: 100%;
    height: 58px;
  }
}

/* voice
-----------------------------------------------*/
.voice__list {
  margin-bottom: 40px;
  display: none;
}
.voice__list.slick-slider {
  display: block;
}
.voice__item {
  background-color: #E3E9F1;
  padding: 13px 10px 10px 18px;
  margin: 0 7px;
}
.voice__item:hover {
  opacity: .7;
  text-decoration: unset;
}
.voice__item__tag {
  display: flex;
  gap: 0 6px;
  margin-bottom: 10px;
}
.voice__item__tag span {
  color: #fff;
  background-color: #003459;
  padding: 6px 20px 4px;
}
.voice__item__ttl {
  font-size: 1.125rem;
  line-height: 1.611;
  color: #003459;
  font-weight: bold;
  margin-bottom: 14px;
}
.voice__item__wrap {
  display: flex;
  gap: 0 11px;
}
.voice__item__name {
  margin-top: 13px;
  border-top: 1px dashed #B4B4B4;
  padding-top: 16px;
  font-size: .875rem;
  font-weight: bold;
  width: 100%;
  color: #333;
}
.voice__item__img {
  width: 180px;
  flex-shrink: 0;
}
.voice__list .slick-next{
  right: -30px;
  background-color: #00AFDD;
}
.voice__list .slick-prev{
  left: -30px;
  background-color: #00AFDD;
}
.voice__list .slick-track {
  display: flex;
}
.voice__list .slick-slide {
  height: auto !important;
}

@media screen and (max-width: 750px){
  .voice__list {
    margin-right: 15px;
    margin-left: 15px;
  }
  .voice__item__tag {
    margin-bottom: 8px;
  }
  .voice__item__tag span {
    padding: 4px 14px 2px;
  }
  .voice__item__ttl {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .voice__item__name {
    margin-top: 10px;
    padding-top: 12px;
    font-size: .8125rem;
  }
  .voice__item__img {
    width: 130px;
  }
}

/* case
-----------------------------------------------*/
.case {
  background: #F6F6F6;
  background: linear-gradient(180deg, rgba(246, 246, 246, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
.case__txt {
  text-align: center;
  line-height: 1.625;
  margin-bottom: 40px;
}
.case__list {
  display: flex;
  flex-wrap: wrap;
  gap: 42px 16px;
}
.case__item {
  width: calc( (100% - 48px) / 4 );
}
.case__item__img {
  margin-bottom: 16px;
}
.case__item__img img {
  width: 100%;
}
.case__item:hover {
  text-decoration: unset;
}
.case__item:hover .case__item__img {
  background: #000;
}
.case__item:hover .case__item__img img {
  opacity: .7;
}
.case__item__ttl {
  color: #003459;
  font-size: .9375rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.case__item__name {
  font-size: .875rem;
  color: #333;
}

@media screen and (max-width: 750px){
  .case__txt {
    font-size: .8125rem;
  }
  .case__list {
    gap: 24px 16px;
  }
  .case__item {
    width: calc( (100% - 16px) / 2);
  }
}

/* cta
-----------------------------------------------*/
.cta {
  background: #F6F6F6;
  padding: 90px 30px;
}
.bnr__list {
  display: flex;
  gap: 0 20px;
}
.bnr__item {
  width: 100%;
  min-height: 154px;
  background-color: #00AFDD;
  border: 4px solid #00AFDD;
  color: #fff;
  box-sizing: border-box;
  position: relative;
}
.bnr__item:hover {
  opacity: .7;
  text-decoration: unset;
}
.bnr__item__wrap {
  background-image: url(../img/icon_arrow_white.svg);
  background-position: top 20px right 20px;
  background-repeat: no-repeat;
  width: 100%;
  box-sizing: border-box;
  padding: 32px 20px 32px 44px;
  color: #fff;
}
.bnr__item__ttl {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 22px;
  margin-bottom: 16px;
  border-bottom: 1px solid #fff;
}
.bnr__item__txt {
  font-size: 1.125rem;
  font-weight: bold;
}
.bnr__item02 {
  background-color: #fff;
  border-color: rgba(129,180,59,.6);
  padding-right: 120px;
}
.bnr__item02 .bnr__item__wrap {
  background-image: url(../img/icon_arrow_green.svg);
  color: #81B43B;
}
.bnr__item02 .bnr__item__ttl {
  border-color: #81B43B;
  padding-right: 20px;
}
.bnr__item__img {
  width: 139px;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 750px){
  .cta {
    padding: 50px 16px;
  }
  .bnr__list {
    flex-direction: column;
    gap: 24px 0;
  }
  .bnr__item {
    min-height: unset;
  }
  .bnr__item__wrap {
    background-position: top 14px right 14px;
    background-size: 12px auto;
    padding: 20px 24px;
    color: #fff;
  }
  .bnr__item__ttl {
    font-size: 1.25rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .bnr__item__txt {
    font-size: .8125rem;
    line-height: 1.6;
  }
  .bnr__item02 {
    padding-right: 70px;
  }
  .bnr__item02 .bnr__item__ttl {
    padding-right: 8px;
  }
  .bnr__item__img {
    width: 100px;
    right: -16px;
  }
}
