@charset "utf-8";
html {
  box-sizing: border-box;
  font-size: 62.5%;
  font-size: 10px;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  color: #464646;
  font-feature-settings: "palt";
  line-height: 1;
}
.pc {
  display: block;
}
.sp {
  display: none !important;
}

a {
  transition: 0.8s;
}
a:hover {
  opacity: 0.5;
}

_:lang(x)::-ms-backdrop, .selector {
	font-family: "Segoe UI", Meiryo, sans-serif;
}

.inner {
  width: 1200px;
  margin: 0 auto;
}
.inner2 {
  width: 1000px;
  margin: 0 auto;
}

img {
  height: auto;
}
/*--------------------------------------
header
--------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  z-index: 500;
  top: 0;
}
#header .smallfix {
  color: #464646;
  font-size: 1rem;
  background-color: #fff;
  padding: 1rem 30px;
}
#header .innerWrap {
  padding: 10px 30px 20px 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .innerWrap .wrap02 {
  width: 81.2%;
}

#header .innerWrap .flBox {
  display: flex;
  align-items: baseline;
}
#header .logo {
  width: 18.4%;
  margin-right: 4%;
}
#header .logo img {
  width: 100%;
}
#header .linkBtnHead {
  background-color: #fff;
  width: 320px;
  padding: 1.5rem 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 20px;
  bottom: 50px;
  border: 1px solid #37bf90;
  transition: 0.8s;
}
#header .linkBtnHead a {
  position: relative;
  text-align: center;
  color: #37bf90;
  font-weight: 600;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 700;
}
#header .linkBtnHead a img {
  width: 20px;
  vertical-align: middle;
  margin-left: 0.5em;
}
#header .linkBtnHead:hover {
  opacity: 0.5;
  cursor: pointer;
}
#header.change-color {
  background-color: #fff;
  transition: 0.8s;
}

#header .logo .logo02 {
  display: none;
}
#header.change-color .logo .top {
  display: none;
}

#header.change-color .logo .logo02 {
  display: block;
}
#header.change-color .innerWrap .wrap02 .small {
  color: #464646;
}
/* Nav
-----------------------------------------*/
.Nav .navbtn {
  display: none;
}
.Nav ul.close {
  display: none;
}
.Nav > ul {
  white-space: nowrap;
}
.Nav > ul > li {
  position: relative;
  display: inline-block;
  margin-right: 2.7%;
}
.Nav > ul > li:last-child {
  margin-right: 0;
}
.Nav > ul > li a {
  display: block;
  position: relative;
  text-decoration: none;
  font-size: 0.894vw;
  color: #fff;
  font-weight: 600;
  z-index: 2;
}
.Nav > ul > li a::before {
  content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.4s;
}
.Nav > ul > li a:hover:before {
  transform: scale(1);
}
.Nav > ul > li a.open::before {
  content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 1px;
	background: #fff;
  transform: scale(1, 1);
}
.Nav > ul > li a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.Nav > ul > li a,
.Nav > ul > li a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.Nav > ul > li a:hover {
  opacity: 1;
}
.Nav > ul > li a:hover::after {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}



/* 2階層 */
.Nav > ul > li > ul {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: auto;
  z-index: 9;
}
.Nav > ul > li > ul li {
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1px;
  position: relative;
}

.Nav > ul > li > ul li a {
  position: relative;
  padding: 12px 75px 12px 15px;
}

.Nav > ul > li > ul li a::after {
  content: '';
  background-image: url(../img/btn_arrow.png);
  display: inline-block;
  width: 14px;
  height: 11px;
  position: absolute;
  right: 0.6rem;
  top: 50%;
  margin-top: -6px;
}
.Nav > ul > li > ul li a:hover {
  opacity: 0.5;
}
.Nav > ul > li > ul li a:hover:before {
  background: none;
  content: none;
}
.Nav > ul > li > ul li a span {
  font-size: 82.4%;
}

#header.lower {
  background-color: #fff;
}
#header.lower .Nav > ul > li a {
  color: #464646;
}
#header.lower .Nav > ul > li a:hover {
  color: #37bf90;
  opacity: 1;
}
#header.lower .Nav > ul > li a::before {
  background: #37bf90;
}
#header.lower .Nav > ul > li a.open {
  color: #37bf90;
}
#header.lower .Nav > ul > li > ul li {
  background-color: #37bf90;
}
#header.lower .Nav > ul > li > ul li a {
  color: #fff;
}
#header.lower .Nav > ul > li > ul li a:hover {
  color: #fff;
  opacity: 0.5;
}
#header.lower .innerWrap .wrap02 .small {
  color: #464646;
}
@media screen and (max-width: 750px) {

  .fix {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  .Nav {
    position: relative;
  border-top:none;
  }
  .Nav .navbtn {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
  }
  .Nav .navbtn a,
  .Nav .navbtn a.close {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #37bf90;
  }
  .Nav .navbtn a::before,
  .Nav .navbtn a.close::before {
    position: absolute;
    top:10px;
    left:10px;
    content:"";
    width: 20px;
    height: 2px;
    background-color: #FFF;
    transition: .2s;
  }
  .Nav .navbtn a.open::before {
    top:19px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  .Nav .navbtn a::after,
  .Nav .navbtn a.close::after {
    position: absolute;
    bottom:10px;
    left:10px;
    content:"";
    width: 20px;
    height: 2px;
    background-color: #FFF;
    transition: .2s;
  }
  .Nav .navbtn a.open::after {
    bottom:19px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  .Nav .navbtn a.open,
  .Nav .navbtn a.close {
    opacity: 1;
  }
  .Nav .navbtn a span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  .Nav .navbtn a span::after,
  .Nav .navbtn a.close span::after {
    position: absolute;
    top:19px;
    left:10px;
    content:"";
    width: 20px;
    height: 2px;
    background-color: #FFF;
  }
  .Nav .navbtn a.open span::after {
    display: none;
  }
  .Nav > ul {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 9;
    height: 100%;
    position: fixed;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 100px;
  }
  .Nav > ul > li {
    display: block;
    margin-right: 0;
    border-bottom: solid 1px #dddddd;
    background-color: #fff;

  }
  .Nav > ul > li a {
    color: #464646;
    font-size: 1.4rem;
    padding: 15px;
  }
  .Nav > ul > li.parent.open > a::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .Nav > ul > li.parent.open {
    border-bottom: none;
  }
  .Nav > ul > li.parent.open > a {
    color: #FFF;
  }
  .Nav > ul > li a.open::before,
  .Nav > ul > li a::before {
    content: none;
  }
  #header .linkBtnHead {
    width: 100%;
    right: 0;
    bottom: 0;
  }
  #header .linkBtnHead a {
    font-size: 1.4rem;
  }

/* 2階層 */
  .Nav > ul > li > ul {
    border-top: solid 1px #dddddd;
    background-color: #fff;
    position: static;
  }
  .Nav > ul > li > ul li a {
    border-bottom: solid 1px #dddddd;
    background-color: #fff;
    padding: 15px 15px 15px 30px;
  }

  .Nav > ul > li.parent.close a {

  }
  .Nav > ul > li.parent > a.close::after {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-bottom: solid 2px #37bf90;
    border-right: solid 2px #37bf90;
    position: absolute;
    bottom: 18px;
    right: 15px;
    transform: rotate(45deg);
    margin: 0 auto;
  }
  .Nav > ul > li.parent > a.open::after {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-bottom: solid 2px #37bf90;
    border-right: solid 2px #37bf90;
    position: absolute;
    bottom: 13px;
    right: 15px;
    transform: rotate(225deg);
    margin: 0 auto;
  }
  .Nav > ul > li > ul li a::after {
    background-image: url(../img/footer_arrow.png);
    right: 15px;
  }
  .Nav > ul > li a.open {
    color: #37bf90;
  }
  #header.lower .Nav > ul > li > ul li a {
    color: #464646;
  }
  .Nav > ul > li > ul li:last-child a {
    border-bottom: none;
  }
  #header .smallfix {
    text-align: center;
  }


}










/*--------------------------------------
footer
--------------------------------------*/
.footer {
  border-top: 5px solid #999;
}
.footer .flWrap {
  margin: 7rem 0 6rem 0;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.footer .flWrap .logoArea {
  width: 25%;
}
.footer .flWrap .logoArea .logo img {
  width: 100%;
}
.footer .flWrap .logoArea ul {
  display: flex;
  margin-top: 2.7rem;
}
.footer .flWrap .logoArea ul li {
  position: relative;
  margin-right: 3rem;
}
.footer .flWrap .logoArea ul li:last-child {
  margin-right: 0;
}
.footer .flWrap .logoArea ul li a {
  color: #464646;
}
.footer .flWrap .logoArea ul li a::before {
  content: '';
  background-image: url(../img/footer_arrow.png);
  width: 14px;
  height: 12px;
  display: inline-block;
  margin-right: 0.4rem;
}
.footer .flWrap .linkArea {
  display: flex;
}
.footer .flWrap .linkArea .list01 {
  margin-right: 4.5rem;
}
.footer .flWrap .linkArea .list01 li {
  margin-bottom: 3rem;
}
.footer .flWrap .linkArea .list01 li:last-child {
  margin-bottom: 0;
}
.footer .flWrap .linkArea .list01 li a {
  color: #464646;
  font-weight: 600;
}
.footer .flWrap .linkArea .list01 li a::before {
  content: '';
  background-image: url(../img/footer_arrow.png);
  width: 14px;
  height: 12px;
  display: inline-block;
  margin-right: 0.4rem;
}
.footer .flWrap .linkArea .list02 {
  width: 460px;
}
.footer .flWrap .linkArea .list02 dt {
  color: #37bf90;
  font-weight: 600;
  border-bottom: 1px solid #37bf90;
  padding-bottom: 0.4rem;
  margin-bottom: 2.4rem;
}
.footer .flWrap .linkArea .list02 dd {

}
.footer .flWrap .linkArea .list02 dd ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .flWrap .linkArea .list02 dd ul li {
  width: 50%;
  margin-bottom: 1.5rem;
}
.footer .flWrap .linkArea .list02 dd ul li:nth-child(even) {
  padding-left: 1.5rem;
}
.footer .flWrap .linkArea .list02 dd ul li a {
  color: #464646;
  font-weight: 600;
}
.footer .flWrap .linkArea .list02 dd ul li a::before {
  content: '';
  background-image: url(../img/footer_arrow.png);
  width: 14px;
  height: 12px;
  display: inline-block;
  margin-right: 0.9rem;
}

.footer .impTxt {
  margin-bottom: 5rem;
  padding-left: 1rem;
}
.footer .impTxt li {
  line-height: 1.8;
  font-size: 1.4rem;
  list-style: disc;
}
.footer .copy {
  background-color: #999;
  color: #fff;
  padding: 3rem 0 20rem 0;
  font-size: 1.4rem;
  text-align: center;
}


.footer .linkBtnfoot02 {
  width: 1200px;
  margin: 0 auto;
  background-color: rgb(255 255 255 / 80%);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}
.footer .linkBtnfoot02 .flexBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .linkBtnfoot02 p {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.footer .linkBtnfoot02 ul {
  display: flex;
  justify-content: center;
}
.footer .linkBtnfoot02 ul li {
  background-color: #bfb090;
  border-radius: 5px;
  text-align: center;
  position: relative;
  width: 32%;
  margin-right: 2%;
}
.footer .linkBtnfoot02 ul li:last-child {
  margin-right: 0;
}
.footer .linkBtnfoot02 ul li a {
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 30px 0;
  display: block;
}
.footer .linkBtnfoot02 ul li::after {
  content: '';
  background-image: url(../../img/btn_arrow.png);
  display: inline-block;
  width: 14px;
  height: 11px;
  position: absolute;
  right: 0.6rem;
  top: 50%;
  margin-top: -6px;
}
.footer .linkBtnfoot02 .saihatu {
  text-align: center;
  margin-right: 20px;
}
.footer .linkBtnfoot02 .saihatu a {
  color: #fff;
  background-color: #37bf90;
  padding: 1.5em 2em;
  display: inline-block;
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  padding-right: 2em;
}
.footer .linkBtnfoot02 .saihatu a::after {
  content: '';
  background-image: url(../../img/btn_arrow.png);
  display: inline-block;
  width: 14px;
  height: 11px;
  position: absolute;
  right: 0.6rem;
  top: 50%;
  margin-top: -6px;
}
.footer .linkBtnfoot02 p a {
  color: #37bf90;
  border: 1px solid #37bf90;
  background-color: #fff;
  padding: 1em 2em;
  display: inline-block;
}
.footer .linkBtnfoot02 p a img {
  width: 20px;
  vertical-align: middle;
  margin-left: 0.5em;
}
.footer .linkBtnfoot02 ul.btn01 li {
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 30px 0;
  display: block;
  cursor: pointer;
  transition: 0.8s;
}
.footer .linkBtnfoot02 ul.btn01 li:hover {
  opacity: 0.5;
}
.panelForm {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  z-index: 9999;
}
.panelForm .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 2.5em;
  max-width: 95%;
}
.panelForm .title {
  text-align: center;
  color: #37bf90;
  font-size: 135%;
  margin-bottom: 0.75em;
  font-weight: 600;
}
.panelForm .note01 {
  text-align: center;
  text-indent: -1em;
  margin-left: 1em;
}
.panelForm .list01 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
}
.panelForm .list01 dt {
  background: #bfb090;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 1em;
  padding: 0 1em;
  height: 6em;
}
.panelForm .list01 dd ul li {
  list-style-type: disc;
  margin-left: 1.2em;
}
.panelForm .list01 dd ul li:not(:last-child) {
  margin-bottom: 0.5em;
}
.panelForm.panel02 .list01 dd ul {
  margin-top: 0.75em;
}
.panelForm.panel02 .list01 dd ul li {
  list-style-type: none;
  margin-left: 0;
}
.panelForm.panel02 .list01 dd ul li::before {
  content: "-";
  width: 1em;
  display: inline-block;
}
.panelForm.panel02 .list01 dd ul li:not(:last-child) {
  margin-bottom: 0.35em;
}
.panelForm .btn01 {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}
.panelForm .btn01 li:first-child a {
  color: #fff;
  background-color: #37bf90;
  border: 1px solid #37bf90;
  padding: 1em 0;
  display: inline-block;
  font-weight: 700;
  position: relative;
  width: 14em;
  margin-right: 0.75em;
  text-align: center;
}
.panelForm .btn01 li:first-child a::after {
  content: '';
  background-image: url(../../img/btn_arrow.png);
  display: inline-block;
  width: 14px;
  height: 11px;
  position: absolute;
  right: 0.6rem;
  top: 50%;
  margin-top: -6px;
}
.panelForm .btn01 li:last-child {
  color: #37bf90;
  border: 1px solid #37bf90;
  box-sizing: border-box;
  background-color: #fff;
  padding: 1em;
  display: inline-block;
  cursor: pointer;
  width: 14em;
  text-align: center;
  transition: 0.8s;
}
.panelForm .btn01 li:last-child:hover {
  opacity: 0.5;
}

/*--------------------------------------
#がん治療費追尾バナー
--------------------------------------*/
.tracking_bnr {
  position: fixed;
  bottom: 1.25em;
  right: 0;
  display: inline-block;
  z-index: 100;
  width: 13em;
}

.tracking_bnr a {
  display: block;
  border: 1px solid #37bf90;
}

.tracking_bnr a:not(:last-child) {
  margin-bottom: 0.65em;
}

.tracking_bnr a .site {
  display: block;
  padding: 5px 0;
  color: #fff;
  background-color: #37bf90;
  font-size: 12px;
  text-align: center;
}

.tracking_bnr a .site {
  display: block;
  padding: 5px 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
  background: url(/img/btn_arrow.png) 97% center no-repeat #37bf90;
  background-size: 1em auto;
}

.tracking_bnr a.link01 .site {
  display: block;
  padding: 5px 0;
  color: #37bf90;
  font-size: 12px;
  text-align: center;
  background: url(/img/link_icon03.svg) 97% center no-repeat #fff;
  background-size: 1em auto;
}

.tracking_bnr a img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 750px) {
  .tracking_bnr {
    display: flex;
    justify-content: space-between;
    bottom: 162px;
    right: 2.5%;
    width: 95%;
  }
  .tracking_bnr a:not(:last-child) {
    margin-bottom: 0;
  }
  .tracking_bnr a {
    width: 49%;
    position: relative;
  }

  .tracking_bnr img {
  }
  
  .tracking_bnr a .site, .tracking_bnr a.link01 .site {
    display: none;
  }

  .tracking_bnr a::after {
    content: "▲";
    position: absolute;
    top: 50%;
    right: 0.5%;
    transform: translateY(-50%) rotate(90deg);
    background-color: transparent;
    color: #37bf90;
    font-size: 3.6vw;
  }
  
  .tracking_bnr a.link01::after {
    content: '';
    background-image: url(/img/link_icon03.svg);
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    position: absolute;
    top: 50%;
    right: 1%;
    transform: translateY(-50%);
    font-size: 2.7vw;
  }
  
  .tracking_bnr a.link02::after {
    display: none;
  }
}

/*--------------------------------------
#page-top
--------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 80px;
  right: 10px;
  font-size: 1.4rem;
  line-height: 1.2;
  z-index: 99;
  background: #bfbfbf;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none!important;
}
#pagetop a {
  color: #fff;
  text-align: center;
  display: block;
  opacity: 0.9;
  transition: all .3s ease;
  font-weight: 600;
}
#pagetop:hover {
  text-decoration: none;
  opacity: .5;
  cursor : pointer;
  transition: 0.8s;
}

/*--------------------------------------
.pankuzu
--------------------------------------*/
.pankuzu {
  background-color: #999;
  padding: 14px 0 10px 0;
}
.pankuzu ul {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.pankuzu ul li {
  color: #fff;
  font-size: 1.5rem;
}
.pankuzu ul li a {
  color: #fff;
}
.pankuzu ul li::after {
  content: '>';
  padding: 0 5px;
}
.pankuzu ul li:last-child::after {
  content: none;
}



@media screen and (max-width: 750px) {
  body {
    -webkit-text-size-adjust: 100%;
    font-size: 1.4rem;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .inner,
  .inner2 {
    width: 100%;
    padding: 0 20px;
  }


  /*--------------------------------------
  header
  --------------------------------------*/
  #header .innerWrap {
    justify-content: center;
    height: 60px;
    padding: 0;
    display: block;
    position: relative;
  }
  #header .logo {
    width: 45%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
  }
  #header .innerWrap .wrap02 .small {
    display: none;
  }

  /*--------------------------------------
  footer
  --------------------------------------*/
  .footer .flWrap {
    display: block;
    margin: 3rem 0 5rem 0;
  }
  .footer .flWrap .linkArea {
    display: block;
  }
  .footer .flWrap .linkArea .list01 {
    margin-right: 0;
    margin-bottom: 3rem;
  }
  .footer .flWrap .linkArea .list01 li {
    margin-bottom: 2.5rem;
  }
  .footer .flWrap .linkArea .list01 li a {
    font-size: 1.6rem;
  }
  .footer .flWrap .linkArea .list01 li a::before {
    margin-right: 0.9rem;
  }
  .footer .flWrap .linkArea .list02 {
    width: 100%;
  }
  .footer .flWrap .linkArea .list02 dt {
    font-size: 1.6rem;
  }
  .footer .flWrap .linkArea .list02 dd ul {
    display: block;
  }
  .footer .flWrap .linkArea .list02 dd ul li {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .footer .flWrap .linkArea .list02 dd ul li:nth-child(even) {
    padding-left: 0;
  }
  .footer .flWrap .linkArea .list02 dd ul li a {
    font-size: 1.6rem;
  }
  .footer .flWrap .logoArea {
    width: 100%;
    margin-top: 5rem;
  }
  .footer .flWrap .logoArea .logo {
    width: 70%;
    margin: 0 auto;
  }
  .footer .flWrap .logoArea ul {
    justify-content: center;
  }

  .footer .linkBtnfoot02 {
    width: 100%;
    padding: 1rem;
  }
  .footer .linkBtnfoot02 .flexBox {
    display: block;
  }
  .footer .linkBtnfoot02 p {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
  .footer .linkBtnfoot02 p a {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .footer .linkBtnfoot02 ul {
    justify-content: space-between;
  }
  .footer .linkBtnfoot02 ul li {
    background-color: #bfb090;
    border-radius: 5px;
    text-align: center;
    position: relative;
    /* width: 33%; */
    width: 49%;
    margin-right: 0.5%;
  }
  .footer .linkBtnfoot02 ul li a {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 0;
    line-height: 1.4;
  }
  .footer .linkBtnfoot02 ul li::after {
    content: '';
    background-image: url(../../img/btn_arrow.png);
    display: inline-block;
    width: 14px;
    height: 11px;
    position: absolute;
    right: 0.6rem;
    top: 50%;
    margin-top: -6px;
  }
  .footer .linkBtnfoot02 ul.btn01 li {
    width: 49%;
    font-size: 1.2rem;
    padding: 0.5em 0;
    line-height: 1.4;
  }
  .panelForm .inner {
    padding: 1.5em 2.5%;
  }
  .panelForm .title {
    line-height: 1.4;
  }
  .panelForm .note01 {
    line-height: 1.4;
    text-align: left;
  }
  .panelForm .list01 {
    display: block;
    margin-top: 1.5em;
  }
  .panelForm .list01 dt {
    display: block;
    margin-right: 0;
    padding: 0.5em;
    margin-bottom: 0.75em;
    height: auto;
  }
  .panelForm .list01 dd ul li {
    list-style-type: none;
    margin-left: none;
    text-align: center;
  }
  .panelForm.panel02 .list01 dd {
    text-align: center;
  }
  .panelForm.panel02 .list01 dd ul {
    margin-top: 1em;
    display: inline-block;
  }
  .panelForm.panel02 .list01 dd ul li {
    text-align: left;
  }
  .panelForm .btn01 {
    justify-content: space-between;
  }
  .panelForm .btn01 li:first-child, .panelForm .btn01 li:last-child {
    width: 49%;
  }
  .panelForm .btn01 li:first-child a {
    width: 100%;
  }
  .footer .linkBtnfoot02 .saihatu {
    margin-right: 0;
  }
  .footer .linkBtnfoot02 .saihatu a {
    padding: 0.5em 0;
    line-height: 1.4;
    font-size: 1.6rem;
    display: block;
    position: relative;
    padding-right: 1em;
    margin-bottom: 0.6em;
  }
  .footer .linkBtnfoot02 .saihatu a::after {
    content: '';
    background-image: url(../../img/btn_arrow.png);
    display: inline-block;
    width: 14px;
    height: 11px;
    position: absolute;
    right: 0.6rem;
    top: 50%;
    margin-top: -6px;
  }

  /*--------------------------------------
  #page-top
  --------------------------------------*/
  #pagetop {
    /* bottom: 160px; */
    bottom: 162px;
    width: 15.1vw;
    height: 15.1vw;
    font-size: 3vw;
  }
  #pagetop img {
    width: 20px;
  }

  /*--------------------------------------
  .pankuzu
  --------------------------------------*/
  .pankuzu {

  }
  .pankuzu ul {
    width: 100%;
    padding: 0 20px;
    flex-wrap: wrap;
  }
  .pankuzu ul li {
    font-size: 1.0rem;
  }


  /*--------------------------------------
  footer
  --------------------------------------*/
  .footer {
    position: relative;
  }
  .footer .linkBtnfoot {
    background-color: #37bf90;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 5px;
  }
  .footer .linkBtnfoot a {
    color: #fff;
    display: block;
    padding: 1rem 0;
    text-align: center;
    line-height: 1.4;
    font-weight: bold;
  }
  .footer .linkBtnfoot a::after {
    content: '';
    background-image: url(../img/btn_arrow.png);
    display: inline-block;
    width: 14px;
    height: 11px;
    position: absolute;
    right: 0.6rem;
    top: 50%;
    margin-top: -6px;
  }
  .footer .impTxt li {
    font-size: 1.2rem;
  }
  .footer .copy {
    padding: 3rem 0 11rem 0;
    font-size: 1.2rem;
  }

  .toggle_title {
  	position: relative;
  }
  .toggle_btn {
  	position: absolute;
  	top: 50%;
  	right: 0;
  	transform: translateY(-50%);
  	display: block;
  	width: 24px;
  	height: 24px;
  	text-indent: 100%;
  	white-space: nowrap;
  	overflow: hidden;
  }
  .toggle_btn:before, .toggle_btn:after {
  	display: block;
  	content: '';
  	background-color: #37bf90;
  	position: absolute;
  	width: 10px;
  	height: 2px;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
  }
  .toggle_btn:before {
  	width: 2px;
  	height: 10px;
  }
  .toggle_title.selected .toggle_btn:before {
  	content: normal;
  }
  .toggle_contents dd {
  	display: none;
  }
}

.bosyuu {
  margin-top: 3rem;
}
.bosyuu a {
  color: #fff;
  padding: 1.5rem 6rem;
  background-color: #375dbf;
  display: inline-block;
  border-radius: 5px;
  font-weight: 600;
  font-size: 2.4rem;
  position: relative;
  line-height: 1.4;
}
/*.bosyuu a::after {
  content: '>';
  display: inline-block;
  width: 14px;
  height: 11px;
  position: absolute;
  right: 0.6rem;
  top: 50%;
  margin-top: -10px;
}*/
.bosyuu a .txt01 {
  font-weight: 400;
  font-size: 0.6em;
  background: #fff;
  padding: 0 0.25em;
  border-radius: 0.25em;
  color: #333;
  letter-spacing: 0;
  margin-left: 0.25em;
  white-space: nowrap;
  margin-bottom: 0;
}
.bosyuu a .txt01::after {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.6em;
  background-image: url(/img/link_icon.svg);
  background-size: contain;
  vertical-align: middle;
  margin: 0 0 0.25em 0.35em;
}
.bosyuu .tel {
  width: 16.625em;
}
.bosyuu .tel a {
  color: #fff;
  text-align: center;
  height: 90px;
  position: relative;
  background-color: #37bf90;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  font-weight: normal;
  line-height: 1.2;
}
.bosyuu .tel a .abtxt {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.bosyuu .tel a div p:last-child {
  font-weight: 600;
  font-size: 2.0rem;
  line-height: 1.4;
}
.bosyuu .tel a .tel {
  vertical-align: middle;
  width: 16px;
  height: 27px;
  margin-right: 0.5rem;
  margin-top: -0.8rem;
}
.bosyuu .tel .small {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0.5rem;
}
.clinicinfo .btn01 {
  display: block;
  background-color: #375dbf;
  color: #fff;
  padding: 1.5rem 0.35em;
  border-radius: 5px;
  text-align: center;
}
.clinicinfo .btn01 strong {
  display: block;
  font-size: 137.5%;
}
.clinicinfo .btn01 .txt01 {
  display: inline-block;
  padding: 0.25em 1.35em 0.25em 0.25em;
  border-radius: 0.25em;
  color: #333;
  background: url(/img/link_icon02.svg) 98% center no-repeat #fff;
  background-size: 1em auto;
  margin: 0 0 0 0.25em;
  font-size: 83.75%;
}
.clinicinfo .txt02 {
  display: block;
  background: #fff;
  margin: 0.5em 0;
  color: #333;
  padding: 0.25em;
  font-size: 87.5%;
  text-align: center;
  line-height: 1.1;
}
.clinicinfo .btn02 {
  display: block;
  background: #172851;
  margin: 0.5em 0 0.5em;
  color: #fff;
  padding: 0.5em;
  font-size: 112.5%;
  text-align: center;
  line-height: 1.2;
  border-radius: 5px;
}
.areaBox table td .clinicinfo ul {
  margin-bottom: 1.35em;
}
.flexBox .bosyuu {
  margin-top: 1.5em;
}
.flexBox .bosyuu .tel {
  width: 30em;
}
.flexBox .clinicinfo {
  width: 30em;
}

@media screen and (max-width: 750px) {
  .bosyuu a {
    width: 100%;
    text-align: center;
    padding: 1.5rem 0rem;
  }
  .bosyuu .tel {
    width: 100%;
  }
  .bosyuu .tel a {
    height: auto;
    padding: 1.5rem 0rem;
  }
  .clinicinfo .btn01 {
    margin-top: 1em;
    font-size: 112.5%;
  }
  .clinicinfo .btn02 {
    margin-top: 1em;
    font-size: 135%;
    padding: 0.75em 0;
  }
  .flexBox .bosyuu .tel {
    width: 100%;
  }
  .flexBox .clinicinfo {
    width: 100%;
  }
}

.areaBox table th {
  line-height: 1.4;
}

/*--------------------------------------
youtube(magnific-popup)
--------------------------------------*/
.youtube {
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
  background: rgb(204,204,204);
  background: -webkit-linear-gradient(bottom, rgba(204,204,204,1) 0%, rgba(234,251,255,1) 50%);
  background: -o-linear-gradient(bottom, rgba(204,204,204,1) 0%, rgba(234,251,255,1) 50%);
  background: linear-gradient(to top, rgba(204,204,204,1) 0%, rgba(234,251,255,1) 50%);
  padding: 1px;
}
 .youtube a {
   display: block;
   position: relative;
}
 .youtube a::after {
  content: "";
  display: inline-block;
  background: url("../img/youtube01.png");
  background-size: cover;
  width: 60px;
  height: 42px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
 .youtube a img {
   width: 100%;
   vertical-align: top;
}

/*--------------------------------------
clinic(URL)
--------------------------------------*/
#linkList .listbtnli .accordion_header.off {
  opacity: 0.5;
}
.linkList_bnr01 {
  width: 640px;
  max-width: 100%;
  margin: 0 auto 1.5em;
  position: relative;
  z-index: 5;
}
.linkList_bnr01 a {
  display: block;
}
.linkList_bnr01 a img {
  width: 100%;
}