@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  margin: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #3e3a39;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
  margin: 0;
  padding: 0;
  border: 0;
}

div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2 {
  line-height: 1.2;
}

h3,
h4 {
  line-height: 1.5;
}

h5,
h6 {
  line-height: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

b,
strong {
  font-weight: bolder;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  overflow: hidden;
  vertical-align: middle;
}

[role=button] {
  cursor: pointer;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

[hidden] {
  display: none !important;
}

*:focus {
  outline: none;
}

.clearfix::after {
  content: "";
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  clear: both;
}

* html .clearfix {
  zoom: 1;
}

*:first-child + html .clearfix {
  zoom: 1;
}

.pc-hidden {
  display: none;
}
@media screen and (max-width: 960px) {
  .pc-hidden {
    display: block;
  }
}

.sp-hidden {
  display: block;
}
@media screen and (max-width: 960px) {
  .sp-hidden {
    display: none;
  }
}

.w1000 {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

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

a {
  transition: 0.4s ease;
}

a:hover {
  opacity: 50%;
}

.sec-title .plus {
  position: relative;
  width: 12px;
  height: 12px;
  margin: auto;
}
.sec-title .plus::after, .sec-title .plus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 4px;
  background: #eee0e4;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sec-title .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sec-title .ttl-en {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #a80d77;
}
.sec-title .ttl-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 22px + (30 - 22) * (100vw - 335px) / (670 - 335), 30px);
  text-align: center;
  color: #6d376c;
}

.desc p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: #333;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-bottom: 15px;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0) 100%);
}
.header .inner {
  max-width: 1366px;
  width: 90%;
  margin: 0 auto;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .inner .h_logo {
  max-width: 292px;
  width: 50%;
}
@media screen and (max-width: 960px) {
  .header .inner .h_logo {
    width: 80%;
  }
}
.header .inner .h_right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .header .inner .h_right {
    position: fixed;
    top: 0;
    right: -100%; /* 最初は画面の外に隠す */
    width: 80%; /* メニューの幅 */
    height: 100vh;
    background-color: #fff;
    padding: 80px 20px 40px;
    transition: all 0.3s;
    flex-direction: column; /* 縦並びにする */
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 90;
    display: flex;
  }
  .header .inner .h_right.is-active {
    right: 0;
  }
}
.header .inner .h_right .column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .header .inner .h_right .column {
    flex-direction: column-reverse;
  }
}
.header .inner .h_right .column .h_address {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 960px) {
  .header .inner .h_right .column .h_address {
    margin-bottom: 20px;
    flex-direction: column;
  }
}
.header .inner .h_right .column .h_address .desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #222;
}
.header .inner .h_right .column .h_address .h_tel a {
  display: flex;
  align-items: center;
}
.header .inner .h_right .column .h_address .h_tel a svg {
  width: 15px;
  height: auto;
}
.header .inner .h_right .column .h_address .h_tel a .desc {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #2d2d64;
}
.header .inner .h_right .column .h_menu {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .header .inner .h_right .column .h_menu {
    flex-direction: column;
    gap: 20px;
  }
}
.header .inner .h_right .column .h_menu .menu-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #222;
  white-space: nowrap;
}
.header .inner .h_right .h_contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding: 12px 30px;
  background-color: #6d376c;
  border-radius: 27px;
}
.header .hamburger {
  display: none;
}
@media screen and (max-width: 960px) {
  .header .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 3px;
    position: relative;
    z-index: 100;
    width: 52px;
    height: 52px;
    background-color: #6d376c;
    border-radius: 50px;
    border: none;
    cursor: pointer;
  }
  .header .hamburger span {
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s;
  }
  .header .hamburger span:nth-child(1) {
    top: 19px;
  }
  .header .hamburger span:nth-child(2) {
    top: 25px;
  }
  .header .hamburger span:nth-child(3) {
    top: 31px;
  }
  .header .hamburger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .header .hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  .header .hamburger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media screen and (max-width: 960px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 960px) {
  .sp-only {
    display: inline !important;
  }
}

.fv {
  background: url(../img/fv_bg.png) no-repeat center/cover;
  position: relative;
}
.fv .inner {
  max-width: 1366px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 37px;
}
@media screen and (max-width: 960px) {
  .fv .inner {
    flex-direction: column-reverse;
    padding-top: 122px;
  }
}
.fv .inner .col-img {
  margin-top: auto;
}
.fv .reservebtn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
}
.fv .reservebtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 173px;
  height: 48px;
  border-radius: 16px 0px 0px 0px;
  background: #6d376c;
}
.fv .reservebtn a .text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 335px) / (670 - 335), 18px);
  text-align: center;
  color: #fff;
}
.fv .reservebtn a svg {
  width: 17px;
  height: auto;
}

.reason .w1000 {
  padding: 72px 0 170px;
}
@media screen and (max-width: 960px) {
  .reason .w1000 {
    padding: 100px 0 80px;
  }
}
.reason .sec-title {
  margin-bottom: 40px;
}
.reason .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 50px;
}
@media screen and (max-width: 960px) {
  .reason .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.reason .list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reason .list .item .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .reason .list .item .circle {
    width: 90%;
  }
}
.reason .list .item .item-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 335px) / (670 - 335), 20px);
  text-align: center;
  color: #6d376c;
  margin-bottom: 10px;
}

.about {
  background-color: #fcfcfc;
}
.about .w1000 {
  padding: 92px 0 76px;
}
@media screen and (max-width: 960px) {
  .about .w1000 {
    padding: 100px 0 80px;
  }
}
.about .sec-title {
  margin-bottom: 40px;
}
.about .column.top {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 960px) {
  .about .column.top {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.about .column.top::before {
  content: "";
  background: url(../img/img01.png) no-repeat center/contain;
  width: 252px;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: -52px;
}
@media screen and (max-width: 960px) {
  .about .column.top::before {
    position: relative;
    bottom: 0;
    height: 250px;
  }
}
.about .column.top .catch {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 20px + (26 - 20) * (100vw - 335px) / (670 - 335), 26px);
  color: #333;
  margin-bottom: 21px;
}
.about .column.top .label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  background-color: #ce9bca;
  position: relative;
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 16px;
}
@media screen and (max-width: 960px) {
  .about .column.top .label {
    display: block;
    width: 95%;
    margin: 0 auto 16px;
  }
}
.about .column.top .label:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 20px solid #ce9bc0;
  border-left: 0;
}
.about .column.top .label:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 0;
  border-left: 20px solid #ce9bc0;
}
.about .column.top .col-text {
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .about .column.top .col-text {
    margin: auto;
  }
}
.about .column.bottom {
  position: relative;
  margin-bottom: 480px;
}
@media screen and (max-width: 960px) {
  .about .column.bottom {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 120px;
  }
}
.about .column.bottom::before {
  content: "";
  background: url(../img/img02.png) no-repeat center/contain;
  width: 800px;
  height: 537px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 960px) {
  .about .column.bottom::before {
    position: relative;
    width: 100%;
    height: 300px;
  }
}
.about .column.bottom .col-text {
  max-width: 500px;
  width: 50%;
  margin-top: 67px;
}
@media screen and (max-width: 960px) {
  .about .column.bottom .col-text {
    width: 100%;
  }
}
.about .column.bottom .catch {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 24px + (26 - 24) * (100vw - 335px) / (670 - 335), 26px);
  text-align: center;
  color: #6d376c;
  padding: 11px;
  border-top: 1px solid #730a67;
  border-bottom: 1px solid #730a67;
  margin-bottom: 16px;
}
.about .column.bottom .label {
  height: 40px;
  border-radius: 20px;
  background: #c5a2c6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 335px) / (670 - 335), 18px);
  text-align: center;
  color: #fff;
  padding: 0 23px;
}
.about .column.bottom .desc {
  margin-bottom: 16px;
}
.about .column.bottom .desc p {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 335px) / (670 - 335), 18px);
  line-height: 1.4;
  color: #6d376c;
}
.about .c-box {
  border-radius: 20px;
  background: #fff;
  border: 1px solid #730a67;
}
.about .c-box .box-inner {
  padding: 60px 0 40px;
}
.about .c-box .box-inner .sec-title {
  margin-bottom: 34px;
}
.about .c-box .box-inner .list {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  gap: 50px;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .about .c-box .box-inner .list {
    display: flex;
    flex-direction: column;
  }
}
.about .c-box .box-inner .list .item {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
}
.about .c-box .box-inner .list .item .item-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 335px) / (670 - 335), 18px);
  line-height: 1.4;
  text-align: center;
  color: #6d376c;
}

.feature .w1000 {
  padding: 94px 0 92px;
}
@media screen and (max-width: 960px) {
  .feature .w1000 {
    padding: 100px 0 80px;
  }
}
.feature .w1000 > .desc {
  margin-bottom: 50px;
}
.feature .w1000 > .desc p {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 335px) / (670 - 335), 18px);
  line-height: 1.4;
  text-align: center;
  color: #333;
}
.feature .sec-title {
  margin-bottom: 20px;
}
.feature .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .feature .list {
    display: flex;
    flex-direction: column;
  }
}
.feature .list .item {
  border-right: 1px solid #eee;
  padding-right: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 960px) {
  .feature .list .item {
    border-right: none;
    padding-right: 0;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
  }
}
.feature .list .item .num {
  width: 28px;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #a80d77;
  padding-bottom: 3px;
  border-bottom: 1px solid #a80d77;
  margin-bottom: 9px;
}
.feature .list .item .item-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  text-align: left;
  color: #a80d77;
  margin-bottom: 10px;
}
.feature .list .item .desc {
  margin-bottom: 10px;
}
.feature .list .item .img {
  margin-top: auto;
}
.feature .c-box {
  background: #fff;
  border: 10px solid #eee;
}
.feature .c-box .box-inner {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}
.feature .c-box .box-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 24px + (30 - 24) * (100vw - 335px) / (670 - 335), 30px);
  text-align: center;
  color: #6d376c;
  padding-bottom: 21px;
  position: relative;
  margin-bottom: 25px;
}
.feature .c-box .box-ttl::after {
  content: "";
  width: 50px;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #6d376c;
}
.feature .c-box .column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feature .c-box .column .side-effects {
  display: grid;
  grid-template-columns: 16% auto;
  gap: 50px;
  align-items: flex-start;
}
@media screen and (max-width: 960px) {
  .feature .c-box .column .side-effects {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.feature .c-box .column .side-effects .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 335px) / (670 - 335), 18px);
  color: #6d376c;
  position: relative;
  padding-left: 13px;
}
.feature .c-box .column .side-effects .ttl::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #6d376c;
  position: absolute;
  left: 0;
  top: 0;
}
.feature .c-box .column .side-effects .desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  text-align: left;
  color: #333;
}

.number .w1000 {
  padding-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .number .w1000 {
    padding: 100px 0 80px;
  }
}
.number .sec-title {
  margin-bottom: 40px;
}
.number .graph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.number .graph.mb30 {
  margin-bottom: 30px;
}
.number .graph .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 26px;
  text-align: center;
  color: #2d2d64;
}
.number .graph table {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #eee0e4;
  border-radius: 10px;
  border-collapse: separate;
  caption-side: bottom;
}
.number .graph table tr {
  height: 40px;
}
.number .graph table tr:last-child td {
  border-bottom: 0;
}
.number .graph table th,
.number .graph table td {
  vertical-align: middle;
}
.number .graph table th {
  background: #fbf4f6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #333;
  width: 50%;
}
.number .graph table th:first-child {
  border-right: 1px solid #eee0e4;
  border-radius: 10px 0 0 0;
}
.number .graph table th:last-child {
  border-radius: 0 10px 0 0;
}
.number .graph table td {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  color: #333;
  border-right: 1px solid #eee0e4;
  border-bottom: 1px solid #eee0e4;
  padding-left: 10px;
}
.number .graph table caption {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #d46060;
  margin-top: 15px;
}

.about02 {
  background-color: #fcfcfc;
}
.about02 .sec-title {
  margin-bottom: 30px;
}
.about02 .w1000 {
  padding: 80px 0;
}
@media screen and (max-width: 960px) {
  .about02 .w1000 {
    padding: 100px 0 80px;
  }
}
.about02 .w1000 .column {
  width: 80%;
  display: flex;
  flex-direction: column;
  margin: auto auto 24px;
  gap: 30px;
}
@media screen and (max-width: 960px) {
  .about02 .w1000 .column {
    width: 100%;
  }
}
.about02 .w1000 .column .side-effects {
  display: grid;
  grid-template-columns: 20% auto;
  gap: 50px;
  align-items: flex-start;
}
@media screen and (max-width: 960px) {
  .about02 .w1000 .column .side-effects {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.about02 .w1000 .column .side-effects .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 335px) / (670 - 335), 18px);
  color: #2d2d64;
  position: relative;
  padding-left: 13px;
}
.about02 .w1000 .column .side-effects .ttl::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #2d2d64;
  position: absolute;
  left: 0;
  top: 0;
}
.about02 .w1000 .column .side-effects .desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  text-align: left;
  color: #333;
}
.about02 .w1000 .kome {
  width: 80%;
  margin: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
  color: #d46060;
}
@media screen and (max-width: 960px) {
  .about02 .w1000 .kome {
    width: 100%;
  }
}

.achievements .w1000 {
  padding: 95px 0 80px;
}
.achievements .w1000 .column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .achievements .w1000 .column {
    display: block !important;
    width: 100% !important;
  }
}
.achievements .w1000 .column .laser-graph-area {
  min-height: 350px;
  width: 490px;
  height: 258px;
  max-height: 258px;
  margin: 0 auto 32px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .achievements .w1000 .column .laser-graph-area {
    width: 100% !important;
    border: 1px solid #e5e5e5;
  }
  .achievements .w1000 .column .laser-graph-area [class*=chart-wrapper-],
  .achievements .w1000 .column .laser-graph-area [class*=chart-area-] {
    width: 98% !important;
    height: 98% !important;
    border: none !important;
    margin: 0 auto 5px !important;
  }
}
.achievements .w1000 .column .laser-graph-area canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.achievements .sec-title {
  margin-bottom: 30px;
}
.achievements .catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 auto 30px;
  width: -moz-fit-content;
  width: fit-content;
}
.achievements .catch::before {
  content: "";
  background: url(../img/deco01.png) no-repeat center/contain;
  width: 67px;
  height: 118px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 100%;
}
@media screen and (max-width: 960px) {
  .achievements .catch::before {
    width: 30px;
  }
}
.achievements .catch::after {
  content: "";
  background: url(../img/deco02.png) no-repeat center/contain;
  width: 67px;
  height: 118px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 100%;
}
@media screen and (max-width: 960px) {
  .achievements .catch::after {
    width: 30px;
  }
}
.achievements .catch .desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 335px) / (670 - 335), 20px);
  text-align: center;
  color: #333;
}
.achievements .catch .f-26 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 20px + (26 - 20) * (100vw - 335px) / (670 - 335), 26px);
  text-align: center;
  color: #333;
}
.achievements .catch .f-26 .f-40 {
  font-family: "Figtree", sans-serif;
  font-size: clamp(28px, 28px + (40 - 28) * (100vw - 335px) / (670 - 335), 40px);
  color: #e5789b;
}
.achievements .catch .small-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  color: #333;
}
.achievements .morebtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 0;
  text-align: center;
}
.achievements .morebtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: #fff;
  padding: 14px 68px;
  background-color: #6d376c;
  border-radius: 27px;
}

.table_zisseki {
  width: 100%;
  border-collapse: collapse;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.table_zisseki.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.table_zisseki * {
  line-height: normal;
  font-size: 10px;
}

.table_zisseki td,
.table_zisseki th {
  font-size: 10px;
  border: 1px solid #b0b0b0;
  font-weight: normal;
  padding: 2px 2px;
}

.table_zisseki td {
  text-align: right;
  padding-right: 2px;
  padding-left: 2px;
  vertical-align: middle;
}
.table_zisseki td.column_title {
  background: #f7f7f7;
  text-align: center;
}

.table_zisseki th {
  text-align: center;
  background: #efefef;
}

@media handheld, only screen and (max-width: 767px) {
  .pc_only_inline {
    display: none;
  }
}
.faq {
  background: #f8f1f9;
}
.faq .w1000 {
  padding: 90px 0 80px;
}
.faq .sec-title {
  margin-bottom: 32px;
}
.faq .faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
}
.faq .faq-item .faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px 17px 25px;
  cursor: pointer;
  transition: 0.4s ease;
}
@media screen and (max-width: 960px) {
  .faq .faq-item .faq-q {
    padding: 10px 15px;
  }
}
.faq .faq-item .faq-q:hover {
  opacity: 50%;
}
@media screen and (max-width: 960px) {
  .faq .faq-item .faq-q:hover {
    opacity: 1;
  }
}
.faq .faq-item .faq-q .faq-q-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.faq .faq-item .faq-q .q-icon {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 24px + (30 - 24) * (100vw - 335px) / (670 - 335), 30px);
  color: #a80d77;
}
.faq .faq-item .faq-q .q-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  color: #333;
}
.faq .faq-item .faq-q .faq-toggle {
  position: relative;
  width: 20px;
  height: 20px;
}
.faq .faq-item .faq-q .faq-toggle::after, .faq .faq-item .faq-q .faq-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 3px;
  background: #c0006f;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq .faq-item .faq-q .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq .faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq .faq-item .faq-a .faq-a-inner {
  display: flex;
  gap: 18px;
  padding: 11px 16px 17px 25px;
  border-top: 1px solid #eee0e4;
}
@media screen and (max-width: 960px) {
  .faq .faq-item .faq-a .faq-a-inner {
    padding: 10px 15px;
  }
}
.faq .faq-item .faq-a .a-icon {
  font-size: clamp(24px, 24px + (32 - 24) * (100vw - 335px) / (670 - 335), 32px);
  font-weight: bold;
  color: #d2b9c1;
}
.faq .faq-item .faq-a .a-text {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: #333;
}
.faq .faq-item.is-open .faq-toggle::after {
  opacity: 0;
}
.faq .faq-item.is-open .faq-a {
  max-height: 500px;
}

.price .w1000 {
  padding: 92px 0 76px;
}
.price .sec-title {
  margin-bottom: 30px;
}
.price .graph.mb80 {
  margin-bottom: 80px;
}
.price table {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #eee0e4;
  border-radius: 10px;
  border-collapse: separate;
  caption-side: bottom;
}
.price table tr {
  height: 40px;
}
.price table tr:last-child td {
  border-bottom: 0;
}
.price table th,
.price table td {
  vertical-align: middle;
}
.price table th {
  background: #fbf4f6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #333;
  width: 33%;
}
.price table th:first-child {
  border-right: 1px solid #eee0e4;
  border-radius: 10px 0 0 0;
}
.price table th:last-child {
  border-radius: 0 10px 0 0;
}
.price table td {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  color: #333;
  border-right: 1px solid #eee0e4;
  border-bottom: 1px solid #eee0e4;
  padding-left: 10px;
}
.price table caption {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #d46060;
  margin-top: 15px;
}

.access {
  background-color: #fcfcfc;
}
.access .w1000 {
  padding: 92px 0 83px;
}
.access .sec-title {
  margin-bottom: 20px;
}
.access .desc {
  margin-bottom: 30px;
}
.access .desc p {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 335px) / (670 - 335), 18px);
  line-height: 1.4;
  text-align: center;
}
.access .btnarea {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  width: 100%;
  margin: 0 auto 30px;
}
.access .btnarea .link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #333;
  height: 50px;
  border-radius: 25px;
  background: #fff;
  border: 1px solid #6d376c;
}
.access .img {
  text-align: center;
  margin-bottom: 30px;
}
.access .linkarea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .access .linkarea {
    flex-direction: column;
    gap: 15px;
  }
}
.access .linkarea .morebtn {
  max-width: 240px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: #fff;
  padding: 14px 0;
  border-radius: 27px;
}
.access .linkarea .morebtn.purple {
  background-color: #6d376c;
}
.access .linkarea .morebtn.gray {
  background-color: #586aa7;
}
.access .root {
  display: grid;
  grid-template-columns: 20% auto;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .access .root {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.access .root .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 335px) / (670 - 335), 18px);
  color: #2d2d64;
  position: relative;
  padding-left: 13px;
}
.access .root .ttl::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #2d2d64;
  position: absolute;
  left: 0;
  top: 0;
}
.access .root .detail {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  text-align: left;
  color: #333;
}
.access .map iframe {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 960px) {
  .access .map iframe {
    height: 300px;
  }
}

.director .w1000 {
  padding: 90px 0 80px;
}
.director .sec-title {
  margin-bottom: 30px;
}
.director .img {
  margin: 0 auto 35px;
  max-width: 600px;
  height: 420px;
  position: relative;
  z-index: 5;
}
.director .img::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #eee0e4;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: -1;
}
.director .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.director .name {
  margin-bottom: 30px;
}
.director .name .clinic {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #333;
}
.director .name .column {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #333;
}
.director .name .column .main {
  font-size: 20px;
}
.director .name .name-en {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #6d376c;
}
.director .info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.director .info .item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
}
.director .info .item .label {
  width: 100%;
  height: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 335px) / (670 - 335), 18px);
  text-align: center;
  color: #fff;
  background: #6d376c;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.director .info .item .label .icon {
  position: absolute;
  width: 18px;
  height: 18px;
  right: 20px;
}
.director .info .item .label .icon::before, .director .info .item .label .icon::after {
  content: "";
  position: absolute;
  background: #fff;
  transition: transform 0.3s ease;
}
.director .info .item .label .icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}
.director .info .item .label .icon::after {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}
.director .info .item .timeline {
  width: 90%;
  margin: 0 auto;
}
.director .info .item .timeline-year,
.director .info .item .timeline-content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 35px;
  text-align: left;
  color: #333;
}
@media screen and (max-width: 960px) {
  .director .info .item .timeline-year,
  .director .info .item .timeline-content {
    padding-left: 21px;
    line-height: 1.4;
  }
}
.director .info .item .timeline-item {
  display: grid;
  grid-template-columns: 21% auto;
  gap: 30px;
  position: relative;
  align-items: flex-start;
}
@media screen and (max-width: 960px) {
  .director .info .item .timeline-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 20px;
  }
}
.director .info .item .timeline-item::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #a80d77;
  position: absolute;
  left: 3px;
  top: 15px;
}
.director .info .item .timeline-item:last-child::before {
  content: none;
}
.director .info .item .timeline-year {
  padding-left: 21px;
  position: relative;
}
.director .info .item .timeline-year::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #a80d77;
  border-radius: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.director .info .item .dot {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
}
.director .info .item .dot li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 35px;
  text-align: left;
  color: #333;
  padding-left: 21px;
  position: relative;
}
.director .info .item .dot li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #a80d77;
  border-radius: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.director .info .item.js-accordion.is-open .icon::after {
  transform: scaleY(0);
}
.director .info .item.js-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.director .info .item.js-accordion .accordion-content .list {
  counter-reset: number 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.director .info .item.js-accordion .accordion-content .list li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  text-align: left;
  color: #333;
  position: relative;
  padding-left: 48px;
}
.director .info .item.js-accordion .accordion-content .list li::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) " ";
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #a80d77;
  position: absolute;
  left: 0;
  top: 0;
  padding-right: 11px;
  border-right: 1px solid #a80d77;
}
.director .info .text .desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.director .info .text .desc .catch {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 20px + (24 - 20) * (100vw - 335px) / (670 - 335), 24px);
  color: #a80d77;
}
.director .info .text .desc .border {
  font-weight: 600;
  text-decoration: underline;
}
.director .info .btnarea {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.director .info .btnarea .link {
  max-width: 340px;
  width: 100%;
  height: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #333;
  border-radius: 25px;
  background: #fff;
  border: 1px solid #6d376c;
  display: flex;
  justify-content: center;
  align-items: center;
}

.system {
  background-color: #f8f1f9;
}
.system .w1000 {
  padding: 92px 0 60px;
}
.system .sec-title {
  margin-bottom: 30px;
}
.system .desc {
  margin-bottom: 23px;
}
.system .desc p {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 335px) / (670 - 335), 18px);
  line-height: 1.4;
  text-align: center;
  color: #333;
}
.system .img {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.system .img .morebtn {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: #fff;
  padding: 14px 0;
  background-color: #6d376c;
  border-radius: 27px;
}
.system .column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.system .column .point {
  display: grid;
  grid-template-columns: 20% auto;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .system .column .point {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.system .column .point .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 335px) / (670 - 335), 18px);
  color: #6d376c;
  position: relative;
  padding-left: 13px;
}
.system .column .point .ttl::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #6d376c;
  position: absolute;
  left: 0;
  top: 0;
}
.system .column .point .detail {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  text-align: left;
  color: #333;
}
.system .column .point .detail .dot li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  text-align: left;
  color: #333;
  padding-left: 1em;
  text-indent: -1em;
}
.system .column .point .detail .dot li .red {
  color: #d46060;
  font-weight: 500;
}
.system .column .calendar {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  .system .column .calendar {
    flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  .system .column .calendar .timeschedule {
    width: 100%;
  }
}
.system .column .calendar .timeschedule .w400 {
  width: 400px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #eee0e4;
  border-collapse: separate;
  margin-bottom: 12px;
}
@media screen and (max-width: 960px) {
  .system .column .calendar .timeschedule .w400 {
    width: 100%;
  }
}
.system .column .calendar .timeschedule .w400 tr {
  height: 40px;
}
.system .column .calendar .timeschedule .w400 tr:last-child td {
  border-bottom: 0;
}
.system .column .calendar .timeschedule .w400 th,
.system .column .calendar .timeschedule .w400 td {
  vertical-align: middle;
}
.system .column .calendar .timeschedule .w400 th {
  background: #fbf4f6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #333;
}
.system .column .calendar .timeschedule .w400 th.w120 {
  width: 120px;
}
@media screen and (max-width: 960px) {
  .system .column .calendar .timeschedule .w400 th.w120 {
    width: auto;
  }
}
.system .column .calendar .timeschedule .w400 th.w160 {
  width: 160px;
}
@media screen and (max-width: 960px) {
  .system .column .calendar .timeschedule .w400 th.w160 {
    width: auto;
  }
}
.system .column .calendar .timeschedule .w400 th:first-child {
  border-right: 1px solid #eee0e4;
  border-radius: 10px 0 0 0;
}
.system .column .calendar .timeschedule .w400 th:last-child {
  border-radius: 0 10px 0 0;
}
.system .column .calendar .timeschedule .w400 td {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  color: #333;
  border-right: 1px solid #eee0e4;
  border-bottom: 1px solid #eee0e4;
  padding-left: 10px;
}
@media screen and (max-width: 960px) {
  .system .column .calendar .timeschedule .w400 td {
    padding: 0;
    text-align: center;
  }
}
.system .column .calendar .timeschedule .w400 td.tac {
  text-align: center;
}
.system .column .calendar .timeschedule .addinfo {
  display: flex;
  gap: 24px;
  align-items: center;
}
.system .column .calendar .timeschedule .addinfo .item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.system .column .calendar .timeschedule .addinfo .item .circle {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  color: #aaa;
}
.system .column .calendar .timeschedule .addinfo .item .pink {
  background-color: rgba(229, 120, 155, 0.3);
}
.system .column .calendar .timeschedule .addinfo .item .text {
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  line-height: 40px;
  color: #333;
}
.system .column .calendar .eigyou_calender_table {
  border-radius: 10px;
  background: #fff;
  border: 2px solid #eee0e4;
  padding: 20px 30px;
}
@media screen and (max-width: 960px) {
  .system .column .calendar .eigyou_calender_table {
    width: 100%;
  }
}
.system .column .calendar .eigyou_calender_table .month {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #6d376c;
  vertical-align: middle;
}
.system .column .calendar .eigyou_calender_table table {
  width: 380px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .system .column .calendar .eigyou_calender_table table {
    width: 100%;
  }
}
.system .column .calendar .eigyou_calender_table table th {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  text-align: center;
  color: #333333;
}
.system .column .calendar .eigyou_calender_table table th.sun {
  color: #e5789b;
}
.system .column .calendar .eigyou_calender_table table th.sat {
  color: #768ebe;
}
.system .column .calendar .eigyou_calender_table table td {
  width: 30px;
  height: 45px;
  vertical-align: middle;
  color: #aaa;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  color: #aaa;
}
.system .column .calendar .eigyou_calender_table table td.open {
  position: relative;
  color: #333333;
}
.system .column .calendar .eigyou_calender_table table td.open::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background-color: rgba(229, 120, 155, 0.3);
  justify-content: center;
  align-items: center;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  color: #333333;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.contact .w1000 {
  padding: 92px 0 79px;
}
.contact .sec-title {
  margin-bottom: 30px;
}
.contact .desc {
  margin-bottom: 70px;
}
.contact .desc p {
  margin-bottom: 20px;
}
.contact .desc .dot li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  text-align: left;
  color: #333;
  padding-left: 1em;
  text-indent: -1em;
}
.contact .form-wrap {
  width: 90%;
  margin: 0 auto;
}
.contact .form-wrap .form-row {
  display: grid;
  grid-template-columns: 30% auto;
  gap: 15px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 18px;
}
@media screen and (max-width: 960px) {
  .contact .form-wrap .form-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact .form-wrap .form-row.ait {
  align-items: flex-start;
  border-bottom: none;
}
.contact .form-wrap .form-row .form-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  color: #222;
  display: flex;
  justify-content: space-between;
}
.contact .form-wrap .form-row .form-label .required {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  background-color: #d46060;
  border-radius: 50px;
  padding: 0 5px;
}
@media screen and (max-width: 960px) {
  .contact .form-wrap .form-row .form-input {
    width: 100%;
  }
}
.contact .form-wrap .form-row .form-input input,
.contact .form-wrap .form-row .form-input textarea {
  width: 100%;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #ccc;
  height: 44px;
  padding: 0 5px;
}
.contact .form-wrap .form-row .form-input textarea {
  min-height: 144px;
  max-height: 144px;
}
.contact .form-wrap .form-submit {
  width: 260px;
  height: 60px;
  margin: 0 auto;
}
.contact .form-wrap .form-submit button {
  width: 100%;
  height: 100%;
  background: #6d376c;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
.contact .form-wrap .form-note {
  margin-top: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  color: #d46060;
}

.footer {
  background-color: #f8f1f9;
}
.footer .inner {
  max-width: 80%;
  width: 100%;
  margin: auto;
  padding: 40px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.footer .inner .f-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .footer .inner .f-top {
    flex-direction: column;
    gap: 40px;
  }
}
.footer .inner .f-top .f_menu {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .footer .inner .f-top .f_menu {
    flex-direction: column;
  }
}
.footer .inner .f-top .f_menu .menu-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #222;
  white-space: nowrap;
}
.footer .inner .copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #333;
}

.calender-back,
.calender-forward {
  cursor: pointer !important;
  padding: 0 !important;
  transition: 0.2s;
  vertical-align: middle;
}
.calender-back:hover,
.calender-forward:hover {
  background-color: #f5f5f5;
}
.calender-back:hover i,
.calender-forward:hover i {
  color: #000;
  transform: scale(1.1);
}
.calender-back i,
.calender-forward i {
  display: block;
  padding: 15px 0;
  font-size: 2rem;
  color: #666;
  transition: 0.2s;
}/*# sourceMappingURL=style.css.map */