
:root {
	--imas-blue: #1d62c1;
	--imas-blue-2: #E6F0FF;     /* 薄い水色 */
	--imas-blue-3: #293D8D;     /* 濃い青  */
	--imas-accent:#76CAC4;      /* グリーン */
	--imas-gray: #f4f4f4;       /*薄いグレー*/
	--imas-text: #333333;      
	--radius-xl: 20px;
	--radius-lg: 16px;
	--radius-md: 10px;
	--shadow-sm: 0 8px 24px rgba(16, 42, 84, 0.08);
	--shadow-md: 0 16px 40px rgba(16, 42, 84, 0.12);
	--header-h: 62px; /* 初期値（概ねの高さ） */
}



body {
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0;
	padding-top: var(--header-h);
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

header {
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999; /* 他の要素より前面に出す */
	
}
.sp-only {
	display: none;
}
.header_inner {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between; 
	align-items: center;
}

.top-bar {
	background-color: #fff;
	padding: 0 20px;
	border-bottom: solid 6px #BEC8D6;
}

.top-bar-inner {
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	width: 300px;
}

.lang-toggle button {
	background: none;
	border: none;
	font-size: 14px;
	cursor: pointer;
	padding: 10px;
}

.language-menu {
	position: fixed;
	top: var(--header-h);   /* ヘッダー直下から表示 */
	left: 0;
	right: 0;
	box-sizing: border-box;
	width: auto;
	background-color: #f6f3f0;
	border-top: 1px solid #ccc;
	display: none;
	padding: 30px 20px;
	z-index: 999;
}

.language-menu.active {
	display: block;
}

.menu-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
	margin-bottom: 20px;
}

.menu-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	text-align: left;
}

.menu-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
}

.menu-columns li {
  margin: 8px 0;
}

.menu-columns a {
  text-decoration: none;
  color: #333;
}

.menu-columns a:hover {
  text-decoration: underline;
}


/* メインビジュアル */
.hero {
  width: 100%;
}

.hero_inner {
  display: flex;       
  height: 95vh;        
}

/* テキストエリア */
.text-area {
	flex: 1;
	display: flex;
	align-items: center;   
	justify-content: center;
	background: linear-gradient(
    to bottom,
		rgba(29, 93, 193, 1),
		rgba(41, 61, 141, 1)
	);
	color: #fff;
	padding: clamp(24px, 4vw, 64px);
}

.text-lock {
  max-width: 720px;     
  width: 100%;
}
.h1_en {
	margin-top: 12px; 
	font-size: 28px; 	

}
.h1_ja { 
	font-size: 3.2rem;
}
.text-lock p {
	text-align: right;
	font-size: 28px;
}
/* 画像エリア */
.img-erea {
  flex: 1;               
  background-image: url("../images/hero_img_03.png"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.cta {
	display: block;
	width: 140px;
	margin: 0 auto;
	padding: 14px 24px;
	background: rgba(255,255,255,.8);
	color: var(--imas-blue);
	text-decoration: none;
	font-weight: 700;
	text-align: center;
}
.cta:hover {
	background: #fff;
}

/* ベストソリューション*/

.imas-sol{
	position:relative;
	isolation:isolate;
	overflow:hidden;
	text-align: center;
	background-color: #F9F9F9;
}
.h2__title {
	font-size:38px; 
	color: #000;
	/*color: #022F5D; */
	display: inline-block;
	position: relative;
	margin-bottom: 3rem;
	margin-top: -40px; 
	z-index: 1;	
	letter-spacing:.01em;
	text-align: center;	
	line-height:1.22;
}
.h2__title.white {
	color: #fff;
}

.h2__title::after {
	content: "···";      
	display: block;
	text-align: center;
	font-size: 2rem;           
	letter-spacing: 2px;         
	color: var(--imas-accent);              
}

/* Steps */
.imas-steps{
	max-width: 600px;
	margin: 0 auto 3rem;
	display: flex;
	flex-direction: column;
	gap: 28px;
	position: relative;
	box-sizing: border-box;
}
.step-item {
	display: grid;
	grid-template-columns: 95px 1fr;
	align-items: stretch;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.step__number {
  background: var(--imas-blue);
  color: #fff;
  display: flex;
  flex-direction: column;   
  justify-content: center;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-height: 95px;
}

.step__label {
  font-size: clamp(14px, 2vw, 18px);
  text-transform: uppercase;
  line-height: 1.2;
}

.step__digit {
  font-size: clamp(32px, 5vw, 38px); 
  font-weight: 800;
  line-height: 1.1;
}

.step__body {
  color: #333;
  display: flex;
  align-items: center;
  padding: 28px 32px;
  font-size: clamp(14px, 2.2vw, 22px);
  line-height: 1.6;
  font-weight: 700;            
}
/* ステップ間の下向き矢印 */
.step-arrow {
  width: 20px;
  height: 20px;
  border-right: 4px solid var(--imas-blue);
  border-bottom: 4px solid var(--imas-blue);
  transform: rotate(45deg);
  margin: -8px auto -8px auto; 
}

/* Message */
.imas-value {
	display: flex;
	align-items: center;
	background-color: #fff;
	position: relative; 
	margin: 2rem auto 4rem;
	width: 80%;
	border: solid 1px #666;
	border-radius: 1000px;
}
.value-icon {
	position: absolute;
	top: -138px;              
	right: 0;
	transform: translateX(-50%) rotate(7deg);
	width: 200px;
	z-index: 999;
}

.value-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.imas-message{
	margin: 0 auto;
	padding: 22px;
	text-align: left;
}
.imas-message .line1 {
	font-size: 26px;         
	font-weight: 700;        
	margin-bottom: 8px;  
	color: #333;
}

.imas-message .line2 {
	font-size: 20px;         
	font-weight: 400;       
	line-height: 1.8;
	color: #333;            
}
.imas-message span{
	color:var(--imas-blue); 
	font-weight:900;
	padding:0 2px; 
	font-size: 30px;
}

/* About */
.about__section {
	background-color: var(--imas-blue-2);
}
.about-box {
	background-color: #fff;
	padding: 2rem;
	width: 800px;
	margin: auto;
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.about{
	margin:0 auto;
	width: 90%;
}
.about__card{
	position:relative; 
	text-align: center;
}

.about__title{
	margin:0; 
	font-size:46px; 
	font-weight:900; 
	color:var(--imas-blue); 
	letter-spacing:.02em;
}
.about__desc{ 
	margin:0; 
	color:var(--imas-text); 
	line-height:1.9; 
}

/* Stats – ピル型チップ＋アイコン風ドット */
.about__stats {
	padding-left: 0;
}
.stats-wrap {
	margin: 4rem 2rem 3rem;
	display: flex;          
	align-items: center; 
	gap: 50px;              
}

.daibuilding {
  width: 200px;   /* 適宜調整 */
  height: auto;
  border-radius: 8px;
}

.stats-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;  /* 縦並び */
	gap: 14px;
	align-items: flex-start;
}
.stats-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stats-list .icon img {
  width: 32px;
  height: 32px;
}
.stats-list .icon {
	display: flex;
	width: 50px;
	height: 50px;
	background-color: var(--imas-blue);
	border-radius: 100px;
	justify-content: center;
	align-items: center;
	margin: 0 auto 10px;
	padding: 10px;
}

.stats-list p {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
}
/* Closing message */
.imas-closing {
  text-align: center;
  max-width: 760px;          
  margin: 0 auto;        
  color: #1f2937;             
  position: relative;
}

/* 中央に短いライン（主張しすぎない） */
.imas-closing::before {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--imas-blue, #2263cf),
    transparent
  );
  opacity: 0.35;              
}
.imas-closing p { 
  margin: 0;
  line-height: 1.8;
  text-wrap: balance;       
}
.imas-closing__lead {
  font-size: clamp(20px, 2.1vw, 24px); 
  font-weight: 600;                     
  letter-spacing: 0.02em;
  color: var(--imas-blue);     
}

.imas-closing__text {
  font-size: clamp(16px, 1.6vw, 20px);  
  color: #374151;                        
  letter-spacing: 0.01em;
}

.section_inner {
	width: 1120px;
	margin: 0 auto;
	padding: 40px 0;
}


.section-info {
  text-align: center;
}

.section_info_inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 0 50px;
}


.info_card_list {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.info_card_list li {
	background-color: var(--imas-blue);
	color: white;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	width: 260px;
	padding: 24px 20px 28px;
	text-align: left;
	position: relative;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}


.info_card_list h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 30px 0 15px;
	position: relative;
	display: inline-block;
}
.info_card_list h3::after {
  content: "";
  display: block;
  width: 50px;     
  height: 2px;   
  background-color: #fff; 
  margin-top: 15px;  
}

.info_card_list p {
  font-size: 14px;
  line-height: 1.6;
}




/* メリットまでの動線 */

.lead_text_to_merit {
	position: relative;
	background-image:  url("../images/merit_img_03.jpg");
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center; 
	align-items: center;   
	text-align: center;     
	color: #fff;
	padding: 3rem 0;
	z-index: 0; /* 後述の::beforeより背面に */
	overflow: hidden; /* はみ出し防止 */
	height: 30vh;
}

.lead_text_to_merit::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 1;
	/*background: linear-gradient(
    to bottom,
    rgba(2, 47, 93, 0.8),
    rgba(70, 121, 187, 0.8)
	);*/ 
}
.lead_text_to_merit p {
	position: relative;
	z-index: 2;
	font-size: 42px;
	font-weight: 600;
	text-align: center;

}

/*メリット*/
.eng-sub-ttl {
	position: relative;
	color: rgba(0, 0, 0, 0.05); /* 薄いグレーで透過 */
	font-size: 70px;        /* 大きめに */
	font-style: normal;
	z-index: 0;	
	text-align: center;
	font-weight: bold;
}



.points-section {
	background-color: #F7F6F5;
	text-align: center;

}
.point-cards {
	display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
	margin: 3rem 0;	
}

.card-content h4 {
	font-size: 24px;
	min-height: 3.2em; 
	margin-bottom: 1em;
	text-align: center;
}

.point-card {
	max-width: 300px;
	background-color: #fff;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.card-img_01 {
	background-image: url("../images/merit_img_01.jpg");
}
.card-img_02 {
	background-image: url("../images/merit_img_04.jpg");
}
.card-img_03 {
	background-image: url("../images/merit_img_05.jpg");
}
.card-img_01,.card-img_02,.card-img_03 {
	background-size: cover;
	display: flex;
	align-items: center;   
	justify-content: center; 
	height: 180px;        
	text-align: center;
	overflow: hidden;
}

.card-content {
	padding: 15px;
	height: 160px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.card-content p {
	flex: 1;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 0;
	text-align: justify;
}


/*サポート内容*/
.support-section {
	padding: 120px 0;
	/*background-color: #022F5D; */ 
	background: linear-gradient(
    to bottom,
		rgba(29, 93, 193, 1),
		rgba(41, 61, 141, 1)
	);
}
.section_support_inner {
	width: 60%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.support_text {
	width: 35%;
	text-align: left;
	color: #fff;
}
.support_sub {
	/* background-color: rgba(255,255,255,0.8); */
	padding: 10px 10px 10px 0;
	color: #fff;
	width: fit-content;
	font-size: 14px;
}
.eng-sub-ttl-white {
	color: #fff;
	font-weight: 600;
	font-size: 20px;		
}
.support_ttl {
	font-size: 46px;
	font-weight: 600;
	color: #fff;
	display: inline-block;
	margin: 0 0 3rem;
	line-height: 2;
	position: relative;
	padding-bottom: 20px;
} 
.support_ttl::after {
	content: "";
	position: absolute;
	bottom: -10px; 
	left: 0;
	width: 80px; 
	height: 4px;  
	background-color: #fff; 
}
.support_disc {
	font-size: 34px;;
	color: #fff;
	text-align: center;
	margin-bottom: 0;
	margin-top: 3rem;
	letter-spacing: 0.02em;
}
.highlight {
	font-weight: 700;
	margin: 0 2px;
	font-size: 40px;
	border-bottom: solid 2px #fff;
	
}
.support-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 3列 */
	gap: 30px;
	width: fit-content;
	border-radius: 20px;
}
.support-item {
	color: #022F5D;
	font-weight: 500;
	width: 190px;
	height: 170px;
	align-content: center;
	border-radius: 5px;
	background-color: #fff;
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
	text-align: center;
}


.support-item p {
	text-align: center;
	font-size: 17px;
}

.support-item img {
	width: 50px;
}


.bg-section {
	background-image: url("../../img/jinzai/japan_img_04.jpg");
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 40vh;	
	position: relative; 
	overflow: hidden;  
}
.bg-section::before {
	content: "";
	position: absolute;
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0;
	z-index: 1;
	 /* ↓ 青マスク */
	background: rgba(2, 47, 93, 0.7);
 	 /* ↓ 白グラデ
	background: linear-gradient(to bottom, white 0%, rgba(255,255,255,0) 20%);*/	
}
.bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 中央揃え */
  color: #fff;
  font-size: 2rem;
  z-index: 2; 
  text-align: center;
}


/**会社概要**/

.company-section {
	margin: 0 auto;
	text-align: center;
}

.company-box {
	max-width: 800px;
	margin: 0 auto;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 16px;
}

.company-table > tbody > tr > th,
.company-table > tbody > tr > td {
  border-bottom: 1px solid #ccc;
  padding: 20px 12px;
  text-align: left;
  vertical-align: top;
}
.company-table th {
	width: 30%;
	font-weight: bold;
	color: #022F5D;
	font-size: 18px;
}
.company-table td .license-table {
  border-collapse: collapse;
}

.company-table td .license-table td {
  padding: 3px 10px 3px 0 !important;
  border: none !important;
  vertical-align: top;
}

.company-table td .license-table .label {
  width: 200px;
  white-space: nowrap;
}
/**よくあるご質問**/
.faq-section {
	background: linear-gradient(
    to bottom,
		rgba(29, 93, 193, 1),
		rgba(41, 61, 141, 1)
	);
	color: #fff;
	text-align: center;
	position: relative;
	margin-bottom: 0;
}


.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  color: #333;
  border-radius: 30px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 20px 25px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	position: relative;
}

.faq-question::before {
	content: "Q";
	color: #3F6095;
	font-weight: bold;
	margin-right: 10px;
	font-size: 20px;
}
.faq-question::after {
	content:"\f078";
	font-family: "Font Awesome 6 Free";
	position: absolute;
	right: 25px; 
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #808080;
	transition: all 0.4s ease;
}
/* 開いてるときは上向きに回転 */
.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
	padding: 0 25px 20px;
	display: none;
	font-size: 18px;
}
.faq-answer p::before {
    content: "A";
    color: #FF5C2F;
    font-weight: bold;
    margin-right: 10px;
	font-size: 20px;
}

.faq-item.active .faq-answer {
  display: block;
}


/**問い合わせフォーム**/

.contact-section{
    width: 100%;
    height: max-content; 
    overflow: hidden;
	align-items: center;
	text-align: center;
}
.contact-txt {
	text-align: center;
	font-size: 18px;
	margin: 0;
}


/**
.contact_box {
	width: 50%;
	background-color: #062439;
	margin: 4rem auto;
	text-align: center;
	padding: 4rem 3rem;
	box-shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.4);
}**/

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
	border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
	width: 100%;
	max-width: 248px;
	letter-spacing: 0.05em;
	font-weight: bold;
	font-size: 18px;
	text-align: left;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
	  margin-top: 0;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
	margin-right: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
	display: inline-block;
	text-align: center;
	font-size: 16px;
	color: #FF5C2F;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 10px;
  }
}
.Form-Item-Input {
	border: 1px solid #ddd;
	margin-left: 40px;
	padding-left: 1em;
	padding-right: 1em;
	height: 48px;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #eaedf2;
	font-size: 16px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 5px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
	border: 1px solid #ddd;
	margin-left: 40px;
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 1em;
	height: 216px;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #eaedf2;
	font-size: 16px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
	margin-top: 32px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 280px;
	display: block;
	letter-spacing: 0.05em;
	background-color: #1d62c1;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	border: none;
	transition: background 0.3s ease;
	cursor: pointer;
}
.Form-Btn:hover {
	background-color: #929292;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}


footer {
	background-color: #162C48;
	color: #fff;
	padding: 1rem 3rem;
	margin:0;
	overflow:hidden
}
.footer-inner {
	display: flex;
	justify-content: space-between;
	padding: 30px 0;
}
.footer-info {
	text-align: left;
}
.footer-name {
	font-size: 3rem;
	font-weight: 600;
	margin: 0;
}
.footer-add {
	font-size: 16px;
	margin-top: 0;
}

.footer-sns-list {
	list-style: none;
	padding: 0;
}
.footer-sns-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-sns-list li img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.footer-sns-list a {
	align-items: center;
	text-decoration: none;
	display: flex;
}
.copyright {
	text-align: center;
	font-size: 14px;
		
}

