@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/* CSS Document */

/*-------------------------------------
全体レイアウト＆共通
-------------------------------------*/

:root {
  --font-family: 'Noto Sans', sans-serif;
  --line-height: 1.9;
  --letter-spacing: 0.05em;
  --display-width: 1140px;
  --box-shadow: 0 4px 16px rgba(95, 95, 95, 0.12);
  --border-radius: 20px;
  /* color */
  --font-color: #333;
  --color-light-blue: #37a0da;
  --color-blue: #366dd9;
  --color-pink: #e3007f;
  --color-navy: #363675;
  --color-grey: #f2f1ed;
  --bg-color-light-grey: #f5f5f5;
  /* tesla color */
  --color-white: #fff;
  --color-whitea: #ffffffbb;
  --color-black: #000;
  --color-red: #E31937;
  --color-light-grey: #C9CBCC;
  --color-light-grey-2: #AEB0B2;
  --color-dark-grey: #717074;
  /* PC */
  --pc-font-size: 16px;
  --pc-padding-top: 60px;
  --pc-padding-bottom: 70px;
  --pc-padding-x: 50px;
  --pc-title-padding-bottom: 50px;
  --pc-title-width: 60%;
  --pc-body-width: 80%;
  /* SP */
  --sp-font-size: 15px;
  --sp-padding-top: 45px;
  --sp-padding-bottom: 50px;
  --sp-padding-x: 20px;
  --sp-title-padding-bottom: 25px;
  --sp-content-width: 100%;
  interpolate-size: allow-keywords;
}

html {
  scroll-behavior: smooth;
}

details {
  &::details-content {
    transition: height 0.4s, content-visibility 0.4s allow-discrete;
    height: 0;
    overflow: clip;
  }

  &[open]::details-content {
    height: auto;
  }
}

body {
  font-size: 62.5%;
  font-family: "YuGothic", "Yu Gothic UI", "Hiragino Sans", "Meiryo", "sans-serif";
  font-weight: normal;
  color: var(--font-color);
}

a {
  text-decoration: underline;
}

a:link,
a:visited {
  color: #39f;
}

a:hover,
a:active {
  color: #f60;
}

/* ブラウザのCSSをリセット */
p {
  margin: 0 !important;
  /* padding: 0 !important; */
}

section {
  clear: both;
  overflow: auto;
  width: 100%;
}

img {
  width: 100%;
}

.btn {
  cursor: pointer;
}

.btn:hover {
  opacity: 0.8;
}

.red {
  color: var(--color-red);
}

.underline {
  text-decoration: underline;
}

.layout-flex {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.row_reverse {
  flex-direction: row-reverse;
}

.column_1 {
  flex: 1;
}

.column_1_5 {
  flex: 1.5;
}


.column_2 {
  flex: 2;
}

.column_3 {
  flex: 3;
}

.column_4 {
  flex: 4;
}

.highlight {
  background: linear-gradient(transparent 60%, #f9f871 60%);
}

.table__label {
  font-weight: 600;
  white-space: nowrap;
}

.text_caution {
  font-size: 10px;
}

.main {
  background-color: #f2f2f2;
}

.article {
  background-color: #fff;
  font-size: var(--pc-font-size);
}

.article p {
  line-height: var(--line-height);
}

.article,
.top_image_in {
  width: 100%;
  margin: 0 auto;
}

.text_caution {
  font-size: 12px;
}

.text_bg_yellow {
  background: #f9f871;
}

/*-------------------------------------
ヘッダー
-------------------------------------*/
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background: #fff;
  box-shadow: var(--box-shadow);
  overflow: auto;
  /* min-height: 40px; */
}

.header__body {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: var(--display-width);
  margin: 0 auto;
  overflow: hidden;
  padding: 20px;
}

.header__logo_inr {
  width: 50%;
  display: flex;
  align-items: end;
}

.header__logo {
  width: 70%;
  margin: 0;
  padding-right: 30px;
}

.header__ci_logo {
  width: 30%;
}

.header__btn {
  width: 30%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

/*-------------------------------------
見出し
-------------------------------------*/
h1 {
  position: relative;
  margin-bottom: var(--pc-padding-bottom);
  font-size: 24px
}

h1:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 50px;
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--color-light-blue);
  border-radius: 2px;
}

/*-------------------------------------
テーブル設定
-------------------------------------*/
table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 16px 0;
}

th,
td {
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

th {
  background-color: #f0f0f0;
  font-weight: bold;
  text-align: center;
}

td {
  background-color: #fff;
  text-align: left;
}

/*-------------------------------------
FV
-------------------------------------*/
.top_image {
  background-color: transparent;
  background-image: url(https://entrijapan.jp/wp-content/uploads/2026/04/top_image_front_bg.webp);
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
}

.top_image_in {
  width: var(--display-width);
  position: relative;
}

.top_image_in img {
  width: 100%;
}

/*-------------------------------------
お悩み
-------------------------------------*/
.section_worry {
  padding: var(--pc-padding-top) var(--pc-padding-x) 0 var(--pc-padding-x);
}

.area_worry {
  max-width: var(--display-width);
  margin: 0 auto;
}

.area_worry__body {
  width: var(--pc-body-width);
  margin: 0 auto;
}

.area_worry_tail {
  max-width: var(--display-width);
  margin: 0 auto;
}

.area_worry_tail__body {
  width: var(--pc-body-width);
  margin: 0 auto;
}

/*-------------------------------------
Worry解決
-------------------------------------*/
.section_about_service::before {
  background-image: url(https://entrijapan.jp/wp-content/uploads/2026/04/worry_tail.webp);
}

.area_about_service {
  max-width: var(--display-width);
  margin: 0 auto;
  padding: 0;
}

.area_about_service__title {
  width: 80%;
  margin: 0 auto;
  padding-bottom: var(--pc-title-padding-bottom);
}


.area_about_service__body {
  padding: 0 var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
  text-align: center;
}

.about_service__img {
  padding-bottom: 20px;
}

/*-------------------------------------
特徴
-------------------------------------*/
.section_points {
  background-color: var(--color-grey);
  background-image: url(https://entrijapan.jp/wp-content/uploads/2026/04/voices_bg.webp);
  background-size: 100% auto;
  background-position: top left;
  background-repeat: repeat-y;
  border-radius: 100px 100px 0 0;
}

.area_points {
  max-width: var(--display-width);
  margin: 0 auto;
  padding: var(--pc-padding-top) var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}

.area_points__title {
  width: var(--pc-title-width);
  margin: 0 auto;
  padding-bottom: var(--pc-title-padding-bottom);
}

.point__box {
  margin-bottom: 80px;
  align-items: center;
}

.point__txt {
  background-color: #fff;
  margin: 0px 0 0 0px;
  padding: 50px 200px 50px 50px;
  z-index: -1;
  border-radius: var(--border-radius);
}

.point__txt p {}

.area_points__body>div {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.area_points__body>div.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.point__title {
  font-size: 20px;
  font-weight: 600;
  align-items: end;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
  margin-bottom: 20px;
}

.accent_color {
  color: var(--color-light-blue);
}

.point__icon {
  width: 90px;
}

.point__img {
  margin-left: -150px;
}

.point__img img {
  border-radius: var(--border-radius);
}

.row_reverse .point__txt {
  padding: 50px 50px 50px 200px;
}

.row_reverse .point__img {
  margin-right: -150px;
  margin-left: 0;
}

.point__list {
  margin-bottom: 20px;
}

.point__list_item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.point__list_item:last-child {
  margin-bottom: 0;
}

.point__list_item img {
  width: 20px;
  flex-shrink: 0;
}

.point__list_item p {
  margin: 0;
}

/*-------------------------------------
お客様の声
-------------------------------------*/
.section_voices {
  background-color: var(--color-grey);
  background-image: url(https://entrijapan.jp/wp-content/uploads/2026/04/voices_bg.webp);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: repeat-y;
}

.area_voices {
  max-width: var(--display-width);
  margin: 0 auto;
  padding: 0 0;
  padding: var(--pc-padding-top) var(--pc-padding-x) 100px var(--pc-padding-x);
}

.area_voices__title {
  width: var(--pc-title-width);
  margin: 0 auto;
  padding-bottom: var(--pc-title-padding-bottom);
}

.area_voices__body {
  width: var(--pc-body-width);
  margin: 0 auto;
}

.voice__box {
  position: relative;
  box-shadow: -6px 6px 0 var(--color-light-blue);
  padding: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.voice__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* テキスト */
.voice-title {
  color: #2e7d32;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 12px;
}

.voice__text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.voice-meta {
  color: #2e7d32;
  font-size: 14px;
  font-weight: 500;
}


.voice__voice__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.voice__tag {
  padding: 4px 8px;
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
  font-weight: 600;
  font-size: 12px;
  border-radius: 90px;
  white-space: nowrap;
}

/*-------------------------------------
流れ
-------------------------------------*/
.section_flows {
  background-color: var(--bg-color-light-grey);
  background-image: url(https://entrijapan.jp/wp-content/uploads/2026/04/flows_bg.png);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: repeat-y;
}

.area_flows {
  max-width: var(--display-width);
  margin: 0 auto;
  padding: var(--pc-padding-top) var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}

.area_flows__title {
  width: var(--pc-title-width);
  margin: 0 auto;
  padding-bottom: 50px;
}

.area_flows__body ol {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  gap: 10px;
}

.area_flows__body ol li {
  list-style: none;
  flex: 1;
  position: relative;
  padding: 0;
}

.area_flows__body ol li::after {
  position: absolute;
  color: var(--color-light-blue);
  content: "▶";
  top: 50%;
  right: -10px;
}

.area_flows__body ol li:last-child::after {
  content: none;
}

.flow__box {
  background: #fff;
  padding: 30px 50px;
  gap: 30px;
}

.flow__circle {
  width: 70px;
  height: 70px;
  position: absolute;
  top: -22px;
  left: 35px;
  transform: translateX(-50%);

}

.flow__circle img {
  width: 100%;
  height: auto;
  display: block;
}

.flow__title {
  margin: 0 auto;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-navy);
  text-align: center;
}

.flow__icon {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10px;
}

/*-------------------------------------
施工エリア
-------------------------------------*/
.area_support_area {
  width: 60%;
  margin: 0 auto;
}

.area_support_area__body table,
.area_support_area__body td,
.area_support_area__body tr {
  border: none;
}

.area_support_area__body td {
  background-color: var(--bg-color-light-grey);
}

.area_support_area__body .text_caution {
  float: right;
}

.area_support_area__body .table__label img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 3px;
}

/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
.section_faq {
  background-color: #fff;
}

.area_faq {
  max-width: var(--display-width);
  margin: 0 auto;
  padding: var(--pc-padding-top) var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}

.area_faq .area_faq__body {
  margin: 0 auto;
  max-width: 800px;
}

.faq__section {
  width: var(--pc-body-width);
  margin: 0 auto;
}

.area_faq__title {
  width: var(--pc-title-width);
  margin: 0 auto;
  padding-bottom: 50px;
}


.faq__item {
  border-bottom: 1px solid var(--color-light-blue);
  padding: 20px 0;
}

.faq__q {
  font-weight: 500;
}

.faq__q,
.faq__a {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.faq__q img {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
}

.faq__a img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.faq__q p,
.faq__a p {
  margin: 0;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.section_message {
  background-color: var(--color-grey);
  background-image: url(https://entrijapan.jp/wp-content/uploads/2026/04/voices_bg.webp);
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: repeat-y;
  border-radius: 100px 100px 0 0;
}

.area_message {
  max-width: var(--display-width);
  margin: 0 auto;
  padding: var(--pc-padding-top) 0 0 0;
  position: relative;
}

.area_message__title {
  width: var(--pc-title-width);
  margin: 0 auto;
  padding-bottom: var(--pc-title-padding-bottom);
}

.area_message__body {
  width: 70%;
  margin: 0 auto;
  padding-bottom: 220px;
}

.staff_man,
.staff_woman {
  width: 10%;
  position: absolute;
  bottom: 0;
}

.staff_woman {
  right: 0;
  width: 30%;
}

/*-------------------------------------
CTAエリア設定
-------------------------------------*/
.section_cta {
  background: var(--color-light-blue);
}

.area_cta {
  max-width: var(--display-width);
  margin: 0 auto;
  padding: 50px;
}

.area_cta__content {
  background: #f2f1ed;
  padding: 30px 50px;
  position: relative;
}


.area_cta__title {
  /* width: var(--pc-title-width); */
  margin: 0 auto;
  padding-bottom: 30px;
}

.area_cta__body {
  width: 70%;
  padding-left: 40px;
}

.area_cta__btn {
  /* animation: pulse 1.6s ease-in-out infinite; */
  transform-origin: center;
  will-change: transform;
  padding-bottom: 8px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.fixed_cta {
  display: none;
}

.vietnam_staff {
  position: absolute;
  width: 27%;
  bottom: 0;
  right: 50px;
}

/*-------------------------------------
フッター設定
-------------------------------------*/
.footer {
  background: var(--color-navy);
  padding: 2em 0 8em 0;
  text-align: center;
  font-size: 1.4em;
  box-shadow: var(--box-shadow);
  color: #fff;
}

.footer a {
  color: #fff;
  cursor: pointer;
}

/*-------------------------------------
thanks
-------------------------------------*/
.area_thanks {
  max-width: var(--display-width);
  margin: 0 auto;
  padding: var(--pc-padding-top) var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}

.area_thanks__title {
  width: var(--pc-title-width);
  margin: 0 auto;
  margin-bottom: 50px;
  text-align: center;
}

.area_thanks__body {
  width: var(--pc-body-width);
  margin: 0 auto;
}

/*-------------------------------------
Contact form7
-------------------------------------*/
.wpcf7 {
  max-width: 800px;
  padding-top: 1rem;
  margin: 0 auto;
}

.wpcf7-form {
  margin: 0 auto;
  background: white;
  padding: 1rem 2rem;
  border-radius: 20px;
}

.wpcf7-form label {
  display: block;
  font-weight: 500;
  font-size: 15px;
  padding-bottom: 10px;
}

.address_0 {
  margin-top: 10px;
}

.wpcf7-checkbox {
  margin-bottom: 10px;
}

.presents_item p .wpcf7-form-control-wrap {
  margin-top: 10px;
}


.wpcf7 form>p {
  margin-bottom: 1.5em;
}

.wpcf7-form .required {
  letter-spacing: normal;
  text-indent: 0;
  font-size: 12px;
  font-family: Noto Sans JP, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background-color: #e74c3c;
  border-radius: 2px;
  padding: 1px 2px;
  margin-left: 0.5rem
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.wpcf7-list-item-label a {
  color: blue;
  text-decoration-line: underline;
}

.wpcf7-submit {
  margin-top: 30px;
  width: 100%;
  padding: 15px;
  background-color: #fcca3f;
  color: #333;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.wpcf7 .wpcf7-submit:disabled {
  background-color: #cfced3;
}

button:hover {
  background-color: #1976d2;
}

.wpcf7-response-output {
  display: none;
}

input::placeholder {
  color: #aaa;
}