@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap");
/*$font-default:  -apple-system, BlinkMacSystemFont, 'M PLUS Rounded 1c', sans-serif;*/
/* ******************************************************************************** */
/*
/* = Common Style
/*
/* ******************************************************************************** */
/*
------------------------------------------------------
 = pc_none/sp_none 表示/非表示
------------------------------------------------------
*/
@media print, screen and (min-width: 768px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }
}
@media print, screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }

  .pc_none {
    display: block;
  }
}
/*
------------------------------------------------------
 = 
------------------------------------------------------
*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  height: 100%;
}

body {
  height: 100%;
  color: #1b1b1b;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 17px;
}
@media print, screen and (max-width: 767px) {
  body {
    font-size: 17px;
    -webkit-text-size-adjust: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  body img {
    max-width: 100%;
    height: auto;
  }
}

table {
  border-style: none;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: #2e2e2e;
  outline: none;
}

a,
a img {
  transition: 0.5s;
}

a:hover {
  text-decoration: underline;
}

a img:hover {
  filter: alpha(opacity=70);
  opacity: 0.8;
}

a,
button,
input[type*=submit],
input[type*=reset] {
  transition: all 0.2s;
}

h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, form, input, select, label {
  font-weight: normal;
  margin: 0;
  padding: 0;
  outline: none;
}

ul {
  list-style: none outside;
}

p, li, dt, dd {
  line-height: 1.2em;
  margin: 0;
}

img {
  border-style: none;
  vertical-align: bottom;
}

/* clearfix */
.clear:after {
  content: " ";
  display: block;
  clear: both;
}

/* = align
*************************************************/
.left {
  text-align: left !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.vTop {
  vertical-align: top !important;
}

/* = color
*************************************************/
.colorBlue {
  color: #0085B2;
}

/* = text
*************************************************/
.indent {
  text-indent: -14px;
  margin-left: 14px;
}

/* = float
*************************************************/
.fLeft {
  float: left !important;
}

.fRight {
  float: right !important;
}

/* = img 
*************************************************/
img {
  /*width:100%;
  height:auto;*/
}

/* = flex-layout
*************************************************/
/* ******************************************************************************** */
/*
/* = Layout Style
/*
/* ******************************************************************************** */
.wrapper {
  position: relative;
}
@media print, screen and (max-width: 767px) {
  .wrapper {
    overflow: hidden;
  }
}

.container {
  width: 1100px;
  margin: 0 auto;
}

@media print, screen and (max-width: 767px) {
  .container {
    width: 96%;
    margin: 0 auto;
  }
}
/************************************************
 = header
*************************************************/
#header {
  margin-bottom: 70px;
}
@media print, screen and (max-width: 767px) {
  #header {
    margin-bottom: 35px;
  }
}
#header .header_main {
  position: relative;
  width: 100%;
  padding-top: 670px;
  overflow: hidden;
}
#header .header_main::after {
  content: "";
  position: absolute;
  background-color: #fff;
  right: 0;
  top: 0;
  z-index: 99;
  display: block;
  height: 190px;
  width: calc((100% - 1100px) / 2);
}
#header .header_main .header_main_inner {
  position: absolute;
  width: 1180px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 0;
  height: 190px;
}
#header .header_main .mv_logo {
  position: absolute;
  left: 0px;
  top: 20px;
  z-index: 4;
  height: 100px;
  display: flex;
  align-items: flex-end;
}
@media print, screen and (max-width: 767px) {
  #header .header_main .mv_logo {
    left: 15px;
    top: 15px;
    width: 20%;
    height: auto;
  }
}
@media print, screen and (min-width: 768px) {
  #header .header_main .mv_logo p {
    width: 76px;
  }
}
#header .header_main .mv_logo p img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  #header .header_main .mv_logo ul {
    font-size: 11px;
    text-align: left;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    height: 100px;
    justify-content: space-between;
  }
}
#header .header_main .mv_logo ul li {
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  #header .header_main .mv_logo ul li h1 {
    font-size: 1em;
    font-weight: 500;
  }
}
@media print, screen and (min-width: 768px) {
  #header .header_main .mv_logo ul li p {
    width: 200px;
    padding: 5px 0;
  }
}
#header .header_main .mv_logo ul li p img {
  width: 100%;
}
@media print, screen and (max-width: 767px) {
  #header .header_main {
    height: 0;
    padding-top: 80%;
  }
  #header .header_main nav {
    height: 70px;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 5;
  }
}

/************************************************
 = fix_contact
*************************************************/
@media print, screen and (max-width: 767px) {
  .fix_contact_box {
    position: fixed;
    width: 100%;
    bottom: 0px;
    z-index: 5;
  }
  .fix_contact_box .fix_contact {
    display: flex;
    width: 100%;
  }
  .fix_contact_box .fix_contact p {
    width: 50%;
  }
  .fix_contact_box .fix_contact p a {
    display: block;
    padding: 5px 0 10px;
  }
  .fix_contact_box .fix_contact .fix_contact_mail {
    background-color: #fff;
    border: 1px solid #a40182;
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .fix_contact_box .fix_contact .fix_contact_mail::before {
    background-image: url(../images/common/mail.png);
    display: inline-block;
    position: absolute;
    top: 12px;
    left: 25px;
    width: 30px;
    height: 28px;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .fix_contact_box .fix_contact .fix_contact_mail a {
    color: #a40182;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
  }
  .fix_contact_box .fix_contact .fix_contact_mail a span {
    display: block;
  }
  .fix_contact_box .fix_contact .fix_contact_tel {
    background-color: #a40182;
  }
  .fix_contact_box .fix_contact .fix_contact_tel a {
    color: #fff;
    font-size: 18px;
  }
  .fix_contact_box .fix_contact .fix_contact_tel a small {
    display: block;
    font-size: 10px;
  }
  .fix_contact_box .fix_contact .fix_contact_tel a span {
    display: inline-block;
    font-size: 12px;
  }
}
/************************************************
 = スクロールで固定
*************************************************/
@media print, screen and (min-width: 768px) {
  .fix .anchor_link.global-nav__list {
    position: fixed;
    background-color: #fff;
    right: 0;
    top: 0;
    border-radius: 0 0 0 20px;
    padding-right: calc((100% - 1200px) / 2);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  }
}
/************************************************
 = header  consultation_time
*************************************************/
.consultation_time {
  padding: 0px 0px 20px 0px;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 3;
  background-color: #fff;
  border-radius: 0 0 0 30px;
  height: 190px;
  width: 760px;
}
.consultation_time .anchor_link {
  display: flex;
  font-size: 14px;
  padding: 0px 0px 0px 20px;
}
@media print, screen and (max-width: 767px) {
  .consultation_time .anchor_link {
    flex-direction: column;
    padding: 20px;
  }
}
.consultation_time .anchor_link dd {
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .consultation_time .anchor_link dd {
    position: relative;
  }
  .consultation_time .anchor_link dd::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 15px;
    background-color: #7c7c7c;
    position: absolute;
    top: 21px;
    right: 6px;
  }
}
@media print, screen and (max-width: 767px) {
  .consultation_time .anchor_link dd {
    font-weight: 500;
  }
}
.consultation_time .anchor_link dd:nth-last-of-type(1)::before, .consultation_time .anchor_link dd:nth-last-of-type(2)::before {
  display: none;
}
.consultation_time .anchor_link dd:nth-last-of-type(2) a {
  padding-right: 10px;
}
@media print, screen and (min-width: 768px) {
  .consultation_time .anchor_link dd:nth-last-of-type(1) a {
    background-color: #a70084;
    color: #fff;
    padding-left: 20px;
    border: 1px solid #a70084;
  }
  .consultation_time .anchor_link dd:nth-last-of-type(1) a:hover {
    color: #a70084;
    background-color: #fff;
    border: 1px solid #a70084;
  }
}
.consultation_time .anchor_link dd a {
  text-decoration: none;
  transition: 0.9s;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 17px;
  display: inline-block;
}
@media print, screen and (max-width: 767px) {
  .consultation_time .anchor_link dd a {
    display: block;
  }
}
.consultation_time .anchor_link dd a:hover {
  color: #a40182;
}
.consultation_time ul {
  display: flex;
  width: 640px;
}
@media print, screen and (max-width: 767px) {
  .consultation_time ul {
    width: 100%;
    flex-direction: column;
    padding: 0 20px 20px 20px;
  }
}
.consultation_time ul li dl {
  width: 100%;
  padding-bottom: 5px;
  padding-right: 40px;
}
.consultation_time ul li dl dt {
  width: 22%;
  text-align: right;
  padding-right: 15px;
  font-weight: bold;
}
@media print, screen and (max-width: 767px) {
  .consultation_time ul li dl dt {
    width: 100%;
    text-align: left;
    padding: 10px 0 5px;
  }
}
.consultation_time ul li dl dd {
  width: 78%;
  text-align: left;
}
@media print, screen and (max-width: 767px) {
  .consultation_time ul li dl dd {
    width: 100%;
    text-align: left;
    padding-left: 30px;
  }
}
.consultation_time ul li p {
  text-align: left;
  padding-top: 5px;
}
@media print, screen and (max-width: 767px) {
  .consultation_time ul li p {
    padding-left: 1em;
    text-indent: -1em;
  }
}
.consultation_time ul li p:nth-of-type(1) {
  padding-top: 10px;
}
.consultation_time ul li p span {
  color: #a70084;
  font-weight: bold;
}
.consultation_time ul .time_left {
  padding: 15px 30px 0px 20px;
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 1.3;
  font-weight: 500;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .consultation_time ul .time_left {
    width: 15%;
  }
}
@media print, screen and (max-width: 767px) {
  .consultation_time ul .time_left {
    padding: 0px 30px 0px 20px;
  }
}
.consultation_time ul .time_left::after {
  content: "";
  display: inline-block;
  background-color: #a40182;
  position: absolute;
  bottom: -50px;
  transform: translateY(-50%);
  right: 20px;
}
@media print, screen and (min-width: 768px) {
  .consultation_time ul .time_left::after {
    width: 1px;
    height: 105px;
  }
}
@media print, screen and (max-width: 767px) {
  .consultation_time ul .time_left::after {
    width: 200px;
    height: 1px;
    position: static;
  }
}
.consultation_time ul .time_right {
  border-radius: 0 0 10px 0;
  font-size: 13px;
}
@media print, screen and (min-width: 768px) {
  .consultation_time ul .time_right {
    width: 82%;
  }
}
.consultation_time ul .time_right dl {
  display: flex;
}
@media print, screen and (max-width: 767px) {
  .consultation_time ul .time_right dl {
    flex-direction: column;
    padding: 0px 25px;
  }
}
.consultation_time ul .time_right dl dd span {
  /*font-weight: bold;*/
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .consultation_time ul .time_right dl dd span {
    padding-left: 20px;
  }
}
@media print, screen and (max-width: 767px) {
  .consultation_time ul .time_right dl dd span {
    padding-top: 5px;
  }
}

/************************************************
 = hamburger
*************************************************/
@media print, screen and (max-width: 767px) {
  .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  }

  .global-nav {
    position: fixed;
    right: -320px;
    /* これで隠れる */
    top: 0;
    width: 300px;
    /* スマホに収まるくらい */
    height: 100vh;
    padding-top: 40px;
    padding-bottom: 100px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
  }

  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    /* クリックしやすいようにちゃんと幅を指定する */
    height: 40px;
    /* クリックしやすいようにちゃんと高さを指定する */
    cursor: pointer;
    z-index: 300;
  }

  .global-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .global-nav__item {
    text-align: center;
    padding: 0 14px;
  }

  .global-nav__item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #1b1b1b;
  }

  .global-nav__item a:hover {
    background-color: #eee;
  }

  .hamburger__line {
    position: absolute;
    left: -20px;
    width: 40px;
    height: 2px;
    background-color: #a40182;
    transition: all .6s;
  }

  .hamburger__line--1 {
    top: 18px;
  }

  .hamburger__line--2 {
    top: 32px;
  }

  .hamburger__line--3 {
    top: 46px;
  }

  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .global-nav {
    right: 0;
  }

  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }

  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 24px;
  }

  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 24px;
  }
}
/************************************************
 = main_visual
*************************************************/
#header .mainvisual {
  margin-bottom: 20px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
}
#header .mainvisual ul li img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  #header .mainvisual ul li img {
    object-fit: cover;
    height: 675px;
  }
}

/************************************************
 = smile  わたしたちの歯科治療で、患者様を笑顔にしたいから
*************************************************/
.smile .smile_box {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .smile .smile_box {
    padding: 0 50px;
  }
}
.smile .smile_box::after {
  background-image: url(../images/smile/dr_harumi.png);
  display: inline-block;
  position: absolute;
  right: 0px;
  bottom: -50px;
  width: 323px;
  height: 399px;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: -1;
}
@media print, screen and (max-width: 767px) {
  .smile .smile_box::after {
    right: 10px;
    bottom: -15px;
    width: 100px;
    /*height: 124px;*/
    z-index: -1;
  }
}
.smile .smile_box dl {
  text-align: left;
}
@media print, screen and (max-width: 767px) {
  .smile .smile_box dl {
    /*padding-bottom: 100px;*/
  }
}
.smile .smile_box dl dt {
  font-size: 20px;
  line-height: 1.7em;
  padding-bottom: 30px;
}
@media print, screen and (max-width: 767px) {
  .smile .smile_box dl dt {
    font-size: 16px;
    text-align: center;
  }
}
.smile .smile_box dl .smile_txt {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  line-height: 2;
}
@media print, screen and (max-width: 767px) {
  .smile .smile_box dl .smile_txt {
    padding: 0 20px;
    line-height: 1.7;
  }
}
.smile .smile_box dl dd {
  font-size: 16px;
}
.smile .smile_box dl dd:nth-of-type(2) {
  display: flex;
  /*padding: 40px 0;*/
  padding: 110px 0 40px;
}
@media print, screen and (max-width: 767px) {
  .smile .smile_box dl dd:nth-of-type(2) {
    width: 100%;
  }
}
.smile .smile_box dl dd:nth-of-type(2) span {
  display: block;
  color: #a40182;
  font-size: 18px;
  border: 1px solid #a40182;
  width: 520px;
  padding: 16px 0;
  text-align: center;
  font-weight: 500;
  line-height: 2;
}
@media print, screen and (max-width: 767px) {
  .smile .smile_box dl dd:nth-of-type(2) span {
    width: 75%;
    padding: 14px 0;
    background-color: #fff;
  }
}
.smile .smile_box dl dd:nth-of-type(2) a {
  font-size: 13px;
  display: block;
  color: #a40182;
  border: 1px solid #a40182;
  border-left: none;
  width: 100px;
  padding: 10px 0;
  text-align: center;
  line-height: 1.5;
  letter-spacing: -0.1em;
  transition: 0.8s;
  position: relative;
}
@media print, screen and (max-width: 767px) {
  .smile .smile_box dl dd:nth-of-type(2) a {
    width: 25%;
    padding: 30px 0;
    background-color: #fff;
  }
}
.smile .smile_box dl dd:nth-of-type(2) a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #a40182;
}
.smile .smile_box dl dd:nth-of-type(2) a:hover::before {
  border-left: solid 1px #fff;
}
.smile .smile_box dl dd:nth-of-type(2) a:hover::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
.smile .smile_box dl dd:nth-of-type(2) a::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0px;
  border-left: solid 1px #a40182;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  position: absolute;
  top: 77%;
  margin-top: 1px;
  left: 48px;
}
@media print, screen and (max-width: 767px) {
  .smile .smile_box dl dd:nth-of-type(2) a::before {
    left: 50%;
  }
}
.smile .smile_box dl dd:nth-of-type(2) a::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #a40182;
  border-right: solid 1px #a40182;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 78%;
  margin-top: 0px;
  left: 45px;
}
@media print, screen and (max-width: 767px) {
  .smile .smile_box dl dd:nth-of-type(2) a::after {
    left: 47%;
  }
}
.smile .smile_box p {
  width: 300px;
}
.smile .smile_box p img {
  width: 100%;
}

/************************************************
 = h2    h2サブタイトル
*************************************************/
h2 {
  text-align: center;
  font-size: 2.05em;
  margin-bottom: 40px;
  position: relative;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: bold;
}
h2 span {
  display: inline-block;
}
h2 span big {
  display: block;
  font-size: 35px;
  color: #333333;
  padding-top: 8px;
  letter-spacing: 0.1em;
}
@media print, screen and (max-width: 767px) {
  h2 span big {
    font-size: 25px;
  }
}
h2 span::after {
  background-image: url("../images/common/treatment.png");
  right: 13px;
  display: inline-block;
  position: absolute;
  top: 70px;
  width: 110px;
  height: 10px;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  left: 45%;
}
@media print, screen and (max-width: 767px) {
  h2 span::after {
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}

/************************************************
 = h3    h3サブタイトル
*************************************************/
h3 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}
@media print, screen and (max-width: 767px) {
  h3 {
    font-size: 1.3em;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
h3 span {
  display: inline-block;
  position: relative;
}
h3 span big {
  display: block;
  font-size: 35px;
  padding-top: 8px;
  font-weight: 500;
}
@media print, screen and (max-width: 767px) {
  h3 span big {
    font-size: 20px;
  }
}
h3 span small {
  font-size: 14px;
  color: lightblue;
  display: block;
  padding-top: 5px;
}
h3 span::before, h3 span::after {
  display: inline-block;
  position: absolute;
  top: 10px;
  width: 58px;
  height: 52px;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
}
@media print, screen and (max-width: 767px) {
  h3 span::before, h3 span::after {
    width: 20px;
    height: 24px;
  }
}
h3 span::before {
  background-image: url("../images/common/tm_01.png");
  left: -70px;
}
@media print, screen and (max-width: 767px) {
  h3 span::before {
    left: -30px;
  }
}
h3 span::after {
  background-image: url("../images/common/tm_02.png");
  right: -73px;
}
@media print, screen and (max-width: 767px) {
  h3 span::after {
    right: -30px;
  }
}
h3 span big {
  color: #a40182;
}

/************************************************
 = h5    h5サブタイトル
*************************************************/
h5 {
  font-size: 30px;
  font-weight: 500;
}
@media print, screen and (max-width: 767px) {
  h5 {
    font-size: 22px;
  }
}
h5 span {
  font-size: 20px;
  display: block;
  padding: 25px 0 55px;
}
@media print, screen and (max-width: 767px) {
  h5 span {
    font-size: 18px;
  }
}

/************************************************
 = bg_pink    背景ピンク
*************************************************/
.bg_pink {
  height: auto;
  width: 100%;
  background: #f7dfed;
}

/************************************************
 = such_dental      はるみ歯科はこんな歯科医院です   
*************************************************/
.bg_such_dental .six_such_dental {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  row-gap: 20px;
}
@media print, screen and (max-width: 767px) {
  .bg_such_dental .six_such_dental {
    flex-direction: column;
    row-gap: 50px;
  }
}
.bg_such_dental .six_such_dental li {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .bg_such_dental .six_such_dental li {
    width: 50%;
  }
}
.bg_such_dental .six_such_dental li::after {
  display: inline-block;
  position: absolute;
  right: 17px;
  bottom: 25px;
  width: 270px;
  height: 230px;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
}
@media print, screen and (max-width: 767px) {
  .bg_such_dental .six_such_dental li::after {
    width: 200px;
    height: 170px;
    right: 10px;
    bottom: -30px;
  }
}
.bg_such_dental .six_such_dental li dl {
  background-color: #fff;
  text-align: left;
  padding: 20px;
}
@media print, screen and (min-width: 768px) {
  .bg_such_dental .six_such_dental li dl {
    width: 500px;
    height: 360px;
  }
}
@media print, screen and (max-width: 767px) {
  .bg_such_dental .six_such_dental li dl {
    padding: 20px 20px 150px;
  }
}
.bg_such_dental .six_such_dental li dl dt {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}
.bg_such_dental .six_such_dental li dl dt big {
  font-size: 60px;
  color: #a40182;
  transform: scale(0.7, 1);
  padding-right: 10px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.bg_such_dental .six_such_dental li dl dt span {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}
.bg_such_dental .six_such_dental li dl dd {
  width: 230px;
  line-height: 1.5;
  font-size: 16px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}
@media print, screen and (max-width: 767px) {
  .bg_such_dental .six_such_dental li dl dd {
    width: 100%;
  }
}
.bg_such_dental .six_such_dental .six_such_dental_01::after {
  background-image: url("../images/such_dental/such_dental_01_fix.png");
}
.bg_such_dental .six_such_dental .six_such_dental_02::after {
  background-image: url("../images/such_dental/such_dental_02.png");
}
.bg_such_dental .six_such_dental .six_such_dental_03::after {
  background-image: url("../images/such_dental/such_dental_03_fix.png");
}
.bg_such_dental .six_such_dental .six_such_dental_04::after {
  background-image: url("../images/such_dental/such_dental_04_fix.png");
}
.bg_such_dental .six_such_dental .six_such_dental_05::after {
  background-image: url("../images/such_dental/such_dental_05.png");
}
.bg_such_dental .six_such_dental .six_such_dental_06::after {
  background-image: url("../images/such_dental/such_dental_06_fix.png");
}
@media print, screen and (min-width: 768px) {
  .bg_such_dental .six_such_dental .six_such_dental_06 dl dd {
    font-size: 15px;
    line-height: 1.4;
  }
}
@media print, screen and (max-width: 767px) {
  .bg_such_dental {
    background-position: bottom !important;
    background: #f7dfed;
  }
}

.such_dental {
  padding: 50px 0;
}
@media print, screen and (max-width: 767px) {
  .such_dental {
    padding: 50px 0 100px;
  }
}

/************************************************
 = bnr_contact_rescue     矯正・長期治療を行っている方へ
*************************************************/
.bnr_contact_rescue h7 {
  font-size: 24px;
}
@media print, screen and (max-width: 767px) {
  .bnr_contact_rescue h7 {
    font-size: 16px;
    line-height: 1.7;
  }
}
.bnr_contact_rescue h7 span {
  background: linear-gradient(transparent 80%, #F8BBD0 80%);
  display: inline-block;
  font-size: 28px;
  padding-top: 15px;
}
@media print, screen and (max-width: 767px) {
  .bnr_contact_rescue h7 span {
    font-size: 22px;
    padding-top: 10px;
  }
}

/************************************************
 = information     クリニック情報
*************************************************/
.bg_information {
  padding-top: 85px;
}

.information {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-top: 40px;
}
@media print, screen and (max-width: 767px) {
  .information {
    flex-direction: column;
    padding-top: 20px;
  }
}
.information .info_left {
  width: 50%;
}
@media print, screen and (max-width: 767px) {
  .information .info_left {
    padding-bottom: 30px;
    width: 100%;
  }
}
.information .info_left div table {
  width: 560px;
  height: 160px;
  margin-bottom: 20px;
  color: #a40182;
  font-size: 15px;
}
@media print, screen and (max-width: 767px) {
  .information .info_left div table {
    width: 100%;
  }
}
.information .info_left div table tr {
  width: 100%;
}
.information .info_left div table tr:nth-of-type(1) td {
  border-top: 1px solid #a40182;
}
.information .info_left div table tr th {
  width: 33%;
  border-bottom: 1px solid #a40182;
  border-top: 1px solid #a40182;
}
.information .info_left div table tr th span {
  font-weight: 500;
}
.information .info_left div table tr td {
  width: 9%;
  border-bottom: 1px solid #a40182;
}
.information .info_left div table tr td span {
  display: block;
  padding-top: 3px;
}
.information .info_left div table tr td:nth-last-child(1) {
  padding-right: 20px;
  width: 13%;
}
.information .info_left div table tr .holiday {
  width: 35px;
}
.information .info_left div table .opentime td {
  padding: 5px 0;
}
.information .info_left div table .opentime td small {
  display: block;
  padding-top: 3px;
}
.information .info_left div table .closetime td {
  padding: 0;
}
.information .info_right {
  width: 47%;
  text-align: left;
}
@media print, screen and (max-width: 767px) {
  .information .info_right {
    width: 100%;
    padding: 0 20px;
  }
}
.information .info_right dl {
  padding-bottom: 30px;
}
.information .info_right dl dd {
  padding-bottom: 7px;
  font-size: 15px;
}
.information .info_right ul li {
  padding-bottom: 7px;
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
}
.information .info_right ul li a {
  text-decoration: underline;
  color: #a40182;
}
.information .info_right ul li a span {
  /*color: #a40182;*/
}
.information .info_right ul li a:hover {
  opacity: 0.8;
}

/************************************************
 = バナー      bnr_contact     
*************************************************/
.contact_banner {
  padding: 100px 0;
}
@media print, screen and (max-width: 767px) {
  .contact_banner {
    padding: 50px 0;
  }
}
.contact_banner .contact_banner_box {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
@media print, screen and (max-width: 767px) {
  .contact_banner .contact_banner_box {
    flex-direction: column;
  }
}
@media print, screen and (max-width: 767px) {
  .contact_banner .contact_banner_box p {
    padding-bottom: 10px;
  }
}
.contact_banner .contact_banner_box p a:hover {
  opacity: 0.8;
}
.contact_banner .contact_banner_box p a img {
  width: 100%;
}

.bnr_contact {
  padding: 100px 0;
}
.bnr_contact .bnr_contact_box {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
@media print, screen and (max-width: 767px) {
  .bnr_contact .bnr_contact_box {
    flex-direction: column;
  }
}
.bnr_contact .bnr_contact_box dl {
  width: 540px;
  height: 160px;
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 767px) {
  .bnr_contact .bnr_contact_box dl {
    width: 100%;
  }
}
.bnr_contact .bnr_contact_box dl a {
  text-decoration: none;
}
.bnr_contact .bnr_contact_box dl dt {
  width: 160px;
}
.bnr_contact .bnr_contact_box dl dd {
  width: 380px;
}
.bnr_contact .bnr_contact_box .left_bnr_box {
  background-color: #a40182;
  color: #fff;
  padding: 0 30px 0 40px;
}
.bnr_contact .bnr_contact_box .left_bnr_box dt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1.4;
  padding-right: 50px;
}
.bnr_contact .bnr_contact_box .left_bnr_box dt::before {
  position: absolute;
  content: "";
  border: 2px solid #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
.bnr_contact .bnr_contact_box .left_bnr_box dd p {
  display: flex;
  align-items: center;
}
.bnr_contact .bnr_contact_box .left_bnr_box dd p::before, .bnr_contact .bnr_contact_box .left_bnr_box dd p::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #fff;
  display: block;
}
.bnr_contact .bnr_contact_box .left_bnr_box dd p::before {
  margin-right: 0.5em;
}
.bnr_contact .bnr_contact_box .left_bnr_box dd a {
  color: #fff;
  display: block;
  font-size: 25px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  padding: 20px 0;
  text-decoration: none;
  text-align: left;
}
.bnr_contact .bnr_contact_box .left_bnr_box dd a span {
  transform: scale(1.15, 1);
  font-size: 35px;
  display: inline-block;
  padding-left: 15px;
}
.bnr_contact .bnr_contact_box .left_bnr_box dd span {
  font-size: 14px;
}
.bnr_contact .bnr_contact_box .right_bnr_box {
  border: 1px solid #a40182;
  color: #a40182;
  padding: 0 50px 0 20px;
}
.bnr_contact .bnr_contact_box .right_bnr_box dd span {
  color: #000;
  line-height: 1.7;
  padding-bottom: 20px;
  display: block;
  font-weight: bold;
}
.bnr_contact .bnr_contact_box .right_bnr_box dd a {
  color: #a40182;
  display: block;
  font-size: 20px;
  position: relative;
  font-weight: 500;
  transition: 0.8s;
}
.bnr_contact .bnr_contact_box .right_bnr_box dd a:hover {
  color: #d819b0;
}
.bnr_contact .bnr_contact_box .right_bnr_box dd a:hover span::before {
  background-color: #d819b0;
}
.bnr_contact .bnr_contact_box .right_bnr_box dd a span {
  position: relative;
  display: inline-block;
}
.bnr_contact .bnr_contact_box .right_bnr_box dd a span::before {
  position: absolute;
  top: -3px;
  left: 5px;
  width: 28px;
  height: 28px;
  content: '';
  border: 2px solid #fff;
  border-radius: 50%;
  background: #a40182;
}
.bnr_contact .bnr_contact_box .right_bnr_box dd a span::after {
  content: '';
  width: 14px;
  height: 12px;
  border: 0px;
  border-left: solid 1px #fff;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  top: 14px;
  right: -28px;
}
.bnr_contact .bnr_contact_box .right_bnr_box dd a::after {
  content: '';
  width: 7px;
  height: 7px;
  border: 0px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 9px;
  right: -2px;
}

/************************************************
 = これからもずっと健康な歯で  healthy_teeth   
*************************************************/
.bg_healthy_teeth {
  padding-bottom: 100px;
}
.bg_healthy_teeth .healthy_teeth_box h4 {
  border: 1px solid #a40182;
  font-size: 30px;
  margin: 60px auto;
  line-height: 2;
  color: #a40182;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .bg_healthy_teeth .healthy_teeth_box h4 {
    width: 500px;
    height: 65px;
  }
}
@media print, screen and (max-width: 767px) {
  .bg_healthy_teeth .healthy_teeth_box h4 {
    width: 100%;
    font-size: 25px;
  }
}

.general_medical_box .general_medical_txt {
  display: flex;
  justify-content: center;
  width: 100%;
  column-gap: 80px;
}
@media print, screen and (min-width: 768px) {
  .general_medical_box .general_medical_txt {
    padding: 0 100px;
  }
}
@media print, screen and (max-width: 767px) {
  .general_medical_box .general_medical_txt {
    flex-direction: column;
  }
}
.general_medical_box .general_medical_txt dl {
  width: 25%;
  display: flex;
  align-items: center;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .general_medical_box .general_medical_txt dl {
    flex-direction: column;
  }
}
@media print, screen and (max-width: 767px) {
  .general_medical_box .general_medical_txt dl {
    width: 100%;
    justify-content: space-around;
    padding-bottom: 100px;
  }
}
@media print, screen and (max-width: 767px) {
  .general_medical_box .general_medical_txt dl:nth-of-type(1)::after {
    top: 200px;
  }
}
.general_medical_box .general_medical_txt dl:nth-last-child(1)::after {
  display: none;
}
.general_medical_box .general_medical_txt dl::after {
  background-image: url(../images/healthy_teeth/arrow.png);
  right: -73px;
  display: inline-block;
  position: absolute;
  top: 90px;
  width: 98px;
  height: 28px;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
}
@media print, screen and (max-width: 767px) {
  .general_medical_box .general_medical_txt dl::after {
    transform: rotateZ(90deg);
    top: 130px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 60px;
    height: 17px;
    background-size: contain;
  }
}
.general_medical_box .general_medical_txt dl dd img {
  padding: 30px 0;
}
.general_medical_box .general_medical_txt dl dd p {
  font-size: 20px;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}
@media print, screen and (max-width: 767px) {
  .general_medical_box .general_medical_txt dl dd p {
    font-size: 18px;
  }
}
.general_medical_box .general_medical_txt dl dd p span {
  display: block;
}
.general_medical_box .general_medical_txt dl .general_medical_txt_images {
  height: 180px;
}
.general_medical_box .general_medical_txt dl .general_medical_txt_icon img {
  padding: 20px 0;
}
.general_medical_box .general_medical_txt dl .general_medical_question {
  padding-left: 20px;
  line-height: 1.5;
}
.general_medical_box .general_medical_txt dl .general_medical_question span {
  font-weight: bold;
  font-size: 16px;
}
.general_medical_box .general_medical_txt dl .general_medical_question p {
  padding: 10px 0 20px;
  font-size: 15px;
  line-height: 1.5;
}
.general_medical_box .general_medical_txt dl .general_medical_question ul li {
  font-size: 14px;
  padding-bottom: 5px;
}
.general_medical_box .general_medical_txt dl .general_medical_question ul li span {
  color: #a40182;
  display: inline-block;
}
.general_medical_box .general_medical_txt dl .general_medical_txt_content {
  line-height: 1.5;
  text-align: left;
  width: 190px;
  font-size: 14px;
}
.general_medical_box .general_medical_imege {
  display: flex;
  width: 100%;
  justify-content: space-between;
  column-gap: 10px;
  padding: 60px 0 20px;
}
@media print, screen and (max-width: 767px) {
  .general_medical_box .general_medical_imege {
    flex-direction: column;
    padding: 0px 0 20px;
    row-gap: 10px;
  }
}
.general_medical_box .general_medical_imege dl {
  padding: 15px 15px 30px 15px;
  border: 1px solid #ccc;
}
@media print, screen and (min-width: 768px) {
  .general_medical_box .general_medical_imege dl {
    width: calc(100% / 3);
  }
}
@media print, screen and (max-width: 767px) {
  .general_medical_box .general_medical_imege dl {
    width: 100%;
  }
}
.general_medical_box .general_medical_imege dl dd:nth-of-type(1) {
  font-size: 22px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: bold;
  padding-top: 7px;
}
.general_medical_box .general_medical_imege dl dd small {
  display: block;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 10px;
}
.general_medical_box .general_medical_imege dl dd p {
  font-size: 15px;
  line-height: 1.8;
  padding: 20px 0 40px;
  text-align: left;
}
.general_medical_box .general_medical_imege dl dd a {
  font-size: 14px;
  color: #a40182;
  border: 1px solid #a40182;
  border-radius: 50px;
  padding: 7px 15px;
  text-decoration: none;
  transition: 0.8s;
}
.general_medical_box .general_medical_imege dl dd a:hover {
  color: #fff;
  background-color: #a40182;
}

.professional_medical_box .professional_medical {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
.professional_medical_box .professional_medical dl {
  height: 270px;
  border: 1px solid #ccc;
  text-align: left;
  padding: 25px 20px;
}
@media print, screen and (min-width: 768px) {
  .professional_medical_box .professional_medical dl {
    width: 360px;
  }
}
@media print, screen and (max-width: 767px) {
  .professional_medical_box .professional_medical dl {
    width: 100%;
  }
}
.professional_medical_box .professional_medical dl dt {
  font-size: 14px;
}
.professional_medical_box .professional_medical dl dt span {
  display: block;
  font-size: 22px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  padding: 15px 0 0 0;
}
.professional_medical_box .professional_medical dl dd {
  padding-top: 20px;
  height: 125px;
}
.professional_medical_box .professional_medical dl dd p {
  font-size: 15px;
  line-height: 1.6;
  width: 220px;
  letter-spacing: -0.082em;
}
.professional_medical_box .professional_medical dl dd a {
  font-size: 14px;
  color: #a40182;
  border: 1px solid #a40182;
  border-radius: 50px;
  padding: 6px 15px;
  text-decoration: none;
  transition: 0.8s;
}
.professional_medical_box .professional_medical dl dd a:hover {
  color: #fff;
  background-color: #a40182;
}
.professional_medical_box .professional_medical .professional_medical_01 {
  background: url("../images/healthy_teeth/specialty_01.jpg") no-repeat;
  background-position: right;
}
.professional_medical_box .professional_medical .professional_medical_02 {
  background: url("../images/healthy_teeth/specialty_02.jpg") no-repeat;
  background-position: right;
}
.professional_medical_box .professional_medical .professional_medical_03 {
  background: url("../images/healthy_teeth/specialty_03.jpg") no-repeat;
  background-position: right;
}
.professional_medical_box .professional_medical .professional_medical_04 {
  background: url("../images/healthy_teeth/specialty_04.jpg") no-repeat;
  background-position: right;
}
.professional_medical_box .professional_medical .professional_medical_05 {
  background: url("../images/healthy_teeth/specialty_05.jpg") no-repeat;
  background-position: right;
}
.professional_medical_box .professional_medical .professional_medical_06 {
  background: url("../images/healthy_teeth/specialty_06.jpg") no-repeat;
  background-position: right;
}

/************************************************
 = 専門性の高いチーム医療      professional_team  
*************************************************/
.bg_professional_team {
  padding: 80px 0;
}
@media print, screen and (max-width: 767px) {
  .bg_professional_team {
    padding: 40px 0 20px;
  }
}
.bg_professional_team .professional_team h5 span {
  line-height: 2;
  letter-spacing: -0.05em;
  font-size: 15px;
  padding: 25px 0 40px;
}
@media print, screen and (max-width: 767px) {
  .bg_professional_team .professional_team h5 span {
    text-align: left;
  }
}
.bg_professional_team .professional_team .only_hospital {
  font-size: 24px;
  text-align: center;
  background-color: #740274;
  padding: 20px 0;
  color: #fff;
  margin: 10px 0 5px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  line-height: 1.6;
}
@media print, screen and (max-width: 767px) {
  .bg_professional_team .professional_team .only_hospital {
    font-size: 17px;
    padding: 10px;
  }
}
.bg_professional_team .professional_team .case_txt {
  font-size: 15px;
  text-align: right;
  padding-top: 5px;
}
.bg_professional_team .professional_team .see_case_btn a {
  font-size: 20px;
  color: #a40182;
  border: 1px solid #a40182;
  border-radius: 50px;
  padding: 15px 100px;
  text-decoration: none;
  transition: 0.8s;
  margin-top: 30px;
  display: inline-block;
  background-color: #fff;
  letter-spacing: 0.05em;
}
.bg_professional_team .professional_team .see_case_btn a:hover {
  color: #fff;
  background-color: #a40182;
}
@media print, screen and (max-width: 767px) {
  .bg_professional_team .professional_team .see_case_btn a {
    font-size: 17px;
  }
}

.professional_team_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media print, screen and (max-width: 767px) {
  .professional_team_box {
    flex-direction: column;
    row-gap: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .professional_team_box .pro_person_01 {
    height: 1050px;
  }
}
@media print, screen and (min-width: 768px) {
  .professional_team_box .pro_person_02 {
    height: 1050px;
  }
}
@media print, screen and (min-width: 768px) {
  .professional_team_box .pro_person_03 {
    height: 1340px;
  }
  .professional_team_box .pro_person_03 dd a {
    margin-top: 50px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .professional_team_box .pro_person_04 {
    height: 280px;
  }
}
.professional_team_box .pro_person {
  padding: 25px;
  background-color: #fff;
  padding: 25px 20px 50px 20px;
}
@media print, screen and (min-width: 768px) {
  .professional_team_box .pro_person {
    width: 360px;
  }
}
@media print, screen and (max-width: 767px) {
  .professional_team_box .pro_person {
    width: 100%;
  }
}
.professional_team_box .pro_person dd p {
  font-size: 15px;
  line-height: 1.8;
  padding: 20px 0;
}
.professional_team_box .pro_person dd p .pack {
  letter-spacing: -0.102em;
  display: inline-block;
  font-size: 15px;
}
.professional_team_box .pro_person dd span {
  font-size: 18px;
  padding: 10px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
  display: block;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: bold;
}
.professional_team_box .pro_person dd ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
}
.professional_team_box .pro_person dd ul li {
  padding-bottom: 10px;
}
.professional_team_box .pro_person dd ul li:nth-of-type(1) {
  padding-bottom: 20px;
}
.professional_team_box .pro_person dd ul li figure {
  margin: 0;
}
.professional_team_box .pro_person dd ul .pro_name_border {
  padding-bottom: 15px;
  margin-bottom: 25px;
}
@media print, screen and (min-width: 768px) {
  .professional_team_box .pro_person dd ul .pro_name_border {
    height: 150px;
  }
}
.professional_team_box .pro_person dd ul .pro_name dl {
  display: flex;
  width: 100%;
  font-size: 11px;
  column-gap: 5px;
  padding-bottom: 10px;
}
@media print, screen and (max-width: 767px) {
  .professional_team_box .pro_person dd ul .pro_name dl {
    padding-bottom: 5px;
  }
}
.professional_team_box .pro_person dd ul .pro_name dl dt {
  width: 81px;
  text-align: right;
}
.professional_team_box .pro_person dd ul .pro_name dl dd {
  width: 240px;
  text-align: left;
}
@media print, screen and (max-width: 767px) {
  .professional_team_box .pro_person dd ul .pro_name dl dd {
    width: 70%;
  }
}
.professional_team_box .pro_person dd a {
  font-size: 14px;
  color: #a40182;
  border: 1px solid #a40182;
  border-radius: 50px;
  padding: 6px 15px;
  text-decoration: none;
  transition: 0.8s;
  margin-top: 20px;
  display: inline-block;
}
.professional_team_box .pro_person dd a:hover {
  color: #fff;
  background-color: #a40182;
}

.professional_team_box {
  column-gap: 10px;
}
.professional_team_box .left_team_box {
  row-gap: 10px;
  display: flex;
  flex-direction: column;
}
.professional_team_box .left_team_box .up_team_box {
  display: flex;
  column-gap: 10px;
}
@media print, screen and (max-width: 767px) {
  .professional_team_box .left_team_box .up_team_box {
    flex-direction: column;
    row-gap: 10px;
  }
}
.professional_team_box .comb_name {
  font-size: 11px;
  width: 450px;
}
@media print, screen and (max-width: 767px) {
  .professional_team_box .comb_name {
    width: 100%;
  }
}
.professional_team_box .comb_name dl {
  display: flex;
  width: 100%;
  font-size: 11px;
  column-gap: 5px;
  padding-bottom: 10px;
}
.professional_team_box .comb_name dl dt {
  width: 20%;
  text-align: right;
}
@media print, screen and (max-width: 767px) {
  .professional_team_box .comb_name dl dt {
    width: 80px;
  }
}
.professional_team_box .comb_name dl dd {
  width: 80%;
  text-align: left;
}
@media print, screen and (max-width: 767px) {
  .professional_team_box .comb_name dl dd {
    width: 70%;
  }
}

@media print, screen and (max-width: 767px) {
  .outline_team_box .pro_person {
    background-color: #fff;
    padding: 25px 20px 50px 20px;
  }
  .outline_team_box .pro_comb {
    width: 100%;
  }
  .outline_team_box .pro_comb .pro_comb_box {
    display: flex;
    column-gap: 10px;
    padding-top: 20px;
    flex-direction: column;
  }
  .outline_team_box .pro_comb .pro_comb_box figure {
    width: 100%;
    margin: 0;
  }
  .outline_team_box .pro_comb .pro_comb_box figure img {
    width: 100%;
  }
  .outline_team_box .pro_comb .pro_comb_box figcaption {
    font-weight: bold;
    padding-bottom: 5px;
    font-size: 12px;
    text-align: left;
  }
  .outline_team_box .pro_comb .pro_comb_box .comb_name {
    width: 100%;
    font-size: 11px;
  }
  .outline_team_box .pro_comb .pro_comb_box .comb_name dl {
    display: flex;
    width: 100%;
    font-size: 11px;
    column-gap: 5px;
    padding-bottom: 10px;
  }
  .outline_team_box .pro_comb .pro_comb_box .comb_name dl dt {
    width: 80px;
    text-align: right;
  }
  .outline_team_box .pro_comb .pro_comb_box .comb_name dl dd {
    width: 70%;
    text-align: left;
  }
}

.outline_team_box .down_team_box {
  width: 100%;
  column-gap: 10px;
}
.outline_team_box .down_team_box .pro_comb {
  width: 100%;
}
.outline_team_box .down_team_box .pro_comb dd .pro_comb_box {
  display: flex;
  column-gap: 10px;
  padding-top: 20px;
}
@media print, screen and (max-width: 767px) {
  .outline_team_box .down_team_box .pro_comb dd .pro_comb_box {
    flex-direction: column;
  }
}
.outline_team_box .down_team_box .pro_comb dd .pro_comb_box figure {
  margin: 0;
  width: 227px;
}
@media print, screen and (max-width: 767px) {
  .outline_team_box .down_team_box .pro_comb dd .pro_comb_box figure {
    width: 100%;
  }
}
.outline_team_box .down_team_box .pro_comb dd .pro_comb_box figure img {
  width: 100%;
}
.outline_team_box .down_team_box .pro_comb dd .pro_comb_box figcaption {
  font-size: 10px;
  text-align: left;
}
@media print, screen and (max-width: 767px) {
  .outline_team_box .down_team_box .pro_comb dd .pro_comb_box figcaption {
    font-weight: bold;
    padding-bottom: 5px;
    font-size: 12px;
  }
}
.outline_team_box .down_team_box .pro_comb dd .pro_comb_box p {
  font-size: 12px;
  text-align: left;
  padding: 0;
  line-height: 1.4;
}

.outline_team_box {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.outline_team_box .bottom_team_box .pro_correct {
  background-color: #fff;
  padding: 25px;
}
.outline_team_box .bottom_team_box .pro_correct dd .pro_correct_box {
  display: flex;
  padding-top: 20px;
  column-gap: 10px;
}
@media print, screen and (max-width: 767px) {
  .outline_team_box .bottom_team_box .pro_correct dd .pro_correct_box {
    flex-direction: column;
  }
}
.outline_team_box .bottom_team_box .pro_correct dd .pro_correct_box figure {
  margin: 0;
  width: 227px;
}
@media print, screen and (max-width: 767px) {
  .outline_team_box .bottom_team_box .pro_correct dd .pro_correct_box figure {
    width: 100%;
    padding-bottom: 20px;
  }
}
.outline_team_box .bottom_team_box .pro_correct dd .pro_correct_box figure img {
  width: 100%;
}
.outline_team_box .bottom_team_box .pro_correct dd .pro_correct_box p {
  font-size: 12px;
  text-align: left;
  line-height: 1.4;
}
@media print, screen and (max-width: 767px) {
  .outline_team_box .bottom_team_box .pro_correct dd .pro_correct_box p {
    padding-top: 10px;
  }
}
.outline_team_box .bottom_team_box .pro_correct dd .pro_correct_box .comb_name {
  font-size: 11px;
}
.outline_team_box .bottom_team_box .pro_correct dd .pro_correct_box .comb_name dl {
  display: flex;
  width: 100%;
  font-size: 11px;
  column-gap: 5px;
  padding-bottom: 10px;
}
.outline_team_box .bottom_team_box .pro_correct dd .pro_correct_box .comb_name dl dt {
  width: 80px;
  text-align: right;
}
.outline_team_box .bottom_team_box .pro_correct dd .pro_correct_box .comb_name dl dd {
  width: 240px;
  text-align: left;
}
.outline_team_box .pro_title {
  color: #a40182;
  font-size: 22px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

.outline_team_box .treatment_name {
  align-items: baseline;
}
.outline_team_box .treatment_name dd {
  font-size: 1.2em;
  font-weight: bold;
}

/************************************************
 = バナー 入れ歯レスキュー      bnr_contact_rescue 
*************************************************/
.bnr_contact_rescue {
  padding-top: 100px;
}
@media print, screen and (max-width: 767px) {
  .bnr_contact_rescue {
    padding-top: 70px;
  }
}
.bnr_contact_rescue h6 {
  padding-bottom: 50px;
}
@media print, screen and (max-width: 767px) {
  .bnr_contact_rescue h6 {
    padding-bottom: 30px;
  }
}
.bnr_contact_rescue h6 span {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  background-color: #a40182;
  color: #fff;
  display: block;
  margin: 0 auto;
  line-height: 2;
  border-radius: 10px;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .bnr_contact_rescue h6 span {
    width: 700px;
    height: 70px;
    font-size: 35px;
  }
}
@media print, screen and (max-width: 767px) {
  .bnr_contact_rescue h6 span {
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
  }
}
.bnr_contact_rescue h6 span::after {
  position: absolute;
  content: " ";
  margin: auto;
  height: 0;
  width: 0;
  right: 0;
  left: 0;
  bottom: -20px;
  border-style: solid;
  border-color: #a40182 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}
.bnr_contact_rescue p {
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .bnr_contact_rescue p {
    width: 1000px;
  }
}
@media print, screen and (max-width: 767px) {
  .bnr_contact_rescue p {
    width: 100%;
  }
}
.bnr_contact_rescue p a img {
  width: 100%;
}

/************************************************
 = ご挨拶   bg_greeting
*************************************************/
.bg_greeting {
  padding: 80px 0;
}
@media print, screen and (max-width: 767px) {
  .bg_greeting {
    padding: 70px 0;
  }
}
.bg_greeting .greeting {
  display: flex;
  width: 100%;
  align-items: flex-start;
  padding-top: 30px;
}
@media print, screen and (max-width: 767px) {
  .bg_greeting .greeting {
    flex-direction: column;
    padding: 0 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .bg_greeting .greeting .greeting_img {
    margin-right: 50px;
    width: 400px;
  }
}
@media print, screen and (max-width: 767px) {
  .bg_greeting .greeting .greeting_img {
    width: 100%;
  }
}
.bg_greeting .greeting .greeting_img img {
  width: 100%;
}
.bg_greeting .greeting dl {
  width: calc(100% - 400px);
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  text-align: left;
}
@media print, screen and (max-width: 767px) {
  .bg_greeting .greeting dl {
    width: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .bg_greeting .greeting dl dt {
    padding-top: 10px;
  }
}
.bg_greeting .greeting dl dt ul li:nth-of-type(1) {
  font-weight: 500;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  display: inline-block;
}
.bg_greeting .greeting dl dt ul li:nth-of-type(2) {
  font-size: 35px;
  padding-top: 10px;
}
@media print, screen and (max-width: 767px) {
  .bg_greeting .greeting dl dt ul li:nth-of-type(2) {
    font-size: 25px;
  }
}
.bg_greeting .greeting dl dt ul li:nth-of-type(2) small {
  padding-left: 20px;
  font-size: 18px;
}
.bg_greeting .greeting dl dd p {
  line-height: 1.8;
  padding-top: 40px;
  font-size: 16px;
}
@media print, screen and (max-width: 767px) {
  .bg_greeting .greeting dl dd p {
    padding-top: 20px;
  }
}

/************************************************
 = はるみ歯科の行動指針   guidelines
*************************************************/
.bg_guidelines .guidelines {
  padding-bottom: 40px;
}
.bg_guidelines .guidelines dl {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 25px 0;
}
.bg_guidelines .guidelines dl:nth-last-child(1) {
  border: none;
}
.bg_guidelines .guidelines dl dt {
  font-size: 40px;
  color: #a40182;
  transform: scale(0.7, 1);
  padding-right: 10px;
}
.bg_guidelines .guidelines dl dd {
  font-size: 18px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

/************************************************
 = クリニック詳細　クリニック情報   bg_aboout
*************************************************/
.bg_aboout .aboout {
  text-align: left;
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 60px 0;
}
@media print, screen and (max-width: 767px) {
  .bg_aboout .aboout {
    margin: 40px 0 60px;
  }
}
.bg_aboout .aboout tr {
  width: 100%;
}
.bg_aboout .aboout tr th {
  width: 230px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding-left: 25px;
  font-size: 15px;
  font-weight: normal;
}
.bg_aboout .aboout tr td {
  width: 870px;
  border-bottom: 1px solid #ccc;
  padding: 22px 0 22px 25px;
  line-height: 1.7;
  font-size: 16px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}
.bg_aboout .aboout tr td span {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

/************************************************
 = アクセス   bg_access
*************************************************/
.bg_access {
  padding-bottom: 85px;
}
.bg_access .access_box .access_txt {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 30px 0 25px;
}
@media print, screen and (max-width: 767px) {
  .bg_access .access_box .access_txt {
    flex-direction: column;
    padding: 0px 0 10px;
  }
}
.bg_access .access_box .access_txt dl {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 16px;
}
@media print, screen and (max-width: 767px) {
  .bg_access .access_box .access_txt dl {
    padding: 0 10px 20px;
  }
}
.bg_access .access_box .access_txt dl dt {
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
  line-height: 2;
}
.bg_access .access_box .access_txt dl dt a {
  text-decoration: none;
}
.bg_access .access_box .access_txt dl dd {
  padding-top: 25px;
  line-height: 2;
}
.bg_access .access_box .access_txt p {
  border: 1px solid #ccc;
}
@media print, screen and (max-width: 767px) {
  .bg_access .access_box .access_txt p iframe {
    width: 100%;
  }
}
.bg_access .access_box .access_txt p img {
  width: 100%;
}
.bg_access .access_box .access_map {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media print, screen and (max-width: 767px) {
  .bg_access .access_box .access_map {
    flex-direction: column;
    row-gap: 10px;
  }
}
.bg_access .access_box .access_map p {
  border: 1px solid #ccc;
}
.bg_access .access_box .access_map p img {
  width: 100%;
}

/************************************************
 = 専用駐車場完備   bg_parking
*************************************************/
.bg_parking .parking {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-end;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .bg_parking .parking {
    padding-top: 40px;
  }
}
@media print, screen and (max-width: 767px) {
  .bg_parking .parking {
    flex-direction: column;
  }
}
.bg_parking .parking dl dt {
  line-height: 1.5;
  font-size: 16px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}
@media print, screen and (max-width: 767px) {
  .bg_parking .parking .parking_left dt {
    padding: 20px;
  }
}
.bg_parking .parking .parking_left dd {
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
}
@media print, screen and (min-width: 768px) {
  .bg_parking .parking .parking_left dd {
    padding-top: 42px;
  }
}
@media print, screen and (max-width: 767px) {
  .bg_parking .parking .parking_left dd {
    flex-direction: column;
    row-gap: 10px;
  }
}
@media print, screen and (max-width: 767px) {
  .bg_parking .parking .parking_left dd p {
    text-align: center;
  }
}
.bg_parking .parking .parking_right {
  width: calc(100% / 3);
}
@media print, screen and (min-width: 768px) {
  .bg_parking .parking .parking_right {
    padding-left: 8px;
  }
}
@media print, screen and (max-width: 767px) {
  .bg_parking .parking .parking_right {
    width: 100%;
    padding-top: 30px;
  }
}
@media print, screen and (max-width: 767px) {
  .bg_parking .parking .parking_right dt {
    padding: 0 20px;
  }
}
.bg_parking .parking .parking_right dd {
  padding-top: 20px;
  text-align: center;
}

/************************************************
 = バナー       bnr_contact_only    
*************************************************/
.bnr_contact_only {
  padding-top: 80px;
}
@media print, screen and (max-width: 767px) {
  .bnr_contact_only {
    padding: 40px 0;
  }
}
.bnr_contact_only p {
  margin: 0 auto;
  width: 900px;
}
@media print, screen and (max-width: 767px) {
  .bnr_contact_only p {
    width: 100%;
  }
}
.bnr_contact_only p a img {
  width: 100%;
}

/************************************************
 = footer
*************************************************/
footer {
  padding-top: 30px;
  border-top: 1px solid #a70084;
  margin-top: 100px;
}
footer .footer_center {
  display: flex;
  align-items: flex-start;
}
@media print, screen and (max-width: 767px) {
  footer .footer_center {
    column-gap: 20px;
    align-items: center;
    justify-content: center;
  }
}
footer .footer_center p {
  width: 100px;
}
footer .footer_center p img {
  width: 100%;
}
footer .footer_center div {
  display: flex;
}
@media print, screen and (max-width: 767px) {
  footer .footer_center div {
    flex-direction: column;
    grid-gap: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  footer .footer_center div ul {
    padding: 20px 40px;
  }
}
footer .footer_center div ul li {
  line-height: 2;
  text-align: left;
  font-size: 15px;
}
footer .copy {
  text-align: center;
  font-size: 13px;
  padding: 30px 0 40px;
  letter-spacing: 0.13em;
}

/************************************************
 = pagetop
*************************************************/
#pagetop {
  right: 30px;
  bottom: 100px !important;
}
#pagetop a {
  display: block;
  border: 2px dotted #a70084;
  color: #a70084;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding-top: 13px;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.3;
}
@media print, screen and (max-width: 767px) {
  #pagetop {
    bottom: 62px !important;
    right: 10px;
  }
}

/************************************************
 = お問い合わせフォーム
*************************************************/
.inquiry {
  padding-top: 100px;
}
@media print, screen and (max-width: 767px) {
  .inquiry h2 {
    font-size: 25px;
  }
}
.inquiry h2 small {
  display: block;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 30px;
}
@media print, screen and (max-width: 767px) {
  .inquiry h2 small {
    text-align: left;
    padding-top: 20px;
  }
}

/************************************************
 = inquiry
*************************************************/
/* form
--------------------------------------------------------- */
input.has_error,
textarea.has_error {
  background: #ffcccc;
}

div.error {
  background: #FFF5EB;
}

span.mm-preview {
  display: inline-block;
  padding-right: 1em;
}

.mm-preview {
  min-height: 1em;
}

.mm-confirm .ttl {
  padding: 20px 0;
}

.inquiry {
  margin: 0 auto 50px;
  width: 1100px;
}
@media print, screen and (max-width: 767px) {
  .inquiry {
    width: 100%;
  }
}

.inquiry dl {
  margin-bottom: 2px;
  width: 100%;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}
@media print, screen and (min-width: 768px) {
  .inquiry dl {
    display: table;
  }
}

@media print, screen and (max-width: 767px) {
  .inquiry dl.ct_part {
    margin: 300px 0 250px !important;
  }
}

.inquiry dl.sc_part {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-top: 20px;
}

.inquiry dl.sc_part dt {
  padding-left: 0;
}

.inquiry dl.sc_part + dl dt {
  padding-left: 0;
}

.inquiry dt.sdt {
  width: 125px;
}
@media print, screen and (max-width: 767px) {
  .inquiry dt.sdt {
    width: 100%;
    padding-bottom: 0;
  }
}

.inquiry dt {
  border-right: none;
  box-sizing: border-box;
  padding: 10px;
  padding-left: 45px;
  text-align: left;
  text-indent: -44px;
  vertical-align: middle;
  width: 150px;
  font-size: 18px;
  letter-spacing: -0.07em;
}
@media print, screen and (min-width: 768px) {
  .inquiry dt {
    display: table-cell;
    height: 70px;
  }
}
@media print, screen and (max-width: 767px) {
  .inquiry dt {
    width: 100%;
  }
}

.inquiry dt.any {
  text-indent: 0;
}

.inquiry dt .req {
  background: #FF3F01;
  border-radius: 50px;
  color: #ffffff;
  margin-right: 10px;
  padding: 0px 15px 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  letter-spacing: normal;
}

.inquiry dd .caution {
  color: #ff4000;
}

.inquiry .detail dt {
  line-height: 180px;
}

.inquiry dd {
  box-sizing: border-box;
  height: 70px;
  padding: 10px 0 10px 0px;
  text-align: left;
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) {
  .inquiry dd {
    display: table-cell;
    width: 500px;
  }
}

.inquiry dl.sc_part dd .parts {
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) {
  .inquiry dl.sc_part dd .parts {
    width: 600px;
    justify-content: space-between;
    row-gap: 20px;
  }
}
@media print, screen and (max-width: 767px) {
  .inquiry dl.sc_part dd .parts {
    width: 100%;
  }
}

.inquiry dl.sc_part + dl dd {
  padding-top: 0;
}
@media print, screen and (min-width: 768px) {
  .inquiry dl.sc_part + dl dd {
    width: 600px;
  }
}
@media print, screen and (max-width: 767px) {
  .inquiry dl.sc_part + dl dd {
    width: 100%;
  }
}

.inquiry dd .date__select {
  display: flex;
  align-items: center;
}

.inquiry dd label {
  font-size: 15px;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .inquiry dd label {
    width: 200px;
  }
}

.inquiry dd label input {
  height: 25px;
  border-radius: 0;
}
@media print, screen and (min-width: 768px) {
  .inquiry dd label input {
    width: 25px;
  }
}

.inquiry dd label span {
  display: inline-block;
  padding-left: 5px;
}

.inquiry dd label.last_other {
  display: flex;
  width: 100%;
  padding-bottom: 0;
}

.inquiry dd label.last_other input {
  display: block;
}

.inquiry dd label.last_other span {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .inquiry dd label.last_other span {
    width: 75px;
  }
}

.inquiry dd textarea.last_other_tex {
  display: block;
  height: 45px;
}
@media print, screen and (min-width: 768px) {
  .inquiry dd textarea.last_other_tex {
    width: 500px;
  }
}
@media print, screen and (max-width: 767px) {
  .inquiry dd textarea.last_other_tex {
    width: 70%;
    margin-left: 10px;
  }
}

form label textarea[type=text] {
  box-sizing: border-box;
  padding: 11px 10px;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}

.inquiry dd textarea {
  border: solid #afabab 1px;
  box-sizing: border-box;
  padding: 11px 10px;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  height: 240px;
}
@media print, screen and (min-width: 768px) {
  .inquiry dd textarea {
    width: 600px;
  }
}

.inquiry dd small {
  font-size: 15px;
  padding-left: 5px;
}

form.confirm .inquiry .detail dd {
  min-height: 180px;
  padding: 20px 0 0 25px;
}

div.error {
  background: none;
  color: #ff0000;
  padding: 3px 0;
  margin-bottom: 2px;
  text-align: left;
}

form.confirm input[type=text],
form.confirm input[type=checkbox],
form.confirm input[type=radio],
form.confirm input[type=password],
form.confirm textarea[type=text],
form.confirm textarea,
form.confirm select {
  display: none;
}

.mm-input {
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .mm-input {
    width: 130px;
  }
}

.mm-input button,
.mm-confirm button {
  background-color: #a70084;
  border: solid #a70084 1px;
  border-radius: 50px;
  color: #fff;
  font-size: 17px;
  outline: none;
  padding: 10px 0;
}
@media print, screen and (min-width: 768px) {
  .mm-input button,
  .mm-confirm button {
    width: 170px;
  }
}

form input[type=text] {
  font-size: 14px;
  box-sizing: border-box;
  padding: 5px 10px;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}

@media print, screen and (min-width: 768px) {
  .w60 {
    width: 60px;
  }
}
@media print, screen and (max-width: 767px) {
  .w60 {
    width: 100%;
  }
}

@media print, screen and (min-width: 768px) {
  .w300 {
    width: 300px;
  }
}
@media print, screen and (max-width: 767px) {
  .w300 {
    width: 100%;
  }
}

@media print, screen and (min-width: 768px) {
  .w500 {
    width: 500px;
  }
}
@media print, screen and (max-width: 767px) {
  .w500 {
    width: 100%;
  }
}

.questionnaire {
  margin: 0 auto 40px;
  text-align: left;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .questionnaire {
    width: 1000px;
  }
}

.questionnaire .ttl {
  background: #00b2b2;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  height: auto;
  line-height: 60px;
  margin-bottom: 30px;
  padding: 0;
  padding-left: 20px;
}

.questionnaire .caption {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  padding: 0 0 0 20px;
  position: relative;
  text-align: left;
}

.questionnaire .caption::before {
  background: #BFB494;
  content: "";
  height: 8px;
  position: absolute;
  top: 3px;
  left: 0;
  width: 8px;
}

.questionnaire .inner {
  border: solid #eeeeee 5px;
  margin-bottom: 30px;
  padding: 30px 30px 10px;
  overflow: hidden;
}

.questionnaire .inner dl {
  margin-bottom: 20px;
  overflow: hidden;
}

.questionnaire .inner dt {
  background: #f6f6f6;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 10px;
  padding-left: 15px;
}

.questionnaire .inner dd ul {
  flex-wrap: wrap;
}

.questionnaire .inner dd li {
  margin-right: 20px;
}

.questionnaire .inner dd li label {
  line-height: 30px;
}

/************************************************
 = complete
*************************************************/
.complete {
  padding: 100px;
  text-align: center;
}

.complete .caption {
  margin-bottom: 30px;
}

/************************************************
画面の横幅が767pxまで（スマホ用）
*************************************************/
@media print, screen and (max-width: 767px) {
  .mail {
    margin: 0 15px 30px;
    text-align: left;
  }

  .mail .catch {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }

  .mail .catch span {
    display: block;
  }

  .mail .txt {
    margin: 0 20px 20px;
  }

  .mail .column {
    margin: 0 20px 30px;
  }

  .mail .column .fLeft {
    float: none !important;
    margin: 0 20px;
    text-align: left;
  }

  .mail .column .fLeft p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .mail .column .fRight {
    display: none;
  }

  .mail dt {
    border-bottom: solid #8c6600 1px;
    color: #8c6600;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
  }

  .mail dd {
    margin-bottom: 25px;
    text-align: left;
  }

  .mail dd:last-child {
    margin-bottom: 0;
  }

  .inquiry {
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .inquiry dl {
    margin-bottom: 5px;
  }

  .inquiry dt {
    border-bottom: none;
    box-sizing: border-box;
    padding: 10px;
    text-align: left;
    text-indent: -44px;
  }

  .inquiry dt.any {
    text-indent: 0;
    padding-left: 10px;
  }

  .inquiry dt .req {
    background: #FF3F01;
    border-radius: 4px;
    color: #ffffff;
    margin-right: 5px;
    padding: 1px 5px;
    margin-left: 50px;
  }

  .inquiry .detail dt {
    line-height: 180px;
  }

  .inquiry dd {
    box-sizing: border-box;
    padding: 0 10px 20px;
    text-align: left;
    width: 100%;
  }

  .inquiry dd .date__select {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .inquiry dd .date__select p {
    width: 100%;
  }

  .inquiry dd label {
    margin-right: 20px;
  }

  .inquiry dd textarea {
    border: solid #afabab 1px;
    width: 100%;
    text-align: left;
  }

  form.confirm .inquiry .detail dd {
    min-height: 180px;
    padding: 20px 0 0 25px;
  }

  div.error {
    background: none;
    color: #ff0000;
    padding: 3px 0;
    margin-bottom: 2px;
    text-align: left;
  }

  form.confirm input[type=text],
  form.confirm input[type=checkbox],
  form.confirm input[type=radio],
  form.confirm input[type=password],
  form.confirm textarea[type=text],
  form.confirm textarea,
  form.confirm select {
    display: none;
  }

  .mm-input button,
  .mm-confirm button {
    background: -moz-linear-gradient(top, #ffffff 0%, #eeeeee);
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#eeeeee));
    border: solid #dddddd 1px;
    color: #111;
    font-size: 16px;
    outline: none;
    padding: 20px;
    width: 40%;
  }

  .mm-confirm .ttl {
    padding: 20px 0;
  }

  .mm-confirm.center {
    display: flex;
    justify-content: space-around;
  }

  form input[type=text] {
    box-sizing: border-box;
    padding: 5px;
    text-align: left;
  }

  .w60 {
    width: 60px;
  }

  .w560 {
    width: 100%;
  }

  .questionnaire {
    margin: 0 20px 30px;
    text-align: left;
  }

  .questionnaire .ttl {
    background: #00b2b2;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 10px;
  }

  .questionnaire .caption {
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
    padding: 0 0 0 15px;
    position: relative;
    text-align: left;
  }

  .questionnaire .caption::before {
    background: #00b2b2;
    content: "";
    height: 8px;
    position: absolute;
    top: 3px;
    left: 0;
    width: 8px;
  }

  .questionnaire .inner {
    border: solid #eeeeee 5px;
    margin-bottom: 30px;
    padding: 10px 8px;
    overflow: hidden;
  }

  .questionnaire .inner dl {
    margin-bottom: 20px;
    overflow: hidden;
  }

  .questionnaire .inner dt {
    background: #f6f6f6;
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 10px;
    padding-left: 10px;
  }

  .questionnaire .inner dd ul {
    flex-wrap: wrap;
  }

  .questionnaire .inner dd li {
    margin-right: 20px;
  }

  .questionnaire .inner dd li label {
    line-height: 30px;
  }

  .notice {
    border: dotted #444444 1px;
    box-sizing: border-box;
    margin: 0 20px 20px;
    padding: 10px;
    text-align: left;
  }

  .notice .caution {
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .copyright {
    margin: 0 20px;
    padding-bottom: 20px;
  }

  .copyright p {
    font-size: 16px;
  }

  .copyright p:last-child {
    padding-top: 10px;
  }

  .copyright p a {
    color: #564533;
  }

  /************************************************
   = complete
  *************************************************/
  .complete {
    padding: 20px;
    text-align: center;
  }

  .complete .caption {
    margin-bottom: 30px;
  }

  .complete .btn {
    margin: 0 50px;
  }
}
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .monitor .inner .icon {
    width: 10%;
  }

  .monitor .inner .monitor_cap span {
    display: inline;
  }

  .monitor .inner .monitor_cap,
  .monitor .inner .monitor_txt01,
  .monitor .inner .monitor_txt02,
  .monitor .inner .monitor_txt03 {
    margin-left: 13%;
  }

  .monitor .inner .image_logo {
    margin-bottom: 15px;
    width: 15%;
  }

  .monitor .inner .monitor_price01,
  .monitor .inner .monitor_price02,
  .monitor .inner .monitor_price03 {
    display: inline-block;
    float: none;
    margin: 0 15px;
  }

  .monitor .inner .clear {
    text-align: center;
  }
}
/************************************************
 = complete_form_box
*************************************************/
.complete_form_box .complete_form_txt p {
  padding: 30px 0;
  line-height: 2;
  font-size: 16px;
}
@media print, screen and (max-width: 767px) {
  .complete_form_box .complete_form_txt p {
    font-size: 13px;
  }
}
.complete_form_box .complete_form_txt p span {
  color: #a40182;
  display: block;
  font-size: 28px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}
@media print, screen and (max-width: 767px) {
  .complete_form_box .complete_form_txt p span {
    font-size: 20px;
  }
}
.complete_form_box a {
  display: inline-block;
  font-size: 18px;
  text-align: center;
  padding: 10px 40px;
  background-color: #a40182;
  color: #fff;
  border-radius: 5px;
  margin-top: 50px;
  text-decoration: none;
}
@media print, screen and (max-width: 767px) {
  .complete_form_box a {
    font-size: 14px;
  }
}
.complete_form_box a:hover {
  opacity: 0.8;
}
