@charset "UTF-8";
/*----------------reset--------------------*/
html, body, main, header, section, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  font-size: 16px;
}

article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: #000;
  display: block;
  text-decoration: none;
  font-size: 14px;
}

p {
  font-size: 16px;
}

img {
  width: 100%;
}

main {
  display: block;
  margin: 104px 0 0;
}

@media only screen and (max-width: 550px) {
  main {
    margin: 90px 0 0;
  }
}

/* ---------------------------- #header ------------------------------- */
#header {
  background: #e85377;
  padding: 20px 188px;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 104px;
}

#header .hamburger_body {
  display: none;
}

#header h1 {
  float: left;
  max-width: 150px;
}

#header h1 a {
  padding: 20px 0;
}

#header nav {
  width: 760px;
  float: right;
}

#header nav ul {
  width: 100%;
  overflow: hidden;
}

#header nav ul li {
  float: left;
  margin: 0 44px 0 0;
}

#header nav ul li a {
  color: #fff;
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
  font-size: 18px;
  padding: 20px 0;
}

#header nav ul li:last-child {
  margin: 0;
}

@media only screen and (max-width: 1350px) {
  #header {
    padding: 20px 3%;
  }
  #header nav {
    /* max-width: 760px; */
    width: 75%;
  }
  #header nav ul li {
    margin: 0 4% 0 0;
  }
}

@media only screen and (max-width: 899px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    height: 90px;
    width: 100%;
    z-index: 10;
  }
  #header .hamburger_body {
    float: right;
    display: block;
    height: auto;
    width: 40px;
  }
  #header .hamburger_body .hamburger {
    height: 40px;
    width: 100%;
    position: relative;
  }
  #header .hamburger_body .hamburger span {
    background: #fff;
    height: 3px;
    width: 40px;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  #header .hamburger_body .hamburger span:nth-child(2) {
    top: 13px;
  }
  #header .hamburger_body .hamburger span:nth-child(3) {
    top: 25px;
  }
  #header .hamburger_body p {
    color: #fff;
    font-size: 12px;
    text-align: center;
  }
  #header .hamburger_body.show .hamburger span:nth-of-type(1) {
    -webkit-transform: translateY(14px) rotate(-45deg);
    transform: translateY(14px) rotate(-45deg);
  }
  #header .hamburger_body.show .hamburger span:nth-of-type(2) {
    opacity: 0;
  }
  #header .hamburger_body.show .hamburger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
  #header nav {
    background: #e85377;
    position: absolute;
    top: -400px;
    left: 0;
    z-index: -1;
    height: auto;
    width: 100%;
    padding: 0 0 30px;
  }
  #header nav ul {
    width: 100%;
  }
  #header nav ul li {
    float: none;
    width: 100%;
  }
  #header nav ul li a {
    text-align: center;
  }
  #header nav.show {
    top: 90px;
  }
  #header h1 {
    width: 40%;
  }
  #header h1 a {
    padding: 15px 0;
  }
  #header.show {
    overflow: initial;
  }
}

/* ---------------------------- #footer ------------------------------- */
#footer {
  background: #fff;
  padding: 42px 0;
}

#footer p {
  font-size: 14px;
  text-align: center;
}

@media only screen and (max-width: 550px) {
  #footer p {
    font-size: 12px;
  }
}

/* ---------------------------- #index ------------------------------- */
#index .pink {
  color: #e85377;
}

#index span {
  display: block;
}

.top .mainimg {
  position: relative;
}

.top .mainimg .topmsg {
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 31px 0;
  width: 100%;
}

.top .mainimg .topmsg p:first-child {
  max-width: 241px;
  margin: 0 auto 10px;
}

.top .mainimg .topmsg p:last-child {
  max-width: 890px;
  margin: 0 auto;
}

.top .concept {
  padding: 74px 0 86px;
}

.top .concept h2 {
  font-size: 20px;
  text-align: center;
  margin: 0 auto 20px;
}

.top .concept p {
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
}

/* youtube */

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.sp {
  display: none;
}

.youtube {
    background: url(../img/cancer_background_2.jpg) no-repeat top left;
    background-size: cover;
    padding: 50px 0;
}

.youtube div {
  max-width: 990px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.youtube div ul {
  box-sizing: border-box;
  /*float: left;*/
}

.youtube h2 {
  color: #fff;
  font-size: 25px;
  text-align: center;
  margin: 0 0 30px;
}

.youtube .btn {
  overflow: hidden;
  width: 25%;
}

.youtube .btn li {
  box-sizing: border-box;
  color: #fff;
  margin: 0 0 10px;
  position: relative;
}

.youtube .btn li:hover,
.youtube .btn li.active {
  color: #e85377;
}

.youtube .btn li a {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 0 0 25px;
}

.youtube .btn li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 5px;
}

.youtube .btn li::before:hover {
  color: #e85377;
}

.youtube .left {
  float: left;
  padding: 0 20px 0 0;
}

.youtube .right {
  float: right;
  margin: 0 0 0 20px;
  width:calc(25% - 20px);
}

.youtube .btn li.active a {
  color: #e85377;
}

.youtube .btn li:hover a {
  color: #e85377;
  cursor: pointer;
}

.youtube .movie {
  box-sizing: border-box;
  display: none;
  width: 50%;
  height: 300px;
  margin: 0 auto 50px;
}

.youtube .right_m {
  position: absolute;
  top: 0;
  left: 25%;
}

.youtube .movie.active {
  display: block;
}

.youtube .movie li {
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
}

.youtube .movie li.active {
  display: block;
  animation: fadein 1s ease forwards;
}

.youtube .movie li iframe {
  width: 100%;
  height: 100%;
}

.youtube div .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flexbox;
  -webkit-align-items: center;
  display: -ms-flexbox;
  -ms-align-items: center;
  margin: 0 0 30px;
  justify-content: center;
}
.youtube div .tel a {
  background: #009b73;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 28px;
  font-family: 'ヒラギノ角ゴ Pro W6','HiraKakuPro-W6', sans-serif;
  text-align: center;
  width: 378px;
  padding: 10px 0;
}


#thought {
  background-color: #eeeeef;
  padding: 0 0 80px 0;
}

#thought .box {
  background-image: url(../img/leaf.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 350px;
  max-width: 990px;
  margin: 0 auto;
  overflow: hidden;
  padding: 80px 0 0;
}

#thought .box h2 {
  max-width: 332px;
  margin: 0 auto 70px;
}

#thought .box div.box_s {
  overflow: hidden;
}

#thought .box div.box_s div {
  float: right;
}

#thought .box .text {
  width: 45%;
  margin: 0 40px 0 40px;
}

#thought .box .text h3 {
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
  font-size: 32px;
  line-height: 1.3;
  margin: 0 0 20px;
}

#thought .box .text p {
  line-height: 1.6;
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
  text-align: justify;
}

#thought .box .text div {
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
  max-width: 140px;
  overflow: hidden;
}

#thought .box .text div p:first-child {
  font-size: 18px;
  line-height: 1.5;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-flexbox;
  -webkit-align-items: center;
  display: -ms-flexbox;
  -ms-align-items: center;
}

#thought .box .text div p:first-child span {
  font-size: 14px;
}

#thought .box .text div p:last-child {
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-flexbox;
  -webkit-align-items: center;
  display: -ms-flexbox;
  -ms-align-items: center;
}

#thought .box .text div p:last-child span {
  font-size: 14px;
  letter-spacing: 0;
  padding: 0 14px 0 0;
}

#thought .box .img {
  max-width: 232px;
  margin: 0 0 10px;
}

#thought .box .profile {
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
  float: right;
  width: 45%;
  margin-right: 40px;
}

#thought .box .profile h3 {
  font-size: 16px;
  line-height: 1.6;
}

#thought .box .profile p {
  line-height: 1.6;
}

#work {
  background: url(../img/business_content_background.jpg) no-repeat top left;
  background-size: cover;
  padding: 80px 0 98px;
}

#work h2 {
  max-width: 264px;
  margin: 0 auto 84px;
}

#work ol {
  max-width: 1130px;
  margin: 0 auto;
}

#work ol li {
  padding: 50px 70px 53px 70px;
  margin: 0 0 50px;
  overflow: hidden;
}

#work ol li div {
  max-width: 450px;
}

#work ol li div .subject {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-flexbox;
  -webkit-align-items: center;
  display: -ms-flexbox;
  -ms-align-items: center;
  margin: 0 0 20px;
  width: 100%;
}

#work ol li div .subject p {
  font-size: 64px;
  font-weight: 500;
  margin: 0 25px 0 0;
}

#work ol li div .subject p span {
  font-size: 28px;
  margin: 0 0 6px;
}

#work ol li div .subject .border {
  background: #e85377;
  width: 2px;
  height: 84px;
}

#work ol li div .subject h3 {
  font-size: 62px;
  font-weight: 500;
  padding: 0 0 0 30px;
  position: relative;
}

#work ol li div p.green {
  color: #009b73;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 26px;
}

#work ol li div p.green span {
  font-weight: 500;
  line-height: 1.4;
}

#work ol li div:first-child {
  float: left;
}

#work ol li div:first-child p:last-child {
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

#work ol li div:first-child p:last-child span {
  font-weight: 300;
}

#work ol li div:last-child {
  float: right;
}

#work ol li div:last-child p {
  font-size: 18px;
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
  line-height: 1.5;
  margin: 0 0 40px;
}

#work ol li div:last-child p span {
  line-height: 1.5;
}

#work ol li div:last-child figure figcaption {
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
  font-size: 14px;
  margin: 20px 0 0;
}

#work ol li:nth-child(1) {
  background: url(../img/step01.jpg) no-repeat top left;
  background-size: cover;
}

#work ol li:nth-child(2) {
  background: url(../img/step02.jpg) no-repeat top left;
  background-size: cover;
}

#work ol li:nth-child(2) .subject h3 {
  font-size: 50px;
}

#work ol li:nth-child(2) .green {
  font-size: 22px;
}

#work ol li:nth-child(2) div:last-child figure img {
  width: 100%;
  height: 310px;
}

#work ol li:nth-child(3) {
  background: url(../img/step03.jpg) no-repeat top left;
  background-size: cover;
  margin: 0;
}

#work ol li:nth-child(3) div:last-child figure img {
  width: 100%;
  height: 310px;
}

#intro .center {
  background: #231815;
  padding: 80px 0;
  overflow: hidden;
}

#intro .center div {
  max-width: 990px;
  margin: 0 auto;
}

#intro .center div h2 {
  max-width: 562px;
  margin: 0 auto 50px;
}

#intro .center div figure {
  margin: 0 0 40px;
}

#intro .center div p {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}

#intro .center div p strong {
  color: #009b73;
  font-size: 33px;
  font-weight: 400;
  display: inline-block;
  margin: 0 0 20px;
}

#intro .center div .link_btn {
  background: #009b73;
  border-radius: 6px;
  float: right;
  min-width: 468px;
  margin: 20px 0 0;
}

#intro .center div .link_btn a {
  color: #fff;
  font-size: 25px;
  line-height: 1;
  text-align: right;
  padding: 12px 15px 12px 14px;
}

#intro .center div .link_btn a img {
  width: 24px;
  margin-right: 7px;
  vertical-align: middle;
}

#intro .cancer {
  background: url(../img/cancer_background_2.jpg) no-repeat top left;
  background-size: cover;
  padding: 80px 0;
}

#intro .cancer div {
  max-width: 990px;
  margin: 0 auto;
}

#intro .cancer div h3 {
  color: #fff;
  font-family: 'ヒラギノ角ゴ Pro W6','HiraKakuPro-W6',sans-serif;
  font-size: 44px;
  text-align: center;
  margin: 0 0 50px;
}

#intro .cancer div .c_name {
  background: #e85377;
  border-radius: 6px;
  padding: 30px;
  margin: 0 0 50px;
}

#intro .cancer div .c_name li {
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
}

#intro .cancer div div {
  overflow: hidden;
  margin: 0 0 30px;
}

#intro .cancer div div ul {
  float: left;
}

#intro .cancer div div ul li {
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
}

#intro .cancer div div p {
  color: #fff;
  float: right;
  font-size: 18px;
  line-height: 1.5;
  max-width: 508px;
}

#intro .cancer div div p span:last-child {
  display: inline;
}

#faq {
  padding: 80px 0 0;
}

#faq div {
  max-width: 1130px;
  margin: 0 auto;
}

#faq div h2 {
  background: #e85377;
  text-align: center;
  padding: 17px 0;
  margin: 0 0 14px;
}

#faq div h2 img {
  max-width: 674px;
}

#faq div dl {
  padding: 30px 70px;
  border-bottom: 2px dashed #009c74;
}

#faq div dl dt {
  color: #009b73;
  font-size: 26px;
  margin: 0 0 20px;
  padding: 0 0 0 48px;
  position: relative;
}

#faq div dl dt::before {
  content: "Q";
  font-size: 34px;
  line-height: 1;
  padding: 0 20px 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

#faq div dl dd {
  font-size: 18px;
  line-height: 1.5;
  padding: 0 0 0 48px;
  position: relative;
}

#faq div dl dd::before {
  content: "A";
  color: #e85377;
  font-size: 34px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}

#faq div dl:last-child {
  border-bottom: none;
}

#voice {
  padding: 78px 0;
}

#voice div {
  max-width: 1130px;
  margin: 0 auto;
}

#voice div h2 {
  background: #e85377;
  text-align: center;
  padding: 17px 0;
  margin: 0 0 40px;
}

#voice div h2 img {
  max-width: 330px;
}

#voice div dl {
  padding: 30px 70px;
  border-bottom: 2px dashed #009c74;
}

#voice div dl dt {
  font-size: 26px;
  margin: 0 0 20px;
}

#voice div dl dd {
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}

#voice div dl:last-child {
  border-bottom: none;
}

#contact {
  background: #e85377;
  padding: 80px 0 77px;
}

#contact div {
  max-width: 990px;
  margin: 0 auto 40px;
  overflow: hidden;
}

#contact div h2 {
  max-width: 394px;
  margin: 0 auto 60px;
}

#contact div .tel,
#youtube div .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-flexbox;
  -webkit-align-items: center;
  display: -ms-flexbox;
  -ms-align-items: center;
  margin: 0 0 30px;
  justify-content: center;
}

#contact div .tel img {
  max-width: 274px;
  margin: 0 20px 0 0;
}

#contact div .tel a,
#youtube div .tel a {
  background: #009b73;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 28px;
  font-family: 'ヒラギノ角ゴ Pro W6','HiraKakuPro-W6', sans-serif;
  text-align: center;
  width: 378px;
  padding: 10px 0;
}

#contact div .ad {
  color: #fff;
  font-size: 18px;
  margin: 0 0 30px;
}

#contact div .ad span {
  display: inline;
}

#contact div table {
  border-collapse: collapse;
  width: 100%;
}

#contact div table tr th {
  background: #fff;
  border-radius: 6px;
  float: left;
  margin: 0 0 30px;
  padding: 13px 24px;
  width: 206px;
}

#contact div table tr th p {
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
  text-align: left;
}

#contact div table tr td {
  float: right;
  margin: 0 0 30px;
  width: 772px;
}

#contact div table tr td input {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  padding: 13px 24px;
  width: 100%;
}

#contact div table tr td textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 6px;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  padding: 13px 24px;
  width: 100%;
}

#contact div .submit_btn {
  float: right;
}

#contact div .submit_btn input {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  background: #009c74;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  padding: 12px 0;
  width: 350px;
}

#contact .googlemap {
  max-width: 990px;
  margin: 0 auto;
  position: relative;
}

#contact .googlemap iframe {
  width: 100%;
  height: 456px;
}

#contact .thanks_msg {
  padding: 5% 0;
  width: 100%;
}

#contact .thanks_msg p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

#contact .thanks_msg p span {
  display: block;
}

#contact .back_btn {
  max-width: 350px;
  margin: 0 auto;
}

#contact .back_btn a {
  background: #009c74;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 12px 0;
}

.toTop {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 88px;
  bottom: 175px;
}

.val {
  margin: 10px 0;
}

.val .error_msg {
  color: yellow;
  font-size: 14px;
}

@media only screen and (max-width: 1350px) {
  #work ol {
    width: 90%;
  }
  #work ol li {
    padding: 3% 5%;
  }
  #work ol li div {
    width: 47%;
  }
  #work ol li div .subject p {
    font-size: 50px;
  }
  #work ol li div .subject h3 {
    font-size: 40px;
  }
  #work ol li:nth-child(2),
  #work ol li:nth-child(3) {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    display: -ms-flexbox;
    -ms-justify-content: space-between;
    -ms-align-items: center;
  }
  #work ol li:nth-child(2) .subject h3 {
    font-size: 35px;
  }
  #intro .center div,
  #intro .cancer > div {
    width: 90%;
  }
  #intro .cancer div h3 {
    font-size: 40px;
  }
  #intro .cancer div div ul {
    width: 49%;
  }
  #intro .cancer div div p {
    width: 49%;
  }
  .toTop {
    right: 30px;
    bottom: 110px;
  }
}

@media only screen and (max-width: 550px) {
  .top .mainimg .topmsg {
    position: static;
    padding: 5% 10px;
  }
  .top .concept {
    padding: 7% 0;
  }
  .top .concept p {
    font-size: 16px;
    text-align: left;
    width: 90%;
    margin: 0 auto;
  }
  .top .concept p span {
    display: inline !important;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .youtube {
    padding: 10% 10px;
  }
  .youtube div {
    width: 100%;
  }

  .youtube .btn {
    width: 100%;
  }

  .youtube div ul {
    float: none;
  }

  .youtube .movie {
    display: block;
    width: 100%;
    margin: 0 0 10px;
  }

  #thought .box {
    padding: 90px 10px 0 10px;
    background-size: 40%;
  }
  #thought .box h2 {
    width: 45%;
    margin: 0 auto 10%;
  }
  #thought .box div {
    float: none;
  }
  #thought .box .text {
    width: 100%;
    margin: 0 0 5%;
    overflow: hidden;
  }
  #thought .box .text div {
    float: right;
  }
  #thought .box .text h3 {
    font-size: 20px;
    text-align: center;
  }
  #thought .box .box_s .img {
    float: none;
    min-height: auto;
    max-width: 100%;
    margin: 0 0 3%;
  }
  #thought .box .img figure {
    width: 50%;
    margin: 0 auto;
  }
  #thought .box .profile {
    float: none;
    width: 90%;
    margin: 0 auto;
  }
  #thought .box .profile h3 {
    text-align: center;
  }
  #work {
    padding: 90px 0;
  }
  #work h2 {
    width: 38%;
    margin: 0 auto 10%;
  }
  #work ol li {
    padding: 5%;
  }
  #work ol li div {
    width: 100%;
    max-width: 100%;
  }
  #work ol li div:first-child {
    float: none;
    margin: 0 0 5%;
  }
  #work ol li div .subject p {
    font-size: 40px;
  }
  #work ol li div .subject p span {
    font-size: 20px;
  }
  #work ol li div .subject h3 {
    font-size: 35px;
  }
  #work ol li div .subject .border {
    height: 50px;
  }
  #work ol li:nth-child(1) {
    background: url(../img/step_sp.jpg) no-repeat top left;
    background-size: cover;
  }
  #work ol li:nth-child(2), #work ol li:nth-child(3) {
    background: url(../img/step_sp.jpg) no-repeat top left;
    background-size: cover;
    display: block;
  }
  #work ol li:nth-child(2) div:last-child figure img,
  #work ol li:nth-child(3) div:last-child figure img {
    height: auto;
  }
  #work ol li div p.green {
    font-size: 18px;
  }
  #work ol li div p.green span {
    display: inline;
  }
  #work ol li div:first-child p:last-child {
    text-align: justify;
    font-size: 16px;
  }
  #work ol li div:last-child p {
    font-size: 16px;
    text-align: justify;
  }
  #work ol li:nth-child(2) .subject h3 {
    font-size: 27px;
  }
  #work ol li:nth-child(2) .green {
    font-size: 18px;
  }
  #intro .center div, #intro .cancer > div {
    width: 100%;
    padding: 0 10px;
  }
  #intro .center div h2 {
    width: 65%;
    margin: 0 auto 10%;
  }
  #intro .center div p strong {
    font-size: 20px;
  }
  #intro .center div p {
    font-size: 16px;
  }
  #intro .center div .link_btn {
    float: none;
    min-width: 100%;
  }
  #intro .center div .link_btn a {
    font-size: 16px;
    text-align: center;
  }
  #intro .center div .link_btn a img {
    width: 15px;
  }
  #intro .center {
    padding: 90px 0;
  }
  #intro .cancer {
    padding: 90px 0;
  }
  #intro .cancer div h3 {
    font-size: 25px;
    line-height: 1.2;
    text-align: left;
    margin: 0 0 5%;
  }
  #intro .cancer div .c_name {
    padding: 20px;
    margin: 0 0 5%;
  }
  #intro .cancer div .c_name li {
    font-size: 16px;
  }
  #intro .cancer div div ul {
    width: 100%;
    float: none;
    margin: 0 0 5%;
  }
  #intro .cancer div div ul li {
    font-size: 16px;
  }
  #intro .cancer div div p {
    width: 100%;
    float: none;
    font-size: 16px;
  }
  #faq {
    padding: 90px 0 0;
  }
  #faq div h2 img {
    width: 75%;
  }
  #faq div dl {
    padding: 30px;
  }
  #faq div dl dt {
    font-size: 18px;
    line-height: 1.5;
    padding: 0 0 0 30px;
  }
  #faq div dl dt::before {
    font-size: 24px;
  }
  #faq div dl dd {
    font-size: 16px;
    padding: 0 0 0 30px;
  }
  #faq div dl dd::before {
    font-size: 24px;
  }
  #voice {
    padding: 90px 0;
  }
  #voice div h2 img {
    width: 37%;
  }
  #voice div dl {
    padding: 30px;
  }
  #voice div dl dt {
    font-size: 18px;
    line-height: 1.2;
  }
  #voice div dl dd {
    font-size: 16px;
  }
  #contact {
    padding: 90px 0;
  }
  #contact div {
    padding: 0 10px;
    margin: 0 0 5%;
    width: 100%;
  }
  #contact div h2 {
    width: 47%;
    margin: 0 auto 5%;
  }
  #contact div .tel img {
    width: 40%;
  }
  #contact div .tel a {
    font-size: 16px;
    width: 50%;
  }
  #contact div .ad {
    font-size: 16px;
    line-height: 1.5;
  }
  #contact div .ad span {
    display: block;
  }
  #contact div table tr th {
    margin: 0 0 3%;
  }
  #contact div table tr td {
    width: 100%;
  }
  #contact div .submit_btn input {
    width: 100%;
  }
}

/* ---------------------------- 20210205追加 ------------------------------- */
section.attention {
  height: auto;
}
section.attention div {
  display: flex;
  justify-content: center;
}
section.attention p {
  padding: 10px;
  color: #e85377;
  font-weight: bold;
  line-height: 1.3em;
}

/* ---------------------------- # ------------------------------- */
/*# sourceMappingURL=base.css.map */