@charset "utf-8";

/* CSS Document */


/* ------------------------------------
PC用レイアウト（768px以上スクリーン）
------------------------------------ */

/* body全体の初期スタイル調整 */
body{
   /* font-size: 62.5%; emの計算をしやすくするための定番設定 */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
}



/* ------------------------------------
全体レイアウト/背景設定（PC）
------------------------------------ */

/* 全体エリア（全体背景を設定するにはここ） */
.main{
  background-image: url(../images/top_image_back.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* スクロールしても固定 */
}

/* 記事（ボディ）エリア */
.article{
  background-color: #fff;
  /* border-left: 1px solid #ccc; */
  /* border-right: 1px solid #ccc; */
  /* font-size: 1.6em; =16px */
  padding-top: 3em;
}

/* 記事（ボディ）エリアの行間 */
.article p{
  line-height: 1.6;
}

/* カラム全体の幅を変更する */
.article,.top_image_in{
  width: 600px;
  margin: 0 auto; /* 真ん中に要素を置きたい時に使う */
}

.br_sp{
  display: none;
}


/* ------------------------------------
上部固定ヘッダー設定
------------------------------------ */

/* 上部固定ヘッダー全体 */
.header{
  position: sticky;
  /* position: -webkit-sticky; */
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  overflow: auto;
}

/* ヘッダー内部をカラム幅にする */
.header_inr{
  max-width: 950px;
  margin: 0 auto;
  overflow: hidden;
}


/* 既存ヘッダーの設定 */
h1 {
    position: absolute;
    top: 0;
    margin: 0 auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 1.14rem;
    z-index: -10;
    opacity: 0;
    pointer-events: none;
}

/* ヘッダー内の画像が常に100%になるように */
.header_logo img,.header_mail img,.header_tel img{
  width: 100%;
}

/* ------------------------------------
FV設定
------------------------------------ */
.top_image{
  position: relative;
}


.fv_cta_btn{
  position: absolute;
  padding: 1rem;
  bottom: 7%;
}


/* ------------------------------------
10秒でわかるエリア設定
------------------------------------ */
#about{
  background-image: url(../images/about-bg.jpg);
  background-size: cover;
  background-position: center top;
  padding-bottom: 5rem;
  text-align: center;
}

#about h2{
  margin-top: 0;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

#about p{
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  display: inline-block;
  margin: 0 auto;
}

.about_img01{
  width: 80%;
  margin: 3rem auto 2rem; 
}

.about_img02{
  width: 90%;
  margin: 2rem auto;
}

.about_text{
  width: 90%;
  margin: 2rem auto 3rem;
}

.about_cta_area{
  margin-top: 4rem;

}

/* ------------------------------------
共通CTA部分設定
------------------------------------ */
.whemo_icon{
  width: 30%;
  margin: 0 auto 2rem;
}

.whemo_icon02{
  width: 50%;
  margin: 0 auto 2rem;
}

.cta_area_btn{
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 1rem;
}


/* ------------------------------------
導入エリア設定
------------------------------------ */
#introduction{
  background-image: url(../images/introduction-bg.jpg);
  background-size: cover;
  padding: 0 0 5rem;
}

#introduction h2{
  width: 100%;
  margin: 0 auto 1rem;
}

.introduction_text01{
  text-align: right;
  padding-right: 2rem;
}

.introduction_img{
  width: 25%;
  margin-left: 110px;
  margin-bottom: 2rem; 
}

.introduction_text02{
  font-size: 1.5rem;
  font-weight: 400;
  padding: 1rem 2rem;
}

.introduction_gold{
  color: #e8c786;
}

/* ------------------------------------
解決策エリア設定
------------------------------------ */
#solution{
  background-color: #24365e;
  padding: 3rem 0;
}

#solution h2{
  width: 90%;
  margin: 0 auto 3rem;
}

#solution .solution_text{
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2;
  width: 85%;
  margin: 4rem auto;
}

.solution_gold{
  color: #e8c786;
  font-size: 1.5rem;
}

.solution_img01{
  width: 90%;
  margin: 0 auto;
}

.solution_img02{
  width: 80%;
  margin: 3rem auto;
}




/* ------------------------------------
機能エリア設定
------------------------------------ */
#function{
  background-image: url(../images/function-bg.jpg);
  background-size: cover;
  padding: 3rem 0 6rem;
}

#function h2{
  width: 70%;
  margin: 1rem auto 4rem;
}

.function_inr{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.function_inr_2nd{
  flex-direction: row-reverse;
}

.function_text_wrap{
  width: 50%;
}

.function_img_wrap{
  width: 45%;
}

.function_img_wrap_sp{
  display: none;
}


#function h3{
  background-color: #24365e;
  color: #e8c786;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#function p{
  background-color: #24365e;
  font-weight: 400;
  padding: 1rem;
  border-radius: 12px;
}

.function_no{
  width: 35px;
}

.function_big{
  font-size: 1.3rem;
  color: #e8c786;
}


/* ------------------------------------
特徴エリア設定
------------------------------------ */
#feature{
  background-color: #001735;
  padding: 0 0 4rem;
}

#feature h2{
  width: 90%;
  margin: 0 auto 5rem;
}

#feature h3{
  font-size: 1.3rem;
  color: #e8c786;
}

.feature_inr{
  margin-bottom: 5rem;
}

.feature_title{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.feature_no{
  width: 50px;
}

.feature_content{
  width: 90%;
  margin: 2rem auto;
}


.feature_content p{
  font-weight: 400;
}

.feature_big{
  font-size: 1.2rem;
}

.feature_gold{
  color: #e8c786;
}

.feature_img01{
  margin-top: -80px;
  margin-bottom: 5rem;
}


/* ------------------------------------
お客様の声エリア設定
------------------------------------ */
#voice{
  background-color: #3e6095;
  padding: 0 0 0.1px;
}

#voice h2{
  width: 80%;
  margin: 2rem auto;
  padding-right: 10px;
}

.voice_inr{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.voice_h3{
  font-size: 1.3rem;
}

.voice_h3_sp{
  display: none;
}

.voice_inr_2nd{
  flex-direction: row-reverse;
}

.voice_img{
  width: 30%;
}

.voice_img02{
  width: 35%;
}

.voice_content{
  width: 50%;
}

#voice h3{
  color: #e8c786;
  font-weight: 500;
}

.voice_attribute{
  font-size: 14px;
  margin: 0;
}

.voice_content_text{
  font-weight: 400;
}

.voice_line{
  width: 60%;
  margin: 4rem auto;
}

.voice_text{
  width: 90%;
  margin: 4rem auto;
}


/* ------------------------------------
よくある質問エリア設定
------------------------------------ */
#faq{
  background-color: #3e6095;
  padding: 1rem 0 0;
}

#faq h2{
  width: 100%;
  margin: 2rem auto 4rem;
}


/* アコーディオン */
.faq_item {
  width: 90%;
  margin: 0 auto 3rem;
  border-radius: 12px;
  overflow: hidden;
}

.faq_question {
  width: 100%;
  background-color: #8e85b3; /* 紫色 */
  color: #fff;
  font-size: 1.1rem;
  padding: 16px 20px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
  font-family: "Noto Sans JP", sans-serif;
}

.faq_question .q_label{
  font-size: 1.5rem;
  width: 10%;
}

.faq_question .q_text{
  width: 100%;
  text-align: left;
  font-size: 16px;
}

.faq_question .faq_question_text p,
.faq_answer .faq_answer_text p{
  margin: 0;
}

.faq_question .arrow {
  width: 12px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.faq_question.active .arrow {
  transform: rotate(-135deg);
}

.faq_answer {
  background: #fff;
  padding: 16px 20px;
  border-radius: 0 0 12px 12px;
  display: none;
}


.faq_question_text{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 90%;
}

.faq_answer_text{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq_answer .faq_answer_text .a_label{
  width: 5%;
  color: #07203a;
}

.faq_answer .faq_answer_text .a_text{
  width: 90%;
  font-size: 14px;
  color: #07203a;
}

.faq_text01{
  width: 100%;
}




/* ------------------------------------
オファーエリア02設定
------------------------------------ */
#offer{
  background-color: #3e6095;
  padding: 1rem 0 4rem;
}

#offer p{
  text-align: center;
  font-weight: 400;
  margin-bottom: 6%;
}

.offer_text01{
  margin-top: -40px;
}


/* ------------------------------------
世界観エリア設定
------------------------------------ */
#worldview{
  background: linear-gradient(180deg, #78668f, #072039);
  padding: 0 0 4rem;
}

#worldview h2{
  margin-top: 0;
}

.worldview_text01{
  width: 80%;
  margin: 3rem auto 0;
  font-weight: 400;
}

.worldview_img{
  width: 80%;
  margin: 0 auto 3rem;
}

.worldview_img04{
  width: 80%;
  margin: 4rem auto 3rem;
}

.worldview_line{
  width: 60%;
  margin: 4rem auto;
}

.worldview_cta_area{
  margin-top: 4rem;
}

.worldview_line02{
  width: 20px;
  margin: 5rem auto;
}

/* ------------------------------------
footer部分
------------------------------------ */
.footer{
  background-color: #001735;
  padding: 2em 0;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

.footer a{
  color: #fff;
}

.footer_logo{
  width: 154px;
  margin: 0 auto 2rem;
}



/* ------------------------------------
特商法エリア部分
------------------------------------ */
.terms{
  font-family: 'Klee One', sans-serif;
  color: #333;
  border: none;
  width: 700px;
  padding-bottom: 3rem;
}

.terms h2{
  text-align: center;
}

table{
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 1em 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;
}