*{
  font-family: FWD Cicular,"Noto Sans JP", sans-serif;
}
html {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  font-family: FWD Cicular,"Noto Sans JP", sans-serif;
}
body{
	font-family: FWD Cicular,"Noto Sans JP", sans-serif;
  color: #183028;
}
img{
  font-family: FWD Cicular,"Noto Sans JP", sans-serif;
}
body, div, span, object, iframe, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure
footer, header, hgroup, menu, nav, main, section {
  display: block;
}
img {
  vertical-align: bottom;
  width: 100%;
}
ul, ol, li {
  list-style: none;
  box-sizing: border-box;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #183028;
  box-sizing: border-box;
}
@font-face {
  font-family: 'FWD Cicular';
  src: url(../fonts/FWDCircular-Bold.woff2);
}
.pc-only {display: block;}
.sp-only { display: none; }
x-small {font-size: 60%;}
small { font-size: 80%; }
strong { font-size: 120%; }
medium {font-size: 130%;}
large {font-size: 200%;}
bold { font-weight: 600;}
orange { color: #e87722; }
blue { color: #0097A9; }
line { border-bottom: solid 2px #e87722; }
lineG { border-bottom: solid 2px }
marker { background: #FED141; }
marker2 { background: linear-gradient(#fff 60%, #FED141 40%); }
.textTop {
  font-size: 80%;
  vertical-align: text-top;
}
.textBottom {
  font-size: 120%;
  vertical-align: bottom;
}
.smallThin {
  display: block;
  font-size: 80%;
  font-weight: 400;
  padding: 10px 10px 0 20px; 
  text-indent: -20px;
}
.text_center {text-align: center; font-weight: 500; margin-top: 30px; line-height: 1.8;}
.linkBlue {color: #0097a9;border-bottom: solid 1px;}
/*===== header =====*/
.header {
  padding: 12px;
  border-bottom: 4px solid #e87722;
}
.header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
.header_logo {
  width: 30%;
}
.header_logo img {
  max-width: 200px;
}
.header_tel p {
  background: #0097a9;
  border-radius: 6px;
  border: solid 2px #0097a9;
  transition: 0.5s;
}
.header_tel p a {
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 10px 36px 10px 18px;
  font-size: 1.1em;
}
.header_tel p a:before {
  content:'';
  position: absolute;
  right: 16px;
  top: 36%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(43deg);
}
.header_tel p:hover {
  background: #fff;
}
.header_tel p:hover a {
  color: #0097a9;
}
.header_tel p:hover a:before {
  border-top: 3px solid #0097a9;
  border-right: 3px solid #0097a9;
}
.header_tel.sp-only {
  display: none;
}
/*============ FV ============*/
.fv {
  position: relative;
}
.fvImage {
  position: relative;
  background: #183028;
}
.fvImage figcaption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 90%;
}
.fvImage img {
  object-fit: cover;
  max-height: 500px;
  max-width: 1980px;
  margin: 0 auto;
}
.fvguard {
  position: absolute;
  left: 0;
  bottom: 70px;
  background: rgba(255, 255, 255, 0.5);
  padding: 6px 40px;
  font-size: 1vw;
}
/*===== グローバルナビ =====*/
.gnwrap {
  position: relative;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
  background: rgba(255,255,255,0.5);
  width: 100%;
  background: #fff;
}
.gnwrap.fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  border-bottom: solid 2px #fed141;
  animation: DownAnime 0.5s forwards;
  background: rgba(255,255,255,0.95);
}
/*　下に下がる動き　*/
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.global {
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.nav {
  border-right: solid 1px #e87722;
  padding: 0 10px;
}
.nav:nth-child(n+6) {
  border: none;
}
.nav a {
  display: block;
  padding: 6px;
}
.navPC:hover, .navPC:focus {
  background: #f8d6bd;
  transition: 0.2s;
  border-radius: 4px;
}
.tab_menu {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  font-weight: 500;
  z-index: 999;
  text-align: center;
}
.tab_menu li {
  margin: 0 6px;
  line-height: 1.4;
}
.tab_mark {
  width: 30px;
  height: 30px;
}
.tab_allow {
  height: 35px;
}
/*===== main =====*/
main {
}
.feature {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background: linear-gradient(180deg, #FEE8A0 20%, #FFF);
}
/*===== 特徴 =====*/
.feature_main {
  background: #fff;
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
  border-radius: 14px;
  box-shadow: 0px 0px 6px 3px rgb(223 117 0 / 27%);
  margin-top: 4rem;
  padding-bottom: 2rem;
}
.feature_wrap {
  position: relative;
  padding: 1rem 2rem;
}
.feature_tab {
  position: absolute;
  top: -3.7rem;
  left: 5%;
  width: 50%;
}
.feature_tab_name {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e87722;
  border-radius: 10px 10px 0 0;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.3;
  width: 100%;
}
.feature_tab_name li {
  margin: 0 6px;
}
.name_icon {width: 40px;}
.productTop {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
button {
  background: #465953;
  color: #fff;
  border: none;
  padding: 4px;
  font-size: 1.4em;
  font-weight: 600;
  margin-top: 20px;
  width: 100%;
}
button#summary_acc_iryo {
    margin-top: 0;
}
.product_wrap {
  margin: 0 auto;
}
.toc_cont_item {
  position: relative;
  display: flex;
  background: #FED141;
  margin: 30px auto;
  align-items: center;
  font-weight: 500;
}
.toc_cont_item ul {
  display: flex;
  align-items: center;
  width: 100%;
}
.cont_item_top {
  position: relative;
  background: #e87722;
  color: #fff;
  padding: 14px;
  min-width: 10%;
  text-align: center;
  font-size: 140%;
}
.cont_item_top:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: -16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 16px solid #e87722;
  border-right: 0;
}
.cont_item_bottom {
  padding: 6px 30px;
}
.cont_wrap {
  max-width: 94%;
  margin: 0 auto;
}
.cont_wrap figure img {
  padding: 10px 0;
  width: 80%;
  margin: 0 auto;
}
h4 {
  font-size: 140%;
}
h6 {
  background: #0097A9;
  text-align: center;
  color: #fff;
  padding: 10px;
  font-size: 140%;
  margin: 20px 0;
}
.feature_period {
  padding: 2rem 0 3rem 0;
  border-bottom: solid 1px;
}
.feature_period:last-child {
  border: none;
  padding: 2rem 0 1rem 0;
}
.feature_period figure {
  padding: 20px 0;
  width: 90%;
  margin: 0 auto;
}
.feature_cont {
  display: flex;
  align-items: flex-start;
  font-size: 1.5em;
  font-weight: 600;
}
.comments {
  padding: 10px 0 0 22px;
  text-indent: -22px;
  font-size: 1em;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
/*---------- mib -------------*/
#feature_MIB .productTop {
  background: linear-gradient(180deg, #fff 76%, rgba(232, 119, 34, 1) 76%);
}
.mib_cont {padding-left: 1rem; width: 70%;}
.mib_cont h2 {
  color: #e87722;
  text-align: center;
  font-size: 2em;
}
.mib_cont_notes {
  font-size: 16px;
  color: #e87722;
  text-align: center;
  padding: 6px 0 0;
}
.mib_cont figure {
  width: 100%;
}
.mib_fee_wrap {
  border: solid 2px #e87722;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 5px 0 rgb(187 187 187 / 60%);
  padding: 24px;
  margin-top: 18px;
}
.mib_fee_wrap div {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.mib_fee_wrap ul {
  text-align: center;
  font-weight: 600;
  font-size: 1.4em;
}
.mib_fee_woman {
  background: #e87722;
  color: #fff;
  border-radius: 30px;
  padding: 2px;
}
.mib_fee_man {
  background: #0097a9;
  color: #fff;
  border-radius: 30px;
  padding: 2px;
}
.mib_fee_wrap ol {
  display: flex;
  align-items: center;
}
.mib_fee_text {
  line-height: 1.2;
  font-size: medium;
  padding: 10px 14px 0;
}
.price {
  font-size: xxx-large;
  line-height: 1.3;
  padding-left: 10px;
}
.fee_notes {
  font-size: 14px;
  color: #2f453d;
  margin-top: 20px;
}
.ranking {
  background: #e87722;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.ranking figure {
  background: #fff;
  margin: 10px;
  border-radius: 10px;
  padding: 6px 14px;
  width: 36%;
}
.ranking figure .kakakuimg { max-width:160px; padding-bottom:8px; display:block; margin:0 auto; }
.ranking figure .tokumaimg { max-width:120px; padding-bottom:8px; display:block; margin:0 auto; }
.ranking figcaption { font-size:13px; text-align:center; }
.ranking ul {
  color: #fff;
  font-size: 14px;
}
.ranking ul li {margin: 14px 8px;}
.way_text {
  padding-left: 18px;
  text-indent: -18px;
}
.decreas {
  width: 90%;
  margin: 1rem auto;
  display: block;
}
.guide {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
}
.guide li img {
  width: 90px;
}
.guide li {
  font-size: 140%;
  margin: 10px;
  font-weight: 500;
}
.summary {
  background: #FFF6D9;
  padding: 20px;
  font-weight: 500;
  border-radius: 10px;
  margin: 20px 0 0;
  font-size: 140%;
  line-height: 1.6;
}
.details {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 6px;
}
.details div {
  width: 48%;
}
.detail_title {
  background: #e87722;
  color: #fff;
  text-align: center;
  padding: 6px;
  font-size: 130%;
}
.detail_img {
  border: solid 1px #e87722;
  padding: 20px;
}
.detail_img img {
  display: block;
}
.premium {
  background: #fae4d3;
  text-align: center;
  font-size: 140%;
  font-weight: 500;
  padding: 20px 0;
  border-radius: 8px;
  margin: 20px 0 6px;
}
/*---------- iryo2 ------------*/

/*---------- kanwa ------------*/
.Policy_title {
  border-radius: 6px 6px 0 0;
  padding: 6px 10px 10px;
  background: #e87722;
}

.accordion {position: relative;} 
.accordion::before {
  position: absolute;
  content: "▼";
  width: 30px;
  height: 30px;
  left: 10%;
  top: 0;
}
.accordion::after {
  position: absolute;
  content: "▼";
  width: 30px;
  height: 30px;
  right: 10%;
  top: 0;
}

.acc_wrap.close {display: none;}
.accordion.close::before, .accordion.close::after {
  transform: rotate(180deg);
  transition: transform 0.3s;
  top: 8px;
}

.add_conts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 20px;
  font-size: 1.3em;
  font-weight: 600;
  justify-content: space-evenly;
}
.add_conts li {
  border: solid 2px #0097a9;
  border-radius: 6px;
  padding: 12px 0 12px 40px;
  color: #0097a9;
  width: 44%;
  margin: 10px;
}
.kanwa_wrap {
  background: #fe9d0a;
}
.fv_fee {
  margin: 0 auto;
  max-width: 900px;
  width: 96%;
}
.fv_fee_title {
  color: #fff;
  font-weight: 600;
  border-bottom: solid 2px #fff;
  padding: 0 0 10px 0;
  margin-top: -10px;
  width: 100%;
  font-size: 1.2em;
}
.fv_fee ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}
.fv_fee ul li {
  width: 48%;
}
.fv_fee ul div {
  background: #fff;
  border-radius: 10px;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 50px;
  align-items: center;
  font-size: 110%;
}
.fv_fee_gender {
  width: 90%;
  text-align: center;
  color: #fff;
  padding: 2px;
  font-weight: 500;
}
.fv_fee_gender.man {
  background: #0097A9;
}
.fv_fee_gender.woman {
  background: #e87722;
}
.fv_fee_txt {
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
  padding: 6px 20px 0 0;
  color: #465953;
}
.fv_fee_ex {
  font-weight: 600;
  font-size: 1.6em;
  color: #465953;
}
.fv_notes {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  padding-bottom: 10px;
}
.kanwa_point {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 36px 0 20px 0;
}
.point_num {
  background: #2F453D;
  padding: 14px 10px;
  color: #fff;
  margin-right: 24px;
  font-weight: 600;
  font-size: 1.2em;
  min-width: 110px;
  text-align: center;
}
H4 {
  font-weight: 600;
  color: #2F453D;
  font-size: 1.6em;
  line-height: 1.4;
}
.point_notes {
  font-size: 16px;
  color: #2F453D;
  font-weight: 500;
}
.frame {
  background: #fff;
  border: solid 2px #e87722;
  padding: 2rem 0;
}
.SIpolicy_title {
  color: #e87722;
  font-size: 1.4em;
  text-align: center;
  font-weight: 500;
  border-bottom: dotted 2px #e87722;
  padding-bottom: 20px;
  max-width: 860px;
  width: 94%;
  margin: 0 auto;
}
.policy_wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.policy_wrapper div {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 26px 10px;
  border-bottom: dotted 2px #e87722;
}
.policy_wrapper div.policy_last {
  border-bottom: none;
}
.SInumber {
  color: #e87722;
  font-size: 2.4em;
  font-weight: 600;
  width: 8%;
  text-align: center;
  line-height: 1.1;
}
.policy_wrapper figure {
  width: 8%;
  margin: 0 8px;
}
.policy_wrapper figure img {
  padding: 10px;
}
.policy_conts {
  font-weight: 500;
  font-size: 1.3em;
  width: 80%;
  color: #2F453D;
}
.policy_notes {
  font-size: 14px;
  font-weight: 400;
}
.plan_conts {
  max-width: 860px;
  width: 94%;
  margin: 0 auto;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.6;
}
.plan_notes {
  padding-left: 18px;
  text-indent: -18px;
  max-width: 860px;
  width: 94%;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
}
.policyAdd {
  background: #fff;
  border: solid 8px #2F453D;
}
H5.SI_add {
  background: #2F453D;
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 1.2em;
  padding: 0 0 6px 0;
  margin: 0;
}
.policyAdd_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 840px;
  margin: 0 auto;
  padding: 1rem 0;
}
.policyAdd_list li {
  background: #FAE4D3;
  text-align: center;
  width: 48%;
  margin: 4px;
  padding: 4px;
}
#AddBtn {
  width: 90%;
  margin: 0 auto;
  background: #fff;
  border: solid 1px #2F453D;
  text-align: center;
  padding: 4px;
  color: #2F453D;
  font-size: 1.2em;
  display: block;
  cursor: pointer;
  transition: 0.2s;
  margin-bottom: 20px;
}
#AddBtn:hover {
  background: #465953;
  color: #fff;
}
#policyAdd_conts {
  padding: 1rem;
}
.policyAdd_conts_wrap {
  max-width: 840px;
  margin: 1rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.policyAdd_conts_list {
  width: 48%;
}
.policyAdd_conts_list li {
  background: #FAE4D3;
  text-align: center;
  margin: 6px;
  padding: 4px;
}
#policyAdd_conts figure {
  max-width: 180px;
}
.policyAdd_term {
  width: 20%;
  font-size: 1.4em;
  font-weight: 600;
}
#policyAdd_conts .policy_conts li {
  margin-bottom: 14px;
}
/*-------------------------------*/
.glossary {
  max-width: 840px;
  width: 96%;
  margin: 1rem auto;
}
.glossary div {
  position: relative;
  background: #E5F5F6;
  padding: 14px;
  margin-top: 3rem;
  margin-bottom: 10px;
}
.glossary div:before {
  position: absolute;
  content: "用語の説明";
  background: #0097A9;
  color: #fff;
  font-weight: 600;
  padding: 2px 16px;
  text-align: center;
  top: -20px;
  left: 10px;
}
.glossary div ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0;
  font-size: 15px;
}
.glossary_title {
  text-align: center;
  width: 20%;
  font-weight: 600;
  margin-right: 20px;
}
.glossary_txt {
  width: 80%;
  color: #465953;
  line-height: 1.3;
  font-weight: 500;
}
.glossary p {
  font-size: 15px;
  padding-left: 18px;
  text-indent: -18px;
}
.hidearea { display: none; }
.pointThreeImg { width:90%; margin:1rem auto; }
/*-------------------------------*/
.link_blue {
  color: #0097a9;
  font-weight: 600;
  border-bottom: solid 1px;
  padding: 0 2px;
}
.link_blue:hover, .link_blue:focus {
  color: #6eceb2;
}
orangeM { color:#e87722; font-size: 130%; font-weight:600; }
orangeL { color:#e87722; font-size: 180%; font-weight: 600; }
.fontS { font-size:90%; }
fontM { font-size:130%; }
blueL { color: #0097A9; font-size: 180%; font-weight:600; }
/*---------- cancer ------------*/
.cancer_cont {
  padding: 1rem;
  margin-top: 1rem;
  background: linear-gradient(180deg, #e87722 0%, #e87722 20%, #fae4d3 20%, #fae4d3 100%);
}
.cancer_cont figure {
  width: 70%;
  margin: 1rem auto;
}
.cancer_fv {
  position: relative;
  border: solid 4px #e87722;
  border-radius: 14px;
  padding: 10px 160px 10px 10px;
  background: #fff;
  margin: 1rem auto;
  width: 80%;
  max-width: 840px;
  text-align: center;
  font-size: 1.6em;
  font-weight: 600;
}
.cancer_fv::after {
  position: absolute;
  content: "";
  background: url(../img/new/cancer_fv.svg);
  height: 150px;
  width: 150px;
  right: 10px;
  bottom: 0;
}
.cancer_fv_bottom {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0 auto;
  width: 96%;
}
.cancer_fv_bottom li {
  padding: 10px;
  background: #fff;
  border-top: dotted 5px #FED141;
  border-bottom: dotted 5px #FED141;
  width: 30%;
  text-align: center;
  font-weight: bold;
  font-size: 1.3em;
}
.cancer_fv_bottom_last {position: relative;}
.cancer_fv_bottom_last::before {
  position: absolute;
  content: "＊1年に1回を限度";
  font-size: 16px;
  right: 0;
  bottom: -30px;
  font-weight: 500;
}
.exemption {
  background: #fff;
  border-radius: 10px;
  padding: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 2.4rem auto;
  font-size: 1.6em;
}
.exemption li {margin: 0 12px;}
.exemption_first {
  color: #fff;
  background: #0097A9;
  border-radius: 50px;
  padding: 0 0.8rem;
}
.exemption_second {
  text-align: center;
  line-height: 1.2;
  font-size: 0.7em;
  font-weight: 500;
}
.exemption_third {font-weight: 600;}
.cancer_point {
  padding: 1rem;
}
.feature_main_cont {
  display: flex;
  justify-content: flex-start;
  font-size: 1.8em;
  font-weight: 600;
  align-items: center;
  margin: 1.4rem 0;
}
.cancer_order {
  border-top: solid 6px #FED141;
  border-bottom: solid 6px #FED141;
  text-align: center;
  font-weight: 600;
  padding: 0 0 8px;
  min-width: 16%;
  margin-right: 1.6rem;
}
.feature_main_point {
  padding: 1rem;
  border-bottom: dotted 2px #e87722;
  margin: 0 1.4rem 1rem 1.4rem;
  display: flex;
  align-items: center;
}
.feature_main_point:last-child {
  border-bottom: none;
}
.feature_main_point figure img {
  width: 80px;
}
.point {
  position: relative;
  margin: 1.6rem auto;
  width: 100%;
  background: #0097A9;
  color: #fff;
  text-align: center;
  padding: 6px 0;
  font-size: 1.6em;
  font-weight: 600;
}
.point:before {
  position: absolute;
  content: "";
  width: 4%;
  height: 100%;
  top: 0;
  left: 0;
  background: #CCEAEE;
}
.point:after {
  position: absolute;
  content: "";
  width: 4%;
  height: 100%;
  top: 0;
  right: 0;
  background: #CCEAEE;
}
.point_explain {
  padding-left: 30px;
  font-size: 1.5em;
  font-weight: 600;
}
.point_comment {
  font-size: 1.2em;
  padding: 0 2rem;
  font-weight: 500;
}
.point_comment li {margin: 1rem 0;}
.comment-first, .comment-third {
  font-size: 1.1em;
} 
.comment-second {
  display: flex;
  border: solid 2px #e87722;
  padding: 1rem;
  font-weight: 500;
  align-items: center;
}
.comment-second figure {
  width: 20%;
  min-width: 70px;
  margin: 8px;
}
.comment-third {text-align: center;}

/*============= cv =============*/
.cv {
  display: flex;
  max-width: 1000px;
  margin: 4rem auto;
  justify-content: space-evenly;
}
#medical_PDP_btn, #SImedical_PDP_btn, #cancer_PDP_btn, #MIB_PDP_btn {
  background: #fed141;
  border: solid 2px #183028;
  border-radius: 12px;
  width: 46%;
  font-size: 1.5em;
  padding: 1.3rem 0;
  display: block;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
  transition: 0.4s all;
  font-weight: 600;
}
#medical_PDP_btn:hover, #medical_PDP_btn:focus, 
#SImedical_PDP_btn:hover, #SImedical_PDP_btn:focus,
#cancer_PDP_btn:hover, #cancer_PDP_btn:focus,
#MIB_PDP_btn:hover, #MIB_PDP_btn:focus {
  transform: translateY(2px);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  border: solid 2px #fed141;
}
.cv_cont {
  text-align: center;
}
#medical_lp, #SImedical_lp, #cancer_lp, #MIB_lp {
  background: #6eceb2;
  border: solid 2px #183028;
  border-radius: 12px;
  width: 46%;
  font-size: 1.5em;
  padding: 1.3rem 0;
  display: block;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
  transition: 0.5s all;
  font-weight: 600;
}
#medical_lp:hover, #medical_lp:focus,
#SImedical_lp:hover, #SImedical_lp:focus,
#cancer_lp:hover, #cancer_lp:focus,
#MIB_lp:hover, #MIB_lp:focus {
  transform: translateY(-2px);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  border: solid 2px #6eceb2;
}
.cv_text {
  text-align: center;
}

/*============ 付帯サービス ============*/
#service h3, #footer h3 {
  position: relative;
  background: #e87722;
  padding: 2rem 0;
  color: #fff;
  font-size: 1.6em;
  text-align: center;
  z-index: 99;
}
#service h3:before, #footer h3:before {
  content: "";
  position: absolute;
  bottom: -2.4rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  border-style: solid;
  border-width: 50px 60px 0 60px;
  border-color: #e87722 transparent transparent transparent;
  width: 0;
}
.serviceWrap {
  margin: 0 auto;
  max-width: 1100px;
  padding: 4rem 0;
}
.gurard {
  max-width: 900px;
  width: 90%;
  padding: 1rem;
  border: solid 1px #e87722;
  margin: 1rem auto;
  font-size: 1.1em;
  line-height: 1.1;
}
.serviceIntro {
  max-width: 900px;
  width: 90%;
  margin: 1.8rem auto;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.4;
}
.serviceMain {
  background: #e87722;
  border-radius: 20px;
  padding: 3rem 0;
  margin: 0 1rem;
}
.serviceMain_wrap {
  background: #fff;
  border-radius: 20px;
  padding: 1rem 1.6rem;
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
.serviceTitle {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.serviceTitle li {
  padding: 0.2rem;
}
.serviceTitle li img {
  width: 80px;
}
.serviceTitle_cont {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.2;
}
.serviceDetail {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0;
  justify-content: space-around;
}
.serviceDetail_wrap {
  margin: 0.8rem 0;
  width: 44%;
}
.serviceDetail_wrap p {
  font-weight: 500;
  padding: 4px 0;
  text-align: center;
}
.serviceCont {
  display: flex;
  border: solid 1px #e87722;
  border-radius: 10px;
  padding: 1rem 2rem;
  line-height: 1.2;
  text-align: center;
  justify-content: space-around;
  align-items: center;
}
.serviceName {
  color: #e87722;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.2em;
}
.serviceCont img {
  width: 60px;
  height: 50px;
  margin-right: 10px;
}
.serviceCont .serviceName img {
  width: 70%;
}
.notes {
  padding: 10px;
}
.notes_item {
  padding-left: 22px;
  text-indent: -22px;
}
.notes li {
  padding-left: 18px;
  text-indent: -18px;
}
.serviceLink {
  margin: 1rem 0;
  text-align: center;
}
.serviceLink a {
  color: #465953;
  border-bottom: solid 1px;
}
/*===== footer =====*/
.footer_wrapper {
  position: relative;
  background: #fff;
  padding: 5rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
#page-top {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 50px;
}
#page-top a {
  display: block;
  height: 60px;
}
.aboutUs {
  position: relative;
  display: flex;
  max-width: 1000px;
  width: 90%;
  background: #e87722;
  color: #fff;
  border-radius: 30px 30px 0 30px;
  margin-top: 4rem;
  padding: 1.4rem;
  align-items: center;
}
.aboutUs:before {
  position: absolute;
  content: "";
  background: url(../img/new/aboutUs.webp);
  background-size: cover;
  width: 52%;
  height: 270px;
  border-radius: 30px 30px 0 30px;
  right: -5rem;
  top: -4rem;
}
.medal {
  text-align: center;
  width: 20%;
}
.medal img {
  max-width: 200px;
}
.aboutUs_text {
  width: 30%;
  font-size: 1.2em;
  font-weight: 500;
  margin: 2rem;
}
h5 {
  color: #e87722;
  font-size: 1.6em;
  font-weight: 600;
  margin: 2rem 0 0.5rem 0;
}
.FWDgroup_wrap {
  padding: 1rem;
  max-width: 1100px;
}
.FWDgroup {
  font-size: 1em;
}
.footer__company,.footer__tel,.footer__number,address {
  margin: 0 auto;
  font-weight: 500;
  max-width: 1100px;
}
.footer__text {
  margin: 1rem auto;
  max-width: 1100px;
  border-top: solid 1px;
  border-bottom: solid 1px;
  padding: 2rem 1rem;
  font-size: 1em;
}
.footer__text li {
  text-indent: -18px;
  padding-left: 18px;
}
.company_wrap {
  padding: 1rem;
}
.footer__time {
  font-size: 1.2em;
  font-weight: 500;
  margin: 0 auto;
  max-width: 1100px;
}
.footer__company {
  font-size: 1.4em;
}
.footer__number {
  margin-bottom: 3rem;
  font-size: 1.2em;
  font-weight: 400;
  text-align: right;
}
.footer__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #183028;
  color: #fff;
  height: 3rem;
}
address {
  font-style: normal;
  font-size: 1.2em;
}
.tellNum {
  font-size: 2.6em;
  font-weight: 600;
}

/*===== ドロップダウンPC =====*/
.nav div {
  position: absolute;
  background: #fff;
  padding: 1rem;
  width: 100%;
  left: 0;
  top: 40px;
  visibility: hidden;
  opacity: 0;
  transition: all.3s;
  z-index: 4;
  transition: .2s;
  box-shadow: inset 0px 4px 6px 0px rgba(0, 0, 0, 0.19), 0px 35px 17px 2px rgba(0, 0, 0, 0.3);;
}
.nav:hover> div, .nav:focus-within> div {
  visibility: visible;
  opacity: 1;
  transform: translateY(22px);
}
.nav div ul {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.estimateTitle_pc {
  width: 94%;
  text-align: center;
  font-weight: 500;
  margin: 0.6rem 0 0.2rem 0;
  padding: 10px;
}
.estimateName_pc {
  border: solid 2px #e87722;
  border-radius: 8px;
  min-width: 20%;
  margin: 1rem 0.2rem;
  transition: 0.4s;
}
.estimateName_pc:hover {
  background: #e87722;
}
.estimateName_pc a {
  color: #E87722;
  padding: 1rem 4rem 1rem 1rem;
  font-weight: 500;
  text-align: left;
  display: block;
}
.estimateName_pc:hover a {
  color: #fff;
}
.namefirst_pc, .namesecond_pc, .namethird_pc, .namefourth_pc {
  position: relative;
}
.namefirst_pc:after, .namesecond_pc:after, .namethird_pc:after, .namefourth_pc:after {
  content:'';
  position: absolute;
  right: 14px;
  top: 23px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #e87722;
  border-right: 3px solid #e87722;
  transform: rotate(43deg);
}
.consultation {
  background: #0097a9;
  border: solid 2px #0097a9;
  color: #fff;
  border-radius: 50px;
  padding: 4px;
  width: 70%;
  text-align: center;
  margin: 0.8rem 0;
  transition: .2s;
  cursor: pointer;
}
.consultation a {
  color: #fff;
}
.consultation:hover {
  background: #fff;
}
.consultation:hover a {
  color: #0097a9;
}
.namefirst_pc:hover:after, .namesecond_pc:hover:after, .namethird_pc:hover:after, .namefourth_pc:hover:after {
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
}

/*========== モーダル ==========*/
.hide-area{
  display: none;
}
#estimateMenu {
  background: #fff;
  border-radius: 20px 20px 0 0;
}
.estimateTitle {
  padding: 1rem;
  background: #e87722;
  color: #fff;
  border-radius: 20px 20px 0 0;
  font-size: 3vw;
  text-align: center;
}
.nameWrap {
  padding: 1rem 2rem;
}
.estimateName {
  margin: 1.6rem;
  border: solid 2px #e87722;
  font-size: 1.3em;
  font-weight: 500;
  border-radius: 10px;
}
.estimateName:hover {
  background: #e87722;
}
.estimateName:hover a {
  color: #fff;
}
.linkName {
  padding: 1.4rem 1.4rem 1.4rem 4.6rem;
}
.estimateName:last-child {
  margin: 1.6rem 1.6rem 0 1.6rem;
}
.namefirst, .namesecond, .namethird, .namefourth {
  position: relative;
}
.namefirst:before {
  position: absolute;
  content: "";
  background: url(../img/new/iryo_icon.svg);
  background-size: cover;
  width: 40px;
  height: 40px;
  left: 10px;
  top: 16px;
} 
.namesecond:before {
  position: absolute;
  content: "";
  background: url(../img/new/kanwa_icon.svg);
  background-size: cover;
  width: 40px;
  height: 40px;
  left: 10px;
  top: 16px;
}
.namethird:before {
  position: absolute;
  content: "";
  background: url(../img/new/cancer_icon.svg);
  background-size: cover;
  width: 40px;
  height: 40px;
  left: 10px;
  top: 16px;
}
.namefourth:before {
  position: absolute;
  content: "";
  background: url(../img/new/mib_icon.svg);
  background-size: cover;
  width: 40px;
  height: 40px;
  left: 10px;
  top: 16px;
}
.namefirst:hover:before {
  position: absolute;
  content: "";
  background: url(../img/new/iryo_icon_w.svg);
  background-size: cover;
  width: 40px;
  height: 40px;
  left: 10px;
  top: 16px;
}
.namesecond:hover:before {
  position: absolute;
  content: "";
  background: url(../img/new/kanwa_icon_w.svg);
  background-size: cover;
  width: 40px;
  height: 40px;
  left: 10px;
  top: 16px;
}
.namethird:hover:before {
  position: absolute;
  content: "";
  background: url(../img/new/cancer_icon_w.svg);
  background-size: cover;
  width: 40px;
  height: 40px;
  left: 10px;
  top: 16px;
}
.namefourth:hover:before {
  position: absolute;
  content: "";
  background: url(../img/new/mib_icon_w.svg);
  background-size: cover;
  width: 40px;
  height: 40px;
  left: 10px;
  top: 16px;
}
.namefirst:after, .namesecond:after, .namethird:after, .namefourth:after {
  content:'';
  position: absolute;
  right:30px;
  top:25px;
  width:18px;
  height:18px;
  border-top: 4px solid #e87722;
  border-right:4px solid #e87722;
  transform: rotate(43deg);
}
.namefirst:hover:after, .namesecond:hover:after, .namethird:hover:after, .namefourth:hover:after {
  border-top: 4px solid #FFF;
  border-right:4px solid #FFF;
}
.estimateName a {
  color: #e87722;
}
.closeBtn {
  background: #dbdfe1;
  padding: 0.6rem;
  text-align: center;
  width: 40%;
  margin: 0 auto;
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 2rem;
  cursor: pointer;
}
.modaal-container {
  border-radius: 20px;
  width: 90%;
}
.modaal-content-container {
  padding: 0;
}
.modaal-close {
  right: 10px;
  top: 80px;
  width: 80px;
  height: 80px;
}
.modaal-close:after, .modaal-close:before {
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 60px;
}
@media screen and (max-width: 799px) {
  .consultation {
    margin: 10px auto;
    width: 80%;
    margin-bottom: 40px;
    font-size: 1.3em;
  }
}
@media screen and (max-width: 699px) {
  .estimateName, .estimateName:last-child {
    margin: 1rem 1rem 0.6rem 1rem;
    font-size: 1em;
  }
  .nameWrap {
    padding: 1rem;
  }
  .namefirst:after, .namesecond:after, .namethird:after, .namefourth:after {
    width: 10px;
    height: 10px;
    right: 14px;
    top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .estimateName, .estimateName:last-child {
    margin: 1rem 1rem 0 1rem;
  }
  .namefirst:before, .namesecond:before, .namethird:before, .namefourth:before {
    width: 36px;
    height: 40px;
  }
  .consultation {
    width: 90%;
    margin-bottom: 20px;
    font-size: 90%;
  }
  .linkName {
    padding: 1.4rem 1.6rem 1.4rem 3.6rem;
  }
}
@media screen and (max-width: 480px) {
  .modaal-container {
    width: 100%;
  }
  .modaal-inner-wrapper {
    padding-top: 90px;
  }
  .modaal-close {
    top: -10px;
  }
  .modaal-close:after, .modaal-close:before {
    top: 50%;
    height: 40px;
  }
  .namefirst:before, .namesecond:before, .namethird:before, .namefourth:before {
    width: 32px;
    height: 32px;
    left: 4px;
  }
  .namefirst:after, .namesecond:after, .namethird:after, .namefourth:after {
    top: 36%;
  }
  .namefirst:hover:before, .namesecond:hover:before, .namethird:hover:before, .namefourth:hover:before {
    width: 32px;
    height: 32px;
    left: 4px;
  }
  .nameWrap {
    padding: 1rem 1rem 0;
  }
  .linkName {
    padding: 1.2rem 1.6rem 1.2rem 2.9rem;
    font-size: 94%;
  }
  .estimateName, .estimateName:last-child {
    margin: 1rem 0;
  }
  .estimateTitle {
    font-size: 4.3vw;
  }
}
/*========== モーダルここまで ==========*/
.feature {
  overflow: hidden;
}
/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.6s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger, .fadeUpTrigger{
    opacity: 0;
}
/*==========  =============*/
@media screen and (max-width: 1100px) {
  .feature_tab {
    width: 60%;
  }
  .cont_item_top {
    width: 12%;
    padding: 22px 14px;
  }
  .cont_item_top:after {
    right: -15px;
    border-top: 37px solid transparent;
    border-bottom: 37px solid transparent;
  }
}
@media screen and (max-width: 999px) {
  body {
    font-size: 90%;
  }
  .nav:hover> div {
    visibility: visible;
    opacity: 1;
    transform: translateY(18px);
  }
  .tab_menu li {
    margin: 0 2px;
  }
  .tab_allow {
    padding-left: 8px;
  }
  .accordion.close::before, .accordion.close::after {top: 4px;}
  .productTop ul li {
    padding: 0;
  }
  .mib_fee_wrap {padding: 18px;}
  .mib_cont {width: 76%;}
  .mib_fee_wrap ul {padding: 4px;}
  .price {font-size: 230%;}
  .text_center {font-size: 96%;}
  .excellent, .standard {font-size: 1.2em;}
  .cancer_fv {width: 90%;}
  .cancer_fv_bottom {width: 100%;}
  .cancer_point, .feature_main_point {padding: 1rem 0.5rem;}
}
@media screen and (max-width: 899px) {
  .fvguard {
    font-size: 1.4vw;
  }
  .tab_menu {
    font-size: 0.8em;
  }
  .tab_allow {
    padding-left: 4px;
    height: 24px;
  }
  .nav {padding: 0 6px;}
  .nav div {
    top: 44px;
  }
  .nav div ul {
    justify-content: center;
  }
  .estimateName_pc {
    min-width: 40%;
    margin: 0.4rem;
  }
  .estimateName_pc a {
    padding: 14px 10px;
  }
  .namefirst_pc:after, .namesecond_pc:after, .namethird_pc:after, .namefourth_pc:after {
    top: 16px;
  }
  .feature {
    padding-top: 3rem;
  }
  .feature_wrap {
    padding: 1rem;
  }
  .feature_main {width: 94%;}
  .feature_tab {
    width: 70%;
  }
  .feature_period {
    padding: 2rem 0;
  }
  .feature_period figure {
    padding: 0 0 20px 0;
  }
  .productTop {
    margin-top: 0;
  }
  .mib_cont {
    width: 86%;
  }
  .mib_cont h2 {font-size: 1.8em;}
  .premium {
    font-size: 130%;
  }
  .mib_fee_wrap {
    padding: 14px;
  }
  .mib_fee_wrap ul {font-size: 1.2em;}
  .summary {
    font-size: 120%;
  }
  .mib_fee_text {
    font-size: 0.8em;
    line-height: 1.4;
  }
  .fee_notes {font-size: 12px;}
  .ranking figure {
    margin: 6px 10px;
    width: 40%;
  }
  .ranking ul {font-size: 13px;}
  .cont_item_top {
    width: 16%;
  }

  /*------------*/
  .no {width: 40px;}
  .kanwa_point H4 { font-size:1.4em; }
  /*------------*/
  .cancer_fv_bottom {
    justify-content: space-between;
  }
  .cancer_fv_bottom li {width: 32%;}
  .feature_main_cont {font-size: 1.6em;}
  /*----------------------*/
  .point_comment:before {
    top: 30%;
  }
  #service h3, #footer h3 {
    font-size: 1.6rem;
  }
  .serviceMain_wrap {
    padding: 1rem;
  }
  .serviceDetail_wrap {
    width: 48%;
  }
  .aboutUs {
    padding: 1rem 2rem;
  }
  .aboutUs:before {
    width: 40%;
    height: 160px;
  }
  .aboutUs_text {
    margin: 0 2rem;
  }
  .medal {
    width: 26%;
  }
  .aboutUs_text {
    width: 40%;
  }
}
/*============ SP ============*/
@media screen and (max-width: 799px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .header {
    position: relative;
    background: #e87722;
    border: none;
    padding: 10px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .header_logo {
    width: 40%;
  }
  .header_tel.sp-only {
    display: flex;
    text-align: right;
  }
  .header_tel.sp-only img {
    box-shadow: 0px 3px 4px 0px rgba(132, 63, 12, 0.7);
  }
  /*============ fv ============*/
  .fvImage img {
    max-height: 800px;
  }
  .fvImage figcaption {
    font-size: 0.9em;
    right: 20px;
    bottom: 60px;
  }
  .fvImage .fvmain {
    display: block;
  }
  .fvImage .sp-only {
    display: none;
  }
  .fvguard {
    font-size: 12px;
    width: 100%;
    bottom: 76px;
    padding: 6px 6px 6px 24px;
    text-indent: -18px;
  }
  .gnwrap.fixed {
    border-bottom: none;
  }
  .global {
    padding: 0;
    justify-content: center;
    align-items: flex-end;
    background: #0097a9;
  }
  .nav {
    padding: 0 4px;
    min-width: 20%;
    background: #0097a9;
    border-right: solid 3px #fff;
  }
  .navPC:hover, .navPC:focus {
    background: #7FCBD4;
    border-radius: 0;
  }
  .tab_menu {
    display: block;
    font-size: 1em;
    line-height: 1.2;
    height: 60px;
    display: grid;
    font-weight: 500;
  }
  .tab_menu li {
    color: #fff;
  }
  .ranking figure {
    width: 47%;
    margin: 6px;
    padding: 6px;
  }
  /*============  main ============*/
  .feature {
    padding-top: 2rem;
  }
  .feature_wrap {
    padding: 1rem;
  }
  .feature_tab {
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -3.3rem;
  }
  .feature_tab_name {
    padding: 6px;
    width: 100%;
    text-align: left;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .feature_tab_name li {
    margin: 0 14px;
    font-size: 1em;
  }
  .feature_cont {
    display: block;
    margin-bottom: 20px;
  }
  .feature_terms {
    padding: 10px;
    font-size: 1em;
  }
  .productTop {
    display: block;
  }
  .productTop ul {
    display: flex;
    align-items: center;
    margin: 0;
    width: 100%;
    padding: 10px 20px;
  }
  .productTop ul li {
    padding: 4px;
  }
  .productTop ul li img {
    width: 100%;
    padding-bottom: 0;
  }
  /*----------*/
  .cont_item_top {
    width: 24%;
  }
  .mib_cont {width: 100%;}
  .mib_fee_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .mib_fee_wrap div {
    display: block;
    width: 58%;
  }
  .productTop ul {
    display: block;
  }
  .cont_wrap figure img {width: 90%;}
  .mib_cont figure {
    width: 36%;
  }
  .mib_fee_wrap ol {
    justify-content: center;
  }
  .fee_notes {
    margin-top: 6px;
  }
  .ranking {
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  /*------- SI -------*/
  .fv_notes { font-size:14px; }
  .fv_fee ul div { padding:10px; }
  .point_num { line-height:1.3; padding:8px; }
  .policy_wrapper div {
    flex-wrap: wrap;
    padding: 10px;
    justify-content: center;
  }
  .SInumber {
    font-size: 1.6em;
    width: 30%;
    padding-bottom: 4px;
    margin: 0 auto;
    background: #fff5ee;
    line-height: 1;
    margin-bottom: 8px;
  }
  .policy_wrapper figure { width:10%; }
  .policyAdd_conts_wrap { display:block; }
  .policyAdd_conts_list { width:100%; line-height:1.4; }
  .policyAdd_conts_list li { margin:8px 0; }
  #policyAdd_conts figure { width:50%; margin:0 auto; max-width:unset; }
  #policyAdd_conts figure.add_no { width:70px; margin:6px; align-self:center; }
  .policyAdd_term { width:100%; text-align:center; }
  .glossary div ul { flex-wrap:wrap; }
  .glossary_title { text-align:left; width: 100%; }
  .glossary_txt { width:100%; }
  /*--------------*/
  .h3_text {font-size: 1.3em;}
  .basicPolicy_title {
    width: 94%;
  }
  .text_center {font-size: 100%;line-height: 1.4;margin-top: 20px;}
  .accordion_box p {font-size: 1.1em;}
  .toc_cont_item {
    margin: 20px auto;
  }
  .premium {
    font-size: 120%;
  }
  .summary {line-height: 1.4;}
  .cancer_fv {
    width: 100%;
    padding: 10px 120px 10px 10px;
  }
  .cancer_fv::after {
    right: -20px;
  }
  .cancer_fv_bottom {display: block;}
  .cancer_fv_bottom li {
    width: 100%;
    border-bottom: none;
  }
  .cancer_fv_bottom_last {
    border-bottom: dotted 5px #FED141;
  }
  .cancer_cont figure {width: 90%;}
  .exemption {width:100%; flex-wrap: wrap; margin-bottom: 1rem;}
  .feature_main_point {margin: 1rem 0.4rem}

  /*============ 付帯サービス ============*/
  .serviceWrap {
    background: #fff6d9;
  }
  .serviceMain {
    padding: 2rem 0;
    border-radius: 0;
    margin: 0;
  }
  .serviceDetail_wrap {
    font-size: 1.2em;
    width: 48%;
  }
  .serviceCont {
    padding: 1rem;
  }
  .notes {
    font-size: 1em;
    padding: 10px 0;
  }
  .serviceLink a {
    font-size: 1.2em;
  }
  #service h3, #footer h3 {
    padding: 1rem 0;
  }
  #service h3:before, #footer h3:before {
    z-index: 99;
  }
  /*============ footer ============*/
  .aboutUs {
    width: 100%;
    padding: 1rem;
    border-radius: 0;
    margin-top: 300px;
  }
  .aboutUs:before {
    border-radius: 0;
    width: 100%;
    height: 300px;
    right: 0;
    top: -300px;
  }
  .medal {
    margin: -2rem 0 0 0;
    z-index: 99;
  }
  h5 {
    margin: 1rem 0;
  }
  .aboutUs_text {
    width: 70%;
    margin: 0 2rem;
    font-size: 1.6em;
  }
  .footer_wrapper {
    width: 100%;
    padding: 0;
  }
  .FWDgroup_wrap {
    background: #fff6d9;
  }
  .FWDgroup {
    width: 100%;
    padding: 0;
    font-size: 1.1em;
  }
  .footer__text {
    padding: 2rem 0;
    width: 94%;
  }
  .footer__text {
    border-top: none;
    margin: 0 auto;
  }
  address {
    margin: 10px 0;
  }
  .cv {margin: 2rem auto;}
  #medical_PDP_btn, #SImedical_PDP_btn, #cancer_PDP_btn, #MIB_PDP_btn, #medical_lp, #SImedical_lp, #cancer_lp, #MIB_lp {
    padding: 0.6rem 0;
    border-radius: 8px;
  }
}
@media screen and (max-width: 699px) {
  .header {
    padding: 1rem;
  }
  .header_wrap {
    width: 100%;
  }
  .header_tel.sp-only img {
    width: 240px;
  }
  .fvImage .fvmain {
    display: none;
  }
  .fvImage .sp-only {
    display: block;
  }
  .nav {padding: 0;}
  .feature {padding-top: 3rem;}
  .feature_main {
    border-radius: 8px;
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
  .feature_wrap {
    padding: 1rem 10px 0 10px;
  } 
  .feature_tab_name img {
    width: 40px;
  }
  .feature_tab_name li {
    font-size: 1.1em;
    margin: 0 8px;
  }
  .feature_cont {
    align-items: flex-start;
    margin-bottom: 1.4rem;
  }
  .feature_period:first-child {padding: 0 0 2rem 0;}
  .cont_wrap {
    max-width: 100%;
  }
  .cont_wrap figure img {
    width: 100%;
  }
  .details div {
    width: 49%;
  }
  .summary {line-height: 1.4;}
  .notes_item {
    font-size: 0.8em;
    padding-left: 16px;
    text-indent: -16px;
  }
  /*----------*/
  .accordion::before { left:2%; }
  .accordion::after { right:2%; }
  /*----------*/
  #SImedical .feature_tab { top: -14rem; }
  .fv_fee_txt { padding:6px 8px 0 0; }
  .frame { padding:1rem 0; }
  .fv_notes, .plan_notes, .point_notes { font-size:14px; }
  .point_notes { display:block; line-height:1.3; padding-top:4px; }
  #policyAdd_conts figure { max-width:200px; }
  /*----------*/
  .q_items_cont {padding: 0.6rem 0;}
  .q_items_cont ul {padding: 0 1rem 0.6rem 1rem;}
  .cut {padding: 0 0 0 20px;}
  .point {
    font-size: 1.2em;
  }
  .point_text {
    width: 94%;
    font-size: 1.2em;
  }
  .point_comment {
    font-size: 1.1em;
  }
  .serviceIntro {
    font-size: 1.1em;
  }
  #service h3, #footer h3 {
    padding: 1rem 0;
  }
  #service h3:before, #footer h3:before {
    bottom: -1.6rem;
    border-width: 30px 40px 0 40px;
  }
  .serviceMain {
    padding: 1rem 0;
  }
  .serviceMain_wrap {
    padding: 0.6rem;
    width: 94%;
  }
  .serviceWrap {
    padding: 2rem 0;
  }
  .serviceDetail {
    padding: 0;
  }
  .serviceDetail_wrap, .serviceName {
    font-size: 1.1em;
  }
  .serviceCont {
    padding: 12px;
  }
  .serviceCont img {
    height: 40px;
  }
  .medal {
    width: 30%;
    font-size: 0.8em;
  }
  .aboutUs_text {
    width: 100%;
    margin: 0 0 0 1rem;
    font-size: 1.2em;
  }
  h5 {
    font-size: 1.6em;
  }
  .FWDgroup, .footer__text {
    font-size: 1em;
  }
  .footer__company {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 599px) {
  .fvImage figcaption {
    bottom: 84px
  }
  .fvguard {
    padding: 2px 2px 2px 24px;
  }
  .nav {
    font-size: 12px;
    min-width: 18%;
  }
  .nav a {
    padding: 6px;
  }
  .tab_menu {
    font-size: 0.9em;
  }
  .toc_cont_item ul {
    font-size: 90%;
  }
  .cont_item_top {
    padding: 18px 12px 18px 6px;
    width: 26%;
  }
  .cont_item_top:after {
    border-top: 31px solid transparent;
    border-bottom: 31px solid transparent;
  }
  .guide li {
    font-size: 120%;
    margin: 0 6px;
  }
  h6, .summary {
    font-size: 120%;
  }
  .detail_title, .premium, .cancer_fee {
    font-size: 100%;
  }
  .cv {
    margin: 2rem auto;
  }
  #medical_PDP_btn, #SImedical_PDP_btn, #cancer_PDP_btn, #MIB_PDP_btn, #medical_lp, #SImedical_lp, #cancer_lp, #MIB_lp {
    font-size: 1.2em;
    border-radius: 8px;
    padding: 10px 0;
  }
  .feature {
    padding-bottom: 10px;
    padding-top: 3rem;
  }
  .feature_tab {top: -2.7rem; width: 94%;}
  .feature_tab_name li {font-size: 1em; margin: 0;}
  .feature_tab_name img {width: 30px;}
  .feature_cont {
    font-size: 1.3em;
  }
  .mib_fee_wrap {justify-content: space-between;}
  .mib_fee_wrap div {width: 56%;}
  .productTop ul {padding: 6px;}
  .mib_cont {padding-left: 0;}
  .mib_cont figure {width: 42%;}
  .ranking {padding: 0.4rem 0.6rem;}
  .ranking ul li {margin: 14px 0;}
  .ranking figcaption { font-size:12px; }
  .decreas {width: 100%;}
  .add_conts {margin-top: 10px;}
  .add_conts li {padding: 10px 0 10px 30px;}
  .plus::before {width: 20px; height: 20px; left: -34px; top: 4px;}
  .feature_period:last-child {padding: 0.4rem 0 0;}
  /*--------------------*/
  .kanwa_feature_cont {padding: 0.6rem;}
  .fv_fee ul div { padding:10px; }
  .fv_fee_gender { width:100%; }
  .fv_fee_txt { padding:6px 8px 0 0; font-size:0.9em; }
  .fv_fee_ex { font-size:1.3em; }
  .point_num { width:14%; min-width:80px; font-size:1em; padding: 8px; }
  .kanwa_point H4 { font-size:1.3em; }
  #AddBtn { font-size:1em; }
  .policyAdd { border: solid 4px #2F453D; }
  .policy_wrapper div { display:block; }
  .policy_conts { width:100%; }
  .policy_wrapper figure { margin:10px auto; width: 12%;}
  .policy_wrapper figure img { padding:4px; }
  #policyAdd_conts { padding:0 6px; }
  #policyAdd_conts figure.add_no { width:50px; margin:10px auto; }
  .policyAdd_term { font-size:1.2em; }
  .plan_conts { font-size:1.1em;}
  .number {font-size: 2em; padding-top: 0;}
  .q_items_cont_top {font-size: 1.2em;}
  .no {width: 34px;}
  .q_items_cont ul {padding: 0 0.6rem;}
  .q_items_notes {padding: 0.6rem 0 0;}
  .feature_cont_item li {padding: 10px 0px 16px 30px; text-indent: -30px;}
  .cut_img {width: 90px; margin: 0 auto;}
  .cut {padding: 0;width: 100%;}
  .cancer_fv {padding: 8px 90px 8px 8px; margin: 0 auto; font-size: 1.2em;}
  .cancer_fv::after {right: -10px; height: 100px; width: 100px;}
  .cancer_cont {margin-top:0; background: linear-gradient(180deg, #e87722 0%, #e87722 10%, #fae4d3 10%, #fae4d3 100%);}
  .cancer_cont figure {width: 100%;}
  .exemption {font-size: 1.4em;}
  .feature_main_cont {font-size: 1.4em; display: block; margin: 0.4rem 0;}
  .cancer_order {
    border-top: solid 3px #FED141;
    border-bottom: solid 3px #FED141;
    margin-right:0;
    margin-bottom: 10px;
    padding: 0 0 4px;
  }
  .point {margin: 1rem auto;}
  .feature_main_point {padding-top: 0; margin: 0.4rem 0;}
  .feature_main_point figure img {width: 60px;}
  .point_explain {padding-left: 20px; font-size: 1.3em;}
  x-small {font-size: 80%; font-weight: 500;}
  .point_comment {padding: 0;}
  .comment-second {padding: 0.6rem;}
  .comment-second figure {min-width: 60px;}
  #service h3, #footer h3 {
    font-size: 1.3em;
  }
  .comments .notes, .way_text {
    font-size: 0.9em;
  }
  .tellNum {font-size: 2em;}
}
@media screen and (max-width: 480px) {
  .header {
    max-height: 90px;
  }
  .header_tel.sp-only img {
    width: 180px;
    max-height: 80px;
  }
  .fvImage figcaption, .comments {
    font-size: 12px;
  }
  .fvImage figcaption {
    right: 6px;
    top: 10px;
  }
  .nav {
    font-size: 90%;
    min-width: 17%;
    border-right: solid 2px #fff;
  }
  .accordion.close::before, .accordion.close::after {top: 0;}
  .feature_main {
    width: 96%;
  }
  .feature_tab {top: -3.4rem; width: 100%;}
  .feature_tab_name {border-radius: 6px;}
  .feature_period figure {
    padding: 0 0 20px 0;
  }
  .cont_item_top {
    padding: 12px 6px;
    width: 14%;
    line-height: 1.2;
  }
  .cont_item_top:after {
    display: none;
  }
  .cont_item_bottom {
    padding: 6px 10px;
  }
  .price {font-size: 180%; padding-left: 6px;}
  .mib_cont h2 {font-size: 1.4em;}
  .mib_cont_notes {font-size: 13px;}
  .mib_fee_wrap {padding: 10px;}
  .mib_fee_wrap ol {padding: 4px;}
  .productTop ul li {padding: 0;}
  .mib_fee_wrap ol {justify-content: space-between;}
  .ranking {padding: 0.4rem 0.6rem;}
  .ranking ul li {margin: 10px 0;}
  .ranking figure {width: 46%;}
  button {font-size: 1.2em;}
  .details {
    display: block;
  }
  .detail_img {
    padding: 0 20px;
  }
  .cont_wrap figure.detail_img img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  .details div {
    width: 100%;
  }
  .detail_title, .premium {
    font-size: 130%;
  }
  .summary, .premium {
    padding: 14px;
  }
  .guide li img {
    width: 60px;
  }
  h6 {margin: 10px 0;}
  /*----------*/
  .notes {font-size: 13px;}
  .feature_period:first-child {padding: 0 0 1rem 0;}
  /*----------------------*/
  .kanwa_point H4 { font-size:1.2em; }
  .kanwa_point { margin:20px 0; }
  .fv_fee ul li { width:49%; }
  .fv_fee ul div { padding:8px; }
  .fv_fee_gender { width:100%; }
  .fv_fee_txt { padding:6px 6px 0 0; font-size:0.7em; }
  .fv_fee_ex { font-size:1.1em; }
  .fv_fee_title { text-align:center; margin-top:0; }
  .point_num { width:14%; min-width:80px; font-size:1em; margin-right:10px; }
  h4 { font-size:1.2em; }
  .policy_conts { width:100%; font-size:1.1em; }
  .policy_wrapper figure { width:12%; margin:10px auto; }
  .policy_wrapper figure img { padding:2px; }
  .point_notes { font-size:14px; }
  .policyAdd_list li { width:46%; }
  .policy_conts { font-size:1.1em; }
  #policyAdd_conts figure { width:70%; }
  #AddBtn { font-size:14px; width:94%; }
  .policyAdd_list { justify-content:center; }
  medium { font-size: 120%; }
  .feature_title { margin-top: 1rem; }
  .q_items { padding: 0.6rem; }
  .feature_cont_item li {
    padding: 10px 0 16px 26px;
    text-indent: -26px;
    font-size: 1.2em;
  }
  #feature_cancer .feature_tab_name li {
    font-size: 0.8em;
  }
  .cancer_fv_bottom li {font-size: 1em;}
  .cancer_fv_bottom_last::before {font-size: 14px;}
  .exemption {font-size: 1.2em;}
  .feature_main_point {padding: 0 0 1rem 0;}
  .feature_main_point figure img {width: 50px;}
  .point_explain {padding-left: 10px; font-size: 1.2em;}
  .comment-second figure {min-width: 50px; margin: 0 4px 0 0;}
  #medical_PDP_btn, #medical_lp {
    width: 46%;
    font-size: 1.1em;
  }
  #service h3, #footer h3 {font-size: 1.3em;}
  .serviceTitle li img {width: 60px;}
  h4 {font-size: 1.4em;}
  h5 {
    font-size: 1.5em;
    margin: 0.6rem 0;
  }
  .serviceMain_wrap {padding: 1rem 0.4rem;}
  .serviceDetail_wrap {
    font-size: 0.8em;
    width: 48%;
  }
  .serviceCont {
    border-radius: 6px;
    padding: 8px;
  }
  .serviceCont img {height: 32px;}
  .aboutUs {
    margin-top: 200px;
  }
  .aboutUs:before {
    height: 200px;
    top: -200px;
  }
  .medal {
    margin: 0;
    width: 54%;
    font-size: 0.7em;
  }
  .footer__time, .footer__copy {font-size: 1em;}
  .footer__number {margin-top: 20px;}
}
@media screen and (max-width: 399px) {
  .nav {
    font-size: 90%;
    min-width: 17%;
    border-right: solid 2px #fff;
  }
}
/*========== FV変更 ==========*/
.fv_newOrange {
  position: absolute;
  background: #e87722;
  border-radius: 14px 14px 0 14px;
  padding: 20px;
  box-shadow: 0 0 6px 3px rgba(100, 100, 100, 0.6);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 38%;
  top: 20%;
  z-index: 99;
}
.fv_newOrange_top {
  color: #2f453d;
  font-weight: 600;
  text-align: center;
  font-size: 1.6em;
}
.fv_newOrange_bottom {
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 2em;
}
@media screen and (max-width: 999px) {
  .fv_newOrange {
    width: 44%;
  }
}
@media screen and (max-width: 899px) {
  .fv_newOrange {
    top: 10%;
  }
}
@media screen and (max-width: 799px) {
  .fv_newOrange_bottom {
    font-size: 1.7em;
  }
}
@media screen and (max-width: 699px) {
  .fv_newOrange {
    width: 90%;
    top: 33%;
  }
  .fv_newOrange_top {font-size: 4vw;}
  .fv_newOrange_bottom {font-size: 5vw;}
  .fvguard {bottom: 82px;} 
  .tab_menu {height: 70px;}
}
@media screen and (max-width: 480px) {
  .fv_newOrange {padding: 10px;}
  .fv_newOrange_top {font-size: 6vw;}
  .fv_newOrange_bottom {font-size: 7vw;}
}
