    :root{
        --brand-color:#004aad;
        --brand-width:1200px;
        --voice-width:1400px;
        --sectin-bottom:120px
    }
    html {
    font-size: 16px; /* ルートフォントサイズを16pxに設定 */
    font-weight: 500;
    

}
.sp{
    display: none;
}
body {
    font-size: 1rem;
    line-height: 140%;
    font-family: "Noto Sans JP", sans-serif;
}
img.logo{
    width:140px;
    position: fixed;
    top:20px;
    left: 20px;
    transition: width 0.5s ease, transform 0.5s ease;
    z-index: 10;
    display: none
}
img.logo.small {
    width: 70px; /* 小さくなったときのサイズ */
    display: block;
    
}
img.member_regist{
    position: fixed;
    width:300px;
    right: 20px;
    top:20px;
    z-index: 10;
}
img.visual{
    margin-top:0px;
    margin-bottom:90px;
}
header{
    width:100%;
    min-width: 1200px;
    position: relative;
    background: var(--brand-color);
}
header h1{
    color: #FFF;
    margin: 0;
    padding: 20px 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}
img.member_regist_btn{
    width:500px;
    margin:auto
}
h2.title {
    font-size: 3.2rem;
    color: var(--brand-color);
    font-weight: 700;
    padding: 20px 0;
    position: relative;
    }
h2.title::after {
content: "";
display: block;
width: 120px;
height: 4px;
background-color: var(--brand-color);

position: absolute;
bottom: -24px; /* 調整が必要な場合はこの値を変更 */
left: 50%; /* 中央揃え */
transform: translateX(-50%); /* 中央揃え */
}
section{
    min-width:1000px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
section.visible{
    opacity: 1;
    transform: translateY(0);
}
section.feature {
    margin-bottom: var(--sectin-bottom);
}
.feature_wrap{
    width:var(--brand-width);
    margin:auto
}
.feature_wrap img{
    margin:0 0 60px
}
.feature_wrap ul{
 width:100%;
 display: flex;
 flex-wrap: wrap;
 margin-bottom:60px

}
.feature_wrap ul li{
 width:calc((100% - 40px) / 3);
 border: 1px solid var(--brand-color);
 margin-right:20px;
}
.feature_wrap ul li img.icon {
    width: auto;
    margin: 60px auto;
    height: 120px;
}

.feature_wrap ul li .title{
    width:100%;
    background: var(--brand-color);
    color:#FFF;
    padding:20px 4%;
    font-size:1.4rem
}
.feature_wrap ul li:nth-child(3n){
  margin-right:0;
}
section.flow {
    margin-bottom: var(--sectin-bottom);
}
.flow_wrap{
    width:var(--brand-width);
    margin:auto
}
.flow_wrap img.flow_img{
 width:90%;
 margin:auto;
}
section.member_regist {
    margin-bottom: var(--sectin-bottom);
}
.member_regist_wrap{
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url('/img/back.png');
    background-size: cover;
    background-position: center;
}
.member_regist_wrap .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒いマスク */
}
.member_regist_wrap .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
section.qa {
    margin-bottom: var(--sectin-bottom);
}
.qa_wrap{
    width:var(--brand-width);
    margin:auto;
    padding:0 4%;
}
.qa_wrap dt {
    margin-bottom: 1.4em;
    color: #000;
    font-weight: 700;
    font-size: 1.8rem;
    text-align: left;
}

.qa_wrap dt::before,
.qa_wrap dd::before {
    margin-right: .4em;
    color: red;
}

.qa_wrap dt::before {
    content: "Q.";
}

.qa_wrap dd {
    margin: 0 0 3.6em;
    padding: 1em 1.5em;
    background-color: #f2f2f2;
    color: #000;
    text-align: left;
    font-size: 1.4rem;
    line-height: 180%;;
    font-weight: 500;
}

.qa_wrap h2{
    margin-bottom:90px;
}
section.voice {
    margin-bottom: var(--sectin-bottom);
}
.voice_wrap{
    max-width:var(--voice-width);
    min-width:var(--brand-width);
    margin:auto;
    position: relative;
}
.voice_wrap h2.title{
    margin-bottom:90px;
}
.swiper {
	width: 80%;
	height: 100%;
  }

  .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
  }

  .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev {

	  right: 0;
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
  
  left: 0;
  }
  .swiper {
  height: auto;
}
  .swiper-wrapper {

  height: auto;

}
.swiper-button-next, .swiper-button-prev {

  background:var(--brand-color);
  color: #FFF;
  height: 80px;
  width: 80px;
  border-radius: 80px;
  top: 60%;
}
  .voice_wrap .voice_contents{
	  width:100%;
	  display: flex;
	  flex-wrap: wrap;
	  align-items: stretch; 
  }
  .voice_wrap .voice_contents .left_voice{
	  object-fit: cover;
  width: 50%;
  height: auto; /* 高さを自動に設定 */
  display: flex; /* フレックスボックスを使用 */
  align-items: center; /* 垂直方向の中央揃え */
  justify-content: center; /* 水平方向の中央揃え */
  
  }
  .voice_wrap .voice_contents .right_voice{
	  width:50%;
	  padding: 60px;
	  background:var(--brand-color);
	  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  }
  .voice_wrap .voice_contents .right_voice h2{
	  width:100%;
	  text-align: left;
	  color: #FFF;
  }
  .voice_wrap .voice_contents .right_voice h3{
	  width:100%;
	  text-align: left;
	  color: #FFF;
  }
  .voice_wrap .voice_contents .right_voice p{
	  width: 100%;
  font-size: 1.0rem;
  line-height: 180%;
  text-align: left;
  font-weight: 400;
  color: #FFF;
  }
section.support {
    margin-bottom: var(--sectin-bottom);
    background: var(--brand-color);
    padding:90px 0;
}
.support_wrap{
    width:var(--brand-width);
    margin:auto
}
.support_wrap h2.title{
    margin-bottom:120px;
    color: #FFF;
}
.support_wrap h2.title::after {

    background-color: #FFF;

}
.support_wrap ul{
    width:100%;
    
}
.support_wrap ul li{
    width: 100%;
    margin:0 0 90px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    
}
.support_wrap ul li .left_img {
    width: 30%;
    position: relative; /* 子要素の絶対位置を設定するために必要 */
    padding-top: 30%; /* 正方形のアスペクト比を維持するために必要 */
}

.support_wrap ul li .left_img img {
    position: absolute; /* 親要素に対して絶対位置を設定 */
    top: 0;
    left: 0;
    width: 100%; /* 画像の幅を親要素に合わせる */
    height: 100%; /* 画像の高さを親要素に合わせる */
    border-radius: 50%; /* 画像を正円にトリミング */
    object-fit: cover; /* 画像をコンテナにフィットさせる */
}
.support_wrap ul li .right_contents{
    width:60%;
    margin-left:10%
}
.support_wrap ul li .right_contents h3{
    color: #FFF;
    font-size:1.8rem;
    text-align: left;
    font-weight: 700;
    margin:0 0 60px;
}
.support_wrap ul li .right_contents p{
    color: #FFF;
    font-size:1.2rem;
    line-height: 180%;
    text-align: left;
}
section.resume {
    margin-bottom: var(--sectin-bottom);
}
.resume_wrap{

    width:var(--brand-width);
    margin:auto;
}
.resume_wrap h2.title{
    margin-bottom:90px;
}
.resume_wrap ul {
    width:100%;
    display: flex;
    flex-wrap: wrap;
}
.resume_wrap ul li{
 width:calc((100% - 40px) / 3);
 margin-right:20px;
 border:1px solid #4d4b4b;
 overflow: hidden;
}
.resume_wrap ul li img{
    transition: transform 0.5s ease-in-out;
}

.resume_wrap ul li img:hover {
    transform: scale(1.1); /* 画像を拡大する */
}
.resume_wrap ul li:nth-child(3n){
  margin-right:0;
}
section.price {

    background: url(/img/price_back.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0;
}
.price_wrap{

width:var(--brand-width);
margin:auto;
}
.price_wrap h2.title{
margin-bottom:90px;
}
.price-list {
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    font-size: 1.4rem;
}

.price-list table {
    width: 100%;
    border-collapse: collapse;
}

.price-list th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.price-list th {
    background-color: var(--brand-color);
    font-weight: bold;
    color: #FFF;
    font-size: 1.4rem;
}

.price-list tr:hover {
    background-color: #f1f1f1;
}
section.about {
    background: var(--brand-color);
    padding: 90px 0 20px;
}
.about_wrap{
    width:var(--brand-width);
    margin:auto
}
.about_wrap h2.title{
    margin-bottom:60px;
    color: #FFF;
}
.about_wrap h2.title::after {

    background-color: #FFF;

}
.about_wrap h3{
    margin-bottom:30px;
    color: #FFF;
}
.about_wrap p{
    margin-bottom:30px;
    color: #FFF;
}
.about_wrap .link ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #FFF;
    gap: 30px;
    margin: 60px 0 0;
}
.about_wrap .link ul li{
    color:#FFF
}
.about_wrap .link ul li a{
    color:#FFF
}
