@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@600&display=swap');

/* --- 1. Base Styles (既存) --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all .25s;
}
a:hover {
  opacity: 0.7;
}

.onlysp {
  display: none;
}

.page {
  margin-bottom: 0 !important;
}

/* --- 2. Layout (既存) --- */
.l-container {
    max-width: 1920px;
    margin: 0 auto;
}
.l-main {
    width: 1200px;
    margin: 0 auto;
}
.l-inner-header,
.l-inner-footer {
    width: 1200px;
    margin: 0 auto;
}

/* --- 3. Shared Components (既存) --- */
.c-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background-color: #3B82CE; */
    color: #fff;
    padding: 12px 0;
    /* border-radius: 4px; */
    font-weight: 500;
    position: relative;
    transition: opacity 0.3s;
    min-width: 360px;
    background: #2D7DD2;
    font-size: 20px;
    gap: 35px;
    margin: 60px 0 0 0;
}
.c-button:hover { opacity: 0.8; color: #fff;}
.c-button:visited { color: #fff;}
.c-button::after { content: '→'; margin-left: 10px; }

.section-title {
    background-color: #0D3E78;
    color: #fff;
    text-align: center;
    padding: 9px 0;
    font-size: 28px;
    font-weight: 700;
    margin-top: 65px;
}
.section-block {padding: 60px 0;}

.section-block--lead {
	padding: 10px 0 0;
}

.card__title {
    text-align: center;
    font-style: normal;
    font-weight: 700;
    color: #0F3D73;
    font-size: 24px;
    line-height: 36px;
    border-bottom: 1px solid #0F3D73;
    padding-bottom: 24px;
}

.card__desc {
	font-style: normal;
	font-weight: 400;
	font-size: 17px;
	line-height: 40px;
	text-align: center;
	color: #1A1A1A;
}

.card__image {
	display: flex;
	align-items: center;
	position: relative;
}

.card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.u-center {
    display: flex;
    justify-content: center;
}

/* Header & Footer (既存) */
.header {height: 155px;background: #fff;}
.header__inner {display: flex;justify-content: space-between;align-items: center;height: calc(100% - 14px);}
.header__logo img {height: 41px;margin-bottom: 8px;}
.header__nav {display: flex;align-items: center;gap: 50px;}
.header__nav-list {display: flex;gap: 60px;font-size: 19px;font-weight: 700;}
.header__cta {
    background-color: #3B82CE;
    color: #fff;
    padding: 12px 34px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}
.header__nav a, .header__nav a:link, .header__nav a:visited, .header__nav a:active {
  color: #000;
}
.header__cta, .header__cta:link, .header__cta:visited, .header__cta:active {
  color: #fff !important;
}
.header__cta::before {
    content: ""; display: block; width: 18px; height: 14px;
    background: url('../images/icon-mail.svg') no-repeat center / contain; margin-right: 10px;
}

.header::before {
    content: '';
    display: block;
    height: 10px;
    background: linear-gradient(90deg, #2F6FB2 0%, #115092 48.56%, #0D3E78 100%);
}

.hero {
    height: 595px;
    background: #001A43 url('../images/hero.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero--sub { height: 250px; background-image: url('../images/hero-second.jpg'); }
.hero__content-title {font-size: 35px;font-weight: 500;letter-spacing: 0.025em;margin: 0;}
.hero__content-sub {
    font-size: 22px;
    margin: .75em 0 0;
    /* margin: 0; */
}
.footer {
    background: linear-gradient(90deg, #0D3E78 0%, #115092 51.44%, #2F6FB2 100%);
    color: #fff;
    padding: 60px 0 0;
    margin-top: 100px;
}
.footer a, .footer a:link, .footer a:visited, .footer a:active {
  color: #fff;
}
.footer__main { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 40px; }
.footer__info-logo img {height: 40px;margin-bottom: 20px;}
.footer__info-address {font-size: 14px;font-style: normal;line-height: 2.5em;}
.footer__nav {display: flex;gap: 30px;font-size: 14px;/* align-items: center; */}
.footer__nav a:nth-of-type(n + 2)::before {
	content: '';
	display: inline-block;
	background-color: #5779A2;
	width: 1px;
	height: 20px;
	margin-right: 30px;
	/* margin-top: 2px; */
}
.footer__nav a {
	display: flex;
	align-items: center;
}

.footer__copyright {/* border-top: 1px solid rgba(255,255,255,0.2); */padding-top: 20px;text-align: center;/* font-size: 10px; */font-style: normal;font-weight: 500;font-size: 12px;background: #072D59;padding-bottom: 20px;}

/* --- 4. Page Specific: TOP (既存) --- */
/* (略：index.htmlで使ったabout, card等のスタイル) */
.about { display: flex; gap: 50px; }
.about__image {flex: 0 0 540px;}

.about__image img {
	object-fit: cover;
}

.about__heading {
    font-weight: 700;
    font-size: 24px;
    color: #0F3D73;
    margin: .75em 0 0;
}

.about__text {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 40px;
    color: #1A1A1A;
    margin: .5em 0 0;
}

.about__block:nth-of-type(n + 2) {
    margin-top: 4em;
}

.grid-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* --- 5. Page Specific: Business (新規追加) --- */

/* Intro Text */
.p-business-intro {/* text-align: center; *//* font-size: 15px; */max-width: 1000px;margin: 0 auto;line-height: 3em;font-size: 17px;font-style: normal;font-weight: 400;color: #1A1A1A;}

/* Business Grid (2カラム) */
.p-business-grid {display: grid;grid-template-columns: repeat(2, 1fr);gap: 60px 70px;width: 1000px;margin: 0 auto;}

.c-business-card { display: flex; flex-direction: column; }
.c-business-card__image {
	position: relative;
	/* margin-bottom: 20px; */
	aspect-ratio: 16/9;
	overflow: hidden;
	/* background: #eee; */
	}

.c-business-card__image img {width: 100%;height: 100%;object-fit: contain;}
.c-business-card__image--cover img {
	object-fit: cover;
}
.c-business-card__image--tall {
	aspect-ratio: 16 / 11;
}

.c-business-card__title {
    color: #0D3E78;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 18px;
    border-bottom: 1px solid #0D3E78;
    display: flex;
    align-items: baseline;
}
.c-business-card__title span {
	font-size: 24px;
	/* font-style: italic; */
	margin-right: 15px;
	/* opacity: 0.5; */
	padding-left: .75em;
}
.c-business-card__title span::after {
	font-weight: 200;
	font-style: italic;
	content: '/';
	padding: 0 1em;
}
.c-business-card__text {
	font-style: normal;
	font-weight: 400;
	font-size: 17px;
	line-height: 235%;
	color: #1A1A1A;
}

/* Consultation Icons */
.p-consultation__list { display: flex; justify-content: space-around; text-align: center; margin-bottom: 80px; }
.p-consultation__item { flex: 1; padding: 0 20px; }
.p-consultation__icon {
    width: 240px;
    height: 240px;
    background: #EDF4FB;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-consultation__icon img {width: 110px;height: 110px;}
.p-consultation__title {/* color: #0D3E78; *//* font-size: 18px; *//* font-weight: 700; */margin-bottom: 15px;font-style: normal;font-weight: 700;font-size: 26px;line-height: 1.5em;color: #0F3D73;min-height: 3em;display: flex;justify-content: center;align-items: center;}
.p-consultation__text {/* font-size: 13px; */color: #000000;line-height: 2.35em;font-style: normal;font-weight: 400;font-size: 17px;text-align: left;width: 84%;margin: 22px auto 0;}

/* Process Area */
.p-process {display: flex;gap: 60px;align-items: center;margin-top: 60px;/* background: #F9F9F9; */padding: 40px;}
.p-process__image { flex: 0 0 450px; }
.p-process__content { flex: 1; }

.p-process-list__item {display: flex;gap: 5px;margin-bottom: 30px;flex-direction: column;}
.p-process-list__item:last-child { margin-bottom: 0; }
.p-process-list__num {
    font-size: 20px; font-weight: 700; color: #0D3E78;
    position: relative; top: -5px;
}
.p-process-list__title { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.p-process-list__text { font-size: 14px; margin: 0; }

.p-consultation__footer-text { text-align: center; margin-top: 60px; font-size: 14px; }

/* top product*/

.product-list__text {
	font-weight: 400;
	font-style: W4;
	font-size: 17px;
	text-align: center;
}

.p-process-list {
  display: flex;
  gap: 40px; /* 画像とリストの間隔 */
  align-items: flex-start;
}

/* 左側：画像ユニット */
.p-process-list__image-unit {
  flex: 0 0 45%; /* 幅の調整 */
}

.p-process-list__image {
  width: 100%;
  height: auto;
  display: block;
}

/* 右側：リストユニット */
.p-process-list__items {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-process-list__item {
  margin-bottom: 30px;
  padding-bottom: 10px;
  /* border-bottom: 1px solid #003366; */ /* 下線の色 */
}

.p-process-list__item:last-child {
  margin-bottom: 0;
}

/* ヘッダー部分（番号とタイトル） */
.p-process-list__head {
  display: flex;
  align-items: baseline;
  gap: 30px;
  /* margin-bottom: 10px; */
  color: #003366; /* メインカラー（濃紺） */
  border-bottom: 1px solid #003366;
  padding-bottom: 2px;
}

.p-process-list__number {
  font-size: 28px;
  font-weight: bold;
}

.p-process-list__title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

/* 説明文 */
.p-process__note {
  /* font-size: 14px; */
  /* color: #333; */
  margin: 0 0 5px 0;
  color: #000000;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 40px;
}

/* makers */
.p-products-intro {text-align: center;color: #1A1A1A;line-height: 1.5em;font-style: normal;font-weight: 700;font-size: 27px;}
.makers {margin: 40px auto 0;width: 1200px;display: flex;flex-wrap: wrap;}

.makers__note {
  text-align: center;
  padding-top: 2em;
  font-weight: bold;
}

.makers li {
    width: 25%;
    font-size: 13px;
    border-left: 1px solid lightgrey;
    padding: 1em;
    box-sizing: border-box;
}

/* Philosophy Block */
.philosophy {
  text-align: center;
}

.philosophy__title {
  font-size: 24px;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
  font-weight: bold;
}

.philosophy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px; /* 行間の調整 */
}

.philosophy__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

/* 左側のメインテキスト */
.philosophy__item-main {
  width: 450px;
  /* font-size: 20px; */
  /* font-weight: 500; */
  white-space: nowrap;
  color: #0F3D73;
  font-style: normal;
  font-weight: 600;
  font-size: 27px;
  font-family: 'Noto Serif', serif;
}

/* 中央の線（セパレーター） */
.philosophy__item-separator {
  flex-grow: 1;
  height: 1px;
  background-color: #003366;
  margin: 0 40px;
  max-width: 40px; /* 線の長さを固定したい場合 */
}

/* 右側の詳細テキスト */
.philosophy__item-details {
  width: 350px;
  /* font-size: 16px; */
  letter-spacing: 0.05em;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #0F3D73;
}

.greeting {
	width: 1100px;
	margin: 0 auto;
	padding-bottom: 0;
	margin: 0 auto;
}
.greeting p {
	width: 1000px;
	margin: 0 auto;
	font-style: normal;
	font-weight: 400;
	font-size: 17px;
	line-height: 235%;
	color: #1A1A1A;
}

.greeting__CEO {
	text-align: right;
	margin-top: 4em;
}

.greeting__CEO span {
	color: #1A1A1A;
	font-weight: 700;
	font-style: normal;
	line-height: 2.3em;
	font-size: 17px;
	padding-right: 2em;
}

.greeting__CEO img {
	width: 231px;
}

.philosophy__copy {
	font-style: normal;
	font-weight: 600;
	font-size: 27px;
	line-height: 259%;
	color: #0F3D73;
	font-family: 'Noto Serif', serif;
}

.philosophy-inner {
	background-color: #FBFBFB;
	padding: 1.25em 8em 3em;
	margin-top: 60px;
}

.profile-outer {
	width: 1000px;
	margin: 0 auto;
}

.profile {
  border-top: 1px solid #e0e0e0;
}

.profile__item {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.8;
}

.profile__label {
  width: 260px;
  /* font-weight: bold; */
  padding-left: 50px;
  box-sizing: border-box;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  color: #000000;
}

.profile__data {
  flex: 1;
  margin: 0;
  padding-right: 50px;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  color: #000000;
}

.profile-map {
	margin-top: 10px;
}

/* タイムライン全体のコンテナ */
.history__container {
  position: relative;
  width: 100%;
  margin-top: 60px;
  padding-bottom: 10px;
}

/* 中央の垂直線 */
.history__container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #2b568d; /* 画像のライン色に合わせた濃い青 */
  transform: translateX(-50%);
}

.history__container::after {content: '';position: absolute;bottom: 0;width: 22px;height: 22px;background-color: #b0c0d6;border-radius: 50%;z-index: 1;left: calc(50% - 11px);}

/* 各履歴項目 */
.history__item {
  position: relative;
  width: 50%; /* 幅を半分に */
  margin-bottom: 60px;
}

/* 中央のドット（共通） */
.history__item::after {
  content: '';
  position: absolute;
  top: 0;
  width: 22px;
  height: 22px;
  background-color: #b0c0d6; /* 画像の淡い青のドット色 */
  border-radius: 50%;
  z-index: 1;
}
.history__item:nth-of-type(n + 2)::after {
  top: 2em;
}

/* 左側配置のスタイル */
.history__item--left {
  left: 0;
  text-align: right;
  padding-right: 40px;
  box-sizing: border-box;
}

.history__item--left .history__text {
	margin-left: auto;
	/* text-align: left; */
}

.history__item--left::after {
  right: -12px; /* 線の上に重ねる */
}

/* 右側配置のスタイル */
.history__item--right {
  left: 50%;
  text-align: left;
  padding-left: 40px;
  box-sizing: border-box;
}

.history__item--right::after {
  left: -10px; /* 線の上に重ねる */
}

/* 日付 */
.history__date {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e4d8c;
  margin-bottom: 5px;
}

/* テキスト */
.history__text {
  /* font-size: 1rem; */
  /* line-height: 1.8; */
  /* color: #333; */
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 215%;
  color: #000000;
  max-width: 425px;
}

/* ==========================================
   共通・全体レイアウト
========================================== */
.contact-page-container {
  /*max-width: 960px;*/
  margin: 0 auto;
  padding: 15px 20px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333333;
}

.contact-lead {
  text-align: center;
  line-height: 2.5em;
  margin-bottom: 0;
  font-size: 17px;
}

.contact-section {
  margin-bottom: 50px;
}

/*.contact-heading {
  background-color: #10427A;
  color: #ffffff;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  padding: 15px;
  margin: 0 0 30px 0;
  letter-spacing: 0.05em;
}*/

/* ==========================================
   電話・FAX 案内エリア
========================================== */
.contact-tel-box {
  background-color: #F0F5FA;
  box-sizing: border-box;
  padding: 40px 20px 25px;
  text-align: center;
  margin-bottom: 40px;
  width: 910px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4em;
}

.contact-tel-number {
  font-size: 53px;
  font-weight: bold;
  color: #10427A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.contact-tel-number a {
  color: #10427A;
  text-decoration: none;
}

.contact-tel-icon {
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
}

.contact-tel-icon svg {
  width: 32px;
  height: 32px;
  stroke: #10427A;
}

.contact-tel-time {
  font-size: 17px;
  color: #10427A;
  margin: 0 0 39px 0;
}

.contact-fax-number {
  font-size: 39px;
  font-weight: bold;
  color: #10427A;
  border-top: 1px solid #B0C4DE;
  display: inline-block;
  padding-top: 35px;
  width: 100%;
  max-width: 500px;
}

/* ==========================================
   Contact Form 7 フォームエリア
========================================== */
.c-form__row {
  display: flex;
  /* align-items: center; */
  align-items: center;
  border-bottom: 1px solid #E0E0E0;
  padding: 20px 0;
}

.c-form__row--align-top {
  align-items: flex-start;
  /* align-items: center; */
}

.c-form__label {
  width: 240px;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.c-form__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 3px;
  margin-right: 12px;
  text-align: center;
  width: 46px;
  flex-shrink: 0;
}

.c-form__badge--required {
  background-color: #D91D00; /* 必須：赤 */
}

.c-form__badge--optional {
  background-color: #2575FC; /* 任意：青 */
}

.c-form__field {
  flex-grow: 1;
  max-width: 100%;
}

/* 入力要素の装飾 */
.c-form__field input[type="text"],
.c-form__field input[type="email"],
.c-form__field input[type="tel"],
.c-form__field textarea {
  width: 100%;
  max-width: 600px;
  background-color: #F0F0F0;
  border: none;
  padding: 12px 15px;
  font-size: 15px;
  box-sizing: border-box;
  border-radius: 0;
}

.c-form__field textarea {
  height: 200px;
  resize: vertical;
}

/* プレースホルダーの文字色 */
.c-form__field ::placeholder {
  color: #888888;
  opacity: 1;
}

/* 添付ファイルエリア */
.c-form__field--file {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.c-form__file-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* CF7のデフォルトのファイル選択ボタンをXDデザインに合わせる */
.c-form__file-inputs input[type="file"] {
  width: 285px;
  height: 48px;
  color: transparent;
  font-size: 0;
  cursor: pointer;
}

.c-form__file-inputs input[type="file"]::file-selector-button {
  width: 100%;
  height: 100%;
  margin: 0;
  color: #222222;
  background-color: #ffffff;
  border: 1px solid #DCDCDC;
  border-radius: 24px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.c-form__file-inputs input[type="file"]::-webkit-file-upload-button {
  width: 100%;
  height: 100%;
  margin: 0;
  color: #222222;
  background-color: #ffffff;
  border: 1px solid #DCDCDC;
  border-radius: 24px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.c-form__file-inputs input[type="file"]:hover::file-selector-button,
.c-form__file-inputs input[type="file"]:focus-visible::file-selector-button,
.c-form__file-inputs input[type="file"]:hover::-webkit-file-upload-button,
.c-form__file-inputs input[type="file"]:focus-visible::-webkit-file-upload-button {
  border-color: #BDBDBD;
  box-shadow: 0 0 0 2px rgba(16, 66, 122, 0.08);
}

.c-form__file-notes {
  font-size: 13px;
  line-height: 1.6;
  color: #333333;
}
.c-form__file-notes p {
  margin: 0 0 4px 0;
}

/* プライバシーポリシー同意エリア */
.c-form__policy {
  border: 1px solid #10427A;
  max-width: 660px;
  margin: 40px auto;
  padding: 30px 20px;
  text-align: center;
  font-size: 15px;
}

.c-form__policy p {
  margin: 0 0 20px 0;
}

.c-form__policy a {
  color: #2575FC;
  text-decoration: underline;
}

.c-form__checkbox {
  display: inline-block;
}

/* CF7自体のチェックボックスの余白調整 */
.c-form__checkbox .wpcf7-list-item {
  margin: 0;
}

/* 送信ボタン */
.c-form__submit-wrap {
  text-align: center;
  margin-top: 0;
}

.c-form__submit {
  background-color: #D91D00 !important;
  color: #ffffff !important;
  border: none;
  width: 345px;
  min-height: 62px;
  font-size: 18px;
  font-weight: bold;
  padding: 18px 80px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  position: relative;
}

.c-form__submit:hover {
  /* background-color: #b31800; */
}

/* 送信ボタンの矢印アイコン */
.c-form__submit-wrap {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.c-form__submit-wrap::after {
  content: "";
  width: 16px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='15' viewBox='0 0 16 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7.5H15' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 1.5L15 7.5L9 13.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: calc(50% + 48px);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

/* ==========================================
   レスポンシブ (スマートフォン対応)
========================================== */
@media screen and (max-width: 768px) {
  .contact-tel-number {
    font-size: 28px;
  }
  .contact-fax-number {
    font-size: 20px;
  }
  .c-form__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .c-form__label {
    width: 100%;
    margin-bottom: 10px;
  }
  .c-form__field input[type="text"],
  .c-form__field input[type="email"],
  .c-form__field input[type="tel"],
  .c-form__field textarea {
    max-width: 100%;
  }
  .c-form__field--file {
    flex-direction: column;
    gap: 15px;
  }
  .c-form__submit {
    width: 100%;
    padding: 15px 40px;
  }
  .c-form__file-inputs input[type="file"] {
    width: 100%;
    max-width: 285px;
  }
}

.c-form {
  box-sizing: border-box;
  width: 910px;
  max-width: 100%;
  margin: 66px auto 0;
}
