@charset "utf-8";
:root{
  /* Base Font Size 1.0rem = 10px */
  font-size: 10px;

  /* カラー指定 */
  --color-primary: #222;
  --color-wht: #fff;
  --color-blue: #4b97ed;
  --color-darkblue: #005bb2;
  --color-yellow: #ebfe36;

  --ff: "Noto Sans JP", sans-serif;
  --ff_serif: "Noto Serif JP", serif;
  --ff-en: "Inter", sans-serif;
}
/* 320対応（374以下は、ルートベースフォントサイズを9pxに） */
@media screen and (max-width: 374px){
    :root{
        font-size: 8px;
    }
}
*, *::before, *::after {
  box-sizing: border-box;
}
/* *, *::before, *::after {
  outline: 1px solid red;
} */

html{
  scroll-behavior: smooth;
}
body {
  position: relative;
  background: var(--bg-a);
  font-family: var(--ff);
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--font-primary);
  overflow-x: hidden;
}
img{
  width: 100%;
  height: auto;
}
p{
  position: relative;
  text-align: justify;
  font-size: 1.6rem;
}

a,
a:hover,
a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
a:hover img{opacity: 0.9;}
ul,ol{
  padding-inline-start: 0;
  list-style-position: inside;
}
.wrapper,
.wrap1290{
  max-width: 1080px;
  width: 92.1875%;
  margin-inline: auto;
}
.wrap1290{max-width: 1290px;}

.item_container,
.item_container_r{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.item_container_r{
  flex-direction: row-reverse;
}
.itembox02{width: 48%;}
.itembox03{width: 32%;}

.pc_case{display: block;}
.sp_case{display: none;}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media (max-width: 768px) {
  p{font-size: 1.6rem;}
  .pc_case{display: none;}
  .sp_case{display: block;}
  .itembox02,
  .itembox03{
    width: 100%;
  }
}

/* ==============================
    CTA_btn
=============================== */
.ctaArea{
  background: var(--color-blue);
  padding-block: 20px 30px;
}
.title_cta{
  color: var(--color-yellow);
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.title_cta span{
  font-family: var(--ff-en);
  font-size: 6.0rem;
  font-weight: 600;
}
.wrap_cta{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* gap: 1%; */
  max-width: 1080px;
  width: 92.1875%;
  margin-inline: auto;
}
.wrap_cta::before,
.wrap_cta::after{
  content: "";
  position: absolute;
  bottom: -30px;
  width: 160px;
  height: 250px;
  z-index: 3;
}
.wrap_cta::before{
  background: url(../images/cta_staff01.png) no-repeat bottom center / cover;
  left: -7%;
}
.wrap_cta::after{
  background: url(../images/cta_staff02.png) no-repeat bottom center / cover;
  right: -7%;
}

.btn_cta{
  width: 50%;
  /* flex: 1 1 0;
  max-width: calc((100% - 1%) / 2); */
  display:flex;
  flex-flow: column;
  text-align: center;
}
.btn_cta p{
  text-align: center;
  color: var(--color-wht);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}
a.btn_cta_mitsumori,
a.btn_cta_shiryo {
  position: relative;
  display: block;
  border-radius: 60px;
  max-width: 420px;
  width: 90%;
  color: var(--color-wht);
  text-align: center;
  font-size: 2.4rem;
  padding: 10px;
  margin: auto;
  box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.4);
}
a.btn_cta_mitsumori{
  background: linear-gradient(
    to bottom,
    #f1973f 0%,   /* 上半分の色 */
    #f1973f 50%,
    #ee752f 50%,  /* 下半分の色 */
    #ee752f 100%
  );
}
a.btn_cta_shiryo{
  background: linear-gradient(
    to bottom,
    #60b258 0%,   /* 上半分の色 */
    #60b258 50%,
    #45982c 50%,  /* 下半分の色 */
    #45982c 100%
  );
}
.btn_cta_mitsumori .muryo,
.btn_cta_shiryo .muryo {
  display: inline-block;
  color: var(--color-wht);
  font-size: 2.0rem;
  line-height: 1.2;
  border: 4px double var(--color-wht); /* 外枠 */
  background: #ff1d25;
  padding: 2px 10px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .wrap_cta::before,
  .wrap_cta::after{
    display: none;
  }
  .title_cta{
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .title_cta span{font-size: 4.0rem;}
}


/* 動くボタン */
.action_btn{
  position: relative;
  margin-top: auto;
}
.btn_point {
  position: absolute;
  top: 10px;
  right: 40px;
  display: block;
  width: 60px;
  height: 65px;
}
/* モーション */
/* ぴょんぴょん跳ねる */
.pyonpyon {
  animation: bounceUpDown 1.2s ease-in-out infinite;
  opacity: 1;
}

@keyframes bounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px); /* 上にジャンプ */
  }
  50% {
    transform: translateY(0);     /* 着地 */
  }
  70% {
    transform: translateY(-8px);  /* 少し跳ね返り */
  }
  85% {
    transform: translateY(0);     /* 再着地 */
  }
}

@media (max-width: 768px) {
  .btn_cta{
    width: 100%;
  }
  .btn_cta:first-child{
    margin-bottom: 30px;
  }
  .btn_point{
    right: 0;
  }
}

/* ==============================
    header
=============================== */
header{
  position: relative;
  width: 100%;
  background: var(--color-blue);
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  padding: 15px 20px 10px;
  z-index: 10;
}
.header_inner{
  position: relative;
  max-width: 1660px;
  width: 100%;
  margin: 0 auto;
}
.head_logo{
  width: 200px;
}
.header_text {
  white-space: nowrap;
  margin: 0 30px;
}
.title_head{
  color: var(--color-yellow);
  font-size: 2.4rem;
  font-weight: 700;
}
.head_cta {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.head_cta .action_btn {
  flex: 1;
  margin-top: 0;
}
header .btn_cta_mitsumori,
header .btn_cta_shiryo{
  position: relative;
  display: block;
  border-radius: 60px;
  max-width: none;
  width: 100%;
  font-size: 1.7rem;
  margin: 0;
}
header .btn_cta_mitsumori .muryo,
header .btn_cta_shiryo .muryo{
  font-size: 1.4rem;
}
header .btn_point{
  top: 2px;
  right: -15px;
  width: 50px;
  height: 55px;
}
.head_dome{display: none;}
@media (max-width: 768px) {
  .head_logo{
    width: 50%;
  }
  .header_text,
  .head_cta{
    display: none;
  }
  .head_dome{
    position: absolute;
    right: -10px;
    top: -10px;
    display: block;
    width: 110px;
    height: 100px;
  }
}

/* ==============================
    mv
=============================== */
#mv{
  position: relative;
}
.mv_sp_come{display: none;}
@media (max-width: 768px) {
  .mv_sp_come{
    display: block;
    position: absolute;
    bottom: -30px;
    right: -10px;
    width: 200px;
    height: 180px;
    z-index: 5;
  }
}

/* ==============================
    main
=============================== */
/* こんな不安 */
#fuan{
  position: relative;
  background:repeating-linear-gradient(
  -45deg,
  #74cefe,
  #74cefe 2px,
  #4b97ed 0,
  #4b97ed 10px
  );
  padding: 60px 0;
}
#fuan::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 90px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: repeating-linear-gradient(
    -45deg,
    #74cefe,
    #74cefe 2px,
    #4b97ed 0,
    #4b97ed 10px
  );
  background-position: center top;
}
.title_fuanArea{
  position: relative;
}
.fuan_spimg01,
.fuan_spimg02{
  display: none;
}

.title_fuan{
  color: var(--color-yellow);
  text-align: center;
  font-family: var(--ff_serif);
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
}
.fuchi_blue{
  -webkit-text-stroke: 10px #4b97ed;
  text-stroke: 10px #4b97ed;
  paint-order: stroke;
}

#fuan .item_container{
  align-items: flex-end;
}
#fuan .itembox02:first-child{
  width: 38%;
}
#fuan .itembox02:last-child{
  width: 60%;
}

.fuanbox{
  background: var(--color-wht);
  border-radius: 20px;
  padding: 10px 20px;
}
.fuanbox li{
  list-style: none;
  position: relative;
  color: var(--color-blue);
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 40px;
}
.fuanbox li span{
  background: var(--color-yellow);
}
.fuanbox li::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: url(../images/icon_check.svg) no-repeat;
  background-size: contain;
}

@media (max-width: 768px) {
  #fuan{padding: 100px 0 60px;}
  #fuan::after{
    bottom: -60px;
    width: 120px;
    height: 60px;
  }
  .title_fuan{
    position: relative;
    font-size: 3.0rem;
    z-index: 3;
  }
  #fuan .itembox02:first-child{
    display: none;
  }
  #fuan .itembox02:last-child{
    width: 100%;
  }
  .fuanbox{
    padding: 10px;
  }
  .fuan_spimg01,
  .fuan_spimg02{
    position: absolute;
    display: block;
    z-index: 1;
  }
  .fuan_spimg01{
    top: -60px;
    left: -3%;
    width: 115px;
    height: 140px;
  }
  .fuan_spimg02{
    top: -80px;
    right: -3%;
    width: 140px;
    height: 160px;
  }
  .fuanbox li{
    font-size: 1.6rem;
    padding-left: 30px;
  }
  .fuanbox li::before{
    top: 3px;
    width: 22px;
    height: 22px;
  }

}

/* 選ばれる理由 */
#riyu{
  background: url(../images/riyu_bg.jpg) no-repeat bottom center / cover;
  padding: 80px 0 60px;
}
.title_riyu img{
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 30px;
}
#riyu dl.item_container{
  width: 100%;
  align-items: center;
  margin-bottom: 30px;
}

#riyu dl:last-of-type{
  margin-bottom: 0;
}
#riyu dt{
  width: 180px;
}
#riyu dt img{
  border-radius: 50%;
  width: 180px;
  height: 180px;
  /* dot背景 */
  background-color: #ffffff;
  background-image: radial-gradient(#9fe1ff 6%, transparent 9%),
  radial-gradient(#9fe1ff 6%, transparent 9%);
  background-position: 0 0, 8px 8px;
  background-size: 16px 16px;
}
#riyu dd{
  position: relative;
  width: calc(100% - 190px);
  border-radius: 4px;
  border: 5px solid var(--color-blue);
  background-color: #ffffff;
  background-image: radial-gradient(#9fe1ff 6%, transparent 9%),
  radial-gradient(#9fe1ff 6%, transparent 9%);
  background-position: 0 0, 8px 8px;
  background-size: 16px 16px;
  padding: 30px;
  box-shadow: 8px 8px 0px 0px rgba(235, 254, 54, 1);
}
#riyu dd::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 20px solid #0099ff;
  z-index: 1;
}
#riyu dd::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 20px solid #fff;
  z-index: 2;
}

.title_riyu_point{
  color: var(--color-blue);
  font-family: var(--ff_serif);
  font-size: 2.8rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.title_riyu_point span,
.marker_yel{
  background-image: linear-gradient(0deg, #ebfe36 0.6em, transparent 0.6em);
}
#riyu dd p{
  font-size: 1.8rem;
}
.riyu_staffimg{display: none;}

@media (max-width: 768px) {
  #riyu dt{display: none;}
  #riyu dd{
    width: 97%;
    padding: 10px;
  }
  #riyu dd::before,
  #riyu dd::after{
    display: none;
  }
  .title_riyu_point{
    font-size: 2.0rem;
    padding-left: 70px;
  }
  .riyu_staffimg{
    position: absolute;
    top: -10px;
    left: -10px;
    display: block;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    /* dot背景 */
    background-color: #ffffff;
    background-image: radial-gradient(#9fe1ff 6%, transparent 9%),
    radial-gradient(#9fe1ff 6%, transparent 9%);
    background-position: 0 0, 8px 8px;
    background-size: 16px 16px;
    }
    #riyu dd p{
      font-size: 1.6rem;
    }

}

/* 施工実績 */
#case{
  background: url(../images/bg_dot.gif);
  padding-block: 60px;
}
.title_case img{
  display: block;
  width: auto;
  height: 70px;
  margin: 0 auto 40px;
}
.title_case02 img{
  position: relative;
  width: 100%;
  margin-bottom: -30px;
  z-index: 3;
}
.case_listbox{
  background: var(--color-wht);
  padding: 20px;
  margin-top: 30px;
}
.case_itembox:first-of-type{
  width: 60%;
}
.case_itembox:last-of-type{
  width: 38%;
}
.case_item{
  background: var(--color-blue);
  display: inline-block;
  width: 180px;
  color: var(--color-wht);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 34px;
}
.case_item:first-of-type{
  margin-right: 10px;
}

.case_detail{
  display: block;
  width: 100%;
  margin: 25px 0 0;
  padding: 0;
}
.case_detail > div {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #000;
  padding: 5px 0;
}
.case_detail > div dt,
.case_detail > div dd {
  font-size: 1.6rem;
}
.case_detail > div dt{
  width: 30%;
  text-align: justify;
  text-align-last: justify;
  -moz-text-align-last: justify;
  -webkit-text-align-last: justify;
  hyphens: auto;
}

.case_detail > div dd {
  width: 67%;
  text-align: left;
  padding-left: 5%;
  margin-left: 0;
}
.item_ba{
  position: relative;
  width: 44%;
  z-index: 1;
}
.item_ba:last-of-type::before{
  content: "";
  background: url(../images/case_yajiryushi.svg) no-repeat;
  width: 120px;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -80px;
  z-index: 3;
}
.before_item,
.after_item{
  display: block;
  max-width: 160px;
  width: 100%;
  height: auto;
  color: var(--color-wht);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 30px;
  margin: 0 auto 5px;
}
.before_item{background: var(--color-darkblue);}
.after_item{background: var(--color-blue);}

@media (max-width: 768px) {
  #case .item_container_r{
    margin-top: 5px;
  }
  .case_item{
    width: 48%;
    font-size: 1.6rem;
  }
  .case_itembox:first-of-type,
  .case_itembox:last-of-type{
    width: 100%;
  }
  .item_ba:last-of-type::before{
    width: 80px;
    height: 40px;
    left: -36px;
  }
  .case_detail > div dt{
    font-size: 1.4rem;
  }
  .case_detail > div dd{
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .item_ba{
    width: 48%;
  }
  .case_detail{
    margin: 0;
  }


}

/* 初心者の方へ */
#beginner{
  background: url(../images/bg_stripe.gif);
  padding-block: 60px;
}
.title_beginner img{
  width: 100%;
  margin-bottom: 10px;
}
#beginner .itembox03{
  border: 3px solid var(--color-blue);
  border-radius: 20px;
  background: var(--color-wht);
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 10px 10px 0px 0px rgba(75, 151, 237, 1);
}
#beginner .itembox03 img{
  display: block;
  width: 90%;
  margin: 20px auto;
}
#beginner .itembox03 p{
  color: var(--color-darkblue);
  font-size: 1.8rem;
  line-height: 1.6;
}
.title_beginnerbox,
.subtitle_beginnerbox{
  color: var(--color-darkblue);
  text-align: center;
  font-family: var(--ff_serif);
  font-weight: 700;
  line-height: 1.5;
}
.title_beginnerbox{
  font-size: 3.0rem;
}
.title_beginnerbox span{
  background-image: linear-gradient(0deg, #ebfe36 0.6em, transparent 0.6em);
}
.subtitle_beginnerbox{
  font-size: 2.0rem;
}

@media (max-width: 768px) {
  #beginner{padding-block: 20px 40px;}
  #beginner .itembox03{
    width: 97%;
  }
  #beginner .itembox03 p{
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/* よくある質問 */
#faq{
  margin-top: 80px;
}
.title_faq img{
  display: block;
  max-width: 360px;
  width: 70%;
  height: auto;
  margin: 0 auto 30px;
}
.faq_box{
  width: 100%;
  background: var(--color-wht);
  padding: 30px;
  margin-bottom: 20px;
}
.faq_box:last-of-type{
  margin-bottom: 0;
}
.faq_box dl{
  width: 100%;
  padding: 10px 10px 10px 50px;
}
.faq_box dt,
.faq_box dd {
  position: relative;
  display: flex;
  align-items: flex-start;
  color: var(--color-darkblue);
  font-size: 1.8rem;
  font-weight: 500;
}
.faq_box dt {
  font-weight: 500;
  margin-bottom: 20px;
}
.faq_box dd {
  position: relative;
}
.faq_box dt::before{
  content: "Q";
  background-color: var(--color-darkblue);
}
.faq_box dd::before{
  content: "A";
  background-color: var(--color-blue);
}

.faq_box dt::before,
.faq_box dd::before{
  position: absolute;
  left: -40px;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--color-wht);
  text-align: center;
  line-height: 34px;
  font-family: var(--ff-en);
  font-size: 1.8rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  #faq{margin-top: 40px;}
  .faq_box{padding: 10px 0;}
  .faq_box dl{
    width: 100%;
  }
  .faq_box dt,
  .faq_box dd{
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/* ご相談から施工の流れ */
#flow{
  background: url(../images/bg_dot02.gif);
  padding: 60px 0;
}
#flow .wrapper{
  position: relative;
}
.flow_staff{
  position: absolute;
  bottom: -60px;
  right: 20%;
  width: 280px;
  height: 360px;
  z-index: 5;
}
.title_flow img.pc_case{
  display: block;
  width: 90%;
  margin: 0 auto;
}
.title_flow img.sp_case{
  display: none;
}
.title_step{
  color: var(--color-darkblue);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.title_step span{
  font-family: var(--ff-en);
  font-size: 6.0rem;
  font-weight: 500;
  margin-right: 10px;
}
.flowbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /* ←これ追加 */
  max-width: 1000px;
  margin: 10% auto 0;
}
.step {
  position: relative;
  width: 47%;
  background: var(--color-wht);
  border: 3px solid var(--color-blue);
  padding: 20px;
  /* margin-bottom: 40px; */
  box-shadow: 10px 10px 0px 0px #ebfe36;
}
.step .itembox02 p{
  font-size: 1.8rem;
  line-height: 1.6;
}

/* 偶数番目を下にずらす */
.step:nth-child(even) {
  margin-top: 7%;
}
.step:nth-child(odd) {
  margin-top: -7%;
}

/* 左カラム → 右カラムへ「＼」の線 */
.step:nth-child(odd)::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -98px;
  width: 100px;
  height: 10px;
  background: var(--color-yellow);
  transform: rotate(30deg);
}
/* 右カラム → 左カラムへ「／」の線 */
.step:nth-child(even)::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: -64px;
  width: 70px;
  height: 10px;
  background: var(--color-yellow);
  transform: rotate(-30deg);
}
.step:last-child::after{
  display: none;
}

@media (max-width: 768px) {
  #flow{padding: 40px 0;}
  .title_flow img.pc_case{display: none;}
  .title_flow img.sp_case{
    display: block;
    max-width: 340px;
    width: 100%;
    height: auto;
  }
  .flow_staff{display: none;}
  .flowbox{
    margin: 30px 0 0;
  }
  .step{
    width: 97%;
    padding: 10px;
  }
  .step:nth-child(odd),
  .step:nth-child(even){
    margin-top:0;
    margin-bottom: 30px;
  }
  .step:nth-child(odd)::after,
  .step:nth-child(even)::after{
    display: none;
  }
  .title_step{font-size: 2.3rem;}
  .title_step span{font-size: 3.0rem;}
  .step .itembox02 p{
    font-size: 1.6rem;
    line-height: 1.5;
  }

}

/* foot_cta */
#foot_cta{
  background: #74cefe;
  padding-block: 60px 0;
}
#foot_cta .ctaArea{
  background: none;
}
.title_footcta img.pc_case{
  display: block;
  max-width: 705px;
  height: auto;
  margin: 0 auto 30px;
}
.title_footcta img.sp_case{
  display: none;
}
dl.foot_ctabox{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3%;
}
dl.foot_ctabox dt{
  width: 200px;
}
dl.foot_ctabox dd{
  flex: 1;
  background: var(--color-wht);
  border-radius: 20px;
  color: var(--color-darkblue);
  font-size: 1.8rem;
  padding: 20px;
}
.ceo_img{
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: auto;
}

#foot_cta .ctaArea p{
  color: var(--color-darkblue);
}

@media (max-width: 768px) {
  #foot_cta .wrap_cta::before,
  #foot_cta .wrap_cta::after{
    width: 120px;
    height: 180px;
  }
  #foot_cta .wrap_cta::before{
    left: auto;
    right: 0;
    bottom: 285px;
    transform: rotate(10deg);
  }
  #foot_cta .wrap_cta::after{
    right: auto;
    left: -1%;
    transform: rotate(-10deg);
    bottom: 310px;
  }
  .title_footcta img.pc_case{
    display: none;
  }
  .title_footcta img.sp_case{
    position: relative;
    display: block;
    max-width: 300px;
    width: 90%;
    margin: 0 auto 10px;
    z-index: 5;
  }
  dl.foot_ctabox {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 60px;
  }
  dl.foot_ctabox dt {
    width: 80%;
  }
  dl.foot_ctabox dd {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.6;
    padding: 10px 20px;
  }
}

/* 会社概要 */
#company{padding-block: 60px;}
.title_com{
  color: var(--color-darkblue);
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom:20px;
}
#company .itembox02 p{
  font-size: 1.6rem;
  line-height: 1.6;
}
.com_profile {
  width: 100%;
  margin: 40px 0 0;
  padding: 0;
}
.com_profile div {
  display: flex;
  margin-bottom: 10px;
}
.com_profile dt {
  width: 180px;
  background: var(--color-blue);
  color: var(--color-wht);
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
.com_profile dt span {
  text-align: justify;
  text-align-last: justify;
  width: 100%;
  display: inline-block;
}
.com_profile dd {
  flex: 1;
  font-size: 1.8rem;
  margin: 0;
  padding: 5px 20px;
}
.com_profile dd a:link,
.com_profile dd a:visited{
  color: var(--color-primary);
}
@media (max-width: 768px) {
  #company{
    padding-block:40px 10px;
  }
  .title_com{
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  #company .itembox02 p{
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .com_profile{
    margin: 20px 0 0;
  }
  .com_profile dt{
    width: 130px;
    font-size: 1.4rem;
    padding: 0 5px;
  }
  .com_profile dd{
    font-size: 1.5rem;
    padding: 5px 15px;
  }
}


/* ==============================
    footer
=============================== */
footer{
  position: relative;
  background: rgba(0, 176, 237, 0.15);
}
.wrap680 {
  max-width: 680px;
  width: 92.1875%;
  padding-block: 30px;
  margin-inline: auto;
}
.foot_title{
  text-align: center;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}
a.foot_cta,
a.foot_ctaa:visited{
  width: 47%;
  border: 2px solid var(--color-primary);
  background: var(--color-wht);
  color: var(--color-primary);
  text-align: center;
  font-size: 2.0rem;
  line-height: 60px;
}
a.foot_cta:hover{
  background: var(--color-blue);
  color: var(--color-yellow);
}
.copy{
  background: var(--color-wht);
  text-align: center;
  font-family: var(--ff-en);
  font-size: 1.4rem;
  line-height: 40px;
}
.btn_fixed{display: none;}


@media (max-width: 768px) {
  .copy{
    padding-bottom: 120px;
  }
  .foot_title{
    font-size: 1.8rem;
  }
  a.foot_cta,
  a.foot_ctaa:visited{
    font-size: 1.6rem;
  }
  footer .wrap680{display: none;}

  /* 固定ボタン */
.btn_fixed{
  display: block;
  position: fixed;
  bottom: 0;
  background: var(--color-blue);
  width: 100%;
  height: auto;
  padding: 10px 0 0;
  z-index: 999;
}
.btn_fixed .item_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: auto;
  }
  .btn_fixed a.btn_cta_mitsumori,
  .btn_fixed a.btn_cta_shiryo{
    display: inline-block;
    border-radius: 0;
    max-width: none;
    width: 50%;
    font-size: 1.5rem;
  }
  .btn_fixed .muryo{
    font-size: 1.2rem;
    padding: 2px 5px;
    margin-right: 5px;
  }
  .btn_fixed .title_cta{
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .title_cta span{
    font-size: 3.0rem;
  }

}

/* ==============================
    contact
=============================== */

#contact .wrap_cta{
  display: block;
}
.contact_formArea,
.thanks_area{
  display: block;
  max-width: 890px;
  width: 100%;
  padding-bottom: 40px;
  margin: 0 auto;
}
.title_error{
  text-align: center;
  color: #ff0000;
}
.thanks_area,
.errorArea{
  padding: 60px 0;
}
.title_kanryo,
.thanks_text p{
  text-align: center;
}
.hisshu,
.nini{
  position: absolute;
  right: 10px;
  top: 24px;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.0;
  padding: 3px 10px;
}
.hisshu,
.error_messe{
  text-align: center;
  color: #ff0000;
}
.nini{color: #666;}

#contact table{
  width: 100%;
}
#contact table tr{
  border-bottom: 1px solid #ccc;
}
#contact table th,
#contact table td{
  text-align: left;
  font-weight: 400;
  vertical-align: top;
  padding: 20px;
}
#contact table th{
  position: relative;
  background: var(--color-darkblue);
  width: 25%;
  color: var(--color-wht);
}
#contact table td{
  background: var(--color-wht);
  width: 75%;
}
.btn_form{text-align: center;}

#contact input[type="text"],
#contact input[type="date"],
#contact input[type="tel"],
#contact input[type="email"],
#contact textarea {
  box-sizing: border-box;
  flex: 1;
  min-width: 0;
  background-color: #fcfcfc;
  border-color: #ccc;
  border-style: solid;
  border-width: 1px;
  color: #000;
  font-family: inherit;
  font-size: 1.6rem;
  vertical-align: baseline;
  padding: 8px 10px;
  width: 100%;
  border-radius: 1px;
}
#contact textarea {
  resize: vertical;
  width: 100%;
}
#contact input[type=text]:focus,
#contact textarea:focus{
  outline: none;
}
.add_post{
  width: 8em!important;
  margin-bottom: 10px;
}

::placeholder {
  color: #aaa;
  font-size: 1.4rem;
}
input[type="submit"],
#contact input[type="reset"],
#contact input[type="button"]{
  box-sizing: border-box;
  display:block;
  width: 200px;
  border: none;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  padding: 20px;
  margin: 30px auto 0;
	cursor : pointer;
	transition: 0.5s;
}
#contact input[type="submit"],
#contact input[type="button"],
a.botn_top_go,
a.botn_top_go:visited{
  display: block;
  border: none;
  width: 250px;
  border-radius: 40px;
  color: #fff;
  text-align: center;
  font-size: 2.0rem;
  padding: 15px 20px;
  margin: 30px auto 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background: linear-gradient(
    to bottom,
    #f1973f 0%,   /* 上半分の色 */
    #f1973f 50%,
    #ee752f 50%,  /* 下半分の色 */
    #ee752f 100%
  );
}
#contact input[type="submit"]:hover,
botn_top_go:hover {
  background: #ee752f;
}
#contact input[type="reset"],
#contact input[type="button"]{
  background: #b5b5b5;
}
@media (max-width: 768px) {
  #contact table th,
  #contact table td{
    display: block;
    width: 100%;
    padding: 10px;
  }
  .hisshu,
  .nini{
    top: 15px;
  }
  .thanks_area{
    padding: 60px 20px;
  }
  .thanks_text p{
    text-align: left;
  }
}
