@charset "UTF-8";


/* ──────────────────── style.css ──────────────────── */


/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/

body {
  -webkit-text-size-adjust: none;
}

a {
  text-decoration: none;
}

.wrapper {
  /* overflow: hidden; */
}

.inner {
  max-width: 1024px;
  margin: 0 auto;
}

.inner_sm {
  max-width: 1000px;
  margin: 0 auto;
}

.fullWidthBreak {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/*==========================================================================*/
/*                           WordPress Core                                 */
/*==========================================================================*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*==========================================================================*/
/*                              General                                     */
/*==========================================================================*/
@media only screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

@media only screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}

.accBtn::before,
.accBtn::after {
  transition: all 0.3s ease-in-out;
}

.accBtn.triangle,
.accBtn.triangle_btt {
  position: relative;
}

.accBtn.triangle::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 20px;
  border-color: inherit;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.accBtn.triangle.rotate::after {
  transform: translateY(-50%) rotateX(180deg);
}

.accBtn.triangle_btt::after {
  content: "";
  position: relative;
  top: 0px;
  width: 0;
  height: 0;
  border-radius: 20px;
  border-color: inherit;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid;
  display: block;
  margin: 10px auto 0;
  transition: all 0.3s ease-in-out;
}

.accBtn.rotate::after {
  transform: rotateX(180deg);
}

.TabContainer .TabContent {
  background-color: #edf0f5;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.TabContainer .TabContent>ul {
  transition: all 0.3s ease-in-out;
}

.TabContainer .TabContent>ul>li {
  opacity: 0;
  z-index: -10;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
}

.TabContainer .TabContent>ul>li.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.TabContainer .TabContent>ul>li div {
  padding-top: 20px;
}

.TabContainer .TabContent p {
  padding: 9px 10% 0;
  margin: 0;
}

.TabContainer .TabContent p.des {
  color: #838E95;
  font-size: 12px;
}

.TabContainer .TabPager {
  display: table;
  min-width: 290px;
}

.TabContainer .TabPager li {
  background-color: #fff;
  display: block;
  float: left;
  position: relative;
  margin: 0;
  padding: 9px 20px;
  box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.4);
  transform: translateY(10px);
  transition: all 0.3s ease;
  cursor: pointer;
  color: #797b7d;
}

.TabContainer .TabPager li p {
  margin: 0;
}

.TabContainer .TabPager li.active {
  background-color: #edf0f5;
  z-index: 1;
  transform: translateY(0px);
}

.rel {
  position: relative;
}

.ovh {
  overflow: hidden !important;
}

.ovs {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
}

.lt0 {
  letter-spacing: 0 !important;
}

figure {
  margin: 0;
  text-align: center;
  line-height: 1;
}

.fblock {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.key {
  position: relative;
}

.txt_l {
  float: left;
  width: calc(100% - 385px);
}

.txt_r {
  float: right;
  width: calc(100% - 385px);
}

.image_alone {
  display: table;
  max-width: 500px;
  margin: 0 auto;
  border: 7px solid rgba(231, 231, 231, 0.5);
  border-radius: 11px;
  overflow: hidden;
}

.totop {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 19;
  bottom: 45px;
  right: 95px;
}

.totop.active {
  opacity: 1;
  visibility: visible;
}

.totop .icon {
  background-image: url(../img/totop.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  border: 0px;
  width: 80px;
  height: 80px;
  margin: 0;
}

.bounce {
  animation-name: bounce;
}

.animated {
  animation-duration: .5s;
  animation-fill-mode: both;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.btn-group .btn a {
  display: block;
}

.btn-group .btn.style01,
.btn-group .btn.style02 {
  min-width: 180px;
  max-width: 300px;
  overflow: hidden;
}

.btn-group .btn.style01 a,
.btn-group .btn.style02 a {
  padding: 11px 10px 12px;
  position: relative;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  text-align: center;
  background-color: #000;
}

.btn-group .btn.style01 a:hover,
.btn-group .btn.style02 a:hover {
  opacity: 1;
  background-color: #9cb5ba;
}

.btn-group .btn.style01 a::after,
.btn-group .btn.style02 a::after {
  content: "";
  display: block;
  position: absolute;
  transition: all .3s;
  right: 5px;
  bottom: 5px;
  border: 4px solid #fff;
  border-left-color: transparent;
  border-top-color: transparent;
}

.btn-group .btn.style01.md a,
.btn-group .btn.md.style02 a {
  font-size: 18px;
}

.btn-group .btn.style01.md a::after,
.btn-group .btn.md.style02 a::after {
  font-size: 23px;
}

.btn-group .btn.style02 a {
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 11px 10px 12px;
  background-color: #ccc;
}

.btn-group .btn.bg01 a {
  background-color: #659cc1;
}

.btn-group .btn.bg02 a {
  background-color: #f4bf0c;
}

.slick-arrow {
  display: block;
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  position: absolute;
  top: 37%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
}

.slick-arrow:focus {
  outline: 0;
}

.slick-slide,
.slick-slide *:focus {
  outline: none;
}

.slick-prev {
  left: -55px;
}

.slick-next {
  right: -55px;
}

@media only screen and (min-width: 769px) {
  .totop:hover .icon {
    opacity: 0.9;
    animation-name: bounce;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Tablet
-------------------------------------------*/
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  body {
    font-size: 87.5%;
  }

  .btn.style01 a,
  .btn-group .btn.style02 a,
  .btn.style02 a {
    font-size: 14px;
  }

  .totop {
    right: 10px;
  }

  .totop .icon {
    width: 60px;
    height: 60px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1170px) {
  .inner {
    max-width: none;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1000px) {
  .inner_sm {
    max-width: none;
    padding-left: 50px;
    padding-right: 50px;
  }
}

/*==========================================================================*/
/*                           Header - Footer                                */
/*==========================================================================*/
/* menu */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

#header-top {
  background-color: #c1dcf3;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 500ms ease;
}

#header-top::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  bottom: 0;
  left: 0;
}

.header_top {
  height: 90px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
}

.logo {
  margin-left: 40px;
  width: 20%;
  max-width: 278px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo a {
  display: block;
  width: 100%;
  text-align: center;
}

.logo a img {
  max-width: 100%;
  height: auto;
  overflow: hidden;
}

.right_head {
  margin-right: 141px;
  width: 57%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pc_navi {
  width: 100%;
}

/* when hamburger menu click  */
.hamb-menu-click-active {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 7px 20px !important;
}

/* when menu scroll */
.menu-scroll-active {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 7px 20px !important;
}

/* list item menu */
.pc_navi>ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.pc_navi>ul>li {
  position: relative;
}

.pc_navi>ul>li:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background-color: #4f7dba;
}

/* item size */
.pc_navi>ul>li:nth-child(1) {
  width: 15%;
}

.pc_navi>ul>li:nth-child(2) {
  width: 16%;
}

.pc_navi>ul>li:nth-child(3) {
  width: 19%;
}

.pc_navi>ul>li:nth-child(4) {
  width: 21%;
}

.pc_navi>ul>li:nth-child(5) {
  width: 14%;
}

.pc_navi>ul>li:nth-child(6) {
  width: 15%;
}

.pc_navi>ul>li>a {
  position: relative;
  width: 100%;
  height: 90px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #004ea2;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pc_navi>ul>li>a:hover {
  color: var(--col-blue);
}

.pc_navi>ul>li>a::before {
  content: '';
  position: absolute;
  transition: transform .5s ease;
  bottom: 0;
  width: 80%;
  height: 2px;
  background: var(--col-blue);
  transform: scaleX(0);
}

.pc_navi>ul>li>a:hover:before {
  transform: scaleX(1);
}

.pc_navi>ul>li>a span,
.pc_navi>ul>li>p span {
  display: block;
  padding-top: 0px;
  font-size: 66.66666666666667%;
  font-weight: 600;
  color: #333;
}

.pc_navi>ul>li>a.title,
.pc_navi>ul>li>p.title {
  position: relative;
}

.pc_navi>ul>li>a.title::after,
.pc_navi>ul>li>p.title::after {
  content: "";
  background: url(../img/shared_pc_navi_arrow.png) center no-repeat;
  background-size: contain;
  width: 11px;
  height: 6px;
  position: absolute;
  bottom: 5px;
  left: calc(50% - 6px);
  transition: all 0.5s ease;
}

.pc_navi>ul>li:hover a.title::after,
.pc_navi>ul>li:hover p.title::after {
  transform: translateY(5px);
}

.pc_navi>ul>li.home a::before {
  width: 100%;
  height: 16px;
  display: block;
  margin-bottom: 10px;
}

/* dropdown menu */
.pc_navi>ul>li>.subInner {
  position: absolute;
  width: max-content;
  right: 50%;
  bottom: 0;
  padding-top: 0px;
  transform: translate(32%, 100%);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -100;
}

.pc_navi>ul>li>.subInner.active {
  opacity: 1;
  visibility: visible;
}

.pc_navi>ul>li>.subInner ul {
  background-color: rgba(255, 255, 255, 0.95);
  padding-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.pc_navi>ul>li>.subInner ul li {
  padding: 0 10px;
}

.pc_navi>ul>li>.subInner ul li a {
  height: auto;
  position: relative;
  display: block;
  padding: 12px 10px;
  border-bottom: 1px dashed var(--col-black);
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
  color: var(--col-black);
  text-decoration: none;
  text-align: left;
  letter-spacing: 0px;
  box-sizing: border-box;
}

.pc_navi>ul>li>.subInner ul li a::before {
  background: none;
}

.pc_navi>ul>li>.subInner ul li a:hover {
  color: var(--col-blue);
}

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

  .pc_navi>ul>li>a,
  .pc_navi>ul>li p {
    font-size: 14px;
  }

  .pc_navi>ul>li.home a::before {
    margin: 2px 0 1px;
  }

  .pc_navi>ul .subInner ul li a {
    font-size: 13px;
  }

  .right_head {
    width: 60%;
    margin-right: 90px;
  }

  .logo {
    margin-left: 30px;
  }

  .pc_navi>ul>li>.subInner {
    transform: translate(22%, 100%);
  }
}

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

  .pc_navi>ul>li>a,
  .pc_navi>ul>li p {
    font-size: 12px;
  }

  .pc_navi>ul .subInner ul li a {
    font-size: 12px;
  }

  .right_head {
    width: 62%;
    margin-right: 80px;
  }

  .logo {
    margin-left: 20px;
  }

  .pc_navi>ul>li>.subInner {
    transform: translate(18%, 100%);
  }
}

/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/* home page */
.home_page .key {
  display: none;
}

.home_page #splash {
  display: block;
}

.home_page .topic_path {
  display: none;
}

.navi-btn .btn:not(.home_page .navi-btn .btn) {
  animation: unset;
}

/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/* SITE MAP */
.under .sitemap {
  padding-top: 40px;
}

.under .sitemap>ul>li p {
  margin-bottom: 0;
}

.under .sitemap>ul>li a,
.under .sitemap>ul>li p {
  display: block;
  width: 100%;
  padding: 15px 15px 15px 30px;
  border-bottom: dotted 1px #ccc;
  color: #333333;
  position: relative;
  box-sizing: border-box;
}

.under .sitemap>ul>li a:before,
.under .sitemap>ul>li p:before {
  content: '';
  position: absolute;
  width: 15px;
  height: 3px;
  background: #ccc;
  left: 0;
  top: 50%;
  margin-top: -2px;
}

.under .sitemap>ul>li p:after {
  content: '';
  position: absolute;
  width: 3px;
  height: 14px;
  background: #ccc;
  left: 6px;
  top: 50%;
  margin-top: -7px;
}

.under .sitemap>ul>li a:hover {
  text-decoration: none;
  background: rgba(0, 0, 0, 0.05);
}

.under .sitemap>ul>li li a {
  padding-left: 70px;
}

.under .sitemap>ul>li li a:before {
  left: 40px;
}

/* END SITE MAP */

/* common set up */
.under #mainContent:not(.page-interview #mainContent, .media) {
  padding-bottom: 200px;
}

.under #mainContent img:not(.page-interview #mainContent img, .article img) {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}


/* kv contents */
.under .key {
  margin-top: 90px;
  background-image: url(../img/key-bg.jpg);
  height: 580px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.under .key .inner {
  height: 100%;
  padding: 0px;
}

.under .key .key_text {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.under .key .key_text div {
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.4) 1px 0 20px, rgba(0, 0, 0, 0.4) 1px 0 30px;
}

/* title and text in page contents */
.under .key_text {
  display: table;
  padding: 0 23px;
  font-size: 42px;
  font-weight: 500;
  text-align: left;
  color: #fff;
  letter-spacing: 0.1em;
}

.under .key_text,
.under h1,
.under h2,
.under h3,
.under h4,
.under h5 {
  line-height: 36px;
  font-family: var(--font-yumincho);
  color: #2e75b6;
}

.under .key_text:last-child,
.under h1:last-child,
.under h2:last-child,
.under h3:last-child,
.under h4:last-child,
.under h5:last-child {
  margin-bottom: 0;
}

.under h1 {
  background-size: 50px auto;
  position: relative;
  margin: 100px 0 35px;
  color: #2e75b6;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 60px;
}

.under h1::after {
  content: "";
  display: block;
  border-bottom: 4px solid #ffd966;
  width: 75px;
  margin: 0 auto;
  margin-top: 24px;
}

.under h2 {
  background-repeat: repeat;
  margin: 100px 0 30px;
  position: relative;
  font-weight: 500;
  font-size: 30px;
  color: #2e75b6;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #e0e8ee;
  padding-bottom: 12px;
  line-height: 50px;
}

.obesity #mokuji_area>:first-child {
  margin-top: 75px;
}

.under .inner h2+h3 {
  margin-top: 0%;
}

.under h3 {
  margin: 70px 0 20px 20px;
  position: relative;
  font-weight: 500;
  font-size: 26px;
  color: #2e75b6;
  letter-spacing: 0.1em;
  line-height: 30px;
}

.under .inner h3+h4 {
  margin-top: 0;
}

.under h3::before {
  content: "";
  border-left: 4px solid #ffd966;
  border-radius: 20px;
  position: absolute;
  left: -20px;
  height: 100%;
}

.media h3::before {
  display: none;
}

.under h4 {
  position: relative;
  padding-left: 30px;
  margin-top: 100px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 24px;
  color: #2e75b6;
  letter-spacing: 3px;
  line-height: 36px;
}

.under h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  height: 14px;
  width: 14px;
  border: 7px solid;
  box-sizing: border-box;
  border-radius: 50%;
  color: #ffd966;
}

.under .secH4 {
  padding-top: 100px;
}

.under .secH4 p,
.under .secH5 p,
.box_lig01 p,
.box_lig02 p,
.box_lig03 p {
  text-align: justify;
  font-size: 19px;
}

.under .secH4:first-of-type {
  padding-top: 40px;
}

.under .secH5 {
  padding-top: 100px;
}

.under .secH4 .secH5:nth-child(2) {
  padding-top: 0;
}

.under .secH5 h6:nth-child(2) {
  margin-top: 0;
}

/* set block with column images and text */
.under .imgBox.rowImg .image_l img,
.under .imgBox.rowImg .image_r img {
  max-width: 100%;
  max-height: 600px;
}

.under .imgBox.rowImg .image_l {
  float: left;
  margin-right: 20px;
}

.under .imgBox.rowImg .image_r {
  float: right;
  margin-left: 20px;
}

.under .imgBox.rowImg .image_l,
.under .imgBox.rowImg .image_r {
  max-width: 500px;
  margin-bottom: 15px;
  margin-top: 5px;
}

.under .imgBox.rowImg .txt_l {
  float: unset;
}

.under .imgBox.rowImg .txt_r {
  float: unset;
}

.under .imgBox.rowImg .txt_l,
.under .imgBox.rowImg .txt_r {
  width: 100%;
}

.under .imgBox.rowImg.large .image_l,
.under .imgBox.rowImg.large .image_r {
  max-width: 440px;
}

.under .imgBox.rowImg.large .txt_l,
.under .imgBox.rowImg.large .txt_r {
  width: 100%;
}

.under .imgBox.rowImg.full .image_l,
.under .imgBox.rowImg.full .image_r {
  max-width: 60vw;
}

.under .imgBox.colImg .list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.under .imgBox.colImg p {
  margin-bottom: 5px;
}

.under .imgBox.colImg p:last-child {
  margin-bottom: 0;
}

.under .imgBox.colImg figure {
  margin-bottom: 15px;
}

.under .imgBox.colImg .text .ttl {
  font-size: 1.375em;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  color: #2e75b6;
}

.under .imgBox.colImg3 .item {
  width: 32%;
}

.under .imgBox.colImg3 img {
  width: 100%;
}

.under .imgBox.colImg2 .item {
  width: 49%;
}

.under .imgBox.colImg2 img {
  width: 100%;
}

.under .imgBox.colImg1 .item {
  width: 100%;
}

.under .acf_block .text_h3 {
  margin: 45px 0 0;
}

.under .acf_block .text_h4 {
  margin: 30px 0 0;
}

.under .acf_block .text_h5 {
  margin: 20px 0 0;
}

.under .acf_block .list01 {
  margin-top: 20px;
}

.under ul.list01.mcol-2 {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.under ul.list01.mcol-2 li {
  width: 50%;
}

.under ul.list01 li {
  background-size: 10px auto;
  position: relative;
  padding-left: 20px;
  padding-bottom: 10px;
  letter-spacing: 1.6px;
}

.under ul.list01 li:last-child {
  padding-bottom: 0;
}

.under ul.list01 li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
  position: absolute;
  left: 0;
  top: 0.4em;
}

.under .list_note {
  margin-top: 15px;
  padding-left: 20px;
}

.under .list_note.no_mt {
  margin-top: 0;
}

/* home > to page */

.under .topic_path {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6px 50px;
}

.under .topic_path .inner {
  overflow-x: auto;
  min-width: 100%;
  padding: 0;
}

.under .topic_path ul {
  display: flex;
  flex-wrap: nowrap;
}

.under .topic_path ul li {
  flex-shrink: 0;
  text-transform: uppercase;
  color: var(--col-black);
  font-size: 12px;
  letter-spacing: .1em;
}

.under .topic_path a {
  text-decoration: none;
  color: #2e75b6;
}

.under .topic_path a:hover {
  opacity: 1;
  text-decoration: underline !important;
}

.under .topic_path span.gt {
  display: inline-block;
  padding: 0 3px;
  transform: scaleX(0.6);
  color: var(--col-black);
  line-height: 1;
}

/* anchor link btn */
.under .anchor-links {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0 0;
}

.under .anchor-links>div {
  background-color: #555;
  border-radius: 3px;
  position: relative;
  display: block;
  min-width: 135px;
  width: 19%;
  margin: 0% 0.5% 1%;
  text-align: center;
  color: #fff;
  font-size: 0.875em;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.under .anchor-links>div a {
  display: block;
  width: 100%;
  padding: 10px 5px 9px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.under .anchor-links>div::after {
  content: "";
  border: 4px solid;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  position: absolute;
  top: auto;
  bottom: 2px;
  left: calc(50% - 4px);
  right: auto;
  line-height: 1;
}

.under .anchor-links>div:hover a {
  opacity: 1;
}

.under .anchor-links>div:hover::after {
  bottom: 0;
}

.under .anchor-links>div.ext::after {
  content: "\003e";
  border: 0;
  position: absolute;
  top: calc(50% - 0.5em);
  bottom: auto;
  left: auto;
  right: 7px;
  font-size: 0.857em;
  line-height: 1;
  letter-spacing: 0;
  transform: scaleX(0.5);
}

.under .anchor-links>div.ext:hover::after {
  right: 5px;
}

.under #socialbuttons {
  display: table;
  margin: 20px auto 10px;
}

.under #socialbuttons>div {
  float: left;
  margin-right: 10px;
  font-size: 11px;
  overflow: hidden;
}

.under #socialbuttons .line {
  margin-right: 0px;
}

.under .clinic_tbl01 th {
  width: 350px;
  text-align: right;
}

.under .clinic_tbl02 {
  text-align: center;
}

.under .clinic_tbl02 th:first-child {
  width: 350px;
}

.under .clinic_tbl02 th:not(:first-child) {
  width: calc((100% - 350px) / 7);
}

.under .teeth_box .secH4 {
  width: 48%;
}

.under .teeth_box .secH5 {
  padding-top: 20px !important;
}

.under .teeth_box img {
  max-height: 180px;
}

.under .teeth_box p {
  font-size: 14px;
}

.under .access_box_img01 .block {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.under .access_box_img01 .block:nth-child(even) .big {
  order: 1;
}

.under .access_box_img01 .block .big {
  width: calc((580 / 1160) * (100% - 10px));
}

.under .access_box_img01 .block .small {
  width: calc((580 / 1160) * (100% - 10px));
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.under .access_box_img01 .block .small figure {
  width: calc((100% - 10px) * 0.5);
}

.under .access_box_img01 .block figure {
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 10px;
}

.under .access_box_img02 .block {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.under .access_box_img02 .block:nth-child(even) .big {
  order: 1;
}

.under .access_box_img02 .block .big {
  width: calc((640 / 1160) * (100% - 10px));
}

.under .access_box_img02 .block .small {
  width: calc((520 / 1160) * (100% - 10px));
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.under .access_box_img02 .block .small figure {
  width: calc((100% - 10px) * 0.5);
}

.under .access_box_img02 .block figure {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

/* START BLOG
------------------------------------------------------------------------*/
/* Pagination when post > 10 will display on bottom list blog */
#pagination {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
}

#pagination:empty {
  display: none;
}

#pagination a,
#pagination span {
  background-color: #555;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin: 10px 5px;
  width: 32px;
  height: 32px;
  color: #fff;
  line-height: 1;
}

#pagination a.prev,
#pagination a.next,
#pagination span.prev,
#pagination span.next {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px auto;
  color: transparent;
}

#pagination a.prev,
#pagination span.prev {
  background-image: url(../img/shared_blog_arrow_prev.svg);
}

#pagination a.next,
#pagination span.next {
  background-image: url(../img/shared_blog_arrow_next.svg);
}

#pagination a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#pagination span {
  opacity: 0.5;
}

#pagination .active a,
#pagination a.active:hover {
  background: none repeat scroll 0 0 #000000;
  color: #FFFFFF;
}

@media screen and (min-width: 0\0) and (min-resolution: 72dpi) {
  #pagination {
    /* for IE 9 and above */
  }

  #pagination a,
  #pagination span {
    padding-top: 2px;
  }
}

/* container of list blog and sidebar */
.main_blog_container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.main_blog_container .main_blog_content {
  width: 67%;
}

.main_blog_container .main_blog_content>div {
  padding-top: 0;
}

.main_blog_container .sidebar {
  width: 30%;
}

.main_blog_container .sidebar .txt_head,
.main_blog_container .sidebar .widgettitle {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: var(--col-blue);
  transform: none;
  position: static;
  display: block;
  padding: 0 10px;
  width: 100%;
  writing-mode: horizontal-tb;
  font-size: 18px;
  color: #fff;
  box-sizing: border-box;
}

.main_blog_container .sidebar .widgettitle:not(:first-child) {
  margin-top: 30px;
}

.main_blog_container .sidebar ul:not(.children) {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 10px;
  color: rgba(0, 0, 0, 0.5);
  background-color: #e0e8ee;
}

.main_blog_container .sidebar ul:not(.children)>li {
  padding: 10px 0;
  font-size: 80%;
  line-height: 23px;
}

.main_blog_container .sidebar ul:not(.children)>li:last-child {
  border-bottom: 0;
}

.main_blog_container .sidebar ul:not(.children)>li a {
  color: inherit;
  font-size: inherit;
  transition: 200ms ease;
}

.main_blog_container .sidebar ul:not(.children)>li a:hover {
  color: #2e75b6;
  text-decoration: underline !important;
}

.main_blog_container .sidebar ul.children {
  padding: 7px 7px;
}

.main_blog_container .sidebar ul.children li {
  padding-bottom: 5px;
}

.main_blog_container .sidebar ul.children li:last-child {
  padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .main_blog_container .main_blog_content {
    width: 100%;
    margin: 0 auto;
  }

  .main_blog_container .sidebar {
    display: none;
  }
}

/* list blog item */
.blog_list_style01 {
  padding-bottom: 30px;
}

.blog_list_style01:first-child .item {
  display: block;
  --sizebr: 8px;
}

.blog_list_style01:first-child .item .thumb-im {
  width: 100%;
  height: 360px;
}

.blog_list_style01:first-child .item .thumb-im figure img {
  border-radius: 8px;
}

.blog_list_style01:first-child .item .info {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.blog_list_style01:first-child .item .info .author {
  position: absolute;
  top: -36px;
  left: 10px;
}

.blog_list_style01:first-child .item .info .author .name {
  color: #fff;
}

.blog_list_style01:first-child .item .info .date {
  padding-top: 10px;
}


.blog_list_style01 .item .thumb-im {
  width: 36%;
  height: 150px;
  background-color: rgba(255, 166, 0, 0.699);
}

.blog_list_style01 .item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog_list_style01 .item .thumb-im figure {
  background-color: white;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.blog_list_style01 .item .thumb-im figure img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 4px;
}

.blog_list_style01 .item .info {
  width: 62%;
  position: relative;
}

.blog_list_style01 .item .info p {
  margin-bottom: 0;
  line-height: 1.5;
}

.blog_list_style01 .item .info .date {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
  padding-top: 5px;
  font-size: 90%;
  color: #5c5c5f;
  font-weight: 600;
}

.blog_list_style01 .item .info .date .tag {
  display: inline-block;
  margin-left: 20px;
  color: transparent;
  font-size: 90%;
  letter-spacing: -1em;
}

.blog_list_style01 .item .info .date .tag a {
  display: inline-block;
  padding: 3px 10px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0;
  text-decoration: none;
  line-height: 17px;
  font-weight: 500;
}

.blog_list_style01 .item .info .date .tag a:not(:first-child) {
  margin-left: 10px;
}

.blog_list_style01 .item .info .date .tag a:hover {
  color: #2e75b6;
  transition: opacity 0.3s ease;
}

.blog_list_style01 .item .info .ttl {
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 120%;
  font-weight: 600;
  color: #333333;
}

.blog_list_style01 .item .info .ttl a {
  color: #000;
  text-decoration: none;
  transition: .2s all;
}

.blog_list_style01 .item .info .ttl a:hover {
  color: #2e75b6;
}

.blog_list_style01 .item .info .des {
  padding-bottom: 5px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
}

.blog_list_style01 .item .info .button {
  background-color: #ddd;
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-radius: 10px;
  transition: 0.8s;
}

.blog_list_style01 .item .info .button a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0 10px;
  font-size: 90%;
  color: #333;
  text-decoration: none;
  line-height: 30px;
}

.blog_list_style01 .item .info .button a::before {
  opacity: 0;
}

.blog_list_style01 .item .info .button:hover a {
  opacity: 1;
  color: #fff;
}

.blog_list_style01 .item .info .button:hover {
  background-color: #2e75b6;
}

.blog_list_style01 .item .info .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog_list_style01 .item .info .author .im img {
  width: 28px;
  height: 28px !important;
  object-fit: cover;
  border-radius: 50%;
  outline: 1px solid #fff;
}

.blog_list_style01 .item .info .author .name {
  padding-left: 5px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 1280px) {
  .blog_list_style01 .item .info .date {
    margin-bottom: 0;
    padding-top: 0;
  }
}

@media only screen and (max-width: 768px) {
  .main_blog_container {
    margin-top: 20px;
  }

  .blog_list_style01 {
    padding-bottom: 20px;
  }

  .blog_list_style01:first-child .item .info .date {
    padding-top: 5px;
  }

  .blog_list_style01 .item .info .ttl {
    font-size: 105%;
  }

  .blog_list_style01 .item .info .des {
    font-size: 11px;
    line-height: 21px;
  }

  .blog_list_style01 .item .info .date {
    font-size: 85%;
  }

  .blog_list_style01 .item .info .date .tag {
    margin-left: 0;
  }

  .blog_list_style01 .item .info .date .tag a {
    margin-left: 0 !important;
    padding: 3px 0 3px 12px;
  }
}

@media only screen and (max-width: 540px) {
  .blog_list_style01 .item .info .ttl {
    margin-bottom: 7px;
  }

  .blog_list_style01:first-child .item .thumb-im {
    height: 250px;
  }

  .blog_list_style01:first-child .item .info .author .im img {
    width: 28px;
    height: 28px !important;
  }

  .blog_list_style01 .item .info .author .im img {
    width: 22px;
    height: 22px !important;
  }

  .blog_list_style01 .item .info .author .name {
    font-size: 8px;
  }

  .blog_list_style01:first-child .item .info .author .name {
    font-size: 10px;
  }
}

@media only screen and (max-width: 360px) {
  .blog_list_style01:not(:first-child) .item .thumb-im {
    display: none;
  }

  .blog_list_style01:not(:first-child) .item .info {
    width: 100%;
  }
}

/* button on bottom in post page */
.blog_post_button {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 100px auto 0;
}

.blog_post_button>div {
  border-radius: 10px;
  position: relative;
  width: 32%;
  color: #2e75b6;
  text-align: center;
  line-height: 1;
  font-size: 0.9em;
}

.blog_post_button>div a {
  border: 1px solid #2e75b6;
  transition: all 0.3s;
  display: block;
  position: relative;
  z-index: 1;
  padding: 11px 10px 10px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  line-height: inherit;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.blog_post_button>div:hover a {
  color: #fff;
  background-color: #2e75b6;
}

/* END BLOG
------------------------------------------------------------------------*/
/* START Mail
------------------------------------------------------------------------*/
.contact-form-style01 .contact-table {
  background-size: cover;
  width: 100%;
  margin: 0 auto 0px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.contact-form-style01 .contact-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.contact-form-style01 .contact-table input,
.contact-form-style01 .contact-table select,
.contact-form-style01 .contact-table textarea {
  border: 1px solid;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form-style01 .contact-table input {
  width: 100%;
}

.contact-form-style01 .contact-table textarea {
  max-width: 100%;
  width: 100%;
  height: 7em;
}

.contact-form-style01 .contact-table input,
.contact-form-style01 .contact-table textarea {
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}

.contact-form-style01 .contact-table input[type="radio"],
.contact-form-style01 .contact-table input[type="checkbox"] {
  margin: 5px 3px 5px 0px;
  width: auto;
}

.contact-form-style01 .contact-table [readonly*="readonly"] {
  background: none;
  border: 0;
  font-weight: bold;
}

.contact-form-style01 .contact-table dl {
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.contact-form-style01 .contact-table dl:last-child dt,
.contact-form-style01 .contact-table dl:last-child dd {
  border-bottom: 0px;
}

.contact-form-style01 .contact-table dt {
  width: 400px;
  padding: 15px 20px;
  font-size: 20px;
}

.contact-form-style01 .contact-table dt span {
  display: inline-block;
  border-radius: 7px;
  padding: 2px 7px;
  margin-left: 5px;
  font-size: 70%;
  line-height: 1;
}

.contact-form-style01 .contact-table dd {
  width: calc(100% - 400px);
  padding: 15px 25px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contact-form-style01 .contact-table .postal_code {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}

.contact-form-style01 .contact-table .inline span {
  max-width: 75px;
  margin: 0 5px;
  text-align: center;
}

.contact-form-style01 .contact-table .inline input {
  text-align: center;
}

.contact-form-style01 .contact-table .clockpicker input {
  width: 70px;
  text-align: center;
}

.contact-form-style01 .contact-table input:not([type='radio']):not([type='checkbox']):focus,
.contact-form-style01 .contact-table textarea:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-form-style01 .confirm-table textarea {
  resize: none;
  width: 100%;
}

.contact-form-style01 .confirm-table input:not([type='radio']):not([type='checkbox']):focus,
.contact-form-style01 .confirm-table textarea:focus {
  color: inherit;
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.contact-form-style01 .input_btn,
.contact-form-style01 .button.thanks_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 40px auto 0;
}

.contact-form-style01 .input_btn input,
.contact-form-style01 .input_btn a,
.contact-form-style01 .button.thanks_btn input,
.contact-form-style01 .button.thanks_btn a {
  color: inherit;
}

.contact-form-style01 .input_btn input[type="button"],
.contact-form-style01 .input_btn input[type="submit"],
.contact-form-style01 .button.thanks_btn {
  display: block;
  width: 200px;
  height: 45px;
  border: none;
  padding: 10px;
  text-align: center;
  font-size: 100%;
  font-weight: normal;
  margin: 0px 10px 10px;
  text-decoration: none;
  cursor: pointer;
}

.contact-form-style01 .input_btn input[type="button"]:hover,
.contact-form-style01 .input_btn input[type="submit"]:hover,
.contact-form-style01 .button.thanks_btn:hover {
  opacity: 0.8;
}

.contact-form-style01 .input_btn input[type="button"],
.contact-form-style01 .input_btn input[type="submit"],
.contact-form-style01 .button.thanks_btn {
  background-color: #ddebf2;
  color: #0e7cad;
}

.contact-form-style01 .contact-table {
  border: 1px solid #ddebf2;
}

.contact-form-style01 .contact-table input,
.contact-form-style01 .contact-table select,
.contact-form-style01 .contact-table textarea {
  border-color: #ddd;
}

.contact-form-style01 .contact-table dt {
  display: flex;
  align-items: center;
  background-color: #ddebf2;
  border-bottom: 1px solid #fff;
  color: #0e7cad;
}

.contact-form-style01 .contact-table dt span {
  background-color: #ffffff;
  color: #ff3c7f;
}

.contact-form-style01 .contact-table dd {
  border-bottom: 1px solid #ddebf2;
}

.contact-form-style01 .wpcf7-not-valid-tip {
  display: block;
  margin: 3px 7px 0;
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  font-size: 80%;
  color: #ff3c7f;
}

.wpcf7-response-output {
  padding-top: 20px;
}

.wpcf7-list-item {
  margin-right: 15px;
}

.wpcf7-list-item-label {
  color: #000;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.captcha_box {
  display: table;
  margin: 50px auto 0;
}

@media only screen and (max-width: 1000px) and (min-width: 769px) {
  .contact-form-style01 .contact-table dt {
    width: 40%;
  }

  .contact-form-style01 .contact-table dd {
    width: 60%;
  }
}

@media only screen and (max-width: 768px) {
  .contact-form-style01 .contact-table dl {
    display: block;
  }

  .contact-form-style01 .contact-table dt,
  .contact-form-style01 .contact-table dd {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form-style01 .contact-table dd {
    border-color: transparent;
  }

  .contact-form-style01 .contact-table input,
  .contact-form-style01 .contact-table textarea {
    width: 100%;
  }

  .contact-form-style01 .contact-table input[type="checkbox"],
  .contact-form-style01 .contact-table input[type="radio"] {
    width: auto;
  }

  .contact-form-style01 .wpcf7-list-item {
    display: block;
  }
}

/* END Mail*/
/*==========================================================================*/
/*                             content editor                               */
/*==========================================================================*/

.img_wcap_ct {
  margin: 0 auto 40px;
  text-align: center;
}

.img_wcap_ct img {
  margin: 0 auto 20px;
  width: 100%;
}

.img_wcap_ct .catption_txt {
  text-align: left;
}

p:empty {
  display: none;
}

.catption_txt {
  padding-top: 10px;
  display: block;
}

.note01 {
  margin-bottom: 30px;
}

.note01 {
  position: relative;
  padding-left: 20px;
  line-height: 1.6em;
  margin-bottom: 10px;
}

.note01:before {
  content: "※";
  z-index: 4;
  position: absolute;
  top: 0px;
  left: 0;
}

.note01.note_c {
  color: #ff9a00;
  font-weight: 600;
}

.note01.note_c:before {
  color: #ff9a00;
}

/* blog contents */
.blog-content .date {
  margin-bottom: 20px;
  text-align: center;
  color: #000;
}

.blog-content .img_r {
  max-width: 420px;
  float: right;
  margin: 0 0 20px 40px;
}

.blog-content .img_l {
  max-width: 420px;
  float: left;
  margin: 0 40px 20px 0;
}

.blog-content .imgBox {
  margin-bottom: 40px;
}

@media screen and (max-width: 960px) {
  .blog-content .img_l {
    max-width: 300px;
    margin: 0 20px 15px 0;
  }

  .blog-content .img_r {
    max-width: 300px;
    margin: 0 0px 15px 20px;
  }
}

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

  .blog-content .img_l,
  .blog-content .img_r {
    float: none;
    max-width: 100%;
    margin: 0 0px 20px 0;
  }
}

/* box light */
.box_lig01 {
  position: relative;
  padding: 40px;
  background: #F7F7F7;
  margin-bottom: 40px;
  margin-top: 20px;
}

.box_lig01 p:last-child {
  margin-bottom: 0;
}

.box_lig02 {
  position: relative;
  padding: 40px;
  background: #fff;
  margin-bottom: 40px;
  color: #2e75b6;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-top: 20px;
  font-weight: 500;
}

.box_lig02 p:last-child {
  margin-bottom: 0;
}

.box_lig03 {
  position: relative;
  padding: 40px;
  background: url(../img/key-bg.jpg) no-repeat center center;
  background-size: cover;
  margin-bottom: 40px;
  margin-top: 20px;
  color: #fff;
}

.box_lig03 p:last-child {
  margin-bottom: 0;
}

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

  .box_lig01,
  .box_lig02,
  .box_lig03 {
    padding: 20px;
  }
}

/* INTRO DR */
.avata-doc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../img/top-mess-bg.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
}

.avata-doc__im {
  width: 30%;
}

.avata-doc__im img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.avata-doc__name {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.avata-doc__name h1 {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) {
  .avata-doc__name h1 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .avata-doc {
    width: 100%;
    display: block;
    border-radius: 15px;
  }

  .avata-doc__im {
    width: 100%;
  }

  .avata-doc__im img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: unset;
  }

  .avata-doc__name {
    width: 100%;
    padding: 40px 0;
    border-top-right-radius: unset;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .avata-doc__name h1 {
    font-size: 16px;
  }
}

/* FAQ PAGE */
.faq_box {
  margin-top: 200px;
}

.faq_box__item {
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.faq_box__body {
  display: none;
  padding: 20px 30px 40px;
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 14px;
  letter-spacing: .1em;
  line-height: 30px;
  text-align: justify;
}

.faq_box__title {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: .1em;
  color: #615647;
  cursor: pointer;
  margin-bottom: 0;
  position: relative;
  font-family: var(--font-ki);
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 30px 40px 30px 30px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: 400ms ease-in-out;
}

.faq_box__title.active {
  color: #fff;
  background-color: #ed9126;
}

.faq_box__title.active .gg-math-plus {
  transform: rotate(45deg);
}

.gg-math-plus,
.gg-math-plus::after {
  display: block;
  box-sizing: border-box;
  background: currentColor;
  border-radius: 10px;
}

.gg-math-plus {
  margin-top: -2px;
  position: absolute;
  right: 30px;
  width: 16px;
  height: 2px;
  transition: all 0.15s cubic-bezier(.42, 0, .58, 1);
}

.gg-math-plus::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  top: -7px;
  left: 7px;
}

@media only screen and (max-width: 768px) {
  .faq_box {
    margin-top: 50px;
  }

  .faq_box__title {
    font-size: 16px;
    line-height: 28px;
    padding: 20px 50px 20px 20px;
  }

  .faq_box__body {
    padding: 10px 20px 20px;
    font-size: 12px;
    line-height: 26px;
  }
}

/* INTERVIEW PAGE */
.page-interview .inner {
  max-width: 1280px;
}

.page-interview .key {
  height: calc(103.5vh - 90px);
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 90px;
}

.page-interview .key .key_text {
  justify-content: flex-start !important;
}

.page-interview .key .key_text h2 {
  padding: 0;
}

.inte-mv {
  display: inline-block;
  padding-left: 109px;
  transform: translateY(-34px);
}

.inte-mv p {
  color: white;
  font-weight: bold;
  letter-spacing: .1em;
}

.inte-mv .inte-mv__tit p {
  font-size: 40px;
  line-height: 70px;
}

.inte-mv .inte-mv__te {
  margin-top: 6px;
}

.inte-mv .inte-mv__te p {
  font-size: 24px;
  line-height: 60px;
}

.inte-mv .inte-mv__name {
  width: 570px;
  height: 60px;
  border-top: 1px solid #fff;
  margin-top: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
}

.inte-mv .inte-mv__name .tit {
  text-shadow: none;
  background-color: white;
  width: 136px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.inte-mv .inte-mv__name .tit span {
  font-size: 28px;
  color: #969d9f;
}

.inte-mv .inte-mv__name .jp {
  font-size: 36px;
  line-height: 1;
  margin-left: 38px;
  margin-bottom: 8px;
}

.inte-mv .inte-mv__name .en {
  font-size: 18px;
  line-height: 1;
  margin-left: 15px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

@media only screen and (min-width: 1441px) {
  .page-interview .key {
    height: calc(100vh - 90px);
  }
}

@media only screen and (max-width: 1024px) {
  .inte-mv {
    padding-left: 30px;
  }

  .inte-mv .inte-mv__tit p {
    font-size: 32px;
    line-height: 2;
  }

  .inte-mv .inte-mv__te p {
    font-size: 20px;
    line-height: 2;
  }

  .inte-mv .inte-mv__name {
    width: 480px;
    height: 50px;
  }

  .inte-mv .inte-mv__name .tit span {
    font-size: 24px;
  }

  .inte-mv .inte-mv__name .jp {
    font-size: 32px;
  }

  .inte-mv .inte-mv__name .en {
    font-size: 16px;
  }
}

/* ---contents--- */
.inte-contents {
  padding: 83px 0 194px;
}

.inte-contents .block-point:nth-child(3) {
  margin-bottom: 80px;
}

.inte-contents .block-point:nth-child(4) {
  margin-bottom: 178px;
}

.inte-contents .block-point:nth-child(6) {
  margin-bottom: 130px;
}

.inte-contents .block-point:nth-child(7) {
  margin-bottom: 144px;
}

.inte-contents .block-point:nth-child(8) {
  margin-bottom: 120px;
}

.inte-contents .block-point:nth-child(9) {
  margin-bottom: 172px;
}

.block-point .block-im {
  width: calc(545 * 100% / 1280);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 20px;
}

.block-point .block-im p {
  font-size: 9.33333em;
  line-height: .8;
  font-family: var(--font-jo);
  letter-spacing: 0;
  color: #e2aa00;
  position: absolute;
  top: -40px;
  z-index: 1;
}

.block-point .block-im img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  -webkit-box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.12);
}

.block-point .block-ct {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.block-point .block-ct .tit {
  font-size: 1.875em;
  font-weight: bold;
  color: var(--col-blue);
  line-height: 50px;
  letter-spacing: .16em;
  padding-top: 30px;
}

.block-point .block-ct .te {
  font-size: 1.1875em;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--col-black);
  line-height: 42px;
  text-align: justify;
  margin-top: 26px;
}

.block-point.-imLeft .block-im {
  float: left;
  margin-right: 80px;
}

.block-point.-imLeft .block-im p {
  left: 32px;
}

.block-point.-imLeft .block-ct {
  padding-right: 80px;
}

.block-point.-imRight .block-im {
  float: right;
  margin-left: 80px;
}

.block-point.-imRight .block-im p {
  right: 16px;
}

.block-point.-imRight .block-ct {
  padding-left: 80px;
}

.block-point:not(:last-child) {
  margin-bottom: 80px;
}

.block-sub {
  height: 580px;
  position: relative;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  left: 50%;
  right: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 140px;
}

.block-sub p {
  padding: 0 20px;
  font-size: 2.25em;
  line-height: 72px;
  letter-spacing: .16em;
  color: white;
  font-weight: bold;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.4) 1px 0 20px, rgba(0, 0, 0, 0.4) 1px 0 30px;
}

.block-sub.-bg1 {
  background-image: url(../img/inte-bg-1.jpg);
}

.block-sub.-bg2 {
  background-image: url(../img/inte-bg-2.jpg);
}

@media only screen and (max-width: 1280px) {
  .block-point .block-im {
    margin-bottom: 10px;
  }

  .block-point .block-im p {
    font-size: 7.33333em;
    top: -30px;
  }

  .block-point .block-ct .tit {
    padding-top: 0;
  }

  .block-point .block-ct .tit br {
    display: none;
  }

  .block-point .block-ct .te {
    margin-top: 20px;
  }

  .block-point.-imLeft .block-im {
    margin-right: 50px;
  }

  .block-point.-imLeft .block-ct {
    padding-right: 0;
  }

  .block-point.-imRight .block-im {
    margin-left: 50px;
  }

  .block-point.-imRight .block-ct {
    padding-left: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .block-point .block-im p {
    font-size: 6em;
  }

  .block-point .block-ct .tit {
    font-size: 1.625em;
    line-height: 40px;
  }

  .block-point .block-ct .te {
    font-size: 1.0625em;
    line-height: 38px;
  }

  .block-point.-imLeft .block-im {
    margin-right: 30px;
  }

  .block-point.-imRight .block-im {
    margin-left: 30px;
  }
}

/*  END INTERVIEW PAGE */


/* ──────────────────── home_page.css ──────────────────── */
:root {
  --font-noto: 'Noto Sans JP', sans-serif;
  --col-black: #292929;
  --col-blue: #2e75b6;
  --font-nori: 'Norican', cursive;
  --font-jo: 'Josefin Sans', sans-serif;
  --font-yumincho: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W6", HiraMinProN-W6, -apple-system, blinkMacSystemFont, serif;
}

@-webkit-keyframes fadeinup {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeinup {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes fadeinleft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeinleft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes fadeinright {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeinright {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

html {
  color: #000;
  background: #f9f9f9;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
  table-layout: fixed;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
optgroup {
  font-style: normal;
  font-weight: normal;
}

del,
ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1.5;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

abbr {
  cursor: help;
}

label {
  cursor: pointer;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input,
button,
textarea,
select {
  *font-size: 100%;
}

img {
  vertical-align: top;
}

ol,
ul {
  list-style: none;
}

table,
input,
textarea,
select,
option {
  line-height: 1.1;
}

/* Setting
------------------------------------------------------------------------*/
strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

dt,
dd {
  line-height: 1.7;
}

th,
td {
  border: 1px solid;
  padding: 1em;
}

th {
  font-weight: bold;
  text-align: center;
}

caption {
  padding-bottom: .5em;
  text-align: left;
}

dfn {
  font-style: normal;
}

address {
  font-style: normal;
  line-height: 1.0;
}

.clear {
  clear: both;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
/* Font-size fixed */
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
body {
  font-family: var(--font-yumincho);
  font-size: 15px;
  color: #292929;
  line-height: 36px;
  letter-spacing: .1em;
  font-weight: normal;
}

html {
  -webkit-text-size-adjust: none;
}

html>body {
  font-size: 15px;
}

select {
  font-family: var(--font-yumincho);
  font-size: 100%;
  color: #333;
  line-height: 1.5;
  font-size: 100%;
}

input {
  font-family: var(--font-yumincho);
  font-size: 100%;
  color: #333;
  line-height: 1.5;
  font-size: 100%;
}

button {
  font-family: var(--font-yumincho);
  font-size: 100%;
  color: #333;
  line-height: 1.5;
  font-size: 100%;
}

textarea {
  font-family: var(--font-yumincho);
  font-size: 100%;
  color: #333;
  line-height: 1.5;
  font-size: 100%;
}

table {
  font-size: inherit;
}

pre {
  font-family: var(--font-yumincho);
  font-size: 100%;
  *font-size: 108%;
  line-height: 1.5;
  color: #333;
  font-size: 100%;
}

code {
  font-family: var(--font-yumincho);
  font-size: 100%;
  *font-size: 108%;
  line-height: 1.5;
  color: #333;
}

kbd {
  font-family: var(--font-yumincho);
  font-size: 100%;
  *font-size: 108%;
  line-height: 1.5;
  color: #333;
}

samp {
  font-family: var(--font-yumincho);
  font-size: 100%;
  *font-size: 108%;
  line-height: 1.5;
  color: #333;
}

tt {
  font-family: var(--font-yumincho);
  font-size: 100%;
  *font-size: 108%;
  line-height: 1.5;
  color: #333;
}

li {
  font-size: 100%;
}

li li {
  font-size: 100%;
}

li dt {
  font-size: 100%;
}

li dd {
  font-size: 100%;
}

li input {
  font-size: 100%;
}

li select {
  font-size: 100%;
}

li button {
  font-size: 100%;
}

li textarea {
  font-size: 100%;
}

li p {
  font-size: 100%;
}

li th {
  font-size: 100%;
}

li td {
  font-size: 100%;
}

dt {
  font-size: 100%;
}

dt li {
  font-size: 100%;
}

dt dt {
  font-size: 100%;
}

dt dd {
  font-size: 100%;
}

dt input {
  font-size: 100%;
}

dt select {
  font-size: 100%;
}

dt button {
  font-size: 100%;
}

dt textarea {
  font-size: 100%;
}

dt p {
  font-size: 100%;
}

dt th {
  font-size: 100%;
}

dt td {
  font-size: 100%;
}

dd {
  font-size: 100%;
}

dd li {
  font-size: 100%;
}

dd dt {
  font-size: 100%;
}

dd dd {
  font-size: 100%;
}

dd input {
  font-size: 100%;
}

dd select {
  font-size: 100%;
}

dd button {
  font-size: 100%;
}

dd textarea {
  font-size: 100%;
}

dd p {
  font-size: 100%;
}

dd th {
  font-size: 100%;
}

dd td {
  font-size: 100%;
}

th {
  font-size: 100%;
}

th li {
  font-size: 100%;
}

th dt {
  font-size: 100%;
}

th dd {
  font-size: 100%;
}

th input {
  font-size: 100%;
}

th select {
  font-size: 100%;
}

th button {
  font-size: 100%;
}

th textarea {
  font-size: 100%;
}

th p {
  font-size: 100%;
}

th th {
  font-size: 100%;
}

th td {
  font-size: 100%;
}

td {
  font-size: 100%;
}

td li {
  font-size: 100%;
}

td dt {
  font-size: 100%;
}

td dd {
  font-size: 100%;
}

td input {
  font-size: 100%;
}

td select {
  font-size: 100%;
}

td button {
  font-size: 100%;
}

td textarea {
  font-size: 100%;
}

td p {
  font-size: 100%;
}

td th {
  font-size: 100%;
}

td td {
  font-size: 100%;
}

p {
  font-size: 100%;
}

p input {
  font-size: 100%;
}

h1 {
  font-size: 100%;
}

h2 {
  font-size: 100%;
}

h3 {
  font-size: 100%;
}

h4 {
  font-size: 100%;
}

h5 {
  font-size: 100%;
}

h6 {
  font-size: 100%;
}

blockquote {
  font-size: 100%;
}

address {
  font-size: 100%;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 13px;
    line-height: 2;
  }

  html>body {
    font-size: 13px;
  }
}

/*************************************************************************/
/*     			                   Elements  			  			     */
/*************************************************************************/
.clearfix {
  *zoom: 1;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.dis-sp {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.fixed-contents {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.fixed-contents.-for-link {
  z-index: 9;
}

.border-inside {
  position: relative;
}

.border-inside::before {
  background: none;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  inset: 10px;
  border: 2px solid #000;
}

.img-fixed {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-full {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.block-full {
  width: 100%;
  height: 100%;
}

.block-ali {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.block-jus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tit-sec .jp {
  font-size: 2.26667em;
  line-height: 1.5;
  letter-spacing: .05em;
  position: relative;
  padding-bottom: 24px;
  font-weight: bold;
}

.tit-sec .jp::before {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background-color: #ffd966;
  position: absolute;
  bottom: 0;
  left: 0;
}

.tit-sec .en {
  font-size: 2.66667em;
  line-height: 1.1;
  letter-spacing: 0;
  font-family: var(--font-nori);
  font-weight: normal;
  text-indent: .03em;
}

.tit-sec.-left p {
  text-align: left;
}

.tit-sec.-center p {
  text-align: center;
}

.tit-sec.-center .jp {
  text-indent: 0 !important;
}

.tit-sec.-center .jp::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.tit-sec.-blue .jp {
  color: var(--col-black);
}

.tit-sec.-blue .en {
  color: var(--col-blue);
}

.tit-sec.-white .jp,
.tit-sec.-white .en {
  color: white;
}

.tit-sec.-lg .jp {
  font-size: 3.33333em;
  line-height: 1.3;
  padding-bottom: 36px;
}

.tit-sec.-lg .en {
  font-size: 3.33333em;
  text-indent: 0;
  line-height: 1.4;
}

.re-btn {
  width: 436px;
}

.re-btn .btn {
  width: 100%;
  height: auto;
  border-radius: 10px;
  position: relative;
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.re-btn .btn p {
  font-size: 1.5em;
  line-height: 1.4;
  letter-spacing: .05em;
  font-weight: bold;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

.re-btn .btn::before {
  right: calc(30 * 100% / 246);
}

.re-btn .btn.-blue {
  background-color: var(--col-blue);
}

.re-btn .btn.-blue p {
  color: white;
}

.re-btn .btn.-blue::before {
  border-color: white;
}

.re-btn .btn.-white {
  background-color: white;
}

.re-btn .btn.-white p {
  color: var(--col-blue);
}

.re-btn .btn.-white::before {
  border-color: var(--col-blue);
}

.re-btn .btn.-lg {
  padding: 29px 0;
}

.re-btn .btn.-lg::before {
  right: calc(30 * 100% / 436);
}

.re-btn .btn.-lg:hover::before {
  right: calc(40 * 100% / 436);
}

.re-btn .btn:hover p {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.re-btn .btn:hover::before {
  right: calc(40 * 100% / 246);
}

.finp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeinup;
}

.finl {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeinleft;
}

.finr {
  -webkit-animation-name: fadeinright;
  animation-name: fadeinright;
}

.cus-table {
  width: 100%;
}

.cus-table caption {
  margin-top: 10px;
  caption-side: bottom;
  font-size: 0.9375em;
  letter-spacing: .05em;
  line-height: 24px;
  color: var(--col-black);
  font-weight: 500;
}

.cus-table caption span {
  color: var(--col-blue);
}

.cus-table tr:not(:first-child) {
  border-bottom: 1px solid #bfbfbf;
}

.cus-table tr th,
.cus-table tr td {
  font-size: 1.1875em;
  font-weight: 500;
  color: var(--col-blue);
  line-height: 1.5;
  letter-spacing: .05em;
  text-align: center;
  border: none;
}

.cus-table tr th:first-child,
.cus-table tr td:first-child {
  color: var(--col-black);
  width: 164px;
}

.cus-table tr th:last-child,
.cus-table tr td:last-child {
  width: 50px;
  padding-right: 30px;
  letter-spacing: -.2em;
}

.cus-table tr th {
  padding: 24px 0;
  color: var(--col-black);
}

.cus-table tr td {
  padding: 23px 0;
}

.cus-table.-white th {
  background-color: white;
}

.cus-table.-blue th {
  background-color: var(--col-blue);
  color: white !important;
}

.cus-table.-cap-left caption {
  text-align: left;
}

.cus-table.-cap-right caption {
  text-align: right;
}

/*************************************************************************/
/*     		STRAT BREAKPOINT 1400PX ---->769PX FOR PC + TABLET 			 */
/*************************************************************************/
@media only screen and (max-width: 1280px) {
  .tit-sec.-lg .jp {
    font-size: 2.66667em;
    padding-bottom: 30px;
  }

  .tit-sec.-lg .en {
    font-size: 2.66667em;
  }

  .re-btn .btn.-lg {
    padding: 25px 0;
  }
}

@media only screen and (max-width: 1024px) {
  .tit-sec .jp {
    font-size: 1.875em;
    padding-bottom: 15px;
  }

  .tit-sec .jp::before {
    width: 100px;
  }

  .tit-sec .en {
    font-size: 2em;
  }

  .tit-sec.-lg .jp {
    font-size: 2.375em;
    padding-bottom: 25px;
  }

  .tit-sec.-lg .jp::before {
    width: 100px;
  }

  .tit-sec.-lg .en {
    font-size: 2.375em;
  }

  .re-btn {
    width: 400px;
  }

  .re-btn .btn {
    padding: 18px 0;
  }

  .re-btn .btn p {
    font-size: 1.125em;
  }

  .re-btn .btn.-lg {
    padding: 18px 0;
  }

  .cus-table tr th,
  .cus-table tr td {
    font-size: 1.0625em;
  }

  .cus-table tr th:first-child,
  .cus-table tr td:first-child {
    width: 140px;
  }

  .cus-table tr th:last-child,
  .cus-table tr td:last-child {
    width: 50px;
    padding-right: 20px;
  }
}

/*************************************************************************/
/*     			  STRAT BREAKPOINT 768PX ---->320PX FOR SP  		     */
/*************************************************************************/
@media only screen and (max-width: 768px) {
  .dis-sp {
    display: block !important;
  }

  .dis-pc {
    display: none !important;
  }

  .border-inside::before {
    inset: 8px;
  }

  .tit-sec .jp {
    padding-bottom: 10px;
  }

  .tit-sec .jp::before {
    width: 60px;
    height: 2px;
  }

  .tit-sec.-lg p {
    text-align: center;
  }

  .tit-sec.-lg .jp {
    font-size: 1.875em;
    line-height: 1.5;
    padding-bottom: 20px;
  }

  .tit-sec.-lg .jp::before {
    width: 60px;
    height: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .tit-sec.-lg .en {
    text-indent: 0;
    font-size: 2em;
  }

  .re-btn {
    width: 300px !important;
  }

  .re-btn .btn {
    padding: 15px 0;
    border-radius: 5px;
  }

  .re-btn .btn p {
    font-size: 1em;
  }

  .re-btn .btn::before {
    width: 4px;
    height: 4px;
    right: calc(20 * 100% / 246);
  }

  .re-btn .btn.-lg {
    padding: 15px 0;
    border-radius: 5px;
  }

  .re-btn .btn.-lg p {
    font-size: 1em;
  }

  .re-btn .btn.-lg::before {
    width: 4px;
    height: 4px;
    right: calc(20 * 100% / 436);
  }

  .cus-table caption {
    text-align: left !important;
  }

  .cus-table tr th,
  .cus-table tr td {
    padding: 15px 0 !important;
  }

  .cus-table tr th:last-child,
  .cus-table tr td:last-child {
    padding-right: 20px !important;
  }
}

@media only screen and (max-width: 540px) {
  .cus-table caption {
    margin-top: 5px;
    font-size: 0.8125em;
    letter-spacing: .1em;
    line-height: 18px;
  }

  .cus-table tr th,
  .cus-table tr td {
    font-size: 1em;
    padding: 13px 0 !important;
  }

  .cus-table tr th:first-child,
  .cus-table tr td:first-child {
    width: 120px;
  }

  .cus-table tr th:last-child,
  .cus-table tr td:last-child {
    width: 40px;
    padding-right: 15px !important;
  }
}

@media only screen and (max-width: 414px) {
  .re-btn {
    width: calc(100% - 40px) !important;
  }
}

@media only screen and (max-width: 360px) {
  .re-btn {
    width: 100% !important;
  }

  .cus-table tr th:first-child,
  .cus-table tr td:first-child {
    width: 100px;
  }
}

.container-lg {
  max-width: 1440px;
  margin: 0 auto;
}

.container-md {
  max-width: 1280px;
  margin: 0 auto;
}

.container-sm {
  max-width: 1024px;
  margin: 0 auto;
}

#mainContent {
  /* overflow: hidden; */
}

#mainContent,
footer {
  position: relative;
  /* z-index: 1; */
}

@media only screen and (max-width: 1280px) {
  .container-md {
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .container-sm {
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 768px) {
  body {
    min-width: 320px;
  }

  .container-md,
  .container-sm {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* TOP PAGE
-------------------------------------------------------------------------*/
/*************************************************************************/
/*     					 STRAT BACKGROUND COMMON  						 */
/*************************************************************************/
#top-message-bg,
#top-sport-bg,
#top-clinic-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#top-message-bg {
  background-image: url(../img/top-mess-bg.jpg);
}

#top-sport-bg {
  background-image: url(../img/top-sport-bg.jpg);
}

#top-clinic-bg {
  background-image: url(../img/top-clinic-bg.png);
}

/*************************************************************************/
/*     			         END BACKGROUND COMMON  						 */
/*************************************************************************/
/*
*
*
*
*
*
*
*
*
*
*
*/
/*************************************************************************/
/*     			STRAT BREAKPOINT 1440PX ---->99999PX FOR PC  			 */
/*************************************************************************/
.fake-menu {
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  height: 90px;
  background-color: rgba(255, 166, 0, 0.436);
}

.top-mv {
  margin-top: 90px;
  position: relative;
  --hsize: calc(103.4vh - 90px);
}

.top-mv .wrap {
  overflow: hidden;
}

.top-mv .carousel-cell.is-selected img {
  -webkit-animation: zoomout 8s;
  animation: zoomout 8s;
}

@-webkit-keyframes zoomout {
  0% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomout {
  0% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.top-mv .carousel-cell {
  width: 100%;
  margin: 0 auto;
  -webkit-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
}

.top-mv .carousel img {
  display: block;
  width: 100%;
  height: var(--hsize);
  -o-object-fit: cover;
  object-fit: cover;
}

.top-mv__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.top-mv__text p {
  color: white;
  font-weight: bold;
  text-align: center;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  text-shadow: rgba(0, 0, 0, 0.4) 1px 0 20px, rgba(0, 0, 0, 0.4) 1px 0 30px;
}

.top-mv__text p:nth-child(1) {
  -webkit-animation-delay: 4.3s;
  animation-delay: 4.3s;
}

.top-mv__text p:nth-child(2) {
  -webkit-animation-delay: 4.8s;
  animation-delay: 4.8s;
}

.top-mv__text .t-tit {
  font-size: 3.125em;
  letter-spacing: .05em;
  line-height: 50px;
  position: relative;
  margin-top: 5px;
  margin-bottom: 30px;
}

.top-mv__text .t-text {
  font-size: 1.625em;
  line-height: 60px;
  letter-spacing: .05em;
}

.top-mv .mv-bnr {
  position: fixed;
  z-index: 9;
  bottom: 10px;
  left: 10px;
  -webkit-animation: fadeInUp 1s;
  animation: fadeInUp 1s;
  -webkit-animation-delay: 4.3s;
  animation-delay: 4.3s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  max-width: clamp(16.0625rem, 13.38393rem + 13.39286vw, 25.4375rem);
}

@media only screen and (max-width: 768px) {
  .top-mv .mv-bnr {
    bottom: 80px;
  }
}

.top-mv .mv-bnr__im img {
  border-radius: 5px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-mv .mv-bnr__io {
  background-color: #eb7043;
  width: clamp(1.75rem, 1.57143rem + 0.89286vw, 2.375rem);
  height: clamp(1.75rem, 1.57143rem + 0.89286vw, 2.375rem);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: -10px;
  right: -10px;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.top-mv .mv-bnr__io i {
  color: #fff;
}

.top-mv .mv-bnr__io:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top-mv .mv-bnr__link a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top-mv .coronabox {
  width: 407px;
  height: 130px;
  background-color: #4088cb;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  bottom: -10px;
  left: 10px;
  -webkit-animation: fadeInUp 1s;
  animation: fadeInUp 1s;
  -webkit-animation-delay: 4.3s;
  animation-delay: 4.3s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

.top-mv .coronabox__im img {
  width: 60px;
  -webkit-transform: translateX(-12px);
  transform: translateX(-12px);
}

.top-mv .coronabox__te {
  margin-left: 14px;
}

.top-mv .coronabox__te a {
  display: block;
  font-weight: bold;
  color: #fff;
  letter-spacing: .05em;
  font-size: 1.125em;
  line-height: 25px;
  text-decoration: none;
}

.top-mv .coronabox__te a:hover {
  text-decoration: underline;
}

.top-mv .coronabox__io {
  background-color: #265992;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: -10px;
  right: -10px;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.top-mv .coronabox__io i {
  color: #fff;
}

.top-mv .coronabox__io:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top-mv .top-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
  width: 30px;
  height: 60px;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
  -webkit-animation-delay: 4.3s;
  animation-delay: 4.3s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-mv .top-scroll i {
  -webkit-transform: scale(2);
  transform: scale(2);
  color: #fff;
}

.top-mv .top-scroll i::before {
  height: 20px;
}

.top-mv .top-scroll:hover {
  bottom: 16px;
}

.top-news {
  padding: 27px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top-news .block-news {
  width: 49%;
  padding: 78px 80px 61px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: white;
  border-radius: 5px;
  position: relative;
  top: 42px;
  -webkit-box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.05);
}

.top-news .block-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.top-news .block-news__head .re-btn {
  width: calc(246 * 100% / 464);
  margin-bottom: 5px;
}

.top-news .block-news__litem {
  margin-top: 34px;
}

.top-news .block-news__litem .idx_new_list li {
  padding: 18px 30px 28px 0;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.top-news .block-news__litem .idx_new_list li::before {
  border-color: #8bbeee;
  right: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.top-news .block-news__litem .idx_new_list li:hover {
  background-color: rgba(14, 66, 123, 0.05);
}

.top-news .block-news__litem .idx_new_list p {
  letter-spacing: .05em;
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.top-news .block-news__litem .idx_new_list a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.top-news .block-news__litem .idx_new_list .date_new {
  font-size: 1.25em;
  color: var(--col-blue);
  font-weight: bold;
}

.top-news .block-news__litem .idx_new_list .news_txt {
  font-size: 1.1875em;
  color: var(--col-black);
  font-weight: 500;
}

.top-message {
  padding: 153px 0 140px;
  overflow: hidden;
}

.top-message .wrap-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top-message .block-ct {
  width: 49%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 80px;
}

.top-message .block-ct__te {
  font-size: 1.1875em;
  line-height: 36px;
  letter-spacing: .05em;
  color: var(--col-black);
  font-weight: 500;
  text-align: justify;
  margin-top: 38px;
}

.top-message .block-ct .tit-sec .en {
  text-indent: .2em;
}

.top-message .block-ct .re-btn {
  margin-top: 40px;
  width: 100%;
}

.top-message .block-im {
  width: 51%;
  margin-top: 10px;
}

.top-message .block-im .picture {
  position: relative;
}

.top-message .block-im .im1 {
  -webkit-box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}

.top-message .block-im .im2 {
  position: absolute;
  bottom: calc(-110 * 100% / 620);
  right: calc(-67 * 100% / 654);
  width: calc(438 * 100% / 654);
}

.top-message .block-banner {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  margin-top: 30px;
}

.top-message .block-banner .banner {
  width: 100%;
}

.top-message .block-banner .banner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-trouble-2 {
  padding: 128px 0 250px;
  background: #e9f0f5 url(../img/top-trouble-2-bg.png) no-repeat bottom -120px center;
}

.top-trouble-2 .list-block {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 11px;
}

.top-trouble-2 .list-cus {
  margin-top: 92px;
}

.top-trouble-2 .block-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 40px;
}

.top-trouble-2 .block-item .block-im {
  width: 100%;
}

.top-trouble-2 .block-item .block-im img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.12);
}

.top-trouble-2 .block-item .block-ct {
  width: 100%;
  margin-top: 24px;
}

.top-trouble-2 .block-item .block-ct__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.top-trouble-2 .block-item .block-ct__tit .num {
  width: auto;
  display: inline-block;
  margin-left: 4px;
}

.top-trouble-2 .block-item .block-ct__tit .num p {
  font-size: 4.66667em;
  font-family: var(--font-jo);
  font-weight: bold;
  line-height: .65;
  letter-spacing: 0;
  color: #64a7dc;
  position: relative;
  text-align: center;
}

.top-trouble-2 .block-item .block-ct__tit .num p::before {
  display: block;
  content: "trouble";
  font-family: inherit;
  color: currentColor;
  font-weight: inherit;
  font-size: 20px;
  letter-spacing: inherit;
  line-height: 2.4;
  text-align: center;
}

.top-trouble-2 .block-item .block-ct__tit .tit {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 27px;
}

.top-trouble-2 .block-item .block-ct__tit .tit p {
  font-weight: bold;
  font-size: 1.75em;
  letter-spacing: .05em;
  line-height: 1.6;
  color: var(--col-blue);
}

.top-trouble-2 .block-item .block-ct__te {
  margin-top: 20px;
}

.top-trouble-2 .block-item .block-ct__te p {
  font-size: 1.1875em;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: .05em;
  color: var(--col-black);
}

.top-trouble-2 .block-item .block-ct__te a {
  color: var(--col-blue);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.top-trouble-2 .block-item.-imLeft {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-trouble-2 .block-item.-imLeft .block-im {
  width: 49%;
}

.top-trouble-2 .block-item.-imLeft .block-ct {
  width: 49%;
  padding-right: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.top-trouble-2 .block-item .picture {
  max-width: 545px;
}


.top-trouble-2 .block-item.-no1 .block-ct .tit {
  margin-left: 35px;
}

.top-trouble-2 .block-item.-no2 .picture {
  margin-top: 52px;
}

.top-trouble-2 .block-item.-no2 .block-ct {
  margin-top: 32px;
}

.top-trouble-2 .block-item.-no3 .block-ct {
  margin-top: 34px;
}

.top-trouble-2 .block-item.-no4 .picture {
  margin-top: 88px;
}

.top-trouble-2 .block-item.-no4 .block-ct {
  margin-top: 34px;
}

.top-trouble-2 .block-item.-no5 .block-ct {
  margin-top: 87px;
}

.top-feature {
  padding: 71px 0 260px;
  overflow: hidden;
  background: url(../img/top-feat-bg.jpg) no-repeat bottom -40px center;
}

.top-feature .list-card {
  margin-top: 115px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 28px;
  grid-row-gap: 115px;
  padding: 0 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.top-feature .list-card .card {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.top-feature .list-card .card__im {
  position: relative;
  --ws: 545;
  --hs: 344;
}

.top-feature .list-card .card__im img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  -webkit-box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.12);
}

.top-feature .list-card .card__im .num {
  color: #e2aa00;
  font-size: 9.33333em;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(var(--font-yumincho));
  font-weight: 400;
  position: absolute;
  top: -44px;
  left: 25px;
}

.top-feature .list-card .card__im .kazari {
  position: absolute;
  z-index: -1;
  width: calc(var(--size) * 100% / 545);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.top-feature .list-card .card__tit {
  margin-top: 44px;
}

.top-feature .list-card .card__tit p {
  font-weight: bold;
  font-size: 2em;
  letter-spacing: .05em;
  line-height: 50px;
  color: var(--col-blue);
}

.top-feature .list-card .card__te {
  margin-top: 16px;
  padding-left: 0;
}

.top-feature .list-card .card__te p {
  font-size: 1.1875em;
  letter-spacing: .05em;
  line-height: 36px;
  color: var(--col-black);
  font-weight: 500;
  text-align: justify;
}

.top-feature .list-card .card:nth-child(even) {
  top: 30px;
}

.top-feature .list-card .card:nth-child(1) .kazari {
  --size: 505;
  top: calc(-130 * 100% / var(--hs));
  left: calc(-132 * 100% / var(--ws));
}

.top-feature .list-card .card:nth-child(2) .kazari {
  --size: 423;
  bottom: calc(-135 * 100% / var(--hs));
  right: calc(-210 * 100% / var(--ws));
}

.top-feature .list-card .card:nth-child(3) .kazari {
  --size: 408;
  bottom: calc(-80 * 100% / var(--hs));
  left: calc(-320 * 100% / var(--ws));
}

.top-feature .list-card .card:nth-child(4) .kazari {
  --size: 505;
  bottom: calc(-90 * 100% / var(--hs));
  right: calc(-450 * 100% / var(--ws));
}

.top-feature .list-card.-l2 .card:nth-child(1) .kazari {
  --size: 423;
  bottom: calc(-146 * 100% / var(--hs));
  left: calc(-110 * 100% / var(--ws));
  top: unset;
}

.top-feature .list-card-2 {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 122px;
}

.top-feature .list-card-2 .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-feature .list-card-2 .card__im {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 15px;
}

.top-feature .list-card-2 .card__im img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-feature .list-card-2 .card__ct {
  width: calc(735 * 100% / 1440);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.top-feature .list-card-2 .card__ct__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-feature .list-card-2 .card__ct__tit .num {
  font-size: 9.33333em;
  font-family: var(var(--font-yumincho));
  color: #e2aa00;
  line-height: .7;
  letter-spacing: 0;
  text-indent: -.07em;
}

.top-feature .list-card-2 .card__ct__tit .tit {
  font-size: 2em;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: .16em;
  color: var(--col-blue);
  margin-left: 14px;
}

.top-feature .list-card-2 .card__ct__te {
  margin-top: 5px;
}

.top-feature .list-card-2 .card__ct__te p {
  font-size: 1.1875em;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: .16em;
  color: var(--col-black);
  text-align: justify;
}

.top-feature .list-card-2 .card__ct__li .list li {
  font-size: 1.1875em;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: .16em;
  color: var(--col-black);
}

.top-feature .list-card-2 .card__ct__li .list .arrow {
  padding-right: 20px;
}

.top-feature .list-card-2 .card__ct__li .list .arrow.-lg {
  padding: 0 22px 0 52px;
}

.top-feature .list-card-2 .card__ct__li .list .arrow.-md {
  padding: 0 22px 0 20px;
}

.top-feature .list-card-2 .card__ct__li .list.-l2 {
  margin-left: 36px;
}

.top-feature .list-card-2 .card__ct__li .list.-l2 li {
  font-size: 0.9375em;
  line-height: 36px;
  font-weight: normal;
}

.top-feature .list-card-2 .card__ct__no {
  margin-top: 41px;
}

.top-feature .list-card-2 .card__ct__no p {
  font-size: 0.9375em;
  line-height: 36px;
  color: var(--col-black);
  letter-spacing: .16em;
  text-align: justify;
}

.top-feature .list-card-2 .card.-imLeft {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.top-feature .list-card-2 .card.-imLeft .card__ct {
  padding-right: 80px;
  margin-right: 80px;
}

.top-feature .list-card-2 .card.-imRight {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.top-feature .list-card-2 .card.-imRight .card__ct {
  padding: 0 80px;
  margin-left: 80px;
}

.top-feature .list-card-2 .card.-no1 .picture {
  max-width: 597px;
}

.top-feature .list-card-2 .card.-no2 .picture {
  max-width: 625px;
}

.top-feature .list-card-2 .card.-no2 .card__ct {
  margin-top: 37px;
}

.top-feature .list-card-2 .card.-no2 .card__ct .num {
  text-indent: 0;
}

.top-feature .list-card-2 .card:not(:first-child) {
  margin-top: 50px;
}

.top-feature .list-card.-l2 {
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0;
}

.top-feature .list-card.-l2 .card .card__im {
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
}

.top-trouble {
  background-color: #c2e0f8;
  padding: 57px 0 180px;
  overflow: hidden;
}

.top-trouble .wrap-contents {
  margin-top: 63px;
  padding: 0 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.top-trouble .body-im {
  width: 100%;
  height: auto;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top-trouble .body-im img {
  width: 436px;
  position: absolute;
  top: 0;
}

.top-trouble .body-im .t-neck,
.top-trouble .body-im .t-arm,
.top-trouble .body-im .t-hip-joint,
.top-trouble .body-im .t-leg,
.top-trouble .body-im .t-shoulder,
.top-trouble .body-im .t-back,
.top-trouble .body-im .t-waist,
.top-trouble .body-im .t-knee {
  opacity: 0;
}

.top-trouble .list-card {
  display: grid;
  grid-row-gap: 10px;
  padding-top: 15px;
  grid-template: "a1 a5" "a2 a6" "a3 a7" "a4 a8" / 50% 50%;
}

.top-trouble .list-card .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(355 * 100% / 559);
  height: auto;
  background-color: #fff;
  justify-self: flex-start;
  position: relative;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 28px 58px;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
  --linebase: 140;
  --linesz: calc(var(--linebase) * 100% / 355);
}

.top-trouble .list-card .card p {
  font-weight: bold;
  color: var(--col-blue);
  letter-spacing: .05em;
  line-height: 1.5;
}

.top-trouble .list-card .card i {
  color: var(--col-blue);
  position: absolute;
  top: 50%;
  right: 28px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.top-trouble .list-card .card .jp {
  font-size: 1.625em;
}

.top-trouble .list-card .card .en {
  font-size: 1em;
  text-transform: uppercase;
}

.top-trouble .list-card .card::before {
  content: "";
  display: block;
  width: var(--linesz);
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: calc(var(--linesz) * -1);
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
  opacity: 0;
}

.top-trouble .list-card .card:nth-child(1) {
  grid-area: a1;
}

.top-trouble .list-card .card:nth-child(2) {
  grid-area: a2;
}

.top-trouble .list-card .card:nth-child(3) {
  grid-area: a3;
}

.top-trouble .list-card .card:nth-child(4) {
  grid-area: a4;
}

.top-trouble .list-card .card:nth-child(5) {
  grid-area: a5;
}

.top-trouble .list-card .card:nth-child(6) {
  grid-area: a6;
}

.top-trouble .list-card .card:nth-child(7) {
  grid-area: a7;
}

.top-trouble .list-card .card:nth-child(8) {
  grid-area: a8;
}

.top-trouble .list-card .card:nth-child(n+5) {
  justify-self: flex-end;
}

.top-trouble .list-card .card:nth-child(n+5)::before {
  right: unset;
  left: calc(var(--linesz) * -1);
}

.top-trouble .list-card .card:nth-child(1),
.top-trouble .list-card .card:nth-child(5) {
  --linebase: 170;
}

.top-trouble .list-card .card:hover {
  background-color: #e2aa00;
}

.top-trouble .list-card .card:hover p,
.top-trouble .list-card .card:hover i {
  color: white;
}

.top-trouble .list-card .card:hover::before {
  opacity: 1;
}

.top-sport {
  padding: 110px 0 300px;
  background: url(../img/top-sprot-bg.png) no-repeat bottom -105px center;
}

.top-sport .block-head {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top-sport .block-head .tit-sec .en {
  text-indent: 0;
}

.top-sport .block-head__ct {
  width: calc(683 * 100% / 1118);
}

.top-sport .block-head__ct__te p {
  font-size: 1.1875em;
  color: white;
  letter-spacing: .05em;
  line-height: 30px;
  font-weight: 500;
  text-align: justify;
}

.top-sport .block-head__ct .re-btn {
  width: calc(575 * 100% / 763);
  margin-top: 45px;
}

.top-sport .list-card {
  margin-top: 101px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 28px;
}

.top-sport .list-card .card {
  width: 100%;
  height: auto;
  position: relative;
  --br: 10px;
}

.top-sport .list-card .card__im img {
  width: 100%;
  border-radius: var(--br);
}

.top-sport .list-card .card__te {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: var(--br);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: transparent;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.top-sport .list-card .card__te p {
  color: white;
  letter-spacing: .05em;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}

.top-sport .list-card .card__te .jp {
  font-size: 1.875em;
}

.top-sport .list-card .card__te .en {
  font-size: 1.125em;
  text-transform: uppercase;
}

.top-sport .list-card .card:hover .card__te {
  background-color: rgba(255, 255, 255, 0.2);
}

.top-treatment {
  padding: 58px 0 222px;
  background-color: #e9f0f5;
}

.top-treatment .container-md {
  position: relative;
}

.top-treatment .block-tsub {
  margin-top: 33px;
  padding: 0 30px;
}

.top-treatment .block-tsub p {
  font-weight: bold;
  line-height: 1.6;
  font-size: 1.75em;
  letter-spacing: .05em;
  color: var(--col-blue);
  text-align: center;
}

.top-treatment .list-card {
  margin-top: 61px;
}

.top-treatment .list-card .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.12);
}

.top-treatment .list-card .card .picture {
  width: calc(545 * 100% / 1280);
  position: relative;
}

.top-treatment .list-card .card .picture img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-treatment .list-card .card .picture .title {
  position: absolute;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}

.top-treatment .list-card .card .picture .title p {
  color: white;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.6;
  text-align: center;
}

.top-treatment .list-card .card .picture .title .jp {
  font-size: 2.625em;
}

.top-treatment .list-card .card .picture .title .en {
  font-size: 1.125em;
  font-family: var(var(--font-yumincho));
  text-transform: uppercase;
}

.top-treatment .list-card .card .picture .im {
  height: 100%;
}

.top-treatment .list-card .card .picture .im img {
  height: 100%;
}

.top-treatment .list-card .card .picture:hover .title {
  background-color: rgba(104, 176, 217, 0.2);
}

.top-treatment .list-card .card .c-te {
  width: calc(735 * 100% / 1280);
  padding: 67px 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.top-treatment .list-card .card .c-te p {
  font-size: 1.1875em;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: .05em;
  color: var(--col-black);
  text-align: justify;
}

.top-treatment .list-card .card.-imLeft {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.top-treatment .list-card .card.-imLeft .picture img {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.top-treatment .list-card .card.-imRight {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.top-treatment .list-card .card.-imRight .picture img {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.top-treatment .list-card .card:not(:first-child) {
  margin-top: 40px;
}

.top-treatment .kazari,
.top-treatment .kazari-2 {
  position: absolute;
  z-index: 1;
}

.top-treatment .kazari {
  bottom: -13.9%;
  left: -2.7%;
  width: calc(336 * 100% / 1280);
}

.top-treatment .kazari-2 {
  top: -8.5%;
  right: -2.8%;
  width: calc(408 * 100% / 1280);
}

.top-clinic {
  padding: 124px 0 160px;
}

.top-clinic .tit-sec .en {
  line-height: 1.2;
  padding-bottom: 16px;
}

.top-clinic .wrap-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 56px;
}

.top-clinic__info {
  width: 49%;
}

.top-clinic__info table {
  width: 100%;
}

.top-clinic__info table tr:last-child td {
  padding-bottom: 0;
}

.top-clinic__info table tr td {
  font-size: 1.1875em;
  letter-spacing: .05em;
  color: var(--col-black);
  font-weight: 500;
  line-height: 30px;
  vertical-align: top;
  padding: 0 0 45px 0;
  border: 0;
}

.top-clinic__info table tr td span:nth-of-type(2) {
  display: block;
  padding-top: 10px;
}

.top-clinic__info table tr td:first-child {
  font-weight: bold;
  width: 108px;
}

.top-clinic__time {
  width: 51%;
}

.top-clinic__map {
  margin-top: 60px;
  padding: 0 80px;
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top-clinic__map .map-banner {
  width: 49%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 80px;
}

.top-clinic__map .map-banner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-clinic__map .map-block {
  width: 49%;
}

.top-clinic__map .map-block iframe {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 2px solid #dbdbdb;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.top-clinic__grbtn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 28px;
  margin-top: 76px;
}

.top-clinic__grbtn .re-btn {
  width: 100%;
}

/*************************************************************************/
/*     			 END BREAKPOINT 1440PX ---->99999PX FOR PC  			 */
/*************************************************************************/
/*
*
*
*
*
*
*
*
*
*
*
*/
/*************************************************************************/
/*     		STRAT BREAKPOINT 1400PX ---->769PX FOR PC + TABLET 			 */
/*************************************************************************/
@media only screen and (min-width: 1441px) {
  .top-mv .carousel img {
    height: calc(100vh - 80px);
  }

  .top-reha,
  .top-trouble-2,
  .top-feature,
  .top-sport {
    background-size: 100%;
  }
}

@media only screen and (max-width: 1280px) {
  .top-news .block-news {
    padding: 50px 30px;
  }

  .top-message {
    padding: 152px 0 140px;
  }

  .top-message .block-ct {
    padding: 0 30px;
  }

  .top-message .block-ct__te {
    font-size: 1.0625em;
    line-height: 38px;
  }

  .top-message .block-ct .re-btn {
    width: 100%;
  }

  .top-message .block-im .im2 {
    bottom: calc(-50 * 100% / 620);
    right: calc(-30 * 100% / 654);
  }

  .top-trouble-2 .list-block {
    grid-column-gap: 40px;
    grid-row-gap: 20px;
  }

  .top-trouble-2 .list-cus {
    margin-top: 80px;
  }

  .top-trouble-2 .block-item {
    padding-right: 0;
  }

  .top-trouble-2 .block-item .picture {
    padding-right: 30px;
  }

  .top-trouble-2 .block-item .block-ct {
    margin-top: 25px !important;
  }

  .top-trouble-2 .block-item .block-ct__tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .top-trouble-2 .block-item .block-ct__tit .num {
    margin-left: 0;
  }

  .top-trouble-2 .block-item .block-ct__tit .num p {
    font-size: 3.75em;
  }

  .top-trouble-2 .block-item .block-ct__tit .num p::before {
    font-size: 18px;
  }

  .top-trouble-2 .block-item .block-ct__tit .tit {
    margin-left: 20px !important;
  }

  .top-trouble-2 .block-item .block-ct__tit .tit p {
    font-size: 1.5em;
  }

  .top-trouble-2 .block-item .block-ct__te p {
    font-size: 1em;
    line-height: 36px;
  }

  .top-trouble-2 .block-item.-imLeft .block-ct {
    padding-right: 0;
  }

  .top-feature .list-card {
    padding: 0;
  }

  .top-feature .list-card .card__im .num {
    font-size: 8em;
  }

  .top-feature .list-card .card__tit p {
    font-size: 1.875em;
    line-height: 50px;
  }

  .top-feature .list-card .card__te {
    padding-left: 0;
  }

  .top-feature .list-card .card__te p {
    font-size: 1.125em;
    line-height: 38px;
  }

  .top-feature .list-card-2 .card__im {
    margin-top: 0;
  }

  .top-feature .list-card-2 .card__ct {
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 0 30px !important;
  }

  .top-feature .list-card-2 .card__ct__tit .num {
    font-size: 8em;
    line-height: .8;
  }

  .top-feature .list-card-2 .card__ct__tit .tit {
    font-size: 1.875em;
  }

  .top-feature .list-card-2 .card__ct__te p {
    font-size: 1.0625em;
    line-height: 36px;
  }

  .top-feature .list-card-2 .card__ct__li .list li {
    font-size: 1.0625em;
    line-height: 36px;
  }

  .top-feature .list-card-2 .card__ct__li .list .arrow {
    padding: 0 12px !important;
  }

  .top-feature .list-card-2 .card__ct__li .list.-l2 {
    margin-left: 0;
  }

  .top-feature .list-card-2 .card__ct__li .list.-l2 li {
    font-size: 0.875em;
    line-height: 30px;
    font-weight: normal;
  }

  .top-feature .list-card-2 .card__ct__no {
    margin-top: 30px;
  }

  .top-feature .list-card-2 .card__ct__no p {
    font-size: 0.875em;
    line-height: 30px;
  }

  .top-feature .list-card.-l2 .card__tit {
    margin-top: 0;
  }

  .top-trouble {
    padding: 90px 0 120px;
  }

  .top-trouble .wrap-contents {
    padding: 0;
  }

  .top-trouble .body-im img {
    width: 380px;
  }

  .top-trouble .list-card {
    padding-top: 10px;
  }

  .top-sport .block-head {
    padding: 0;
  }

  .top-sport .block-head__ct__te p {
    font-size: 1.0625em;
    line-height: 30px;
  }

  .top-sport .list-card {
    grid-gap: 20px;
  }

  .top-sport .list-card .card__te .jp {
    font-size: 1.625em;
  }

  .top-sport .list-card .card__te .en {
    font-size: 1.0625em;
  }

  .top-treatment {
    padding: 58px 0 120px;
  }

  .top-treatment .list-card .card .picture img {
    height: 100%;
  }

  .top-treatment .list-card .card .picture .title .jp {
    font-size: 2.25em;
  }

  .top-treatment .list-card .card .picture .title .en {
    font-size: 1.0625em;
  }

  .top-treatment .list-card .card .c-te {
    padding: 30px;
  }

  .top-treatment .kazari {
    bottom: -400px;
    left: 20px;
  }

  .top-treatment .kazari-2 {
    top: -280px;
    right: 20px;
  }

  .top-clinic .wrap-contents {
    padding: 0;
  }

  .top-clinic__info {
    padding-right: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .top-clinic__map {
    padding: 0;
  }

  .top-clinic__map .map-banner {
    padding-right: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .top-mv__text .t-tit {
    font-size: 2.5em;
    line-height: 1.5;
  }

  .top-mv__text .t-text {
    font-size: 1.375em;
    line-height: 2;
  }

  .top-mv .coronabox {
    width: 320px;
    height: 100px;
  }

  .top-mv .coronabox__im img {
    width: 48px;
  }

  .top-mv .coronabox__te a {
    font-size: 0.9375em;
  }

  .top-mv .coronabox__io {
    width: 30px;
    height: 30px;
  }

  .top-mv .coronabox__io i {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  .top-mv .coronabox__io:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .top-news .block-news__head .re-btn {
    width: calc(220 * 100% / 464);
  }

  .top-news .block-news__litem {
    margin-top: 30px;
  }

  .top-news .block-news__litem .idx_new_list .date_new {
    font-size: 1.125em;
  }

  .top-news .block-news__litem .idx_new_list .news_txt {
    font-size: 1em;
  }

  .top-message .block-ct {
    padding: 0 30px 0 0;
  }

  .top-message .block-ct__te {
    font-size: 0.9375em;
    line-height: 30px;
  }

  .top-message .block-im {
    margin-top: 0;
  }

  .top-trouble-2 .block-item .block-ct__te {
    line-height: 32px;
  }

  .top-feature {
    padding: 30px 0 200px;
  }

  .top-feature .list-card {
    grid-row-gap: 100px;
  }

  .top-feature .list-card .card__im .num {
    font-size: 6.66667em;
    top: -40px;
    left: 20px;
  }

  .top-feature .list-card .card__tit {
    margin-top: 40px;
  }

  .top-feature .list-card .card__tit p {
    font-size: 1.625em;
    line-height: 45px;
  }

  .top-feature .list-card .card__te {
    margin-top: 10px;
  }

  .top-feature .list-card .card__te p {
    font-size: 1em;
    line-height: 32px;
  }

  .top-feature .list-card-2 .card__ct__tit .num {
    font-size: 6.6875em;
    line-height: .8;
  }

  .top-feature .list-card-2 .card__ct__tit .tit {
    font-size: 1.625em;
  }

  .top-feature .list-card-2 .card.-no1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top-feature .list-card-2 .card.-no1 .card__im .picture {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .top-feature .list-card-2 .card.-no1 .card__ct {
    width: 100%;
    margin-top: 50px !important;
  }

  .top-feature .list-card.-l2 .card .card__im .picture {
    width: 400px;
  }

  .top-trouble .body-im img {
    width: 330px;
  }

  .top-trouble .list-card .card {
    padding: 23px 30px;
  }

  .top-trouble .list-card .card .jp {
    font-size: 1.25em;
  }

  .top-trouble .list-card .card .en {
    font-size: 0.875em;
  }

  .top-sport .block-head__ct__te p {
    font-size: 1em;
    line-height: 30px;
  }

  .top-treatment .block-tsub p {
    font-size: 1.5625em;
  }

  .top-treatment .list-card .card .c-te p {
    font-size: 1em;
    line-height: 36px;
  }

  .top-clinic {
    padding: 120px 0;
  }

  .top-clinic__info table tr td {
    font-size: 1.0625em;
    padding: 0 0 30px 0;
  }

  .top-clinic__info table tr td:first-child {
    width: 80px;
  }

  .top-clinic__map {
    padding: 0;
  }
}

@media only screen and (max-width: 900px) {
  .top-mv__text .t-tit {
    font-size: 2.25em;
  }

  .top-mv__text .t-text {
    font-size: 1.25em;
  }

  .top-news .block-news {
    padding: 50px 20px;
  }

  .top-news .block-news__head .re-btn {
    width: calc(210 * 100% / 464);
  }

  .top-message {
    padding: 150px 0 120px;
  }

  .top-message .block-ct__te {
    line-height: 26px;
    margin-top: 20px;
  }

  .top-message .block-ct .re-btn {
    margin-top: 30px;
  }

  .top-trouble-2 .list-cus {
    margin-top: 50px;
  }

  .top-trouble-2 .block-item .block-ct__tit .tit {
    margin-left: 15px !important;
  }

  .top-trouble-2 .block-item .block-ct__tit .tit p {
    font-size: 1.25em;
  }

  .top-trouble-2 .block-item .block-ct__te {
    margin-top: 15px;
  }

  .top-trouble-2 .block-item .block-ct__te p {
    font-size: 0.9375em;
    line-height: 30px;
  }

  .top-feature .list-card .card__tit {
    margin-top: 40px;
  }

  .top-feature .list-card .card__tit p {
    font-size: 1.375em;
    line-height: 38px;
  }

  .top-trouble .body-im img {
    width: 300px;
  }

  .top-trouble .list-card {
    padding-top: 5px;
  }

  .top-trouble .list-card .card {
    padding: 20px 30px;
  }

  .top-trouble .list-card .card .jp {
    font-size: 1.125em;
  }

  .top-trouble .list-card .card .en {
    font-size: 0.8125em;
  }

  .top-treatment .list-card .card .picture .title .jp {
    font-size: 1.75em;
  }

  .top-treatment .list-card .card .picture .title .en {
    font-size: 1em;
  }

  .top-clinic .wrap-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top-clinic__info {
    width: 100%;
  }

  .top-clinic__info table tr span br {
    display: none;
  }

  .top-clinic__time {
    width: 100%;
    margin-top: 60px;
  }
}

/*************************************************************************/
/*     		 END BREAKPOINT 1399PX ---->769PX FOR PC + TABLET 			 */
/*************************************************************************/
/*
*
*
*
*
*
*
*
*
*
*
*/
/*************************************************************************/
/*     			  STRAT BREAKPOINT 768PX ---->320PX FOR SP  		     */
/*************************************************************************/
@media only screen and (max-width: 768px) {
  .fake-menu {
    height: 60px;
  }

  .top-mv {
    margin-top: 60px;
    --hsize: calc(100vh - 60px);
    height: var(--hsize);
  }

  .top-mv .wrap {
    height: 100%;
  }

  .top-mv__text {
    padding: 0 30px;
  }

  .top-mv__text .t-tit {
    font-size: 2.125em;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .top-mv__text .t-text {
    font-size: 1.125em;
    line-height: 1.8;
  }

  .top-mv__text .t-text br {
    display: none;
  }

  .top-mv .coronabox {
    width: 257px;
    height: 75px;
    bottom: 85px;
  }

  .top-mv .coronabox__im img {
    width: 30px;
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }

  .top-mv .coronabox__te {
    margin-left: 10px;
  }

  .top-mv .coronabox__te a {
    font-size: 0.875em;
    line-height: 18px;
  }

  .top-mv .coronabox__io {
    width: 25px;
    height: 25px;
    top: -8px;
    right: -8px;
  }

  .top-mv .coronabox__io i {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  .top-mv .top-scroll {
    bottom: 0;
    height: 50px;
  }

  .top-mv .top-scroll i {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }

  .top-mv .top-scroll:hover {
    bottom: 0;
  }

  .top-news {
    padding: 30px 0 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top-news .block-news {
    padding: 40px 20px;
    width: 100%;
    top: 30px;
  }

  .top-news .block-news__head .re-btn {
    width: calc(220 * 100% / 464) !important;
  }

  .top-news .block-news__litem {
    margin-top: 10px;
  }

  .top-news .block-news__litem .idx_new_list li {
    padding: 12px 30px 12px 0;
  }

  .top-news .block-news__litem .idx_new_list p {
    line-height: 2;
  }

  .top-news .block-news__litem .idx_new_list .date_new {
    font-size: 1.125em;
  }

  .top-news .block-news__litem .idx_new_list .news_txt {
    font-size: 1em;
  }

  .top-news .block-news:nth-child(2) {
    margin-top: 30px;
  }

  .top-message {
    padding: 175px 0 60px;
    position: relative;
  }

  .top-message .wrap-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .top-message .block-ct {
    width: 100%;
    padding: 0;
  }

  .top-message .block-ct__te {
    font-size: 0.9375em;
    line-height: 30px;
    margin-top: 60px;
  }

  .top-message .block-ct .tit-sec {
    position: absolute;
    top: 70px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .top-message .block-ct .tit-sec .en {
    text-indent: 0;
  }

  .top-message .block-ct .re-btn {
    margin: 0 auto;
    margin-top: 30px;
  }

  .top-message .block-im {
    width: 100%;
    margin-top: 20px;
  }

  .top-message .block-im .im1 {
    border-radius: 5px;
  }

  .top-message .block-im .im2 {
    bottom: calc(-40 * 100% / 620);
    right: calc(-20 * 100% / 654);
  }

  .top-message .block-banner {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .top-trouble-2 {
    padding: 60px 0 120px;
    background-size: 100%;
    background-position: bottom -20px center;
  }

  .top-trouble-2 .list-block {
    margin-top: 40px;
    grid-row-gap: 60px;
    grid-template-columns: repeat(1, 1fr);
  }

  .top-trouble-2 .list-cus {
    margin-top: 60px;
  }

  .top-trouble-2 .block-item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .top-trouble-2 .block-item .block-im {
    width: 100% !important;
  }

  .top-trouble-2 .block-item .block-im .picture {
    padding: 0 40px;
    margin-top: 0;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .top-trouble-2 .block-item .block-ct {
    margin-top: 25px !important;
    width: 100% !important;
  }

  .top-trouble-2 .block-item .block-ct__tit .num p {
    line-height: 1;
    font-size: 3.4375em;
  }

  .top-trouble-2 .block-item .block-ct__tit .num p::before {
    font-size: 13px;
    line-height: 1.5;
  }

  .top-trouble-2 .block-item .block-ct__tit .tit {
    margin-left: 15px !important;
  }

  .top-trouble-2 .block-item .block-ct__tit .tit p {
    font-size: 1.25em;
  }

  .top-trouble-2 .block-item .block-ct__tit .tit br {
    display: block;
  }

  .top-trouble-2 .block-item .block-ct__te {
    margin-top: 10px;
  }

  .top-trouble-2 .block-item .block-ct__te p {
    font-size: 0.9375em;
    line-height: 28px;
  }

  .top-feature {
    padding: 30px 0 120px;
    background-size: 100%;
    background-position: bottom center;
  }

  .top-feature .tit-sec {
    position: relative;
    z-index: 2;
  }

  .top-feature .list-card {
    margin-top: 40px;
    grid-column-gap: 15px;
    grid-row-gap: 60px;
  }

  .top-feature .list-card .card__im img {
    border-radius: 5px;
  }

  .top-feature .list-card .card__im .num {
    font-size: 4.66667em;
    top: -25px;
    left: 15px;
  }

  .top-feature .list-card .card__tit {
    margin-top: 20px;
  }

  .top-feature .list-card .card__tit br {
    display: none;
  }

  .top-feature .list-card .card__tit p {
    font-size: 1.375em;
    line-height: 30px;
  }

  .top-feature .list-card .card__te {
    margin-top: 15px;
  }

  .top-feature .list-card .card__te p {
    font-size: 1em;
    line-height: 28px;
  }

  .top-feature .list-card-2 {
    margin-top: 80px;
  }

  .top-feature .list-card-2 .card {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .top-feature .list-card-2 .card__im {
    margin-top: 0;
    padding: 0 20px;
  }

  .top-feature .list-card-2 .card__im .picture {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .top-feature .list-card-2 .card__ct {
    width: 100%;
    margin-top: 20px !important;
    padding: 0 20px !important;
  }

  .top-feature .list-card-2 .card__ct__tit .num {
    font-size: 4.6875em;
  }

  .top-feature .list-card-2 .card__ct__tit .tit {
    font-size: 1.375em;
  }

  .top-feature .list-card-2 .card__ct__te {
    margin-top: 10px;
  }

  .top-feature .list-card-2 .card__ct__te p {
    font-size: 1em;
    line-height: 28px;
  }

  .top-feature .list-card-2 .card__ct__li .list li {
    font-size: 1em;
    line-height: 28px;
  }

  .top-feature .list-card-2 .card__ct__li .list .arrow {
    padding: 0 10px !important;
  }

  .top-feature .list-card-2 .card__ct__li .list.-l2 li {
    line-height: 24px;
  }

  .top-feature .list-card-2 .card__ct__no {
    margin-top: 20px;
  }

  .top-feature .list-card-2 .card__ct__no p {
    line-height: 24px;
  }

  .top-feature .list-card-2 .card.-no1 .picture {
    max-width: 497px;
  }

  .top-feature .list-card-2 .card.-no1 .card__ct {
    margin-top: 20px !important;
  }

  .top-feature .list-card-2 .card.-no2 .picture {
    max-width: 490px;
  }

  .top-feature .list-card-2 .card:not(:first-child) {
    margin-top: 40px;
  }

  .top-feature .list-card.-l2 {
    margin-top: 60px;
  }

  .top-feature .list-card.-l2 .card .card__im {
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .top-feature .list-card.-l2 .card .card__im .picture {
    width: 350px;
  }

  .top-trouble {
    padding: 60px 0;
  }

  .top-trouble .wrap-contents {
    margin-top: 40px;
  }

  .top-trouble .body-im {
    z-index: unset;
    width: 400px;
    height: 390px;
    margin: 0 auto;
    position: relative;
  }

  .top-trouble .body-im img {
    width: 300px;
    height: auto;
  }

  .top-trouble .list-card {
    padding-top: 30px;
    width: 100%;
  }

  .top-trouble .list-card .card {
    width: calc(100% - 5px);
  }

  .top-trouble .list-card .card i {
    right: 20px;
    -webkit-transform: scale(0.8) translateY(-50%);
    transform: scale(0.8) translateY(-50%);
  }

  .top-trouble .list-card .card::before {
    content: none;
  }

  .top-sport {
    padding: 60px 0 240px;
    position: relative;
    background-size: 100%;
    background-position: bottom -20px center;
  }

  .top-sport .block-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top-sport .block-head__ct {
    width: 100%;
    margin-top: 30px;
  }

  .top-sport .block-head__ct__te p {
    font-size: 1em;
    line-height: 30px;
  }

  .top-sport .block-head__ct .re-btn {
    margin-top: 45px;
  }

  .top-sport .block-head .re-btn {
    margin-top: 0;
    position: absolute;
    bottom: 140px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .top-sport .list-card {
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }

  .top-sport .list-card .card {
    --br: 5px;
  }

  .top-sport .list-card .card__te .jp {
    font-size: 1.125em;
  }

  .top-sport .list-card .card__te .en {
    font-size: 0.75em;
  }

  .top-treatment {
    padding: 60px 0;
  }

  .top-treatment .block-tsub {
    padding: 0;
    margin-top: 30px;
  }

  .top-treatment .block-tsub p {
    font-size: 1.5em;
  }

  .top-treatment .block-tsub br {
    display: none;
  }

  .top-treatment .list-card {
    margin-top: 40px;
  }

  .top-treatment .list-card .card .picture .title .jp {
    font-size: 1.5em;
  }

  .top-treatment .list-card .card .picture .title .en {
    font-size: 0.875em;
  }

  .top-treatment .list-card .card .c-te {
    padding: 20px;
  }

  .top-treatment .list-card .card .c-te p {
    font-size: 0.9375em;
    line-height: 28px;
  }

  .top-treatment .kazari {
    bottom: -220px;
    left: 20px;
  }

  .top-treatment .kazari-2 {
    top: -150px;
    right: 20px;
  }

  .top-clinic {
    padding: 60px 0;
  }

  .top-clinic .tit-sec .en {
    padding-bottom: 5px;
  }

  .top-clinic .wrap-contents {
    margin-top: 40px;
  }

  .top-clinic__info {
    padding: 0;
  }

  .top-clinic__info table tr td {
    font-size: 1.0625em;
    padding: 0 0 15px 0;
    line-height: 26px;
  }

  .top-clinic__time {
    margin-top: 30px;
  }

  .top-clinic__map {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top-clinic__map .map-banner {
    width: 100%;
    padding: 0;
  }

  .top-clinic__map .map-block {
    width: 100%;
    margin-top: 40px;
  }

  .top-clinic__map .map-block iframe {
    border: 1px solid #dbdbdb;
    height: 230px;
  }

  .top-clinic__grbtn {
    grid-gap: 10px;
    margin-top: 40px;
  }

  .top-clinic__grbtn .re-btn {
    width: 100% !important;
  }
}

@media only screen and (max-width: 540px) {
  .top-message .block-ct__te {
    margin-top: 40px;
  }

  .top-feature {
    padding: 30px 0 100px;
  }

  .top-feature .list-card {
    grid-row-gap: 60px;
    grid-template-columns: repeat(1, 1fr);
  }

  .top-feature .list-card .card:nth-child(even) {
    top: 0;
  }

  .top-feature .list-card .card:nth-child(1) .kazari {
    --size: 430;
    top: calc(-140 * 100% / var(--hs));
  }

  .top-feature .list-card-2 {
    margin-top: 40px;
  }

  .top-trouble .body-im {
    width: 300px;
    height: 260px;
  }

  .top-feature .list-card.-l2 .card .card__im {
    float: unset;
    margin-right: 0;
  }

  .top-feature .list-card.-l2 .card .card__im .picture {
    width: 100%;
  }

  .top-trouble .body-im img {
    width: 200px;
  }

  .top-trouble .list-card .card {
    padding: 15px 20px;
  }

  .top-sport {
    padding: 60px 0 200px;
  }

  .top-sport .block-head .re-btn {
    bottom: 100px;
  }

  .top-sport .list-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-treatment .list-card .card {
    display: block;
  }

  .top-treatment .list-card .card .picture {
    width: 100%;
    height: 250px;
  }

  .top-treatment .list-card .card .picture .title .jp {
    font-size: 1.75em;
  }

  .top-treatment .list-card .card .picture .title .en {
    font-size: 1em;
  }

  .top-treatment .list-card .card .picture img {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-radius: 10px;
  }

  .top-treatment .list-card .card .c-te {
    width: 100%;
    padding: 20px 20px 40px;
  }

  .top-treatment .list-card .card .c-te p {
    font-size: 1em;
  }

  .top-treatment .kazari {
    bottom: -200px;
  }

  .top-treatment .kazari-2 {
    top: -120px;
  }

  .top-clinic__info table tr td {
    font-size: 1em;
    padding: 0 0 12px 0;
    line-height: 23px;
  }

  .top-clinic__info table tr td:first-child {
    width: 70px;
  }

  .top-clinic__info table tr span br {
    display: block;
  }

  .top-clinic__grbtn {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 414px) {
  .top-message .block-banner {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }

  .top-trouble-2 {
    padding: 60px 0 80px;
  }

  .top-trouble-2 .block-item .block-im .picture {
    padding: 0 20px;
  }

  .top-trouble-2 .block-item .block-ct .tit br {
    display: block;
  }

  .top-trouble-2 .block-item.-no1 .block-ct .tit br {
    display: block;
  }

  .top-trouble .list-card .card {
    padding: 15px;
  }

  .top-trouble .list-card .card i {
    right: 15px;
  }

  .top-trouble .list-card .card .jp {
    font-size: 1.0625em;
  }

  .top-trouble .list-card .card .en {
    font-size: 0.75em;
  }

  .top-treatment .kazari {
    bottom: -160px;
  }

  .top-clinic__grbtn {
    padding: 0 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 360px) {
  .top-trouble .body-im {
    width: 280px;
    height: 240px;
  }

  .top-trouble .body-im img {
    width: 180px;
  }

  .top-trouble .list-card {
    display: block;
  }

  .top-trouble .list-card .card {
    padding: 15px 20px;
    width: 100%;
    margin-bottom: 10px;
  }

  .top-trouble .list-card .card i {
    right: 20px;
  }

  .top-sport .list-card {
    grid-template-columns: repeat(1, 1fr);
  }

  .top-clinic__grbtn {
    padding: 0;
  }
}

/*************************************************************************/
/*     			   END BREAKPOINT 768PX ---->320PX FOR SP  				 */
/*************************************************************************/
/* END TOP PAGE
-------------------------------------------------------------------------*/
.foot-contact {
  position: relative;
}

.foot-contact__banner {
  padding-top: 37px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.foot-contact__banner .tit-sec .en {
  font-size: 6.66667em;
  position: relative;
}

.foot-contact__banner .tit-sec .en::before {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background-color: #ffd966;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.foot-contact__banner .list-btn {
  margin-top: 41px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 28px;
  padding: 0 109px;
}

.foot-contact__banner .list-btn .btn {
  width: 100%;
  height: auto;
  padding: 34px 0;
  border-radius: 10px;
  background-color: white;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
}

.foot-contact__banner .list-btn .btn.-phone img {
  width: calc(303 * 100% / 519);
  -webkit-transform: translateX(-27px);
  transform: translateX(-27px);
}

.foot-contact__banner .list-btn .btn.-mail img {
  width: calc(369 * 100% / 519);
  -webkit-transform: translateX(-6px);
  transform: translateX(-6px);
}

.foot-contact__banner .list-btn .btn:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.foot-contact__banner .list-btn .btn .picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.foot-contents {
  padding: 82px 80px 51px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.foot-contents .block-info {
  width: 49%;
}

.foot-contents .block-info__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.foot-contents .block-info__logo img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.foot-contents .block-info__logo .l-1 {
  max-width: 140px;
}

.foot-contents .block-info__logo .l-2 {
  max-width: 384px;
}

.foot-contents .block-info__logo .addr {
  font-size: 1.25em;
  line-height: 32px;
  letter-spacing: .15em;
  color: #5c5c5c;
  font-weight: 500;
  margin-top: 19px;
}

.foot-contents .block-info__logo .addr br {
  display: none;
}

.foot-contents .block-info__map {
  margin-top: 50px;
}

.foot-contents .block-info__map iframe {
  border-radius: 10px;
  border: 1px solid #dbdbdb;
  height: 230px;
}

.foot-contents .block-info__time {
  margin-top: 36px;
}

.foot-contents .block-menu {
  width: 49%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 50px;
}

.foot-contents .block-menu__litem:not(:first-child) {
  margin-top: 40px;
}

.foot-contents .block-menu__litem:not(:first-child) .block-menu__litem__tit p {
  text-indent: .24em;
}

.foot-contents .block-menu__litem__tit p {
  font-size: 3.125em;
  font-family: var(--font-nori);
  letter-spacing: 0;
  line-height: 1;
  color: var(--col-blue);
}

.foot-contents .block-menu__litem__item {
  margin-top: 27px;
  padding-left: 9px;
}

.foot-contents .block-menu__litem__item ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
}

.foot-contents .block-menu__litem__item ul li {
  padding-left: 10px;
  position: relative;
  line-height: 1;
  margin-bottom: 25px;
}

.foot-contents .block-menu__litem__item ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--col-blue);
}

.foot-contents .block-menu__litem__item ul li a {
  font-size: 1em;
  line-height: 1.4;
  letter-spacing: .05em;
  font-weight: 500;
  color: var(--col-black);
  text-decoration: none;
  display: block;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
}

.foot-contents .block-menu__litem__item ul li a:hover {
  color: var(--col-blue);
}

.foot-copyrighting {
  padding: 20px 0 18px;
  background-color: #265992;
  position: relative;
}

.foot-copyrighting .container-md {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.foot-copyrighting .container-md img {
  width: 119px;
}

.foot-copyrighting .container-md br {
  display: none;
}

.foot-copyrighting .container-md p {
  font-size: 0.875em;
  letter-spacing: .05em;
  line-height: 1.5;
  color: white;
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}

.foot-copyrighting .container-md p::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background-color: white;
}

.foot-copyrighting .pagetop {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: -40px;
  right: 60px;
  -webkit-box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
}

.foot-copyrighting .pagetop i {
  color: var(--col-blue);
  --ggs: 1.2;
  -webkit-transition: inherit;
  transition: inherit;
}

.foot-copyrighting .pagetop:hover {
  -webkit-box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.2);
}

.foot-copyrighting .pagetop:hover i {
  margin-top: -5px;
}

@media only screen and (max-width: 1280px) {
  .foot-contact__banner .tit-sec .en {
    font-size: 5.625em;
  }

  .foot-contact__banner .list-btn {
    padding: 0 50px;
  }

  .foot-contact__banner .list-btn .btn img {
    -webkit-transform: translate(0) !important;
    transform: translate(0) !important;
  }

  .foot-contents {
    padding: 82px 0 120px;
  }

  .foot-contents .block-info__logo {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .foot-contents .block-info__logo .wrap {
    margin-left: 10px;
  }

  .foot-contents .block-info__logo .l-1 {
    max-width: 110px;
  }

  .foot-contents .block-info__logo .l-2 {
    max-width: 300px;
  }

  .foot-contents .block-info__logo .addr {
    font-size: 1.125em;
  }

  .foot-contents .block-menu {
    padding-left: 0;
  }

  .foot-contents .block-menu__litem__item ul {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}

@media only screen and (max-width: 1024px) {
  .foot-contact__banner .tit-sec .en {
    font-size: 5em;
  }

  .foot-contact__banner .list-btn {
    padding: 0;
  }

  .foot-contact__banner .list-btn .btn {
    padding: 28px 0;
  }

  .foot-contents .block-info__logo .l-1 {
    max-width: 98px;
  }

  .foot-contents .block-info__logo .l-2 {
    max-width: 280px;
  }

  .foot-contents .block-info__logo .addr {
    font-size: 1em;
    line-height: 1.2;
  }

  .foot-contents .block-menu__litem__item ul li {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 900px) {
  .foot-contents .block-info__map {
    margin-top: 30px;
  }

  .foot-contents .block-info__time {
    margin-top: 30px;
  }

  .foot-contents .block-menu__litem__item ul li a {
    font-size: 0.875em;
  }

  .foot-copyrighting .pagetop {
    right: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .foot-contact__banner {
    padding-top: 40px;
  }

  .foot-contact__banner .tit-sec .en {
    font-size: 4.375em;
  }

  .foot-contact__banner .tit-sec .en::before {
    width: 60px;
    height: 2px;
  }

  .foot-contact__banner .list-btn {
    grid-gap: 15px;
    margin-top: 40px;
  }

  .foot-contact__banner .list-btn .btn {
    padding: 25px 0;
  }

  .foot-contact__banner .list-btn .btn.-phone img {
    width: calc(303 * 100% / 450);
  }

  .foot-contact__banner .list-btn .btn.-mail img {
    width: calc(369 * 100% / 504);
  }

  .foot-contents {
    padding: 60px 0;
  }

  .foot-contents .block-info {
    width: 100%;
  }

  .foot-contents .block-info__logo .l-1 {
    max-width: 80px;
  }

  .foot-contents .block-info__logo .l-2 {
    max-width: 250px;
  }

  .foot-contents .block-info__logo .addr {
    font-size: 1.0625em;
    line-height: 1.2;
    margin-top: 10px;
  }

  .foot-contents .block-info__map iframe {
    height: 200px;
    border-radius: 5px;
  }

  .foot-contents .block-menu {
    display: none;
  }

  .foot-copyrighting {
    padding: 12px 0 72px;
  }

  .foot-copyrighting .container-md img {
    width: 85px;
  }

  .foot-copyrighting .container-md p {
    font-size: 0.625em;
    line-height: 1.5;
    margin-left: 10px;
    padding-left: 10px;
  }

  .foot-copyrighting .container-md p::before {
    height: 75%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .foot-copyrighting .pagetop {
    width: 55px;
    height: 55px;
    top: -30px;
    right: 20px;
  }

  .foot-copyrighting .pagetop i {
    --ggs: .8;
  }

  .foot-copyrighting .pagetop:hover i {
    margin-top: 0;
  }
}

@media only screen and (max-width: 540px) {
  .foot-contact__banner .tit-sec .en {
    font-size: 3.75em;
  }

  .foot-contact__banner .list-btn {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
    margin-top: 30px;
    padding: 0 50px;
  }

  .foot-contact__banner .list-btn .btn.-phone img {
    width: calc(303 * 100% / 519);
  }

  .foot-copyrighting .container-md br {
    display: block;
  }
}

@media only screen and (max-width: 414px) {
  .foot-contact__banner .list-btn {
    padding: 0;
  }

  .foot-contact__banner .list-btn .btn .picture {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .foot-contact__banner .list-btn .btn .picture img {
    -webkit-transform: translateX(25px) !important;
    transform: translateX(25px) !important;
  }

  .foot-contents .block-info__logo .l-1 {
    max-width: 90px;
  }

  .foot-contents .block-info__logo .addr {
    margin-top: 8px;
  }

  .foot-contents .block-info__logo .addr br {
    display: block;
  }
}

@media only screen and (max-width: 360px) {
  .foot-contents .block-info__logo .l-1 {
    max-width: 80px;
  }

  .foot-copyrighting .pagetop {
    right: 10px;
  }
}

.gallery {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: auto;
  --size: 370px;
}

.gallery img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.gallery__barrier {
  overflow: hidden;
  position: relative;
}

.gallery__barrier__lane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: calc(var(--size) * 20);
}

.gallery__barrier__lane__im {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: var(--size);
  -webkit-animation: translateinfinite 70s linear infinite;
  animation: translateinfinite 70s linear infinite;
}

@-webkit-keyframes translateinfinite {
  100% {
    -webkit-transform: translateX(calc(var(--size) * -10));
    transform: translateX(calc(var(--size) * -10));
  }
}

@keyframes translateinfinite {
  100% {
    -webkit-transform: translateX(calc(var(--size) * -10));
    transform: translateX(calc(var(--size) * -10));
  }
}

@media only screen and (max-width: 1024px) {
  .gallery {
    --size: 340px;
  }
}

@media only screen and (max-width: 900px) {
  .gallery {
    --size: 310px;
  }
}

@media only screen and (max-width: 768px) {
  .gallery {
    --size: 260px;
  }
}

@media only screen and (max-width: 540px) {
  .gallery {
    --size: 340px;
  }
}

.gg-arrow-up {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  -webkit-transform: scale(var(--ggs, 1));
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
}

.gg-arrow-up::after,
.gg-arrow-up::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 4px;
}

.gg-arrow-up::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-left: 2px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 7px;
}

.gg-arrow-up::before {
  width: 2px;
  height: 16px;
  left: 10px;
  background: currentColor;
}

.gg-arrow-down {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  -webkit-transform: scale(var(--ggs, 1));
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
}

.gg-arrow-down::after,
.gg-arrow-down::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  bottom: 4px;
}

.gg-arrow-down::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid;
  border-left: 2px solid;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 7px;
}

.gg-arrow-down::before {
  width: 2px;
  height: 16px;
  left: 10px;
  background: currentColor;
}

.gg-arrow-right {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  -webkit-transform: scale(var(--ggs, 1));
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
}

.gg-arrow-right::after,
.gg-arrow-right::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  right: 3px;
}

.gg-arrow-right::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 7px;
}

.gg-arrow-right::before {
  width: 16px;
  height: 2px;
  bottom: 10px;
  background: currentColor;
}

.gg-arrow-left {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  -webkit-transform: scale(var(--ggs, 1));
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
}

.gg-arrow-left::after,
.gg-arrow-left::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
}

.gg-arrow-left::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid;
  border-left: 2px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 7px;
}

.gg-arrow-left::before {
  width: 16px;
  height: 2px;
  bottom: 10px;
  background: currentColor;
}

.gg-close {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  -webkit-transform: scale(var(--ggs, 1));
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 40px;
}

.gg-close::after,
.gg-close::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 5px;
  top: 8px;
  left: 1px;
}

.gg-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.arw-io::before {
  content: '';
  display: block;
  position: absolute;
  right: 30px;
  height: 5px;
  width: 5px;
  border: 1px solid;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

.navi-btn {
  position: fixed;
  z-index: 21;
  top: 220px;
  right: -10px;
}

.navi-btn .btn {
  width: 90px;
  height: 90px;
  padding-right: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: fadeInRight 1s;
  animation: fadeInRight 1s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

.navi-btn .btn__io {
  width: 25px;
  height: 25px;
}

.navi-btn .btn__text {
  margin-top: 10px;
}

.navi-btn .btn__text p {
  font-size: 0.8125em;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
  color: #fff;
}

.navi-btn .btn.-accsess {
  background-color: #4e9ae0;
  -webkit-animation-delay: 4.3s;
  animation-delay: 4.3s;
}

.navi-btn .btn.-accsess .btn__io {
  width: 26px;
  height: 31px;
}

.navi-btn .btn.-phone {
  background-color: #4088cb;
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

.navi-btn .btn.-phone .btn__io {
  width: 24px;
  height: 24px;
}

.navi-btn .btn.-mail {
  background-color: #2e75b6;
  -webkit-animation-delay: 4.7s;
  animation-delay: 4.7s;
}

.navi-btn .btn.-mail .btn__io {
  width: 29px;
  height: 22px;
}

.navi-btn .btn.-line {
  background-color: #2dbc7a;
  -webkit-animation-delay: 4.9s;
  animation-delay: 4.9s;
}

.navi-btn .btn.-line .btn__io {
  width: 39px;
  height: 37px;
}

.navi-btn .btn.-line .btn__text {
  display: none;
}

.navi-btn .btn:hover {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

@media only screen and (max-width: 1024px) {
  .navi-btn .btn {
    width: 65px;
    height: 65px;
  }

  .navi-btn .btn__text {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .navi-btn {
    top: unset;
    right: 0;
    bottom: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .navi-btn .btn {
    width: calc(100% / 4);
    height: 60px;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-animation: fadeInUp 1s;
    animation: fadeInUp 1s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
  }

  .navi-btn .btn__text {
    display: block !important;
    margin-top: 6px;
  }

  .navi-btn .btn__text p {
    font-size: 0.875em;
    letter-spacing: .05em;
  }

  .navi-btn .btn.-accsess .btn__io {
    width: 15px;
    height: 17px;
  }

  .navi-btn .btn.-phone .btn__io {
    width: 15px;
    height: 15px;
  }

  .navi-btn .btn.-mail .btn__io {
    width: 17px;
    height: 14px;
  }

  .navi-btn .btn.-line .btn__io {
    width: 18px;
    height: 17px;
  }

  .navi-btn .btn:hover {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#splash_logo img {
  width: 500px;
}

#splash {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #c1dcf3;
  text-align: center;
  color: #fff;
}

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

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media only screen and (max-width: 768px) {
  #splash_logo img {
    width: 230px;
  }
}




/* ──────────────────── article ──────────────────── */
/* 追加 */
img {
  display: block;
  width: 100%;
  height: auto;
}

#mainContent.media {
  margin-top: 90px;
  padding-bottom: 160px;
}

.media .article.inner {
  max-width: 950px;
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 60px;
  line-height: 1.6;
  background: #fff;
  font-size: 16px;
}

.article.inner,
.article.inner * {
  box-sizing: border-box;
}

@media only screen and (min-width: 1170px) {
  .under .topic_path {
    padding: 6px 50px;
  }

  .media .article.inner {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.inner a:not(.topic_path a) {
  color: #1A0DAB;
  text-decoration: underline;
  transition: .4s;
  word-break: break-all;
}

.article.inner a:hover {
  opacity: .6;
}

.thumbnail {
  margin-bottom: 10px;
}

.thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.article_date {
  text-align: right;
  font-size: 14px;
  margin-bottom: 30px;
}

.pr {
  display: inline-block;
  padding: 2px 4px;
  margin-right: 10px;
  font-weight: bold;
  border: 1px solid #333;
}

.article textarea {
  width: 100%;
  height: 150px;
}

.obesity {
  font-size: 19px;
}

/* パーツ */
.media h1 {
  font-size: 32px;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  line-height: 1.4;
}

.media h1::after {
  display: none;
}

.media h2 {
  position: relative;
  font-weight: 500;
  font-size: 28px;
  color: #2e75b6;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #e0e8ee;
  padding-bottom: 12px;
  margin: 60px 0 30px;
  line-height: 1.4;
  text-align-last: left;
}

.media h2::after {
  display: none;
}

.media h3 {
  position: relative;
  font-weight: 500;
  font-size: 24px;
  color: #2e75b6;
  padding: 0 0 0 16px;
  margin: 40px 0 20px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  border-left: 4px solid #ffd966;
  border-bottom: none;
}

.media h4 {
  margin: 30px 0 14px;
  font-size: 20px;
  color: #2e75b6;
}

.media h4::before {
  left: 2px;
}

.media h2+h3,
.media h3+h4 {
  margin-top: 0;
}

.media p {
  margin-bottom: 20px;
}


.ttl_sub {
  position: relative;
  font-size: 20px;
  color: #2e75b6;
  font-weight: bold;
  padding-left: 1.5em;
  margin: 26px 0 14px;
}

.ttl_sub::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: .36em;
  width: .6em;
  aspect-ratio: 1 / 1;
  border: 3px solid #ffd966;
}

.ttl_check {
  position: relative;
  font-size: 20px;
  color: #2e75b6;
  font-weight: bold;
  padding-left: 1.5em;
  margin: 26px 0 14px;
}

.ttl_check::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: .3em;
  width: 1em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: url(../img/check-icon.png) center center / contain no-repeat;
}


.ttl_num,
.box-ttl {
  position: relative;
  font-size: 20px;
  color: #2e75b6;
  font-weight: bold;
  padding-left: 2.4em;
  margin: 26px 0 14px;
}

.num_c,
.num-c {
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8em;
  aspect-ratio: 1 / 1;
  background: #ffd966;
  color: #fff;
  border-radius: 999px;
}


.ttl_sub.black,
.ttl_check.black,
.ttl_num.black {
  color: #292929;
}

#mainContent h2+.ttl_sub,
#mainContent h3+.ttl_sub,
#mainContent h4+.ttl_sub,
#mainContent h2+.ttl_check,
#mainContent h3+.ttl_check,
#mainContent h4+.ttl_check,
#mainContent h2+.ttl_num,
#mainContent h3+.ttl_num,
#mainContent h4+.ttl_num,
#mainContent h2+.box-ttl,
#mainContent h3+.box-ttl,
#mainContent h4+.box-ttl {
  margin-top: 0;
}


.color_y {
  color: #e2aa00;
  font-weight: bold;
}

.color_b {
  color: #2e75b6;
  font-weight: bold;
}

.text_min {
  display: inline-block;
  font-size: 13px;
  margin-bottom: 28px;
}

.article *:has(+.text_min) {
  margin-bottom: 4px;
}

p .text_min,
li .text_min {
  margin-bottom: 0;
}

.bold {
  font-weight: bold;
}

.marker {
  font-weight: bold;
  background: linear-gradient(transparent 70%, #ff9 70%);

}

.img_100 {
  margin-bottom: 26px;
}


.img_100 img {
  display: block;
  width: 100%;
  height: auto;
}

.table {
  width: 100%;
  margin-bottom: 26px;
  line-height: 1.4;
  text-align: center;
}

.table thead th {
  background: #c1dcf3;
}

.table tbody th {
  background: #f9f9f9;
}

.table th,
.table td {
  padding: 1em;
  border: 1px solid #a9a9a9;
}

.table tbody td:has(ul:not([class])),
.table tbody td:has(ol:not([class])),
.table tbody td:has(.check_list) {
  text-align-last: left;
}

.table tbody td ul:not([class]),
.table tbody td ol:not([class]),
.table tbody td .check_list {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.table tbody td:has(ul:not([class])) li,
.table tbody td:has(ol:not([class])) li,
.table tbody td:has(.check_list) li {
  width: fit-content;
}

.table th>:first-child,
.table td>:first-child {
  margin-top: 0;
}

#mainContent .table th>:last-child,
#mainContent .table td>:last-child {
  margin-bottom: 0;
}


.table a:has(img) {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.table a img {
  display: block;
  width: 100%;
  height: auto;
}

.table-logo {
  width: fit-content;
  margin: 0 auto 4px;
}

.box {
  margin-bottom: 26px;
  padding: 20px;
}

#mainContent .box>:first-child {
  margin-top: 0;
}


#mainContent .box>:last-child {
  margin-bottom: 0;
}

.textbox:not([data-bg="blue"]):not([data-bg="gray"]) {
  border: 2px solid #e0e8ee;
}


.article div[data-bg="blue"] {
  background: #e9f1f8;
}


.article div[data-bg="gray"] {
  background: #f9f9f9;
}

.article ul:not([class]),
.article ol:not([class]) {
  margin-bottom: 26px;
}

.article ul:not([class]) li {
  list-style-type: disc;
  margin-left: 1.4em;
}

.article ol:not([class]) li {
  list-style-type: decimal;
  margin-left: 1.4em;
}

.article ul:not([class]) li+li,
.article ol:not([class]) li+li,
.check_list li+li {
  margin-top: 6px;
}

.check_list {
  margin-bottom: 26px;
}

.check_list li {
  position: relative;
  padding-left: 1.4em;
}

.check_list>li::before {
  position: absolute;
  left: 0;
  top: 0.35em;
  content: '';
  font-weight: normal;
  font-style: normal;
  display: block;
  width: 1em;
  aspect-ratio: 1 / 1;
  background: url(../img/check-icon.png) center center / contain no-repeat;
}


.checkBox {
  position: relative;
  margin: 40px auto 20px;
  border: 2px solid#2e75b6;
  padding: 34px 30px 16px;
  width: fit-content;
  min-width: 70%;
  max-width: 100%;
}

.checkBox-title {
  position: absolute;
  line-height: 1.4;
  margin: 0 auto;
  width: 100%;
  color: #2e75b6;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkBox-title p {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  padding: 0 14px;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
}

.checkBox-title p::after {
  content: "";
  display: block;
  width: 1.2em;
  aspect-ratio: 1 / 1;
  background: url(../img/checkbox-icon.png) center center / contain no-repeat;
}

.checkBox-list {
  font-size: 17px;
  font-weight: bold;
}

.checkBox-list li {
  position: relative;
  padding-left: 2em;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid #cccac9;
  line-height: 1.5;
}

.checkBox-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0.3em;
  content: "";
  display: block;
  flex-shrink: 0;
  width: .8em;
  aspect-ratio: 1 / 1;
  border: solid 3px #cccac9;
}


.flexbox {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
  text-align: justify;
}

.flexbox img {
  width: 100%;
  max-width: 50%;
  height: auto;
}


#mainContent .flexbox_inner>:first-child {
  margin-top: 0;
}

#mainContent .flexbox_inner>:last-child {
  margin-bottom: 0;
}

.floatbox {
  margin-bottom: 26px;
  text-align: justify;
}

.floatbox::after {
  content: "";
  display: table;
  clear: both;
}

.floatbox .float_l {
  float: left;
  width: 100%;
  max-width: 50%;
  height: auto;
  margin: 0 16px 10px 0;
}

.floatbox .float_r {
  float: right;
  width: 100%;
  max-width: 50%;
  height: auto;
  margin: 0 0 10px 10px;
}

#mainContent .floatbox_inner>:first-child {
  margin-top: 0;
}

#mainContent .floatbox_inner>:last-child {
  margin-bottom: 0;
}


.arrow {
  width: fit-content;
  margin: 30px auto;
}

.arrow::before {
  content: '';
  display: block;
  vertical-align: middle;
  color: #292929;
  line-height: 1;
  width: 30px;
  height: 30px;
  border: 3px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.arrow_min {
  width: fit-content;
  margin: 15px auto;
}

.arrow_min::before {
  content: '';
  display: block;
  vertical-align: middle;
  color: #292929;
  line-height: 1;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.quotebox {
  position: relative;
  padding: 56px 20px 20px 24px;
  margin-bottom: 26px;
  border-left: 4px solid #c1dcf3;
  background: #f9f9f9;
  font-style: italic;
}

.quotebox::before {
  position: absolute;
  left: 24px;
  top: 12px;
  content: "";
  display: block;
  width: 34px;
  aspect-ratio: 1 / 1;
  background: url(../img/quote.png) center center / contain no-repeat;
}

#mainContent .quotebox>:first-child {
  margin-top: 0;
}

#mainContent .quotebox>:last-child {
  margin-bottom: 0;
}

.fukidashi {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding: .6em 1.6em;
  margin: 40px auto 30px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  background: #fff;
  border: 3px solid #2e75b6;
}

.fukidashi::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: skew(-25deg) translateX(-50%);
  content: '';
  height: 15px;
  width: 15px;
  border-right: 3px solid #2e75b6;
  background: #fff;
}

.matomebox {
  padding: 0;
  background: #fff4d5;
}

.matomebox_ttl {
  padding: 10px 12px;
  font-weight: bold;
  text-align: center;
  background: #265992;
  color: #fff;
  font-size: 18px;
}

.matomebox_inner {
  padding: 20px;
}

.matomebox_inner>:last-child {
  margin-bottom: 0;
}

.surveybox_ttl {
  font-weight: bold;
  margin-bottom: .8em;
  text-align: center;
  font-size: 18px;
}

.surveybox_list li {
  position: relative;
  padding-left: 1.4em;
  margin-top: 6px;
}

.media .article .surveybox_list li+li {
  margin-top: 6px;
}

.surveybox_list li::before {
  position: absolute;
  top: .45em;
  left: 0;
  content: "";
  width: .8em;
  aspect-ratio: 1 / 1;
  background: #292929;
}

.mintextbox {
  padding: 0;
  font-size: 14px;
}

.mintextbox_ttl {
  font-weight: bold;
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
  background: #2e75b6;
}

.mintextbox_inner {
  padding: 14px 20px;
}


#mainContent .matomebox-inner>:first-child,
#mainContent .mintextbox_inner>:first-child,
#mainContent .surveybox_inner>:first-child {
  margin-top: 0;
}

#mainContent .matomebox-inner>:last-child,
#mainContent .mintextbox_inner>:last-child,
#mainContent .surveybox_inner>:last-child {
  margin-bottom: 0;
}

.c-btn {
  width: fit-content;
  margin: 30px auto 40px;
  background: #ffd966;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0.2rem 0.2rem 0px 0.1rem #bea457;
  transition: .4s;
}

#mainContent .c-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #292929;
  font-weight: bold;
  width: fit-content;
  min-width: 300px;
  max-width: 100%;
  padding: 20px 40px;
  font-size: 18px;
  text-decoration: none;
  transition: .4s;
  text-align: center;
}


#mainContent .c-btn:hover {
  opacity: .8;
}

#mainContent .c-btn:hover a {
  transform: translateX(-10px);
  /* opacity: 1; */
}

.c-btn a::after {
  content: '';
  display: block;
  position: absolute;
  right: 24px;
  height: 5px;
  width: 5px;
  border: 1px solid;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(45deg);
  border-color: #292929;
  transform: rotate(45deg);
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

.tag {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  font-size: 12px;
}

.tag_item {
  padding: 8px 12px;
  border: 1px solid #004ea2;
  border-radius: 8px;
}

.tag_item.on {
  background: #e9f1f8;
}

.scroll-x {
  overflow-x: auto;
  margin-bottom: 26px;
}

.scroll-x .table {
  min-width: 110%;
  margin-bottom: 4px;
}

.stickytable-top thead {
  position: sticky;
  top: 90px;
  z-index: 10;
}

.stickytable-top thead th {
  position: relative;
}

.stickytable-top thead th+th::before {
  position: absolute;
  top: 0;
  left: -1px;
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #a9a9a9;
}

#mainContent .table.stickytable-top .c-btn a {
  padding: 14px;
}

.stickytable-top .c-btn a::after {
  display: none;
}

.stickytable-left thead th:first-of-type,
.stickytable-left tbody th {
  position: sticky;
  top: 0;
  left: 0;
}

.stickytable-left thead th:first-of-type:before,
.stickytable-left tbody th:before {
  position: absolute;
  top: 0;
  left: -1px;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #a9a9a9;
}

.stickytable-left thead th:first-of-type:after,
.stickytable-left tbody th:after {
  position: absolute;
  top: 0;
  right: -1px;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #a9a9a9;
}

.stickytable-left tbody th a {
  font-size: 13px;
}

.stickytable-left tbody th .table-logo {
  margin-bottom: 8px;
}

#mainContent .stickytable-left.table thead th {
  width: min(25vw, 180px);
}

.table .c-btn {
  margin: 0 auto;
  width: 100%;
}

#mainContent .table .c-btn a {
  min-width: auto;
  width: 100%;
  padding: 14px 30px;
  font-size: 16px;
}

#mainContent .table .c-btn a::after {
  right: 16px;
}

.scroll-x .table thead th {
  width: min(48vw, 220px);
}

.scroll-x .table thead th:first-child {
  width: min(32vw, 180px);
}

.jump {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: .8em;
  margin-bottom: 26px;
}

.jump_item {
  display: flex;
  text-align: center;
}

.jump_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-weight: bold;
  width: 100%;
  min-height: 60px;
  background: #c1dcf3;
  border: 1px solid #004ea2;
  border-radius: 10px;
  text-decoration: none !important;
  color: #292929 !important;
}


.numbering {}


.numbering_ttl {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  margin: 26px 0 14px;
  padding-left: 2.4em;
  color: #2e75b6;
}

.numbering .numbering_ttl {
  margin: 30px 0 14px;
}

.numbering_num {
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8em;
  aspect-ratio: 1 / 1;
  background: #2e75b6;
  color: #fff;
}

.pickup_ttl {
  padding: 12px;
  border-top: 4px solid #ffd966;
  margin: 30px 0 14px;
  font-weight: bold;
  font-size: 20px;
  background: #e9f1f8;
}

.pickup_ttl-text {
  display: block;
  font-weight: normal;
  font-size: 13px;
  margin-bottom: 4px;
}


.ranking-i {
  margin-bottom: 26px;
  font-size: 20px;
  font-weight: bold;
}

.ranking-inner {
  font-size: 1.25em;
}

.ranking-catch {
  display: block;
  font-weight: normal;
  font-size: 13px;
  margin-bottom: 4px;
}

.ranking-icon-block {
  position: relative;
  padding: 12px 12px 12px 4.2em;
  margin: 30px 0 14px;
  font-weight: bold;
  font-size: 20px;
  border-top: 4px solid #ffd966;
  background: #e9f1f8;
}

.ranking-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  background: url(../img/rank-04.png) center center / contain no-repeat;
  width: 2.6em;
  aspect-ratio: 1 / 1;
}

.ranking-icon-block .ranking-icon_01 {
  background: url(../img/rank-01.png) center center / contain no-repeat;
}

.ranking-icon-block .ranking-icon_02 {
  background: url(../img/rank-02.png) center center / contain no-repeat;
}

.ranking-icon-block .ranking-icon_03 {
  background: url(../img/rank-03.png) center center / contain no-repeat;
}

.flow {
  margin-bottom: 26px;
}

.flow_ttl {
  position: relative;
  font-weight: bold;
  padding-left: 3.4em;
  font-size: 20px;
  margin: 26px 0 14px;
  color: #2e75b6;
}

#mainContent .box .flow_ttl {
  margin: 12px 0 20px;
}

.flow_wrap {
  border-radius: 5px;
  -webkit-box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 8.66px 40px 0px rgba(0, 0, 0, 0.05);
}

.flow_num {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  text-align: center;
  width: 1.4em;
  font-family: var(--font-jo);
  font-size: 2em;
  aspect-ratio: 1 / 1;
  color: #64a7dc;
  line-height: 1;
}

.flow_step {
  display: block;
  font-size: 0.5em;
  line-height: 1;
}

.flow_wrap:has(+.flow_wrap) {
  margin-bottom: 20px;
}

#mainContent .flow_inner>:last-child {
  margin-bottom: 0;
}


.relatedArticle {
  margin: 80px 0 20px;
}

.relatedArticle_head {
  background: #265992;
  padding: .6em 1.4em;
  margin-bottom: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.relatedArticle_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.relatedArticle_img {
  margin-bottom: 8px;
}

.relatedArticle_img img {
  display: block;
  width: 100%;
  height: auto;
}

.article .relatedArticle_ttl {
  margin-bottom: 0;
  font-size: .9em;
  line-height: 1.6;
}

.faq_wrap {
  margin-bottom: 26px;
}

.faq+.faq,
div:has(.faq)+div:has(.faq) {
  margin-top: 10px;
}

.faqQ {
  display: block;
  position: relative;
  cursor: pointer;
  border-top: 1px dotted #DDD;
  padding: 1em 3em 1em 3em;
  margin: 0;
  font-size: 18px;
  background: #e9f1f8;
  font-weight: bold;
  border: 1px solid #265992;
}

.faqQ::before {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(50%, -50%);
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: #265992;

}

.faqQ::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 26px;
  background: #265992;
}

.faqQ>span {
  position: absolute;
  left: 1.2em;
  top: .8em;
  display: block;
  width: fit-content;
  font-size: 20px;
  color: #2e75b6;

}

.faqQ.action::after {
  display: none;
}

.faqA {
  display: none;
  padding: 15px 20px;
}


.link_right,
.link_right-icon {
  font-size: 14px;
  text-align: right;
  margin-bottom: 26px;
}

.link_right:has(+.link_right),
.link_right:has(+.link_right-icon),
.link_right-icon:has(+.link_right-icon),
.link_right-icon:has(+.link_right) {
  margin-bottom: 8px;
}


.link_right-icon a {
  position: relative;
  padding-left: 1.2em;
}

.link_right-icon a::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1 / 1;
  background: url(../img/link-icon.png) center center / contain no-repeat;
}

.post-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tabarea {
  margin-bottom: 26px;
}

.tab-list {
  display: flex;
  gap: 4px;
}

.tab-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 5px;
  border-bottom: 2px solid #265992;
  padding: 0 20px;
  margin: 24px 0 10px;
}

.tab.active {
  background-color: #fff;
  position: relative;
}

.tab {
  border-radius: 5px 5px 0 0;
  flex: auto;
  text-align: center;
  border: 2px solid #265992;
  border-bottom: none;
  cursor: pointer;
  width: 100%;
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
  font-size: 14px;
  min-height: 50px;
  background: #f3efea;
}

.tab-item {
  padding: 10px 14px 14px;
  border: 2px solid #265992;
  border-top: none;
  background: #fff;
}

.tab-wrap {
  display: none;
}

.tab-wrap.show {
  display: block;
}

.tab-item .tab-wrap>:last-child {
  margin-bottom: 0;
}

.tab-item .tab-wrap>:first-child {
  margin-top: 0;
}

.meritdemerit {
  margin-bottom: 26px;
}

.meritdemerit:has(+.meritdemerit) {
  margin-bottom: 10px;
}

.meritdemerit[data-type="merit"] {
  border: 2px solid #cebd6d;
}

.meritdemerit[data-type="merit"] .meritdemerit-ttl {
  background: #fff4d5;
  border-bottom: 2px solid #cebd6d;
}

.meritdemerit[data-type="demerit"] {
  border: 2px solid #bfbbbe;
}

.meritdemerit[data-type="demerit"] .meritdemerit-ttl {
  background: #f8f8f8;
  border-bottom: 2px solid #bfbbbe;
}

.meritdemerit-ttl {
  padding: 10px 20px;
  font-weight: bold;
  line-height: 1.1;
  font-size: 18px;
}

.meritdemerit-list {
  position: relative;
  padding: 16px 20px;
  margin: 0;
  background: #fff;
}

.meritdemerit-list li {
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 10px;
}

.meritdemerit-list li:last-child {
  margin-bottom: 0;
}

.meritdemerit-list li:before {
  content: '';
  display: block;
  position: absolute;
  top: .5em;
  left: 0.2em;
  width: .6em;
  aspect-ratio: 1 / 1;
  border-radius: 100px;
}

.meritdemerit[data-type="merit"]>.meritdemerit-list li:before {
  background-color: #cebd6d;
}

.meritdemerit[data-type="demerit"]>.meritdemerit-list li:before {
  background-color: #bfbbbe;
}

.imgScrollBox {
  width: 100%;
  background: #f9f9f9;
  padding: 20px 20px 10px 20px;
  box-sizing: border-box;
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 26px;
}

.imgScrollBox-wrap {
  width: fit-content;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.imgScrollBox-list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.imgScrollBox-list li {
  flex: 0 0 calc(33.33% - 16px);
  max-width: calc(33.33% - 16px);
  box-sizing: border-box;
  margin: 0 8px;
  text-align: center;
  position: relative;
}

.imgScrollBox-list li:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 1px;
  width: 26px;
  background-color: transparent;
}

.imgScrollBox-list img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

.imgScrollBox-list .caption {
  display: block;
  max-width: 100%;
  font-size: 12px;
  line-height: 1.4;
  white-space: normal;
  overflow-wrap: break-word;
  text-align: left;
}

.imgBox-center li {
  width: 33.33%;
}

.imgBox-center .imgScrollBox-list {
  justify-content: center;
  gap: 16px;
}


.rankBox {
  margin-top: 40px;
  margin-bottom: 26px;
}

.rankBox .title {
  position: relative;
  font-size: 22px;
  color: #2e75b6;
  text-align: center;
  padding: 0 20px;
  line-height: 1.3;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto 22px;
}

.rankBox .title::before,
.rankBox .title::after {
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  width: 1px;
  background: #2e75b6;
}

.rankBox .title::before {
  top: 0;
  left: 0;
  transform: rotate(-45deg);
}

.rankBox .title::after {
  top: 0;
  right: 0;
  transform: rotate(45deg);
}

.rankBox .item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;

}

@media screen and (max-width: 900px) {
  .rankBox .item {
    flex-direction: column;
  }
}

.rankBox .block {
  width: 100%;
  border-top: 2px solid #6c6554;
}

@media screen and (max-width: 900px) {
  .rankBox .rightblock {
    border-top: none;
  }
}

.rankBox .catch {
  text-align: center;
  color: #AFB7BE;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed #AFB7BE;
  padding: 0.5rem 0;
  line-height: 1.5;
}

.rankBox .name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  padding-right: 10px;
  border-bottom: 1px dashed #AFB7BE;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}

.rankBox .name img {
  height: auto;
  width: 130px;
  padding: 0;
}

@media screen and (max-width: 900px) {
  .rankBox .name {
    padding: 1em 0;
  }

  .rankBox .name img {
    width: 35%;
    min-width: 100px;
  }
}


.rankBox .tag-pricearea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  gap: 1em;
}

@media screen and (max-width: 900px) {
  .rankBox .tag-pricearea {
    border-bottom: 1px dashed #AFB7BE;
    margin-top: 1em;
    padding-bottom: 1.0em;
  }
}

.rankBox .tagarea {
  width: 62%;
}

@media screen and (max-width: 900px) {
  .rankBox .tagarea {
    min-width: 45%;
  }
}

.rankBox .tagarea .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 6px;
}

.rankBox .tagarea .list li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  text-align: center;
  border: 1px solid #004ea2;
  font-size: 12px;
  border-radius: 8px;
}

.rankBox .tagarea .list .on {
  background: #e9f1f8;
}

.rankBox .pricearea {
  width: fit-content;
  margin-right: 10px;
}

@media screen and (max-width: 900px) {
  .rankBox .pricearea {
    margin-right: .6em;
  }
}


.pricearea .course {
  width: fit-content;
  margin-left: 18px;
  font-size: 14px;
}

.pricearea .price {
  display: flex;
  align-items: center;
  font-size: 1.2em;
}

.pricearea .price:before {
  display: block;
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%23ad9164' d='M202.9 110.7C193.3 95.8 173.5 91.5 158.7 101.1C143.9 110.7 139.5 130.4 149.1 145.3L271.7 336L216 336C202.7 336 192 346.7 192 360C192 373.3 202.7 384 216 384L288 384L288 416L216 416C202.7 416 192 426.7 192 440C192 453.3 202.7 464 216 464L288 464L288 512C288 529.7 302.3 544 320 544C337.7 544 352 529.7 352 512L352 464L424 464C437.3 464 448 453.3 448 440C448 426.7 437.3 416 424 416L352 416L352 384L424 384C437.3 384 448 373.3 448 360C448 346.7 437.3 336 424 336L368.3 336L490.9 145.3C500.5 130.4 496.2 110.6 481.3 101.1C466.4 91.6 446.6 95.8 437.1 110.7L320 292.8L202.9 110.7z'/%3E%3C/svg%3E") center center / contain no-repeat;
  color: #2e75b6;
  margin-right: 4px;
  margin-top: -3px;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  width: 20px;
  aspect-ratio: 1 / 1;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 1px
}

.rankBox .rightblock ul {
  margin-top: 2.7rem;
}

@media screen and (max-width: 900px) {
  .rankBox .rightblock ul {
    margin-top: 0;
  }

}

.rankBox .item .c-btn02 {
  max-width: 250px;
  margin-top: 26px;
  margin-bottom: 0;
}

@media screen and (max-width: 900px) {
  .rankBox .item .c-btn02 {
    margin: 1.5em auto 1em;
    max-width: 80%;
  }

  .rankBox .item .c-btn02 a {
    margin-top: 0px;
  }
}


.review-scroll {
  overflow-x: scroll;
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.review-wrap {
  width: 100%;
  min-width: 80%;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  align-items: center;
  -webkit-align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #f9f9f9;
  padding: 20px;
  border: 1px solid #d8d8d8;
  white-space: normal;
  overflow: hidden;
  scroll-snap-align: center;
}

.review-top {
  width: 100%;
  margin-bottom: 0;
}

.review-profile {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: start;
  align-items: center;
  margin-bottom: 10px;
}

.review-icon img {
  display: block;
  max-width: 65px;
  height: auto;
  margin: 0;
  margin-right: 10px;
}

.review-icon-w,
.review-icon-m {
  display: block;
  width: 50px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
}

.review-icon-w {
  background: #fff url(../img/review-icon-woman.svg) center center / 80% no-repeat;
}

.review-icon-m {
  background: #fff url(../img/review-icon-man.svg) center center / 80% no-repeat;
}

.review-name {
  font-weight: 700;
  margin-right: 10px;
  font-size: 18px;
}

.review-course {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 16px;
}

.review-course span {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 10px;
  margin-right: 8px;
  background: #004ea2;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: .08em;
}

.review-bottom {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.review-bottom img {
  width: 40%;
  height: auto;
}

.map {
  margin-bottom: 26px;
}

.map-ttl {
  background: #c1dcf3;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding: .6em 1.6em;
  margin: 40px auto 30px;
}

.map-ttl::after {
  position: absolute;
  content: "";
  border-top: 20px solid #c1dcf3;
  border-left: 20px solid transparent;
  border-right: 19px solid transparent;
  left: 50%;
  bottom: -15px;
  z-index: 1;
  margin-left: -20px;
}

.addressAco {
  margin-bottom: 26px;
}

.addressAco-ttl {
  display: block;
  position: relative;
  cursor: pointer;
  border-top: 1px dotted #DDD;
  padding: 1em 3em 1em 1em;
  margin: 0;
  font-size: 18px;
  background: #e9f1f8;
  font-weight: bold;
  border: 1px solid #265992;
}

.addressAco-ttl.action {
  background: #004ea2;
  color: #fff;
}

.addressAco-info {
  display: none;
}

.addressAco-info+.addressAco-ttl {
  margin-top: 10px;
}

.addressAco-cont {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 15px 20px 15px;
}

.addressAco-subttl {
  flex-shrink: 0;
  font-weight: bold;
}

.Aco-btn {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(50%, -50%);
  display: block;
  width: 26px;
  aspect-ratio: 1 / 1;
}

.Aco-btn::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #265992;
}

.Aco-btn::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #265992;
}

.addressAco-ttl.action .Aco-btn::before {
  background: #fff;
}

.addressAco-ttl.action .Aco-btn::after {
  display: none;
}

/* ポジショニングマップ */
.posMap {
  margin-bottom: 26px;
}

.posMap-head {
  margin-bottom: 10px;
}

.posMap-subttl {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #72bceb;
}

.posMap-notes {
  font-size: 12px;
  text-align: right;
  margin-top: 2px;
}

.posMap-ttl {
  font-size: 20px;
  text-align: center;
  font-weight: bold;

}

.posMap-contents {
  background: repeating-linear-gradient(90deg, #e7e8e4, #e7e8e4 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(0deg, #e7e8e4, #e7e8e4 1px, #fff 1px, #fff 32px);
  background-size: 32px 32px;
  background-position: 50% 50%;
  /* width: 64%; */
  max-width: 550px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  position: relative;
}

.posMap-contents::before {
  content: "";
  display: inline-block;
  background: #fff4d5;
  border-radius: 50%;
  width: 38%;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 4%;
  right: 2%;
}

.posMap-bg {
  display: inline-block;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/posMap-bg.png) center center / contain no-repeat;
}

.posMap-label,
.posMap-subLabel {
  position: absolute;
  z-index: 2;
}

.posMap-subLabel {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
}

.posMap-label_01,
.posMap-label_02 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.posMap-label_01 {
  background: #2e75b6;
  top: 5.5%;
  left: 50%;
  transform: translateX(-50%);
}

.posMap-label_02 {
  background: #707F89;
  top: 92%;
  left: 50%;
  transform: translateX(-50%);
}

.posMap-label_03,
.posMap-label_04 {
  font-weight: bold;
  line-height: 1.17;
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 8px;
}

.posMap-label_03 {
  background: #2e75b6;
  top: 54.8%;
  transform: translateY(-50%);
  right: 2%;
}

.posMap-label_04 {
  background: #707F89;
  top: 54.8%;
  transform: translateY(-50%);
  left: 20px;
}

.posMap-item-logo {
  width: auto;
  height: 28px;
}

.posMap-item {
  display: inline-block;
  background: #fff;
  border: 1px solid #707F89;
  border-radius: 4px;
  box-shadow: 0 4px #707F89;
  padding: 6px 12px;
  position: absolute;
  z-index: 1;
}

a.posMap-item {
  text-decoration: none;
}

.posMap-item-catch {
  font-size: 1rem;
  margin: 6px 0 0;
  color: #333;
}

.posMap-item_02 {
  border-color: #cebd6d;
  box-shadow: 0 4px #cebd6d;
  padding: 10px 12px 6px;
  z-index: 1;
  top: 29%;
  right: 11%;
}

.posMap-item-link {
  display: block;
}


/* シミュレーションパーツ */
.simulation {
  position: relative;
  padding: 3%;
  border: 1px solid #2e75b6;
  border-radius: 10px;
  margin-bottom: 26px;
}

.simulation .ttl {
  background-color: #fff;
  position: relative;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #e8e8e8 calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #e8e8e8 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  margin: -1% -1% 20px !important;
  padding: 1em;
  text-align: center;
  border-radius: 5px;
  box-shadow: #2e75b6 1px 1px 5px;
  letter-spacing: .08rem;
}

.simulation .ttl .sub {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2em;
  margin-bottom: 8px !important;
}

.simulation .ttl .main {
  display: block;
  font-weight: bold;
  font-size: 26px;
  line-height: 1.2em;
  color: #2e75b6;
}

.simulation dl {
  margin: 0;
  padding: 0;
}

.simulation dl dt {
  position: relative;
  background: #6c6554;
  color: #fff;
  padding: .5em 2em;
  margin: 0;
  line-height: 1.2em;
  border-radius: 4vw;
  font-weight: bold;
}

.simulation dl dt span,
.simulation .ttl span {
  display: inline-block;
}

.simulation dl dd+dt {
  margin-top: .8em;
}

.simulation dl dd {
  border: 0;
  padding: .8em 0px;
  position: relative;
  display: flex;
  gap: 2%;
  font-size: 15px;
}

.simulation dl dd>label {
  position: relative;
  padding: 10px 12px;
  background: #fff;
  border-radius: 30px;
  color: #2e75b6;
  font-weight: bold;
  width: 23.5%;
  line-height: 1.2em;
  border: 1px solid#2e75b6;
  border-radius: 4vw;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s linear;
  box-shadow: rgba(0, 0, 0, 0.3) 1px 2px 3px;
  box-sizing: border-box;
}

.simulation dl dd>label:has(input[type="checkbox"]) input[type="checkbox"] {
  margin-right: .8em;
  transform: scale(1.5, 1.5);
  box-shadow: #fff 0 0 1px 1px;
}

.simulation dl dd>label:hover,
.simulation dl dd>label:has(input[type="radio"]:checked),
.simulation dl dd>label:has(input[type="checkbox"]:checked) {
  background: #ffd966;
  color: #333;
  transition: all 0.2s linear;
}

.simulation dl dd label input[type="radio"],
.simulation .sim-result>label input[name="result"] {
  display: none;
}

.simulation dl dd>label:has(:not(input[type="radio"]:checked)):hover {
  top: -2px;
  left: -1px;
  box-shadow: rgba(0, 0, 0, 0.3) 2px 4px 3px;
  transition: all 0.2s linear;
}

.simulation dl dd>p.fukidasi strong {
  font-size: 120%;
  color: #fb3;
}

.simulation dl dd nav,
.simulation .sim-result nav {
  text-align: center;
  margin: .8em auto 0;
  padding: 0;
  width: 100%;
}

.simulation .sim-result nav {
  margin: 1.4em auto 0;
}

.simulation dl dd nav>label:hover {
  opacity: .6;
}

.simulation dl dd nav>label,
.simulation .sim-result nav a {
  box-sizing: border-box;
  display: inline-block;
  padding: .4em 1em;
  min-width: 340px;
  background: #72bceb;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3em;
  border-radius: 100px;
  border: 1px solid #333;
  box-shadow: rgba(0, 0, 0, 0.3) -1px -3px 1px 2px inset, rgba(255, 255, 255, 0.4) 1px 2px 1px 2px inset;
  text-shadow: rgba(0, 0, 0, 0.7) -1px -1px 1px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  max-width: 100%;
  transition: opacity 0.3s linear;
}

.dietArticle .simulation .sim-result nav a {
  background: #eb7483;
  text-decoration: none !important;
  color: #fff !important;
}

/* result */
.simulation .sim-result div[id*="sim-result-"] {
  display: none;
}

.simulation:has(input[name="other_conditions"][value="0"]:checked) .sim-result div#sim-result-1,
.simulation:has(input[name="other_conditions"][value="1"]:checked) .sim-result div#sim-result-2,
.simulation:has(input[name="other_conditions"][value="2"]:checked) .sim-result div#sim-result-3 {
  display: block;
}

.simulation .sim-result {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  overflow: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.simulation .sim-result.show {
  visibility: visible;
  opacity: 1;
}

.simulation .sim-result:has(input[name="result"]:checked) {
  z-index: -10;
  opacity: 0;
  top: -100%;
  left: 100%;
  width: 0;
  height: 0;
  transition: opacity 0.5s linear;
}

.simulation .sim-result>label:has(input[name="result"]) {
  position: absolute;
  right: 2%;
  top: 2%;
  color: #fff;
  font-size: 60px;
  line-height: 60px;
  font-weight: bold;
  cursor: pointer;
}

.simulation .sim-result .sim-result-inner {
  width: 60%;
  max-width: 600px;
  max-height: 80vh;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -100%);
  background: #fff;
  padding: 1.2em;
  text-align: center;
  border-radius: 10px;
  opacity: 0;
  transition: transform 1s ease;
  overflow-y: auto;
}

.simulation .sim-result.show .sim-result-inner {
  opacity: 1;
  top: 54%;
  transform: translate(-50%, -50%);
}

.dietArticle .sim-result-inner p {
  margin-bottom: 12px;
}

.simulation .sim-result:has(input[name="result"]:checked) .sim-result-inner {
  top: -10%;
  opacity: 0;
  transition: all 0.7s ease-out;
}


.sim-result-inner .banner {
  width: 80%;
  margin: 0 auto 15px;
}

.sim-result-ttl {
  position: relative;
  margin: 0 auto 15px;
  padding: 0 5px;
  width: fit-content;
  max-width: 100%;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1em;
  vertical-align: middle;
  z-index: 1;
  background: linear-gradient(transparent 70%, #ff9 70%);
}

.sim-result-ttl span {
  display: inline-block;
}

.sim-result-ttl>span {
  vertical-align: middle;
  max-width: calc(100% - 60px);
}

.sim-result-ttl.name {
  font-size: 24px;
}

.simulation .sim-result {
  line-height: 1.4em;
}

.simulation .sim-result p {
  margin-bottom: .8em;
}

.simulation .sim-result p b {
  display: inline-block;
  margin: 0 5px;
  font-size: 115%;
  color: #ff7e8f;
}

.simulation .sim-result p i {
  display: inline-block;
  padding: 3px 5px;
  background: #777;
  color: #fff;
  font-weight: bold;
  font-style: normal;
  margin: 0 5px;
  vertical-align: middle;
  border-radius: 3px;
}

.simulation .sim-result p.average {
  font-size: 160%;
  font-weight: bold;
  line-height: 1.4em;
}

.simulation .sim-result p.average em {
  display: inline-block;
  padding: 3px 5px;
  background: #faeff0;
  color: #FE6060;
  font-size: 120%;
  font-style: normal;
  margin: 0 5px;
  border: 1px solid #FE6060;
  border-radius: 3px;
}

.sim-result .close-modal {
  position: absolute;
  right: 2%;
  top: 3vh;
  color: #fff;
  font-size: 60px;
  line-height: 60px;
  cursor: pointer;
}

.sim-result-item {
  display: none;
}

.bmiCalc {
  margin: 0 auto 26px;
  padding: 3%;
  width: fit-content;
  border: 1px solid #2e75b6;
  border-radius: 10px;
  background: #fff;
}

.bmiCalc-wrap {
  width: fit-content;
  margin: 0 auto 20px;
}

.bmiCalc-box {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 20px;
}

.bmiCalc-name {
  font-weight: bold;
  width: 3em;
}

.bmiCalc-type {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.bmiCalc-box+.bmiCalc-box {
  margin-top: 10px;
}

.bmiCalc-type input {
  display: inline-block;
  font-size: 1.5em;
  text-align: right;
  max-width: 100px;
}

.bmiCalc-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bmiCalc-btn .bmi-calc-btn {
  display: inline-block;
  padding: .4em 1em;
  min-width: 240px;
  background: #72bceb;
  color: #fff;
  font-size: min(1.4em, 22px);
  font-weight: bold;
  line-height: 1.3em;
  border-radius: 100px;
  border: 1px solid #333;
  box-shadow: rgba(0, 0, 0, 0.3) -1px -3px 1px 2px inset, rgba(255, 255, 255, 0.4) 1px 2px 1px 2px inset;
  text-shadow: rgba(0, 0, 0, 0.7) -1px -1px 1px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  max-width: 100%;
  transition: opacity 0.3s linear;
}

.bmiCalc-btn .bmi-clear-btn {
  padding: 4px;
  font-size: min(16px, 1em);
}

.bmiCalc-btn button:hover {
  opacity: .6;
}

p.bmiCalc-error {
  margin: 10px 0 0;
  text-align: center;
  font-size: 14px;
  color: #d52929;
}

.bmiCalc-result {
  margin: 40px 0 30px;
}

.bmiCalc-result>:last-child {
  margin-bottom: 0;
}

.bmiCalc-txt {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 20px;
}

.bmi-value {
  display: inline-block;
  padding: 3px 5px;
  background: #faeff0;
  color: #FE6060;
  font-size: 120%;
  font-style: normal;
  margin: 0 5px;
  border: 1px solid #FE6060;
  border-radius: 3px;
}

/* obesity */
.obesity *[data-bg="gray"] {
  background: #f2f2f2;
}

.obesity .textbox:not([data-bg="blue"]):not([data-bg="gray"]) {
  border: 2px solid #d9d9d9;
}

.obesity .box,
.obesity .table,
.obesity .imgScrollBox,
.obesity .review-wrap {
  background: #fff;
}

.obesity .table tbody th {
  background: #f2f2f2;
}

.obesity .article div[data-bg="gray"] {
  background: #f2f2f2;
}

.obesity .fukidashi,
.obesity .fukidashi::after {
  background: #f9f9f9;
}


@media only screen and (min-width: 769px) {

  .obesity .article>:first-child {
    margin-top: 200px;
  }

  .obesity p {
    margin-bottom: 20px;
  }

  .obesity .ttl_sub,
  .obesity .ttl_check,
  .obesity .numbering_ttl {
    font-size: 24px;
    margin: 60px 0 20px;
  }

  .obesity .img_100,
  .obesity .table,
  .obesity ul:not([class]),
  .obesity ol:not([class]),
  .obesity .check_list,
  .obesity .flexbox,
  .obesity .floatbox,
  .obesity .tag,
  .obesity .scroll-x,
  .obesity .jump,
  .obesity .faq_wrap,
  .obesity .meritdemerit,
  .obesity .tabarea,
  .obesity .imgScrollBox,
  .obesity .rankBox .item,
  .obesity .review-scroll,
  .obesity .addressAco,
  .obesity .posMap-contents,
  .obesity .simulation {
    margin-bottom: 40px;
  }

  .obesity .box {
    padding: 30px;
    margin-bottom: 40px;
  }


  .obesity .checkBox-title p {
    background: #f9f9f9;
    margin-bottom: 0;
    font-size: 24px;
  }

  .obesity .checkBox-list {
    font-size: 19px;
  }

  .obesity .flexbox img {
    max-width: 500px;
    margin-bottom: 15px;
    margin-top: 5px;
  }

  .obesity .floatbox .float_l {
    max-width: 500px;
    margin: 5px 20px 15px 0;
  }

  .obesity .floatbox .float_r {
    max-width: 500px;
    margin: 5px 0px 15px 20px;
  }

  .obesity .arrow {
    margin: 56px auto;
  }

  .obesity .arrow_min {
    margin: 20px auto;
  }

  .obesity .quotebox {
    padding: 70px 30px 30px 30px;
  }

  .obesity .quotebox::before {
    top: 24px;
    left: 32px;
  }

  .obesity .fukidashi {
    font-size: 22px;
    margin: 45px auto 40px;
  }

  .obesity .fukidashi::after {
    height: 20px;
    width: 20px;
  }

  .obesity .matomebox {
    padding: 0;
    background: #fff4d5;
  }

  .obesity .matomebox_ttl {
    font-size: 24px;
    padding: .6em 1.3em;
  }

  .obesity .matomebox_inner {
    padding: 20px 30px 30px;
  }

  .obesity .surveybox_ttl {
    font-size: 24px;
  }

  .obesity .mintextbox {
    padding: 0;
    font-size: 16px;
  }

  .obesity .mintextbox_ttl {
    padding: 10px 30px;
    font-size: 18px;
  }

  .obesity .mintextbox_inner {
    padding: 20px 30px 30px;
    line-height: 2;
  }

  .obesity .c-btn {
    margin: 40px auto 50px;
  }

  #mainContent.obesity .c-btn a {
    min-width: 400px;
    padding: 26px 40px;
    font-size: 20px;
  }

  .obesity .tag_item {
    line-height: 2;
  }

  .obesity .scroll-x .table {
    margin-bottom: 8px;
  }

  #mainContent.obesity .table .c-btn a {
    min-width: auto;
    padding: 18px 30px;
  }

  .obesity .pickup_ttl,
  .obesity .ranking-icon-block {
    font-size: 24px;
    margin: 50px 0 14px;
  }

  .obesity .pickup_ttl-text,
  .obesity .ranking-catch {
    font-size: 16px;
  }

  .obesity .flow_ttl {
    font-size: 26px;
    margin: 20px 0 30px;
  }

  .obesity .faqQ {
    font-size: 20px;
  }

  .obesity .link_right,
  .obesity .link_right-icon {
    font-size: 16px;
  }

  .obesity .meritdemerit:has(+.meritdemerit) {
    margin-bottom: 20px;
  }

  .obesity .tab {
    font-size: 16px;
  }

  .obesity .tab-item {
    padding: 14px 20px 20px;
  }

  .obesity .meritdemerit-ttl {
    font-size: 22px;
    padding: 16px 20px;
  }

  .obesity .imgScrollBox-list .caption {
    font-size: 14px;
  }

  .obesity .rankBox .title {
    font-size: 26px;
  }

  .obesity .rankBox .name,
  .obesity .review-name {
    font-size: 22px;
  }

  .obesity .rankBox .tagarea {
    width: 57%;
  }

  .obesity .rankBox .tagarea .list li {
    font-size: 14px;
  }

  .obesity .map-ttl {
    font-size: 22px;
    margin: 45px auto 40px;
  }

  .obesity .addressAco-ttl {
    font-size: 22px;
  }

  .obesity .posMap-contents {
    max-width: 700px;
  }

  .obesity .posMap-ttl {
    font-size: 26px;
  }

  .obesity .posMap-subttl {
    font-size: 18px;
  }

  .obesity .posMap-item-logo {
    height: 35px;
  }

  .obesity .simulation .ttl .main {
    font-size: 28px;
  }

  p.bmiCalc-error {
    margin-bottom: 0;
  }
}

.posts_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 20px;
}

.posts_list img {
  display: block;
  width: 100%;
  height: auto;
}

.posts_list a {
  display: block;
  width: 100%;
  height: auto;
}

.posts_image {
  margin-bottom: 8px;
}

p.posts_list-ttl {
  font-size: .84em;
  line-height: 1.8;
  margin-bottom: 0;
}

ul.page-numbers {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1em;
}

ul.page-numbers li {}

ul.page-numbers span:not(.dots),
ul.page-numbers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  aspect-ratio: 2 / 2.5;
  border: 2px solid #2e75b6;
}

ul.page-numbers span:not(.dots) {
  background: #2e75b6;
  color: #fff;
}

ul.page-numbers a {
  text-decoration: none !important;
  color: #292929 !important;
}