@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
.fist-view-top {
    position: relative;
}
.fist-view-top::after {
    content: "";
    width: 80vw;
    height: 80vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1000px;
    display: block;
    border: #7DC058 12px solid;
    z-index: -1;
}
.fist-view-top::before {
    content: "";
    width: 110vw;
    height: 110vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1000px;
    display: block;
    border: #7DC058 12px solid;
    z-index: -1;
}


.fist-view-top > div {
  position: relative;
  z-index: 0;
}

/* 背景バブル（MAX 24px版） */
.fist-view-top > div::before,
.fist-view-top > div::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  background-repeat: no-repeat;
}

/* レイヤー①（やや濃いめ） */
.fist-view-top > div::before {
  background:
    radial-gradient(circle 24px at 12% 18%, #7DC058 100%, transparent 100%),
    radial-gradient(circle 18px at 28% 78%, #7DDBA4 100%, transparent 100%),
    radial-gradient(circle 22px at 62% 22%, #7DC058 100%, transparent 100%),
    radial-gradient(circle 16px at 82% 55%, #7DDBA4 100%, transparent 100%),
    radial-gradient(circle 20px at 48% 12%, #7DC058 100%, transparent 100%),
    radial-gradient(circle 14px at 75% 82%, #7DDBA4 100%, transparent 100%);

  filter: blur(1.2px);
  animation: floatA 11s ease-in-out infinite alternate;
}


/* レイヤー②（薄め・ランダム感） */
.fist-view-top > div::after {
  opacity: 0.55; /* 0.8は強いので少し落とす */
  background:
    radial-gradient(circle 14px at 18% 60%, #7DDBA4 100%, transparent 100%),
    radial-gradient(circle 20px at 45% 38%, #7DC058 100%, transparent 100%),
    radial-gradient(circle 12px at 72% 70%, #7DDBA4 100%, transparent 100%),
    radial-gradient(circle 21px at 90% 25%, #7DC058 100%, transparent 100%),
    radial-gradient(circle 15px at 8% 40%, #7DC058 100%, transparent 100%),
    radial-gradient(circle 17px at 58% 88%, #7DDBA4 100%, transparent 100%);

  filter: blur(0.6px);
  animation: floatB 15s ease-in-out infinite alternate;
}


@keyframes floatA {
  0%   { transform: translateY(0)    translateX(0)    ; }
  50%  { transform: translateY(-35px) translateX(0px) ; }
  100% { transform: translateY(8px) translateX(0px); }
}

@keyframes floatB {
  0%   { transform: translateY(0)     translateX(0) ; }
  50%  { transform: translateY(35px)  translateX(0px) ; }
  100% { transform: translateY(-32px) translateX(0px)  ; }
}


/* 中身を前面に */
.fist-view > * {
  position: relative;
  z-index: 1;
}























/* =========================
   Contact Form 7 - Cute (LOOP)
   ========================= */

/* フォーム全体をカードっぽく */
.wpcf7 {
  max-width: 720px;
  margin: 0 auto;
}

.wpcf7 form.wpcf7-form {
  background: #ffffff;
  border: 2px solid rgba(125, 192, 88, 0.22);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* 見出し（pラベル） */
.wpcf7 form.wpcf7-form p {
  margin: 14px 0 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #222;
}

/* 入力系 共通 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  box-sizing: border-box;
  border-radius: 14px;
  border: 2px solid rgba(125, 219, 164, 0.55);
  background: rgba(125, 219, 164, 0.10);
  padding: 14px 14px;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  transition: 0.2s ease;
}

/* テキストエリア */
.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
}

/* フォーカス時：やさしい発光 */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: rgba(125, 192, 88, 0.85);
  background: rgba(125, 219, 164, 0.16);
  box-shadow: 0 0 0 6px rgba(125, 192, 88, 0.18);
}

/* プレースホルダーの色 */
.wpcf7 ::placeholder {
  color: rgba(0, 0, 0, 0.42);
}

/* ラジオの並び：カード風 */
.wpcf7 .wpcf7-radio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}

@media (min-width: 600px) {
  .wpcf7 .wpcf7-radio {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* label要素が付いてる前提（use_label_element） */
.wpcf7 .wpcf7-radio label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 2px solid rgba(125, 219, 164, 0.55);
  background: rgba(125, 219, 164, 0.10);
  cursor: pointer;
  transition: 0.18s ease;
}

.wpcf7 .wpcf7-radio label:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  border-color: rgba(125, 192, 88, 0.75);
}

/* ラジオ自体もちょい可愛く */
.wpcf7 input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #7DC058; /* これが可愛く効く */
}

/* 送信ボタン */
.wpcf7 input[type="submit"] {
  width: 100%;
  margin-top: 14px;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #7DC058, #7DDBA4);
  box-shadow: 0 12px 26px rgba(125, 192, 88, 0.28);
  cursor: pointer;
  transition: 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(125, 192, 88, 0.32);
}

.wpcf7 input[type="submit"]:active {
  transform: translateY(0);
}

/* バリデーション */
.wpcf7 form .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #d12f2f;
}

/* エラーメッセージ全体 */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-radius: 14px;
  border: 2px solid rgba(209, 47, 47, 0.25);
  background: rgba(209, 47, 47, 0.06);
  padding: 12px 14px;
  margin: 16px 0 0;
  font-weight: 700;
}

/* 送信完了メッセージ */
.wpcf7 form.sent .wpcf7-response-output {
  border-radius: 14px;
  border: 2px solid rgba(125, 192, 88, 0.28);
  background: rgba(125, 219, 164, 0.14);
  padding: 12px 14px;
  margin: 16px 0 0;
  font-weight: 800;
}

/* スマホ余白微調整 */
@media (max-width: 480px) {
  .wpcf7 form.wpcf7-form {
    padding: 18px 14px;
    border-radius: 16px;
  }
}
.wpcf7 input[type="text"] {
    margin-bottom: .5rem;
}







    .fist-h1 {
	position:absolute;
	padding:0.5rem 0.5rem;
	background:#ffffffb5;
	font-size:1.8rem !important;
	color:#615A0F ;
	display:inline;
	bottom:10%;

	line-height:2.2rem;
	z-index:100;
}

.fist-img img ,.fist-img2 img {
	border-radius:40px;
	outline:25px solid #7DC058;
    z-index:0;
}
.fist-img img {
    transform:translatex(-9px);
}
.fist-img2 img {
    transform:translatex(-30%);
}

.fist-text {
	position:absolute;
	width:auto;
	right:0;
	display:inline;
	top:5%;
	font-size:18px;
	background-color:#ffffffb5;
	padding:0.5rem;
	line-height:1.8rem;
}
.firs-btn {
	position:absolute;
	width:auto;
	right:0;
	bottom:0%;
}




.top #content {
	padding-top:25px;
}

.fist-view .swell-block-columns__inner {
	position:relative;
}



.is-style-check_list li:before {
	display:flex;
	align-items:center;
	justify-content:center;
	height:100%;
}

.swell-block-fullWide__SVG.-top {
	/* height:10vw !important; */
}

.is-style-balloon_box2:before {
    background: inherit;
    border-bottom: 1px solid;
    border-right: 1px solid;
    bottom: -11px;
    content: "";
    height: 20px;
    left: 80% !important;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    visibility: visible;
    width: 20px;
}

.top-loop-way {
	border:4px solid #7DC058;
	border-radius:30px
}
.top-loop-way img {
	border-radius:30px 30px 0 0 ;
	border-bottom:3px solid #7DC058;
}

.top-loop-way-textarea {
	padding: 1.2rem 2rem 2rem 2rem !important;
	background:white;
	border-radius:30px;
}

.loop-serct-contents {
	position:relative;
}
.loop-serct-contents::before {
	content:"";
	position:absolute;
	top:50%;left:50%;
	transform:translate(-50%, -50%);
	width:60vw;
	height:60vw;
	border:15px solid #7DDBA4;outline: 1px solid white;
	border-radius:1000px;
	display:block;
    z-index: -2;
}
.loop-serct-content{
	position:relative;
	color:white;
}

.loop-serct-content::before {
	content:"";
	position:absolute;
	display:block;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	width:180px;
	height:180px;
	background:#7DDBA4;
    border: 1px solid white;
	border-radius:1000px;
	z-index:-1;
}
.c-bannerLink__title {
	  border-bottom: 1px solid;
    padding-bottom: 0.5rem;

}

.top-helo-img img {
	border-radius:30px;
}

.step-content h3 {
	  padding: 0.3rem 1rem !important;
    border-radius: 20px !important;
}
.top-faq .is-style-balloon_box2 {
	width:100% !important;
    left: 0;
}
.top-faq .is-style-balloon_box2:before {
 left:50% !important;
}

.swell-block-accordion.is-style-main .swell-block-accordion__title {
	    background-color: #bc9d43;
}


@media screen and (min-width:768px) {

.swell-block-fullWide {
    padding: 2em 0;
    position: relative;
    max-width: 500px !important;
    width: 100% !important;
        left: 0 !important;
}
.fist-view-top::after {
    width: calc(500px - 30%);
    height: calc(500px - 30%);
}
.fist-view-top::before {
    width: calc(500px - 10%);
    height: calc(500px - 10%);
}
.post_content {
    overflow: hidden;
    padding: 0 !important;
}
.loop-serct-contents::before {
    height: 240px;
    width: 240px;
}
.loop-serct-content::before {
    width: 200px;
    height: 200px;
}
.mra {
    margin-right: auto;
}
.mrl {
    margin-left: auto;width: c;
}
.loop-serct-contents > div {
    justify-content: center;align-items: center;
}

.l-mainContent__inner::before,
.l-mainContent__inner::after {
  content: "";
  position: fixed;
  top: 0;
  height: 100vh;
  width: calc(50% - 250px);
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  background-repeat: no-repeat;
}

/* 左側（倍増） */
.l-mainContent__inner::before {
  left: 0;
  background:
    radial-gradient(circle 20px at 20% 15%, #7cc0587c 100%, transparent 100%),
    radial-gradient(circle 16px at 60% 30%, #7ddba472 100%, transparent 100%),
    radial-gradient(circle 22px at 80% 45%, #7cc0587c 100%, transparent 100%),
    radial-gradient(circle 18px at 40% 65%, #7DDBA472 100%, transparent 100%),
    radial-gradient(circle 14px at 70% 80%, #7cc0587c 100%, transparent 100%),
    radial-gradient(circle 24px at 25% 90%, #7DDBA472 100%, transparent 100%);
background-color:  #b2ffd272;
  animation: floatSideA 11s ease-in-out infinite alternate;
}

/* 右側（倍増） */
.l-mainContent__inner::after {
  right: 0;
  background:
    radial-gradient(circle 18px at 30% 20%, #7DDBA472 100%, transparent 100%),
    radial-gradient(circle 14px at 70% 35%, #7cc0587c 100%, transparent 100%),
    radial-gradient(circle 20px at 50% 55%, #7DDBA472 100%, transparent 100%),
    radial-gradient(circle 22px at 85% 70%, #7cc0587c 100%, transparent 100%),
    radial-gradient(circle 16px at 40% 85%, #7DDBA472 100%, transparent 100%),
    radial-gradient(circle 24px at 75% 95%, #7cc0587c 100%, transparent 100%);
background-color:  #b2ffd272;
  animation: floatSideB 14s ease-in-out infinite alternate;
}

@keyframes floatSideA {
  0%   { transform: translateY(0) translateX(0); }
  100% { transform: translateY(35px) translateX(0px); }
}

@keyframes floatSideB {
  0%   { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-30px) translateX(0px); }
}

@media (max-width: 768px) {
  .l-mainContent__inner::before,
  .l-mainContent__inner::after {
    display: none;
  }
}


}

.w-footer .w-footer__box:last-of-type {
    position: fixed;
    top: 20vw;
    left: calc(50% + 320px);
    background: rgb(255, 246, 234);
    border-radius: 30px;
    padding: 1rem 3rem;
    border: dotted 3px var(--color_pale01) !important;
}
.l-footer {
    z-index: 1;
}
















