@charset "utf-8";


/*main*/
main{

}

/* ==========================
    メインビュー（トップ）
========================== */
.main-hero {
    position: relative;
    width: 100%;
        height: 70vh;
    min-height: 520px;
    background: url("../img/bg_main1.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(82 144 145 / 62%); /* 半透明オーバーレイ */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    box-sizing:border-box;/*はみ出し禁止*/
}

.hero-text {
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.hero-title {
    font-size: 50px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.hero-text p {
    font-size: 18px;
    color: #fff;
    line-height: 1.9;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .main-hero {
    height: 60vh;
    min-height: 420px;
    }
    .hero-title {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 18px;
    }
    .hero-text p {
    font-size: 15px;
    line-height: 1.8;
    }
}

.cta-button {
  display: block;
  margin-top: 15px;
  padding: 6px 0px;
  background-color:var(--color-icon-key);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  border-radius: 5px;
  width: 33%;
  text-align: center;
}




.main_photo,.main_photo2{
    width: 100%;
    max-width: 100%;
    margin-bottom: 60px;
}

.main_photo img{
    width: 100%;
    /*height: calc(100vh - 80px);*/
    object-fit: cover;
}
@media only screen and (max-width:450px){
	.main_photo img{
        height: auto;
	}
}

/*問合せヘッダー*/
.main_photo2 img{
    width: 100%;
    object-fit:cover;
    height: 480px;
}

/*バナーボックス*/
#banner{
    width: 100%;
    max-width: 100%;
    margin:0 auto;
    margin-bottom:60px;
}
#banner .banner_box{
    display: flex;
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

#banner .banner_box a{
    display: inline-block;
    width: 33%;
    max-width: 100%;
}

@media only screen and (max-width:450px){
	.main_photo img{
        height: auto;
	}
}

#banner .banner_box a{
    width: 48%;
}

#news{
    margin-bottom:120px;
}

.wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.section_title{
    margin-bottom: 30px;
}

.section_title2{
    margin: 0 auto;
    text-align: center;
}

.en_title{
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-family: "futura-pt", sans-serif;
}

.jp_title{
    display: block;
    margin-bottom: 20px;
}

.list{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-size:14px;
}
@media only screen and (max-width:600px){
	.list{
        font-size:13px;
	}
}

#news .list li{
    width: 100%;
    max-width: 95%;
    padding: 6px 20px;
    display: flex;
    line-height: 1.2em;
}
@media only screen and (max-width:600px){
	#news .list li{
        display: block;
        padding:6px 0 6px 10px;
	}
}


#news .list li:last-child{
    border-right: none;
    padding-right: 0;
}

#news .list li .date_area{
    margin-bottom: 8px;
    margin-right:20px;
}
@media only screen and (max-width:700px){
	#news .list li .date_area{
        margin-right:0px;
	}
}

#news .list li .date_area span{
    width: 50px;
    height: 20px;
    line-height: 20px;
    background-color: #000;
    color: #fff;
    display: inline-block;
    font-size: 0.75rem;
    margin-left: 10px;
    text-align: center;
}

#about{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin:0 auto;
    margin-bottom:120px;
    overflow: hidden; /* はみ出し防止 */

}
@media only screen and (max-width:900px){
	#about{
        display: block;
	}
}

#about .img{
    width: 40%;
}
@media only screen and (max-width:900px){
	#about .img{
        width: 100%;
        max-width: 100%;
	}
}

#about .img img{
    width: 100%;
    height:370px;
    object-fit: cover;
}
@media only screen and (max-width:900px){
	#about .img img{
        width: 100%;
        max-width: 100%;
        height:200px;
	}
}

#about .text{
    width: 60%;
    padding:20px 40px;
}
@media only screen and (max-width:900px){
	#about .text{
        width: 100%;
        max-width: 100%;
        padding: 20px 0px;
	}
}

#about .about_text{
    font-size:13px;
    padding:0 20px;
}

#about .key_title{
    text-align: center;
    font-weight:600; 
    font-size:28px; 
    color:var(--color-icon-key); 
    margin-bottom:10px;
}

#greeting{
    margin-bottom:120px;
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin:0 auto;
    margin-bottom:120px;
}
@media only screen and (max-width:900px){
	#greeting{
        display: block;
	}
}

#greeting .img{
    width: 40%;
}
@media only screen and (max-width:900px){
	#greeting .img{
        width: 100%;
        max-width: 100%;
	}
}

#greeting .img img{
    width: 100%;
    height:370px;
    object-fit: cover;
}
@media only screen and (max-width:900px){
	#greeting .img img{
        width: 100%;
        max-width: 100%;
        height:200px;
	}
}

#greeting .text{
    width: 60%;
    padding:20px 40px;
}
@media only screen and (max-width:900px){
	#greeting .text{
        width: 100%;
        max-width: 100%;
        padding: 20px 0px;
	}
}

#greeting .about_text{
    font-size:13px;
    padding:0 20px;
}

#greeting .key_title{
    text-align: center;
    font-weight:600; 
    font-size:28px; 
    color:var(--color-icon-key); 
    margin-bottom:10px;
}

#business{

}

#business .business_contents{
    padding-top: 40px;
    width: 100%;
    max-width: 806px;
    margin: 0 auto;
    margin-bottom: 30px;
}

/*事業内容カード*/
a.btn7 {
    background: var(--color-icon-key);
    color: #ffffff;
    display: inline-block;
    padding: 6px 30px 6px;
    position: relative;
    text-decoration: none;
    transition: all 0.1s 0s ease-out;
    font-weight: 600;
    letter-spacing: 0.04rem;
}
.no-touch a.btn7:hover {
    background: #00a2ad;
    box-shadow: 0px 8px 2px 0 rgba(0,0,0,0.075);
    transform: translateY(-2px);
    transition: all 0.25s 0s ease-out;
}
.no-touch a.btn7:active, a.btn7:active {
    background: #008a93;
    box-shadow: 0 1px 0px 0 rgba(255,255,255,0.25);
    transform: translate3d(0,1px,0);
    transition: all 0.025s 0s ease-out;
}
ul.cards7 {
    border: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}
li.card7 {
    display: inline-block;
    perspective: 1000;
    position: relative;
    text-align: left;
    transition: all 0.3s 0s ease-in;
    width: 48%;
    z-index: 1;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 12%), 0 2px 3px 0 rgb(0 0 0 / 22%);
    padding: 0;
    cursor: pointer;
    margin-bottom: 25px;
}
li.card7 img {
    width: 100%;
}
li.card7 .card__image-holder {
    background: rgba(0,0,0,0.1);
    height: 0;
    padding-bottom: 57%;
    overflow: hidden;
}
li.card7 .card__image-holder img {
    transition: all 0.1s 0s ease-in;
}
li.card7:hover > .card__image-holder img {
    transform: scale(1.05);
}
li.card7 div.card-title {
    background: #ffffff;
    padding: 8px 18px 14px;
    position: relative;
    z-index: 0;
}
li.card7 div.card-title a.toggle-info {

    height: 28px;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 9px;
    width: 70px;
    margin: 0 !important;
}
li.card7 div.card-title a.toggle-info span {
    background: #ffffff;
    display: block;
    height: 2px;
    position: absolute;
    top: 16px;
    transition: all 0.15s 0s ease-out;
    width: 12px;
}
li.card7 div.card-title a.toggle-info span.left {
    right: 14px;
    transform: rotate(45deg);
}
li.card7 div.card-title a.toggle-info span.right {
    left: 14px;
    transform: rotate(-45deg);
}
li.card7 div.card-title p {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    margin: 6px 0 3px;
    padding: 0;
    line-height: 1.56;
    color: #555;
}
li.card7 div.card-title p.card_timecategory {
    display: flex;
    flex-flow: row;
    font-weight: 600;
    font-size: 0.85rem;
    justify-content: flex-start;
    letter-spacing: 0.02rem;
    color: #b5b5b5;
    position: relative;
}
li.card7 div.card-title p small {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.025em;
}
li.card7 div.card-description {
    padding: 0px 20px 20px;
    position: relative;
    font-size: 0.8rem;
    color: #313131;
}
li.card7 div.card-actions {
    box-shadow: 0 2px 0px 0 rgba(0,0,0,0.075);
    padding: 10px 15px 15px;
    text-align: center;
}
li.card7 div.card-flap {
    background: #d9d9d9;
    position: absolute;
    width: 100%;
    transform-origin: top;
    transform: rotateX(-90deg);
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 12%), 0 2px 3px 0 rgb(0 0 0 / 22%);
}
li.card7 div.flap1 {
    transition: all 0.3s 0.3s ease-out;
    z-index: -1;
}
li.card7 div.flap2 {
    transition: all 0.3s 0s ease-out;
    z-index: -2;
}
ul.cards7.showing li.card7 {
    cursor: pointer;
    opacity: 0.6;
    transform: scale(0.88);
}
.no-touch ul.cards7.showing li.card7:hover {
    opacity: 0.94;
    transform: scale(0.92);
}
li.card7.show {
    opacity: 1 !important;
    transform: scale(1) !important;
}
li.card7.show div.card-title a.toggle-info {
    background: #ff6666 !important;
}
li.card7.show div.card-title a.toggle-info span {
    top: 15px;
}
li.card7.show div.card-title a.toggle-info span.left {
    right: 10px;
}
li.card7.show div.card-title a.toggle-info span.right {
    left: 10px;
}
li.card7.show div.card-flap {
    background: #ffffff;
    transform: rotateX(0deg);
}
li.card7.show div.flap1 {
    transition: all 0.3s 0s ease-out;
}
li.card7.show div.flap2 {
    transition: all 0.3s 0.2s ease-out;
}
.card-actions a {
    padding-right: 45px;
    padding-left: 45px;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 20%), 0 2px 3px -2px rgb(0 0 0 / 15%);
}
.card-actions a.btn7:hover {
    box-shadow: 0 13px 20px -3px rgb(0 0 0 / 24%);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transform: translateY(-3px);
}
.card-actions a.btn7:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
ul.cards7 {
    flex-direction: column;
}
li.card7 {
    width: 100%;
}
}

/**/





#business .text{
    font-size:14px;
    margin-bottom:20px;
}

#business .title{
    font-weight: 550;
    position: relative;
    color: var(--color-logo);
}

#business .catch_title{
    color:var(--color-logo)
}

#company{
    width: 100%;
    max-width: 800px;
    margin:0 auto;
    padding:80px 0px;
}


#company .text{
    width: 100%;
    max-width: 800px;
    padding:0 20px;
}
@media screen and (max-width: 500px) {
    #company .text {
        max-width: 370px;
        padding:0 10px;
    }
}

#company .info{
    display: flex;
    align-items: flex-start; /* align items to the top */
    flex-wrap: wrap;
    font-size:14px;
    border-bottom: solid 1px #dddddd;
    padding: 3px;
}

#company .info2{
    display: flex;
    align-items: flex-start; /* align items to the top */
    flex-wrap: wrap;
    font-size:14px;
    padding: 3px;
}

#company .info dt, .info2 dt{
    width: 100px;
}

#company .info dd, .info2 dd{
    width: 80%;
}
@media only screen and (max-width:600px){
	#company .info dd, .info2 dd{
        width: 100%;
        margin-bottom:10px;
	}
}

.mba_position{
    position: relative;
}
.mba{
    width: 100px;
    position: absolute;
    right: 10px;
    border-radius: 28%;
}
@media only screen and (max-width: 700px) {
    .mba {
        position: absolute;
        bottom: -483px; /* 概要の下に配置 */
        left: 70%; /* 中央に配置 */
        transform: translateX(-50%);
        animation: fuwafuwa 3s ease-in-out infinite alternate;
    }
}



footer{
    background-color: #fff;
    padding-bottom: 20px;
}
@media only screen and (max-width:750px){
	footer{
        margin-bottom:40px;
	}
}

footer .flex{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

footer .copyright{
    font-size: 12px;
    text-align: center;
}

.fixed-recruit-banner {
  position: fixed;
  right: 22px;         /* left: 22px; にすれば左表示 */
  bottom: 80px;
  z-index: 9999;
  width: 170px;
  /* モバイルでは控えめにする */
}
.fixed-recruit-banner .recruit-box {
  background: linear-gradient(135deg, #c7a71ef2 90%, #ffffffbd 100%);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(208,169,0,0.13);
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: bold;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
  min-height: 80px;
}

.fixed-recruit-banner .recruit-title {
  font-size: 1.15em;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.fixed-recruit-banner .recruit-box:hover {
  box-shadow: 0 8px 32px rgba(208,169,0,0.25);
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 700px) {
  .fixed-recruit-banner {
    width: 120px;
    right: 10px;
    bottom: 65px;
  }
  .fixed-recruit-banner .recruit-box {
    padding: 10px 8px 10px 12px;
    min-height: 60px;
  }
  .fixed-recruit-banner .recruit-title {
    font-size: 0.98em;
  }
}

/*キーワード*/
.keyword{
    font-size:26px;
    font-weight: bold;
    text-align: center;
    margin-bottom:40px;
}

/*9月限定キャンペーン*/
/* top_img：ヒーローバナー（画像をそのまま全幅表示） */
.top-img{
    padding: 0;           /* 既存の section 共通パディングを無効化 */
    margin: 0;
    margin-bottom: 60px;
}
.top-img .hero-img{
    display: block;       /* 画像下の余白を消す */
    width: 100%;
    max-width: 100%;
    height: auto;         /* 比率維持 */
}

/* ===== member_info ===== */
.member-info{ max-width:800px; margin:0 auto 80px; padding:0 12px; }
.member-info .inner{     
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
}

/* 見出しの緑帯＋金ライン */
.member-banner{ text-align:center; margin:0 0 28px; }
.member-banner > span{
    display:inline-block; background:#006036; color:#fff;
    padding:10px 0px;     
    font-weight: 700;
    border-bottom: 6px solid #D0A900;
    letter-spacing: 0.2em;
    width: 100%;
    max-width: 100%;
}

/* セクション内ブロック */
.member-block{ margin:42px 0 100px; }
.member-subtitle{ font-size:1.6rem; font-weight:700; color: var(--color-bg-key); margin-bottom:20px;}

/* バッジ画像＋補足文（横並び） */
.member-head{ display:flex; align-items:center; gap:28px; margin:8px 0 60px; justify-content: space-around; }
.member-badges{ width:100%; max-width:100%; height:auto; display:block; }
.member-aux{ 
    margin:0; 
    line-height:1.8; 
    color:#111; 
    margin: 0;
    font-weight: bold;
    text-align: right; 
}

/* 価格行＆注意書き */
.member-price{ font-size:1.2rem; font-weight:600; margin:18px 0 6px; }
.member-notes{ list-style:none; padding:0; margin:8px 0 18px; color:#666; font-size:.9rem; line-height:1.6; }
.member-notes li{ margin:2px 0; }

/* 組み合わせチップ（＋で接続） */
.combo-row{ display:flex; align-items:center; gap:14px; margin-top:10px; }
.plus{ font-size:20px; font-weight:700; }
.chip{ display:inline-block; padding:12px 22px; border-radius:6px; font-weight:700; }
.chip-green{ background:#006036; color:#fff; }
.chip-black{ background:#000; color:#fff; }
.chip-gold{ background:#D0A900; color:#111; }

/* スマホ */
@media (max-width:768px){
  .member-subtitle{ font-size:1.25rem; }
  .member-head{ display:block; text-align:center; }
  .member-aux{ margin-top:8px; }
  .combo-row{ flex-wrap:wrap; gap:10px; }
}

/* ===== member_support ===== */
.member-support{
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 12px;
}
.member-support .inner{
background:#fff;
width:100%;
max-width:800px;
margin:0 auto;
padding: 20px;
box-sizing: border-box;
}


/* 緑の帯タイトル（下辺ゴールド） */
.support-ribbon{
  display:block;
  text-align:center;
  background:#006036;        /* MRi深緑 */
  color:#fff;
  font-weight:700;
  padding: 12px 16px;
  border-bottom: 6px solid #D0A900;  /* ゴールド */
  margin: 6px 0 40px;
  letter-spacing:.02em;
}

/* リード */
.support-subtitle{
  font-size: 20px;
  font-weight: 700;
  margin: 18px 0 6px;
  color:#111;
}
.support-desc{
  color:#555;
  font-size: .95rem;
  line-height:1.8;
  margin: 0 0 22px;
}

/* 特典カード：2列（SPは1列） */
.benefit-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 10px;
}
.benefit-card{
  background:#f6f6f6;
  border:1px solid #ececec;
  border-radius:10px;
  padding:14px 16px;
}
.benefit-tag{
  color:#D0A900;
  font-weight:700;
  font-size:.9rem;
  margin:0 0 6px;
}
.benefit-title{
  font-weight:700;
  margin:0 0 6px;
  color:#111;
  font-size:1.02rem;
}
.benefit-text{
  margin:0;
  color:#666;
  font-size:.92rem;
  line-height:1.7;
}

/* CTA */
.support-cta{
  text-align:center;
  margin-top: 32px;
}
.cta-lead{
  font-size: 32px; 
  font-weight: 700;
  margin: 4px 0 18px;
}
.cta-button{
  display:inline-block;
  background:#006036;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  border-radius:999px;
  padding: 16px 28px;
  line-height:1.4;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  margin-bottom: 40px;
}

/* SP最適化 */
@media (max-width: 768px){
  .benefit-grid{ grid-template-columns: 1fr; }
  .cta-lead{ font-size: 24px; }
  .support-ribbon{ border-bottom-width:4px; }
}

.related-sites {
  background: #f8f9f9;
  border-top: 1px solid #e2e2e2;
  text-align: center;
  padding: 60px 20px;
}

.related-sites h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-bg-base);
  margin-bottom: 15px;
}

.related-sites .lead {
  max-width: 780px;
  margin: 0 auto 25px;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

.related-sites ul {
  list-style: none;
  margin: 0 auto 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.related-sites ul li a {
  display: inline-block;
  padding: 8px 22px;
  background: #fff;
  border: 1px solid var(--color-bg-button);
  border-radius: 30px;
  color: var(--color-bg-button);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-sites ul li a:hover {
  background: var(--color-bg-button);
  color: var(--color-font-light);
}

.related-sites .note {
  font-size: 13px;
  color: #777;
}


/* ===== トップ：7つのサポート見出し ===== */
.support-heading {
  text-align: center;
  margin: 10px auto 36px;
}

.support-heading-en {
  color: #D0A900;
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 14px;
  margin-bottom: 8px;
}

.support-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  line-height: 1.45;
  margin-bottom: 12px;
}

.support-heading p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.benefit-card-pickup {
  background: #fffdf4;
  border: 1px solid #e6cf68;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .support-heading h2 {
    font-size: 26px;
  }

  .sp-only {
    display: block;
  }
}