@charset "UTF-8";

/*------------------------------
共通
------------------------------*/
@font-face {
	font-family: 'GenJyuuGothic-M';
	src: url(../font/GenJyuuGothic-Medium.ttf) format('truetype');
}
@font-face {
	font-family: 'GenJyuuGothic-B';
	src: url(../font/GenJyuuGothic-Bold.ttf) format('truetype');
}
@import url('https://fonts.googleapis.com/css2？family = Noto + Sans + JP：wght @ 500; 700＆ display = swap');
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  font-weight:500;
}
html {
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: #333;
  text-decoration: none;
  display: inline-block;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
}
.wrap-title {
  max-width: 1180px;
  margin: 0 auto;
}
img {
  max-width: 100%;
  display: block;
}
h2 {
  color: #222;
  font-size: 36px;
  font-family: 'GenJyuuGothic-B';
  text-align: center;
  margin-bottom: 35px;
}
h3 {
  color: #f78a6f;
  font-size: 26px;
  font-family: 'GenJyuuGothic-B';
  margin-bottom: 25px;
}
.tablet {
  display: none;
}
.sp {
  display: none;
}
.tablet-sp {
  display: none;
}

/*
breadcrumb
*/
.breadcrumb {
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
}
.breadcrumb ul {
  display: flex;
  height: 31px;
  align-items: center;
}
.breadcrumb li {
  font-size: 14px;
  line-height: 20px;
  padding-right: 10px;
}
.breadcrumb li a:hover  {
  opacity: 0.7;
}

/*
splash
*/
.splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #fff;
  color:#333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fadeUp{
  text-align: center;
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
from {
  opacity: 0;
  transform: translateY(100px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}
.splash img {
  margin: 0 auto;
}
.splash .nth-1 {
  font-size: 36px;
  font-family: 'GenJyuuGothic-B';
  color:  #ec759d;
  padding-top: 20px;
}
.splash .nth-2 {
  font-size: 18px;
  font-family: 'GenJyuuGothic-M';
  color:  #333;
  padding-top: 10px;
}

/*
scrollbar
*/
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 5px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #ddd;
}

/*-----------------------------
header
-----------------------------*/
.header {
  width: 100%;
  height: 114px;
  background-color: #fff;
  border-bottom: 2px solid #666;
  display: flex;
  align-items: center;
}
.header .wrap {
  width: 1080PX;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .nth-1 {
  display: flex;
  align-items: center;
}
.header .nth-1 .nth-3 {
  font-size: 30px;
  font-family: 'GenJyuuGothic-B';
  color: #ec759d;
}
.header .nth-1 {
  font-size: 22px;
  font-family: 'GenJyuuGothic-B';
}
.header .nth-10 {
  padding-right: 20px;
}
.header .nth-4 {
  font-size: 11px;
  padding-top: 5px;
  font-family: 'GenJyuuGothic-M';
  text-align: center;
}
.header .nth-2 p {
  text-align: right;
  font-size: 20px;
  font-weight: 700;
  color: #d66660;
  line-height: 1.2;
}
.header .nth-2 ul {
  display: flex;
}
.header .nth-2 a {
  display: inline-block;
  padding: 7px 10px;
}
.header .nth-2 li {
  position: relative;
}
.header .nth-2 li::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 3px;
  content: "";
  transition: all .2s ease-in-out;
  background-color: #ec759d;
  border-radius: 1.5px;
}
.header .nth-2 li:hover::after {
  width: 100%;
}

/*-----------------------------
main
-----------------------------*/
/*-----------------
index.html
-----------------*/
/*
main-visual
*/
.main-visual {
  position: relative;
}
.main-visual img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 600px;
}
.main-visual div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.main-visual .nth-1 {
  color: #FFF;
  font-size: 48px;
  font-family: 'GenJyuuGothic-B';
  text-align: center;
  padding: 0 150px 35px 150px;
}
.main-visual .nth-2 {
  color: #ec759d;
  font-family: 'GenJyuuGothic-M';
  text-align: center;
  line-height: 1.7;
  padding: 0 150px 0 150px;
}

/*
news
*/
.news {
  background-color: #fff;
  padding-top: 50px;
}
.news .nth-1 {
  display: flex;
  justify-content: center;
}
.news .nth-2 {
  display: flex;
  font-size: 18px;
  letter-spacing: 0.07em;
  padding: 20px 35px;
  background-color: #ffe2ef;
  border-radius: 15px;
  flex-direction: column;
}
.news p {
  font-size: 1em;
  letter-spacing: 2px;
  line-height: 1.6em;
}
.news .nth-3 {
    margin: 0 0 1em;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
}
@media screen and (max-width:767px){
  .news .nth-2 {
    padding: 20px 1em;
  }
  .news p strong {
    display: block;
  }
}

/*
about-sec
*/
.about-sec {
  background-color: #fff;
  /* padding: 70px 0; */
}
.about-sec .wrap {
  padding: 160px 0 195px 0;
  position: relative;
}
.about-sec .nth-1 {
  display: flex;
}
.about-sec .nth-2 {
  margin-right: 60px;
}
.about-sec p {
  padding-bottom: 35px;
}
.about-sec a {
  font-weight: 700;
  color: #fff;
  padding: 14px 39px;
  background-color: #f78a6f;
  border: 1px solid #f78a6f;
  border-radius: 5px;
  transition: 0.3s;
}
.about-sec a:hover {
  color: #f78a6f;
  background-color: #fff;
}
.about-sec .nth-3 {
  position: absolute;
  right: 20px;
  bottom: 30px;
}

/*
cooperation
*/
.cooperation {
  background-color:#fcd7e8;
  padding: 70px 0;
}
.cooperation .nth-1 {
  display: flex;
}
.cooperation .nth-1 img {
  margin-right: 55px;
}

/*
medicine
*/
.medicine .nth-12 {
  display: block;
}
.medicine .nth-13 {
  display: none;
}
.medicine {
  background-color: #fff;
  /* border-bottom: 1px solid #aaa; */
}
.medicine {
  padding: 70px 0 69px 0;
}
.medicine .nth-1 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.medicine .nth-2 {
  width: 30.5%;
}
.medicine .nth-2 img {
  margin-bottom: 25px;
}
.medicine .nth-2 p {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
  font-weight: 700;
}
.medicine .nth-3 {
  text-align: center;
  padding-top: 35px;
}
.medicine a {
  font-weight: 700;
  color: #fff;
  padding: 14px 39px;
  background-color: #f78a6f;
  border: 1px solid #f78a6f;
  border-radius: 5px;
  transition: 0.3s;
}
.medicine a:hover {
  color: #f78a6f;
  background-color: #fff;
}
.medicine .sp-swiper {
  display: none;
}

/*
flow
*/
.flow {
  padding: 70px 0 69px 0;
  /* border-bottom: 1px solid #aaa; */
  background-color: #fcd7e8;
}
.flow .nth-1 {
  width: 100%;
  padding: 15px 30px 15px 30px;
  display: flex;
  /* background-color: rgba(145,106,168,0.35); */
  background-color: #fff;
  border-radius: 8px;
  align-items: center;
}
.flow .nth-1 p:first-child {
  width: 20%;
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  width: 200px;
  margin-right: 20px;
  text-align: center;
}
/* .flow .inner-5 p:last-child {
  line-height: 28px;
  font-weight: 500;
  text-align: left;
  padding-top: 1px;
} */
.flow .nth-1 p:last-child {
  width: 80%;
  line-height: 28px;
  font-weight: 500;
  text-align: left;
  padding-top: 1px;
}
.flow .arrow {
  font-size: 27px;
  color: rgba(233,97,197,0.85);
  margin: 5px 0 8px 0;
  text-align: center;
}

/*
faq
*/
.faq {
  padding: 70px 0;
  position: relative;
}

.faq .wrap {
  position: relative;
  z-index: 5;
  background-color: rgba(255,255,255,0.8);
  padding: 50px 70px 70px 70px;
}
.faq li {
  margin-bottom: 30px;
}
.faq .nth-22 {
  display: flex;
  position: relative;
}
.faq .nth-23 {
  padding: 0 40px 0 25px;
  position: relative;
}
.faq .nth-23:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 15px;
  background-color: rgba(192,237,130,0.6);
}
.faq .nth-24 {
  padding: 0 10px 0 0;
  position: relative;
}
.faq .nth-24:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 15px;
  background-color: rgba(192,237,130,0.6);
}
.faq .nth-25 {
  width: 100%;
  display: flex;
  padding: 25px 30px 25px 20px;
  background-color: #fcd7e8;
  border-radius: 10px;
  margin: 40px 0 50px 0;
  position: relative;
}
.faq .nth-25::before {
  content: "";
  display: block;
  position: absolute;
  left: 21px;
  top: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8.5px 14.7px 8.5px;
  border-color: transparent transparent #fcd7e8 transparent;
}
.faq .nth-26 {
  padding-right: 40px;
}
.faq .nth-28 {
  padding-top: 20px;
  text-align: center;
}
.faq a {
  font-weight: 700;
  color: #fff;
  padding: 14px 39px;
  background-color: #f78a6f;
  border: 1px solid #f78a6f;
  border-radius: 5px;
  transition: 0.3s;
}
.faq a:hover {
  color: #f78a6f;
  background-color: #fff;
}
.faq-bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: -1;
  overflow: hidden;
}
.faq-bg .nth-20 {
  position: absolute;
  top: -292px;
  left: -282px;
}
.faq-bg .nth-21 {
  position: absolute;
  right: -236px;
  bottom: -208px;
}

/*-----------------
about.html
-----------------*/
/*
title-bg
*/
.title-bg {
  background-color: rgba(236,117,157,0.4);
}
.title-bg .wrap-title {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about .title-bg .nth-4 {
  position: absolute;
  right: 126px;
  bottom: 9px;
}
.title-bg .nth-2 {
  position: absolute;
  left: 40px;
  top: -45px;
}
.title-bg .nth-3 {
  position: absolute;
  right: 0px;
  bottom: -70px;
}
.title-bg .nth-1 {
  color: #c7606e;
  font-size: 40px;
  font-family: 'GenJyuuGothic-B';
  position: relative;
}
.about .title-bg .nth-1 {
  letter-spacing : 0.05em;
}
.title-bg .nth-1::after {
  content: "";
  width: 60%;
  height: 10px;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -17px;
  background-color: #fff;
  transform: translateX(-50%);
  border-radius: 5px; 
}

/*
service
*/
.service {
  padding: 70px 0 120px 0;
}
.service > div {
  display: flex;
}
.service .nth-1 {
  order: 2;
  width: 42%;
}

.service .nth-3-over {
  display: flex;
  padding-top: 52px;
}
.service .nth-3 {
  width: 60%;
  max-width: 265px;
  position: relative;
  margin-left: 55px;
  margin-right: 40px;
  opacity: 0;
  transition: 0.3s;
}
.service .nth-3 img,
.service .nth-4 img,
.service .nth-15 img,
.service .nth-16 img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.service .nth-3::before {
  position: absolute;
  z-index: -1;
  right: -34px;
  bottom: -43px;
  content: '';
  display: inline-block;
  background-image: url(../img/320.png);
  background-size: contain;
}

.service .nth-4-over {
  display: flex;
  justify-content: flex-end;
  padding-top: 180px;
  margin-right: -21px;
}
.service .nth-4 {
  width: 50%;
  max-width: 200px;
  position: relative;
  opacity: 0;
  transition: 0.3s;
}
.service .nth-4::before {
  position: absolute;
  z-index: -1;
  right: -45px;
  bottom: -54px;
  content: '';
  display: inline-block;
  background-image: url(../img/311.png);
  background-size: contain;
}
.service .nth-15-over {
  display: flex;
  justify-content: flex-end;
  padding-top: 170px;
}
.service .nth-15 {
  width: 57%;
  max-width: 294px;
  position: relative;
  margin-right: 30px;
  opacity: 0;
  transition: 0.3s;
}
.service .nth-15::before {
  position: absolute;
  z-index: -1;
  right: -21px;
  bottom: -38px;
  content: '';
  display: inline-block;
  background-image: url(../img/303-s.png);
  background-size: contain;
}
.service .nth-16-over {
  display: flex;
  justify-content: flex-end;
  padding-top: 160px;
}
.service .nth-16 {
  width: 50%;
  max-width: 294px;
  position: relative;
  margin-right: 30px;
  opacity: 0;
  transition: 0.3s;
}
.service .nth-16::before {
  position: absolute;
  z-index: -1;
  right: -15px;
  bottom: -38px;
  content: '';
  display: inline-block;
  background-image: url(../img/306-s.png);
  background-size: contain;
}
.service .nth-2 {
  order: 1;
  width: 58%;
}
.service .nth-2 p {
  padding-bottom: 30px;
}
.service .nth-2 .nth-5 {
  padding-bottom: 0px;
}
.service .nth-2 .nth-11 {
  padding-bottom: 20px;
}
.service .nth-2 .nth-20 {
  padding-bottom: 0px;
}
.service .nth-10 {
  color: #7c75ec;
}
.service .nth-10:hover {
  opacity: 0.7;
}

/*
effort
*/
.effort {
  padding: 70px 0;
  background-color: rgba(236,117,157,0.4);
}
.effort .wrap {
  padding: 50px;
  background-color: #fff;
}
.effort .wrap .nth-1 {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.effort .wrap .nth-2,
.effort .wrap .nth-3 {
  display: flex;
  align-items: flex-start;
  padding-bottom: 50px;
}
.effort .wrap .nth-4 {
  display: flex;
  align-items: flex-start;
}
.effort .wrap .nth-2 .nth-11,
.effort .wrap .nth-4 .nth-11 {
  padding-left: 55px;
}
.effort .wrap .nth-3 .nth-11 {
  padding-right: 55px;
  order: 1;
}
.effort .wrap .nth-3 .nth-10 {
  order: 2;
}
.effort .nth-10 {
  width: 45%;
}
.effort .nth-11 {
  width: 55%;
}
.effort .nth-10 img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.effort .nth-4 .nth-13 {
  margin-bottom: 10px;
}
.effort .nth-4 .nth-12 {
  margin-bottom: 10px;
}
.effort .nth-4 .nth-12 img {
  width: 100%;
  height: auto;
}
.effort .nth-12 .pc {
  padding: 8px 0 0 0;
}

/*---------------------
medicine_detail.html
---------------------*/
/*
title-bg
*/
.medicine_detail .title-bg .nth-1 {
  letter-spacing: 0.1em;
}
.medicine_detail .title-bg .nth-4 {
  position: absolute;
  right: 182px;
  bottom: 26px;
}

/*
medicine-1
*/
.medicine-1 {
  display: flex;
  padding: 100px 0 100px 0;
  justify-content: center;
  align-items: center;
}
.medicine-1 .inner {
  max-width: 800px;
}
.arrow_box{
  position:relative;
  /* width:300px; */
  /* height:140px; */
  background:#FFFFFF;
  padding:20px;
  margin-left: 35px;
  text-align:left;
  border:1px solid #707070;
  color:#333333;
  /* font-size:14px; */
  /* font-weight:bold; */
  border-radius:15px;
  -webkit-border-radius:15px;
  -moz-border-radius:15px;
}
.arrow_box:after,.arrow_box:before{
  border: solid transparent;
  content:'';
  height:0;
  width:0;
  pointer-events:none;
  position:absolute;
  right:100%;
  top:65%;
}
.arrow_box:after{
  border-color: rgba(255, 255, 255, 0);
  border-top-width:5px;
  border-bottom-width:5px;
  border-left-width:11px;
  border-right-width:11px;
  margin-top: -5px;
  border-right-color:#FFFFFF;
}
.arrow_box:before{
  border-color: rgba(112, 112, 112, 0);
  border-top-width:6px;
  border-bottom-width:6px;
  border-left-width:13px;
  border-right-width:13px;
  margin-top: -6px;
  margin-right: 1px;
  border-right-color:#707070;
}

/*
medicine-2
*/
.medicine-2 {
  display: flex;
  padding: 70px 50px 70px 0;
  background-color: #eefbff;
}
.medicine-2 .nth-1 {
  padding-left: 50px;
  max-width: 710px;
}
.medicine-2 h2 {
  color: #f78a6f;
  font-size: 26px;
  font-family: 'GenJyuuGothic-B';
  text-align: left;
  margin-bottom: 100px;
}
.medicine-2 h2::after {
  content: url(../img/343420.png);
  vertical-align: middle;
  padding-left: 15px;
}
.medicine-2 .nth-2 {
  padding-bottom: 35px;
}
.medicine-2 .nth-3 {
  padding-bottom: 35px;
  font-size: 20px;
  color: #f78a6f;
}
.medicine-2 .nth-4 {
  padding-bottom: 35px;
}
.medicine-2 .nth-5 {
  padding-bottom: 35px;
}

/*
medicine-3
*/
.medicine-3 {
  padding: 70px 0;
}
.medicine-3 .nth-1 {
  display: flex;
  padding: 30px 30px 30px 0;
  max-width: 1110px;
}
.medicine-3 .nth-1 > div{
  padding-right: 80px;
}

.medicine-3 .nth-1 h2 {
  color: #f78a6f;
  font-size: 26px;
  font-family: 'GenJyuuGothic-B';
  text-align: left;
  margin-bottom: 40px;
}
.medicine-3 .nth-1 h2::after {
  content: url(../img/343420.png);
  vertical-align: middle;
  padding-left: 15px;
}
.medicine-3 .nth-4 {
  color: #555;
  font-size: 20px;
  font-family: 'Arphic Gothic4JIS';
  text-align: left;
  margin: 60px 0 45px 0;
}
.medicine-3 .nth-4::before {
  content: "";
  vertical-align: middle;
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #ffabd5;
  margin: 0 20px 0 20px;
}
.medicine-3 .nth-1 img {
  margin-right: -35px;
}
.medicine-3 .nth-2 {
  display: flex;
  padding: 30px 0;
}
.medicine-3 .nth-2 > div {
  padding-left: 80px;
  max-width: 805px;
}
.medicine-3 .nth-3 {
  display: flex;
  padding: 30px 0;
  justify-content: flex-end;
}
.medicine-3 .nth-3 > div {
  padding: 0 80px 0 80px;
}



/*---------------------
information.html
---------------------*/
/*
title-bg
*/
.information .title-bg .nth-1 {
  letter-spacing: 0.2em;
}
.information .title-bg .nth-4 {
  position: absolute;
  right: 142px;
  bottom: 26px;
}

/*
infor-sec
*/
.info-sec {
  padding: 70px 0;
  background-color: #fcd7e8; 
}
.info-sec .wrap {
  background-color: #fff;
  padding: 50px 80px;
}
.info-sec .nth-1 {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50px;
} 
.info-sec li {
  display: flex;
  border-bottom: 1px solid #666;
  text-align: left; 
}
.info-sec li:first-child {
  border-top: 1px solid #666;
}
.info-sec li p:first-child {
  flex: 0 0 200px;
  padding: 24px 0 24px 0;
  margin: 0 10px 0 20px; 
}
.info-sec li p:last-child {
  padding: 24px 10px 24px 0;
}
.info-sec .nth-10 {
  position: relative;
  margin-left: 35px;
  color: #7c75ec;
}
.info-sec .nth-10:hover {
  opacity: 0.7;
}
.info-sec .nth-10::before {
  content: url(../img/655609_s.png);
  position: absolute;
  top: -2px;
  left: -30px;
}

/*
access-sec
*/
.access-sec h2 {
  font-size: 40px;
  color: #ce707e;
  padding-bottom: 50px;
  position: relative;
  width: max-content;
  margin: 0 auto;
  letter-spacing: 0.1em;
}
.access-sec h2::after {
  content: "";
  width: 40%;
  height: 4px;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 41px;
  background-color: #ce707e;
  transform: translateX(-50%);
  border-radius: 2px;
}

/*---------------------
access.html
---------------------*/
/*
title-bg
*/
.access .title-bg .nth-1 {
  letter-spacing: 0.1em;
}
.access .title-bg .nth-4 {
  position: absolute;
  right: 146px;
  bottom: -9px;
}

/*
access-sec
*/
.access-sec {
  padding-top: 70px;
  padding-bottom: 70px;
}
.access-sec p {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.access-sec div {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}
.access-sec img {
  width: 100%;
}

/*-----------------------------
footer
-----------------------------*/
.footer-1 {
  background-color: rgb(215 245 202);
  padding-top: 50px;
}
.footer-1 .wrap {
  display: flex;
  border-bottom: 1px solid #808080;
  justify-content: center;
}
.footer-1 .nth-1 {
  display: flex;
  align-items: center;
  padding: 9px 110px 13px 0;
}
.footer-1 .nth-1 .nth-20 {
  margin-right: 20px;
}
.footer-1 .nth-1 img {
  margin-right: 0px;
}
.footer-1 .nth-3 {
  font-size: 26px;
  font-family: 'GenJyuuGothic-B';
  color: #ec759d;
}
.footer-1 .nth-4 {
  font-size: 10px;
  margin-top: 5px;
  font-family: 'GenJyuuGothic-M';
}
.footer-1 .nth-2 p {
  font-size: 15px;
  line-height: 1.5;
}
.footer-2 {
  background-color: rgb(215 245 202);
  padding: 15px 0 50px 0;
}
.footer-2 ul {
  display: flex;
  justify-content: center;
  font-size: 14px;
}
.footer-2 ul a {
  justify-content: center;
  padding: 0 17px;
  transition: 0.3s;
}
.footer-2 ul a:hover {
  opacity: 0.7;
}
.footer-3 {
  background-color: rgb(204 243 187);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  font-size: 14px;
}
.footer-1 .nth-10 {
  position: relative;
  margin-left: 35px;
  color: #7c75ec;
}
.footer-1 .nth-10:hover {
  opacity: 0.7;
}
.footer-1 .nth-10::before {
  content: url(../img/655609_s.png);
  position: absolute;
  top: -2px;
  left: -30px;
}

/*---------------------------------------
タブレット版 768px ~ 1024px
----------------------------------------*/
@media screen and (max-width: 1024px) {
/*------------------------
共通
------------------------*/
.pc {
  display: none;
}
.tablet {
  display: block;
}
.tablet-sp {
  display: block;
}
.wrap {
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 30px;
  margin-right: 30px;
}
html {
  font-size: 15px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 25px;
  margin-bottom: 20px;
}

/*
splash
*/
.splash .nth-1 {
  font-size: 34px;
  padding-top: 20px;
}
.splash .nth-2 {
  font-size: 16px;
  padding-top: 10px;
}

/*------------------------
headaer
------------------------*/
.header {
  height: 70px;
}
.header .nth-10 {
  padding-right: 15px;
}
.header .nth-1 img {
  width: 41px;
  margin-right: 0px;
}
.header .nth-1 .nth-3 {
  font-size: 26px;
  margin-right: 15px;
  display: inline-block;
}
.header .nth-1 .nth-14 {
  font-size: 11px;
  font-family: 'GenJyuuGothic-M';
}
.header .nth-2 {
  display: none;
}
.menu-trigger {
  display: inline-block;
  width: 40px;
  height: 26px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 100;
  transform: translateX(0);
  transition: transform .5s;
}
.menu-trigger.active {
  transform: translateX(-260px);
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(11.6px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-11.6px) rotate(45deg);
}
#slide_menu {
  width: 260px;
  height: 100%;
  padding-top: 0;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(260px);
  transition: all .5s;
}
#slide_menu.open {
  transform: translateZ(0);
}
#slide_menu li {
  text-align: center;
  border-bottom: 1px dashed #D5D1CA;
  text-align: left;
}
#slide_menu li a {
  position: relative;
  display: block;
  padding: 23px 20px;
  color: #333;
  overflow-wrap: break-word;
}
.wrapper {
  height: 100%;
  overflow-x: hidden;
  position: relative;
}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(67, 65, 59, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}
/*-----------------------------
main
-----------------------------*/
/*
main-visual
*/
.main-visual {
  position: relative;
}
.main-visual img {
  height: 450px;
}
.main-visual .nth-1 {
  font-size: 32px;
  padding: 0 80px 35px 80px;
}
.main-visual .nth-2 {
  line-height: 1.5;
  padding: 0 80px 0 80px;
}

/*
news
*/
.news .nth-2 {
  border-radius: 13px;
}

/*
about-sec
*/
.about-sec {
  padding-top: 50px;
  padding-bottom: 50px;
}
.about-sec .nth-1 {
  display: flex;
  align-items: flex-start;
}
.about-sec .nth-2 {
  margin-right: 40px;
  width: 35%;
}
.about-sec .nth-3 {
  width: 106px;
}
.about-sec p {
  padding-bottom: 30px;
}

/*
cooperation
*/
.cooperation {
  padding: 50px 0;
}
.cooperation .nth-1 img {
  margin-right: 40px;
  width: 43%;
}

/*
medicine
*/


@media screen and (max-width: 850px) {
.medicine .nth-12 {
  display: none;
}
.medicine .nth-13 {
  display: block;
}
}
.medicine {
  padding-top: 50px;
  padding-bottom: 49px;
}
.medicine .nth-2 p {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
  font-weight: 700;
}

/*
flow
*/
.flow {
  padding-top: 50px;
  padding-bottom: 49px;
}
.flow .nth-1 p:first-child {
  font-size: 15px;
  line-height: 21px;
  
}

/*
faq
*/
.faq {
  padding-top: 50px;
  padding-bottom: 50px;
}
.faq > div {
  margin-bottom: 45px;
}

/*-----------------
about.html
-----------------*/
/*
title-bg
*/
.title-bg .wrap-title {
  height: 124px;
}
.title-bg .nth-1 {
  font-size: 30px;
}
.title-bg .nth-1::after {
  height: 6px;
  bottom: -11px;
  border-radius: 3px;
}
.title-bg .nth-2 {
  width: 96px;
  top: -18px;
}
.title-bg .nth-3 {
  width: 96px;
  right: 10px;
  bottom: -35px;
}
.about .title-bg .nth-4 {
  width: 149px;
  right: 75px;
  bottom: 3px;
}

/*
service
*/
.service {
  margin-left: 0px;
  margin-right: 0px;
  padding: 50px 30px;
  overflow: hidden;
}
.service {
  padding: 50px 30px;
}
.service .nth-1 {
  order: 2;
  width: 38%;
}
.service .nth-2 {
  order: 1;
  width: 62%;
}
.service .nth-3-over {
  padding-top: 55px;
}
.service .nth-16-over {
  padding-top: 200px;
}
.service .nth-4-over {
  padding-top: 220px;
}
.service .nth-15-over {
  padding-top: 210px;
}

/*
effort
*/
.effort {
  padding: 50px 0;
}
.effort .wrap {
  margin-left: 20px;
  margin-right: 20px;
  padding: 50px 20px;
}
.effort .wrap .nth-1 {
  max-width: 598px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.effort .nth-12 .tablet {
  padding: 10px 70px 0 0;
}

/*---------------------
medicine_detail.html
---------------------*/
/*
title-bg
*/
.medicine_detail .title-bg .nth-4 {
  width: 130px;
  right: 114px;
  bottom: 10px;
}

/*
medicine-sec
*/
.medicine-1 .inner {
  max-width: 100%;
}
.medicine-sec {
  padding: 50px 0;
}
.medicine-sec .nth-1 {
  max-width: 598px;
  padding-bottom: 40px;
}
.medicine-sec .nth-2 img,
.medicine-sec .nth-4 img {
  width: 250px;
}
.medicine-sec .nth-3 img {
  width: 250px;
}

/*---------------------
information.html
---------------------*/
/*
title-bg
*/
.information .title-bg .nth-4 {
  width: 150px;
  right: 97px;
  bottom: 17px;
}

/*
infor-sec
*/
.info-sec {
  padding: 50px 0;
}
.info-sec .wrap {
  padding: 50px 40px;
}
.info-sec .nth-1 {
  max-width: 598px;
}
.info-sec li p:first-child {
  flex: 0 0 140px;
}

/*---------------------
access.html
---------------------*/
/*
title-bg
*/
.access .title-bg .nth-1 {
  letter-spacing: 0.1em;
}
.access .title-bg .nth-4 {
  width: 158px;
  right: 101px;
  bottom: -7px;
}

/*
access-sec
*/
.access-sec {
  padding-top: 50px;
  padding-bottom: 50px;
}
.access-sec p {
  max-width: 598px;
  padding-bottom: 35px;
}
.access-sec div {
  padding-bottom: 35px;
}
.access-sec iframe {
  width: 598px;
  height: 400px;
}

/*-----------------------------
footer
-----------------------------*/
.footer-1 {
  padding-top: 35px;
}
.footer-1 .nth-1 img {
  margin-right: 0px;
  width: 53px;
}
.footer-1 .nth-3 {
  font-size: 24px;
}
.footer-1 .nth-4 {
  font-size: 16px;
}
.footer-1 .nth-2 p {
  font-size: 14px;
}
.footer-1 .nth-1 {
  padding: 15px 110px 25px 0;
}
.footer-2 {
  padding: 15px 0 35px 0;
}
.footer-3 {
  height: 26px;
  font-size: 12px;
}

}

/*---------------------------------------
スマートフォン版 ~ 767px
----------------------------------------*/
@media screen and (max-width: 767px) {
/*-----------------------
共通
-----------------------*/
.tablet {
  display: none;
}
.sp {
  display: block;
}
.pc-tablet {
  display: none;
}
.wrap {
  margin-left: 20px;
  margin-right: 20px;
}
/*
splash
*/
.splash .nth-1 {
  font-size: 28px;
  padding-top: 20px;
}
.splash .nth-2 {
  font-size: 13px;
  padding-top: 10px;
}



/*-----------------------------
header
-----------------------------*/
.header .nth-1 .nth-3 {
  font-size: 19px;
  margin-right: 0px;
  display: block;
}
.header .nth-1 .nth-24 {
  font-size: 11px;
  font-family: 'GenJyuuGothic-M';
}
.menu-trigger {
  right: 20px;
}

/*-----------------------------
main
-----------------------------*/
/*
main-visual
*/
.main-visual img {
  height: 550px;
  object-position: 25% 50%;
}
.main-visual .nth-1 {
  font-size: 32px;
  padding: 0 20px 35px 20px;
}
.main-visual .nth-2 {
  padding: 0 20px 0 20px;
}

/*
news
*/
.news .nth-2 {
  display: block;
  margin:  0 15px;
}
.news .nth-3 {
  text-align: center;
  margin: 0 0 15px;
}

/*
about-sec
*/
.about-sec .nth-1 {
  display: block;
}
.about-sec .nth-2 {
  margin-right: 0px;
  width: 244px;
  margin: 0 auto 30px;
}
.about-sec a {
  font-weight: 700;
  color: #fff;
  padding: 14px 39px;
  background-color: #f78a6f;
  border: 1px solid #f78a6f;
  border-radius: 5px;
  transition: 0.3s;
  margin: 0 auto;
}
.about-sec .nth-3 {
  display: none;
}
.about-sec .nth-4 {
  text-align: center;
}

/*
cooperation
*/
.cooperation .nth-1 {
  display: block;
}
.cooperation .nth-1 img {
  margin-right: 0px;
  width: 100%;
  margin-bottom: 35px;
}

/*
medicine
*/
.medicine .nth-10 {
  display: block;
}
.medicine .nth-11 {
  display: none;
}
@media screen and (max-width: 400px) {
.medicine .nth-10 {
  display: none;
}
.medicine .nth-11 {
  display: block;
}
}
.medicine .sp-swiper {
  display: block;
}
.medicine .swiper--wrapper {
  width: 100%;
  height: auto;
}
.medicine .swiper-slide {
  width: 100%;
  height: auto;
}
.medicine .swiper-slide img{
  width: 100%;
  height: auto;
}
.medicine .medicine-bg {
  padding: 20px 10px 60px;
  font-size: 15px;
  font-weight: 700;
}
.medicine .nth-3 {
  text-align: center;
  padding-top: 25px;
}

/*
flow
*/
.flow .nth-1 {
  padding: 20px;
  display: block;
}
.flow .nth-1 p:first-child {
  text-align: center;
  margin-right: 0px;
  width: auto;
  padding-bottom: 9px;
}
.flow .nth-1 .sp {
  padding: 8px 10px 0 10px;
}

/*
faq
*/
.faq > div {
  display: block;
  margin-bottom: 45px;
}
.faq .nth-1 {
  width: 90px;
  height: auto;
  display: inline-block;
  padding-bottom: 20px;
}
.faq .nth-2 {
  margin-left: 0px;
}
.faq .nth-3 {
  display: block;
  align-items: center;
  padding-bottom: 15px;
}
.faq .nth-4 {
  margin-bottom: 15px;
}
.faq .nth-12 {
  display: inline-block;
  padding: 0 0 30px 30px;
}
.faq .nth-8::after {
  display: none;
}

/*-----------------
about.html
-----------------*/
/*
title-bg
*/
.title-bg .nth-3 {
  display: none;
}
.title-bg .nth-2 {
  width: 50px;
  top: -7px;
}
.about .title-bg .nth-4 {
  width: 95px;
  right: -6px;
  bottom: 0px;
}
.title-bg .nth-1::after {
  width: 50%;
  height: 5px;
  bottom: -10px;
  border-radius: 2.5px;
}

/*
service
*/
/* .service .nth-4 {
  display: none;
} */
.service > div {
  display: block;
}
.service .nth-1 {
  width: 100%;
}
.service .nth-2 {
  width: 100%;
}
.service .nth-3-over {
  padding-top: 0px;
  padding-bottom: 70px;
}
.service .nth-4-over {
  padding-top: 0px;
  padding-bottom: 60px;
  padding-right: 20px;
  margin-right: 35px;
}

.service .nth-15-over {
  padding-top: 0px;
  padding-bottom: 60px;
  padding-right: 69px;
}
.service .nth-16-over {
  padding-top: 0px;
  padding-bottom: 60px;
  padding-right: 69px;
}
.service {
  padding: 50px 20px;
  margin-left: 0px;
  margin-right: 0px;
}

/*
effort
*/
.effort .wrap {
  margin-left: 13px;
  margin-right: 13px;
  padding: 50px 17px;
}
.effort .wrap .nth-2,
.effort .wrap .nth-3 {
  display: block;
  padding-bottom: 50px;
}
.effort .wrap .nth-4 {
  display: block;
}
.effort .nth-2 img,
.effort .nth-4 img {
  width: 100%;
  padding-right: 0px;
  margin-bottom: 20px;
}
.effort .nth-3 img {
  width: 100%;
  padding-left: 0px;
  margin-bottom: 20px;
}
.effort .nth-10 {
  width: 100%;
  margin-bottom: 20px;
}
.effort .wrap .nth-2 .nth-11,
.effort .wrap .nth-4 .nth-11 {
  padding-left: 0px;
}
.effort .nth-11 {
  width: 100%;
}
.effort .wrap .nth-3 .nth-11 {
  padding-right: 0px;
}
.effort .nth-12 .sp {
  padding: 10px 15px 0 15px;
}

/*---------------------
medicine_detail.html
---------------------*/
/*
title-bg
*/
.medicine_detail .title-bg .nth-4 {
  width: 80px;
  right: 8px;
  bottom: 7px;
}

/*
medicine_detail
*/
.medicine-sec .nth-2,
.medicine-sec .nth-3 {
  display: block;
}
.medicine-sec .nth-4 {
  display: block;
}
.medicine-sec .nth-2 img,
.medicine-sec .nth-4 img {
  width: 100%;
  margin-bottom: 25px;
}
.medicine-sec .nth-3 img {
  width: 100%;
  margin-bottom: 25px;
}
.medicine-sec .nth-2 div,
.medicine-sec .nth-4 div {
  padding-left: 0px;
}
.medicine-sec .nth-3 div {
  padding-right: 0px;
}

/*---------------------
information.html
---------------------*/
/*
title-bg
*/
.information .title-bg .nth-4 {
  width: 91px;
  right: 13px;
  bottom: 13px;
}

/*
infor-sec
*/
.info-sec .wrap {
  margin-left: 13px;
  margin-right: 13px;
  padding: 50px 17px;
}
.info-sec .nth-1 {
  padding-bottom: 40px;
}
.info-sec li {
  display: block;
}
.info-sec li p:first-child {
  margin: 0 10px 0 10px;
  padding: 20px 0 0 0;
}
.info-sec li p:last-child {
  padding: 18px 10px 18px 10px;
}

/*---------------------
access.html
---------------------*/
/*
title-bg
*/
.access .title-bg .nth-4 {
  width: 102px;
  right: 13px;
  bottom: 0px;
}
.access-sec p {
  max-width: 598px;
  padding-bottom: 35px;
  margin: 0 20px;
}

/*-----------------------------
footer
-----------------------------*/
.footer {
  display: flex;
  flex-direction:column;
}
.footer-1 {
  order: 2;
  padding-top: 0px;
  padding-bottom: 35px; 
  
}
.footer-1 .wrap {
  display: block;
  border-bottom: 0px;
  justify-content: center;
}
.footer-1 .nth-1 {
  margin: 0;
  padding: 35px 110px 15px 0;
  border-top: 1px solid #808080;
}
.footer-2 {
  order: 1;
}
.footer-2 {
  padding: 30px 0 30px 0;
}
.footer-2 ul {
  display: flex;
  margin: 0 20px;
  font-size: 14px;
  flex-wrap: wrap
}
.footer-2 ul li {
  width: 50%;
}
.footer-2 ul a {
  padding: 0px;
  display: block;
}

.footer-2 ul a  {
  margin-bottom: 20px;
}
.footer-2 ul .nth-5 {
  margin-bottom: 0px;
}
.footer-3 {
  order: 3;
}

}

.Dx_flex .text_area .br_pc {
  display: block;
}

/*------------------------------
  共通 20240419_update
------------------------------*/


.Dx_service {
  width:100%;
  padding:6em 0;
  background: #ffabd1;
}


.Dx_service .inner {
  width: clamp(300px,96%,1200px);
  margin: 0 auto;
  border-radius: 1em;
  background: #fff;
  box-sizing: border-box;
  padding: 3em;
}
.Dx_service .inner h3 {
  text-align: center;
    color: #000;
    letter-spacing: 0.2em;
}
.Dx_service .inner .Dx_flex {
  display: flex;
  align-items: center;
  padding: 2em 0;
  flex-wrap: wrap;
}
.Dx_service .inner .Dx_flex a {
  display: block;
  margin: 3em 0 0 auto;
  font-size: 1em;
  letter-spacing: 0.1em;
  color: #ff6464;
  text-align: right;
}

.Dx_service .inner .Dx_flex.Dx_re {
  flex-direction: row-reverse;
  align-items: flex-start;
}
.Dx_service .inner .Dx_flex.Dx_re .text_area {
  padding:0 0 0 1em ;
  width:calc(100% - 260px);
}


.Dx_service .inner .Dx_flex.Dx_re .text_area p {
  width: clamp(300px, 100%, 600px);
  margin: 0 auto;
  font-size: clamp(0.9em, 2vw, 1.1em);
}

.Dx_service .inner .Dx_flex.Dx_re figure {
  width: 260px;
}


.Dx_service .inner .Dx_flex .text_area {
  width:calc(100% - 200px);
  box-sizing: border-box;
  padding:0 1em 0 0;
  font-size: 1em;
  line-height: 1.8em;
}
.Dx_service .inner .Dx_flex .text_area h3 {
  text-align: left;
  width: clamp(300px, 100%, 600px);
  margin: 0 auto 1em;
}
.Dx_flex .text_area span {
  display: block;
  padding:0.3em 0 0;
  font-size: 0.9em;
}
.Dx_service .inner .Dx_flex figure {
  width:200px;
}


@media screen and (max-width:767px) {
  .Dx_flex .text_area .br_pc {
    display: none;
  }

  .Dx_service .inner {
    padding: 1.6em;
  }
  .Dx_service .inner h3 {
    font-size: 1.4em;
    letter-spacing: 0.1em;
  }
  .Dx_service .inner .Dx_flex {
    flex-direction: column;
  }
  .Dx_service .inner .Dx_flex.Dx_re {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }
  .Dx_service .inner .Dx_flex.Dx_re .text_area {
    padding:0;
    width: calc(100% - 0px);
  }
  .Dx_service .inner .Dx_flex .text_area {
    width: calc(100% - 0px);
  }
  .Dx_service .inner .Dx_flex a {
    margin: 1em 0 2em auto;
  }
  .Dx_service .inner .Dx_flex figure {
    margin: 0 auto;
  }



}