@charset "utf-8";
/* ファーストビュー全体 */
.first-view {
    height: calc(100vh - 80px); /* ヘッダー分を引いた高さ */
    display: flex;
    flex-direction: column;
    margin-top: 80px; /* ヘッダー分の余白 */
}

.main-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

/* ニュースエリア：固定高さ */
.headline-news {
	width: 90%;
    height: 140px; /* 適切な高さに調整 */
    flex-shrink: 0;
    background-color: #5f5f5f;
    color: white;
    display: flex;
    align-items: center;
    padding: 15px 5%;
}

.news_box{
	width: 100%;
	display: inline-block;
}

.news_scroll{
	width: 100px;
	float: left;
}

.news_r{
	width: calc( 100% - 100px );
	float: left;
}

.news_midashi{
	width: 100%;
	font-size: 20px;
	font-weight: 500;
	text-align: left;
	margin: 0 0 10px;
	color: #fff;
}

.news_block{
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #595959;
  font-size: 18px;
  padding: 5px 0;
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  margin: 0 0 10px;
}

.news_line{
	width: 100%;
	display: inline-block;
}

.news_day{
	width: 100px;
	font-size: 14px;
	font-weight: 400;
	float: left;
	margin: 0 50px 0 30px;
	color: #333;
}

.news_tit{
	width: calc( 100% - 180px );
	padding: 0;
	font-size: 14px;
	font-weight: 400;
	float: left;
	line-height: 1.5;
	text-align: left;
	color: #333;
}
.news_tit a{
	color: #333;
}

.news_archive{
	width: 100%;
	font-size: 18px;
	font-weight: 400;
	color: #00e6ff;
	text-align: right;
}
.news_archive a{
	color: #00e6ff;
	text-decoration: underline;
}
.news_archive a:hover{
	color: #00e6ff;
	text-decoration: underline;
}



/* アニメーション設定 */


.arrowWrap {
  height: 100px;
  margin: 0 auto;
}

.arrowInner p {
  font-size: 12px;
  text-align: center;
  color: #fff;
}

.arrow {
  width: 4px;
  height: 60px;
  margin: 10px auto 10px;
  background-color: #999;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.arrow::before {
  content: '';
  width: 4px;
  height: 60px;
  margin: 10px auto;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: -130px;
  left: 2px;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 120px, 0);
    transform: translate3d(-50%, 120px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 120px, 0);
    transform: translate3d(-50%, 120px, 0);
  }
}



/*************************メインビジュアル下*************************/
.top_contbox{
	width: 90%;
	padding: 20px 5% 40px;
	background-color: #5f5f5f;
}

.top_cont_tit{
	width: 100%;
	font-size: 24px;
	font-weight: 500;
	margin: 0 0 10px;
	color: #d30037;
}

.top_cont_midashi h2{
	width: 100%;
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 40px;
	color: #fff;
}

.top_contline{
	width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.top_cont01{
	width: 40%;
}
.top_cont_txt{
	width: 100%;
	font-size: 20px;
	color: #fff;
	text-align: center;
	margin: 0 0 15px;
}

.contact-button01 {
	width: calc( 100% - 80px );
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 40px;
	background-color: #0e416b;
	color: #fff;
	text-decoration: none;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(30, 90, 150, 0.3);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	min-width: 280px;
}

.contact-button01:hover {
	background-color: #0e416b;
	box-shadow: 0 6px 20px rgba(30, 90, 150, 0.4);
	transform: translateY(-2px);
	color: #fff;
}

.contact-button01:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(30, 90, 150, 0.3);
	color: #fff;
}

.contact-button02 {
	width: calc( 100% - 80px );
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 40px;
	background-color: #d30037;
	color: #fff;
	text-decoration: none;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(30, 90, 150, 0.3);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	min-width: 280px;
}

.contact-button02:hover {
	background-color: #d30037;
	box-shadow: 0 6px 20px rgba(30, 90, 150, 0.4);
	transform: translateY(-2px);
	color: #fff;
}

.contact-button02:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(30, 90, 150, 0.3);
	color: #fff;
}

.contact-icon {
	width: 24px;
	height: 24px;
	fill: white;
	flex-shrink: 0;
}

.contact-text {
	flex: 1;
	text-align: center;
}

/****カルーセル****/
/* カルーセルコンテナ */
.carousel-container {
    width: 100%;
    height: 375px; /* PC時の高さ（375px + 余白） */
    overflow: hidden;
    position: relative;
    margin: 50px 0 150px;
}


/* カルーセルトラック */
.carousel-track {
    display: flex;
    height: 100%;
    animation: flow 24s linear infinite; /* 6人分の時間 */
}

/* 人物画像アイテム */
.carousel-item {
    width: 310px;
    height: 375px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

/* 人物画像 */
.person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* カラーオーバーレイ */
.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    pointer-events: none;
}

/* カラーパターン1: 赤系 */
.color-overlay.pattern-1 {
    background: rgba(184, 184, 184, 0.7);
}

/* カラーパターン2: 青系 */
.color-overlay.pattern-2 {
    background: rgba(255, 203, 203, 0.7);
}

/* カラーパターン3: 緑系 */
.color-overlay.pattern-3 {
    background: rgba(203, 208, 255, 0.7);
}

/* 流れるアニメーション */
@keyframes flow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1860px); /* 6枚分の幅 (310px × 6) */
    }
}



/****VALUE****/
.value_box{
	width: 80%;
	margin: 60px auto 50px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.valut{
	width: 270px;
}

.value_img{
	width: 268px;
	height: 268px;
	padding: 9px;
	border: solid 1px #707070;
	margin: 0 0 10px;
	background-color: #fff;
}
.value_img img{
	width: 268px;
	height: 268px;
}

.value_txt{
	width: 100%;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	color: #0e416b;
}
.value_txt02{
	font-family: "agency-fb", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 60px;
	text-align: center;
	color: #d30037;
	margin: -10px 0 0;
}
.value_txt02 span{
	font-family: "agency-fb", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #d30037;
}

/****PORTFOLIO****/
.portfolio_box{
	width: 80%;
	margin: 60px auto 50px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: left;
    justify-content: left;
}

.portfolio{
	width: 270px;
	margin: 0 20px 40px;
}

.portfolio_img{
	width: 268px;
	height: 268px;
	padding: 9px;
	border: solid 1px #707070;
	margin: 0 0 10px;
	background-color: #fff;
}
.portfolio_img img{
	width: 268px;
	height: 268px;
}

.portfolio_txt{
	width: 100%;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	color: #0e416b;
}

/****SERVICE****/
.service_txt01{
	width: 100%;
	text-align: center;
	font-size: 45px;
	color: #4b4b4b;
	margin: 80px 0 140px;
}
.service_txt01 span{
	font-size: 20px;
}

.service_box{
	width: 80%;
	margin: 0 auto 100px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.service{
	width: 30%;
	padding: 40px 0 40px;
	position: relative;
	background-color: #a9becc;
}

.service_no{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 45px;
	font-weight: bold;
	color: white;
	background-color: #003e68;
	font-family: "agency-fb", sans-serif;
	font-weight: 700;
	font-style: normal;
	position: absolute;
	left: 0;
	right: 0;
	top: -40px;
	margin: 0 auto;
}

.service_txt02{
	width: 100%;
	height: 150px;
    font-size: clamp(18px, 1.8vw, 36px);
	font-weight: 500;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #003e68;
	margin: 0 0 15px;
}
.service_txt03{
	width: 100%;
	height: 80px;
    font-size: clamp(12px, 1.8vw, 18px);
	font-weight: 500;
	text-align: center;
	color: #003e68;
	margin: 0 0 15px;
}
/* Google翻訳改行修正 */
.service_txt02 {
    flex-wrap: wrap !important;
}

.service_txt02:has(font) {
    flex-direction: column !important;
    align-items: center !important;
}

.service_txt02 font {
    display: contents !important;
}
.service_img{
	width: 90%;
	height: auto;
	margin: 0 auto;
}
.service_img img{
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/****COMPANY****/
.com_area{
	width: 70%;
	margin: 0 auto 150px;
}

table{
	width: 100%;
	margin: 0 0 5px;
}

.td01{
	width: 20%;
	background-color: #e3f1fc;
	text-align: center;
	vertical-align: middle;
	padding: 15px 0;
	font-size: 21px;
}
.td02{
	width: calc( 80% - 16px );
	background-color: #fff;
	/*border-bottom: solid 1px #e3f1fc;*/
	padding: 15px 8px;
	font-size: 21px;
}

/****Q&A****/
.faq_box{
	width: 90%;
	margin: 0 auto 150px;
}

.faq-container {
    padding: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 2px solid #e9ecef;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question.active {
    background: #e3f2fd;
    border-bottom: 2px solid #003e68;
}

.question-text {
    flex: 1;
    font-weight: 600;
    color: #333;
    font-size: 21px;
}

.qa_arrow {
    width: 20px;
    height: 20px;
    border: solid #666;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-question.active .qa_arrow {
    transform: rotate(-135deg);
}

.faq-answer {
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px;
    border-bottom: 2px solid #003e68;
}

.answer-text {
    color: #555;
    line-height: 1.8;
    font-size: 21px;
}

.faq-item:last-child .faq-answer {
    border-bottom: none;
}

.faq-item:last-child .faq-question:not(.active) {
    border-bottom: none;
}



/****form****/

.form-container {
    width: 900px;
    max-width: 100%;
    margin: 0 auto 150px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 21px;
    font-weight: 500;
    color: #333;
}

.required {
    color: #ff0000;
    font-size: 16px;
    font-weight: 400;
}

.form-control {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #0e416b;
}

select.form-control {
    height: auto;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-col {
    flex: 1;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #0e416b;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 30px auto 0;
}

.submit-btn:hover {
    background-color: #1e4080;
}

.underline {
    height: 1px;
    background-color: #ccc;
    margin-top: 20px;
}

/****TOPお問い合わせサンクスページ****/
.main-visual_thanks {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.main-visual_txt {
	text-align: center;
	font-size: 36px;
	color: #d30037;
	font-weight: 500;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 768px) {
/* 768pxまでの幅の場合に適応される */
.first-view {
    height: 100vh; /* ヘッダー分を引いた高さ */
    display: flex;
    flex-direction: column;
    margin-top: 0px; /* ヘッダー分の余白 */
}

.main-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

/* ニュースエリア：固定高さ */
.headline-news {
	width: 90%;
    height: 160px; /* 適切な高さに調整 */
    flex-shrink: 0;
    background-color: #5f5f5f;
    color: white;
    display: flex;
    align-items: center;
    padding: 15px 5%;
}

.news_box{
	width: 100%;
	display: inline-block;
}

.news_scroll{
	display: none;
}

.news_r{
	width: 100%;
	float: none;
}

.news_midashi{
	width: 100%;
	font-size: 20px;
	font-weight: 500;
	text-align: left;
	margin: 0 0 10px;
	color: #fff;
}

.news_block{
	width: calc( 100% - 20px);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #595959;
  font-size: 18px;
  padding: 10px;
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  margin: 0 0 10px;
}

.news_line{
	width: 100%;
	display: inline-block;
}

.news_day{
	width: 100%;
	font-size: 14px;
	font-weight: 400;
	float: left;
	margin: 0 0 10px;
	color: #333;
}

.news_tit{
	width: 100%;
	padding: 0;
	font-size: 14px;
	font-weight: 400;
	float: left;
	line-height: 1.5;
	text-align: left;
	color: #333;
}
.news_tit a{
	color: #333;
}

.news_archive{
	width: 100%;
	font-size: 18px;
	font-weight: 400;
	color: #00e6ff;
	text-align: right;
}
.news_archive a{
	color: #00e6ff;
	text-decoration: underline;
}
.news_archive a:hover{
	color: #00e6ff;
	text-decoration: underline;
}

/*************************メインビジュアル下*************************/
.top_contbox{
	width: 90%;
	padding: 20px 5% 40px;
	background-color: #5f5f5f;
}

.top_cont_tit{
	width: 100%;
	font-size: 28px;
	font-weight: 900;
	margin: 0 0 10px;
	color: #d30037;
}

.top_cont_midashi h2{
	width: 100%;
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 40px;
	color: #fff;
}

.top_contline{
	width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.top_cont01{
	width: 100%;
	margin: 0 0 30px;
}
.top_cont_txt{
	width: 100%;
	font-size: 16px;
	color: #fff;
	text-align: center;
	margin: 0 0 15px;
}

.contact-button01 {
	width: calc( 100% - 80px );
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 40px;
	background-color: #0e416b;
	color: #fff !important;
	text-decoration: none;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(30, 90, 150, 0.3);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	min-width: 280px;
}

.contact-button01:hover {
	background-color: #0e416b;
	box-shadow: 0 6px 20px rgba(30, 90, 150, 0.4);
	transform: translateY(-2px);
	color: #fff;
}

.contact-button01:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(30, 90, 150, 0.3);
	color: #fff;
}

.contact-button02 {
	width: calc( 100% - 80px );
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 40px;
	background-color: #d30037;
	color: #fff !important;
	text-decoration: none;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(30, 90, 150, 0.3);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	min-width: 280px;
}

.contact-button02:hover {
	background-color: #d30037;
	box-shadow: 0 6px 20px rgba(30, 90, 150, 0.4);
	transform: translateY(-2px);
	color: #fff;
}

.contact-button02:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(30, 90, 150, 0.3);
	color: #fff;
}

.contact-icon {
	width: 24px;
	height: 24px;
	fill: white;
	flex-shrink: 0;
}

.contact-text {
	flex: 1;
	text-align: center;
}

/****VALUE****/
.value_box{
	width: 100%;
	margin: 60px auto 50px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.valut{
	width: 47%;
}

.value_img{
	width: calc( 100% - 18px );
	height: auto;
	padding: 9px;
	border: solid 1px #707070;
	margin: 0 0 10px;
	background-color: #fff;
}
.value_img img{
	width: 100%;
	height: auto;
}

.value_txt{
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	color: #0e416b;
}
.value_txt02{
	font-family: "agency-fb", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 48px;
	text-align: center;
	color: #d30037;
	margin: -10px 0 0;
}
.value_txt02 span{
	font-family: "agency-fb", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #d30037;
}

/****PORTFOLIO****/
.portfolio_box{
	width: 100%;
	margin: 60px auto 50px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.portfolio{
	width: 47%;
	margin: 0 auto 20px;
}

.portfolio_img{
	width: calc( 100% - 18px );
	height: auto;
	padding: 9px;
	border: solid 1px #707070;
	margin: 0 0 10px;
	background-color: #fff;
}
.portfolio_img img{
	width: 100%;
	height: auto;
}

.portfolio_txt{
	width: 100%;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	color: #0e416b;
}

/****SERVICE****/
.service_txt01{
	width: 100%;
	text-align: left;
	font-size: 16px;
	font-weight: 700;
	color: #4b4b4b;
	margin: 40px 0 130px;
}
.service_txt01 span{
	font-size: 16px;
}

.service_box{
	width: 100%;
	margin: 0 auto 40px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.service{
	width: 95%;
	padding: 40px 0 20px;
	margin: 0 auto 130px;
	position: relative;
	background-color: #a9becc;
}
.service:last-child{
	margin: 0 0 30px;
}

.service_no{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-weight: bold;
	color: white;
	background-color: #003e68;
	font-family: "agency-fb", sans-serif;
	font-weight: 700;
	font-style: normal;
	position: absolute;
	left: 0;
	right: 0;
	top: -40px;
	margin: 0 auto;
}

.service_txt02{
	width: 100%;
	height: 100px;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #003e68;
	margin: 0 0 15px;
}
.service_txt03{
	width: 100%;
	height: auto;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	color: #003e68;
	margin: 0 0 15px;
}

.service_img{
	width: 200px;
	height: auto;
	margin: 0 auto;
}
.service_img img{
	width: 200px;
	height: auto;
	margin: 0 auto;
}


/****COMPANY****/
.com_area{
	width: 100%;
	margin: 0 auto 70px;
}

table{
	width: 100%;
	margin: 0 0 5px;
}

.td01{
	width: calc( 100% - 16px );
	background-color: #e3f1fc;
	text-align: left;
	vertical-align: middle;
	padding: 15px 8px;
	font-size: 18px;
	font-weight: 500;
	display: block;
}
.td02{
	width: calc( 100% - 16px );
	background-color: #fff;
	/*border-bottom: solid 1px #e3f1fc;*/
	padding: 15px 8px;
	font-size: 18px;
	font-weight: 500;
	display: block;
}

/****Q&A****/
.faq_box{
	width: 100%;
	margin: 0 auto;
}

.faq-container {
    padding: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 2px solid #e9ecef;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question.active {
    background: #e3f2fd;
    border-bottom: 2px solid #003e68;
}

.question-text {
    flex: 1;
    font-weight: 700;
    color: #333;
    font-size: 18px;
}

.qa_arrow {
    width: 20px;
    height: 18px;
    border: solid #666;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-question.active .qa_arrow {
    transform: rotate(-135deg);
}

.faq-answer {
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px;
    border-bottom: 2px solid #003e68;
}

.answer-text {
    color: #555;
    line-height: 1.8;
    font-size: 18px;
    font-weight: 500;
}

.faq-item:last-child .faq-answer {
    border-bottom: none;
}

.faq-item:last-child .faq-question:not(.active) {
    border-bottom: none;
}


/****inquiry****/
.form-container {
	width: calc( 100% - 30px );
    padding: 15px;
}

.form-row {
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 18px;
    font-weight: 500;
}

.form-control {
    font-size: 16px !important; /* iOS のズーム防止 */
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
}


/****TOPお問い合わせサンクスページ****/
.main-visual_thanks {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.main-visual_txt {
	width: 90%;
	text-align: center;
	font-size: 18px;
	color: #d30037;
	font-weight: 500;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

}

@media screen and (min-width: 769px) {
/*　画面サイズが769pxからはここを読み込む　*/

}
