@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
/**** media ****/
a {
  text-decoration: none;
  transition: 0.4s;
}

a:hover {
  opacity: 0.6;
}

img {
  width: 100%;
}

body {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}

/*==================================
  HEADER
==================================*/
header {
  top: 0px;
  left: 0px;
  width: 100%;
  position: fixed;
  z-index: 100;
  height: auto;
}

@media (max-width: 769px) {
  header {
    height: calc(100 * (100vw / 750));
  }
}

.header {
  background-color: #FFF;
  height: 100px;
  box-shadow: 0px 0px 10px rgba(113, 113, 113, 0.17);
}

@media (min-width: 769px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 0 2%;
    height: 100px;
  }
}

@media screen and (max-width: 870px) {
  .header {
    padding: 0 0 0 1%;
  }
}

.header__logo {
  width: 19%;
}

.header__logo a {
  display: inline-block;
}

.header__menu {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.header__menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #CCCCCC;
  font-size: 15px;
  color: #131F36;
  line-height: 1.5;
  width: 215px;
}

.header__menu__item:last-child {
  border-right: none;
}

@media screen and (max-width: 1300px) {
  .header__menu__item {
    font-size: 13px;
    width: 170px;
  }
}

@media screen and (max-width: 1100px) {
  .header__menu__item {
    font-size: 12px;
    width: 150px;
  }
}

@media screen and (max-width: 970px) {
  .header__menu__item {
    width: 145px;
  }
}

@media screen and (max-width: 870px) {
  .header__menu__item {
    width: 135px;
  }
}

@media screen and (max-width: 830px) {
  .header__menu__item {
    font-size: 10px;
    width: 120px;
  }
}

@media (max-width: 769px) {
  .header {
    height: 50px;
    box-sizing: border-box;
    margin: 0px auto;
    padding: 0;
  }
  .header__inner {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 calc(40 * (100vw / 750));
    box-shadow: 0px 0px 10px rgba(113, 113, 113, 0.17);
    position: relative;
    z-index: 2;
  }
  .header__logo {
    width: calc(288 * (100vw / 750));
    position: relative;
    z-index: 2;
  }
  /*----------------------------
* メニュー開閉ボタン
*----------------------------*/
  .menu-btn {
    position: relative;
    z-index: 2;
    height: 17.5px;
    width: 22px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: auto;
  }
  .menu-btn span {
    height: 1.5px;
    width: 22px;
    background-color: #0083CE;
    box-sizing: border-box;
  }
  /*----------------------------
* メニュー本体
*----------------------------*/
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: rgba(10, 27, 59, 0.7);
  }
  .menu__item-wrap {
    background-color: #FFF;
    padding: calc(112 * (100vw / 750)) calc(40 * (100vw / 750)) 0;
  }
  .menu__item {
    display: flex;
    align-items: center;
    font-size: calc(26 * (100vw / 750));
    width: 100%;
    height: calc(108 * (100vw / 750));
    text-align: center;
    color: #131F36;
    box-sizing: border-box;
    border-bottom: 1px solid #C5D6DB;
    padding-left: calc(23 * (100vw / 750));
    position: relative;
  }
  .menu__item:last-child {
    border-bottom: 0;
  }
  .menu__item:after {
    content: '';
    display: inline-block;
    background-image: url(../images/arrow-right-blue.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: calc(67 * (100vw / 750));
    height: calc(22 * (100vw / 750));
    right: calc(20 * (100vw / 750));
  }
  .menu__item-txt {
    margin-left: calc(32 * (100vw / 750));
  }
  /*----------------------------
* アニメーション部分
*----------------------------*/
  /* アニメーション前のメニューの状態 */
  .menu {
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s linear;
  }
  /* アニメーション後のメニューの状態 */
  .menu.is-active {
    pointer-events: auto;
    opacity: 1;
  }
}

/*  個別設定  */
.menu-icon {
  margin-right: 11px;
}

.menu-icon1 {
  width: 41px;
}

.menu-icon2 {
  width: 30px;
}

.menu-icon3 {
  width: 55px;
  margin-right: 4px;
}

.menu-icon4 {
  width: 42px;
}

.menu-icon5 {
  width: 37px;
}

@media screen and (max-width: 1300px) {
  .menu-icon {
    width: 35px;
  }
}

@media screen and (max-width: 1100px) {
  .menu-icon {
    width: 25px;
    margin-right: 8px;
  }
}

@media screen and (max-width: 1000px) {
  .menu-icon {
    width: 22px;
    margin-right: 5px;
  }
}

@media (max-width: 769px) {
  .menu-icon1 img {
    width: calc(55 * (100vw / 750));
  }
  .menu-icon2 img {
    width: calc(40 * (100vw / 750));
  }
  .menu-icon3 img {
    width: calc(71 * (100vw / 750));
    margin-right: 4px;
  }
  .menu-icon4 img {
    width: calc(57 * (100vw / 750));
  }
  .menu-icon5 img {
    width: calc(52 * (100vw / 750));
  }
}

/*==================================
  MV
==================================*/
.mv {
  background-image: url(../images/mv-bg.jpg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  width: 86.5%;
  margin-left: auto;
  margin-top: 100px;
}

@media (max-width: 769px) {
  .mv {
    background-image: url(../images/sp-mv-bg.jpg);
    width: 89%;
    margin-top: 50px;
  }
}

.mv__inner {
  padding: 8.4% 0 14% 0;
  margin-left: -8%;
}

@media (max-width: 769px) {
  .mv__inner {
    padding: calc(60 * (100vw / 750)) 0 calc(66 * (100vw / 750)) 0;
    margin-left: -6.5%;
  }
}

.mv__lead {
  color: #0083CE;
  font-family: 'Roboto', sans-serif;
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
}

.mv__lead:after {
  border-top: 1px solid;
  content: "";
  width: 100px;
  margin-left: 11px;
}

@media (max-width: 769px) {
  .mv__lead:after {
    width: calc(126 * (100vw / 750));
    margin-left: 8px;
  }
}

@media (max-width: 769px) {
  .mv__lead {
    font-size: calc(26 * (100vw / 750));
  }
}

.mv__ttl {
  font-family: 'Noto Serif JP', serif;
  font-size: 51px;
  line-height: 80px;
  color: #222;
  margin-top: 14px;
}

@media (max-width: 980px) {
  .mv__ttl {
    font-size: 41px;
    line-height: 60px;
    margin-top: 22px;
  }
}

@media (max-width: 880px) {
  .mv__ttl {
    font-size: 35px;
    line-height: 47px;
  }
}

@media (max-width: 769px) {
  .mv__ttl {
    font-size: calc(51 * (100vw / 750));
    line-height: calc(76 * (100vw / 750));
    margin-top: calc(18 * (100vw / 750));
  }
}

.mv__txt {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  line-height: 40px;
  color: #222;
  margin-top: 14px;
}

@media (max-width: 980px) {
  .mv__txt {
    font-size: 20px;
    line-height: 24px;
    margin-top: 32px;
  }
}

@media (max-width: 880px) {
  .mv__txt {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 769px) {
  .mv__txt {
    font-size: calc(30 * (100vw / 750));
    line-height: calc(48 * (100vw / 750));
    margin-top: calc(10 * (100vw / 750));
  }
}

.mv__apply {
  background-image: -ms-linear-gradient(180deg, #008bcc 0%, #056bc2 100%);
  background: linear-gradient(to left, #008bcc 0%, #056bc2 100%);
  /* IE */
  font-size: 22px;
  color: #fdfdfd;
  text-align: center;
  padding: 22px 10px 22px 0;
  margin-top: 20px;
  display: inline-block;
  width: 324px;
  position: relative;
}

.mv__apply:after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 17px;
  height: 9px;
  background-image: url(../images/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px;
}

@media (max-width: 769px) {
  .mv__apply:after {
    width: calc(25 * (100vw / 750));
    height: calc(13 * (100vw / 750));
    right: calc(25 * (100vw / 750));
  }
}

@media (max-width: 980px) {
  .mv__apply {
    margin-top: 15px;
    font-size: 20px;
    padding: 18px 70px 18px 50px;
  }
}

@media (max-width: 880px) {
  .mv__apply {
    margin-top: 13px;
    font-size: 17px;
    padding: 14px 60px 14px 40px;
  }
}

@media (max-width: 769px) {
  .mv__apply {
    font-size: calc(28 * (100vw / 750));
    margin-top: calc(35 * (100vw / 750));
    padding: calc(31 * (100vw / 750)) calc(20 * (100vw / 750)) calc(27 * (100vw / 750)) 0;
    width: calc(400 * (100vw / 750));
  }
}

.mv__note {
  line-height: 22px;
  font-size: 14px;
  color: #222222;
  margin-top: 10px;
}

@media (max-width: 769px) {
  .mv__note {
    font-size: calc(24 * (100vw / 750));
    margin-top: calc(13 * (100vw / 750));
    line-height: calc(43 * (100vw / 750));
  }
}

/*==================================
  SECTION(共通)
==================================*/
.section__ttl {
  font-family: 'Noto Serif JP', serif;
  font-size: 38px;
  line-height: 58px;
  color: #131f36;
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 769px) {
  .section__ttl {
    font-size: calc(45 * (100vw / 750));
    line-height: calc(64 * (100vw / 750));
    margin-top: calc(27 * (100vw / 750));
  }
}

.section__ttl-icon {
  width: 64px;
  margin: auto;
}

@media (max-width: 769px) {
  .section__ttl-icon {
    width: calc(86 * (100vw / 750));
  }
}

.section__ttl-icon2 {
  width: 61px;
}

@media (max-width: 769px) {
  .section__ttl-icon2 {
    width: calc(86 * (100vw / 750));
  }
}

.section__ttl-icon3 {
  width: 91px;
}

@media (max-width: 769px) {
  .section__ttl-icon3 {
    width: calc(120 * (100vw / 750));
  }
}

.section__ttl-icon4 {
  width: 139px;
}

@media (max-width: 769px) {
  .section__ttl-icon4 {
    width: calc(140 * (100vw / 750));
  }
}

.section__ttl-icon6 {
  width: 56px;
}

@media (max-width: 769px) {
  .section__ttl-icon6 {
    width: calc(78 * (100vw / 750));
  }
}

.section__inner {
  max-width: 1000px;
  margin: auto;
}

@media screen and (max-width: 1000px) {
  .section__inner {
    padding: 0 30px;
  }
}

@media (max-width: 769px) {
  .section__inner {
    padding: 0 calc(40 * (100vw / 750));
  }
}

/*==================================
  Medical
==================================*/
.medical {
  margin-top: 30px;
}

@media (max-width: 769px) {
  .medical {
    margin-top: calc(50 * (100vw / 750));
  }
}

@media (max-width: 769px) {
  .medical .section__ttl {
    font-size: calc(40 * (100vw / 750));
    line-height: calc(64 * (100vw / 750));
    margin-top: calc(20 * (100vw / 750));
  }
}

.medical__bg {
  margin-right: 3%;
  margin-top: 41px;
  position: relative;
}

@media (max-width: 769px) {
  .medical__bg {
    margin-right: 0;
    margin-top: calc(40 * (100vw / 750));
  }
}

.medical__bg:after {
  position: absolute;
  content: '';
  display: inline-block;
  height: calc(100% - 71px);
  top: 71px;
  z-index: -1;
  width: 100%;
  background: #ecf2f8;
  border-radius: 0px 0px 160px 0px;
}

@media (max-width: 769px) {
  .medical__bg:after {
    top: 42px;
    border-radius: 0;
    height: calc(100% - 42px);
  }
}

.medical__bg-inner {
  margin-left: 3%;
}

@media (max-width: 769px) {
  .medical__bg-inner {
    margin-left: 0;
  }
}

.medical__graf {
  display: flex;
  background: #FFFFFF;
  border-radius: 8px;
  border: 7px solid #ddecfb;
  padding: 56px 4% 50px 4.9%;
}

@media screen and (max-width: 1000px) {
  .medical__graf {
    padding: 46px 3% 34px 3.9%;
  }
}

@media (max-width: 769px) {
  .medical__graf {
    flex-wrap: wrap;
    border-radius: 10px;
    border: 4px solid #ddecfb;
    padding: calc(46 * (100vw / 750)) calc(39 * (100vw / 750)) calc(40 * (100vw / 750));
  }
}

.medical__graf-image {
  width: 52%;
}

@media screen and (max-width: 925px) {
  .medical__graf-image {
    width: 51%;
  }
}

@media (max-width: 769px) {
  .medical__graf-image {
    flex: auto;
    width: 100%;
  }
}

.medical__graf-desc {
  flex: 1;
  margin-left: 3%;
}

@media (max-width: 769px) {
  .medical__graf-desc {
    margin-top: calc(45 * (100vw / 750));
    margin-left: 0;
    flex: auto;
    width: 100%;
  }
}

.medical__graf .graf-txt {
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 50px;
  color: #18335a;
}

@media screen and (max-width: 1030px) {
  .medical__graf .graf-txt {
    font-size: 19px;
    line-height: 46px;
  }
}

@media screen and (max-width: 1000px) {
  .medical__graf .graf-txt {
    font-size: 18px;
  }
}

@media screen and (max-width: 980px) {
  .medical__graf .graf-txt {
    font-size: 17px;
  }
}

@media screen and (max-width: 950px) {
  .medical__graf .graf-txt {
    font-size: 16.5px;
  }
}

@media screen and (max-width: 905px) {
  .medical__graf .graf-txt {
    font-size: 16px;
  }
}

@media screen and (max-width: 880px) {
  .medical__graf .graf-txt {
    font-size: 15.5px;
  }
}

@media screen and (max-width: 860px) {
  .medical__graf .graf-txt {
    font-size: 15px;
  }
}

@media screen and (max-width: 833px) {
  .medical__graf .graf-txt {
    font-size: 14.5px;
  }
}

@media screen and (max-width: 810px) {
  .medical__graf .graf-txt {
    font-size: 14px;
  }
}

@media (max-width: 769px) {
  .medical__graf .graf-txt {
    font-size: calc(26 * (100vw / 750));
    line-height: calc(72 * (100vw / 750));
  }
}

.medical__graf .graf-txt-border {
  display: block;
  border-bottom: 2px solid #ddecfb;
}

@media (max-width: 769px) {
  .medical__graf .graf-txt-border {
    border-bottom: 1px solid #ddecfb;
  }
}

.medical__graf .graf-reason {
  border-radius: 10px;
  background: #f0f8ff;
  letter-spacing: -0.02em;
  line-height: 28px;
  margin-top: 32px;
  padding: 21px 0 24px 50px;
}

@media screen and (max-width: 1060px) {
  .medical__graf .graf-reason {
    padding: 21px 0 24px 50px;
  }
}

@media screen and (max-width: 1000px) {
  .medical__graf .graf-reason {
    margin-top: 40px;
    padding: 18px 0 20px 22px;
  }
}

@media screen and (max-width: 900px) {
  .medical__graf .graf-reason {
    margin-top: 30px;
    padding: 18px 0 20px 15px;
  }
}

@media (max-width: 769px) {
  .medical__graf .graf-reason {
    margin-top: calc(40 * (100vw / 750));
    padding: calc(33 * (100vw / 750)) calc(45 * (100vw / 750)) calc(47 * (100vw / 750)) calc(55 * (100vw / 750));
  }
}

.medical__graf .graf-reason .reason-ttl {
  font-size: 18px;
  color: #18335a;
}

@media screen and (max-width: 930px) {
  .medical__graf .graf-reason .reason-ttl {
    font-size: 17px;
  }
}

@media screen and (max-width: 850px) {
  .medical__graf .graf-reason .reason-ttl {
    font-size: 16px;
  }
}

@media screen and (max-width: 810px) {
  .medical__graf .graf-reason .reason-ttl {
    font-size: 15px;
  }
}

@media (max-width: 769px) {
  .medical__graf .graf-reason .reason-ttl {
    font-size: calc(28 * (100vw / 750));
    line-height: calc(35 * (100vw / 750));
  }
}

.medical__graf .graf-reason .reason-list {
  font-size: 17px;
  color: #002;
  line-height: 34px;
  margin: 15px 0 0 4px;
}

@media screen and (max-width: 1000px) {
  .medical__graf .graf-reason .reason-list {
    font-size: 13.5px;
    line-height: 26px;
    margin: 10px 0 0 4px;
  }
}

@media screen and (max-width: 810px) {
  .medical__graf .graf-reason .reason-list {
    font-size: 12.5px;
    line-height: 24px;
    margin: 5px 0 0 4px;
  }
}

@media (max-width: 769px) {
  .medical__graf .graf-reason .reason-list {
    font-size: calc(26 * (100vw / 750));
    margin: calc(23 * (100vw / 750)) 0 0 calc(24 * (100vw / 750));
    line-height: calc(47 * (100vw / 750));
  }
}

.medical__graf .graf-reason .reason-list-item {
  list-style-type: none;
  position: relative;
  padding-left: 17px;
}

.medical__graf .graf-reason .reason-list-item:before {
  border-radius: 50%;
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  background: #1C8CB6;
}

.medical__conjugation {
  display: flex;
  padding: 60px 0 100px;
}

@media (max-width: 769px) {
  .medical__conjugation {
    flex-wrap: wrap;
    padding: calc(57 * (100vw / 750)) 0 calc(86 * (100vw / 750));
  }
}

.medical__conjugation-image {
  width: 47%;
}

@media (max-width: 769px) {
  .medical__conjugation-image {
    width: 100%;
  }
}

.medical__conjugation-desc {
  flex: 1;
  margin-left: 4.5%;
}

@media (max-width: 769px) {
  .medical__conjugation-desc {
    margin-top: calc(32 * (100vw / 750));
    margin-left: 0;
    flex: auto;
    width: 100%;
  }
}

.medical__conjugation .conjugation-ttl {
  font-size: 24px;
  line-height: 32px;
  color: #222;
  border-bottom: 1px solid #1573b5;
  padding-bottom: 15px;
}

@media (max-width: 769px) {
  .medical__conjugation .conjugation-ttl {
    font-size: calc(32 * (100vw / 750));
    line-height: calc(43 * (100vw / 750));
    padding-bottom: calc(20 * (100vw / 750));
  }
}

.medical__conjugation .conjugation-txt {
  font-size: 16px;
  line-height: 32px;
  color: #222;
  margin-top: 15px;
}

@media (max-width: 769px) {
  .medical__conjugation .conjugation-txt {
    font-size: calc(26 * (100vw / 750));
    line-height: calc(46 * (100vw / 750));
  }
}

/*==================================
  SAMPLE
==================================*/
.sample {
  background-image: url(../images/sample-bg-left.png), url(../images/sample-bg-right.png);
  background-repeat: no-repeat;
  background-position: left 0px top -255px, right 0px bottom -15px;
  padding-top: 90px;
}

@media (max-width: 769px) {
  .sample {
    background-position: left 0px top calc(-186 * (100vw / 750)), right 0px bottom calc(-50 * (100vw / 750));
    background-size: calc(286 * (100vw / 750)), calc(241 * (100vw / 750));
    padding: calc(83 * (100vw / 750)) 0 calc(123 * (100vw / 750));
  }
}

.sample__block {
  display: flex;
  margin-top: 48px;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .sample__block {
    padding: 0 26px 137px 0;
  }
}

@media (max-width: 769px) {
  .sample__block {
    margin-top: calc(39 * (100vw / 750));
    flex-wrap: wrap;
  }
}

.sample__block-visual {
  width: 46%;
}

@media (max-width: 769px) {
  .sample__block-visual {
    width: 100%;
  }
}

.sample__block-txt {
  flex: 1;
  margin-left: 40px;
  font-size: 16px;
  line-height: 32px;
  color: #222;
}

@media (max-width: 769px) {
  .sample__block-txt {
    font-size: calc(26 * (100vw / 750));
    line-height: calc(46 * (100vw / 750));
    margin-top: calc(25 * (100vw / 750));
    margin-left: 0;
  }
}

.sample__link-box {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 769px) {
  .sample__link-box {
    display: block;
  }
}

.sample__txt-link {
  display: block;
  border: 3px solid #018BCC;
  color: #0B4D7B;
  font-size: 15px;
  text-align: center;
  padding: 13px 48px 16px 0px;
  margin: 1em auto 0 auto;
  position: relative;
  width: 235px;
  box-sizing: border-box;
  line-height: 18px;
}

@media (max-width: 769px) {
  .sample__txt-link {
    font-size: calc(28 * (100vw / 750));
    letter-spacing: -0.02em;
    text-align: center;
    padding: calc(22 * (100vw / 750)) calc(70 * (100vw / 750)) calc(22 * (100vw / 750)) calc(0 * (100vw / 750));
    margin: calc(40 * (100vw / 750)) auto 0;
    width: calc(460 * (100vw / 750));
    line-height: calc(36 * (100vw / 750));
  }
}

.sample__txt-link:after {
  content: '';
  display: inline-block;
  width: 39px;
  height: 13px;
  background-image: url(../images/arrow-right-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0px;
}

@media (max-width: 769px) {
  .sample__txt-link:after {
    width: calc(61 * (100vw / 750));
    height: calc(20 * (100vw / 750));
    right: calc(0 * (100vw / 750));
  }
}

/*==================================
  DOCTOR
==================================*/
.doctor {
  font-family: 'Noto Sans JP', serif;
  margin-top: 74px;
}

@media (max-width: 769px) {
  .doctor {
    margin-top: calc(74 * (100vw / 750));
  }
}

.doctor__block {
  border-radius: 0px 0px 0px 160px;
  background: #ecf2f8;
  padding: 92px 0 100px 0;
  margin-left: 3%;
}

@media (max-width: 769px) {
  .doctor__block {
    border-radius: 0;
    padding: calc(70 * (100vw / 750)) 0 calc(110 * (100vw / 750)) 0;
    margin-left: 0;
  }
}

.doctor__block-inner {
  margin-right: 3%;
}

@media screen and (max-width: 1000px) {
  .doctor__block-inner {
    margin-right: 0%;
  }
}

@media (max-width: 769px) {
  .doctor__block-inner {
    margin-right: 0;
  }
}

.doctor__list {
  margin-top: 50px;
}

@media (max-width: 769px) {
  .doctor__list {
    margin-top: calc(40 * (100vw / 750));
  }
}

.doctor__list-item {
  display: flex;
  margin-bottom: 90px;
}

@media (max-width: 769px) {
  .doctor__list-item {
    flex-wrap: wrap;
    margin-bottom: calc(64 * (100vw / 750));
  }
}

.doctor__list-item:last-child {
  margin-bottom: 0;
  flex-direction: row-reverse;
}

@media (max-width: 769px) {
  .doctor__list-item:last-child .doctor__desc-txt {
    padding: calc(90 * (100vw / 750)) calc(0 * (100vw / 750)) calc(0 * (100vw / 750)) calc(30 * (100vw / 750));
  }
}

.doctor__list-item:last-child .doctor__voice {
  margin-left: -6px;
  margin-right: 0;
}

@media (max-width: 769px) {
  .doctor__list-item:last-child .doctor__voice {
    margin-right: 0;
  }
}

.doctor__list-item:last-child .doctor__voice-txt {
  margin-right: 35px;
}

@media (max-width: 769px) {
  .doctor__list-item:last-child .doctor__voice-txt {
    margin-right: 0;
    margin-left: calc(12 * (100vw / 750));
  }
}

.doctor__desc {
  width: 28%;
}

@media (max-width: 769px) {
  .doctor__desc {
    display: flex;
    border: 3px solid #B8D2EF;
    width: 100%;
  }
}

.doctor__desc-image {
  position: relative;
  border: 6px solid #B8D2EF;
}

@media (max-width: 769px) {
  .doctor__desc-image {
    border: 0;
    width: 60%;
  }
}

.doctor__desc-image img {
  vertical-align: middle;
}

.doctor__desc-image:before {
  border: 6px solid #B8D2EF;
}

.doctor__desc-txt {
  background-color: #FFF;
  width: 87%;
  padding: 30px 10%;
  margin: -35px auto 0;
  position: relative;
  box-sizing: border-box;
}

@media (max-width: 769px) {
  .doctor__desc-txt {
    background-image: url(../images/sp-doctor-bg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: calc(122 * (100vw / 750));
    margin: 0 auto;
    padding: calc(90 * (100vw / 750)) calc(0 * (100vw / 750)) calc(0 * (100vw / 750)) calc(37 * (100vw / 750));
    flex: 1;
  }
}

.doctor__desc-txt .doctor-area {
  font-size: 15px;
  color: #FFF;
  border-radius: 12.5px;
  background: #709bca;
  padding: 5px;
  width: 80px;
  text-align: center;
  position: absolute;
  top: -11px;
  right: 0;
  left: 0;
  margin: auto;
}

@media (max-width: 769px) {
  .doctor__desc-txt .doctor-area {
    font-size: calc(24 * (100vw / 750));
    border-radius: 0 calc(20 * (100vw / 750)) calc(20 * (100vw / 750)) 0;
    top: calc(23 * (100vw / 750));
    left: 0;
    margin: 0;
    width: calc(118 * (100vw / 750));
    padding: calc(9 * (100vw / 750));
    box-sizing: border-box;
  }
}

.doctor__desc-txt .doctor-name {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 11px;
  font-size: 18px;
  color: #131F36;
}

@media (max-width: 769px) {
  .doctor__desc-txt .doctor-name {
    font-size: calc(33 * (100vw / 750));
    display: inline-block;
    padding-right: 4px;
  }
}

.doctor__desc-txt .doctor-name-small {
  font-size: 13px;
}

@media (max-width: 769px) {
  .doctor__desc-txt .doctor-name-small {
    font-size: calc(26 * (100vw / 750));
  }
}

.doctor__desc-txt .doctor-clinic {
  padding-top: 11px;
  font-size: 13px;
  color: #131F36;
}

@media (max-width: 769px) {
  .doctor__desc-txt .doctor-clinic {
    font-size: calc(24 * (100vw / 750));
    line-height: calc(35 * (100vw / 750));
  }
}

.doctor__voice {
  flex: 1;
  margin-left: 37px;
}

@media screen and (max-width: 1000px) {
  .doctor__voice {
    margin-left: 20px;
  }
}

@media (max-width: 769px) {
  .doctor__voice {
    margin-left: 0;
    flex: auto;
    width: 100%;
  }
}

.doctor__voice-ttl {
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  color: #102855;
  margin-bottom: 22px;
}

@media (max-width: 769px) {
  .doctor__voice-ttl {
    font-size: calc(33 * (100vw / 750));
    line-height: calc(52 * (100vw / 750));
    margin: calc(31 * (100vw / 750)) 0 calc(20 * (100vw / 750));
  }
}

.doctor__voice-ttl .voice-small {
  font-size: 26px;
}

@media (max-width: 769px) {
  .doctor__voice-ttl .voice-small {
    font-size: calc(28 * (100vw / 750));
  }
}

.doctor__voice-txt {
  font-size: 16px;
  line-height: 32px;
  color: #222;
}

@media (max-width: 769px) {
  .doctor__voice-txt {
    font-size: calc(26 * (100vw / 750));
    line-height: calc(42 * (100vw / 750));
  }
}

.doctor__link {
  text-align: center;
  margin-top: 55px;
  position: relative;
}

@media (max-width: 769px) {
  .doctor__link {
    margin-top: calc(60 * (100vw / 750));
  }
}

.doctor__link a {
  background-image: -ms-linear-gradient(180deg, #008bcc 0%, #056bc2 100%);
  background: linear-gradient(to left, #008bcc 0%, #056bc2 100%);
  /* IE */
  box-sizing: border-box;
  color: #FDFDFD;
  text-align: center;
  display: inline-block;
  font-size: 24px;
  padding: 30px 0 28px;
  width: 402px;
  position: relative;
}

@media (max-width: 769px) {
  .doctor__link a {
    font-size: calc(30 * (100vw / 750));
    padding: calc(40 * (100vw / 750)) calc(0 * (100vw / 750)) calc(40 * (100vw / 750));
    width: calc(560 * (100vw / 750));
  }
}

.doctor__link a:after {
  content: '';
  display: inline-block;
  width: 27px;
  height: 15.5px;
  background-image: url(../images/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 30px;
}

@media (max-width: 769px) {
  .doctor__link a:after {
    width: calc(38 * (100vw / 750));
    height: calc(23 * (100vw / 750));
    right: calc(38 * (100vw / 750));
  }
}

/*==================================
  ABOUT
==================================*/
.about {
  background-color: #E6E6E6;
  background-image: url(../images/about-bg.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  color: #fff;
  margin-top: 96px;
}

@media (max-width: 769px) {
  .about {
    margin-top: 0;
    background-position: right calc(-346 * (100vw / 750)) bottom;
    background-size: calc(1242 * (100vw / 750));
  }
}

.about__overlay {
  background-image: -ms-linear-gradient(180deg, rgba(0, 164, 218, 0.85) 0%, rgba(20, 113, 191, 0.85) 100%);
  background: linear-gradient(to left, rgba(0, 164, 218, 0.85) 0%, rgba(20, 113, 191, 0.85) 100%);
  /* IE */
  padding: 70px 0 160px;
}

@media (max-width: 769px) {
  .about__overlay {
    padding: calc(85 * (100vw / 750)) 0 calc(170 * (100vw / 750));
  }
}

.about .section__ttl {
  color: #FFF;
}

@media (max-width: 769px) {
  .about .section__ttl {
    margin-top: 0;
  }
}

.about__block {
  margin-top: 20px;
}

@media (max-width: 769px) {
  .about__block {
    margin-top: calc(18 * (100vw / 750));
  }
}

.about__image {
  width: 27%;
  float: right;
  margin-left: 21px;
}

@media (max-width: 769px) {
  .about__image {
    width: calc(270 * (100vw / 750));
    margin: calc(10 * (100vw / 750)) 0 0 calc(20 * (100vw / 750));
  }
}

.about__txt {
  font-size: 18px;
  line-height: 36px;
}

@media (max-width: 769px) {
  .about__txt {
    font-size: calc(26 * (100vw / 750));
    line-height: calc(42 * (100vw / 750));
  }
}

.about__txt-02 {
  margin-top: calc(10 * (100vw / 750));
}

/*==================================
  QUESTION
==================================*/
.question {
  padding: 80px 0 120px;
  background-color: #ECF2F8;
}

@media (max-width: 769px) {
  .question {
    padding: calc(80 * (100vw / 750)) 0 calc(100 * (100vw / 750));
  }
}

.question__list {
  margin-top: 7px;
}

.question__list-item {
  margin-top: 28px;
  background-color: #FFF;
  border-radius: 10px;
  padding: 0 0px 0 32px;
}

@media (max-width: 769px) {
  .question__list-item {
    margin-top: calc(30 * (100vw / 750));
    padding: 0 calc(30 * (100vw / 750)) 0 calc(27 * (100vw / 750));
  }
}

.question .question__area {
  display: flex;
  align-items: center;
  color: #222222;
  font-size: 20px;
  padding: 22px 0;
  position: relative;
}

.question .question__area:hover {
  cursor: pointer;
}

@media (max-width: 769px) {
  .question .question__area {
    font-size: calc(26 * (100vw / 750));
    line-height: calc(40 * (100vw / 750));
    padding: calc(30 * (100vw / 750)) calc(50 * (100vw / 750)) calc(30 * (100vw / 750)) 0;
  }
}

.question .question__area:before, .question .question__area:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 32px;
  bottom: 0;
  margin: auto;
  width: 27px;
  height: 3.25px;
  background-color: #9e9e9e;
  border-radius: 20px;
}

@media (max-width: 769px) {
  .question .question__area:before, .question .question__area:after {
    right: 0;
    width: 19px;
    height: 2.5px;
  }
}

.question .question__area:before {
  transition: .2s;
  transform: rotate(90deg);
}

@media (max-width: 769px) {
  .question .question__area:before {
    right: calc(0 * (100vw / 750));
  }
}

.question .question__area:after {
  transition: .3s;
}

@media (max-width: 769px) {
  .question .question__area:after {
    height: 3px;
  }
}

.question .question__area.open:before {
  transform: rotate(0deg);
}

.question .question__area.open:after {
  background-color: transparent;
}

.question .answer__area {
  display: none;
  font-size: 16px;
  line-height: 32px;
  color: #222;
  border-top: 1px solid #bad2ea;
  padding: 24px 0 36px;
  margin-right: 32px;
}

@media (max-width: 769px) {
  .question .answer__area {
    font-size: calc(26 * (100vw / 750));
    line-height: calc(42 * (100vw / 750));
    padding: calc(25 * (100vw / 750)) 0 calc(35 * (100vw / 750));
    margin-right: 0;
  }
}

.question .answer__area-inner {
  display: flex;
}

.question .q-a {
  font-family: 'Roboto', sans-serif;
  font-size: 35px;
  margin-right: 15px;
}

@media (max-width: 769px) {
  .question .q-a {
    font-size: calc(50 * (100vw / 750));
    margin-right: calc(17 * (100vw / 750));
  }
}

.question .q-a.blue {
  color: #167CC3;
}

.question .q-a.orange {
  color: #F66E00;
}

/*==================================
  initiative
==================================*/
.initiative {
  background-image: url(../images/initiative-bg-left.png), url(../images/initiative-bg-right.png);
  background-repeat: no-repeat;
  background-position: left 0px top -260px, right 0px bottom 0;
  padding: 80px 0 0px;
}

@media (max-width: 769px) {
  .initiative {
    background-image: url(../images/initiative-bg-left.png), url(../images/sample-bg-right.png);
    background-position: left 0px top calc(-128 * (100vw / 750)), right calc(-20 * (100vw / 750)) bottom calc(0 * (100vw / 750));
    background-size: calc(287 * (100vw / 750)), calc(223 * (100vw / 750));
    padding: calc(80 * (100vw / 750)) 0 calc(0 * (100vw / 750));
  }
}

.initiative__movie {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 34px auto 21px;
}

@media (max-width: 769px) {
  .initiative__movie {
    margin: calc(40 * (100vw / 750)) auto calc(25 * (100vw / 750));
  }
}

.initiative__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0px;
}

.initiative__txt {
  font-size: 16px;
  line-height: 32px;
  color: #222;
}

@media (max-width: 769px) {
  .initiative__txt {
    font-size: calc(26 * (100vw / 750));
    line-height: calc(42 * (100vw / 750));
  }
}

.initiative__seminar {
  display: flex;
  margin-top: 55px;
}

@media (max-width: 769px) {
  .initiative__seminar {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-top: calc(70 * (100vw / 750));
  }
}

.initiative__seminar-txt {
  flex: 1;
}

@media (max-width: 769px) {
  .initiative__seminar-txt {
    flex: auto;
    width: 100%;
  }
}

.initiative__seminar-image {
  width: 43%;
  margin-left: 3.5%;
}

@media (max-width: 769px) {
  .initiative__seminar-image {
    width: 100%;
    margin-left: 0;
    margin-bottom: calc(30 * (100vw / 750));
  }
}

.initiative__link {
  text-align: center;
  margin-top: 55px;
  padding: 50px 0px;
  position: relative;
  background: #ecf2f8;
}

.initiative__link a {
  background-image: -ms-linear-gradient(180deg, #008bcc 0%, #056bc2 100%);
  background: linear-gradient(to left, #008bcc 0%, #056bc2 100%);
  /* IE */
  box-sizing: border-box;
  color: #FDFDFD;
  text-align: center;
  display: inline-block;
  font-size: 24px;
  padding: 30px 0 28px;
  width: 402px;
  position: relative;
}

@media (max-width: 769px) {
  .initiative__link a {
    font-size: calc(30 * (100vw / 750));
    padding: calc(40 * (100vw / 750)) calc(0 * (100vw / 750)) calc(40 * (100vw / 750));
    width: calc(560 * (100vw / 750));
  }
}

.initiative__link a:after {
  content: '';
  display: inline-block;
  width: 27px;
  height: 15.5px;
  background-image: url(../images/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 30px;
}

@media (max-width: 769px) {
  .initiative__link a:after {
    width: calc(38 * (100vw / 750));
    height: calc(23 * (100vw / 750));
    right: calc(38 * (100vw / 750));
  }
}

/*==================================
  apply
==================================*/
.apply {
  background: #ECF2F8;
  padding: 63px 0 100px;
}

@media (max-width: 769px) {
  .apply {
    padding: calc(15 * (100vw / 750)) 0 calc(30 * (100vw / 750));
  }
}

@media (min-width: 769px) {
  .apply__block {
    padding: 0 50px;
  }
}

/*==================================
  FOOTER
==================================*/
.footer__inner {
  padding: 27px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

@media (max-width: 769px) {
  .footer__inner {
    padding: calc(48 * (100vw / 750)) 0 calc(25 * (100vw / 750));
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer__logo {
  width: 280px;
}

@media (max-width: 769px) {
  .footer__logo {
    width: calc(353 * (100vw / 750));
  }
}

.footer__copyright {
  font-size: 14px;
  color: #222;
}

@media (max-width: 769px) {
  .footer__copyright {
    font-size: calc(22 * (100vw / 750));
    margin-top: calc(38 * (100vw / 750));
  }
}

@media (max-width: 769px) {
  .pc-visible {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp-visible {
    display: none;
  }
}

.FontBold{font-weight:bold;}


/*# sourceMappingURL=map/style.css.map */
