@charset "UTF-8";

*,
::before,
::after {
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
  line-height: 1.15;
  /* 1 */
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  border-top-width: 1px;
  box-sizing: content-box;
  /* 1 */
  clear: both;
  color: inherit;
  height: 0;
  /* 1 */
  margin: 0;
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
  vertical-align: middle;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  min-width: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-collapse: collapse;
  border-color: inherit;
  /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

/* フォーム関連の調整 */
input:not([type=radio],
  [type=checkbox],
  [type=submit]),
select,
textarea {
  display: inline-block;
  padding: 2px 4px;
  border: solid 1px #8C815E;
  max-width: 100%;
  margin-top: 8px;
  min-height: 45px;
}

input[type=text],
input[type=email] {
  width: 100%;
}

input.tel {
  width: 90px;
}

input.date {
  width: 42%;
  min-width: 200px;
}

.time select {
  width: 42%;
  min-width: 200px;
  font-size: 14px;
}

input::placeholder {
  font-size: 12px;
}

select {
  width: 42%;
}

label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}


.lp-03_inner {
  background-color: #fff;
}

.lp-03 img {
  width: 100%;
  height: auto;
}

.lp-03 .cta_block {
  background-color: #E9E6DF;
}
.lp-03 .cta_block.bg_white {
	background-color: #fff;
}

.lp-03 .cta_block .form,.lp-03 .cta_block .line {
  display: block;
  position: relative;
  margin-top: 5%;
}

.lp-03 .cta_block .form::before,
.lp-03 .cta_block .form:active {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 630/101;
  background: url(../images/lp-03/cta_form.png) no-repeat center / 100% auto;
  transition: background-image 0.3s ease-in;
}

.lp-03 .cta_block .form:hover::before,
.lp-03 .cta_block .form:hover:active {
  background-image: url(../images/lp-03/cta_form_hover.png);
}

.lp-03 .cta_block .line::before,
.lp-03 .cta_block .line:active {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 630/101;
  background: url(../images/cta_btn_line.png) no-repeat center / 100% auto;
  transition: background-image 0.3s ease-in;
}
.lp-03 .cta_block .line:hover::before,
.lp-03 .cta_block .line:hover:active {
  background-image: url(../images/cta_btn_line_hover.png);
}

.lp-03 .cta_block .tel {
  display: block;
  position: relative;
  margin-top: 5%;
}

.lp-03 .cta_block .tel::before,
.lp-03 .cta_block .tel:active {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 630/101;
  background: url(../images/lp-03/cta_tel.png) no-repeat center / 100% auto;
  transition: background-image 0.3s ease-in;
}

.lp-03 .cta_block .tel:hover::before,
.lp-03 .cta_block .tel:hover:active {
  background-image: url(../images/lp-03/cta_tel_hover.png);
}

.lp-03 .cta_block_inner {
	display: block;
	width: 90%;
	margin: 0 auto 20px auto;
	padding-top: 25px;
}

.lp-03 .r-clinic {
  margin-top: calc(-22/390*100%);
  position: relative;
  z-index: -1;
}

.lp-03 .other_clinic {
  background-color: #e7e7e7;
  padding: 7.7%;
}

.lp-03 .other_clinic .kitahiro {
  display: block;
  position: relative;
}

.lp-03 .other_clinic .kitahiro::before,
.lp-03 .other_clinic .kitahiro:active {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 634/154;
  background: url(../images/lp-03/020_btn.png) no-repeat center / 100% auto;
  transition: background-image 0.3s ease-in;
}

.lp-03 .other_clinic .kitahiro:hover::before,
.lp-03 .other_clinic .kitahiro:hover:active {
  background-image: url(../images/lp-03/020_btn_hover.png);
}

.lp-03 .other_clinic .clinic_name {
  margin-top: 5%;
}

.lp-03 .other_clinic .ohmagari {
  display: block;
  position: relative;
  margin-top: 2%;
}

.lp-03 .other_clinic .ohmagari::before,
.lp-03 .other_clinic .ohmagari:active {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 634/154;
  background: url(../images/lp-03/020_btn.png) no-repeat center / 100% auto;
  transition: background-image 0.3s ease-in;
}

.lp-03 .other_clinic .ohmagari:hover::before,
.lp-03 .other_clinic .ohmagari:hover:active {
  background-image: url(../images/lp-03/020_btn_hover.png);
}

/* モーダル */
.modal_block {
  position: relative;
}

.modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, .6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.modal-container {
  background-color: #fff;
  max-height: 80vh;
  max-width: 680px;
  overflow-y: auto;
  padding: 0 10px;
  width: 92%;
  position: relative;
}

.modal-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 20px;
}

.modal-close {
  background: transparent;
  border: 0;
}

.modal-header .modal-close::before {
  content: "\2715";
}

.modal-content {
  line-height: 1.5;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.modal-open {
  display: block;
  margin: 0 auto;
  width: calc(510/750*100%);
  aspect-ratio: 510/82;
  max-height: 85px;
  position: absolute;
  left: 16%;
  top: 0;
}



/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal-overlay {
  animation: mmfadeIn .3s cubic-bezier(.0, .0, .2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal-container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-overlay {
  animation: mmfadeOut .3s cubic-bezier(.0, .0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

.lp-03 .embed_map {
  padding: 0 4%;
  margin: 6% 0;
}

.lp-03 .embed_map iframe {
  width: 100%;
  aspect-ratio: 4/3;
}
.lp-03 .access {
	background-color: #e5e6de;
}

@media only screen and (min-width: 768px) {
  .lp-03 {
    padding: 60px 0;
    background: #e7e7eb;

  }

  .lp-03_inner {
    border-radius: 0 80px 0 80px;
    overflow-x: hidden;
    box-shadow: 5px 7px 16px rgba(105, 138, 171, 0.45);
    max-width: 720px;
    margin: 0 auto;
  }


}

@media only screen and (min-width: 480px) {
  .lp-03 .cta_block .tel {
    display: none;
  }
  .lp-03 .cta_block .line {
    display: none;
  }
}



/* ===== コンタクトフォーム関連 ===== */

.form_page {
  padding: 40px 0;

}

.form_page article {
  max-width: 640px;
  margin: auto;
  padding: 0 20px;
}

.form_page .form_step {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 420px;
  margin: auto;
}

.form_page .form_step li {
  width: calc((100% - 80px)/3);
  background: #E9E6DF;
  border-radius: 20px;
  padding: 12px;
  position: relative;
  color: #8C815E;
}

.form_page .form_step li.current {
  background: #D076A8;
  color: #fff;
}

.form_page .form_step li+li:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #8C815E;
  position: absolute;
  top: calc((100% - 12px)/2);
  left: -24px;
  transform: rotate(45deg);
  transform-origin: top left;
}

.form_page .form_step li p {
  display: flex;
  justify-content: center;
  align-items: center;

}


.form_page .form_step li .en {
  font-size: 12px;
  display: inline-block;
  margin-right: 4px;
}

.form_page .form_step li .number {
  font-size: 16px;
  font-weight: bold;
}

.form_page .form_step li .ja {
  font-size: 14px;
}

.form_page .message {
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  margin: 40px 0 0;
}

.form_cnt {
  margin-top: 24px;
}

.form_ttl {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #8C815E;
}

.form_item {
  margin: 10px;
}

.date_detail {
  margin-top: 32px;
}

.date_ttl {
  font-size: 20px;
  color: #3c3c3c;
}

.date_image {
  padding: 0;
  margin-top: 24px;
}

.date_image img {
  width: 100%;
  height: auto;
}

.privacy_block {
  margin-top: 32px;
}

.privacy_block a {
  color: #D076A8;
  font-size: 12px;
  padding-bottom: 8px;
  border-bottom: solid 1px #D076A8;
}

.submit_block {
  margin-top: 40px;
  text-align: center;
}

.submit_block .return {
  display: inline-flex;
  padding: 16px 20px;
  border: solid 1px #D076A8;
  border-radius: 8px;
  color: #3c3c3c;
  font-size: 12px;
}

.submit_block .submiti {
  display: inline-flex;
  padding: 16px 20px;
  border-radius: 8px;
  background-color: #D076A8;
  color: #fff;
  transition: background-color .3s ease-in;
}

.submit_block .submiti:hover,
.submit_block .submiti:active {
  background-color: #8C815E;
}

/* ===== 2024.05.07追加CSS　write.長浜 ===== */
.article-box {
				padding: 4vw;
			}
@media screen and (min-width: 751px) {
				.article-box {
				padding: 20px;
			}
			}