@charset "UTF-8";

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */
*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}

  
body {
  background: #fff;
  color: #000;
  font-family:"游ゴシック", YuGothic, "Hiragino Sans","Hiragino Kaku Gothic ProN","メイリオ", Meiryo, Verdana, sans-serif;
  font-weight:500;
  /*font-feature-settings: "palt";*/
  font-feature-settings: "palt";
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
  @media screen and (max-width: 999px) {
    body{
      /*font-size: 2.93vw;*/
      font-size: 1.6rem;
    }
    p {font-size: 1.6rem;}
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.2s ease-in-out 0s;
}
a:link {
  color: #FF8787;
}
a:visited {
  color: #FF8787;
}
a:hover {
  text-decoration: none;
  color: #FF8787;
}
a:active {
  color: #FF8787;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
}

/*----------------------------------------------------
 フォントカラー
--------------------------------------------------- */
.fc01 {
  color: #FF8787;
}

/*----------------------------------------------------
 汎用クラス
--------------------------------------------------- */
.flex {
  display: flex;
}
/* 横逆順 */
.fx_r_reverse {
  flex-direction: row-reverse;
}
/* 縦逆順 */
.fx_c_reverse {
  flex-direction: column-reverse;
}
/*アイテム折返し*/
.fx_wrap {
  flex-wrap: wrap;
}
/* 等間隔に配置 */
.fx_between {
  justify-content: space-between;
}
/* センターに配置 */
.fx_center {
  justify-content: center;
}
/* 右側に配置 */
.fx_end {
  justify-content: flex-end;
}
/*上下中央寄せ*/
.fx_all_center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.table_cell {
  display: table-cell;
  vertical-align: middle;
}
.fr {
  float: right;
}
.fl {
  float: left;
}
.tC {
  text-align: center;
}
.tR {
  text-align: right;
}
.pc_none {
  display:none;
}
.clearfix:after {
  content: ""; 
  display: block; 
  clear: both;
}
@media screen and (max-width: 999px) {
  .pc_none {
    display:block;
  }
  .sp_none {
    display:none;
  }
  .fl,.fr {
    box-sizing:border-box;
    width:100%!important;
    float:none!important;
  }
  .sp_block {
    display: block;
  }
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 999px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  overflow:hidden;
  padding-top: 190px;
}
#contents {
  line-height: 1.5;
}
#contents a:hover img{
  opacity: 0.70;
}
.wrapper {
  position: relative;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.inner {
  position: relative;
  max-width: 1264px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
  @media screen and (max-width: 999px) {
    html, body, #page {
      min-width: 100%!important;
      max-width: 100%!important;
      width: 100%!important;
    }
    #page {
      padding-top: 14.66vw;
      
      margin-bottom:5rem;
    }
    #contents {
    }
    .wrapper, .inner {
      width: 100%;
      max-width: 100%;
      padding-left: 5.33vw;
      padding-right: 5.33vw;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 190px;
  background: rgba(255,255,255,0.9);
}
.hd_inner {
  position: relative;
  width: 100%;
  height: 132px;
  max-width: 1264px;
  margin: 0 auto;
}
.hd_logo {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000!important;
  padding-top: 16px;
}
.site_copy {
  margin-bottom: 8px;
}
.hd_tel {
  position: absolute;
  right: 20px;
  top: 0;
}
.hd_tel a {
  width: 288px;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: #FF8787;
  border-radius: 0 0 16px 16px;
}
.hd_tel a:hover {
  filter: brightness(1.2);
}
.hd_tel dt {
  font-size: 3rem;
  margin-bottom: 5px;
}
  @media screen and (max-width: 999px) {
    #header {
      height: 14.66vw;
    }
    .hd_inner {
      height: 14.66vw;
      max-width: 100%;
    }
    .hd_logo {
      position: absolute;
      top: 1.8vw;
      left: 5.33vw;
      padding-top: 0;
    }
    .hd_logo img {
      width: 39.2vw;
      height: auto;
    }
    .site_copy {
      margin-bottom: 1.13vw;
      font-size: 2.93vw;
    }
    .hd_tel {
      position: absolute;
      right: 14.66vw;
      top: 0;
    }
    .hd_tel a {
      width: 14.66vw;
      height: 14.66vw;
      background: url("../img/common/ico/ico_phone01.svg") #FF8787 center center no-repeat;
      background-size: 4.6vw auto;
      border-radius: 0;
    }
  }

.hd_hours {
  position: absolute;
  left: 20px;
  top: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-end;
  border: solid 1px #FFA0A0;
  border-radius: 6px;
}
.hd_hours table {
  width: 280px;
  font-size: 1.3rem;
  text-align: center;
  color: #FFA0A0;
  white-space: nowrap;
}
.hd_hours tr:first-child {
  border-bottom: solid 1px #FFA0A0;
}
.hd_hours tr:first-child th {
  padding-bottom: 5px;
}
.hd_hours th:first-child {
  width: 31.4%;
}
.hd_hours tr:nth-child(2) > * {
  padding-top: 5px;
}
.hd_hours th small {
  font-size: 1.2rem;
}
.hd_hours th {
  padding: 2px 0;
}
.hd_hours td {
  width: 9.8%;
  padding: 2px 0;
}
.hd_hours p {
  font-size: 1.1rem;
  line-height: 1.3;
  white-space: nowrap;
  margin-left: 10px;
}
  @media screen and (max-width: 1120px) {
    .hd_hours {
      display: block;
      padding: 8px 10px;
    }
    .hd_hours p {
      margin: 5px 0 0 0;
    }
    .hd_hours p br {
      display: none;
    }
  }
  @media screen and (max-width: 999px) {
    .hd_hours {
      display: none;
    }
  }

/*----------------------------------------------------
	グローバルナビ
----------------------------------------------------*/
#gNavi {
  width: 100%;
  padding: 0 20px;
}
#gNavi ul {
  max-width: 1060px;
  margin: 0 auto;
}
#gNavi li {
  position: relative;
  width: 25%;
  text-align: center;
}
#gNavi li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: url("../img/common/bg/border01.png") center top repeat-y;
  background-size: 1px auto;
}
#gNavi li:last-child::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: url("../img/common/bg/border01.png") center top repeat-y;
  background-size: 1px auto;
}
#gNavi li a {
  display: block;
  text-decoration: none;
  color: #000;
  /*font-size: 1.4rem;*/
  font-size: 1.6rem;
  padding: 8px 3px;
}
#gNavi li a:hover {
  color: #FF8787;
}

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#ft_map iframe {
  width: 100%;
  height: 380px;
}
  @media screen and (max-width: 999px) {
    #ft_map iframe {
      height: 60vw;
    }
  }

#footer {
  padding: 40px 0;
}
.ft_logo {
  text-align: center;
  margin-right: 30px;
}
  @media screen and (max-width: 1060px) {
    .ft_logo {
      margin-right: 20px;
    }
  }
.ft_logo h2 {
  text-align: center;
  margin-bottom: 7px;
}
.ft_info p {
  font-size: 1.4rem;
  line-height: 1.3;
}
  @media screen and (max-width: 999px) {
    #footer {
      padding: 10.66vw 0;
    }
    .ft_wrap {
      justify-content: center;
    }
    .ft_logo {
      margin-right: 4vw;
    }
    .ft_logo h2 {
      font-size: 2.66vw;
      margin-bottom: 1.33vw;
    }
    .ft_logo img {
      width: 36vw;
      height: auto;
    }
    .ft_info p {
      font-size: 2.33vw;
    }
  }

.ft_menu ul {
  margin-left: 30px;
}
  @media screen and (max-width: 1060px) {
    .ft_menu ul {
      margin-left: 20px;
    }
  }
.ft_menu ul:first-child {
  margin-left: 0;
}
.ft_menu li {
  font-size: 1.4rem;
  line-height: 1.8;
}
.ft_menu li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
  padding-left: 14px;
}
.ft_menu li a::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "・";
}

.copyright {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  margin-top: 40px;
}
  @media screen and (max-width: 999px) {
    .copyright {
      font-size: 2.4vw;
      margin-top: 8vw;
    }
  }

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.pagetop {
  position: fixed;
  right: 0;
  bottom: 30px;
  z-index: 100;
  display:none;
}
.pagetop a:hover {
  filter: brightness(1.1);
}
  @media screen and (max-width: 999px) {
    .pagetop {
      bottom: 5.33vw;
    }
    .pagetop a:hover {
      filter: brightness(1);
    }
    .pagetop img {
      width: 8vw;
      height: auto;
    }
  }

/*----------------------------------------------------
  共通メニュー
--------------------------------------------------- */

  /*スマホナビ*/
  @media screen and (max-width: 999px) {
    #menuTrigger {
      position: fixed;
      z-index: 150;
      top: 0;
      right: 0;
      display: block;
      width: 14.66vw;
      height: 14.66vw;
      cursor: pointer;
      background: url("../img/common/hb_menu.svg") center center no-repeat;
      background-size: 6.2vw auto;
    }
    #menuTrigger.open{
      background: url("../img/common/hb_close.svg") center center no-repeat;
      background-size: 6.2vw auto;
    }
    #hbNav {
      box-sizing: border-box;
      position: fixed;
      top: 14.66vw;
      right: -75vw;
      opacity: 0;
      width: 75vw;
      height: calc(100% - 14.66vw);
      margin: 0;
      padding: 0;
      background : rgba(255,135,135,0.92);
      z-index: 120;
      overflow-y: visible;
      overflow-x: hidden;
      -webkit-overflow-scrolling: auto;
      overflow-scrolling: auto;
      transition: all 0.6s ease 0s;
    }
    #hbNav.active {
      opacity: 1;
      right: 0;
    }
    .hb_inner {
      box-sizing: border-box;
      display: table;
      width: 100%;
      height: 100%;
      font-size: 4vw;
      padding: 13.33vw 10.66vw;
      line-height: 1.5;
    }
    .hb_menu01 li {
      margin-bottom: 5.33vw;
    }
    .hb_menu01 li a {
      position: relative;
      display: inline-block;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0;
      padding-left: 4.6vw;
    }
    .hb_menu01 li a::after {
      position: absolute;
      left: 0;
      top: calc(50% - 0.5vw);
      content: "";
      width: 1vw;
      height: 1vw;
      background: #fff;
      border-radius: 50%;
    }
    .hb_menu01 li small {
      display: inline-block;
      margin-left: 2vw;
      font-size: 4vw;
    }
  }

 /*----------------------------------------------------
  ページ
--------------------------------------------------- */  
#thanks,
#faq,
#examples,
#flow,
#fee_kinds,
#access{padding:3rem 0 6rem;}

/*bgピンク*/
.bg_pink{
	background-color: #fffafa;
	padding: 6rem 0 6rem;
	}

/*罫線ボックス*/
.w_box{
	border:1px solid #b3b3b3;
	padding:6rem 11rem;
	background-color: #fff;
}
@media screen and (max-width: 999px) {
	.w_box{padding:2rem 3rem;}
	}
/*罫線なしボックス*/
.w_box2{
	padding:6rem 11rem;
	background-color: #fff;
}
@media screen and (max-width: 999px) {
	.w_box2{padding:2rem 3rem;}
	}

 /*----------------------------------------------------
  改行
--------------------------------------------------- */
.br_sp{display: none;}
@media screen and (max-width: 999px) {
	.br_sp{display: block;}
	}

 /*----------------------------------------------------
  見出し
--------------------------------------------------- */
.h2_ttl{
	text-align: center;
	font-size: 30px;
	font-size: 3rem;
	font-weight: 300;
	padding:4rem 0;
}
.h2_ttl span{color: #ff8787;}
 /*----------------------------------------------------
  マージン
--------------------------------------------------- */
.mgb1{margin-bottom: 1rem;}
.mgb2{margin-bottom: 2rem;}
.mgb3{margin-bottom: 3rem;}
.mgb4{margin-bottom: 4rem;}
.mgb5{margin-bottom: 5rem;}
.mgb6{margin-bottom: 6rem;}
.mgb7{margin-bottom: 7rem;}
.mgb8{margin-bottom: 8rem;}
.mgb9{margin-bottom: 9rem;}
.mgb10{margin-bottom: 10rem;}
.mgt3{margin-top: 3rem;}

 /*----------------------------------------------------
  共通　ページ下部　リンク
--------------------------------------------------- */
.parts_btn_others{margin: 1rem;}
.parts_btn_others .inner{
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 999px) {
	.parts_btn_others .inner{
		flex-direction: column;
		margin:10px
	}
}
.parts_btn_others .flex_box{
	display: flex;
	justify-content: space-between;
	width: 60rem;
	
	border:3px solid #ffa0a0;
	border-radius: 2rem;
	padding:3rem 2rem;
	
}
@media screen and (max-width: 999px) {
	.parts_btn_others .flex_box{
		margin: 0.5rem;
		width: 100%;
		}
	}
.parts_btn_others .flex_box::first-child{margin-right: 1rem;}
.parts_btn_others .flex_box .img_box{margin-right: 1rem;}
.parts_btn_others .flex_box .img_box img{width: 100%;}
@media screen and (max-width: 999px) {
	.parts_btn_others .flex_box .img{width: 40%;}
	}
.parts_btn_others .flex_box .text_box{
	position: relative;
	width: 65%;
	}
.parts_btn_others .flex_box .text_box h3{
	color: #ff8787;
	font-size: 2.6rem;
	font-weight: 600;
	margin-bottom: 1.4rem;
	}
@media screen and (max-width: 999px) {
	.parts_btn_others .flex_box .text_box h3{font-size: 2rem;}
	}
.parts_btn_others .flex_box .text_box p{margin-bottom: 6rem;}
@media screen and (max-width: 999px) {
	.parts_btn_others .flex_box .text_box p{}
	}
.parts_btn_others .flex_box .text_box  a{
	position: absolute;
	bottom: 0;
	right: 0;
	
	text-decoration: none;
	color: #fff;
	background-color: #ff8787;
	padding:0.6rem 2rem;
}

/*上部へボタン*/
.btn_list_top{
	text-align: right;
	margin-bottom: 3rem;
}
/*----------------------------------------------------
	ボディーコピー飾り
----------------------------------------------------*/
/*マーカー*/
.p_line{
	background:linear-gradient(transparent 50%, #ffe2e2 50%);
}
/*----------------------------------------------------
	ページ下部　共通バナー .ban_common
----------------------------------------------------*/
.ban_common{
	text-align: center;
	margin:1rem 0 2rem 0;
	}
.ban_common .ban_tel{}
.ban_common .ban_online{}
.ban_common a{}
.ban_common a:hover{filter: brightness(1.1);}
/*----------------------------------------------------
	sp　下部固定ボタン　.sp_btn
----------------------------------------------------*/
.sp_btn{display: none;}
@media screen and (max-width: 999px) {
	.sp_btn{
		display: block;
		display: flex;
		justify-content: space-between;
		text-align: center;
		position: fixed;
		bottom: 0;
		
		width: 100%;
		margin:auto;
		}
	}
.sp_btn div{
	width: 50%;
	padding: 1rem;
	}
.sp_btn div img{width: 50%;}
.sp_btn .online{ background-color:#ff8787;}
.sp_btn .tel{ background-color:#e6e6e6;}
.sp_btn .tel img{width: 60%;}
.sp_btn a{}
.sp_btn a:hover{}
/*----------------------------------------------------
  画像切り替え
--------------------------------------------------- */
.img_pc{display: block;}
.img_sp{display: none;}
@media screen and (max-width: 768px) {
   .img_pc{display: none;}
   .img_sp{display: block;}
}

/*----------------------------------------------------
  オープニング FV直下
--------------------------------------------------- */
.opening{
	background: linear-gradient(#fff, #fff, #ffd5d5);
	padding:5rem 0 10rem;
}
.opening .inner{
	width: 1050px;
	width: 860px;
	margin:0 auto;
}
.opening h2{
	font-size: 3.4rem;
	font-weight: 400;
	letter-spacing: 1rem;
	margin-bottom: 5rem;
	text-align: center;
}
.opening h2 span{
	background: linear-gradient(transparent 50%, #ffe2e2 50%);
}
.opening p{
	font-size: min(1.85vw, 2.2rem);
	line-height: 3;
}
@media screen and (max-width: 768px) {
	.opening{padding:5rem 0 8rem;}
	.opening .inner{width: 100%;}
	.opening h2{font-size: 2.8rem; margin-bottom: 5rem;}
	.opening p{margin-left: 0; line-height: 2.6; font-size: 3.8vw;}
}

/*----------------------------------------------------
  条件分岐アンケート
--------------------------------------------------- */
.denture-survey {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.survey-title {
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 4px solid #ff8787;
    color: #333;
}

.survey-step {
    display: none;
}

.survey-step.active {
    display: block;
}

.survey-answer {
    display: block;
    width: 100%;
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 500;
    text-align: left;
    background: #fff;
    border: 2px solid #ff8787;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.survey-answer:hover {
    background: #fff0f0;
    border-color: #ff6b6b;
}

.survey-result {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.survey-result span {
    color: #ff8787;
    font-weight: 600;
}

@media screen and (max-width: 999px) {
    .survey-title {
        font-size: 2.4rem;
        border-bottom: 3px solid #ff8787;
    }
    
    .survey-answer {
        padding: 1rem 2rem;
        font-size: 1.6rem;
    }
}