@charset "UTF-8";

/*-----------------------------------------------------------------------------------------------------
共通設定(PC)
--------------------------------------------------------------------------------------------------------*/
html,
body {
  width: 100%;
}

body {
  font-family: "ヒラギノ角ゴ ProN", sans-serif;
  font-size: 62.5%;
  font-style: normal;
  line-height: 1.5;
  color: #5c5c5c;
}

/*リンク文字の設定*/
a {
  text-decoration: none;
}

a:link,
a:visited {
  color: #fff;
}

a:hover {
  color: #fff;
}

/*ボタンホバー設定(半透明)*/
.btn:hover {
  opacity: 0.7;
}

/*-----------------------------------------------------------------------------------------------------
各エリアの設定(PC)
-----------------------------------------------------------------------------------------------------*/
/*ページ全体*/
#container {
  position: relative;
  padding-top: 6.5em;
}

/*本体*/
.main {
  margin-bottom: 0em;
}

/*カラム部分*/
.main-in {
  padding: 1.5em 0;
}

/*カラム内部のサイズ*/
.main-contents .contents {
  margin-bottom: 1.5em;
  padding: 0 40px;
}

/*段落タグ*/
.main-contents p {
  line-height: 2em;
}

/*全体のフォントサイズ*/
.main-contents {
  font-size: 1.6em;
}

/*-----------------------------------------------------------------------------------------------------
ｈタグの設定(PC)
-----------------------------------------------------------------------------------------------------*/
/*H2タグ*/
.main-contents h2 {
  position: relative;
  margin-top: 1em;
  margin-bottom: 1.5em;
  font-size: 1.6em;
  text-align: center;
  color: #000;
}

.main-contents h2:before {
  content: '';
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #3333;
  border-radius: 2px;
}

/*H3タグ*/
.main-contents h3 {
  margin-bottom: 0.5em;
}

/*H4タグ*/
.main-contents h4 {
  margin-top: 1em;
  margin-bottom: 0.5em;
  border-left: 8px solid #3333;
  padding: 0.4em 0.6em;
  font-weight: bold;
}

/*H5タグ*/
.main-contents h5 {
  margin: 0 0 1.5em;
  padding: 0 0.8em 0.5em;
  border-bottom: 2px solid #3333;
  font-weight: bold;
}

/*-----------------------------------------------------------------------------------------------------
グローバルナビ
-----------------------------------------------------------------------------------------------------*/
.inner {
  width: 1050px;
  margin: 0 auto;
}

.inner:after {
  content: "";
  clear: both;
  display: block;
}

/* header */
#top-head {
  background-color: rgba(255, 255, 255, 0.9);
  top: -100px;
  position: absolute;
  width: 100%;
  margin: 80px auto 0;
  padding: 30px 0 0;
  line-height: 1;
  z-index: 999;
}

#top-head a,
#top-head {
  color: #000;
  text-decoration: none;
}

#top-head .inner {
  position: relative;
}

#top-head .logo {
  float: left;
  font-size: 36px;
  width: 20%;
  margin-top: 0px;
}

#top-head .logo img {
  width: 100%;
}

#global-nav ul {
  list-style: none;
  position: absolute;
  left: 20%;
  right: 10%;
  top: 26%;
  font-size: 1.4em;
}

#global-nav ul li {
  float: left;
  padding: 0em 0em 0em 1em;
}

#global-nav ul li a:hover {
  border-bottom: 3px solid #2aadec;
  padding-bottom: 10px;
}

#global-nav ul li a {
  padding: 0 13px;
}

.btn_item {
  float: right;
  width: 50%;
  margin-top: 0px
}

.btn_item a {
  background-color: #ccc;
  float: right;
  margin-right: 5px
}

.btn_item img {
  width: 100%;
}

.btn_item_sp {
  display: none;
}

/* Fixed */
#top-head.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  padding-top: 5px;
  padding-bottom: 0px;
  height: 50px;
  background: #fff;
  background: rgba(255, 255, 255, .8);
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
}

#top-head.fixed .logo {
  font-size: 24px;
  width: 16%;
  color: #333;
}

#top-head.fixed #global-nav ul li a {
  color: #333;
  padding: 0 13px;
}

#top-head.fixed #global-nav ul li a:hover {
  border-bottom: 3px solid #2aadec;
  padding-bottom: 10px;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}

#nav-toggle div {
  position: relative;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #666;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 11px;
}

#nav-toggle span:nth-child(3) {
  top: 22px;
}

/*ログインボタン*/
button.login {
  background: #fff;
  color: #3c3c3c;
  border: none;
  position: relative;
  height: 40px;
  font-size: 1.4em;
  padding: 0 2em;
  cursor: pointer;
  transition: 800ms ease all;
  outline: none;
  border: 1px solid #3c3c3c;
}

button.login:hover {
  background: #3c3c3c;
  color: #fff;
}

button.login:before,
button.login:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #fff;
  transition: 400ms ease all;
}

button.login:after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}

button.login:hover:before,
button.login:hover:after {
  width: 100%;
  transition: 800ms ease all;
}

/*登録ボタン*/
button.regist {
  background: #E75E57;
  color: #fff;
  border: none;
  position: relative;
  height: 40px;
  font-size: 1.4em;
  padding: 0 2em;
  cursor: pointer;
  transition: 800ms ease all;
  outline: none;
}

button.regist:hover {
  background: #fff;
  color: #E75E57;
}

button.regist:before,
button.regist:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #E75E57;
  transition: 400ms ease all;
}

button.regist:after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}

button.regist:hover:before,
button.regist:hover:after {
  width: 100%;
  transition: 800ms ease all;
}

/*コンタクトエリア登録ボタン*/
button.contact_regist {
  background: #E75E57;
  color: #fff;
  border: none;
  position: relative;
  width: 100%;
  height: 80px;
  font-size: 1.6em;
  margin: 0em 0em 0em;
  padding: 0 1em;
  cursor: pointer;
  transition: 800ms ease all;
  outline: none;
}

button.contact_regist:hover {
  background: #fff;
  color: #E75E57 !important;
}

button.contact_regist:hover a {
  color: #E75E57 !important;
}

button.contact_regist:before,
button.contact_regist:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #E75E57;
  transition: 400ms ease all;
}

button.contact_regist:after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}

button.contact_regist:hover:before,
button.contact_regist:hover:after {
  width: 100%;
  transition: 800ms ease all;
}

/*資料ダウンロードボタン*/
button.download {
  background: #4d9ecc;
  color: #fff;
  border: none;
  position: relative;
  width: 100%;
  height: 80px;
  font-size: 1.6em;
  margin: 0.5em 0em 1em;
  padding: 0 1em;
  cursor: pointer;
  transition: 800ms ease all;
  outline: none;
}

button.download:hover {
  background: #fff;
  color: #4d9ecc !important;
}

button.download:hover a {
  color: #4d9ecc !important;
}

button.download:before,
button.download:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #4d9ecc;
  transition: 400ms ease all;
}

button.download:after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}

button.download:hover:before,
button.download:hover:after {
  width: 100%;
  transition: 800ms ease all;
}

/*-----------------------------------------------------------------------------------------------------
ファーストビュー(ヘッダー画像)
-----------------------------------------------------------------------------------------------------*/
#main-image {
  padding-top: 0em;
  height: auto;
}

#main-image-in {
  position: relative;
  padding-bottom: 0em;
  background-color: transparent;
}

/* PC版画像はPCで表示、SPでは非表示 */
.pc-image {
  width: 100%;
  height: auto;
  display: block;
  /* PC版では表示 */
}

/* SP版画像はPCで非表示、SPで表示 */
.sp-image {
  width: 100%;
  height: auto;
  display: none;
  /* PC版では非表示 */
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {

  /* スマホ版ではPC画像を非表示、SP画像を表示 */
  .pc-image {
    display: none;
  }

  .sp-image {
    display: block;
  }
}


/*-----------------------------------------------------------------------------------------------------
ファーストビュー(ヘッダー画像の中の文字関連)
-----------------------------------------------------------------------------------------------------*/
.catchcopy {
  width: 100%;
  text-align: left;
  position: absolute;
  top: 35%;
  left: 3%;
  color: #000;
  padding: 0.5em 0em;
}

.catchcopy_sub {
  font-size: 3em;
  color: #000;
}

.catchcopy_main {
  font-size: 5em;
  padding-bottom: 0.1em;
  margin-bottom: 0.1em;
  text-shadow: 0px 0px 1px #fff;
  font-weight: bold;
  color: #000;
}

.catchcopy_sub_02 {
  font-size: 2em;
  width: 42%;
  background-color: #8FC31E;
  padding: 0.2em 0.5em;
  color: #fff;
  text-align: center;
}

/*-----------------------------------------------------------------------------------------------------
メイン部分(ボディ) ※ここに案件独自のcssを記述していく
-----------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
セクション 実績
-----------------------------------------------------------------------------------------------------*/
.section_jisseki {
  background-color: #fff;
}

.section_jisseki_in {
  background-color: transparent;
}

.subcatch {
  margin: 0 0em;
  padding: 0.6em 0em;
  width: 100%;
  background-color: #0083e9;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
  color: #fff;
  font-size: 2.5em;
}

.subcopy {
  font-size: 1.6em;
}

.box_jisseki_left {
  float: left;
  width: 50%;
  overflow: auto;
}

.box_jisseki_right {
  float: right;
  width: 50%;
  overflow: auto;
}

#grid {
  width: 100%;
  text-align: center;
}

.logos li {
  width: 18.9%;
  background-color: #fff;
  margin: 5px;
  float: left;
  list-style: none;
}

/*-----------------------------------------------------------------------------------------------------
セクション 悩み
-----------------------------------------------------------------------------------------------------*/
.section_nayami {
  background-color: #F7FDFF;
}

.section_nayami_in {
  background-color: transparent;
}

.area_box_nayami {
  display: flex;
}

.box_nayami {
  background-color: #fff;
  width: 50%;
  float: left;
  margin-right: 5px;
  text-align: center;
  padding: 0em 0em;
  margin-top: 1em;
  font-size: 1.6em;
  color: #4d9ecc;
}

.box_nayami img {
  margin-bottom: 5px;
}

.sentence_01 {
  font-size: 1.3em;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

/*-----------------------------------------------------------------------------------------------------
セクション 悪徳
-----------------------------------------------------------------------------------------------------*/
.section_akutoku {
  background-color: #4D4D4D;
}

.section_akutoku_in {
  background-color: transparent;
}

.area_box_akutoku {
  display: flex;
}

.box_akutoku {
  background-color: #fff;
  width: 50%;
  float: left;
  margin-right: 5px;
  text-align: center;
  padding: 0em 0em;
  margin-top: 1em;
  font-size: 1.6em;
  color: #4d9ecc;
}

.box_akutoku img {
  margin-bottom: 5px;
}

s .sentence_02 {
  font-size: 1.6em;
  text-align: center;
  font-weight: bold;
  color: #333;
}





/*-----------------------------------------------------------------------------------------------------
セクション 紹介
-----------------------------------------------------------------------------------------------------*/
.section_syokai {}

.section_syokai_in {
  background-color: transparent;
}

.img_tyousei {
  margin: 0 4em;
}

.fadein {
  opacity: 0;
  transform: translateY(0px);
  transition: all 2s;
}

.fadeinleft {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 2s;
}

.title_setumei {
  text-align: center;
  font-size: 1.6em;
  font-weight: bold;
}

p.title_setumei {
  line-height: 1.7em;
}






/*-----------------------------------------------------------------------------------------------------
セクション 動画
-----------------------------------------------------------------------------------------------------*/
.section_movie {
  background-color: #f6f6f6;
}

.section_movie_in {
  background-color: transparent;
}

/*-----------------------------------------------------------------------------------------------------
セクション 特徴
-----------------------------------------------------------------------------------------------------*/
.section_tokutyo {
  background-color: #F7FDFF;
}

.section_tokutyo_in {
  background-color: transparent;
}

.area_merit {
  margin-top: 1em;
}

.box_service {
  background-color: #fff;
  padding: 1em 2em;
  font-size: 1.2em;
  margin-top: 1em;
  border-radius: 15px;
}

/*H3タグ*/
.main-contents h3.b {
  font-size: 1.6em;
  margin-bottom: 0.5em;
}

.box_service p {
  line-height: 1.8em;
}

.box_service img {
  width: 100%;
}

/*-----------------------------------------------------------------------------------------------------
セクション 問い合わせ
-----------------------------------------------------------------------------------------------------*/
.section_contact {
  background-image: url(../images/bg_section_05.jpg);
  background-repeat: no-repeat;
  /* 背景を繰り返さない */
  background-position: 50% 50%;
  /* 背景画像の位置は画面中央 */
  background-attachment: fixed;
  /* 背景画像を固定する */
  background-size: cover;
}

.section_contact _in {
  background-color: transparent;
}

.box_contact {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  margin-top: 0.5em;
  padding: 0em 2em 1em;
}

/*-----------------------------------------------------------------------------------------------------
セクション サービス
-----------------------------------------------------------------------------------------------------*/
.area_box_projecter {
  display: flex;
}

.box_projecter {
  width: 33.3333%;
  margin-right: 5px;
}

/*テーブルタグ*/
.main-contents table {
  margin-bottom: 1.5em;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px 5px;
}

.main-contents th,
.main-contents td {
  background-color: #f6f6f6;
  padding: 10px;
  text-align: center;
  border-left: 1px solid #fff;
}

.main-contents th {
  background: #4d9ecc;
  vertical-align: middle;
  text-align: center;
  width: 100px;
  overflow: visible;
  position: relative;
  color: #fff;
  font-weight: normal;
}

.main-contents table.table-style01 th,
.main-contents table.table-style01 td {
  text-align: left;
  vertical-align: center;
  font-size: 100%;
}

.table-style04 th {
  background-color: #54B7D3 !important;
  color: #fff;
  border-left: 0px solid #ccc;
}

.table-style04 th,
td {
  padding: 0.5em !important;
  border-radius: 5px;
}

.table-style04 td {
  border-left: 1px solid #ccc;
}

/*-----------------------------------------------------------------------------------------------------
よくある質問部分のアコーディオン
-----------------------------------------------------------------------------------------------------*/
.box_qa {
  margin-bottom: 1em;
}

.accordion_header_01 {
  margin: 0px 0px 0em 0px;
  background: url(../images/+.png) no-repeat;
  background-color: #fff;
  background-size: 30px;
  background-position: 98% 50%;
  padding: 15px 10px 15px 25px;
  color: #4d9ecc;
  border: 2px solid #4d9ecc;
  font-size: 120%;
  height: auto;
  vertical-align: middle;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  display: block;
}

.selected01 {
  background: url(../images/_.png) no-repeat;
  background-color: #4d9ecc;
  background-position: 98% 50%;
  color: #fff;
}

.selected01+* {
  background: #fff;
  background-position: 8px 50%;
}

.accordion_open_01 {
  margin: 0px 0px 15px 0px;
  padding: 1em 2em 0.5em;
  background: #fff;
  border-left: solid 4px #4d9ecc;
  border-right: solid 4px #4d9ecc;
  border-bottom: solid 4px #4d9ecc;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
}

.accordion_open_01:before {
  content: "";
}

.accordion_field_01 {
  display: block;
  line-height: 1.5;
  text-align: left;
  padding: 0 0 0 0px;
  margin: 0px 0 10px 0;
  color: #000;
  font-size: 100%;
  width: 100%;
}

.box_support {
  background-color: #f6f6f6;
  padding: 1em;
}

.accordion_field_01 a {
  text-decoration: underline;
  color: #4d9ecc;
}

/*-----------------------------------------------------------------------------------------------------
セクション　会社概要
-----------------------------------------------------------------------------------------------------*/
.section_company {
  background-color: #F7FDFF;
}

.section_company_in {
  background-color: transparent;
}

.table-style02 th {
  background-color: #4d9ecc;
  border-radius: 0px;
}

.table-style02 td {
  background-color: #fff;
  text-align: left !important;
  border-radius: 5px;
  padding: 0.5em !important;
}

.box_gaiyo_left {
  float: left;
  width: 46%;
  padding: 1em
}

.box_gaiyo_right {
  float: right;
  width: 47%;
  padding: 1em
}

.box_gaiyo_right a {
  color: #000;
  text-decoration: underline;
}

/*-----------------------------------------------------------------------------------------------------
フッター部分
-----------------------------------------------------------------------------------------------------*/
#footer {
  background: #4d9ecc;
  padding: 2em 0;
  text-align: center;
  color: #fff;
  font-size: 1.4em;
}

#footer a {
  color: #fff;
}

/*--------------------------------------------------------
Youtube調整タグ
--------------------------------------------------------*/
.youtube_size {
  width: 640px;
  height: 440px;
}

.sp_br {
  display: none;
}

.m-back-to-top_sp a {
  display: none;
}

/*--------------------------------------------------------
お知らせ
--------------------------------------------------------*/
.notice-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.notice-header {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 20px;
  border-bottom: 2px solid #003366;
  padding-bottom: 10px;
}

.notice-item {

  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: #333;
}

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

.notice-date {
  font-size: 16px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
}

.notice-title {
  font-size: 16px;
  margin-left: 20px;
  color: #333;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-item:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

/*-----------------------------------------------------------------------------------------------------
実績紹介
-----------------------------------------------------------------------------------------------------*/
.section_jisseki {
  background-color: #fff;
}

.section_jissek {
  background-color: transparent;
}

.img_tyousei {
  margin: 0 4em;
}

.fadein {
  opacity: 0;
  transform: translateY(0px);
  transition: all 2s;
}

.fadeinleft {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 2s;
}

.title_setumei {
  text-align: center;
  font-size: 1.6em;
  font-weight: bold;
}

p.title_setumei {
  line-height: 1.7em;
}

.text_setumei {
  text-align: center;
  font-size: 1.2em;
  margin-top: 0em;
  margin-bottom: 1em;
}

/* PC版のCSS */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* 画像を均等に配置 */
  margin-top: 30px;
  margin-bottom: 30px;
}

.flex-item {
  width: calc(33.333% - 15px);
  /* 3列にするための幅と余白 */
  box-sizing: border-box;
}

.flex-item img {
  display: block;
  width: 100%;
  height: auto;
  /* ここからドロップシャドウの設定 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* SP版のCSS (768px未満) */
@media screen and (max-width: 767px) {
  .flex-container {
    flex-direction: column;
    /* 縦に並べる */
  }

  .flex-item {
    width: 90%;
    /* 幅を100%にする */
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin: 0 10px;
    /* アイテム間の縦の余白 */
  }
}


/* 客声 */
.voice-section {
  background-color: #f8f8f8;
  padding: 50px 20px;
}

.voice-title-image {
  text-align: center;
  margin-bottom: 50px;
}

.voice-title-img {
  max-width: 800px;
  width: 100%;
  height: auto;
}

.voice-list {
  display: flex;
  flex-direction: column;
  /* 常に縦並びにする */
  align-items: center;
  /* 項目を中央に配置 */
  gap: 30px;
}

.voice-item {
  background-color: #ffffff;
  max-width: 800px;
  width: 100%;
  /* 親要素の幅いっぱいに広げる */
  text-align: left;
  /* テキストを左寄せに修正 */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
}

.voice-case-label {
  background-color: #e44d5c;
  color: #fff;
  font-weight: normal;
  font-size: 1.8em;
  padding: 5px 15px;
  border-radius: 5px;
  position: absolute;
  top: -15px;
  left: 20px;
}

.voice-item h3 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.voice-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.voice-profile {
  display: flex;
  align-items: center;
}

.voice-profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 15px;
  margin-bottom: 0;
}

.voice-item h3 {
  font-size: 1.9em;
}

.voice-profile-text {
  color: #2C4A7C;
  font-weight: bold;
  font-size: 1.7em;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .voice-profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .voice-profile img {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .voice-profile-text {
    color: #e44d5c;
    font-size: 1.4em;
    font-weight: normal;
  }
}

/* オファー */
.offer-section {
  background-color: #FEFBF3;
  /* 必要に応じて背景色を変更 */
  padding: 50px 20px;
}

.offer-container {
  max-width: 860px;
  /* 親コンテナの最大幅 */
  margin: 0 auto;
  text-align: center;
  /* 画像を中央に配置 */
}

.offer-image {
  max-width: 100%;
  /* PCでは親コンテナの幅に合わせる */
  height: auto;
}

/* スマホ版スタイル (767px以下) */
@media screen and (max-width: 767px) {
  .offer-section {
    padding: 30px 10px;
    /* スマホ版の余白を調整 */
  }
}

/* 導入のながれ */

.flow-section {
  padding: 50px 20px;
  background-color: #f8f8f8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  text-align: center;
}

.flow-header h2,
.service-flow-header h2 {
  font-size: 2.5em;
  color: #4d9ecc;
  font-weight: bold;
  margin-bottom: 40px;
}

.flow-container,
.service-flow-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.flow-item {
  width: 200px;
}

/* アイコンとテキストの配置 */
.flow-content-wrapper {
  display: flex;
  flex-direction: column;
  /* 縦に並べる */
  align-items: center;
  /* 中央寄せ */
  text-align: center;
}

.flow-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.flow-icon img {
  width: 100%;
  height: auto;
}

.flow-item h3 {
  font-size: 1.8em;
  font-weight: bold;
  color: #4d9ecc;
  margin: 0 0 10px 0;
}

.flow-item p {
  font-size: 1.5em;
  color: #666;
  line-height: 1.6;
}

.flow-arrow,
.service-arrow {
  font-size: 30px;
  color: #4d9ecc;
  align-self: center;
}

.service-flow-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* 上揃えに修正 */
  flex-wrap: wrap;
  gap: 10px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-item img {
  width: 50px;
  height: 50px;
}

.service-item p {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}

.cta-button-container {
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  background-color: #e44d5c;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button .sub-text {
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin-top: 5px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {

  .flow-container,
  .service-flow-container {
    flex-direction: column;
    align-items: center;
  }

  .flow-item {
    width: 100%;
  }

  .flow-arrow,
  .service-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

}


/* --------------------
    対応エリアパート
-------------------- */
.area-section {
  padding: 50px 20px;
  background-color: #f8f8f8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  text-align: center;
}

.area-header h2 {
  font-size: 28px;
  font-weight: bold;
  color: #4d9ecc;
  margin-bottom: 40px;
}

.area-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: wrap;
  /* スマホで折り返す */
}

.area-text-box {
  background-color: #eaf1ff;
  padding: 20px;
  border-radius: 5px;
  text-align: left;
  flex: 1;
  /* 親要素の残りのスペースを埋める */
  min-width: 250px;
}

.area-text-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.area-image-box {
  flex: 1;
  max-width: 400px;
}

.area-image-box img {
  width: 100%;
  height: auto;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .area-container {
    flex-direction: column;
    gap: 20px;
  }

  .area-text-box {
    text-align: center;
  }
}

/* --------------------
    追伸パート
-------------------- */
.ps-section {
  padding: 50px 20px;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.ps-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ps-header p {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 30px;
}

.ps-content p,
.ps-content li {
  font-size: 1.6em;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: left;
}

.ps-content ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.ps-content ul li {
  position: relative;
  margin-bottom: 10px;
}

.ps-content ul li::before {
  content: "•";
  /* 箇条書きのドット */
  color: #3f68b3;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: -20px;
  top: -2px;
}

.ps-content h3 {
  font-size: 1.6em;
  font-weight: bold;
  color: #3f68b3;
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: center;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .ps-container{
  padding: 0 10px;
}

.ps-content p,
.ps-content li {
  font-size: 1.2em;

  .ps-content h3 {
    font-size: 1.4em !important;
  }
}
}
/* --------------------
    お問い合わせフォーム
-------------------- */
.contact-section {
  padding: 50px 5px;
  background-color: #f8f8f8;
  text-align: center;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.contact-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #e44d5c;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.form-group,
.form-group-radio,
.form-group-textarea {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 25px;
}

.form-group label,
.form-group-radio .radio-label,
.form-group-textarea label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  width: 180px;
  flex-shrink: 0;
}

.required {
  color: #e44d5c;
  font-size: 12px;
  font-weight: normal;
  background-color: white;
  border: 1px solid #e44d5c;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  flex: 1;
  padding: 12px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

.radio-options {
  display: flex;
  gap: 20px;
  align-items: center;
}

.radio-options label {
  font-weight: normal;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
  width: auto;
}

.word-count {
  font-size: 12px;
  color: #999;
  text-align: right;
  margin-top: 5px;
  width: 100%;
}

.submit-button {
  width: 300px;
  padding: 15px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: block;
  margin: 30px auto 0;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #45a049;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 20px 15px;
  }

  .form-group,
  .form-group-radio,
  .form-group-textarea {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .form-group label,
  .form-group-radio .radio-label,
  .form-group-textarea label {
    width: 100%;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    width: 100%;
  }

  .radio-options {
    justify-content: flex-start;
    width: 100%;
  }

  .word-count {
    text-align: left;
  }

  .submit-button {
    width: 100%;
  }
}

/* --------------------
    Googleマップ レスポンシブ対応
-------------------- */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9のアスペクト比を維持 */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  /* 900px以上の幅にならないように調整 */
  margin: 0 auto;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}