

/*==================================================================================================
 * サイト　ベース設計
 *================================================================================================*/
html {
	height: 100%;
	font-size: 62.5%;
	
}
body {
	font-weight: 200;
	font-size: 1.6rem;
	letter-spacing: .1rem;
	line-height: 2.2rem;
	position: relative;
	background-color: #ffffff;
	color: #171717;
	height: 100%;
	font-family:
		"Noto Sans JP",
		"Hiragino Sans",
		"Hiragino Kaku Gothic ProN",
		"Yu Gothic",
		"Meiryo",
		sans-serif
	;
}

p.subTitle {
	text-align: center;
	font-size: 1.8rem;
	font-weight: 300;
}

a {
	color: #171717;
	text-decoration: none;
}


/* =========================
   上部バー
========================= */

.hd-top{
  padding: 5px 12px;

  background: rgba(45, 171, 63, 1);

  color: #f6f6f6;

  font-size: .9rem;
  font-weight: 700;
  line-height: 1.5;
}

.hd-top p{
  margin: 0;
}

/* =========================
   ヘッダー全体
========================= */

header{
	width: 100%;

	position: fixed;
	top: 0;
	left: 0;

	z-index: 9999;

	background: rgba(255,255,255,0.96);

	box-shadow: 0 2px 10px rgba(0,0,0,0.05);

	transition: all 0.4s ease;
}


/* 上部テキスト */
.hd-top{
	text-align: center;
	padding: 8px 15px;
	font-size: 0.8rem;

	transition: all 0.4s ease;
}


/* ロゴエリア */
.hd-logo{
	width: 100%;
	height: 160px;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 0 40px;

	box-sizing: border-box;

	transition: all 0.4s ease;
}


/* ロゴ */
header .logo{
	margin: 0;
}


/* リンク */
header .logo a{
	display: block;
}


/* ロゴ画像 */
header .logo img{
	height: 58px;
	width: auto;

	display: block;

	transition: transform 0.4s ease,
				height 0.4s ease;
}


/* =========================
   スクロール時
========================= */

header.shrink{
	background: rgba(255,255,255,0.98);

	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}


/* 上部テキスト縮小 */
header.shrink .hd-top{
	padding: 3px 15px;
	font-size: 0.7rem;
}


/* ロゴエリア縮小 */
header.shrink .hd-logo{
	height: 90px;
}


/* ロゴ縮小 */
header.shrink .logo img{
	transform: scale(0.6);
	transform-origin: center center;
}


/* =========================
   ロゴエリア
========================= */




/* =========================
   下層ページ余白
========================= */

body{
  padding-top: 191px;
}


/* =========================
   スマホ
========================= */

@media screen and (max-width: 767px){

  .hd-top{
    padding: 5px 10px;

    font-size: 11px;

    transition: all 0.4s ease;
  }

  .hd-logo{
    height: 90px;

    padding: 0 20px;

    transition: all 0.4s ease;
  }

  header .logo img{
    height: 48px;

    transition: transform 0.4s ease,
                height 0.4s ease;
  }

  body{
    padding-top: 118px;
  }


  /* =========================
     スクロール時
  ========================= */

  header.shrink .hd-top{
    padding: 2px 10px;

    font-size: 10px;
  }

  header.shrink .hd-logo{
    height: 55px;
  }

  header.shrink .logo img{
    transform: scale(0.7);
  }

}


/* =========================
   メインビジュアル
========================= */

.main-visual{
  width: 100%;
  height: 70vh;

  position: relative;
  overflow: hidden;
}


/* slick */

.slider,
.slider .slick-list,
.slider .slick-track,
.slider .slick-slide,
.slider .slick-slide > div{
  height: 100%;
}


/* 画像 */

.slider-item{
  width: 100%;
  height: 70vh;
}

.slider-item img{
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

/* =========================
   テキストエリア
========================= */

.main-copy{
  position: absolute;

  top: 50%;
  left: 8%;

  transform: translateY(-50%);

  z-index: 100;

  color: #fff;
}


/* キャッチ */

.main-copy h2{
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.4;

  text-shadow: 0 0 15px rgba(0,0,0,0.25);

  margin-bottom: 50px;
}


/* ボタン */

.main-btn{
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 320px;
  height: 80px;

  background: #49c95b;

  color: #fff;
  text-decoration: none;

  font-size: 2,4rem;
  font-weight: bold;

  border-radius: 8px;

  transition: 0.3s;
}


/* hover */

.main-btn:hover{
  background: #38b54a;

  color: #fff;

  text-decoration: none;
}


/* =========================
   スマホ
========================= */

@media screen and (max-width: 767px){

  .main-visual{
    height: 60vh;
  }

  .slider-item{
    height: 60vh;
  }

  .main-copy{
    left: 20px;
    right: 20px;
  }

  .main-copy h2{
    font-size:2.4rem;

    margin-bottom: 30px;
  }

  .main-btn{
    width: 100%;
    max-width: 280px;

    height: 64px;

    font-size: 1.8rem;
  }

}


/* 下の文章が少し見える余白 */

.main-visual::after{
  content: '';

  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 80px;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,1) 100%
  );

  pointer-events: none;
}


/* =========================
   下部コンテンツ
========================= */

#top-message{
  position: relative;
  z-index: 10;

  background: #fff;

  padding: 60px 20px;
  text-align: center;
}

#top-message h3 {
  position: relative;

  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;

  padding-bottom: 20px;
  margin-bottom: 20px;
}
/* 緑の線 */
#top-message h3::after{
  content: '';

  position: absolute;

  bottom: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 50px;
  height: 4px;

  background: #48c65a;
}


#service h4,
#area h4,
#company h4 {
	position: relative;
	font-size: 2.6rem;
	text-align: center;
	font-weight: bold;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

#service h5 {
	font-size: 2.2rem;
	margin-top: 18px;
}

/* 緑の線 */
#service h4::after,
#area h4::after,
#company h4::after {
  content: '';

  position: absolute;

  bottom: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 50px;
  height: 4px;

  background: #48c65a;
}



/* リンク全体 */
#service .service-link{
	display:block;
	text-decoration:none;
	color:#222;
	height:100%;
}


/* カード */
#service .match-box{
	height:100%;

	transition:.35s;
	border:1px solid #e5e5e5;

	cursor:pointer;
}


/* ホバー */
#service .service-link:hover .match-box{
	transform:translateY(-8px);

	box-shadow:0 15px 30px rgba(0,0,0,.12);

	background:#fff !important;
}


/* 画像エリア */
#service .service-img{
	overflow:hidden;
	margin-bottom:20px;
}


/* 画像 */
#service .service-img img{
	width:100%;
	transition:.5s;
	display:block;
}


/* ホバーでズーム */
#service .service-link:hover img{
	transform:scale(1.05);
}


/* タイトル */
#service .match-box h5{
	font-weight:bold;
	margin-bottom:10px;
}


/* 説明 */
#service .match-box p{
	margin-bottom:20px;
	line-height:1.8;
}


/* 詳しく見る */
#service .more{
	display:inline-flex;
	align-items:center;

	font-size:14px;
	font-weight:bold;

	color:#2c9f45;

	transition:.3s;
}


/* 矢印動く */
#service .service-link:hover .more{
	transform:translateX(6px);
}


#service .match-box{
	position:relative;
}

.service-label{
	position:absolute;
	top:25px;
	right:25px;

	background:#2c9f45;
	color:#fff;

	font-size:12px;
	font-weight:bold;

	padding:5px 10px;
}
.service-link:active .match-box{
	transform:scale(.98);
}


#area h5 {
	font-size: 2.2rem;
	padding: 8px 0;
	text-align: center;
	background-color: #5c5c5c;
	color: white;
}

#area p {
	font-weight: 300;
	line-height: 3rem;
}



/* =========================
   お問い合わせエリア
========================= */

#contact-area{
  width: 100%;
  margin: 6rem 0;
  padding: 100px 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* 白オーバーレイ */

#contact-area::before{
  content: '';

  position: absolute;
  inset: 0;

  background: rgba(255,255,255,0.7);

  z-index: 1;
}


/* 中身 */

.contact-inner{
  position: relative;
  z-index: 10;

  max-width: 1400px;

  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}


/* =========================
   テキスト
========================= */

.contact-text{
  flex: 1;
}

.contact-text h2{
  color: #0027a8;

  font-size: 58px;
  font-weight: 700;
  line-height: 1.3;

  margin: 0;
}

.contact-text h2 span{
  font-size: 88px;
}


/* =========================
   ボタン
========================= */

.contact-btn-area{
  flex-shrink: 0;
}

.contact-btn{
  display: flex;

  align-items: center;
  justify-content: center;

  width: 320px;
  height: 90px;

  background: #49c95b;

  border-radius: 8px;

  color: #fff;
  text-decoration: none;

  font-size: 26px;
  font-weight: 700;

  transition: 0.3s;
}

.contact-btn:hover{
  background: #39b84b;

  color: #fff;

  text-decoration: none;
}


/* =========================
   スマホ
========================= */

@media screen and (max-width: 991px){

  #contact-area{
    padding: 70px 0;
  }

  .contact-inner{
    flex-direction: column;

    text-align: center;

    padding: 0 20px;
  }

  .contact-text h2{
    font-size: 34px;
  }

  .contact-text h2 span{
    font-size: 54px;
  }

  .contact-btn{
    width: 100%;
    max-width: 320px;

    height: 70px;
    padding: 0 3rem;
    font-size: 20px;
  }

}

/* =========================
   会社概要
========================= */

#company {
	margin-bottom: 180px;
}


/* テーブル */

.company-table{
  width: 100%;

  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.company-table tr{
  border-bottom: 1px solid #ddd;
}

.company-table th,
.company-table td{
  padding: 35px 30px;

  border-right: 1px solid #ddd;

  font-size: 18px;
  line-height: 1.8;

  vertical-align: middle;
}


/* 左側 */

.company-table th{
  width: 200px;

  background: #f3f3f3;

  font-weight: 700;
}


/* リンク */

.company-table a{
  color: #222;
  text-decoration: none;
}

.company-table a:hover{
  text-decoration: underline;
}


/* 地図 */

.map-box{
  width: 100%;
  height: 100%;

  min-height: 520px;

  overflow: hidden;
}

.map-box iframe{
  width: 100%;
  height: 100%;
}


/* =========================
   スマホ
========================= */

@media screen and (max-width: 991px){
	.company-box{
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px){

  .company-area{
    padding: 70px 0;
  }

  .company-title{
    font-size: 34px;

    margin-bottom: 30px;
  }

  

  .company-table th,
  .company-table td{
    display: block;

    width: 100%;

    padding: 20px;
  }

  .company-table th{
    border-bottom: 1px solid #ddd;
  }

  .map-box{
    min-height: 350px;
  }

}

/* =========================
   下層ヘッダー
========================= */

.page-header{
  position: relative;

  width: 100%;
  height: 380px;

  overflow: hidden;

}


/* 背景画像 */

.page-header-bg{
  width: 100%;
  height: 100%;
}

.page-header-bg img{
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}


/* 黒オーバーレイ */

.page-header::before{
  content: '';

  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.15);

  z-index: 1;
}


/* タイトル */

.page-header-inner{
  position: absolute;

  top: 50%;
  left: 8%;

  transform: translateY(-50%);

  z-index: 10;
}

.page-header-inner h1{
  color: #fff;

  font-size: 38px;
  font-weight: 700;

  line-height: 1.4;

  margin: 0;

  text-shadow: 0 0 10px rgba(0,0,0,0.2);
}


/* =========================
   パンくず
========================= */

.breadcrumb-area{
  background: #f3f3f3;

  padding: 18px 0;
}


/* リスト */

.breadcrumb-list{
  display: flex;
  flex-wrap: wrap;

  align-items: center;

  margin: 0;
  padding: 0;

  list-style: none;
}


/* 区切り */

.breadcrumb-list li + li::before{
  content: '>';

  margin: 0 12px;

  color: #999;
}


/* リンク */

.breadcrumb-list a{
  color: #0066ff;

  text-decoration: none;
}

.breadcrumb-list a:hover{
  text-decoration: underline;
}


/* =========================
   スマホ
========================= */

@media screen and (max-width: 991px){

  .page-header{
    height: 300px;

    /*margin-top: 80px;*/
  }

  .page-header-inner{
    left: 20px;
    right: 20px;
  }

  .page-header-inner h1{
    font-size: 38px;
  }

  .breadcrumb-area{
    padding: 14px 0;
  }

  .breadcrumb-list{
    font-size: 14px;
    line-height: 1.8;
  }

}


/*==================================================================================================
 * エアコン
 *================================================================================================*/

#aircon #price h4,
#aircon #process h4,
#aircon #achieve h4 {
	font-size: 2.6rem;
	text-align: center;
}

#aircon #price h5 {
	font-size: 2.2rem;
	font-weight: bold;
	margin-top: 1rem;
}

#aircon #price{
  text-align: center;
}

#aircon #price .price-box span {
	font-size: 60%;
}

/* 通常価格 */

#aircon #price .normal-price{
  position: relative;

  display: inline-block;

  margin-bottom: 30px;

  color: #666;
  font-size: 20px;
}


/* ↓矢印 */

#aircon #price .normal-price::after{
  content: '';

  position: absolute;

  left: 50%;
  bottom: -22px;

  width: 2px;
  height: 16px;

  background: #222;

  transform: translateX(-50%);
}

#aircon #price .normal-price::before{
  content: '';

  position: absolute;

  left: 50%;
  bottom: -22px;

  width: 8px;
  height: 8px;

  border-right: 2px solid #222;
  border-bottom: 2px solid #222;

  transform:
    translateX(-50%)
    rotate(45deg);
}


/* 特別価格 */

#aircon #price .special-price{
  color: #e60012;

  font-size: 3rem;
  font-weight: 700;
}


#aircon #process {
	margin-top: 6rem:
}

#aircon #process h5 {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	padding: 1rem 0;
}


/* =========================
   Instagram
========================= */

.insta-title{
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.4;
}


/* Instagramアイコン */

.insta-title i{
  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 42px;

  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* アイコン */

.insta-title i{
  color: #E1306C;

  font-size: 36px;
}


.instagram-wrap{
  position: relative;

  width: 100%;
  max-width: 540px;

  margin: 0 auto;

  overflow: hidden;
}


/* blockquote */

.instagram-media{
  width: 100% !important;

  min-width: 100% !important;
  max-width: 100% !important;

  margin: 0 auto !important;

  overflow: hidden !important;
}


/* iframe生成後 */

.instagram-media iframe{
  width: 100% !important;

  min-width: 100% !important;

  height: 860px !important;

  margin-bottom: -130px !important;

  overflow: hidden !important;
}


/* スマホ */

@media screen and (max-width: 767px){

  .instagram-media iframe{
    height: 760px !important;

    margin-bottom: -120px !important;
  }
  
  .insta-title{
  font-size: 2.8rem;
  }

}

/* =========================
   Instagram Banner
========================= */

.instagram-banner{
  display: block;

  width: 100%;

  text-decoration: none;

  border-radius: 24px;

  overflow: hidden;

  position: relative;

  transition: 0.4s;
}


/* 背景 */

.instagram-banner::before{
  content: '';

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      #f09433,
      #e6683c,
      #dc2743,
      #cc2366,
      #bc1888
    );

  z-index: 1;
}


/* 白重ね */

.instagram-banner::after{
  content: '';

  position: absolute;

  inset: 3px;

  background: #fff;

  border-radius: 21px;

  z-index: 2;
}


/* 中身 */

.instagram-banner-inner{
  position: relative;
  z-index: 10;

  padding: 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}


/* 左 */

.instagram-banner-left{
  display: flex;
  align-items: center;

  gap: 30px;
}


/* アイコン */

.instagram-icon{
  width: 110px;
  height: 110px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      #f09433,
      #e6683c,
      #dc2743,
      #cc2366,
      #bc1888
    );

  flex-shrink: 0;
}

.instagram-icon i{
  color: #fff;

  font-size: 54px;
}


/* テキスト */

.sub-title{
  margin-bottom: 10px;

  color: #E1306C;

  font-size: 18px;
  font-weight: 700;

  letter-spacing: 0.08em;
}

.instagram-text h3{
  margin-bottom: 12px;

  color: #222;

  font-size: 42px;
  font-weight: 700;
  line-height: 1.5;
}

.account{
  color: #666;

  font-size: 22px;
  font-weight: 700;

  margin: 0;
}


/* =========================
   Instagram Button
========================= */

.instagram-follow-btn{
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  width: 100%;
  max-width: 420px;

  height: 80px;

  border-radius: 100px;

  background:
    linear-gradient(
      135deg,
      #f09433,
      #e6683c,
      #dc2743,
      #cc2366,
      #bc1888
    );

  color: #fff;

  font-size: 24px;
  font-weight: 700;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);

  transition: 0.3s;
  margin: 52px auto;
}


/* アイコン */

.instagram-follow-btn i{
  font-size: 34px;

  position: relative;
  top: 1px;
}


/* hover */

.instagram-follow-btn:hover{
  color: #fff;

  text-decoration: none;

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}


/* =========================
   SP
========================= */

@media screen and (max-width: 767px){

  .instagram-follow-btn{
    height: 64px;

    font-size: 18px;
  }

  .instagram-follow-btn i{
    font-size: 28px;
  }

}


/*==================================================================================================
 * 外構工事
 *================================================================================================*/
 
#exterior h5,
#extra h5,
#lineup h5 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: .8rem;
}

#exterior #sale h7 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 1rem 0;
}

#exterior #sale h6 {
    color: #e60012;
    font-size: 3rem;
    font-weight: 700;
}

#exterior #sale h6 span {
    font-size: 60%;
}

.proposal-box {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #f8f8f8;
  border-radius: 15px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.proposal-image img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}

.proposal-content {
  flex: 1;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.check-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: bold;
  color: #333;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: #1d4ed8;
  color: #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: bold;
}

.proposal-note {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1d4ed8;
  background: #eaf2ff;
  padding: 18px 24px;
  border-radius: 10px;
  display: inline-block;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .proposal-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .proposal-image img {
    max-width: 220px;
  }

  .check-list li {
    text-align: left;
    font-size: 1.2rem;
  }

  .proposal-note {
    font-size: 1.1rem;
  }
  
  .prise-box {
	  text-align: center;
  }
  
  .check-list li::before {
  top: -4px;
}
}


#aircon #price h5 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 1rem;
}


/* =========================================
   PostMail + Bootstrap 用 基本CSS
========================================= */

/* =========================================
	Contact
========================================= */

.contact-section {
	padding: 40px 0;
}

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

.contact-head h2 {
	margin-bottom: 15px;
	font-size: 42px;
	font-weight: bold;
}

.contact-head p {
	color: #666;
	line-height: 1.8;
}

#contact-conf .page-header{
  position: relative;

  width: 100%;
  height: 180px;

  overflow: hidden;

}

/* =========================================
	SNS
========================================= */

.contact-sns-area {
	margin-bottom: 60px;
}

.contact-sns-title {
	margin-bottom: 15px;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
}

.contact-sns-text {
	margin-bottom: 35px;
	text-align: center;
	color: #666;
	line-height: 1.8;
}

.sns-box {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 25px;
	border-radius: 12px;
	text-decoration: none;
	transition: 0.3s;
	height: 100%;
	color: #fff;
}

.sns-box:hover {
	transform: translateY(-5px);
	opacity: 0.9;
	color: #fff;
}

.line-box {
	background: #06c755;
}

.insta-box {
	background: linear-gradient(
		135deg,
		#405de6,
		#5851db,
		#833ab4,
		#c13584,
		#e1306c,
		#fd1d1d
	);
}

.sns-icon {
	font-size: 50px;
	flex-shrink: 0;
}

.sns-content h5 {
	margin-bottom: 8px;
	font-size: 1.8rem;
	font-weight: bold;
}

.sns-content p {
	margin: 0;
	line-height: 1.7;
}

/* =========================================
	Form
========================================= */

.contact-form-wrap {
	padding: 50px;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.form-title {
	margin-bottom: 35px;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
}

.required {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 8px;
	font-size: 12px;
	color: #fff;
	background: #dc3545;
	border-radius: 3px;
}

.postmail-form .form-control {
	padding: 14px;
	border-radius: 8px;
	font-size: 1.6rem;
}

.postmail-form textarea {
	min-height: 200px;
	resize: vertical;
}

.btn-submit {
	min-width: 240px;
	padding: 14px 30px;
	border-radius: 50px;
	font-size: 1.8rem;
	font-weight: bold;
}

/* =========================================
	SP
========================================= */

@media (max-width: 768px) {

	.contact-section {
		padding: 60px 0;
	}

	.contact-head h2 {
		font-size: 32px;
	}

	.sns-box {
		padding: 20px;
	}

	.sns-icon {
		font-size: 4rem;
	}

	.sns-content h5 {
		font-size: 1.8rem;
	}

	.contact-form-wrap {
		padding: 30px 20px;
	}

	.form-title {
		font-size: 2rem;
	}

	.btn-submit {
		width: 100%;
	}

}


/* =========================================
	Confirm Table
========================================= */

#form {
	width: 100%;
	border-collapse: collapse;
	margin-top: 30px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* 行 */
#form tr {
	border-bottom: 1px solid #e5e5e5;
}

#form tr:last-child {
	border-bottom: none;
}

/* 項目名 */
#form th {
	width: 220px;
	padding: 20px;
	background: #f8f9fa;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	vertical-align: top;
	color: #333;
}

/* 内容 */
#form td {
	padding: 20px;
	background: #fff;
	line-height: 1.8;
	word-break: break-word;
	color: #555;
}

/* label */
#form .form-label {
	display: block;
	margin-bottom: 0;
	font-weight: bold;
}


/* =========================================
	SP
========================================= */

@media (max-width: 768px) {

	#form,
	#form tbody,
	#form tr,
	#form th,
	#form td {
		display: block;
		width: 100%;
	}

	#form tr {
		margin-bottom: 20px;
		border: 1px solid #e5e5e5;
		border-radius: 10px;
		overflow: hidden;
		background: #fff;
	}

	#form th {
		padding: 15px;
		border-bottom: 1px solid #e5e5e5;
	}

	#form td {
		padding: 15px;
	}

}


/* =========================
   footer
========================= */


#footer {
	background: rgba(45, 171, 63, 1);
	color: #f6f6f6;
	padding: 40px 0 10px 0;
	text-align: center
}

#footer ul.link-list {
	margin-bottom: 30px;
}

#footer ul.link-list li {
	display: inline-block; 
  position: relative;
  padding: 0 20px;
  text-decoration: underline;
  font-size: 16px;
}
#footer ul.link-list li::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%; /* 親要素の高さに合わせる */
  background-color: #b6b6b6;
}
#footer ul.link-list li:first-child::before{
  display: none;
}

#footer ul.link-list li a {
	color: white;
}

#footer .copyright {
	font-size: 10px;
}