@charset "UTF-8";

html {
	scroll-behavior: smooth;
}

body * {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a.no_link {
  pointer-events: none;
}

figure {
  padding: 0;
  margin: 0;
}

.pc_none {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

.sp_none {
  display: block;
}
@media only screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

header {
  background-color: #080A2D;
  color: #ffffff;
  padding: 2% 4%;
}
header h1 {
  font-size: 8px;
  margin-bottom: 1em;
  display: none;
}
header .head_wrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  header .head_wrap h2 {
    width: 60%;
  }
}
header .head_wrap div {
  width: 32%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  header .head_wrap div {
    width: 50%;
    display: none;
  }
}
header .head_wrap div dl {
  width: 82%;
}
header .head_wrap div dl dt {
  margin-bottom: 5px;
}
header .head_wrap div dl dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
header .head_wrap div dl .mail {
  width: 28%;
}
header .head_wrap div dl .tel {
  width: 68%;
}
header .head_wrap div p {
  width: 16%;
}
header nav {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  text-align: right;
}
header nav li {
  display: inline-block;
  margin-left: 1.5em;
  font-size: 13px;
}

header nav li:first-of-type {
	margin-left: 0;
}
@media only screen and (max-width: 768px) {
  header nav {
    margin: 0;
  }
  header nav ul {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #080A2D;
    padding-top: 40px;
    padding-bottom: 6%;
    margin: 0;
    display: none;
  }
  header nav li {
    display: block;
    text-align: center;
  }
  header nav li a {
    display: block;
    padding: 0.8em;
  }
}
header nav .open_btn {
  display: none;
  position: fixed;
  z-index: 500;
  width: 40px;
  height: 20px;
  right: 4%;
  top: 2.2%;
}
@media only screen and (max-width: 768px) {
  header nav .open_btn {
    display: block;
  }
}
header nav .open_btn span {
  height: 1px;
  background-color: #080A2D;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  transition: all 0.8s ease;
}
header nav .open_btn span:nth-of-type(1) {
  top: 0;
}
header nav .open_btn span:nth-of-type(2) {
  bottom: 50%;
}
header nav .open_btn span:nth-of-type(3) {
  bottom: 0;
}
header nav .open_btn.active span {
  background-color: #ffffff;
}
header nav .open_btn.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
header nav .open_btn.active span:nth-of-type(2) {
  opacity: 0;
}
header nav .open_btn.active span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.online_bnr {
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .online_bnr {
    margin: 12% 0;
    padding: 0 4%;
  }
}

.contact_foot {
  background-image: url("../img/foot_bg.png");
  background-size: cover;
  color: #ffffff;
  padding: 100px 4%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .contact_foot {
    padding: 12% 4%;
    background-position: center;
  }
}
.contact_foot h2 {
  font-weight: bold;
  font-size: 38px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .contact_foot h2 {
    font-size: 20px;
  }
}
.contact_foot p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .contact_foot p {
    font-size: 12px;
  }
}
.contact_foot section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 855px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .contact_foot section {
    display: block;
  }
}
.contact_foot section .tel {
  margin-right: 4%;
}
@media only screen and (max-width: 768px) {
  .contact_foot section .tel {
    margin-right: 0;
    margin-bottom: 6%;
  }
}

footer {
  background-color: #080A2D;
  padding-top: 80px;
  padding-bottom: 40px;
  text-align: center;
}
footer ul {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  footer ul {
    display: block;
  }
  footer ul li {
    width: 100%;
    margin-bottom: 6%;
  }
}
footer p {
  font-size: 10px;
  color: #ffffff;
}

.map {
  background-image: url("../img/bg_footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .map {
    padding-top: 8%;
    padding-bottom: 8%;
  }
}

.profile_foot {
  background-color: #d1d1d8;
  padding-top: 48px;
  padding-bottom: 72px;
  line-height: 1.5;
}
.profile_foot > div {
  width: 1024px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-right: 405px;
}
.profile_foot > div h2 {
  font-size: 40px;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  position: relative;
  margin-bottom: 32px;
}
.profile_foot > div h3 {
  font-size: 28px;
  position: relative;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  padding-left: 48px;
}
.profile_foot > div h3 em {
  font-size: 22px;
  margin-right: 1em;
}
.profile_foot > div h3 span {
  display: inline-block;
  background-color: #d1d1d8;
  position: relative;
  padding-left: 1em;
  padding-right: 1em;
  z-index: 50;
}
.profile_foot > div h3::after {
  content: " ";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
  background: -moz-linear-gradient(11.61% 587.53% 30deg, #000033 0%, #337185 32.69%, #66809c 77.43%, #000033 100%);
  background: -webkit-linear-gradient(30deg, #000033 0%, #337185 32.69%, #66809c 77.43%, #000033 100%);
  background: -webkit-gradient(linear, 11.61% 587.53%, 88.39% -487.53%, color-stop(0, #000033), color-stop(0.3269, #337185), color-stop(0.7743, #66809c), color-stop(1, #000033));
  background: -o-linear-gradient(30deg, #000033 0%, #337185 32.69%, #66809c 77.43%, #000033 100%);
  background: -ms-linear-gradient(30deg, #000033 0%, #337185 32.69%, #66809c 77.43%, #000033 100%);
  background: linear-gradient(60deg, #000033 0%, #337185 32.69%, #66809c 77.43%, #000033 100%);
  z-index: 1;
}
.profile_foot > div h5 {
  position: absolute;
  right: 0;
  top: 110px;
}
.profile_foot > div dl {
  margin-left: 16px;
  margin-top: 16px;
}
.profile_foot > div dl dt {
  font-weight: bold;
  font-size: 18px;
  border-bottom: 2px solid #000000;
  position: relative;
  line-height: 1.5;
}
.profile_foot > div dl dt::before {
  content: " ";
  display: block;
  width: 31px;
  height: 2px;
  position: absolute;
  background-color: #000;
  bottom: 50%;
  left: -22px;
  -webkit-transform: translate(0, 50%) rotate(45deg);
  transform: translate(0, 50%) rotate(64deg);
}
.profile_foot > div dl dd {
  font-size: 16px;
  margin-top: 16px;
  line-height: 1.75;
}
.profile_foot > div table {
  text-align: left;
  margin-top: 32px;
}
.profile_foot > div table caption {
  font-weight: bold;
  font-size: 18px;
  border-bottom: 2px solid #000000;
  position: relative;
  text-align: left;
  margin-left: 16px;
  margin-bottom: 20px;
}
.profile_foot > div table caption::before {
  content: " ";
  display: block;
  width: 31px;
  height: 2px;
  position: absolute;
  background-color: #000;
  bottom: 50%;
  left: -22px;
  -webkit-transform: translate(0, 50%) rotate(45deg);
  transform: translate(0, 50%) rotate(64deg);
}
.profile_foot > div table tr {
  border-bottom: 1px solid #000;
  font-size: 16px;
}
.profile_foot > div table tr:last-of-type {
  border-bottom: none;
}
.profile_foot > div table th {
  padding-left: 16px;
  padding-right: 8px;
  padding-top: 0.8em;
  padding-bottom: 0.7em;
  border-right: 1px dashed #000;
  vertical-align: top;
  white-space: nowrap;
}
.profile_foot > div table td {
  vertical-align: top;
  padding-left: 8px;
  padding-top: 0.8em;
  padding-bottom: 0.7em;
}
@media only screen and (max-width: 768px) {
  .profile_foot {
    padding-left: 4%;
    padding-right: 4%;
  }
  .profile_foot > div {
    padding-right: 0;
    width: 100%;
  }
  .profile_foot > div h5 {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
  }
  .profile_foot > div h5 img {
    width: 100%;
    height: auto;
  }
}

.button-menu {
  background-color: #111230;
  display: inline-block;
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 100;
}

.button-menu ul {
  padding: 0 4px;
}

.button-menu ul li {
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: 50% 20%;
  font-size: 10px;
  text-align: center;
  width: 70px;
}

.button-menu ul li a {
  display: block;
  color: #fff;
  padding-top: 62px;
  padding-bottom: 5px;
}

.button-menu ul li:first-child {
  background-image: url("../img/fix-web.png");
}

.button-menu ul li:nth-child(2) {
  background-image: url("../img/fix-tel.png");
}

.button-menu ul li:nth-child(2) a {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.button-menu ul li:nth-child(3) {
  background-image: url("../img/fix-emergency.svg");
}

.button-menu ul li:nth-child(3) a {
	border-bottom: 1px solid #FFF;
}

.button-menu ul li:last-child {
  background-image: url("../img/fix-top.png");
}

@media screen and (max-width: 768px) {
  .button-menu {
    bottom: 0;
    width: 100%;
    top: auto;
  }

  .button-menu ul {
    padding: 5px 3.5px;
  }

  .button-menu ul::after {
    content: "";
    display: block;
    clear: both;
  }

  .button-menu ul li {
    width: 25%;
    background-size: 20px;
    float: left;
  }

  .button-menu ul li:nth-child(2) a {
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
	
	.button-menu ul li:nth-child(3) a {
		border-bottom: none;
		 border-right: 1px solid #fff;
	}

  .button-menu ul li a {
    padding-top: 30px;
  }
}
.organizations_foot {
  margin-top: 32px;
  width: 1024px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.organizations_foot ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.organizations_foot ul li {
  padding-bottom: 24px;
}
.organizations_foot ul li:last-of-type {
  width: 100%;
}
.organizations_foot h6 {
  font-size: 16px;
  letter-spacing: 0.08em;
}

.info_foot {
  width: 1024px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 56px;
}
.info_foot h2 {
  font-size: 16px;
  vertical-align: middle;
}
.info_foot h2 img {
  vertical-align: middle;
}
.info_foot h2 em {
  vertical-align: middle;
  text-decoration: none;
  font-style: normal;
  position: relative;
  margin-left: 2em;
  padding-left: 1em;
  padding-right: 1em;
}
.info_foot h2 em::before, .info_foot h2 em::after {
  width: 25px;
  height: 50px;
  content: " ";
  display: inline-block;
  position: absolute;
  bottom: 50%;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.info_foot h2 em::before {
  background-image: url(../img/foot/title_left.png);
  left: 0;
}
.info_foot h2 em::after {
  background-image: url(../img/foot/title_right.png);
  right: 0;
}
.info_foot h2 span {
  font-size: 32px;
  margin-left: 0.5em;
  vertical-align: middle;
}
.info_foot > div {
  padding-top: 24px;
}
.info_foot > div div.info_sec {
  width: 520px;
  float: left;
}
.info_foot > div div.info_sec dl {
  background-color: #414159;
  color: #fff;
  font-weight: bold;
}
.info_foot > div div.info_sec dl dt {
  position: relative;
  display: inline-block;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  padding-bottom: 18px;
  padding-left: 1em;
  padding-right: 1.7em;
  height: 65px;
  border-radius: 0 65px 65px 0;
}
.info_foot > div div.info_sec dl dd {
  display: inline-block;
  vertical-align: -8px;
  font-size: 36px;
  letter-spacing: 0;
  margin-left: 10px;
  line-height: 1;
}
.info_foot > div div.info_sec dl dd img {
  vertical-align: 2px;
  margin-right: 10px;
}
.info_foot > div div.info_sec table {
  margin-top: 24px;
  width: 100%;
}
.info_foot > div div.info_sec table tr {
  font-size: 16px;
  line-height: 1.65;
  text-align: left;
  vertical-align: middle;
  position: relative;
  border-bottom: 1px solid #111230;
  border-left: 1px solid #111230;
}
.info_foot > div div.info_sec table tr th {
  font-weight: bold;
  vertical-align: middle;
  padding-top: 24px;
  padding-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.info_foot > div div.info_sec table tr th::after {
  content: " ";
  display: block;
  width: 100%;
  height: 16px;
  background-color: #fff;
  position: absolute;
  left: -1px;
  top: 0;
}
.info_foot > div div.info_sec table tr th::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 0 14px;
  border-color: transparent transparent transparent #111230;
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.info_foot > div div.info_sec table tr td {
  padding-top: 24px;
  padding-bottom: 8px;
  vertical-align: middle;
}
.info_foot > div div.map_sec {
  width: 462px;
  float: right;
}
.info_foot > div div.map_sec .map_wrap {
  position: relative;
  width: 100%;
  margin-top: 8px;
}
.info_foot > div div.map_sec .map_wrap:before {
  content: "";
  display: block;
  padding-top: 48%;
  /* 高さを幅の75%に固定 */
}
.info_foot > div div.map_sec .map_wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.info_foot > ul {
  margin-top: 32px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  padding-right: 258px;
}
.info_foot > ul li {
  padding-bottom: 16px;
}
.info_foot > ul li:last-of-type {
  position: absolute;
  right: 0;
  top: 0;
}
.info_foot.info_tokyo > ul {
  flex-wrap: wrap;
  padding-right: 0;
}
.info_foot.info_tokyo > ul li {
  width: 32%;
}
.info_foot.info_tokyo > ul li:last-of-type {
  position: relative;
}

@media only screen and (max-width: 768px) {
  .organizations_foot {
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
    margin-top: 12%;
  }
  .organizations_foot ul li {
    display: inline-block;
    padding-bottom: 4%;
  }
  .organizations_foot ul li img {
    zoom: 0.5;
  }
  .organizations_foot ul li:last-of-type {
    width: auto;
  }

  .info_foot {
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
  }
  .info_foot h2 {
    text-align: center;
  }
  .info_foot h2 img {
    margin-bottom: 4%;
  }
  .info_foot h2 em {
    display: inline-block;
    margin-left: 0;
    margin-top: 1em;
  }
  .info_foot h2 span {
    display: block;
    margin-top: 0.5em;
    margin-left: 0;
  }
  .info_foot > div {
    margin-top: 8%;
    padding-top: 10%;
  }
  .info_foot > div div.info_sec {
    width: 100%;
    float: none;
  }
  .info_foot > div div.info_sec dl {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .info_foot > div div.info_sec dl dt {
    font-size: 12px;
    padding-top: 16px;
    padding-bottom: 12px;
    height: auto;
    margin-right: 10px;
  }
  .info_foot > div div.info_sec dl dd {
    font-size: 18px;
    margin-left: 0;
    margin-top: 0;
  }
  .info_foot > div div.info_sec dl dd img {
    zoom: 0.5;
  }
  .info_foot > div div.info_sec table {
    margin-top: 4%;
    display: block;
  }
  .info_foot > div div.info_sec table tbody {
    display: block;
  }
  .info_foot > div div.info_sec table tr {
    display: block;
    position: relative;
    padding: 8% 4%;
  }
  .info_foot > div div.info_sec table tr::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 0 14px;
    border-color: transparent transparent transparent #111230;
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .info_foot > div div.info_sec table tr::before {
    content: " ";
    display: block;
    width: 100%;
    height: 16px;
    background-color: #fff;
    position: absolute;
    left: -1px;
    top: 0;
  }
  .info_foot > div div.info_sec table tr th {
    display: block;
    padding: 0;
    padding-bottom: 0.8em;
    margin-bottom: 0.8em;
    border-bottom: 1px dashed #111230;
  }
  .info_foot > div div.info_sec table tr th::before, .info_foot > div div.info_sec table tr th::after {
    content: none;
  }
  .info_foot > div div.info_sec table tr td {
    display: block;
    padding: 0;
  }
  .info_foot > div div.map_sec {
    margin-top: 8%;
    float: none;
    width: 100%;
  }
  .info_foot > div div.map_sec img {
    width: 100%;
    height: auto;
  }
  .info_foot > ul {
    padding-right: 0;
  }
  .info_foot > ul li {
    width: 48%;
    padding-bottom: 4%;
  }
  .info_foot > ul li img {
    width: 100%;
    height: auto;
  }
  .info_foot > ul li:nth-of-type(n + 5) {
    width: 100%;
    padding-right: 52%;
  }
  .info_foot > ul li:last-of-type {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 48%;
    padding-right: 0;
  }
  .info_foot.info_tokyo > ul li {
    width: 32%;
    padding-right: 0;
  }
}


/*美容整形ERのコンテンツ追加　2022/11/30*/

.emergency {
	max-width: 1024px;
	width: 92%;
	margin-left: auto;
	margin-right: auto;
	padding: 100px 0;
}

.emergency h2 {
	font-size: 48px;
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  margin-bottom: 1em;
}

.emergency h2 span {
	display: inline-block;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
  border-bottom: 2px dashed #080A2D;
  padding-bottom: 0.2em;
  margin-bottom: 0.2em;
}

.emergency h2 span::before,
.emergency h2 span::after {
	content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  width: 12px;
  height: 6px;
  background-color: #080A2D;
  left: 0;
}

.emergency h2 span::after {
	left: auto;
  right: 0;
}

.emergency h2 small {
	display: block;
  font-size: 14px;
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", "游ゴシック体", "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "YuGothic", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.emergency h3 {
	text-align: center;
  font-size: 32px;
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-bottom: 0.2em;
}

.emergency .hr {
	width: 22px;
  margin-bottom: -11px;
  margin-left: auto;
  margin-right: auto;
}

.emergency-contents {
	background: #D5DAE1;
	padding: 40px;
}

.emergency-txt {
	font-size: 18px;
  line-height: 2;
}

.emergency-bnr {
	display: block;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
}


@media only screen and (max-width: 768px) {
	
	.emergency {
		width: 100%;
		padding: 12% 4%;;
	}

	.emergency h2 {
		font-size: 32px;
	}

	.emergency h2 small {
		font-size: 10px;
	}

	.emergency h3 {
		font-size: 23px;
	}

	.emergency-contents {
		padding: 20px;
	}

	.emergency-txt {
		font-size: 12px;
	}

	.emergency-bnr {
		display: block;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 20px;
	}
	
	
}





/*ここまで美容整形ERのコンテンツ追加　2022/11/30*/


