@charset "utf-8";

/*---------------------------------------------
	body
  ---------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

/* 10px */
body {
  font-size: 1.6rem;
  color: #000;
  line-height: 1.9;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
}

@media screen and (max-width: 1100px) {
  body {
    font-size: 135%;
  }
}

/* 16px */
p {
  font-size: 1.6rem;
  margin: 0 0 1em 0;
  padding: 0;
}

dl,
dt,
dd,
ul,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
  padding: 0;
}

/* 16px */
img {
  width: 100%;
  height: auto;
}

.pc_none {
  display: none;
}

.sp_br {
  display: none;
}

/*---------------------------------------------
 **  フォント
---------------------------------------------*/
.mincho {
  font-family: 'Noto Serif JP', serif;
}


/*---------------------------------------------
 **  フッターナビ
---------------------------------------------*/
#footer #nav>div>ul li ul {
  display: none;
}

/*---------------------------------------------
 **  メイン画像
---------------------------------------------*/

/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
  outline: none;
}

a:link {
  text-decoration: none;
  color: #B2B200;
  text-decoration: none;
}

a:visited {
  text-decoration: none;
  color: #B2B200;
}

a:hover {
  color: color-mod(#B2B200 shade(50%));
  text-decoration: none;
}

a:active {
  text-decoration: none;
  color: #B2B200;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*---------------------------------------------
 ** common div
---------------------------------------------*/
#content {
  width: 100%;
  clear: both;
}



/*---------------------------------------------
	title
---------------------------------------------*/


/*---------------------------------------------
	p
---------------------------------------------*/
p {
  margin-bottom: 1em;
}

/*---------------------------------------------
 ** ON OFF hover
---------------------------------------------*/
.hover {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}


/*---------------------------------------------
 **  ページトップ
---------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 0;
  right: 10px;
  z-index: 999;
}

#pageTop a {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/btn-page-top.png) no-repeat;
  background-size: 100%;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}


/*---------------------------------------------
 ** パンくずリスト
---------------------------------------------*/
#breadcrumb {
  text-align: left;
  position: absolute;
  top: -2.2em;
  right: 0;
  left: 40px;
  margin: 0 auto;
  color: #fff;
}

#breadcrumb ul {
  padding: 0;
}

#breadcrumb ul li {
  display: inline;
  list-style-type: none;
  font-size: 80%;
}

#breadcrumb ul li:before {
  content: " > ";
}

#breadcrumb ul li:first-child:before {
  content: "";
}



/*=================================================================================================================================*/
/**  共通部分	*/
/*=================================================================================================================================*/

h2,
h3 {
  font-family: "Mplus 1p";
}

h2 {
  font-size: 3.4rem;
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

h3 {
  margin-bottom: 1.5rem;
}


.btn a {
  width: 250px;
  background: #000;
  display: block;
  padding: 15px 20px 15px 10px;
  box-sizing: border-box;
  position: relative;
  color: #fff !important;
  text-align: center;
}

.btn {
  display: flex;
}

.btn a::after {
  content: url(../img/icon_arrow.png);
  position: absolute;
  top: 20%;
  right: 20px;
}

.btn a:hover {
  background: #B2B200;
  transition: 0.5s;
}

.btn_down a {
  width: 250px;
  background: #000;
  display: block;
  padding: 15px 20px 15px 10px;
  box-sizing: border-box;
  position: relative;
  color: #fff !important;
  text-align: center;
  margin: 0 auto;
}

.btn_down a::after {
  content: url(../img/icon_arrow02.png);
  position: absolute;
  top: 25%;
  right: 20px;
}

.btn_down a:hover {
  background: #B2B200;
  transition: 0.5s;
}

a[id^="anc"] {
  margin-top: -150px;
  padding-top: 150px;
  pointer-events: none;
  display: block;
}

/*---------------------------------------------
 ** コンテンツ全体
---------------------------------------------*/
#content {
  width: 100%;
}

#main {
  width: 100%;
  margin: 0 auto;
  padding: inherit;
}

/*---------------------------------------------
 ** ヘッダー記述
---------------------------------------------*/


#header {
  width: 100%;
  z-index: 1;
  background: #333;
  padding: 0.5% 0 0.5%;
}

#index #header {
  position: absolute;
  top: 0;
  background: none;
  padding: 0;
}


#header.HeightMin {
  position: fixed;
  z-index: 999;
  /*最前面へ*/
  height: 90px;
  animation: DownAnime 0.5s forwards;
  background: #333;
  padding-bottom: 0px;
  box-shadow: 0px 10px 10px -5px rgb(0 0 0 / 30%);
}

#index #header.HeightMin {
  position: fixed;
  z-index: 999;
  /*最前面へ*/
  height: 90px;
  animation: DownAnime 0.5s forwards;
  background: #333;
  padding-bottom: 0px;
  box-shadow: 0px 10px 10px -5px rgb(0 0 0 / 30%);
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-170px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header nav>a {
  width: 150px;
  display: block;
  margin-left: 30px;
  position: absolute;
  left: 10px;
  top: 50px;
}

#index header nav>a {
  left: 10px;
  top: 50px;
}


#header.HeightMin nav>a {
  top: 15px;
}


header .menu ul li {
  list-style: none;
}

header .menu {
  display: flex;
  width: calc(100% - 210px);
  margin-left: 200px;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 60px 30px;
}

header .menu>li a {
  color: #fff !important;
  padding: 10px 20px;
  display: inline-block;
  font-size: 110%;
}

header .menu>li a:hover {
  color: #B2B200 !important;
  transition: 0.5s;
}

header .menu>li:nth-child(2):after,
header .menu>li:nth-child(3):after,
header .menu>li:nth-child(4):after {
  content: '/';
  display: inline-block;
  padding: 0 5px;
  color: #fff;
  font-size: 130%;
  font-weight: 300;
}

header .menu>li:last-child a {
  text-indent: -9999px;
  width: 50px;
  height: 50px;
  background: url(../img/icon_mail.png) #fff no-repeat center center;
  background-size: 50% auto;
  overflow: hidden;
  padding: 20px 0;
  box-sizing: border-box;
  border-radius: 60px;
  margin-left: 20px;
}

header .menu>li:last-child a:hover {
  background: url(../img/icon_mail.png) #B2B200 no-repeat center center;
  transition: 0.3s;
  transform: scale(1.4);
}

header .sub-menu {
  display: none;
  width: 260px;
  position: absolute;
  z-index: 3;
}

header .sub-menu li a {
  background: #000000c7;
  padding: 10px 20px;
  box-sizing: border-box;
  display: block;
  font-size: 90%;
}

header .sub-menu li a:hover {
  background: #B2B200;
  color: #fff !important;
}


#header.HeightMin .menu {
  padding: 20px 30px 15px;
}

@media screen and (max-width: 950px) {
  header .menu {
    padding: 60px 10px;
  }

  header .menu>li a {
    padding: 10px 5px !important;
  }

  header .menu>li:last-child a {
    width: 45px;
    height: 45px;
    margin-left: 20px;
  }
}

/* TOPメイン */

#index #main {
  /*background: url(../img/main.jpg) no-repeat top center;
  background-size: cover;
  padding: 30% 0 10%;*/
  position: relative;
  margin-bottom: 100px;
}

#catch {
  width: 50%;
  max-width: 600px;
  box-sizing: border-box;
  padding: 2% 3%;
  background: #fff;
  margin-left: 2%;
}

#catch h2.mincho {
  font-size: 240%;
  line-height: 1.6;
  margin-bottom: 20px;
}

#main .btn {
  margin-top: 20px;
  justify-content: right;
}

#main #top_info {
  width: 80%;
  max-width: 600px;
  box-sizing: border-box;
  padding: 1.5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: absolute;
  bottom: -40px;
  left: 55%;
  background: #000;
  color: #ddd;
  box-sizing: border-box;
}

#main #top_info a {
  display: block;
  pointer-events: all;
  color: #ddd !important;
  padding: 5px 10px;
  box-sizing: border-box;
}

#main #top_info a:hover {
  background: #B2B200;
  transition: 0.8s;
}

#main #top_info dl {
  margin-bottom: 10px;
  font-size: 90%;
}

#main #top_info dl dt {
  display: inline-block;
  background: url(../img/icon_arrow.png) no-repeat right center;
  padding-right: 30px;
}

#main #top_info dl dd {
  line-height: 1.6;
}


#main #top_info>p {
  width: 10%;
  writing-mode: vertical-rl;
  border-right: 1px solid #ddd;
  padding: 10px 20px 10px 0;
  box-sizing: border-box;
  font-size: 110%;
  margin-bottom: 0;
  text-align: center;
}

#main #top_info>div {
  width: 88%;
}

@media screen and (max-width: 1350px) {

  #index #main {
    margin-bottom: 220px;
  }

  #index #main #top_info {
    width: 90%;
    max-width: 900px;
    bottom: -205px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

.scroll {
  width: 30px;
  display: block;
  position: absolute;
  bottom: -20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  animation-name: fuwa;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 0.8s;
}

@keyframes fuwa {
  0% {
    transform: translate(0, 0px);
  }

  100% {
    transform: translate(0, 15px)
  }
}

@media screen and (max-width: 1350px) {
  .scroll {
    left: auto;
    right: 20px;
  }
}

/*---------------------------------------------
 ** トップページ
---------------------------------------------*/
#top_coat {
  width: 100%;
  background: url(../img/top_bg01.jpg) no-repeat bottom center;
  background-size: cover;
  padding: 10% 0 0;
  display: flex;
  justify-content: flex-end;
}

#top_coat>div {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#top_coat .bg_w {
  width: 100%;
  position: relative;
  background: #ffffffa8;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 7% 5% 5%;
  align-items: flex-start;
  box-sizing: border-box;
}

#top_coat .bg_w::before {
  content: "";
  top: 0;
  left: 0;
  border-bottom: 6em solid transparent;
  border-left: 8em solid #B2B200;
  position: absolute;
}

#top_coat .bg_w>p {
  width: 5%;
  writing-mode: vertical-rl;
  padding: 10px 5px 10px 0;
  box-sizing: border-box;
  font-size: 110%;
  margin-bottom: 0;
  text-align: center;
  color: #B2B200;
  border-right: 1px solid #B2B200;
  margin-top: 20px;
}

#top_coat .bg_w>div {
  width: 92%;
}

#top_coat .bg_w>div h3 {
  font-size: 200%;
  line-height: 1.6;
}

#top_coat .bg_w>div>div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

#top_coat .bg_w>div>div p {
  width: calc(100% - 270px);
}

#top_coat .bg_w>div>div div {
  width: 250px;
}

#top_coat .bg_b {
  width: 50%;
  background: #0000009e;
  color: #fff;
  padding: 4% 3%;
  box-sizing: border-box;
}

#top_coat .bg_g {
  width: 50%;
  background: #333333bf;
  color: #fff;
  padding: 4% 3%;
  box-sizing: border-box;
}

#top_coat .bg_b h4,
#top_coat .bg_g h4 {
  background: url(../img/icon_q.png) no-repeat left top;
  padding: 0 0 20px 80px;
  min-height: 2em;
  box-sizing: border-box;
  font-size: 120%;
}

#top_film {
  width: 100%;
  background: url(../img/top_bg02.jpg) no-repeat bottom left;
  background-size: cover;
  padding: 10% 0 0;
}

#top_film .bg_w {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background: #ffffffa8;
  padding: 7% 5% 5%;
  box-sizing: border-box;
  position: relative;
}

#top_film .bg_w::before {
  content: "";
  top: 0;
  left: 0;
  border-bottom: 6em solid transparent;
  border-left: 8em solid #B2B200;
  position: absolute;
}

#top_film .bg_w>p {
  width: 5%;
  writing-mode: vertical-rl;
  padding: 10px 5px 10px 0;
  box-sizing: border-box;
  font-size: 110%;
  margin-bottom: 0;
  text-align: center;
  color: #B2B200;
  border-right: 1px solid #B2B200;
}

#top_film .bg_w>div {
  width: 92%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

#top_film .bg_w>div>div {
  width: 67%;
}

#top_film .bg_w>div>img {
  width: 20%;
  margin-top: 5%;
  margin-right: 5%;
}

#top_film .bg_w>div>div h3 {
  font-size: 200%;
  line-height: 1.6;
}

#top_option {
  width: 100%;
  background: url(../img/top_bg03.jpg) no-repeat #000 top center;
  background-size: 160% auto;
  padding: 10% 0 8%;
}

#top_option>div {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

#top_option>div>div {
  width: 48%;
  position: relative;
  background: #fff;
}

#top_option>div>div img+div {
  padding: 4% 5%;
  box-sizing: border-box;
}

#top_option>div>div>div p.mincho {
  color: #B2B200;
  display: inline-block;
  border-bottom: 1px solid #B2B200;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

#top_option>div>div>div h3 {
  font-size: 160%;
  margin-bottom: 5px;
}

#top_option>div>div .btn {
  position: absolute;
  top: 36%;
  right: 5%;
}



/*---------------------------------------------
 ** フッター記述
---------------------------------------------*/
#footer {
  clear: both;
  position: relative;
}

#footer>div:nth-child(1) {
  padding: 5% 0 0;
  text-align: center;
}

#footer>div:nth-child(1)>img {
  width: 50%;
  max-width: 250px;
  margin: 0 auto 3%;
}

#footer>div:nth-child(1) ul {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

#footer iframe {
  width: 100%;
  height: 600px;
}

#foot_data {
  background: #000;
  padding: 3% 0 1%;
  text-align: center;
}

#foot_data>div {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  color: #fff;
  margin: 0 auto;
}

#foot_data>div>img {
  width: 15%;
}

#foot_data>div>div:nth-of-type(1) {
  width: 45%;
}

#foot_data>div>div:nth-of-type(1) p {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 20px 20px 23px;
  box-sizing: border-box;
  font-size: 150%;
  text-align: center;
  display: inline-block;
  line-height: 1.4;
}

#foot_data>div>div:nth-of-type(2) {
  width: 30%;
  text-align: left;
}

#foot_data>div>div:nth-of-type(2) p:nth-of-type(1) {
  font-size: 280%;
  background: url(../img/icon_tel.png) no-repeat left center;
  background-size: 50px auto;
  padding-left: 60px;
  box-sizing: border-box;
  margin-bottom: 10px;
  line-height: 1.2;
}

#foot_data>div>div:nth-of-type(2) p:nth-of-type(1) a {
  color: #fff !important;
}

#foot_data>div>div:nth-of-type(2) p:nth-of-type(2) {
  text-align: center;
}



/* コピーライト */
#copyright {
  font-size: 0.8em;
  width: 100%;
  text-align: center;
  letter-spacing: 3px;
  padding: 10px 0 0;
  color: #fff;
}

#footer .faxno {
  text-align: center;
}

@media screen and (max-width: 1270px) {
  #footer {
    font-size: 90%;
  }
}

@media screen and (max-width: 1160px) {
  #footer {
    font-size: 80%;
  }

  #foot_data>div>div:nth-of-type(2) p:nth-of-type(1) {
    background-size: 40px auto;
    padding: 10px 0 10px 50px;
  }
}

@media screen and (max-width: 900px) {

  #foot_data>div>img {
    width: 200px;
    margin: 3% auto;
  }

  #foot_data>div>div:nth-of-type(1) {
    width: 100%;
  }

  #foot_data>div>div:nth-of-type(1) p {
    width: 100%;
    font-size: 20px !important;
    padding: 15px 5px;
  }

  #foot_data>div>div:nth-of-type(2) {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  #foot_data>div>div:nth-of-type(2) p {
    display: inline-block;
    margin: 0 auto;
  }

  #foot_data>div>div:nth-of-type(2) p:nth-of-type(1) {
    font-size: 36px;
    background-size: 50px auto;
    padding-left: 70px;
  }

  #foot_data>div>div:nth-of-type(2) p:nth-of-type(2) {
    display: block;
  }
}

/* 下層メイン */

body:not(#index) #main {
  background: url(../img/quartz/main.jpg) no-repeat top center;
  background-size: auto 60%;
  padding: 15% 0 0;
  position: relative;
  margin-bottom: 50px;
}

#quartz #main {
  background: url(../img/quartz/main.jpg) no-repeat top right !important;
  background-size: auto 60%;
}

#realglass #main {
  background: url(../img/realglass/main.jpg) no-repeat top right !important;
  background-size: auto 60%;
}

#himohs #main {
  background: url(../img/himohs/main.jpg) no-repeat top right !important;
  background-size: auto 60%;
}

#film #main {
  background: url(../img/film/main.jpg) no-repeat top right !important;
  background-size: auto 60%;
}

#room #main {
  background: url(../img/room/main.jpg) no-repeat top right !important;
  background-size: auto 60%;
}

#window #main {
  background: url(../img/window/main.jpg) no-repeat top right !important;
  background-size: auto 60%;
}

#rd #main {
  background: url(../img/rd/main.jpg) no-repeat top right !important;
  background-size: auto 60%;
}

#shop #main {
  background: url(../img/shop/main.jpg) no-repeat top right !important;
  background-size: auto 60%;
}

#clean #main {
  background: url(../img/clean/main.jpg) no-repeat top right !important;
  background-size: auto 60%;
}

#coat #main {
  background: url(../img/coat/main.jpg) no-repeat top right !important;
  background-size: auto 60%;
}

#option #main {
  background: url(../img/option/main.jpg) no-repeat top right !important;
  background-size: auto 60%;
}


#contact #main,
#infomation #main {
  background: none !important;
  padding: 0 !important;
  height: 50px;
}

#main_data {
  width: 80%;
  max-width: 800px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4% 5% 5%;
  align-items: flex-start;
  box-sizing: border-box;
  margin-left: calc(50% - 600px);
}

#main_data>p {
  width: 5%;
  writing-mode: vertical-rl;
  padding: 10px 5px 10px 0;
  box-sizing: border-box;
  font-size: 110%;
  margin-bottom: 0;
  text-align: left;
  color: #B2B200;
  border-right: 1px solid #B2B200;
  line-height: 1.6;
}

#main_data>div {
  width: 90%;
}

#main_data h2 {
  font-size: 180%;
  color: #B2B200;
}

#main_data h3.mincho {
  font-size: 230%;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 下層ページ */
#content>section {
  margin-bottom: 7%;
  text-align: center;
}

#content>section>img:nth-of-type(1) {
  max-width: 1100px;
  margin: 0 auto 30px;
}

#content>section>div {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

section h4 {
  position: relative;
  font-size: 140%;
  padding-left: 90px;
  line-height: 1.8;
  margin-bottom: 30px;
}

section h4::before {
  content: '';
  width: 70px;
  height: 25px;
  background: #B2B200;
  position: absolute;
  top: 10px;
  left: 0;
}


/* ガラスコーティングINDEX */

.coat_intro>div:nth-child(1) {
  position: relative;
  margin-bottom: 20px;
}

.coat_intro>div:nth-child(1)::before {
  content: "GLASS COATING";
  color: #B2B200;
  writing-mode: vertical-rl;
  position: absolute;
  left: -40px;
  top: 10px;
  font-family: 'Noto Serif JP', serif;
  white-space: pre-wrap;
}

.coat_intro h5 {
  color: #B2B200;
  font-size: 160%;
  margin-bottom: 10px;
}

.coat_intro h6 {
  font-size: 200%;
  margin-bottom: 10px;
}


/* クォーツガラスコーティング */
.quartz01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.quartz01>div:nth-child(1) {
  width: calc(100% - 350px);
}


.quartz01>div:nth-child(2) {
  width: 300px;
  position: relative;
}

.quartz01>div:nth-child(2) img {
  width: 200px;
  padding-top: 90px;
  display: block;
  margin: 0 auto;
}

.quartz01>div:nth-child(2)::before {
  content: '';
  width: 300px;
  height: 300px;
  border-radius: 300px;
  display: block;
  background: #eee;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.quartz02>div {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.quartz02>div>div {
  width: 47%;
  margin: 0 6% 5% 0;
  position: relative;
}

.quartz02>div>div:nth-child(2n) {
  margin: 0 0 5% 0;
}

.quartz02>div>div::before {
  content: "";
  top: 0;
  right: 0;
  border-bottom: 4.5em solid transparent;
  border-right: 5em solid #B2B200;
  position: absolute;
}

.quartz02>div>div>p {
  color: #fff;
  font-size: 140%;
  margin: 0;
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 20px;
  line-height: 1.4;
}

.quartz02>div>div dt {
  margin-bottom: 10px;
}

.quartz02>div>div dd span {
  display: block;
  font-size: 130%;
  color: #B2B200;
}

.quartz02>div>div dd .btn {
  margin: 1rem auto;
}

.quartz02>div>div dd .btn a {
  margin: 0 auto;
}

.quartz03>div>div {
  width: 100%;
  position: relative;
  border: 2px solid #222;
  box-sizing: border-box;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 10px;
}

.quartz03>div>div::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 100px;
  border: 25px solid transparent;
  border-top: 20px solid #222;
}

.quartz03>div>div:last-child:after {
  content: "";
  display: none;
}

.quartz03>div>div img {
  width: 400px;
  border-radius: 10px 0 0 10px;
}

.quartz03>div>div div {
  width: calc(100% - 400px);
  padding: 3%;
  box-sizing: border-box;
}

.quartz03>div>div div h5 {
  color: #B2B200;
  font-size: 130%;
}

.quartz03>div>div div p {
  margin: 0;
}

@media screen and (max-width: 1260px) {
  body:not(#index) #main {
    padding: 25% 0 0;
  }

  #main_data {
    width: 90%;
    margin-left: 5%;
  }

  #main_data h2 {
    font-size: 160%;
    margin-bottom: 15px;
  }

  #main_data h3.mincho {
    font-size: 200%;
  }

}

/* 自動見積 */
section#price {
  padding: 0em 0;
  text-align: center;
}

section#price>div.box_cont {
  width: 100%;
  text-align: left;
}

form#slct_price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-flex-pack: justify;
  -moz-flex-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0.5em 0 1em 0;
  padding: 35px 150px 20px;
  border: solid 2px #444;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

form#slct_price:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 55px 0px 55px;
  border-color: #B2B200 transparent transparent transparent;
  position: absolute;
  right: 0px;
  left: 0;
  bottom: -37px;
  margin: auto;
}

form#slct_price>.box_half {
  display: block;
  width: 100%;
  /*width: 515px;*/
  margin-bottom: 0;
}

form#slct_price dl {
  display: table;
  width: 100%;
  /*width: 515px;*/
  margin-bottom: 1em;
}

form#slct_price dl>dt {
  display: table-cell;
  width: 110px;
  padding-left: 0%;
  color: #FFF;
}

form#slct_price dl>dt span {
  width: 100%;
  display: block;
  background-color: #B2B200;
  -moz-border-radius: 14px;
  -webkit-border-radius: 14px;
  border-radius: 14px;
  text-align: center;
  color: #FFF;
}

form#slct_price dl>dd {
  display: table-cell;
  width: auto;
  padding-left: 15px;
}

form#slct_price dl>dd p {
  margin-top: 1em;
}

#slctQ {
  display: block;
  width: 100%;
  font-size: 1.1em;
  position: relative;
  /*padding:0.1em 0 0.3em; margin:1em 1em 3em 0; float:left;*/
}

#slctC {
  display: block;
  width: 100%;
  font-size: 1.1em;
  position: relative;
  /*padding:0.1em 0 0.3em; margin:1em 1em 3em 0; float:left;*/
}

#slctV {
  display: block;
  width: 100%;
  font-size: 1.1em;
  position: relative;
  /*padding:0.1em 0 0.3em; margin:1em 1em 3em 0; float:left;*/
}

.notice_ara {
  width: 90%;
  margin: 80px auto 40px;
}

.notice_araA {
  border: solid 3px #106170;
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border-radius: 8px;
}

.notice_araA h5 {
  color: #106170;
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FFF;
  font-weight: bold;
}

.notice_araB {
  border: solid 3px #7f5615;
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border-radius: 8px;
}

.notice_araB h5 {
  color: #7f5615;
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FFF;
  font-weight: bold;
}

.notice_araC {
  border: solid 3px #8c0e0e;
  position: relative;
  margin: 2em 0 0.5em;
  padding: 0.5em 1em;
  border-radius: 8px;
}

.notice_araC h5 {
  color: #8c0e0e;
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FFF;
  font-weight: bold;
}


.notice_araA p,
.notice_araB p,
.notice_araC p {
  margin: 0.5em 0 0.3em;
  padding: 0;
  padding-left: 5.3em;
  text-indent: -5.3em;
}

.notice_araA p b,
.notice_araB p b,
.notice_araC p b {
  margin-right: 0.2em;
}


/* 結果表示 */
div.output_unit {
  margin-bottom: 2em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-flex-pack: justify;
  -moz-flex-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
}

div.output_unit>h6 {
  display: block;
  width: 100%;
  text-align: center;
  margin: 1em auto 0.5em;
  font-size: 1.8em;
}

div.output_unit dl {
  display: block;
  width: 33.33%;
  text-align: center;
  font-size: 1.8em;
}

div.output_unit dl dt {
  display: block;
  padding: 0.7em 0;
}

div.output_unit dl dd {
  display: block;
  padding: 0.7em 0 0.7em 0.7em;
  font-size: 1.4em;
  color: #111 !important;
}

div.output_unit dl dd span {
  font-size: 0.5em;
}

@media (max-width: 767px) {
  .output_unit>div {
    flex-direction: column;
  }

}

dl.film_sd {
  border: 2px solid #333;
  width: 100% !important;
}

dl.film_sd>dt {
  background: #eee;
  color: #fff;
  border-bottom: 1px solid #999;
  color: #122025;
}

dl.film_sd>dd {}

dl.film_sl {}

dl.film_sl>dt {
  background: #B2B200;
  color: #fff;
}

dl.film_sl>dd {
  border: solid 2px #B2B200;
  color: #B2B200;
}

dl.film_as {}

dl.film_as>dt {
  background: #9B9B8C;
  color: #fff;
}

dl.film_as>dd {
  border: solid 2px #9B9B8C;
  color: #9B9B8C;
}

#himohs .output_unit>div,
.price-col .output_unit>div {
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

dl.film_hi {
  border: 2px solid #333 !important;
  width: 100%;
}

#realglass .output_unit>div {
  display: flex;
  width: 100%;
}

dl.film_hi {
  border: 2px solid #333;
  width: 100% !important;
}

dl.film_hi>dt {
  background: #eee;
  color: #fff;
  border-bottom: 1px solid #999;
  color: #122025;
}

dl.film_hi>dd {}

.output_add {
  display: block;
  font-size: 1.2em;
  margin: 1.5em 0 3em;
  text-align: center;
}


/* selectbox */
#realglass04 label {
  position: relative;
  display: block;
  /*border: 1px solid #f69;border-radius: 5px;*/
  background: #F9F9F9;
  /*display: block;width: 200px;*/
}

#realglass04 label:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 0;
  height: 0;
  margin: -2px 0 0 0;
  border: 5px solid transparent;
  border-top: 7px solid #B2B200;
}

#realglass04 select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.5em 1em;
  /*color: #f69;border: none;border-radius: 5px;*/
  background: transparent;
  /* position: relative;display: block;width: 200px;*/
}

#realglass04 ::-ms-expand {
  display: none;
}

#jumptgt {
  padding-top: 250px;
  margin-top: -250px;
  display: block;
  pointer-events: none;
}

/* リアルガラスコート */
.realglass01 img:nth-of-type(1) {
  margin-bottom: 2%;
}

.step_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto 3%;
}

.step_box dl {
  width: 31%;
  margin-bottom: 3%;
}

.step_box dl dt {
  position: relative;
}

.step_box dl dt::before {
  content: "";
  top: 0;
  right: 0;
  border-bottom: 4.5em solid transparent;
  border-right: 5em solid #B2B200;
  position: absolute;
}

.step_box dl dt p {
  color: #fff;
  font-size: 140%;
  margin: 0;
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 20px;
  line-height: 1.4;
}

.step_box_l dl {
  width: 48%;
  margin-bottom: 5%;
}


.lower h4 {
  margin-top: 5px;
}

.lower h4+p {
  margin-bottom: 3%;
}

.lower h5 {
  font-size: 120%;
  color: #B2B200;
}

/* ハイモースコート */
.himohs01 img:nth-of-type(1) {
  margin-bottom: 2%;
}

.himohs01>div {
  margin-top: 3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.himohs01>div>div {
  width: 47%;
}

.himohs01 h4 {
  margin-top: 5px;
}

.himohs01 h5 {
  font-size: 160%;
  margin-bottom: 15px;
}

/* カーフィルム */
.film_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto 3%;
}

.film_box dl {
  width: 31%;
  margin-bottom: 3%;
}

.film_box dl dt {
  position: relative;
  margin-top: 20px;
}

.film_box dl dt.toumei:before {
  content: '';
  width: 80px;
  height: 80px;
  background: url(../img/film/icon_toumei.png) no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: -30px;
  right: 95px;
}

.film_box dl dt.smoke:before {
  content: '';
  width: 80px;
  height: 80px;
  background: url(../img/film/icon_smoke.png) no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: -30px;
  right: 95px;
}

.film_box dl dt.dannetsu:after {
  content: '';
  width: 80px;
  height: 80px;
  background: url(../img/film/icon_dannetsu.png) no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: -30px;
  right: 10px;
}

.film_box dl dt.shanetsu:after {
  content: '';
  width: 80px;
  height: 80px;
  background: url(../img/film/icon_shanetsu.png) no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: -30px;
  right: 10px;
}

.film_data>div:nth-child(1) {
  width: 95%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  margin: 0 0 20px 5%;
}

.film_data>div:nth-child(1)::before {
  content: "CAR  FILM";
  color: #B2B200;
  writing-mode: vertical-rl;
  position: absolute;
  left: -40px;
  top: 10px;
  font-family: 'Noto Serif JP', serif;
  white-space: pre-wrap;
}

.film_data>div:nth-child(1)>div {
  width: 55%;
}

.film_data>div:nth-child(1)>img {
  width: 42%;
}

.film_data.data01>div:nth-child(1)>img {
  width: 32%;
}

.film_data h5 {
  color: #B2B200;
  font-size: 140%;
}

.film_data h6 {
  font-size: 180%;
}

.film_data .point {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 3%;
}

.film_data .point dl {
  width: 49%;
  padding: 2% 3% 1.5% 2%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #F8F8F5;
  margin-bottom: 20px;
}

.film_data .point dl dt {
  width: 25%;
}

.film_data .point dl dd {
  width: 70%;
}

.film_data .point dl dd span {
  font-size: 120%;
  color: #B2B200;
  display: block;
  margin-bottom: 3px;
  font-weight: bold;
}

.kore {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  margin-bottom: 5%;
  box-sizing: border-box;
  padding: 4% 1% 3% 4%;
  border: 3px solid #B2B200;
  border-radius: 10px;
}

.kore>div:nth-child(1) {
  width: 55%;
}

.kore h5 {
  font-size: 180%;
  color: #B2B200;
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.kore h5::after {
  content: '';
  width: 200px;
  height: 80px;
  background: url(../img/film/icon_kore.png) no-repeat top right;
  background-size: 100% auto;
  position: absolute;
  right: -220px;
  top: -10px;
}

.kore>div:nth-child(2) {
  width: 43%;
  text-align: center;
}

.tbl01 {
  width: 90%;
  max-width: 900px;
  box-sizing: border-box;
  border: 1px solid #999;
  margin: 0 auto;
  border-spacing: 0;
  border-collapse: collapse;
}

.tbl01 tr th:nth-child(1),
.tbl01 tr td:nth-child(1) {
  width: 28%;
  background: #F8F8F5;
  text-align: right;
}

.tbl01 tr th {
  text-align: center;
  padding: 10px 15px;
  box-sizing: border-box;
  border: 1px solid #999;
}

.tbl01 tr th {
  line-height: 1.2;
}

.tbl01 tr th small {
  font-size: 55%;
}

.tbl01 tr th span {
  font-size: 140%;
  color: #333;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-top: 45px;
  padding: 0 20px;
  background: linear-gradient(transparent 50%, #f7f78d 50%);
}

span.toumei89:after {
  content: '';
  width: 100px;
  height: 40px;
  background: #ebebeb;
  display: block;
  position: absolute;
  top: -45px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

span.toumei90:after {
  content: '';
  width: 100px;
  height: 40px;
  background: #f7f7f7;
  display: block;
  position: absolute;
  top: -45px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

span.smoke40:after {
  content: '';
  width: 100px;
  height: 40px;
  background: #666;
  display: block;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

span.smoke50:after {
  content: '';
  width: 100px;
  height: 40px;
  background: #7f7f7f;
  display: block;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

span.smoke60:after {
  content: '';
  width: 100px;
  height: 40px;
  background: #999;
  display: block;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

span.smoke70:after {
  content: '';
  width: 100px;
  height: 40px;
  background: #d9d9d9;
  display: block;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

span.smoke05:after {
  content: '';
  width: 100px;
  height: 40px;
  background: #333333;
  display: block;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

span.smoke20:after {
  content: '';
  width: 100px;
  height: 40px;
  background: #595959;
  display: block;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

span.smoke35:after {
  content: '';
  width: 100px;
  height: 40px;
  background: #8c8c8c;
  display: block;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: 0 auto;
}



.tbl01 tr td {
  padding: 10px 15px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #999;
  font-size: 110%;
}

.tbl01 tr td img {
  width: 25px;
  margin: 8px auto 0;
}



/* オプションINDEX */

.option_intro>div:nth-child(1) {
  position: relative;
  margin-bottom: 20px;
}

.option_intro>div:nth-child(1)::before {
  content: "OPTION MENU";
  color: #B2B200;
  writing-mode: vertical-rl;
  position: absolute;
  left: -40px;
  top: 10px;
  font-family: 'Noto Serif JP', serif;
  white-space: pre-wrap;
}

.option_intro h5 {
  color: #B2B200;
  font-size: 160%;
  margin-bottom: 10px;
}

.option_intro h6 {
  font-size: 200%;
  margin-bottom: 10px;
}



/* ルーム */
.osusume {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #F0F0E1;
  padding: 3% 2%;
  box-sizing: border-box;
  border-radius: 15px;
}

.osusume dl {
  width: 33.333%;
  box-sizing: border-box;
  padding: 0.5% 3% 1%;
  border-right: 1px #CECEBF solid;
}

.osusume dl:nth-child(3n) {
  border-right: none;
}

.osusume dl dt {
  color: #B2B200;
  font-size: 120%;
  font-weight: bold;
  margin-bottom: 5px;
}

.osusume dl dd {
  font-size: 90%;
}

.right_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.right_img>div {
  width: 55%;
  margin-bottom: 30px;
}

.right_img>img {
  width: 40%;
}

.price_tbl {
  width: 100%;
  border: 2px solid #333;
  box-sizing: border-box;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
}

.price_tbl th {
  background: #eee;
  padding: 0.7em 0;
  font-size: 150%;
  font-weight: bold;
  border-right: 2px solid #333;
  border-bottom: 1px solid #CDCDCD;
}

.price_tbl td {
  padding: 1.2em 0;
  font-size: 180%;
  font-weight: bold;
  border-right: 2px solid #333;
  box-sizing: border-box;
  color: #B2B200;
}

/* 店舗情報 */

.shop_data>div:nth-child(1) {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
}

.shop_data>div:nth-child(1)::before {
  content: "SHOP / ACCESS";
  color: #B2B200;
  writing-mode: vertical-rl;
  position: absolute;
  left: -40px;
  top: 10px;
  font-family: 'Noto Serif JP', serif;
  white-space: pre-wrap;
}

.shop_data>div:nth-child(1)>div:nth-of-type(1) {
  width: 55%;
}

.shop_data>div:nth-child(1)>div:nth-of-type(2) {
  width: 42%;
  margin-top: 10px;
}

.shop_data h5 {
  color: #B2B200;
  font-size: 160%;
  margin-bottom: 10px;
}

.shop_data h6 {
  font-size: 200%;
  margin-bottom: 10px;
}

.shop_data table {
  width: 100%;
  border: 2px solid #333;
  box-sizing: border-box;
  border-collapse: collapse;
  margin: 5% 0;
}

.shop_data table th {
  width: 30%;
  background: #B2B200;
  text-align: center;
  font-size: 130%;
  font-weight: bold;
  color: #fff;
  padding: 3% 3%;
  box-sizing: border-box;
  border-bottom: 2px solid #333;
  border-right: 1px solid #333;
}

.shop_data table td {
  font-size: 110%;
  padding: 3% 3%;
  box-sizing: border-box;
  border-bottom: 2px solid #333;
}

.shop_data table td span {
  font-size: 90%;
}

.shop_data .address {
  font-size: 105%;
  text-align: right;
  margin-bottom: 0;
}

.shop_data .telno {
  font-size: 300%;
  text-align: right;
  line-height: 1.4;
  margin-bottom: 0;
}

.shop_data .telno a {
  display: inline-block;
  background: url(../img/shop/icon_tel_b.png) no-repeat top 10px left;
  background-size: 50px auto;
  padding-left: 65px;
  color: #000 !important;
  font-weight: bold;
}

.faxno {
  text-align: right;
  text-align: right;
  font-size: 2rem;
}

.img_3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
}

.img_3 img {
  width: 31%;
}

.shop_car {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.shop_car>div {
  width: 50%;
}

.shop_car table {
  border: 2px solid #333;
  box-sizing: border-box;
  border-spacing: 0;
  text-align: center;
  border-radius: 20px;
  margin: 30px auto;
}

.shop_car table tr th {
  color: #fff;
  font-weight: bold;
  font-size: 140%;
  text-align: center;
  padding: 7px 15px 10px;
  box-sizing: border-box;
  background: #333;
  border-radius: 15px 15px 0 0;
}

.shop_car table tr td {
  padding: 20px 20px 10px;
  box-sizing: border-box;
}

.shop_car dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.shop_car dl dt {
  width: 5em;
  text-align: center;
  background: #B2B200;
  color: #fff;
  font-size: 110%;
  margin-bottom: 10px;
}

.shop_car dl dd {
  width: calc(100% - 5.5em);
  padding: 0 10px;
  margin-bottom: 10px;
  font-size: 110%;
  text-align: left;
  box-sizing: border-box;
}

.shop_car>img {
  width: 45%;
}

#infomation h2 {
  font-size: 140%;
  text-align: center;
  margin: 5% 0;
}


/************************************
** お問い合わせフォームの入力
************************************/
.contact_h2 {
  font-size: 240%;
  text-align: center;
  margin: 3% 0 5%;
}

.wpcf7 {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}


#cf-tbl table {
  width: 100%;
  border-collapse: collapse;
  border: solid #CCC;
  border-width: 1px;
  color: #444;
  margin-bottom: 50px;
}

#cf-tbl table tr th,
#cf-tbl table tr td {
  padding: 2% 2%;
  text-align: left;
  vertical-align: top;
  border: solid #CCC;
  border-width: 1px;
  vertical-align: middle;
  box-sizing: border-box;
}

#cf-tbl table tr th {
  width: 30%;
  background: #ededed;
  font-size: 100%;
}

#zip {
  width: 8em;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.your-add01 {
  width: 100%;
  margin-bottom: 10px;
  display: inline-block;
}

.wpcf7-captchac {
  max-width: 100px;
}

.wpcf7-captchar {
  max-width: 100px;
}

.captcha-301 {
  margin-top: 5px;
  display: inline-block;
}

@media screen and (max-width:768px) {
  #cf-tbl {
    width: 100%;
  }

  #cf-tbl table,
  #cf-tbl table tbody,
  #cf-tbl table tr,
  #cf-tbl table tr th,
  #cf-tbl table tr td {
    display: block;
  }

  #cf-tbl table {
    width: 100%;
    border-width: 0 0 1px 0;
  }

  #cf-tbl table tr th,
  #cf-tbl table tr td {
    width: 100%;
    padding: 3% 5%;
    box-sizing: border-box;
  }

  #cf-tbl table tr td {
    border-width: 0px 1px 0px 1px;
  }
}

/*「必須」文字デザイン*/
.required {
  font-size: .8em;
  padding: 5px;
  background: #b81c22;
  color: #fff;
  border-radius: 3px;
  margin-right: 10px;
}

/*「任意」文字デザイン*/
.optional {
  font-size: .8em;
  padding: 5px;
  background: #000080;
  color: #fff;
  border-radius: 3px;
  margin-right: 5px;
}

/* 入力項目を見やすく */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea,
.wpcf7-captchar {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d0d5d8;
  border-radius: 3px;
  background-color: #eff1f5;
  box-sizing: border-box;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  height: 200px;
}

input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  color: unset;
  font-size: unset;
  font-weight: unset;
}

/* 「送信する」ボタン */
#cf7-btn input {
  padding: 15px 0 15px 0;
  width: 250px;
  background: #B2B200;
  color: #fff;
  font-size: 160% !important;
  font-weight: 700;
  border-radius: 2px;
  margin: 15px auto 0;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  pointer-events: all;
  cursor: pointer;
  display: block;
  letter-spacing: 0.3em;
}

@media screen and (max-width:768px) {

  #cf7-btn {
    width: 250px;
  }
}

#cf7-btn input:hover {
  background: #e8e842;
  color: #fff;
  transition: all 0.5s;
}

/* エラーメッセージを見やすく */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
  color: red;
  font-weight: 600;
}

.wpcf7-response-output {
  font-size: 120%;
  text-align: center;
}

/* よくあるご質問 */
.faq {
  margin: 5% auto;
}

.faq>div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.faq>div dl {
  width: 46%;
  margin-bottom: 5%;
}

.faq>div dl dt {
  font-weight: bold;
  font-size: 110%;
  background: #f0f0d2;
  padding: 3px 4% 10px;
  box-sizing: border-box;
  margin-bottom: 3%;
  text-indent: -24px;
  padding-left: 62px;
  line-height: 1.8;
}

.faq>div dl dt span {
  font-size: 130%;
  color: #b2b200;
  display: inline-block;
  margin-right: 10px;
}

.faq>div dl dd {
  padding: 0 3%;
  box-sizing: border-box;
  line-height: 1.8;
}




/* 動画埋め込み */
.c-video {
  position: relative;
  width: 100%;

  &__title {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    padding: 30px;
    text-align: center;
    font-size: 45px;
    font-weight: 300;
    line-height: 1.6;
    white-space: nowrap;
    color: $color-white;
    background-color: $color-white;
    backdrop-filter: blur(3px);
  }

  &__embed {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}




.quartz01 span {}


.line-bnr{
  position: fixed;
  bottom: 100px;
  right: 0;
}

@media (max-width: 767px) {
  .line-bnr{
    width: 40px;
    bottom: 75px;
  }

}