@charset "utf-8";

body {
	margin: 0px;
}

p {
	font-size: 18px;
}

.inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 11%;
}

/*--------ヘッダー--------*/

.phone_num {
	max-width: 22%;
}

.sp_none {
	display: flex;
	justify-content: space-between;
}

.header_ul {
	margin: 0px;
	display: flex;
    align-items: center;
    margin-left: 70px;
    gap: 20px;
    font-size: 16px;
}

.header_ul li {
	display: inline;
}

.pc_none {
    display: none;
}

@media screen and (max-width: 768px) {

	.sp_none {
		display: none;
	}
	
	.pc_none {
    display: inline-block;
}
	.logo_sp img {
		max-width: 200px;
	}
	
/*　ハンバーガーボタン　*/
.hamburger {
    display : block;
    position: fixed;
    z-index : 5;
    right : 13px;
    top   : 32px;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
	background: #F78724;
  }
  
  .hamburger.active {
  	background: none;
  }
  
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 3px ;
    border-radius: 10px;
    left    : 6px;
    background : #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 20px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  
  nav.globalMenuSp {
    position: fixed;
    z-index : 3;
    top  : 0;
    left : 0;
    color: #000;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
	align-items: center;
    background: #0693e3;
	display: flex;
  }
  
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    flex-direction: column;
    /*padding-top: 250px;*/
  }
  
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
    margin-left: 0;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li:hover{
    background :#ddd;
  }
  
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration :none;
  }
	
	.denwa {
    position: fixed;
    z-index: 2;
    top: 80px;
    right: 14px;
	 display: inline-block;
}
	
	.denwa img {
		max-width: 41px;
	}
  
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateX(0%);
  }
	
}

/*--------ヘッダー終了--------*/


/*--------メインビジュアル--------*/

.first_ttl_sp p {
		display: none;
	}

.main_logo img {
	max-width: 40%;
}

.main_logo {
	text-align: center;
	margin-top: 80px;
	margin-bottom: 60px;
}

.page_ttl {
	text-align: center;
    font-size: 30px;
	color: #fff;
	text-shadow: 1px 2px 4px #5d5d5d;
}

.page_ttl_wrap {
	background: url(../img/mail/mail_header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	padding: 85px 0;
	margin-bottom: 10%;
	margin: 0 40px;
}

/*----------入力フォーム-------*/

.first_txt {
  max-width: 742px;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.tel_num {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  font-weight: bold;
  background: linear-gradient(transparent 70%, #ffff00 50%);
  padding: 0 10px 0 10px;
}

.m_under{
	margin-bottom: 40px;
	font-size: 17px;
}

.kojin {
	padding: 0 5%;
	padding-top: 20px;
    max-width: 781px;
    margin: auto;
}

/* フォーム全体のスタイル */
.wpcf7 {
background-color: #f0f0f0; /* ライトグレー */
padding: 5%;
max-width: 600px;
margin: auto;
}
/* ラベルのスタイル */
.wpcf7-form label {
display: block;
margin-bottom: 25px;
font-size: 16px;
color: #333333; /* ダークグレー */
}
/* 必須フィールドのラベルスタイル */
.wpcf7-form .required {
background-color: #ff0000; /* レッド */
color: white;
padding: 2px 5px;
border-radius: 3px;
margin-left: 10px;
font-size: 15px;
}
/* インプットのスタイル */
.wpcf7-form input {
	width: 97.3%;
    height: 35px;
    resize: vertical;
	font-size: 16px;
	margin-top: 4px;
}
/* インプットフィールドのスタイル */
.wpcf7-form textarea {
width: 95%;
padding: 10px;
border: 1px solid #cccccc; /* ライトグレー */
border-radius: 5px;
margin-bottom: 20px;
font-size: 16px;
background-color: #ffffff; /* 白 */
}
/* テキストエリアのスタイル */
.wpcf7-form textarea {
height: 150px;
resize: vertical;
}
/* 送信ボタンのスタイル */
.wpcf7-form input[type="submit"] {
background-color: #007BFF; /* ブルー */
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
border: none;
}
.wpcf7-form input[type="submit"]:hover {
background-color: #0056b3; /* 濃いブルー */
}
/* エラーメッセージと成功メッセージのスタイル */
.wpcf7-form .wpcf7-not-valid-tip {
color: red;
font-size: 14px;
}
.wpcf7-form .wpcf7-mail-sent-ok {
color: green;
font-size: 16px;
margin-bottom: 20px;
}

.ttl {
	margin-bottom: 5px;
	color: #004798;
	border-left: solid 10px #9AD020;
    padding-left: 7px;
}

.shurui input {
	width: 16%;
    height: 16px;
}

span.wpcf7-list-item {
    width: 35%
}

.day input {
	width: 19%;
	margin-right: 10px;
}

.time .wpcf7-select {
	width: 10%;
    height: 39px;
}

.reason .wpcf7-select {
	width: 97.3%;
    height: 35px;
    resize: vertical;
    font-size: 16px;
    margin-top: 4px;
}

.tdhkn .wpcf7-form-control {
	height: 35px;
}

.sonota input {
  width: -webkit-fill-available;
  height: 35px;
}

/*----------入力フォーム-------*/

/*----------フッター-------*/

.footer_flex {
	display: flex;
	justify-content: space-between;
	margin-top: 120px;
    margin-bottom: 70px;
}

footer .right {
	width: 34%;
}

.footer_ul {
	column-gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    list-style: none;
    padding: 0;
    row-gap: 12px;
}

.footer_logo {
    margin-bottom: 8px;
}

.copy {
	text-align: center;
	font-size:14px;
	margin-bottom: 5px;
}





@media screen and (max-width: 768px) {
	
	    body {
        font-family: "Zen Kaku Gothic New", serif;
    }
	
	.first_txt {
    padding: 5%;
    max-width: 600px;
    margin: auto;
}
	
	.tel_num {
	  font-size: 24px;
	  background: none;
	}
	
	.sp_yellow {
	position: relative;
   display: inline-block;
   font-weight: bold;
   background: linear-gradient(transparent 65%, #ffff00 50%);
   padding: 0 10px 0 10px;
}
	
	.time .wpcf7-select {
    width: 12%;
    height: 39px;
}
	
	.main_logo {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.main_logo img {
    max-width: 65%;
}
	
	.first_ttl_sp p {
		display: block;
		text-align: center;
		margin-top: 30px;
	}
	
	.first_ttl_sp .kasen {
		background: linear-gradient(transparent 60%, #fbff02 30%);
	}
	
	.sp_ttl_size {
	 font-size: 22px;
     font-weight: bold;
     color: #126dd5;
	}
	
	.line_bar {
	display: none;
}

.mail_bar {
	display: none;
}
	
	.first_ttl {
    display: none;
}
	
	.page_ttl {
    font-size: 20px;
}
	
	.page_ttl_wrap {
    padding: 11px 0;
}
	
	.inner {
    padding: 0 5%;
}
	
span.wpcf7-list-item {
    width: 60%;
    margin: 0;
}
	
.day input {
    width: 31%;
    margin-right: 10px;
}
	
	.tdhkn .wpcf7-form-control {
    font-size: 16px;
}
	
	.time .wpcf7-select {
    width: 9.4%;
    height: 39px;
}
	
	.single_f li {
     padding: 0px;
}
	
	.footer_flex {
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
}
	
	.article_ttl {
    margin-top: 10px;
}
	
	
	
	
	.footer_flex .left {
	font-size: 18px;
	}
	
	.footer_ul {
		display: block;
	}
	
	footer .right {
    width: 100%;
}
	
	.footer_flex .footer_logo {
		text-align: center;
		margin-bottom: 15px;
	}
	
	.footer_flex .footer_logo img {
		max-width: 73%;
	}
	
}



.site-footer {
  font-size: 14px;
  color: #000;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-top {
  display: flex;
}

.footer-top-left {
  width: 350px; /* 業務内容と同じ幅 */
}

.footer-top-left p {
	font-size: 16px;
}

.footer-top-left img {
  max-width: 100%;
  margin-bottom: 10px;
}

.footer-top-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.footer-menu a {
  display: block;
  margin-bottom: 10px;
  color: #000;
  text-decoration: none;
  font-size: 18px;
}

.menu-title {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-menu ul {
  padding-left: 1em;
}

.footer-menu ul li {
      list-style: disc;
}

hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #999;
}

.footer-bottom {
  display: flex;
}

.footer-bottom-left {
  width: 350px; /* 上段左と同じ */
}

.footer-bottom-right {
  flex: 1; /* HOME〜会社概要と同じ幅 */
}

.footer-bottom-right p {
	margin-bottom: 20px;
	    font-size: 16px;
}

.footer-bottom h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: normal;
}

.footer-bottom ul {
  padding-left: 1em;
}

.footer-bottom ul li {
 margin-bottom: 3px;
 list-style: disc;
 font-size: 16px;
}

.footer-copy {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
}


/* =========================
   footer 基本設定
========================= */
.site-footer {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

.site-footer * {
  box-sizing: border-box;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
      border-top: 1px solid;
    margin-top: 80px;
}

/* =========================
   上段
========================= */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-top-left {
  width: 280px;
}

.footer-top-left img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.footer-top-right {
  display: flex;
  gap: 60px;
}

.footer-menu a {
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.footer-menu li {
  margin-bottom: 6px;
}

.menu-title {
  margin-bottom: 10px;
}

.other a {
	font-size: 18px;
}

.other p {
	margin-bottom:10px;
}
/* =========================
   区切り線
========================= */
.site-footer hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #999;
}

/* =========================
   下段
========================= */
.footer-bottom {
  display: flex;
  gap: 40px;
}

.footer-bottom-left {
  width: 280px;
  padding-left: 20px;
  padding-top: 55px;
}

.footer-bottom-right {
  flex: 1;
  border-top: 1px solid #000;
    padding-top: 50px;
}

.footer-bottom h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom li {
  margin-bottom: 6px;
}

.footer-bottom span {
}

.footer-bottom ul .disc_none {
		list-style: none;
	}

/* =========================
   コピーライト
========================= */
.footer-copy {
  text-align: center;
  font-size: 15px;
  padding: 20px 0;
}

/* =========================
   レスポンシブ（SP）
========================= */
@media screen and (max-width: 768px) {

  .footer-top {
    flex-direction: column;
  }

	.footer-bottom-right {
    padding-left: 0px;
}
	
  .footer-top-left,
  .footer-bottom-left {
    width: 100%;
	padding-left: 20px;
  }

.footer-top-left {
	padding-left: 0;
	}
	
  .footer-top-right {
    flex-direction: column;
    gap: 10px;
	padding-left: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-inner {
    padding: 30px 15px;
  }

  .site-footer,
  .site-footer a,
  .site-footer p,
  .site-footer li,
  .site-footer h3 {
    font-size: 15px;
  }
}



/* =========================
   レスポンシブ（SP）
========================= */
@media screen and (max-width: 768px) {

  .footer-top {
    flex-direction: column;
  }

	.footer-bottom-right {
    padding-left: 0px;
}
	
  .footer-top-left,
  .footer-bottom-left {
    width: 100%;
	padding-left: 20px;
  }

.footer-top-left {
	padding-left: 0;
	}
	
  .footer-top-right {
    flex-direction: column;
    gap: 10px;
	padding-left: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-inner {
    padding: 30px 15px;
  }

  .site-footer,
  .site-footer a,
  .site-footer p,
  .site-footer li,
  .site-footer h3 {
    font-size: 15px;
  }
}

.footer-top-right a {
  color: #000;
  text-decoration: underline;
  text-decoration-color: #0066cc;
  text-underline-offset: 3px;
}



/* ======================================
   lin_bnr（PC表示）中央寄せ 修正
   ====================================== */

/* sp_none の flex を lin_bnr だけ上書き */
.lin_bnr.sp_none {
  justify-content: center;
}

/* 画像を確実に中央寄せ */
.lin_bnr img {
  display: block;
  margin: 0 auto;
}


/* ======================================
   footer リンク装飾 修正
   ====================================== */

.footer-top-right a {
  color: #000;
  text-decoration: underline;
  text-decoration-color: #0066cc;
  text-underline-offset: 3px;
}


/* ======================================
   念のための保険（SP時に影響させない）
   ====================================== */

@media screen and (max-width: 768px) {
  .lin_bnr.sp_none {
    display: none;
  }
	
	.main_logo img {
        max-width: 75%;
    }
	
	.footer-top-left img {
	max-width: 75%;
	}
}



.line_bar {
  position: fixed;
  right: 0;
  top: 200px;      /* 基準位置 */
  z-index: 5;
}

.mail_bar {
  position: fixed;
  right: 0;
  top: 490px;      /* ← 上のボタン＋固定間隔 */
  z-index: 5;
}

.line_bar img,
.mail_bar img {
  width: 60px;
  display: block;
}