/*
Theme Name: RDSGN ORIGINAL									
*/
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/**********************************************
    PC版 CSS
**********************************************/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Patua+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');/*日本語明朝*/
@import url('https://fonts.googleapis.com/css2?family=Patua+One&display=swap');/*見出しに使っている英語*/
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

/**************************************************************
全体
**************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 100%;
    scroll-behavior: smooth;
}
body {
    font: 500 16px/1.75 "Noto Sans JP", sans-serif;
    color: #252525;
    text-align: left;
    letter-spacing: 0.05em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-size: 13px;

    margin: 0px;
    text-align: center;
    line-height: 180%;
}
.bar{
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.pc{
	display:none;
}

/**************************************************************
リンク
**************************************************************/
a:link {
    color: #000;
    text-decoration: none;
	transition: 1.0s ;
}
a:visited {
    color: #000;
    text-decoration: none;
}
a:hover {
    color: #000;
    text-decoration: none;
}
a:active {
    color: #000;
    text-decoration: none;
}


/**************************************************************
ヘッダー
**************************************************************/
#title {
    margin: 0px;
    padding: 0px;
    position: relative;
    text-align: left;
}
#title-inner {
    margin: 0 auto;
}
#title-inner .logo {
    width:60%;
	margin:0 auto;
	margin-top:10px!important;

}
#title-inner .logo img {
    width: 100%;
    height: auto;
}

#title-inner .set{
    display: flex;
    font-size: 15px;
    text-align: center;
    line-height: 150%;
    align-items: center;
	justify-content:space-between;
}

#title-inner .set a{
    margin-left: 5px;
}


#title-inner .set .pf{
    width: 50%;
}
#title-inner .set .pf a{
    display: block;
    padding: 10px;
    background-color: #0ca00c;
    color: #fff;
    display: :flex;
    align-items: center;
}

#title-inner .set .pf a:hover{
    background-color: #1ec01e;
}

#title-inner .set .mmm a{
    display: block;
    padding: 10px;
    background-color: #006899!important;
    color: #fff;
    display: :flex;
    align-items: center;
}

#title-inner .set .mmm a:hover{
    background-color: #097eb5;
}

#title-inner .set .pf img{
    width: 15px;
    height: auto;
    margin-right: 10px;
}
#title-inner .tel{
	display:none;
    font-weight: 600;
    font-size: 26px;
    color: #4e4e4e!important;
}


/* ================================
   Hamburger (CSS only)
   HTMLそのままでOK
   ================================ */

/* 位置・重なり */
.hamburger-menu{
  position: relative;
  z-index: 1000;
}

/* チェックボックスは非表示 */
#menu-btn-check{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* ボタン（右上固定） */
.menu-btn{
  position: fixed;
  top: 12px; right: 14px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  cursor: pointer;
  border-radius: 12px;
  background: rgba(0,0,0,0);           /* 透過 */
  -webkit-tap-highlight-color: transparent;
  z-index: 1002;
  color: #006e9d;                          /* ← ヘッダーが濃い青想定：線は白 */
}

/* 3本線（currentColorで色を継承） */
.menu-btn span{
  position: relative;
  width: 26px; height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: background .2s ease;
}
.menu-btn span::before,
.menu-btn span::after{
  content:"";
  position: absolute; left: 0; right: 0;
  height: 2px; border-radius: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
}
.menu-btn span::before{ transform: translateY(-8px); }
.menu-btn span::after { transform: translateY( 8px); }

/* 開いたとき：×に変形 */
#menu-btn-check:checked + .menu-btn span{
  background: transparent;
}
#menu-btn-check:checked + .menu-btn span::before{
  transform: translateY(0) rotate(45deg);
}
#menu-btn-check:checked + .menu-btn span::after{
  transform: translateY(0) rotate(-45deg);
}

/* メニュー本体（右スライド） */
.menu-content{
  position: fixed;
  inset: 0 0 0 auto;                   /* 右側配置 */
  width: min(82vw, 360px);
  right: -100%;
  background: #ffffff;
  color: #23344e;
  box-shadow: -20px 0 40px rgba(0,0,0,.18);
  transition: right .32s cubic-bezier(.2,.7,.2,1);
  z-index: 1001;
  display: block;
  overflow: hidden;
}

/* オーバーレイ（見た目のみ） */
.menu-content::before{
  content:"";
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;                /* クリックで閉じる仕様にするにはHTMLにlabelを追加する必要あり */
  transition: opacity .3s ease;
  z-index: -1;                          /* パネルの下に敷く */
}

/* 開いたとき */
#menu-btn-check:checked ~ .menu-content{
  right: 0;
}
#menu-btn-check:checked ~ .menu-content::before{
  opacity: 1;
}

/* 中身のレイアウト */
.globalnavi{
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(0deg, rgba(13,71,161,.06), rgba(13,71,161,.06)) top/100% 84px no-repeat,
    #fff;
}
.globalnavi-inner{
  padding: 18px 18px 28px;
  height: calc(100dvh - 0px);
  overflow: auto;
}

/* 見出し（SP専用想定） */
.sp.bar{
  margin: 14px 2px 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #0d47a1;
}

/* メニューリンク */
.globalnavi-inner a{
  display: block;
  padding: 14px 10px;
  margin: 6px 0;
  border-radius: 12px;
  font-weight: 700;
  color: #23344e;
  background: #f5f8ff;
  border: 1px solid #e1e9fb;
  transition: transform .12s ease, box-shadow .18s ease, background-color .2s ease;
}
.globalnavi-inner a:hover{
  transform: translateX(3px);
  box-shadow: 0 6px 18px rgba(13,71,161,.12);
  background: #eef4ff;
}

/* モバイルのみ表示（任意） */
@media (min-width: 961px){
  .hamburger-menu{ display: none; } /* PCで別ナビを使う場合 */
}

/* ダークヘッダー上でボタンを白に固定（親の色に左右されないよう） */
header, .site-header{ position: relative; }
.site-header .hamburger-menu .menu-btn{ color:#fff; }

/* 端末の安全領域考慮（iOSノッチ） */
.menu-btn{ padding-top: env(safe-area-inset-top, 0); }
.menu-content{ padding-top: env(safe-area-inset-top, 0); }

.main{
	background-color:#adbbbf;


}
.main img{
	width:100%;
	margin:0 auto;
	display:block;
}

.main h2{
	font-size:16px;
	background-color:#006899;
	color:#fff;
	margin-bottom:20px;
	padding:20px;
	line-height:130%;
}

.mes-flex{
	margin:0 auto;
	padding:40px 20px;
}
.mes-flex .pic{
}
.mes-flex .pic img{
	width:100%;
	height:auto;
	border-radius:10px;
	margin-bottom:20px;
}
.mes-flex .tx{
	text-align:left;
	font-size:14px;
	line-height:180%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.mes-flex .tx br{
	display:none;
}

/**************************************************************
CTA
**************************************************************/

.cta {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0 6px,
      rgba(255, 255, 255, 0) 6px 12px
    ),
    linear-gradient(0deg, #1e88e5 0%, #0d47a1 100%);
  padding: 30px 0;
  margin-top: 50px;

}
.cta__inner {
    position: relative;
    text-align: left;
    box-sizing: border-box;
	padding:0 20px;
}
.cta__inner h2{
  font-weight: 500;
  font-style: normal;
    font-size: 36px;
    color: #fff;
    margin-bottom: 25px;
    color: #fae800;
	padding-left:60px;
}
.cta__inner p{
	padding-left:60px;
	padding-right:20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.cta__inner .woman{
    position: absolute;
	top:-20px;
    left: -10px;
}
.cta__inner .woman img{
    width: 100px;
    height: auto;
}

.cta__flex{
    margin-top: 30px;
}


.cta__flex .f-box{
    margin: 1%;
    padding: 15px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 5px;
}

.cta__flex .f-box .time{
    font-size: 12px;
    font-weight: 500px;
    line-height: 130%;
    margin-bottom: 5px;
    text-align: center;

}
.cta__flex .f-box .tel{
    font-size: 33px;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
}

.cta__flex .f-box2{
    margin: 1%;
    padding: 15px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 5px;
}

.cta__flex .f-box2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1%;
  padding: 15px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 5px;
  color: #006899; 
}

.f-box2__icon{
    width: 15%;
}

.cta__flex .f-box2__icon img {
  width: 100%;
  height: auto;
}

.cta__flex .f-box2__text {
  flex: 1;
  margin: 0 10px;
}

.cta__flex .f-box2__lead {
  font-size: 13px;
  color: #333;
  margin: 0 0 1px;
    text-align: center;
}

.cta__flex .f-box2__main {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  color: #006899;
    font-weight: 600;
    text-align: center;
}

.cta__flex .f-box2__arrow{
	
    width: 0%;

}
.cta__flex .f-box2__arrow img{
    width: 100%;
    height: auto;
}
/**************************************************MENU****************/

.menu{
	background-color:#f6f6f6;
	padding:40px 20px;
}
.menu .menu-inner{
	margin:0 auto;

	flex-wrap:wrap;
}
.menu .menu-inner .box{
	margin:2%;
	box-sizing:border-box;
	background-color:#fff;
}
.menu .menu-inner .box img{
	width:100%;
	height:auto;
	margin-bottom:15px;
}
.menu .menu-inner .box h3{
	font-size:20px;
	margin:10px;
}
.menu .menu-inner .box p{
	padding:20px;
	font-size:13.5px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	text-align:left;
}
.menu .menu-inner .box strong{
	    font: 500 16px/1.75 "Noto Sans JP", sans-serif;
}
.menu h2{
	font-size:24px;
	padding:30px;
}
.menu .menu-inner .box ul{
	margin:10px;
}
.menu .menu-inner .box ul li{
	list-style:none;
	border-bottom:dotted 1px #ccc;
	padding:8px;
	font-size:14px;
	text-align:left;
}
.menu .menu-inner .box h4{
	font-size:15px;
	color:#006899;
}

/*********************料金***************/

.price{
	padding:40px 20px;
}

.price h2{
	font-size:24px;
}
.price p{
	font-size:14px;
	padding:15px 0;
	margin-top:10px;
}

/* ベース */
* { box-sizing: border-box; }
.service-list { 
  max-width: 900px; 
  margin: 0 auto; 
  padding: 20px 16px; 
  color:#333; 
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, "ヒラギノ角ゴ ProN", Meiryo, sans-serif;
}

/* セクション見出し（左に青ドット） */
.section-title {
  display: flex; align-items: center; gap: 8px;
  margin: 22px 0 10px;
  font-size: 18px; font-weight: 700;
}
.section-title .dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: #1976d2; flex: 0 0 auto;
}

/* ボックス（内容／料金） */
.info-box {
  margin: 0 0 26px;
  padding: 0;
  border: 1px solid #d9e4f7;
  background: #fff;
}

/* 行（dt/ddペアをグリッドで） */
.info-box .row {
  display: grid; 
  grid-template-columns: 140px 1fr; 
  gap: 0;
  border-top: 1px solid #e6eefc;
}
.info-box .row:first-child { border-top: none; }

/* 左ラベル */
.info-box dt {
  margin: 0;
  background: #1976d2;
  color: #fff;
  font-weight: 700;
  padding: 12px 14px;
  display: flex; align-items: center;
  border-right: 1px solid #e6eefc;
	font-size:14px;
}

/* 右コンテンツ */
.info-box dd {
  margin: 0;
  padding: 12px 14px;
  background: #fff;
  line-height: 1.75;
	font-size:14px;
	text-align:left;
}

/* ほんのりカード風影（任意） */
.info-box { 
  box-shadow: 0 2px 0 rgba(0,0,0,0.03);
}

/* 背景の薄いベージュ帯が必要なら（任意） */
/* .service-list { background: #faf7ef; } */


/*********************流れ***************/



.flow h2{
	font-size:24px;
	margin-bottom:15px;
}


/* base */
.flow {padding:80px 30px; background: #f7f9fc; }
.flow-title { margin: 0 0 6px; font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; color:#0d47a1; }
.flow-lead  { margin: 0 0 20px; color:#4e4e4e; line-height: 1.8; font-size:16px;margin-bottom:25px;}

/* 横フロー */
.flow-steps {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: stretch; gap: 18px;
}
.step {
  position: relative; flex: 1 1 0;
  background: #fff; border: 1px solid #e6eefc; border-radius: 16px;
  padding: 18px 16px 16px;
  box-shadow: 0 8px 20px rgba(25, 118, 210, 0.06);
  min-width: 180px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step img{
	width:100%;
	height:auto;
}


.step::before{
  content:""; position:absolute; left:0; top:0; right:0; height:4px;
  background: linear-gradient(90deg, #1976d2, #42a5f5);
  border-radius: 16px 16px 0 0;
}
.step:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(25,118,210,.12);
}
.step-num{
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  color:#0d47a1; background: #e8f1ff; border: 1px solid #cfe0fb;
  padding: 6px 10px; border-radius: 999px;
}
.step h3{ margin: 10px 0 6px; font-size: 18px; font-weight: 700; color:#23344e; }
.step p { margin: 0; color:#4e4e4e; line-height: 1.7; font-size: 13px; font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;}

/* 矢印 */
.arrow{
  flex: 0 0 34px; display: flex; align-items: center; justify-content: center;
}
.arrow svg{ filter: drop-shadow(0 1px 0 rgba(13,71,161,.08)); }


/* ===== Responsive (スマホ化) ===== */

/* タブレット〜SPで少しコンパクトに */
@media (max-width: 900px){
  .flow{ padding: 56px 20px; }
  .flow-steps{ gap: 14px; }
  .step{ padding: 16px; }

  .step p{ font-size: 13px; }
  .arrow svg{ width: 24px; height: 24px; }
}

/* スマホ：縦フロー＆矢印を下向きに */
@media (max-width: 768px){
  .flow-steps{
    flex-direction: column;          /* 横→縦に */
    gap: 12px;
  }
  .step{
    min-width: auto;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(25,118,210,.10);
  }
  .step::before{
    height: 3px;                      /* 見出しライン少し細く */
    border-radius: 14px 14px 0 0;
  }
  .arrow{
    height: 16px;                     /* 矢印の行を薄く */
    transform: rotate(90deg);         /* 右向き→下向き */
    justify-content: center;
  }
}

/* さらに小さい端末 */
@media (max-width: 480px){
  .flow{ padding: 42px 16px; }
  .flow-title{ font-size: 20px; }
  .flow-lead{ font-size: 14px; margin-bottom: 18px; }
  .step{ padding: 14px; border-radius: 12px; }
  .step h3{ font-size: 16px; margin: 8px 0 6px; }
  .step p{ font-size: 12.5px; line-height: 1.8; }
  .step-num{ padding: 5px 9px; font-size: 11px; }
  .arrow{ height: 14px; }
  .arrow svg{ width: 22px; height: 22px; }
}

/* 画像の見栄え調整（任意） */
.step img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;                 /* 角丸カードに馴染ませる */
  margin-bottom: 8px;
  object-fit: cover;
}

/*******************************利用例***********************************/

.sample{
	padding:40px 20px;
}

.sample h2{
	font-size:24px;
	padding:25px 0;
}


.sample-in{

	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
}
.sample-in .s{

	margin:1%;
	margin-bottom:20px;
	border:solid 1px #ccc;
	padding:15px;
	box-sizing:border-box;
}
.sample-in .s img{
	width:100%;
	height:auto;
}
.sample-in .s  h3{
	font-size:18px;
	margin-bottom:15px;
	margin-top:15px;
}
.sample-in .s  p{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size:13px;
}
.sample-in .s .img{
	text-align:center;
}
.sample-in .s .img img{
	width:60px;
	height:auto;
}

/************************************お問い合わせ*******/

.apply{
	padding:40px 20px;
	background-color:#006899;
	color:#fff!important;
}
.apply h2{
	color:#fff;
	font-size:24px;
	margin-bottom:70px;
}

.wpcf7-submit{
	display:none!important;
}
/* ===== Contact (dark-blue bg / white text) ===== */
.contact-frame{
  color:#fff!important;
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 20px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.02);      /* うっすら面 */
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(2px);
}

/* 行レイアウト：左ラベル / 右入力 */
.apply .c-l{
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.apply .c-l:first-child{ border-top: none; }

/* ラベル */
.apply .tt{
  font-weight: 700;
  line-height: 1.6;
  padding-top: 8px;
	margin-bottom:8px;
}
.apply .hissu{
  display: inline-block;
  margin-left: .6em;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 800;
  color:#fff;
  background: #e53935;                    /* 必須バッジ */
  border-radius: 999px;
}

/* 入力UI（CF7の生成要素に広く適用） */
.apply .contact-frame input[type="text"],
.apply .contact-frame input[type="email"],
.apply .contact-frame input[type="tel"],   /* ← 修正：.apply を1つに */
.apply .contact-frame textarea,
.apply .contact-frame select{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  /* background: rgba(255,255,255,.06); */
  color: #fff;
  line-height: 1.6;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

/* iOS/Chromeの見た目差異を抑える（任意） */
.apply .contact-frame input[type="tel"]{
  -webkit-appearance: none;
  appearance: none;
}
.apply .contact-frame textarea{ min-height: 160px; resize: vertical; }
.apply .contact-frame input::placeholder,
.apply .contact-frame textarea::placeholder{ color: rgba(255,255,255,.6); }

/* フォーカス時 */
.apply .contact-frame input:focus,
.apply .contact-frame textarea:focus,
.apply .contact-frame select:focus{
  border-color: #90caf9;
  box-shadow: 0 0 0 3px rgba(144,202,249,.25);
  background: rgba(255,255,255,.08);
}

/* iOS/Chromeの自動入力色対策 */
.apply .contact-frame input:-webkit-autofill,
.apply .contact-frame input:-webkit-autofill:focus{
  -webkit-text-fill-color:#fff;
  transition: background-color 9999s ease-in-out 0s;
}

/* ラジオ・チェック（CF7） */
.apply .contact-frame input[type="radio"],
.apply .contact-frame input[type="checkbox"]{
  accent-color: #64b5f6;                  /* 青系 */
}
.apply .mm .wpcf7-list-item{ margin-right: 12px; }
.apply .mm .wpcf7-list-item label{
  display: inline-flex; align-items: center; gap: .5em;
  padding: 6px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.04);
}

/* 送信ボタン */
.apply .contact-frame input[type="submit"]{
  appearance: none; -webkit-appearance: none;
  display: inline-block;
  padding: 14px 28px;
  font-weight: 800;
  letter-spacing: .02em;
  color:#fff;
  background: linear-gradient(90deg,#1e88e5,#0d47a1);
  border: none;
  border-radius: 999px;
  box-shadow: 0 10px 16px rgba(13,71,161,.25);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.apply .contact-frame input[type="submit"]:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(13,71,161,.35);
  filter: brightness(1.03);
}
.apply .contact-frame input[type="submit"]:active{ transform: translateY(0); }

/* 受諾文＆リンク */
.apply .ap-chui p{ color:#fff; font-size: 14px; line-height: 1.8; }
.apply .ap-chui a{ color:#bbdefb; text-decoration: underline; }
.apply .ap-chui a:hover{ color:#e3f2fd; }

/* CF7 エラーメッセージ調整（任意） */
.apply .wpcf7-not-valid-tip{ color:#ff8a80; margin-top: 6px; font-size: 12px; }
.apply .wpcf7-response-output{
  color:#fff; border: 1px solid rgba(255,255,255,.25)!important;
  background: rgba(229,57,53,.15); border-radius: 10px; padding: 10px 12px;
}

/* クリア用（既存HTMLにあるので念のため） */
.apply .clear{ clear: both; }

/* --- Contact内のホバーで黒くならないよう固定 --- */
.contact-frame,
.contact-frame .tt,
.contact-frame .mm,
.contact-frame .mm label,
.contact-frame input,
.contact-frame textarea,
.contact-frame select {
  color: #fff;
}

/* ホバー時も白を維持（グローバルa:hover等に勝つ） */
.contact-frame .tt:hover,
.contact-frame .mm:hover,
.contact-frame .mm label:hover,
.contact-frame input:hover,
.contact-frame textarea:hover,
.contact-frame select:hover,
.contact-frame input[type="submit"]:hover {
  color: #fff !important;
}

/* リンク色の固定（通常／ホバー） */
.contact-frame a,
.contact-frame a:visited { color: #bbdefb; }
.contact-frame a:hover { color: #e3f2fd !important; }

/* プレースホルダも白系で */
.contact-frame input::placeholder,
.contact-frame textarea::placeholder { color: rgba(255,255,255,.7); }

/* エラーメッセージは上書きされないよう再指定（任意） */
.contact-frame .wpcf7-not-valid-tip { color: #ff8a80 !important; }


/******************************FOOTER************/


.footer{
	background-color:#f9f9f9;
	padding:30px;
}

.footer-inner{

	margin:0 auto;
	font-weight:500;
}
