@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Kosugi+Maru&family=Zen+Maru+Gothic&display=swap");
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes bgchange {
  0% {
    background: #dae2e3;
  }
  /*変化させたい色*/
  15% {
    background: rgb(180, 208, 210);
  }
  /*変化させたい色*/
  35% {
    background: rgb(192, 180, 210);
  }
  /*変化させたい色*/
  45% {
    background: rgb(214, 193, 211);
  }
  /*変化させたい色*/
  65% {
    background: rgb(214, 193, 193);
  }
  80% {
    background: rgb(250, 228, 202);
  }
  90% {
    background: rgb(202, 230, 218);
  }
  /*変化させたい色*/
  100% {
    background: rgb(180, 208, 210);
  }
  /*変化させたい色*/
}
@keyframes fluidrotate {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

a {
  color: #5bb6cf;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.submit p {
  line-height: 0 !important;
}

.circle {
  background-color: #e786a0;
  width: 170px;
  height: 170px;
  border-radius: 50%;
}

.tags {
  margin-bottom: 20px;
}
.tags .tag {
  background-color: #c97189;
  color: #fff;
  border-top-right-radius: 20px;
  font-size: 10px;
  font-weight: bold;
  padding: 5px 14px;
  border-radius: 12px;
  margin: 0 10px 0 0;
}
.tags .tag a {
  color: #fff !important;
}

.date {
  font-size: 10px;
  font-weight: 500;
}

.btn {
  display: inline-block;
  border-radius: 120px;
  padding: 8px 30px;
  text-align: center;
  letter-spacing: 1.2px;
  font-weight: bold;
  font-size: 13px;
  font-weight: normal;
  transition: 0.2s;
  font-weight: bold;
}
.btn.main {
  color: #fff;
  background-color: #5bb6cf;
}
.btn.red {
  color: #fff;
  background-color: #cf5b6d;
}
.btn.line {
  color: #fff;
  background-color: #06c765;
}
.btn.white-red {
  color: #cf5b6d;
  background-color: #fff;
}
.btn.white-blue {
  color: #5bb6cf;
  background-color: #fff;
}
.btn.white-black {
  color: rgba(0, 0, 0, 0.84);
  background-color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.84);
}
.btn.blue-line {
  color: #5bb6cf;
  border: 2px solid #5bb6cf;
}

.btn:hover {
  transform: scale(0.9);
}

.subtitle {
  font-weight: bold;
  font-size: 13px;
  font-family: "Kiwi Maru", serif;
}

.container {
  width: 960px;
  margin: 0 auto;
}
.container img {
  max-width: 100%;
}

html:before,
html:after,
body:before,
body:after {
  content: "";
  background: #ececec;
  position: fixed;
  display: block;
  z-index: 1;
}

/* 上 */
html:before {
  height: 40px;
  width: 100vw;
  left: 0;
  top: 0;
}

/* 右 */
html:after {
  width: 40px;
  height: 100vh;
  right: 0;
  top: 0;
}

/* 下 */
body:before {
  height: 40px;
  width: 100vw;
  bottom: 0;
  left: 0;
}

/* 左 */
body:after {
  width: 40px;
  height: 100vh;
  top: 0;
  left: 0;
}

main {
  margin: 40px;
  box-sizing: border-box;
}

.outline {
  position: fixed;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  border: 40px solid #fbfbfb;
  z-index: 9999;
}

h2,
h3 {
  letter-spacing: 1.8px;
}

header {
  position: fixed;
  top: 40px;
  z-index: 9999;
  box-sizing: border-box;
  margin: 40px;
  width: calc(100% - 160px);
  display: flex;
  align-items: center;
  font-size: 13px;
  font-family: "Kiwi Maru", serif;
  font-weight: 700;
  letter-spacing: 2px;
}
header img {
  width: 180px;
}
header .left {
  margin-right: auto;
}
header .right ul {
  display: flex;
  align-items: center;
}
header .right ul li {
  margin: 0 20px;
}
header .right ul li a {
  color: rgba(0, 0, 0, 0.84);
  position: relative;
}
header .right ul li a:hover {
  opacity: 0.7;
}
header .right ul li a:hover::after {
  transform: scale(1, 1);
}
header .right ul li .btn {
  padding: 8px 20px;
}
header .right ul li:last-child {
  margin: 0 0 0 20px;
}

#head {
  padding: 210px 0;
  background: url(../images/head-bg.png) no-repeat;
  background-size: 60%;
  background-position: left;
}
#head .flex {
  justify-content: center;
  align-items: center;
}
#head .flex .main-content {
  width: 50%;
}
#head .flex .main-content h1 {
  font-weight: bold;
  font-family: "Kiwi Maru", serif;
  font-size: 24px;
  line-height: 50px;
  letter-spacing: 2.4px;
  text-align: center;
}
#head .flex .main-content h1 small {
  font-size: 15px;
}
#head .flex .img-content {
  position: relative;
  width: 44%;
}
#head .flex .img-content .circle {
  position: absolute;
  z-index: -1;
  right: 0;
}
#head .flex .img-content .circle.blue {
  bottom: 0;
  background-color: #86d7e7;
}

.main-text {
  padding: 80px 0 0 0;
}
.main-text p {
  font-size: 15px;
  font-weight: bold;
  font-family: "Kiwi Maru", serif;
}
.main-text h2 {
  font-size: 20px;
}
.main-text img {
  border-radius: 40px;
  width: 680px;
  margin-top: 80px;
}

#notice {
  padding: 120px 0;
}
#notice .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
#notice .container .left {
  margin-right: 50px;
}
#notice .container .left h2 {
  color: #5bb6cf;
  font-size: 32px;
  font-weight: bold;
}
#notice .container .right {
  text-align: left;
  min-width: 70%;
}
#notice .container .right a {
  color: rgba(0, 0, 0, 0.84);
}
#notice .container .right .notice-c {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
#notice .container .right .notice-c .date {
  font-weight: bold;
}
#notice .container .right .notice-c p {
  font-size: 13px;
}

#instrument {
  padding: 60px 0;
}
#instrument h2 {
  font-size: 32px;
  font-weight: bold;
  color: #cf5b6d;
}
#instrument .subtitle {
  margin-bottom: 50px;
}
#instrument .instrument {
  position: relative;
  width: 74%;
  height: 220px;
  margin: 0 auto 60px auto;
  border-radius: 40px;
  transition: 0.2s;
}
#instrument .instrument h3 {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.84);
  margin: 20px;
  color: #fff;
  font-weight: bold;
  padding: 10px 40px;
  border-radius: 100px;
}
#instrument .instrument .btn {
  position: absolute;
  margin: 20px 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.84);
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 0;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
#instrument .instrument .btn:hover {
  transform: scale(1);
}
#instrument .instrument.gold {
  background: url(../images/gold.png) no-repeat;
  background-position: top;
}
#instrument .instrument.wood {
  background: url(../images/wood.png) no-repeat;
  background-position: center;
}
#instrument .instrument:hover {
  transform: scale(0.98);
}

#flow {
  padding: 60px 0;
}
#flow h2 {
  font-size: 32px;
  font-weight: bold;
  color: #1bb28f;
}
#flow .subtitle {
  margin-bottom: 50px;
}
#flow .fc {
  width: 90%;
  margin: 0 5% 50px 5%;
}
#flow .fc .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#flow .fc h3 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: bold;
}
#flow .fc h3 .circle {
  width: 32px;
  height: 32px;
  margin-right: 20px;
  background-color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.84);
  display: flex;
  justify-content: center;
  align-items: center;
}
#flow .fc h3 span {
  color: rgba(0, 0, 0, 0.84);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
}
#flow .fc .ic {
  width: 45%;
  margin-right: 50px;
}
#flow .fc .ic img {
  max-width: 100%;
  border-radius: 50px;
}
#flow .fc .tc {
  width: 55%;
  box-sizing: border-box;
}
#flow .fc .tc p {
  line-height: 34px;
  margin-bottom: 20px;
  font-size: 13px;
}
#flow .fc .tc p strong {
  font-weight: bold;
}
#flow .fc .tc .btn {
  font-size: 12px;
}

#repairmans {
  padding: 60px 0;
}
#repairmans h2 {
  font-size: 32px;
  font-weight: bold;
  color: #e786a0;
}
#repairmans .subtitle {
  margin-bottom: 50px;
}
#repairmans .repairman {
  background: url(../images/image.png) no-repeat;
  background-size: cover;
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  color: rgba(22, 1, 1, 0.768627451);
}
#repairmans .repairman .img {
  width: 30%;
}
#repairmans .repairman .img img {
  width: 70%;
  margin: 0 15%;
  border-radius: 50%;
}
#repairmans .repairman p {
  font-size: 12px;
  margin-bottom: 10px;
}
#repairmans .repairman p span {
  background-color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: bold;
  color: #5bb6cf;
}
#repairmans .repairman .txt {
  width: 70%;
}
#repairmans .repairman .txt h3 {
  font-size: 22px;
  font-family: "Kiwi Maru", serif;
  font-weight: bold;
  margin-bottom: 30px;
}

#access {
  padding: 60px 0;
}
#access h2 {
  font-size: 32px;
  font-weight: bold;
  color: #5bb6cf;
}
#access p {
  font-size: 13px;
}
#access .subtitle {
  margin-bottom: 50px;
}
#access .center {
  margin-bottom: 30px;
}
#access .center small {
  font-size: 10px;
  margin-bottom: 30px;
}
#access .center .address {
  display: inline-block;
  background-color: #efefef;
  padding: 20px 30px;
  font-size: 13px;
  border-radius: 20px;
}
#access .center .address .imgspan {
  margin-left: 10px;
}
#access .center .address img {
  width: 16px;
}
#access iframe {
  border: none;
  margin-bottom: 30px;
}

#footer-left {
  position: fixed;
  margin: 60px;
  bottom: 0;
  left: 0;
}
#footer-left img {
  width: 24px;
  margin: 10px;
}

#page-header {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 180px 0 80px 0;
  border-radius: 40px;
  background: url(../images/gold.png);
}
#page-header h1 {
  position: absolute;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.84);
  margin: 20px;
  color: #fff;
  font-weight: bold;
  padding: 10px 40px;
  border-radius: 100px;
  bottom: 0;
}

.page-title {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

#page-content {
  width: 600px;
  margin: 0 auto;
}
#page-content .quote {
  background-color: #fafafa;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}
#page-content .quote a {
  color: rgba(0, 0, 0, 0.84);
}
#page-content h2 {
  font-weight: bold;
  letter-spacing: 3px;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
#page-content p {
  font-size: 13px;
  margin-bottom: 30px;
}
#page-content ul li,
#page-content ol li {
  padding: 10px;
  border-bottom: 1px solid #eee;
}
#page-content .archives {
  border-bottom: 1px solid #c1c1c1;
  width: 80%;
  margin: 0 auto;
}
#page-content .archives .archive {
  border-top: 1px solid #c1c1c1;
  padding: 20px 0;
  transition: 0.2s;
  position: relative;
}
#page-content .archives .archive a {
  color: rgba(0, 0, 0, 0.84);
}
#page-content .archives .archive h2 {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}
#page-content .archives .archive .date {
  text-align: left;
}
#page-content .archives .archive .tags {
  text-align: right;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}
#page-content .archives .archive .tags .tag {
  display: inline-block;
}
#page-content .archives .archive:hover {
  scale: 1.01;
}

.wp-block-table.is-style-stripes {
  border: none !important;
}

.price-table table {
  width: 100%;
  margin-bottom: 30px;
  font-size: 13px;
  letter-spacing: 1.5px;
}
.price-table table thead {
  border: none;
}
.price-table table th,
.price-table table td {
  text-align: center;
  padding: 8px;
}
.price-table table td:nth-of-type(3) {
  width: 40%;
  font-size: 12px;
  text-align: left;
}
.price-table table th {
  font-weight: bold;
  border: none;
}
.price-table table thead {
  background-color: #5bb6cf;
}
.price-table table thead th {
  color: #fff;
}
.price-table table tr:nth-child(odd) td {
  background: #fafafa;
}
.price-table table .small {
  width: 40%;
  font-size: 12px;
  text-align: left;
}

footer {
  margin-top: 120px;
  padding: 30px 0 45px 0;
}
footer img {
  width: 160px;
  margin-bottom: 80px;
}
footer .copyright {
  font-size: 8px;
  letter-spacing: 1px;
  text-align: center;
}

form {
  width: 400px;
  margin: 0 auto;
}
form dt,
form dd {
  margin-bottom: 10px;
}
form dt p,
form dd p {
  margin-bottom: 0 !important;
}
form input,
form textarea,
form select {
  width: 100%;
  height: 40px;
  border: none;
  border: 2px solid #eee;
  border-radius: 12px;
  color: rgba(0, 0, 0, 0.84);
  padding: 8px 12px;
  font-size: 14px;
  transition: 0.2s;
  box-sizing: border-box;
  margin-bottom: 10px;
}
form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border: 2px solid #5bb6cf;
  background-color: #fffff1;
}
form textarea {
  height: 300px;
}
form .red {
  color: #ff5066;
  margin: 2px;
}
form .submit {
  display: inline-block;
}
form .submit input[type=submit] {
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: "Open Sans", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  cursor: pointer;
  border: none;
  border-radius: 120px;
  padding: 12px 38px;
  text-align: center;
  letter-spacing: 1.3px;
  font-weight: bold;
  transition: 0.2s;
  color: #fff;
  background-color: #5bb6cf;
}
form .submit input[type=submit]:hover {
  transform: scale(0.95);
}
form .wpcf7-response-output {
  border: none !important;
  padding: 20px 10px !important;
  font-size: 12px !important;
  margin: 0 !important;
  text-align: center;
  background: #f5f5f5;
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}

#company table {
  width: 100%;
}
#company table tr {
  border-bottom: 1px solid #eee;
}
#company table th,
#company table td {
  padding: 20px 0;
}
#company table th {
  font-weight: bold;
}
#company table tbody {
  border-top: 1px solid #eee;
}/*# sourceMappingURL=style.css.map */