@charset "UTF-8";
/******
		contents
					******/
/* div {
  background: url(../img/bg.png) center center/cover no-repeat;
} */

 /* オーバーレイ */
 #overlay {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0; left: 0;
	width: 100vw; height: 100vh;
	background: rgba(0,0,0,0.3);
	justify-content: center;
	align-items: center;
  }
  /* スピナー */
  .spinner {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #333;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
  }
  @keyframes spin {
	0% { transform: rotate(0deg);}
	100% { transform: rotate(360deg);}
  }




 /* 共通container */
 /* .container {
    max-width: 1280px;
    margin: 0 auto; */
    /* padding: 0 44px; */
    /* width: 100%;
    box-sizing: border-box;
} */

.flex {
    display: flex;
    gap: 30px;
    /* justify-content: space-around; */
    align-items: center;
}
  
  /* --- ナビゲーションバー（角丸・中央フロート） --- */
  .global-nav {
	position: absolute;
	top: 32px;
	left: 50%;
	transform: translateX(-50%);
	background: #222;
	border-radius: 18px;
	box-shadow: 0 6px 32px 0 rgba(0,0,0,0.10);
	padding: 0 48px;
	min-width: 620px;
	min-height: 48px;
	display: flex;
	align-items: center;
	z-index: 20;
  }
  .nav-list {
	display: flex;
	gap: 42px;
	list-style: none;
	margin: 0;
	padding: 0;
  }
  .nav-list li a {
	display: block;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: 0.04em;
	padding: 10px 0;
	transition: color 0.28s cubic-bezier(.4,0,.2,1);
  }
  .nav-list li a:hover {
	color: #A29137;
	opacity: 1;
  }
  
  /* --- メインビジュアル --- */
  .hero-section_pc {
    width: 100vw;
    height: 63vh;
    min-height: 650px;
    background: url("../img/header_bg_pc.png") center center/cover no-repeat;
    display: flex;
    align-items: flex-end;
}

.hero-container {
    width: 1240px;
    padding: 0;
    transition: all 500ms;
    margin: 0 auto;
}
  .hero-texts {
	padding-bottom: 8vh;
	text-align: left;
  }
  .main-title {
    font-size: 5.4rem;
    font-weight: 900;
    margin: 0 0 22px 0;
    color: #111;
    line-height: 1.11;
    letter-spacing: 0.02em;
    text-align: left;
    text-shadow: 0 2px 6px rgba(255,255,255,0.18);
}
.company-name {
    font-size: 1.6rem;
    font-weight: 400;
    color: #111;
    margin: 0 0 0 4px;
    letter-spacing: 0.01em;
    text-align: left;
}
  
  /* --- 告知バー --- */
  .notice-bar {
	width: 100vw;
	background: #a69236;
	color: #fff;
	font-size: 1.06rem;
	margin-top: 0;
	position: relative;
	z-index: 30;
  }
  .notice-bar-inner {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 24px 0;
}
  .notice-text {
	letter-spacing: 0.03em;
	font-weight: 500;
  }
  .notice-btn {
	display: inline-block;
	background: #00943B;
	color: #fff;
	padding: 8px 28px;
	border-radius: 7px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1rem;
	margin-left: 24px;
	transition: background 0.18s, color 0.18s;
  }
  .notice-btn:hover {
	background: #fff;
	color: #222;
  }
  






  .about-section {
	width: 100vw;
	min-height: 720px;
	background: #fff;
	position: relative;
	overflow: hidden;
  }
  
  .about-container {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 64px 0 56px 0;
	z-index: 2;
	position: relative;
  }
  
  .about-text {
	width: 58%;
	min-width: 440px;
	padding-right: 4vw;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: left;
	/* 左寄せ */
  }
  
  /* ----- 見出し部分 ----- */
  .about-label {
    font-size: 1.125rem;
    color: #231815;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: left;
    margin-bottom: 7px;
}
  
  .about-head {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin-bottom: 0;       /* ラインとABOUTの間隔はh2で管理 */
  }
  
  .about-head-lines {
	display: flex;
	flex-direction: row;
	gap: 14px;              /* ライン同士の横間隔 */
  }
  
  .about-head-line-gold {
	width: 48px;
	height: 14px;
	background: #a69236;
	border-radius: 4px;
	display: block;
  }
  .about-head-line-black {
	width: 48px;
	height: 14px;
	background: #231815;
	border-radius: 4px;
	display: block;
  }
  
  .about-title {
	font-size: 4.375rem;   /* 54px */
	font-weight: 900;
	color: #231815;
	letter-spacing: 0.02em;
	margin: 10px 0 34px 0; /* 上はラインと重ならず、下はキャッチと余白広め */
	line-height: 1.05;
	text-align: left;
	padding: 0;
  }
  
  /* ----- キャッチコピー ----- */
  .about-catch p {
	font-size: 1.625rem;   /* 26px */
	font-weight: 700;
	color: #231815;
	margin: 0 0 32px 0;
	line-height: 1.75;
  }
  
  /* ----- 本文 ----- */
  .about-desc p {
	font-size: 1.125rem;   /* 18px */
	font-weight: 400;
	color: #231815;
	line-height: 2;
	margin: 0 0 14px 0;
  }
  .about-desc p b {
	font-weight: 900;
	color: #231815;
  }
  
  /* ----- 右カラム画像（はみ出し） ----- */
  .about-image_pc {
	position: absolute;
	top: 0;
	right: 0;
	width: 44vw;
	min-width: 640px;
	height: 100%;
	z-index: 1;
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
  }
  .about-image_pc img {
	width: 100%;
	height: 100vh;
	min-height: 720px;
	object-fit: cover;
	object-position: right center;
	display: block;
	border-radius: 0;
	box-shadow: none;
  }






  .service-section {
	width: 100vw;
	background: #F6F6F6;
	position: relative;
	padding: 0;
  }
  .service-container {
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
	padding: 70px 0 80px 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
  }
  
  /* --- 見出し部分（ABOUTと同一ルール） --- */
  .service-label {
	font-size: 1.125rem;    /* 18px */
	color: #231815;
	font-weight: 700;
	letter-spacing: 0.01em;
	margin-bottom: 7px;
	text-align: left;
	width: 100%;
	max-width: 1280px;
  }
  .service-head {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin-bottom: 0;
	width: 100%;
	max-width: 1280px;
  }
  .service-head-lines {
	display: flex;
	flex-direction: row;
	gap: 14px;
  }
  .service-head-line-gold {
	width: 48px;
	height: 14px;
	background: #a69236;
	border-radius: 4px;
	display: block;
  }
  .service-head-line-black {
	width: 48px;
	height: 14px;
	background: #231815;
	border-radius: 4px;
	display: block;
  }
  .service-title {
	font-size: 4.375rem;   /* 70px */
	font-weight: 900;
	color: #231815;
	letter-spacing: 0.02em;
	margin: 10px 0 50px 0;
	line-height: 1.05;
	text-align: left;
	width: 100%;
	max-width: 1280px;
	padding: 0;
  }
  
  /* --- 画像4枚並び --- */
  .service-image-row {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 2vw;
	margin-bottom: 64px;
  }
  .service-img {
	width: 220px;
	height: 320px;
	border-radius: 18px;
	object-fit: cover;
	background: #eee;
	display: block;
  }
  
  /* --- 下段：モック＋テキスト2カラム --- */
  .service-bottom {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 54px;
  }
  .service-mockup {
	flex: 0 0 340px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .service-mockup img {
	width: 340px;
	max-width: 100%;
	height: auto;
	display: block;
  }
  .service-desc {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
  }
  .service-desc h3 {
	font-size: 1.375rem;  /* 22px程度 */
	font-weight: 700;
	color: #231815;
	line-height: 1.7;
	margin: 0 0 24px 0;
  }
  .service-desc p {
	font-size: 1.05rem;
	color: #231815;
	line-height: 2;
	margin: 0;
  }




  .service-merit-section {
	width: 100vw;
	background: #F6F6F6;
	padding: 0 0 90px 0;
  }
  
  .service-point-row {
	width: 100vw;
	height: 40vh;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
  }
  .service-point-box {
	position: relative;
	flex: 1;
	min-width: 0;
	/* height: 340px; ← これを外す（またはauto/fit-content）*/
	overflow: hidden;
	display: flex;
	align-items: flex-start;
  }
  .service-point-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	z-index: 1;
	filter: brightness(0.78);
  }
  .service-point-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 38px 44px 32px 44px;
	text-align: left;
	color: white;
	width: 100%;
	max-width: 520px;
	position: relative;
	z-index: 2;
  }
  .service-point-label {
	font-size: 1.05rem;
	font-weight: bold;
	margin-bottom: 10px;
	opacity: 0.93;
	letter-spacing: 0.02em;
  }
  .service-point-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 18px;
	line-height: 1.6;
	text-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }
  .service-point-text {
	font-size: 1rem;
	line-height: 2;
	opacity: 0.88;
  }
  
  /* ---- MERIT ---- */
  .service-merit-container {
	width: 100%;
	max-width: 1024px;
	margin: -60px auto 0 auto;
	background: #fff;
	border-radius: 36px;
	box-shadow: 0 2px 24px 0 rgba(33,38,46,0.06);
	padding: 44px 36px 46px 36px;
	position: relative;
	z-index: 3;
  }
  .service-merit-head {
	font-size: 1.6rem;
	color: #a69236;
	font-weight: 700;
	text-align: center;
	margin-bottom: 38px;
	letter-spacing: 0.01em;
  }
  .service-merit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px 22px;
}
  
  .service-merit-card {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background: #23272c;
	min-height: 290px;
	display: flex;
	align-items: flex-start;
  }
  
  /* 背景画像 */
  .service-merit-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.76);
	position: absolute;
	inset: 0;
	z-index: 1;
  }
  
  /* ロゴ（Bee）左上絶対配置 */
  .service-merit-logo {
	position: absolute;
	top: 18px;
	left: 18px;
	width: 46px;
	height: 46px;
	z-index: 2;
	opacity: 0.8;
	pointer-events: none;
  }
  
  /* テキストエリア */
  .service-merit-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 28px 22px 26px 22px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 6px;
}
  
  /* タイトル・テキスト */
  .service-merit-label {
	font-size: 1.16rem;
	font-weight: 900;
	margin-bottom: 0.35em;
	line-height: 1.1;
	letter-spacing: 0.01em;
  }
  .service-merit-title {
	font-size: 1.7rem;       /* カンプ準拠約30px */
	font-weight: 700;
	margin-bottom: 6px;
	line-height: 1.18;
	letter-spacing: 0.02em;
  }
  .service-merit-text {
	font-size: 0.95rem;      /* 17px相当 */
	font-weight: 400;
	line-height: 1.8;
	margin-bottom: 0;
	opacity: 0.98;
  }
  



  /* セクション全体 */
.subsidy-section {
	position: relative;
	width: 100vw;
	min-height: 480px;
	background: url('../img/subsidy_bg_pc.png') center center/cover no-repeat;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	overflow: hidden;
  }
  
  .subsidy-overlay {
	position: absolute;
	inset: 0;
	background: rgba(35, 24, 21, 0.48);
	z-index: 1;
  }
  
  /* subsidy用の内側ラッパー */
  .subsidy-inner {
    position: relative;
    z-index: 2;
    max-width: 660px;
    width: 100%;
    /* margin-left: 56px; */
    margin-top: 56px;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
  
  .subsidy-label {
	font-size: 1.125rem;
	color: #fff;
	font-weight: 700;
	margin-bottom: 7px;
	letter-spacing: 0.03em;
  }
  
  .subsidy-head {
	/* display: flex; */
	flex-direction: row;
	align-items: flex-start;
	margin-bottom: 8px;
  }
  
  .subsidy-head-lines {
	display: flex;
	flex-direction: row;
	gap: 16px;
	margin-right: 16px;
	margin-top: 0.8em;
  }
  
  .subsidy-head-line-gold {
	display: inline-block;
	width: 64px;
	height: 20px;
	background: #a69236;
	border-radius: 4px;
  }
  .subsidy-head-line-white {
	display: inline-block;
	width: 64px;
	height: 20px;
	background: #fff;
	border-radius: 4px;
  }
  
  .subsidy-title {
	font-size: 5rem;
	font-weight: 900;
	color: #fff;
	letter-spacing: 0.03em;
	margin: 0;
	line-height: 1;
  }
  
  .subsidy-catch {
    font-size: 1.625rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    margin: 0px 0 16px 0;
    letter-spacing: 0.01em;
    text-align: left;
}
  
.subsidy-desc {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 40px;
    margin-top: 20px;
    text-align: left;
}
  
  .subsidy-btn {
	display: inline-flex;
	align-items: center;
	background: #00943B;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: 12px;
	padding: 18px 32px 18px 24px;
	text-decoration: none;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
	transition: background 0.15s, color 0.15s;
	margin-top: 8px;
  }
  
  .subsidy-btn:hover {
	background: #f6f6f6;
  }
  
  .subsidy-btn-arrow {
	display: inline-block;
	margin-left: 14px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 16px solid #fff;
  }


  .subsidy-label {
    font-size: 1.125rem;
    color: white;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 7px;
    text-align: left;
    width: 100%;
    max-width: 1280px;
}

.service-head-line-white {
    width: 48px;
    height: 14px;
    background: white;
    border-radius: 4px;
    display: block;
}

.subsidy-title {
	font-size: 4.375rem;
	font-weight: 900;
	color: white;
	letter-spacing: 0.02em;
	margin: 10px 0 50px 0;
	line-height: 1.05;
	text-align: left;
	width: 100%;
	max-width: 1280px;
	padding: 0;
}







.user-voice-section {
	padding: 50px 0;
}

.user-voice-largewrap {
	display: flex;
	gap: 40px;
	align-items: stretch;   /* これが重要！ */
	padding-top: 24px;
	height: 450px;
  }
  
  .user-voice-wrap {
	background-color: #F6F6F6;
	border-radius: 15px;
	padding: 34px 30px 0 30px;
	width: 50%;
	display: flex;
	flex-direction: column;
	height: 100%;           /* 親の高さに揃える */
	position: relative;
  }
  
  .user-voice-inwrap {
	display: flex;
	gap: 18px;
  }
  
  .user-voice-img {
    /* width: 60px; */
    /* min-width: 60px; */
    /* height: 60px; */
    width: 18%;
    margin-right: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
  /* .user-voice-img img {
	width: 60px;
	height: 60px;
	object-fit: contain;
  } */
  
  .user-voice-txtwrap {
	flex: 1;
	text-align: left;
  }
  
  .user-voice-number {
	font-size: 1.2rem;
	font-weight: 800;
  }
  
  .user-voice-midashi {
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.6;
  }
  
  .gold {
	color: #a69236;
  }
  
  .user-voice-text {
    text-align: left;
    font-size: 0.9rem;
    padding: 20px 0 60px 0;
    flex: 1 1 auto;
}
  
.user-voice-profile {
    background-color: #111;
    border-radius: 15px 15px 0 0;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 20px 0;
    margin: 0 50px;
    color: white;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.user-voice-midashi_voice4 {
	font-size: 1.4rem;
	font-weight: 800;
	line-height: 1.6;
}







.company-info-section {
	background: #fff;
	padding: 60px 0 70px 0;
  }
  .company-info-section .container {
	max-width: 1280px;
	width: 92%;
	margin: 0 auto;
  }
  
  /* 見出しまわり（ABOUT等と同じ） */
  .company-info-label {
	font-size: 1.07rem;
	font-weight: 700;
	color: #231815;
	margin-bottom: 7px;
	letter-spacing: 0.01em;
  }
  .company-info-head {
	/* display: flex; */
	flex-direction: row;
	align-items: flex-end;
	margin-bottom: 0;
	gap: 18px;
  }
  .company-info-head-lines {
	display: flex;
	flex-direction: row;
	gap: 12px;
	margin-bottom: 0.25em;
  }
  .company-info-head-line-gold {
	width: 48px;
	height: 14px;
	background: #a69236;
	border-radius: 4px;
	display: block;
  }
  .company-info-head-line-black {
	width: 48px;
	height: 14px;
	background: #231815;
	border-radius: 4px;
	display: block;
  }
  .company-info-title {
	font-size: 2.7rem;
	font-weight: 900;
	color: #231815;
	margin: 0 0 26px 0;
	letter-spacing: 0.01em;
	line-height: 1.04;
  }
  
  /* テーブル部分 */
  .company-info-table {
	width: 100%;
	margin-top: 18px;
	border-collapse: collapse;
	background: #fff;
  }
  .company-info-row {
	display: flex;
	border-bottom: 1px solid #d6d6d6;
	min-height: 88px;
	align-items: center;
	padding: 0 0;
  }
  .company-info-row:last-child {
	/* border-bottom: none; */
  }
  
  .company-info-th {
	width: 20%;
	min-width: 150px;
	font-weight: 700;
	color: #231815;
	font-size: 1.08rem;
	text-align: left;
	padding: 44px 0 44px 22px;
	vertical-align: middle;
  }
  .company-info-td {
	width: 80%;
	text-align: center;
	color: #231815;
	font-size: 1.09rem;
	font-weight: 400;
	padding: 44px 0 44px 0;
	vertical-align: middle;
	word-break: break-word;
	line-height: 1.8;
  }









  .contact-section {
	/* background: #F6F6F6; */
	padding: 0;
  }
  .contact-label {
    font-size: 1.125rem;
    color: #231815;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 2px;
    text-align: left;
}
  .contact-head {
	display: flex;
	align-items: flex-end;
  }
  .contact-head-lines {
	display: flex;
	gap: 10px;
	margin-bottom: 2px;
  }
  .contact-head-line-gold {
	width: 38px; height: 9px; background: #a69236; border-radius: 4px; display: block;
  }
  .contact-head-line-black {
	width: 38px; height: 9px; background: #231815; border-radius: 4px; display: block;
  }
  .contact-title {
	font-size: 4.375rem;
	font-weight: 900;
	color: #231815;
	margin: 6px 0 24px 0;
	letter-spacing: 0.03em;
	text-align: left;
  }
  .contact-lead {
	text-align: left;
	font-size: 1rem;
	color: #231815;
	margin-bottom: 38px;
	margin-left: 1px;
  }
  .contact-form {
    /* background: #fff; */
    /* border-radius: 16px 16px 0 0; */
    padding: 84px 40px 82px 40px;
    /* box-shadow: 0 2px 16px 0 rgba(33,38,46,0.07); */
}
  
  /* テーブル風 */
  .contact-table {
	width: 100%;
	display: table;
	border-collapse: collapse;
  }
  .contact-row {
	display: table-row;
  }
  .contact-cell-label, .contact-cell-input {
	display: table-cell;
	vertical-align: top;
	padding-bottom: 63px;
  }
  .contact-cell-label {
	font-size: 1rem;
	font-weight: 700;
	color: #231815;
	min-width: 132px;
	padding-right: 76px;
	line-height: 2.5;
	text-align: left;
	white-space: nowrap;
  }
  .contact-cell-input {
	width: 100%;
	position: relative;
  }
  .contact-required, .contact-optional {
	position: absolute;
	top: -18px;
	left: 0;
	font-size: 0.78rem;
	font-weight: 600;
	z-index: 2;
  }
  .contact-required span {
    background: #231815;
    color: #fff;
    border-radius: 4px 4px 0 0;
    padding: 4px 15px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.contact-optional span {
    background: #bbb;
    color: #fff;
    border-radius: 4px 4px 0 0;
    padding: 4px 15px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}
  .contact-cell-input input[type="text"],
  .contact-cell-input input[type="email"],
  .contact-cell-input input[type="tel"] {
	width: 100%;
	font-size: 1rem;
	padding: 12px 14px;
	border: none;
	border-radius: 0;
	background: white;
	box-shadow: none;
	margin-top: 7px;
  }
  .contact-cell-input textarea {
    width: 100%;
    font-size: 1rem;
    min-height: 70px;
    height: 200px;
    padding: 12px 14px;
    border: none;
    border-radius: 0 0 4px 4px;
    background: white;
    resize: vertical;
    margin-top: 7px;
}
  .contact-cell-input input:focus, .contact-cell-input textarea:focus {
	outline: 2px solid #a69236;
  }
  
  /* プライバシー */
  .contact-privacy {
    font-size: 0.97rem;
    color: #231815;
    margin: -38px 0 22px 0;
    text-align: center;
    position: relative;
    z-index: 999;
}

.privacy-policy {
    height: 250px;
    padding: 2em;
    border: 1px solid #ADADAD;
    overflow-y: scroll;
    margin-bottom: 50px;
    background-color: white;
    text-align: left;
}
  
  /* ボタン部 */
  .contact-actions {
    display: flex;
    gap: 22px;
    margin-top: 18px;
    justify-content: center;
}
  .contact-submit-btn {
	background: #fff;
	color: #231815;
	border: 2px solid #231815;
	font-size: 1.06rem;
	font-weight: 900;
	border-radius: 9px;
	padding: 16px 38px;
	cursor: pointer;
	min-width: 260px;
	text-align: center;
	transition: background 0.15s, color 0.15s;
	letter-spacing: 0.02em;
	margin-right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .contact-submit-btn:hover {
	background: #231815;
	color: #fff;
  }
  .contact-submit-btn .arrow {
	font-size: 1.1rem;
	margin-left: 16px;
	display: inline-block;
  }
  .contact-line-btn {
	background: #fff;
	color: #21b643;
	border: 2px solid #21b643;
	font-size: 1.06rem;
	font-weight: 900;
	border-radius: 9px;
	padding: 16px 38px;
	min-width: 340px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
  }
  .contact-line-btn:hover {
	background: #21b643;
	color: #fff;
  }
  .contact-line-btn .arrow {
	font-size: 1.1rem;
	margin-left: 16px;
	display: inline-block;
  }
  
  /* スクロールバー非表示/フォーム微調整 */
  .contact-cell-input input,
  .contact-cell-input textarea {
	box-sizing: border-box;
  }
  .contact-cell-input input:-webkit-autofill,
  .contact-cell-input textarea:-webkit-autofill {
	box-shadow: 0 0 0 1000px #f6f6f6 inset;
	-webkit-box-shadow: 0 0 0 1000px #f6f6f6 inset;
  }
  .contact-cell-input textarea {
	resize: none;
  }

  .contact-form_wrap {
	width: 100vw;
	background-color: #f6f6f6;
  }


  .fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.39,.575,.565,1.000);
	will-change: opacity, transform;
  }

  .fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
  }

  .typewriter {
	opacity: 0;
	transition: opacity 0.1s;
	/* white-space: pre-line; */
  }
  .typewriter.visible {
	opacity: 1;
  }
  .typewriter-cursor {
	display: inline;
	animation: blink-cursor 0.8s steps(1) infinite;
	font-weight: bold;
	font-size: 1em;
	color: #222;
	vertical-align: baseline;
  }
  @keyframes blink-cursor {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
  }



  .privacy-policy__box {
	padding: 15px 0;
  }

  .privacy-policy__head {
	padding-bottom: 10px;
	font-weight: bold;
  }

  .footer {
	background-color: #111;
	padding: 40px 0;
	color: white;
  }