@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
a{
    cursor: pointer;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

body{
    font-family: "fot-tsukubrdgothic-std", sans-serif !important;
margin: 0;
overflow-x: clip;
color: #5B5B5B;
background-color: #fff;
font-weight: 700;
}

html{
color: #3d3e41;
font-family: "fot-tsukubrdgothic-std", sans-serif;
}

.eng{
    font-family: "Inter", serif !important;
}

.eng2{
    font-family: "futura-pt", sans-serif !important;
}
.w-1200{
width: 100%;
margin: auto;
max-width: 1200px;
}
.w-1000{
width: 100%;
margin: auto;
max-width: 1000px;
}
.w-1100{
width: 100%;
margin: auto;
max-width: 1100px;
}

/* ヘッダー基本スタイル */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.header .class {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
	display: flex;
	justify-content: space-between;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 50px;
  width: auto;
}

/* ナビゲーション */
.navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
}

.navigation a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}

.navigation a:hover {
  opacity: 0.7;
}

.navigation img {
  width: 20px;
  height: 20px;
}

/* ハンバーガーメニュー（デフォルトは非表示） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* モバイル用スタイル */
@media (max-width: 768px) {	
	.section-ttl {
		width: 100%;
	}

	.section-fv__inner {
		top: 40% !important;
	}
	
  .header .class {
    padding: 0 15px;
  }
  
  .header-container {
    position: relative;
	  width: 100%;
    z-index: 1001;
    background-color: #fff;
  }
  
  /* ハンバーガーメニュー表示 */
  .hamburger {
    display: flex;
  }
  
  /* ナビゲーションをモバイル用に変更 */
  .navigation {
    position: fixed;
    top: 0;
	z-index: 1000;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  }
  
  .navigation.active {
    right: 0;
  }
  
  .navigation a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
  
  .address-and-map,
  .contact-info {
    width: 100%;
    margin-top: 20px;
  }
  
  .text-wrapper,
  .contact-label {
    font-size: 14px;
  }
  
  .phone-number {
    font-size: 20px;
    font-weight: bold;
    color: #ff6b35;
  }
  
  /* オーバーレイ */
  .header::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 999;
  }
  
  .header.menu-open::before {
    opacity: 1;
    visibility: visible;
  }
}

/* ハンバーガーメニューのアニメーション */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* スクロール時のヘッダー縮小（オプション） */
.header.scrolled {
  padding: 5px 0;
}

.header.scrolled .logo img {
  height: 40px;
}

.section-fv{
    height: 85vh;
    position: relative;
    max-height: 900px;
}
.section-fv > picture{
    width: 100%;
    height: 100%;
}

.section-fv > picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-fv__inner{
    position: absolute;
    max-width: calc(100% - 160px);
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.section-fv__inner picture{
    position: absolute;
}

.section-fv__inner picture.fv-ttl{
    top: 50%;
    transform: translateY(-50%);
    width: 460px;
}

.section-fv__inner picture.emblem{
    right: 0px;
    bottom: 40px;
    width: 500px;
    height: auto;
}

.section-fv__inner picture img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.section-header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right{
    display: flex;
    align-items: center;
}
.header-right a {
    padding: 16px;
    border-radius: 1000000px;
    color: #fff;
    width: 220px;
    display: block;
    margin-left: 24px;
    justify-content: center;
    align-items: center;
    display: flex;
}
a.tel-btn{
    background-color: #F38A33;
    transition: .25s;
    opacity: 1;
}
a.tel-btn:hover{
    transition: .25s;
    opacity: .7;
}
a.line-btn{
    background-color: #06C755;
    transition: .25s;
    opacity: 1;
}
a.line-btn:hover{
    transition: .25s;
    opacity: .7;
}
.header-right a img{
    width: 20px;
    height: 20px;
    margin-right: 14px;
    display: block;
    object-fit: contain;
}

.section-cta{
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/bg-cta.jpg);
    background-size: cover;
    position: relative;
    background-position: center;
}.section-cta__inner {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}
.section-cta__inner img{
    width: 100%;
    height: auto;
}
.section-cta__inner__ttl {
    display: block;
    max-width: 700px;
    margin: 0 auto 40px;
}
.section-cta__inner__cont{
    margin-bottom: 40px;
    display: block;
}
.cta-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cta-btn li {
    width: calc((100% - 44px) / 2);
}

.cta-btn li a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10000px;
    font-size: 24px;
    color: #fff;
    line-height: 1;
    font-weight: 700;
    position: relative;
}

.cta-btn li a img{
    width: 24px;
    height: 24px;
    margin-right: 14px;
    display: block;
    object-fit: contain;
}
.cta-tel-btn{
    background-color: #F2A018;
    padding: 20px 20px 20px;
    height: 72px;
}
.cta-line-btn{
    background-color: #06C755;
    padding: 28px 20px 20px;
    height: 72px;
}

.cta-line-btn span{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 8px;
    max-width: 280px;
    width: 70%;
    border: 3px solid #06C755;
    color: #06C755;
    border-radius: 10000px;
    background-color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.scroll-text {
    display: flex;
    overflow: hidden;
    width: max-content;
        position: absolute !important;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

.scroll-text li {
    font-size: 140px;
    height: 140px;
    font-weight: bold;
    color: #EDF9FA; /* 内部の色 */
    text-shadow: 
        -2px -2px 0 #87CBFF,
        2px -2px 0 #87CBFF,
        -2px 2px 0 #87CBFF,
        2px 2px 0 #87CBFF; /* 文字の縁 */
    white-space: nowrap;
    margin-right: 56px; /* 要素同士の余白 */
}
.scroll-text li img{
   height: 140px;
   display: block;
   width: max-content;
   object-fit: contain;
}

.slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-text {
    position: absolute !important;
    bottom: 0;
}



.section-sec01{
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/sec01-bg.webp);
    background-size: cover;
    position: relative;
    background-position: center bottom;
}

.section-sec01__inner{
    padding-top: 80px;
    padding-bottom: 120px;
}

.section-sec01-cont {
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/section-sec01-cont-bg.jpg);
    background-size: cover;
    position: relative;
    background-position: center bottom;
    padding: 40px;
    border: 2px solid #F19600;
}

.section-sec01-cont::before{
    content: "";
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    display: block;
    border: 1.5px solid #F19600;
}

.section-sec01-cont::after{
    content: "";
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    display: block;
    border: 1.5px solid #F19600;
}

.section-sec01-cont h2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #F19600;
    color: #fff;
    padding: 14px 40px;
    border-radius: 10000px;
    font-size: 24px;
    width: max-content;
}
.section-sec01-cont h2::before {
    content: "";
    width: 20px;
    height: 10px;
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/triangle.webp);
    background-size: contain;
    position: absolute;
    background-position: center top;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
}

.section-sec01-cont h3{
    margin-top: 32px;
    font-size: 32px;
    text-align: center;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
position: relative;
font-weight: 700;
}

.section-sec01-cont h3 img:first-of-type{
    position: absolute;
    left: -4px;
    transform: translateX(-100%);
    width: 18px;
    height: 18px;
    object-fit: contain;
    object-position: center;
    bottom: 2px;
}
.section-sec01-cont h3 img:last-of-type{
    position: absolute;
    right: -4px;
    transform: translateX(100%);
    width: 18px;
    height: 18px;
    bottom: 2px;
    object-fit: contain;
    object-position: center;
}

.section-sec01-cont h3 span:nth-of-type(1){
    color: #F38A33;
}

.section-sec01-cont h4 {
    margin: auto;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}
.section-sec01-cont h4 span {
    padding: 12px 16px;
    font-size: 32px;
    display: block;
    width: max-content;
}
.section-sec01-cont h4 span:first-of-type {
    border: 2px solid #F19600;
    background-color: #fff;
    color: #F19600;
}
.section-sec01-cont h4 span:last-of-type{
    border: 2px solid #F19600;
    background-color: #F19600;
    color: #fff;
}

.section-sec01-cont-left span.eng02 {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: block;
    background-color: #F19600;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
}
.section-sec01-cont-left span.eng02::before {
    content: "";
    width: 20px;
    height: 10px;
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/triangle.webp);
    background-size: contain;
    position: absolute;
    background-position: center top;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,100%);
}
.section-sec01-cont-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.section-sec01-cont-left{
    width: calc(50%);
}
.section-sec01-cont-right {
    width: calc(50% - 14px);
}

.section-sec01-cont-right img{
   width: 100%;
   height: auto;
   object-fit: contain;
   object-position: center;
}
.section-sec01-cont-left ul li{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-sec01-cont-left-text{
    height: 60px;
    width: calc(100% - 70px);
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1.5px solid;
    color: #F19600;
    border-radius: 10px; 
    padding: 18px;
    font-size: 24px;
    font-weight: 700;
    position: relative;
}
.section-sec01-cont-left-text::before{
    width: 10px;
    height: 1.5px;
    background-color: #F19600;
    left: 0;
    top: 50%;
    transform: translate(-110%,-50%);
    content: "";
    display: block;
    position: absolute;
}

p.attention-text {
    font-size: 40px;
    line-height: 1.5;
    font-weight: 700;
    margin-top: 32px;
}

p.attention-text span.orange{
    font-size: 48px;
    color: #F38A33;
    position: relative;
}

p.attention-text span.orange::before{
    content: "";
    width: 100%;
    height: 10px;
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/wave-point.webp);
    background-size: contain;
    position: absolute;
    background-position: center top;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

p.attention-text .font-min{
    font-size: 40px;
}

.section-sec01-cont-left ul li:last-of-type{
    margin-bottom: 0;
}
.section-sec01-cont-left ul li:last-of-type span.eng02::before{
    display: none;
}


.section-sec02 {
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/sec02-bg.webp);
    background-size: cover;
    position: relative;
    background-position: center bottom;
    margin-top: -3vw;
    z-index: -1;
}

.section-sec02__inner picture {
    width: 100%;
}

.section-sec02__inner picture img {
    width: 100%;
}

.section-sec02 .w-1200 {
    width: 100%;
    margin: auto;
    max-width: 1100px;
    padding-top: calc(40px + 3vw);
    padding-bottom: 120px;
}

.section-sec02__inner h2{
    width: 80%;
    max-width: 900px;
    margin: auto;
    margin-bottom: 32px;
}
section.section-sec01__inner::after {
    content: "その方法が";
    font-size: 24px;
    background: #f38a33;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    padding: 20px;
    width: 230px;
    text-align: center;
    color: #fff;
    font-weight: 700;
}

.trait {
	text-align: center;
	width: 100%;
	position: absolute;
	z-index: 10;
	margin-top: -50px;
}

.section-sec03{
   background-color: #FAF5F1;
    background-size: cover;
    position: relative;
    background-position: center bottom;
    margin-top: -3vw;
    z-index: -2;
}
.section-sec03__inner{
    position: relative;
    z-index: 2;
}
.section-sec03__inner{
    padding-top: calc(250px + 3vw);
    padding-bottom: 120px;

}
.section-sec03__inner h2{
    max-width: 760px;
    width: 80%;
    margin: auto;
    margin-bottom: 80px;
	text-align: center;
}
.section_ttl h2 img{
  width: 40%;
  height: auto;
  object-fit: contain;
}
.section-sec03 .scroll-text li {
    font-size: 160px;
    font-weight: bold;
    color: #FAF5F1; /* 内部の色 */
    text-shadow: 
        -2px -2px 0 #F38A33,
        2px -2px 0 #F38A33,
        -2px 2px 0 #F38A33,
        2px 2px 0 #F38A33; /* 文字の縁 */
    white-space: nowrap;
    margin-right: 56px; /* 要素同士の余白 */
}

ul.section-sec03-cont__list .photo {
    width: 70%;
    position: relative;
    max-width: 700px;
}

ul.section-sec03-cont__list .text-box {
    width: calc(50% - 40px);
    background-color: #fff;
    padding-bottom: 40px;
    border-bottom: 2px solid #F38A33;
}

ul.section-sec03-cont__list .text-box span.eng2{
    background-color: #F38A33;
    color: #fff;
    font-size: 24px;
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-weight: 700;
    line-height: 1;
}
ul.section-sec03-cont__list .text-box h3{
    font-size: 34px;
    margin-top: 24px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: dashed 2px #ccc;
    margin-left: 24px;
    margin-right: 24px;
    position: relative;
    font-weight: 700;
    line-height: 1.4;
}
ul.section-sec03-cont__list .text-box h3::before {
    content: "";
    width: 110px;
    height: 2px;
    bottom: -2px;
    left: 0;
    display: block;
    z-index: 2;
    background-color: #F38A33;
    position: absolute;
}

ul.section-sec03-cont__list .text-box h3 span.size-min{
    font-size: 30px;
}

ul.section-sec03-cont__list .text-box h3 span.orange{
    color: #F38A33;
}

ul.section-sec03-cont__list .text-box h3 span.hilight {
    background: linear-gradient(transparent 50%, #FFF200 50%);
    padding: 0 4px; /* 文字の両端に少し余白を追加 */
}

ul.section-sec03-cont__list .text-box p{
    font-size: 20px;
    line-height: 150%;
    padding-left: 24px;
    padding-right: 24px;
}

ul.section-sec03-cont__list li {
    position: relative;
    margin-bottom: 80px;
}

ul.section-sec03-cont__list .photo img {
    width: 100%;
    height: auto;
}

ul.section-sec03-cont__list .text-box {
    width: calc(50% - 40px);
    background-color: #fff;
    padding-bottom: 40px;
    border-bottom: 2px solid #F38A33;
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 40px;
}

ul.section-sec03-cont__list .photo{
    margin-left: auto;
    margin-right: 0;
}

ul.section-sec03-cont__list li:nth-of-type(2n) .text-box {
    width: calc(50% - 40px);
    background-color: #fff;
    padding-bottom: 40px;
    border-bottom: 2px solid #F38A33;
    position: absolute;
    z-index: 2;
    left: auto;
    right: 0;
    bottom: 40px;
}

ul.section-sec03-cont__list li:nth-of-type(2n) .photo{
    margin-left: 0;
    margin-right: auto;
}

.section-sec04{
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/voice-bg.jpg);
    background-size: contain;
    position: relative;
    background-position: center bottom;
}

.section-sec04__inner{
    padding-top: 80px;
}
.section-sec04__inner__content h3{
    max-width: 840px;
    margin: auto;
    width: 100%;
    margin-bottom: 48px;
}

.section-sec04__inner__content h3 img{
  width: 100%;
  height: auto;
}
.section-sec04__inner__content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-sec04__inner__content ul li{
    background-color: #F5FAFE;
    padding: 20px;
    position: relative;
    width: calc((100% - 120px) / 4);
    margin-bottom: 45px;
}

.section-sec04__inner__content ul li img{
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
}
.section-sec04__inner__content ul li > span{
    background-color: #F5FAFE;
    padding: 20px;
    position: absolute;
    font-size: 16px;
    font-weight: 700;
    background-color: #F19600;
    border-radius: 1000px;
    min-width: 94px;
    width: max-content;
    padding: 8px 14px;
    top: 0;
    left: 0;
    color: #fff;
    text-align: center;
    transform: translateY(-50%);
}
.section-sec04__inner__content ul li h4 span{
    font-size: 14px;
    margin-left: 14px;
}

.section-sec04__inner__content ul li h4 {
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-weight: 700;
}

.section-sec04__inner__content ul li p{
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}

.section-sec04__inner.w-1100{
    padding-bottom: 220px;
}
.section-sec04 .scroll-text li {
    height: 140px;
    width: max-content;
}
.section-sec04 .scroll-text li img {
    height: 140px;
    width: max-content;
    object-fit: contain;
}

.section-sec04__inner__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.section-sec04__inner__head h2{
    width: calc(50% - 70px);
}

.section-sec04__inner__head h2 img{
    width: 100%;
    height: auto;
}

.section-sec04__inner__head iframe{
    width: 50%;
    height: 300px;
}


.section-sec05 .ttl{
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
}


.section-sec05 .ttl img{
    width: 100%;
    object-fit: contain;
    height: auto;
}

.section-sec05{
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/voice-bg.jpg);
    background-size: contain;
    position: relative;
    background-position: center bottom;
    padding-top: 80px;
    padding-bottom: 120px;
}

.section-sec05__inner > h3{
    width: 100%;
    max-width: 770px;
    margin: auto;
    margin-bottom: 24px;
}

.section-sec05__inner > h3 img{
    width: 100%;
    height: auto;
}
.section-sec05__inner-wrap{
    display: flex;
    justify-content: space-between;
}

.section-sec05__inner-wrap .section-sec05__inner-cont{
    width: calc((100% - 80px) / 2);
}




.section-sec05__inner-cont span.eng02 {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: block;
    background-color: #F19600;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
}
.section-sec05__inner-cont.orange span.eng02 {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: block;
    background-color: #F38A33;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
}
.section-sec05__inner-cont span.eng02::before {
    content: "";
    width: 20px;
    height: 10px;
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/triangle.webp);
    background-size: contain;
    position: absolute;
    background-position: center top;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,100%);
}

.section-sec05__inner-cont li:last-of-type span.eng02::before{
    display: none !important;
}
.section-sec05__inner-cont.orange span.eng02::before {
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/triangle2.webp);
}

.section-sec05__inner-wrap .section-sec05__inner-cont li{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-sec05__inner-wrap .section-sec05__inner-cont .section-sec01-cont-left-text{
    height: 60px;
    width: calc(100% - 70px);
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1.5px solid;
    color: #F19600;
    border-radius: 10px; 
    padding: 18px;
    font-size: 24px;
    font-weight: 700;
    position: relative;
}

.section-sec05__inner-cont.orange .section-sec01-cont-left-text{
    height: 60px;
    width: calc(100% - 70px);
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1.5px solid;
    color: #F38A33;
    border-radius: 10px; 
    padding: 18px;
    font-size: 24px;
    font-weight: 700;
    position: relative;
}
.section-sec05__inner-wrap .section-sec05__inner-cont .section-sec01-cont-left-text::before{
    width: 10px;
    height: 1.5px;
    background-color: #F19600;
    left: 0;
    top: 50%;
    transform: translate(-110%,-50%);
    content: "";
    display: block;
    position: absolute;
}



.section-sec05__inner-cont.orange .section-sec01-cont-left-text::before{
    background-color: #F38A33;
}

.section-sec05__inner-cont-head {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1.5px solid;
    margin-bottom: 14px;
    border-radius: 10px;
    background-color: #fff;
}


.blue .section-sec05__inner-cont-head {
    border: 1.5px solid #F19600;
}
.orange .section-sec05__inner-cont-head {
    border: 1.5px solid #F38A33;
}


.orange .section-sec05__inner-cont-head h2{
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #F38A33;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 2px dashed #ccc;
    font-weight: 700;
}

.orange .section-sec05__inner-cont-head h2::before{
    width: 14px;
    height: 14px;
    border-radius: 10000px;
    border: 2px solid #F38A33;
    margin-right: 12px;
    content: "";
}
.blue .section-sec05__inner-cont-head h2 {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #F19600;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 2px dashed #ccc;
    font-weight: 700;
}



.blue .section-sec05__inner-cont-head h2::before{
    width: 14px;
    height: 14px;
    border-radius: 10000px;
    border: 2px solid #F19600;
    margin-right: 12px;
    content: "";
}

.section-sec05__inner-cont-head p{
    line-height: 1.5;
    font-weight: 700;
}

.section-sec05__inner-cont-head p span{
    font-size: 24px;
}

.blue .section-sec05__inner-cont-head p span{
   color: #F19600;
}

.orange .section-sec05__inner-cont-head p span{
color: #F38A33;
}

.section-sec05__inner.w-1000 {
    position: relative;
    z-index: 2;
}

.section-sec07__inner{
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-sec07__inner h2{
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 14px;
    margin-bottom: 24px;
    border-bottom: 1px solid #ccc;
    width: 100%;
    max-width: max-content;
    margin: 0 auto 24px;
}

.section-sec07{
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/comment-bg.webp);
    background-size: cover;
    position: relative;
    background-position: center;
    color: #fff;
}
.section-sec07__inner h2 span.yellow{
    color: #FFF200;
}

.section-sec07__inner h2 span.min-text{
    font-size: 36px;
}

.section-sec07__inner p{
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    font-weight: 700;
}

footer{
    background-color: #3d3e41;
    color: #fff;
    font-size: 12px;
    padding: 16px;
    text-align: center;
}

.google-maps-iframe {
	width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

header.section-header.site-header.active {
    background: #fff;
}

.cta-btn li a::before {
    display: block;
    width: 56px;
    height: 56px;
    background: #fff;
    content: "";
    position: absolute;
    right: 10px;
    border-radius: 10000px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-btn li:first-of-type a::after {
    display: block;
    width: 21px;
    height: 21px;
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/arrow-blue.webp);
    object-fit: contain;
    top: 50%;
    transform: translateY(-50%);
    right: 27px;
    content: "";

    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
}

.cta-btn li:last-of-type a::after {
    display: block;
    width: 21px;
    height: 21px;
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/arrow-green.webp);
    object-fit: contain;
    top: 50%;
    transform: translateY(-50%);
    right: 27px;
    content: "";
    position: absolute;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}


.section-sec06{

    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/bg-cta.jpg);
    background-size: cover;
    position: relative;
    background-position: center;
}
.section-sec06__inner{
    padding-top: 80px;
    padding-bottom: 120px;
}

.section-sec06 h2{
    max-width: 480px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
}

.section-sec06 h2 img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.section-sec06 p.text {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
}
.section-sec06__sub-ttl{
    width: 100%;
    max-width: 900px;
    margin: auto;
    margin-bottom: 24px;
    display: block;
}

.section-sec06__sub-ttl img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.section-sec06__inner.w-1000 ul {
    display: flex;
    justify-content: space-between;
}

.section-sec06__inner.w-1000 ul li {
    width: calc((100% - 64px) / 3);
}
.section-sec06__inner.w-1000 ul li > span {
    font-size: 64px;
    text-align: center;
    display: block;
    margin-bottom: 14px;
    color: transparent; /* 文字の中を透明にする */
    -webkit-text-stroke: 3px #F19600; /* 3pxの縁取り */
    font-weight: 700;
}

.section-sec06__inner.w-1000 ul li > h3{
    font-size: 22px;
    text-align: center;
    display: block;
    margin-bottom: 12px;
    color: #F19600;
    font-weight: 700;
}

.section-sec06__inner.w-1000 ul li > picture{
    width: 100%;
    height: auto;
    margin-bottom: 18px;
    display: block;
}

.section-sec06__inner.w-1000 ul li > picture img{
    width: 100%;
    height: auto;
}
.section-sec06__inner.w-1000 ul li > p{
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
}

@media screen and (max-width:1200px) {
html{
    color: #3d3e41;
    font-family: "fot-tsukubrdgothic-std", sans-serif;
    }
    .w-1200{
    width: 100%;
    margin: auto;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    }
    .w-1000{
    width: 100%;
    margin: auto;
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
    }
    .w-1100{
    width: 100%;
    margin: auto;
    max-width: 1100px;
    padding-left: 20px;
    padding-right: 20px;
    }
    
    header.section-header {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 99999;
    }
}
.sp{
    display: none;
}

@media screen and (max-width:640px) {
	
	.pc-only {
		display: none;
	}
	
	.sp-only {
		display: block;
	}
	
    .section-header_inner {
        display: flex;
        justify-content: space-between;
        padding: 14px;
    }
    .section-sec01-cont h2 {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,-50%);
        background: #F19600;
        color: #fff;
        padding: 14px 47px;
        border-radius: 10000px;
        font-size: 18px;
        width: max-content;
        text-align: center;
        line-height: 1.5;
    }
    .section-sec01-cont h4 {
        margin: auto;
        margin-top: 24px;
        display: flex;
        justify-content: center;
        margin-bottom: 32px;
        flex-wrap: wrap;
    }
    .section-sec01-cont-left-text {
        height: 60px;
        width: calc(100% - 70px);
        display: flex;
        align-items: center;
        background-color: #fff;
        border: 1.5px solid;
        color: #F19600;
        border-radius: 10px;
        padding: 8px;
        font-size: 18px;
        font-weight: 700;
        position: relative;
    }
    .section-sec01-cont {
        background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/section-sec01-cont-bg.jpg);
        background-size: cover;
        position: relative;
        background-position: center bottom;
        padding: 40px 20px;
        border: 2px solid #F19600;
    }
    .section-sec01-cont::before,
    .section-sec01-cont::after{
        display: none;
    }
    .section-sec01-cont h4 span {
        padding: 12px 16px;
        font-size: 24px;
        display: block;
        width: max-content;
        width: 100%;
        text-align: center;
    }
    .section-sec01-cont h3 {
        margin-top: 32px;
        font-size: 20px;
        text-align: center;
        width: max-content;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        font-weight: 700;
    }
    .sp{
        display: block;
    }
    .section-fv__inner picture.fv-ttl {
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        left: 0;
    }
    .header-right a {
        padding: 10px 15px;
        border-radius: 1000000px;
        color: #fff;
        width: max-content;
        display: block;
        margin-left: 4px;
        justify-content: center;
        display: flex;
        font-size: 12px;
    }
    .scroll-text {
        position: absolute !important;
        bottom: 0;
        width: 100%;
    }
    .cta-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .cta-btn li {
        width: 100%;
    }
    .section-sec01-cont-left {
        width: 100%;
    }
    .section-sec01-cont-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 2;
        flex-wrap: wrap;
    }
    .section-sec04__inner__content ul li {
        background-color: #F5FAFE;
        padding: 20px;
        position: relative;
        width: calc((100% - 10px) / 2);
        margin-bottom: 45px;
    }
    .section-sec04__inner__head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 48px;
        flex-wrap: wrap;
    }
    .section-sec04__inner__head h2 {
        width: 100%;
    }
    .section-sec04__inner__head iframe {
        width: 100%;
        height: 300px;
    }
    .section-map ul li {
        width: 100%;
        margin-bottom: 32px;
    }
    p.attention-text {
        font-size: 20px;
        line-height: 1.5;
        font-weight: 700;
        margin-top: 32px;
    }
    p.attention-text span.orange {
        font-size: 32px;
        color: #F38A33;
        position: relative;
    }
    p.attention-text .font-min{
        font-size: 20px;
    }
    .cta-btn li a {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10000px;
        font-size: 18px;
        color: #fff;
        line-height: 1;
        font-weight: 700;
        position: relative;
    }
    .cta-tel-btn {
        background-color: #F19600;
        padding: 16px;
        height: auto;
    }
    .cta-btn li a::before {
        display: block;
        width: 48px;
        height: 48px;
        background: #fff;
        content: "";
        position: absolute;
        right: 5px;
        border-radius: 10000px;
        top: 50%;
        transform: translateY(-50%);
    }
    .cta-btn li:first-of-type a::after,
    .cta-btn li:last-of-type a::after {
        width: 19px;
        height: 19px;
        right: 19px;
        content: "";
    }
    ul.section-sec03-cont__list .text-box {
        width: 100%;
        background-color: #fff;
        padding-bottom: 20px;
        border-bottom: 2px solid #F38A33;
        position: relative;
        z-index: 2;
        left: 0;
        bottom: 0 !important;
        order: 2;
    }
    ul.section-sec03-cont__list .photo {
        width: 100%;
        position: relative;
        max-width: 100%;
        order: 1;
    }
    ul.section-sec03-cont__list li {
        position: relative;
        margin-bottom: 40px;
        display: flex;
        flex-wrap: wrap;
    }

    ul.section-sec03-cont__list li:nth-of-type(2n) .text-box {
        width: 100%;
        background-color: #fff;
        padding-bottom: 40px;
        border-bottom: 2px solid #F38A33;
        position: absolute;
        z-index: 2;
        left: auto;
        right: 0;
        bottom: 40px;
    }

    ul.section-sec03-cont__list li:nth-of-type(2n) .text-box {
        width: 100%;
        background-color: #fff;
        padding-bottom: 40px;
        border-bottom: 2px solid #F38A33;
        position: relative;
        z-index: 2;
        left: auto;
        right: 0;
        bottom:0px !important;
    }
    ul.section-sec03-cont__list .text-box h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 14px;
        padding-bottom: 12px;
        border-bottom: dashed 2px #ccc;
        margin-left: 24px;
        margin-right: 24px;
        position: relative;
        font-weight: 700;
        line-height: 1.4;
    }
    ul.section-sec03-cont__list .text-box h3 span.size-min {
        font-size: 20px;
    }
    ul.section-sec03-cont__list .text-box h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 14px;
        padding-bottom: 12px;
        border-bottom: dashed 2px #ccc;
        margin-left: 20px;
        margin-right: 20px;
        position: relative;
        font-weight: 700;
        line-height: 1.4;
    }
    ul.section-sec03-cont__list .text-box p {
        font-size: 14px;
        line-height: 150%;
        padding-left: 20px;
        padding-right: 20px;
    }
    ul.section-sec03-cont__list .text-box {
        width: 100%;
        background-color: #fff;
        padding-bottom: 20px;
        border-bottom: 2px solid #F38A33;
        position: relative;
        z-index: 2;
        left: 0;
        bottom: 0 !important;
        order: 2;
    }
    ul.section-sec03-cont__list .text-box span.eng2 {
        background-color: #F38A33;
        color: #fff;
        font-size: 20px;
        display: block;
        width: 100%;
        padding: 10px 10px;
        font-weight: 700;
        line-height: 1;
    }
    .section-sec03__inner {
        padding-top: calc(80px + 3vw);
        padding-bottom: 80px;
    }
    ul.section-sec03-cont__list .photo {
        width: 100%;
        position: relative;
        max-width: 100%;
        order: 1;
        margin-bottom: 14px;
    }
    .section-sec04__inner__head iframe {
        width: 100%;
        height: 60vw;
    }
    .section-sec04__inner__content ul li > span {
        background-color: #F5FAFE;
        padding: 20px;
        position: absolute;
        font-size: 14px;
        font-weight: 700;
        background-color: #F19600;
        border-radius: 1000px;
        min-width: 94px;
        width: max-content;
        padding: 6px 10px;
        top: 0;
        left: 0;
        color: #fff;
        text-align: center;
        transform: translateY(-50%);
    }
    .section-sec04__inner__content ul li h4 {
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    .section-sec04__inner__content ul li h4 span {
        font-size: 12px;
        margin-left: 8px;
    }
    .section-sec04__inner__content ul li p {
        text-align: center;
        margin-top: 6px;
        line-height: 1.5;
        font-size: 10px;
    }
    .section-sec04__inner__content ul li {
        background-color: #F5FAFE;
        padding: 20px;
        position: relative;
        width: calc((100% - 10px) / 2);
        margin-bottom: 20px;
    }
    .section-sec04__inner.w-1100 {
        padding-bottom: 120px;
    }
    .cta-line-btn span {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,-50%);
        padding: 4px;
        max-width: 280px;
        width: 70%;
        border: 3px solid #06C755;
        color: #06C755;
        border-radius: 10000px;
        background-color: #fff;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .cta-btn li:last-of-type{
        margin-top: 32px;
    }
    .cta-line-btn {
        background-color: #06C755;
        padding: 18px 12px 12px;
        height: auto;
        padding-right: 30px;
    }
    .cta-tel-btn {
        background-color: #F19600;
        padding: 16px;
        height: auto;
        padding-right: 30px;
    }
    .section-sec05__inner-wrap {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .section-sec05__inner-wrap .section-sec05__inner-cont {
        width: 100%;
    }
    .section-sec05__inner-wrap .section-sec05__inner-cont .section-sec01-cont-left-text {
        height: 60px;
        width: calc(100% - 70px);
        display: flex;
        align-items: center;
        background-color: #fff;
        border: 1.5px solid;
        color: #F19600;
        border-radius: 10px;
        padding: 18px;
        font-size: 16px;
        font-weight: 700;
        position: relative;
    }
    .section-sec05__inner-cont.orange .section-sec01-cont-left-text {
        height: 60px;
        width: calc(100% - 70px);
        display: flex;
        align-items: center;
        background-color: #fff;
        border: 1.5px solid;
        color: #F38A33;
        border-radius: 10px;
        padding: 18px;
        font-size: 18px;
        font-weight: 700;
        position: relative;
    }
    .orange .section-sec05__inner-cont-head h2 {
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        color: #F38A33;
        padding-bottom: 18px;
        margin-bottom: 18px;
        border-bottom: 2px dashed #ccc;
        font-weight: 700;
    }
    .blue .section-sec05__inner-cont-head h2 {
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        color: #F19600;
        padding-bottom: 18px;
        margin-bottom: 18px;
        border-bottom: 2px dashed #ccc;
        font-weight: 700;
    }
    .section-sec05__inner-cont-head p span {
        font-size: 20px;
    }
    .scroll-text li {
        font-size: 140px;
        height: 80px;
        font-weight: bold;
        color: #EDF9FA;
        text-shadow: -2px -2px 0 #87CBFF,
            2px -2px 0 #87CBFF,
            -2px 2px 0 #87CBFF,
            2px 2px 0 #87CBFF;
        white-space: nowrap;
        margin-right: 56px;
    }
    .scroll-text li img {
        height: 80px;
        display: block;
        width: max-content;
        object-fit: contain;
    }
    .section-sec04 {
        background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/voice-bg-sp.jpg);
        background-size: contain;
        position: relative;
        background-position: center bottom;
    }
    .section-sec05 {
        background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/voice-bg-sp.jpg);
        background-size: contain;
        position: relative;
        background-position: center bottom;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section-sec05 .ttl {
        width: 100%;
        padding: 0 20px;
        margin-bottom: 12px;
    }
    .section-sec06 p.text {
        text-align: center;
        line-height: 1.6;
        margin-bottom: 24px;
        font-size: 14px;
    }
    .section-sec06__inner.w-1000 ul li {
        width: 100%;
        margin-bottom: 24px;
    }
    .section-sec06__inner.w-1000 ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .section-sec06__inner.w-1000 ul li > picture {
        width: 100%;
        height: auto;
        margin-bottom: 18px;
        display: block;
        max-width: 240px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-sec06__inner.w-1000 ul li > p {
        font-size: 14px;
        line-height: 1.5;
        font-weight: 700;
    }
    .section-sec07__inner h2 {
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        padding-bottom: 14px;
        margin-bottom: 24px;
        border-bottom: 1px solid #ccc;
        width: 100%;
        max-width: max-content;
        margin: 0 auto 24px;
    }
    .section-sec07__inner h2 span.min-text {
        font-size: 28px;
    }
    .section-sec07__inner {
        padding-top: 120px;
        padding-bottom: 120px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-sec07__inner p {
        font-size: 16px;
        line-height: 2;
        text-align: center;
        font-weight: 700;
    }
    .section-map ul li .map-wrap{
        flex-wrap: wrap;
    }
    .section-map ul li .map-wrap > img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .section-map ul li .map-wrap .map-text {
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-top: 14px;
    }
    .section-map ul li .map-wrap > img {
        width: 100%;
        height: auto;
        object-fit: cover;
        height: 50vw;
    }
    .map-text a {
        display: flex;
        border-radius: 1000px;
        align-items: center;
        justify-content: center;
        background-color: #06C755;
        padding: 15px;
        margin-top: 8px;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
    }
    .section-sec07__inner {
        padding-top: 80px;
        padding-bottom: 80px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-sec06__inner {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section-sec07__inner h2 {
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        padding-bottom: 14px;
        margin-bottom: 24px;
        border-bottom: 1px solid #ccc;
        width: 100%;
        max-width: max-content;
        margin: 0 auto 24px;
        line-height: 1.5;
    }
    .section-header__logo {
        width: 120px;
        height: 40px;
        position: relative;
        z-index: 99999;
    }
    .header-right a {
        padding: 10px 7px;
        border-radius: 1000000px;
        color: #fff;
        width: max-content;
        display: block;
        margin-left: 4px;
        justify-content: center;
        display: flex;
        font-size: 12px;
        font-weight: 700;
        align-items: center;
    }
    .header-right a img {
        width: 14px;
        height: 14px;
        margin-right: 4px;
        display: block;
        object-fit: contain;
    }
    .section-header_inner {
        display: flex;
        justify-content: space-between;
        padding: 14px 5px;
    }
    .section-fv__inner picture.emblem {
        right: auto;
        bottom: 0;
        width: calc(100% - 40px);
        height: auto;
        left: 50%;
        transform: translate(-50%, 50%);
    }
    .section-fv {
        height: 100vh;
        position: relative;
        max-height: 900px;
        z-index: 999;
    }
    .section-fv {
        height: 80vh;
        position: relative;
        max-height: 624px;
        z-index: 999;
		margin-top: 80px;
    }
    .section-sec01-cont-right {
        width: 140px;
        position: absolute;
        right: -40px;
        bottom: -40px;
    }
    .section-sec01-cont-left {
        width: 100%;
        position: relative;
        z-index: 2;
    }
    p.attention-text span.orange::before {
        content: "";
        width: 100%;
        height: 10px;
        background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/wave-point.webp);
        background-size: contain;
        position: absolute;
        background-position: center top;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        background-repeat: no-repeat;
    }
    .section-sec04 .scroll-text li img {
        height: 80px;
        width: max-content;
        object-fit: contain;
    }
    .section-sec04 .scroll-text li {
        height: 80px;
        width: max-content;
    }
    .section-fv__inner picture.fv-ttl {
        top: 75%;
        transform: translateY(-50%);
        width: 70%;
        left: 0;
    }
    .section-sec03,
    section.section-sec04,
    section.section-sec05,
    .section-cta{
        overflow: hidden;
    }
    .scroll-text{
        width: max-content;
    }
}


.section-cta::before {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/cta-point01.webp);
    background-size: contain;
    position: absolute;
    background-position: left top;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
}

.section-cta::after {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(https://kizuna-s.jp/wp-content/themes/swell/assets/img/cta-point02.webp);
    background-size: contain;
    position: absolute;
    background-position: right bottom;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
}



.voice {
    overflow: hidden;
    align-items: center;
    align-self: stretch;
    background-color: var(--zircon);
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 32px;
    padding: 50px 0px;
    position: relative;
    width: 100%;
  }
  
  .container-36 {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    position: relative;
  }
  
  .group-625647-1 {
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .group-625647-1:hover {
    transform: translateY(-3px);
  }
  
  .container-37 {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 24px;
    position: relative;
  }
  
  .container-38 {
    align-items: center;
    align-self: stretch;
    display: flex;
    flex: 0 0 auto;
    gap: 32px;
    justify-content: center;
    position: relative;
    width: 100%;
  }
  
  .icon-2 {
    height: 75px;
    position: relative;
    width: 92px;
  }
  
  .frame-625605-5 {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 738px;
  }
  
  .x1-8 {
    background-color: var(--lemon-yellow);
    height: 15px;
    left: 0;
    opacity: 0.4;
    position: absolute;
    top: 60px;
    width: 403px;
  }
  
  .message-1 {
    align-self: stretch;
    letter-spacing: 2.40px;
    line-height: 74.4px;
    margin-top: -1.00px;
    position: relative;
    text-align: center;
    text-shadow: 0px 2px 4px #00000040;
  }
  
  .span0-2 {
    letter-spacing: 1.15px;
  }
  
  .span1-2 {
    letter-spacing: 0.51px;
    line-height: 49.6px;
  }
  
  .container-39 {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 10px;
    justify-content: center;
    position: relative;
  }
  
  .title-8 {
    letter-spacing: 0;
    line-height: 42px;
    margin-top: -1.00px;
    position: relative;
    text-align: center;
    white-space: nowrap;
    width: fit-content;
  }
  
  .frame-626945 {
    align-items: flex-start;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 32px;
    margin-left: -174.50px;
    margin-right: -174.50px;
    position: relative;
  }
  
  /* Swiperコンテナのスタイル */
  .frame-626945.swiper {
    position: relative;
    width: 100%;
    padding: 0 50px; /* ナビゲーションボタン用のスペース */
  }
  
  .swiper-slide {
    flex-shrink: 0;
  }
  
  /* Swiperスライドの中央寄せ */
  .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* コンテンツも中央寄せ */
  .swiper-slide .container-22 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Swiperコンテナ全体を右にずらす */
  .frame-626945.swiper {
    position: relative;
    transform: translateX(100px); /* 右に100px移動 */
    margin-left: 160px; /* 左側の空白を埋める */
    overflow: visible; /* 必要に応じて */
  }
  
  .voice1 {
    background-image: url(../img/voice01.webp);
    background-size: contain;
    height: 500px;
    position: relative;
    width: auto;
	background-repeat: no-repeat;
  }
  
  .voice2 {
    background-image: url(../img/voice2.webp);
    background-size: contain;
    height: 500px;
    position: relative;
    width: auto;
	background-repeat: no-repeat;
  }
  
  .voice3 {
    background-image: url(../img/voice03.webp);
    background-size: contain;
    height: 500px;
    position: relative;
    width: auto;
	background-repeat: no-repeat;
  }

  .voice4 {
    background-image: url(../img/voice4.webp);
    background-size: contain;
    height: 500px;
    position: relative;
    width: auto;
	background-repeat: no-repeat;
  }


@media screen and (max-width:640px) {
	.voice1,
	.voice2,
	.voice3,
	.voice4 {
		height: 450px;
	}
	
	.trait {
		margin-top: -85px;
	}
	
	.section_ttl h2 img {
		width: 65%;
	}
	
	.section-sec03__inner h2 {
		margin-top: 40px;
		margin-bottom: 50px;
	}
}

.reception {
    display: flex;
    width: 100%;
}

.reception iframe {
    width: 60%;
}

.reception img {
    width: 40%;
}

@media (max-width: 640px) {
    .reception {
        flex-direction: column;
    }

    .reception iframe,
    .reception img {
        width: 100%;
    }
}

.cv-buttons {
    position: fixed;
    display: flex !important;
    flex-direction: column;
    top: 150px;
    right: 20px;
	z-index: 10000;
}

.cv-buttons img {
    height: 120px;
    width: 120px;
    object-fit: cover;
    margin-bottom: -10px;
}

@media (max-width: 640px) {
	.cv-buttons	{
		display: none !important;
	}
}


@media (max-width: 768px) {
    .scroll-fixed-images {
        display: flex;
        align-items: end;
        gap: 10px;
		position: fixed;
		bottom: 10px;
		z-index: 10001;
    }

    .scroll-fixed-images a {
        width: 50%;
    }

    .scroll-fixed-images a img {
        width: 100%;
    }
}