@charset "UTF-8";
@media screen and (min-width:840px) {
  .pc {
    display: inherit !important;
  }
}
@media screen and (max-width:839px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width:840px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width:839px) {
  .sp {
    display: inherit !important;
  }
}

body {
  font-family: Noto Sans JP;
  font-size: 18px;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width:839px) {
  .inner {
    padding: 0 10px;
  }
}

.header {
  background-color: #fff;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; /* 左右に配置 */
  padding: 0 20px; /* 左右の余白を追加 */
  /* スクロール制御 */
  /* 以下、ハンバーガーメニュー */
  /* メニューオープン時 */
  /* ------------------ */
  /* fv */
  /* ------------------ */
  /* ------------------ */
  /* about */
  /* ------------------ */
}
.header .header-logo {
  flex-grow: 1; /* 残りのスペースをフレックスアイテムに均等に分配 */
}
@media screen and (min-width:840px) {
  .header {
    display: flex;
    align-items: center;
    margin-right: auto; /* 右側の余白を設定 */
  }
}
.header .header-list {
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
  padding-left: 10px;
  text-decoration: none;
  justify-content: flex-end;
}
.header .order-bottom {
  display: inline-block;
  padding: 5px 50px;
  margin-left: auto;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #B103BB;
  background-color: #B103BB;
  color: #fff;
  border-radius: 40px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
@media screen and (max-width:839px) {
  .header .order-bottom {
    padding: 5px 40px;
  }
}
.header .order-bottom:hover {
  background-color: #B103BB;
  color: #fff;
  opacity: 0.6;
}
.header .order-bottom a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
.header .burger-btn {
  display: block;
  height: 39px;
  position: relative;
  width: 50px;
  z-index: 3;
  /* codepenの挙動のため */
  background-color: transparent;
  border: none;
}
.header .bar {
  background-color: #dba8dc;
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 20px;
}
.header .bar_top {
  top: 10px;
}
.header .bar_mid {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .bar_bottom {
  bottom: 10px;
}
.header .burger-btn.close .bar_top {
  transform: translate(-50%, 10px) rotate(45deg);
  transition: transform 0.3s;
}
.header .burger-btn.close .bar_mid {
  opacity: 0;
  transition: opacity 0.3s;
}
.header .burger-btn.close .bar_bottom {
  transform: translate(-50%, -8px) rotate(-45deg);
  transition: transform 0.3s;
}
.header .noscroll {
  overflow: hidden;
}
.header .nav-wrapper {
  visibility: hidden;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2;
  /*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
}
.header .header-nav {
  background-color: #fff;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.header .nav-list {
  display: block;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .nav-item {
  margin-bottom: 40px;
  margin-right: 0;
}
.header .nav-wrapper.fade {
  opacity: 1;
  visibility: visible;
}
.header .main-copy {
  font-size: 30px;
}
.header h3 {
  font-size: 20px;
  margin-bottom: 30px;
}
.header .section-wrapper {
  padding: 100px 5% 50px;
}
.header li {
  list-style-type: none;
}
.header nav li {
  margin-right: 20px;
}
.header nav a {
  text-decoration: none;
  /* Remove underlines from links */
  color: #3d3a3a;
  /* Text color */
  margin: 0 10px;
  /* Margin between links */
  border-radius: 5px;
  /* Rounded corners */
  transition: background-color 0.3s;
  /* Smooth transition for background color */
  line-height: 3;
}

.mv {
  position: relative;
}
.mv img {
  width: 100%;
  height: auto;
}
.mv .mv-move {
  position: absolute;
  top: 63%;
  right: 13%;
  width: 18%;
}
@media screen and (max-width:839px) {
  .mv .mv-move {
    top: 69%;
    right: 51%;
    width: 50%;
  }
}

.caption p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 20px;
  padding-top: 50px;
}
.caption h1 {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  padding-bottom: 100px;
  line-height: 1.5;
}
@media screen and (max-width:839px) {
  .caption h1 {
    padding-bottom: 50px;
  }
}

.section-1 {
  background-size: cover;
  background-color: rgb(242, 240, 244);
  background-image: repeating-linear-gradient(134deg, transparent, transparent 10px, rgb(228, 224, 233) 10px, rgb(228, 224, 233) 11px);
  padding: 50px 0 20px 0;
}

.section-1-item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width:839px) {
  .section-1-item {
    display: block;
  }
}
.section-1-item img {
  width: 100%;
  height: auto;
}
.section-1-item .item-detail {
  width: 30%;
  padding-bottom: 50px;
  display: block;
}
@media screen and (max-width:839px) {
  .section-1-item .item-detail {
    width: 100%;
  }
}
.section-1-item .item-detail p {
  font-weight: bold;
  text-align: center;
  padding: 5px 30px;
  margin: -15px auto 15px;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: 2px solid #000;
  /* ボーダーカラー */
  background-color: #000;
  color: #fff;
  /* テキストカラー */
  border-radius: 13px;
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:839px) {
  .section-1-item .item-detail p {
    font-size: 20px;
    border-radius: 20px;
  }
}
.section-1-item .item-detail:nth-child(2n) p {
  background-color: #B103BB;
  color: #fff;
  border-color: #B103BB;
}
.section-1-item .item-detail h2 {
  font-size: 17px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width:839px) {
  .section-1-item .item-detail h2 {
    font-size: 25px;
  }
}
.section-1-item .item-detail:nth-child(2n) h2 {
  color: #B103BB;
}

#section-2 {
  padding: 80px 0 20px 0;
}
@media screen and (max-width:839px) {
  #section-2 {
    padding-top: 30px;
    padding-bottom: 0px;
  }
}

.section-2-item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width:839px) {
  .section-2-item {
    display: block;
  }
}
.section-2-item img {
  width: 100%;
  height: auto;
}
.section-2-item .item {
  width: 30%;
  margin-bottom: 60px;
  display: block;
  position: relative;
  background-color: #e6e6e6;
  border-radius: 20px;
}
@media screen and (max-width:839px) {
  .section-2-item .item {
    width: 100%;
  }
}
.section-2-item .item .mark {
  width: 30%;
  position: absolute;
  top: -45px;
  left: -10px;
}
@media screen and (max-width:839px) {
  .section-2-item .item .mark {
    top: -20px;
  }
}
.section-2-item .item a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  font-size: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width:839px) {
  .section-2-item .item a {
    padding-top: 35px;
    padding-bottom: 30px;
  }
}

.section-3 {
  margin-bottom: 80px;
}

.item-3 {
  display: flex;
  align-items: center;
  /* 縦方向の中央揃え */
  /* 他のスタイル設定 */
  justify-content: space-between;
  /* 両端揃え */
  border-bottom: 2px solid #cdb7ce;
  padding-bottom: 50px;
}
.item-3:last-child {
  border-bottom: none;
}
.item-3:first-child {
  padding-top: 0;
}
.item-3:nth-child(n+2) {
  padding-top: 50px;
}
@media screen and (max-width:839px) {
  .item-3 {
    display: block;
  }
}
.item-3 .item-pic {
  width: 40%;
  /* 他のスタイル設定 */
}
@media screen and (max-width:839px) {
  .item-3 .item-pic {
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
  }
}
.item-3 .item-3-midashi {
  flex-grow: 1;
}
.item-3 .item-3-midashi .first-text {
  display: flex;
  flex-direction: row;
  padding-top: 0;
}
.item-3 .item-3-midashi .first-text p {
  font-size: 60px;
  color: #B103BB;
  padding: 10px 10px 15px 10px;
  border: 2px solid #B103BB;
  border-left: none;
  /* 左側のボーダーを削除 */
  border-top: none;
  /* 上側のボーダーを削除 */
}
@media screen and (max-width:839px) {
  .item-3 .item-3-midashi .first-text p {
    font-size: 40px;
  }
}
.item-3 .item-3-midashi .first-text h3 {
  color: #B103BB;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 40px;
}
@media screen and (max-width:839px) {
  .item-3 .item-3-midashi .first-text h3 {
    font-size: 20px;
    padding-left: 20px;
  }
}
.item-3 .item-3-midashi .item-3-text {
  padding-top: 30px;
  font-size: 17px;
  line-height: 2;
}
.item-3:nth-child(2) .item-pic {
  order: 2;
}
.item-3:nth-child(2) .item-3-midashi {
  order: 1;
}
.item-3:first-child .item-pic, .item-3:nth-child(3) .item-pic {
  margin-right: 30px;
  /* 任意の右側のパディング値 */
}
.item-3:nth-child(2) .item-pic {
  margin-left: 30px;
  /* 任意の左側のパディング値 */
}

.click-botom {
  background-color: #ae07b7;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 50px 0;
  position: relative;
}
.click-botom .yusayusa {
  position: absolute;
  left: 30px; /* 左端に配置する場合 */
  top: -100px;
  transform-origin: center bottom;
  animation: yurayura 3s linear infinite;
  opacity: 0.7;
  z-index: 1; /* 適切な値に調整してください */
  width: 40%;
}
@media screen and (max-width:839px) {
  .click-botom .yusayusa {
    width: 60%;
    top: -150px;
  }
}
.click-botom .yusayusa_2 {
  position: absolute;
  right: -250px; /* 左端に配置する場合 */
  top: 100px;
  transform-origin: center bottom;
  animation: yurayura 3s linear infinite;
  opacity: 0.7;
  z-index: 1; /* 適切な値に調整してください */
  width: 60%;
}
@media screen and (max-width:839px) {
  .click-botom .yusayusa_2 {
    display: none;
  }
}
@keyframes yurayura {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
.click-botom img {
  width: 60%;
  height: auto;
}
@media screen and (max-width:839px) {
  .click-botom img {
    width: 80%;
  }
}
.click-botom .click-top {
  width: 40%;
}
.click-botom p {
  font-size: 25px;
  font-weight: bold;
  color: #fffb00;
  padding-bottom: 10px;
  padding-top: 10px;
}
.click-botom h4 {
  font-size: 35px;
  color: #fffb00;
}
.click-botom a.btn_06 {
  display: block;
  text-align: center;
  text-decoration: none;
  margin: 30px auto;
  padding: 20px 100px;
  font-weight: bold;
  font-size: 20px;
  border-radius: 100vh;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  border-bottom: 7px solid #b5b202;
  background: #fffb00;
  color: #ae07b7;
}
.click-botom a.btn_06:hover {
  margin: 30px auto;
  border-bottom: 1px solid #b5b202;
  color: #ae07b7;
}

.section-4 {
  padding-top: 80px;
  padding-bottom: 20px;
  margin-bottom: 80px;
}

.flow07 > li {
  list-style-type: none;
  display: flex;
}

.flow07 > li:not(:last-child) {
  margin: 0 0 50px;
}

.flow07 > li .icon07 {
  width: 90px;
  box-sizing: border-box;
  padding: 20px 10px 10px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background: #B103BB;
  border-radius: 5px 5px 0 0;
  position: relative;
  line-height: 125%;
  margin: 0;
}

.flow07 > li .icon07::after {
  content: " ";
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 20px solid #B103BB;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.flow07 > li dl {
  padding: 0 0 0 30px;
  width: calc(100% - 115px);
}

.flow07 > li dl dt {
  padding: 0 0 15px;
  margin: 0 0 15px;
  font-size: 1.4em;
  font-weight: bold;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
}
@media screen and (max-width:839px) {
  .flow07 > li dl dt {
    font-size: 1.2em;
    line-height: 1.3;
  }
}

.flow07 > li dl dt::after {
  content: "";
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #B103BB;
}

.flow07 > li dl dd {
  margin: 0;
  line-height: 1.5;
}

.section-5 {
  background-color: #f5e5f5;
  padding-top: 50px;
  padding-bottom: 80px;
  margin-top: 100px;
}

.section-5 {
  /* ここに適切なスタイルを追加 */
  flex-wrap: wrap;
  justify-content: space-between;
}

.section-5-item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 15px;
  border-color: #B103BB;
  border-style: solid;
  border-width: 2px;
  flex: 1 0 auto;
  width: 30%;
  margin-right: 30px;
}

.height {
  display: flex;
  flex-direction: column;
}

.section-5-item > * {
  flex: 1;
}

.section-5-namber {
  padding: 10px 20px;
  background-color: #B103BB;
  color: #fff;
  border-radius: 12px 12px 0px 0px;
  font-size: 14px;
}

.section-5-p {
  display: flex;
  align-items: center;
  margin: 20px;
}
.section-5-p img {
  width: 40%;
  height: auto;
  margin-right: 10px;
}

.section-5-p figcaption {
  letter-spacing: 0.05em;
  font-weight: 700;
  display: block;
  line-height: 1.3;
}

.voice-1 {
  margin: 15px 20px 0px 20px;
  color: #B103BB;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.3;
}

.voice-2 {
  margin: 15px 20px 30px 20px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 400;
  font-size: 15px;
}

.question {
  background-size: cover;
  background-color: rgba(242, 240, 244, 0.5);
  background-image: repeating-linear-gradient(134deg, transparent, transparent 10px, rgb(228, 224, 233) 10px, rgb(228, 224, 233) 11px);
  padding: 100px 0 100px 0;
}

.qa-list dl {
  position: relative;
  margin: 30px 0 0;
  cursor: pointer;
  border: 1px solid #fbe1fc;
  background-color: #FFF;
}

.qa-list dl:first-child {
  margin-top: 0;
}

.qa-list dl::after {
  position: absolute;
  top: 27px;
  right: 26px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
  transform: rotate(135deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.qa-list .open::after {
  transform: rotate(-45deg);
}

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
  font-weight: bold;
  background: #fbe1fc;
}

.qa-list dl dt::before {
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  content: "Q.";
  color: #B103BB;
}

.qa-list dl dd::before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  left: 20px;
  display: block;
  content: "A.";
  font-weight: bold;
  color: #B103BB;
}

.qa-list dl dd {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
}

.qa-list dl dd p {
  margin: 30px 0 0;
}

.qa-list dl dd p:first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .qa-list dl {
    margin: 10px 0 0;
  }
  .qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
  }
  .qa-list dl dt {
    padding: 16px 16px 16px 50px;
    font-size: 14px;
  }
  .qa-list dl dt::before {
    font-size: 14px;
    top: 20px;
    left: 20px;
  }
  .qa-list dl dd::before {
    font-size: 14px;
    left: 20px;
    margin-top: 5px;
  }
  .qa-list dl dd {
    margin: 0;
    padding: 16px 16px 16px 50px;
    font-size: 12px;
  }
  .qa-list dl dd p {
    margin: 30px 0 0;
  }
  .qa-list dl dd p:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width:839px) {
  .section-6 {
    margin: 30px 0;
  }
}
.section-6 .caption {
  position: relative;
}

.arrow_box {
  width: 40%;
  height: 5%;
  background: #000000;
  padding: 17px 30px;
  text-align: center;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 30px;
  font-weight: bold;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  /* 中央に配置 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width:839px) {
  .arrow_box {
    width: 80%;
    padding: 3%;
  }
}

.arrow_box:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 0, 0, 0);
  border-top-width: 24px;
  border-bottom-width: 24px;
  border-left-width: 15px;
  border-right-width: 15px;
  margin-left: -15px;
  border-top-color: #000000;
  top: 100%;
  left: 50%;
}

.section-6-pictute {
  width: 100%;
  margin-bottom: 100px;
  position: absolute;
  top: -60px;
}
.section-6-pictute img {
  width: 100%;
  height: auto;
}
@media screen and (max-width:839px) {
  .section-6-pictute {
    top: -10px;
  }
}

.picture {
  display: flex;
  width: 50%;
}
.picture img {
  width: 100%;
  height: auto;
}
@media screen and (max-width:839px) {
  .picture {
    display: block;
    width: 100%;
  }
}

.form {
  background-color: #f5e5f5;
  padding: 4px 0px 40px;
  margin-top: 3px;
}

.forminner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.form h1 {
  font-size: 60px;
  font-weight: 400;
  color: #534c4c;
  text-align: center;
  margin: 70px 0;
}

.name, .mail, .adress, .purpose, .textarea {
  display: flex;
  font-size: 20px;
  color: #534c4c;
  padding-bottom: 40px;
}

.dt {
  width: 30%;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.box {
  width: 70%;
}

.purpose-2 label {
  color: #534c4c;
  padding-bottom: 30px;
  align-items: center;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group .dt,
.input-group .box {
  width: 100%;
}

.checkbox-wrap {
  text-align: center;
}

.text {
  width: 100%;
  resize: none;
}

.button-2 {
  display: inline;
  text-align: center;
  margin-top: 20px;
  padding: 7px 40px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  border: 2px solid #B103BB;
  /* ボーダーカラー */
  background-color: #B103BB;
  color: #fff;
  /* テキストカラー */
  border-radius: 40px;
  /* 角丸 */
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  /* ホバーエフェクトのトランジション */
}
@media screen and (max-width:839px) {
  .button-2 {
    padding: 5px 40px;
  }
}
.button-2:hover {
  background-color: #B103BB;
  color: #fff;
  opacity: 0.6;
}

/* Contact Form 7 - Hide Default Submit Button */
footer {
  font-size: 13px;
  text-align: center;
  padding: 30px 0px;
}/*# sourceMappingURL=style.css.map */