@charset "UTF-8";
/* ===============================================
# ブラウザ幅でフォントサイズを変える関数
=============================================== */
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: #fff;
  font-family: "Noto Sans JP", "Yu Gothic Medium", YuGothic, "-apple-system", BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #35363B;
  height: auto !important;
  overflow: hidden;
  font-weight: 500;
}

a {
  color: #35363B;
}

figure {
  margin: 0;
  text-align: center;
}

p {
  line-height: 1.8;
}
p:first-of-type {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

ol,
ul {
  line-height: 1.8;
  padding: 0 0 0 1.8em;
}

li {
  margin: 0 0 1em;
}
li:last-child {
  margin-bottom: 0;
}

.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

@media (max-width: 767px) {
  .col:not(:last-child) {
    margin-bottom: 30px;
    margin-bottom: 3rem;
  }
}

.row:not(:last-child) {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .row:not(:last-child) {
    margin-bottom: 40px;
    margin-bottom: 4rem;
  }
}

.bread {
  margin-bottom: 80px;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .bread {
    margin-bottom: 60px;
    margin-bottom: 6rem;
  }
}
.bread .container {
  padding: 0 20px;
  max-width: 1040px;
}
@media (max-width: 767px) {
  .bread .container {
    padding: 0 4.5%;
    max-width: calc(1000px + 9%);
  }
}
.bread ul {
  list-style: none;
  padding-left: 0;
}
.bread ul > * {
  margin: 0;
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
}
.bread ul > *:not(:last-child) {
  margin-right: 2em;
}
.bread ul > *:not(:last-child):before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0;
  left: calc(100% + 0.6em);
  right: auto;
  bottom: 0;
  margin: auto;
  border-top: 1px solid #35363B;
  border-right: 1px solid #35363B;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.bread a {
  text-decoration: none;
}

body:not(.home) main > section > .container {
  padding: 0 20px;
  max-width: 1040px;
}
@media (max-width: 767px) {
  body:not(.home) main > section > .container {
    padding: 0 4.5%;
    max-width: calc(1000px + 6%);
  }
}

.column_main {
  margin-bottom: 180px;
}
@media (max-width: 767px) {
  .column_main {
    margin-bottom: 100px;
  }
}
.column_main > section > .container {
  max-width: none;
  padding: 0;
}
.column_main > section:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .column_main > section:not(:last-child) {
    margin-bottom: 60px;
  }
}

.pager {
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
.pager .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.pager .nav-links > * {
  width: 2em;
  height: 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(213, 22, 22, 0.1);
  color: #D51616;
  border: 1px solid #d51616;
  border-radius: 100px;
  font-weight: bold;
}
.pager .nav-links > *:not(:last-child) {
  margin-right: 0.5em;
}
.pager .nav-links > *.current {
  background: #D51616;
  color: #fff;
}
.pager .nav-links > *.prev {
  position: relative;
}
.pager .nav-links > *.prev:before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  bottom: 0;
  margin: auto;
  border-top: 1px solid #D51616;
  border-right: 1px solid #D51616;
  -webkit-transform: translateX(-50%) rotate(222deg);
          transform: translateX(-50%) rotate(222deg);
}
.pager .nav-links > *.next {
  position: relative;
}
.pager .nav-links > *.next:before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  bottom: 0;
  margin: auto;
  border-top: 1px solid #D51616;
  border-right: 1px solid #D51616;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.archive-list {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .archive-list {
    margin-bottom: 80px;
  }
}
.archive-list dl {
  margin-top: 0;
}
@media (min-width: 768px) {
  .archive-list dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.archive-list dt,
.archive-list dd {
  padding: 1.2em 0;
  border-bottom: 1px solid rgba(53, 54, 59, 0.2);
}
@media (min-width: 768px) {
  .archive-list dt:first-of-type,
  .archive-list dd:first-of-type {
    border-top: 1px solid rgba(53, 54, 59, 0.2);
  }
}
@media (min-width: 768px) {
  .archive-list dt {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .archive-list dt {
    border-bottom: 0;
    padding-bottom: 0.6em;
    border-top: 1px solid rgba(53, 54, 59, 0.2);
  }
}
.archive-list dd {
  margin: 0;
}
@media (min-width: 768px) {
  .archive-list dd {
    width: calc(100% - 150px);
  }
}
@media (max-width: 767px) {
  .archive-list dd {
    border-top: 0;
    padding-top: 0;
  }
}
.archive-list a {
  text-decoration: none;
}
.archive-list a:hover {
  text-decoration: underline;
}

.single-wrap {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .single-wrap {
    margin-bottom: 80px;
  }
}
.single-wrap .date {
  margin-bottom: 20px;
}
.single-wrap .post-area {
  background: rgba(213, 22, 22, 0.1);
  padding: 60px 6%;
}
@media (max-width: 767px) {
  .single-wrap .post-area {
    padding: 30px 6%;
  }
}

/*==================================================
アコーディオンのためのcss
===================================*/
.qa {
  /*アコーディオン全体*/
  /*アコーディオンタイトル*/
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
.qa .qa-area {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  counter-reset: number 0;
}
.qa .qa-area li {
  border: 1px solid rgba(53, 54, 59, 0.5);
  border-radius: 4px;
  background: rgba(53, 54, 59, 0.07);
}
.qa .title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: normal;
  padding: 20px 60px 20px calc(26px + 2.8em);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 0;
  min-height: 4.8em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .qa .title {
    font-size: 17px;
    font-size: 1.7rem;
    padding: 16px 60px 16px calc(22px + 2.2em);
  }
}
.qa .title {
  color: #35363B;
}
.qa .title::after {
  content: "+";
  position: absolute;
  width: 1em;
  height: 1em;
  background: transparent;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  right: 20px;
  left: auto;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  bottom: 0;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  margin: auto;
  display: inline-block;
  font-size: 1.5em;
  text-indent: 0.15em;
  line-height: 0.9em;
}
.qa .title:before {
  font-weight: bold;
  width: 2.2em;
  border-radius: 4px;
  height: 1.2em;
  font-size: 1.2em;
  position: static;
  display: inline-block;
  margin-right: 0.7em;
  line-height: 1.2em;
  color: #fff;
  letter-spacing: 0.15em;
  counter-increment: number 1;
  content: "Q" counter(number);
  position: absolute;
  top: calc(20px + 0.45em);
  left: 28px;
  color: #35363B;
  bottom: auto;
  margin: 0 auto;
  background: transparent;
}
@media (max-width: 767px) {
  .qa .title:before {
    top: calc(16px + 0.05em);
    left: 18px;
  }
}
.qa .title.close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.qa .box {
  display: none;
  /*はじめは非表示*/
  background: rgba(213, 22, 22, 0.1);
  margin: 0 20px 20px;
  padding: 20px;
  border-radius: 4px;
  position: relative;
}

.highlight_ttl > h2,
.highlight_ttl h3,
.highlight_ttl h4 {
  background: rgba(213, 22, 22, 0.1);
  border-radius: 4px;
  padding: 1em;
  color: #35363B;
}
.highlight_ttl > h2:before, .highlight_ttl > h2:after,
.highlight_ttl h3:before,
.highlight_ttl h3:after,
.highlight_ttl h4:before,
.highlight_ttl h4:after {
  content: none;
}

.step > div {
  border: 1px solid #35363B;
}
@media (min-width: 768px) {
  .step > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.step > div:not(:last-child) {
  position: relative;
  margin-bottom: 50px;
}
.step > div:not(:last-child):before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  bottom: auto;
  left: 0;
  right: 0;
  bottom: auto;
  margin: 0 auto;
  top: calc(100% + 10px);
  border-top: 3px solid #35363B;
  border-right: 3px solid #35363B;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.step h3 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}
.step h3:before {
  content: none;
}
.step .col {
  padding: 1em 1.5em;
  margin: 0;
}
@media (max-width: 767px) {
  .step .col {
    padding: 1em 0.5em;
  }
}
.step .col:first-child {
  background: #35363B;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  margin-bottom: 0;
}

.btn {
  display: block;
  overflow: hidden;
  margin: auto;
}
.btn a {
  display: block;
  border: 1px solid #D51616;
  color: #fff;
  background: #D51616;
  padding: 1em;
  margin: 0 auto 1px;
  max-width: 374px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.4;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.btn a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5%;
  margin: auto;
  width: 5px;
  height: 5px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.btn a:hover {
  background: #fff;
  color: #D51616;
}
.btn a:hover:before {
  border-top: 2px solid #D51616;
  border-right: 2px solid #D51616;
}

header .header_info_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  margin: 0 auto;
}
@media (max-width: 1099px) {
  header .header_info_wrap {
    display: none;
  }
}
header .header_info_wrap .header_info {
  position: absolute;
  overflow: hidden;
  top: 20px;
  right: 12px;
}
header .header_info_wrap .tel {
  line-height: 1;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 0;
  color: #35363B;
  padding-left: 1.125em;
  background: url(/wp-content/uploads/tel_icon.png) no-repeat center left/0.7916666667em;
  display: table;
  margin-right: 0;
  margin-left: auto;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
}
header .header_info_wrap .tel a {
  color: #35363B;
}
header .header_info_wrap .add {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
}
header .box {
  width: 100%;
}
@media (min-width: 1100px) {
  header .box {
    position: relative;
    display: table;
  }
}
header .title,
header .gnav {
  display: table-cell;
}
@media (min-width: 1100px) {
  header .title,
  header .gnav {
    height: 120px;
  }
}
@media (min-width: 1100px) {
  header .gnav {
    vertical-align: bottom;
    text-align: right;
  }
}
header .gnav ul {
  margin: 0;
  list-style: none;
  padding-left: 0;
  padding: 12px 0;
}
header .gnav ul li {
  margin: 0;
}
header .gnav ul li a {
  letter-spacing: 0.02em;
  padding: 0 0.875em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
}
header .gnav ul li a:hover {
  color: #D51616;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header {
  background: #fff;
  position: relative;
  z-index: 1000;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
header.active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-box-shadow: 0 0px 10px rgba(53, 54, 59, 0.08);
          box-shadow: 0 0px 10px rgba(53, 54, 59, 0.08);
}
@media (min-width: 1100px) {
  header.active .header_info_wrap {
    top: 0px;
  }
  header.active .header_info_wrap .header_info {
    top: 5px;
  }
  header.active .title {
    padding: 20px 0;
    min-height: auto;
  }
}
header .hdr-ttl-wrap {
  position: relative;
  z-index: 1;
  padding: 0.3em 6%;
}
header .hdr-ttl-wrap:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #35363B;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -300%;
  right: -300%;
  z-index: -1;
}
header .hdr-ttl-wrap .hdr-ttl {
  color: #fff;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: auto;
  max-width: 1709px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  header .hdr-ttl-wrap .hdr-ttl {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
header .header-inner > .container {
  position: relative;
  max-width: calc(1709px + 12%);
  padding: 0 6%;
  margin: auto;
}
header .title {
  margin: 0;
  font-size: 0;
  vertical-align: middle;
}
@media (min-width: 1100px) {
  header .title {
    padding: 30px 0;
  }
}
@media (max-width: 1099px) {
  header .title {
    padding: 16px 0;
  }
}
header .title a {
  display: block;
}
header .title a img {
  width: 286px;
  height: 66px;
}
@media (max-width: 1099px) {
  header .title a img {
    width: 212px;
    height: auto;
  }
}
header .hdr_text h1 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 0.3em 0;
  text-align: left;
  background: transparent;
  position: relative;
  margin-bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1099px) {
  header .hdr_text h1 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
header .hdr_text h1:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  z-index: -1;
  background: #D51616;
  position: absolute;
  top: 0;
  left: -300%;
  right: -300%;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1099px) {
  header .btn-gnavi {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 100;
    bottom: auto;
    right: 4.5%;
    margin: 0 auto;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    overflow: hidden;
    z-index: 50;
  }
  header .btn-gnavi:after, header .btn-gnavi:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 4px;
    background: #D51616;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  header .btn-gnavi:before {
    top: 0;
  }
  header .btn-gnavi:after {
    bottom: 0;
  }
  header .btn-gnavi span {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 4px;
    background: #D51616;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  header .btn-gnavi.close:not(.fix) {
    background: none;
  }
  header .btn-gnavi.close:not(.fix):before {
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
            transform: translate(0, -50%) rotate(45deg);
    background: #D51616;
  }
  header .btn-gnavi.close:not(.fix):after {
    bottom: 50%;
    -webkit-transform: translate(0, 50%) rotate(-45deg);
            transform: translate(0, 50%) rotate(-45deg);
    background: #D51616;
  }
  header .btn-gnavi.close:not(.fix) span {
    -webkit-transform: translate(100%, -50%);
            transform: translate(100%, -50%);
  }
}
header.menu_open .gnav > ul {
  visibility: visible;
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}
header .btn-gnavi {
  display: none;
}
@media (max-width: 1099px) {
  header .btn-gnavi {
    display: block;
  }
}
@media (min-width: 1100px) {
  header .gnav > ul > li.has_under {
    position: relative;
  }
  header .gnav > ul > li.has_under > a {
    padding-right: 1.5em;
  }
  header .gnav > ul > li.has_under > a:after {
    border-color: #35363B;
    width: 6px;
    height: 6px;
    -webkit-transform: translate(0, -50%) rotate(135deg);
            transform: translate(0, -50%) rotate(135deg);
  }
  header .gnav > ul > li.has_under > a.menu_under_open:after {
    -webkit-transform: translate(0) rotate(-45deg);
            transform: translate(0) rotate(-45deg);
  }
  header .gnav > ul > li.has_under ul {
    position: absolute;
    min-width: 230px;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    top: 100%;
    letter-spacing: -0.4em;
    z-index: 52;
    background: transparent;
  }
  header .gnav > ul > li.has_under ul li {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  header .gnav > ul > li.has_under ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  header .gnav > ul > li.has_under ul li a {
    background: rgba(213, 22, 22, 0.96);
    padding: 1em;
    overflow-wrap: break-word;
    display: block;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .gnav > ul > li.has_under ul li a:hover {
    background: rgba(166.7744680851, 17.2255319149, 17.2255319149, 0.96);
  }
}
@media (max-width: 1099px) {
  header .gnav > ul {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 2;
    margin: 0 -4.5%;
  }
}
header .gnav > ul > li {
  display: inline-block;
}
@media (max-width: 1099px) {
  header .gnav > ul > li {
    background: rgba(213, 22, 22, 0.96);
    margin: 0;
    display: block;
  }
  header .gnav > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
header .gnav > ul > li a {
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
}
@media (max-width: 1199px) {
  header .gnav > ul > li a {
    font-size: 1.6rem;
    padding: 0em 0.625em;
  }
}
@media (max-width: 1099px) {
  header .gnav > ul > li a {
    color: #fff;
    padding: 1em 11%;
    text-align: left;
    display: block;
  }
}
header .gnav > ul > li.has_under > a {
  position: relative;
}
header .gnav > ul > li.has_under > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 6%;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #35363B;
  border-right: 2px solid #35363B;
  -webkit-transform: translate(0, -50%) rotate(135deg);
          transform: translate(0, -50%) rotate(135deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 1099px) {
  header .gnav > ul > li.has_under > a:after {
    border-color: #fff;
    right: 11%;
  }
}
header .gnav > ul > li.has_under > a.menu_under_open:after {
  -webkit-transform: translate(0, 0) rotate(-45deg);
          transform: translate(0, 0) rotate(-45deg);
}
header .gnav > ul > li.has_under > ul {
  min-width: 230px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}
header .gnav > ul > li.has_under > ul > li {
  padding: 0;
  margin: 0;
}
@media (max-width: 1099px) {
  header .gnav > ul > li.has_under > ul > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  header .gnav > ul > li.has_under > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
header .gnav > ul > li.has_under > ul a {
  background: rgba(213, 22, 22, 0.96);
  display: block;
  text-align: left;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1099px) {
  header .gnav > ul > li.has_under > ul a {
    background: rgba(182.9534042553, 18.8965957447, 18.8965957447, 0.96);
  }
}
header .gnav > ul > li.has_under > ul a:hover {
  background: rgba(166.7744680851, 17.2255319149, 17.2255319149, 0.96);
}

@media (max-width: 767px) {
  .mv-pc-only {
    display: none !important;
  }
}

.mv-sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .mv-sp-only {
    display: block !important;
  }
}

.mv .mv-inner {
  position: relative;
}
.mv .slick {
  margin: auto;
  overflow: hidden;
  padding-left: 0;
  position: relative;
  height: 0;
  padding-top: 38.8020833333%;
}
@media (max-width: 767px) {
  .mv .slick {
    padding-top: 82.9333333333%;
  }
}
.mv .slick .slick-list {
  top: 0;
  left: 0%;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0%;
  margin: auto;
  position: absolute;
}
.mv .slick .slick-list .slick-track {
  top: 0;
  left: 0%;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0%;
  margin: auto;
  position: absolute;
}
.mv .slick li {
  top: 0;
  left: 0%;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0%;
  margin: auto;
  position: absolute;
}
.mv .slick li > img {
  position: absolute;
  top: 0;
  left: -300%;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: -300%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .mv-copy {
  position: absolute;
  top: 0;
  padding-left: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  list-style: none;
  z-index: 1;
  margin: auto;
}
.mv .mv-copy li:nth-of-type(1) img {
  max-width: none;
  width: 30.7291666667%;
  top: auto;
  left: auto;
  right: 5.3125%;
  bottom: 9.5302013423%;
  position: absolute;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 767px) {
  .mv .mv-copy li:nth-of-type(1) img {
    width: 57.7333333333%;
    bottom: 5.3054662379%;
    left: auto;
    right: 3.3333333333%;
  }
}
.mv .mv-copy li:nth-of-type(2) img {
  max-width: none;
  width: 40.2604166667%;
  top: 0%;
  left: auto;
  right: 0%;
  bottom: 0%;
  position: absolute;
  margin: auto;
}
@media (max-width: 767px) {
  .mv .mv-copy li:nth-of-type(2) img {
    width: 44.6666666667%;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0;
  }
}
.mv .mv-copy li.new_open img {
  max-width: none;
  width: 18.0208333333%;
  top: auto;
  left: 15.625%;
  right: auto;
  bottom: 9.5302013423%;
  position: absolute;
  margin: auto;
}
@media (max-width: 767px) {
  .mv .mv-copy li.new_open img {
    width: 33.7333333333%;
    top: 12.7009646302%;
    bottom: auto;
    left: 5.6%;
    right: auto;
    margin: auto;
  }
}

footer {
  position: relative;
  background: #fff;
  color: #35363B;
  border-top: solid 1px rgba(53, 54, 59, 0.2);
}
@media (max-width: 767px) {
  footer {
    border-top: 1px solid #35363b;
  }
}
@media (min-width: 768px) {
  footer > .footer {
    padding-top: 20px;
  }
}
footer > .footer .container {
  max-width: none;
  padding: 0;
}
footer .pagetop {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 100;
}
footer .pagetop a {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  background: #D51616;
}
@media (min-width: 768px) {
  footer .pagetop a {
    width: 70px;
    height: 70px;
  }
}
footer .pagetop a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #35363B;
  border-left: 2px solid #35363B;
  -webkit-transform: translate(-50%, -20%) rotate(45deg);
          transform: translate(-50%, -20%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
footer.high .pagetop {
  position: absolute;
  bottom: auto;
  right: 5%;
  top: 0;
  margin: 0;
  -webkit-transform: translateY(-95%);
          transform: translateY(-95%);
}
footer .nav ul {
  list-style: none;
  padding-left: 0;
  text-align: center;
  margin: 0;
}
footer .nav ul li {
  margin: 0;
  display: inline-block;
  color: #35363B;
}
@media (min-width: 768px) {
  footer .nav ul li:not(:last-child) {
    border-right: 1px solid rgba(53, 54, 59, 0.5);
  }
}
@media (max-width: 767px) {
  footer .nav ul li {
    display: block;
  }
  footer .nav ul li:not(:last-child) {
    border-bottom: 1px solid rgba(53, 54, 59, 0.4);
  }
}
footer .nav ul li a {
  padding: 0em 1.3em;
  line-height: 1.2857142857;
  color: #35363B;
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-transition: 0.3;
  transition: 0.3;
}
@media (max-width: 767px) {
  footer .nav ul li a {
    padding: 1em 1.5em;
  }
}
footer .nav ul li a:hover {
  color: #D51616;
  -webkit-transition: 0.3;
  transition: 0.3;
}
footer .copyright {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 10px 0;
  position: relative;
  background: #35363B;
  color: #fff;
}
@media (min-width: 768px) {
  footer .copyright {
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  footer .copyright {
    padding: 14px 0;
  }
}

table {
  margin: 0 auto;
  border-spacing: 0;
  width: 100%;
}
table td,
table th {
  padding: 0.7em 0.5em;
}
table th {
  text-align: center;
  font-weight: normal;
}
table.table-typeC thead {
  background: #D51616;
}
table.table-typeC tbody {
  color: #35363B;
}

.table-type1 {
  width: 100%;
}
.table-type1 caption {
  margin-bottom: 0.5em;
  text-align: center;
}
.table-type1 td,
.table-type1 th {
  border: 1px solid rgb(38.5196428571, 39.2464285714, 42.8803571429);
}
.table-type1 th {
  background: rgb(38.5196428571, 39.2464285714, 42.8803571429);
  color: #fff;
  text-align: left;
}
.table-type1 td {
  background: transparent;
}
.table-type1 tr:not(:last-child) td {
  border-bottom: 0;
}
.table-type1 tr:not(:first-child) th {
  border-bottom: 0;
  border-top: 1px solid #fff;
}

.table-type2 {
  width: 100%;
}
.table-type2 caption {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
}
.table-type2 td,
.table-type2 th {
  padding: 0.7em 1em;
  border-top: 1px solid rgb(38.5196428571, 39.2464285714, 42.8803571429);
  border-bottom: 1px solid rgb(38.5196428571, 39.2464285714, 42.8803571429);
}
@media (max-width: 767px) {
  .table-type2 td,
  .table-type2 th {
    padding: 0.7em 0.3em;
  }
}
.table-type2 tbody th {
  text-align: left;
}
.table-type2 td:last-child {
  text-align: right;
  white-space: nowrap;
}

.table-type3 {
  width: 100%;
}
.table-type3 td,
.table-type3 th {
  border: 1px solid rgb(38.5196428571, 39.2464285714, 42.8803571429);
  padding: 0.7em 1em;
  text-align: center;
}
@media (max-width: 767px) {
  .table-type3 td,
  .table-type3 th {
    padding: 0.7em 0.3em;
  }
}
@media (max-width: 400px) {
  .table-type3 td,
  .table-type3 th {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.table-type3 thead th {
  background: rgb(38.5196428571, 39.2464285714, 42.8803571429);
  color: #fff;
}
.table-type3 thead th:not(:first-child) {
  border-left: 1px solid #fff;
}
.table-type3 tbody th {
  background: rgba(38.5196428571, 39.2464285714, 42.8803571429, 0.15);
}
.table-type3 tbody th:not(:last-child) {
  border-right: 0;
}
.table-type3 tbody tr:not(:first-child) td,
.table-type3 tbody tr:not(:first-child) th {
  border-top: 0;
}
.table-type3 td {
  background: transparent;
}
.table-type3 td:not(:last-child) {
  border-right: 0;
}

h1:not(.title):not(.hdr-ttl) {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.5;
  background: #35363B;
  margin: 0 0 0.5em 0;
  padding: 0.9em 4.5%;
  position: relative;
  color: #fff;
}
@media (max-width: 767px) {
  h1:not(.title):not(.hdr-ttl) {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0 0 1.5em 0;
  position: relative;
  word-wrap: break-word;
  position: relative;
  padding-top: 1.0714285714em;
  line-height: 1.6428571429;
  text-align: center;
  z-index: 4;
  color: #35363B;
}
@media (max-width: 767px) {
  h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
h2:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  margin: auto;
  width: 60px;
  height: 4px;
  background: #D51616;
}

h3 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 0 0 0.5em 0;
  padding-left: 16px;
  position: relative;
  word-wrap: break-word;
  line-height: 1.5;
  color: #35363B;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}
h3::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: calc(100% - 0.6em);
  top: 0;
  left: 0;
  bottom: 0;
  background: #D51616;
  margin: auto;
}
h3 small {
  font-size: 16px;
  display: inline-block;
}
@media (max-width: 767px) {
  h3 small {
    font-size: 14px;
  }
}

h4 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 0 0 0.4em 0;
  padding-left: 12px;
  color: #35363B;
  position: relative;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  h4 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  h4 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
h4::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 2px;
  left: 0;
  top: 0.9em;
  background: #D51616;
}
h4.price_h4 {
  border-bottom: solid 1px #35363B;
  padding-left: 0;
  padding-bottom: 10px;
}
h4.price_h4::before {
  content: none;
}
h4.price_h4.plus {
  margin-bottom: 3em;
  text-align: center;
}
h4.price_h4.plus::before {
  background-color: #35363B;
  border-radius: 50%;
  color: #fff;
  content: "＋";
  counter-increment: number;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8em;
  font-weight: bold;
  height: 1.6em;
  line-height: 1.1em;
  margin-right: 0.2em;
  padding: 3px 1px 1px 3px;
  text-align: center;
  width: 1.6em;
  font-family: "Roboto Condensed", sans-serif;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  margin: auto;
}

[href^=tel] {
  text-decoration: none !important;
  display: inline-block;
}
@media (min-width: 767px) {
  [href^=tel] {
    pointer-events: none !important;
  }
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.anchor_sec {
  margin-top: -140px;
  padding-top: 140px;
}
@media (max-width: 767px) {
  .anchor_sec {
    margin-top: -80px;
    padding-top: 80px;
  }
}

.text-right {
  text-align: right;
}

[id^=top-] {
  margin-bottom: 100px;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  [id^=top-] {
    margin-bottom: 70px;
    margin-bottom: 7rem;
  }
}
[id^=top-] .container {
  max-width: calc(1200px + 12%);
  padding: 0 6%;
}
[id^=top-] h1,
[id^=top-] h2,
[id^=top-] h3,
[id^=top-] h4 {
  font-family: "Roboto Condensed", "BIZ UDGothic", sans-serif;
}
[id^=top-] h2 {
  margin-bottom: 45px;
  margin-bottom: 4.5rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  [id^=top-] h2 {
    margin-bottom: 30px;
    margin-bottom: 3rem;
  }
}
[id^=top-] h2.en {
  z-index: 0;
}
[id^=top-] h2.en::after {
  content: "";
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  color: #F1F1F1;
  text-align: center;
  font-size: 134px;
  font-style: italic;
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  z-index: -1;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  [id^=top-] h2.en::after {
    font-size: 70px;
    top: -35px;
  }
}
[id^=top-] h2.en.concept::after {
  content: "POINT";
  color: #fff;
}
[id^=top-] h2.en.about::after {
  content: "ABOUT";
}
[id^=top-] p:not(.more):not(.tel):not(.fax):not(.table-info p) {
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  [id^=top-] p:not(.more):not(.tel):not(.fax):not(.table-info p) {
    letter-spacing: 0.02em;
  }
}
[id^=top-] h3 {
  color: #35363B;
}
[id^=top-] figure img {
  display: block;
}

@media (min-width: 768px) {
  .btn.pc-left a {
    margin-left: 0;
  }
}

#top-inst {
  margin-top: 110px;
}
@media (max-width: 767px) {
  #top-inst {
    margin-top: 70px;
  }
}
#top-inst .demo {
  background: #DADADA;
  width: 100%;
  height: 400px;
}
@media (max-width: 767px) {
  #top-inst .demo {
    height: 200px;
  }
}
#top-inst .demo p {
  text-align: center;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
#top-inst .btn {
  margin-top: 60px;
}
@media (max-width: 767px) {
  #top-inst .btn {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  #top-about .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#top-about h2 .ttl_name_en {
  color: #D51616;
  font-size: 110%;
  font-weight: 500;
}
@media (min-width: 768px) {
  #top-about .text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  #top-about .text {
    margin-top: 30px;
  }
}
#top-about .img {
  margin-top: 50px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #top-about .img {
    margin-top: 0;
  }
}
#top-about .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1200/400;
}
@media (max-width: 767px) {
  #top-about .img img {
    aspect-ratio: 800/533;
  }
}
#top-about .btn {
  margin-top: 40px;
}
@media (max-width: 767px) {
  #top-about .btn {
    margin-top: 30px;
  }
}

#top-concept {
  position: relative;
  z-index: 0;
  background: #F1F1F1;
  padding: 110px 0 90px;
}
@media (max-width: 767px) {
  #top-concept {
    padding: 90px 0 70px;
  }
}
#top-concept .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px 1.5625vw;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#top-concept .box > * {
  width: calc((100% - 1.5625vw * 2) / 3 - 1px);
}
@media (max-width: 767px) {
  #top-concept .box > * {
    width: 100%;
  }
}
#top-concept .card-item {
  padding: 5px;
  background: #fff;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
#top-concept .img {
  position: relative;
}
#top-concept .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 364/240;
}
#top-concept .text {
  padding: 32px 1.5625vw;
}
@media (max-width: 767px) {
  #top-concept .text {
    padding: 30px 4%;
  }
}
#top-concept .txt {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}
#top-concept .card-h3 {
  padding-left: 0;
  font-size: 24px;
  color: #35363B;
  text-align: center;
  margin-bottom: 0.75em;
  font-weight: 600;
}
@media (max-width: 1023px) {
  #top-concept .card-h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  #top-concept .card-h3 {
    font-size: 18px;
    text-align: left;
  }
}
#top-concept .card-h3::before {
  content: none;
}
#top-concept .btn {
  margin-top: 60px;
}
@media (max-width: 767px) {
  #top-concept .btn {
    margin-top: 30px;
  }
}

#top-doctor {
  background: #F1F1F1;
  padding: 110px 0;
}
@media (max-width: 767px) {
  #top-doctor {
    padding: 70px 0 80px;
  }
}
@media (min-width: 768px) {
  #top-doctor .box {
    display: grid;
    gap: 10px 3.3333333333%;
    grid-template: "text img"/50% 46.6666666667%;
  }
  #top-doctor .box.reverse {
    grid-template: "img text"/46.6666666667% 50%;
  }
  #top-doctor .box.reverse .img {
    justify-self: end;
  }
}
#top-doctor .img {
  grid-area: img;
  justify-self: start;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  #top-doctor .img {
    margin-bottom: 26px;
  }
}
#top-doctor .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  #top-doctor .img img {
    position: static;
  }
}
#top-doctor .text-box {
  grid-area: text;
}
@media (min-width: 768px) {
  #top-doctor .text-box {
    padding: 2.6041666667vw 0;
  }
}
#top-doctor .name {
  font-weight: normal;
  padding: 0;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
  background: #35363B;
  display: table;
  color: #fff;
  padding: 5px 10px;
}
@media (max-width: 767px) {
  #top-doctor .name {
    margin-bottom: 18px;
    text-align: center;
  }
}
#top-doctor .name .name_small {
  font-size: 20px;
  display: inline-block;
  margin-right: 0.95em;
}
#top-doctor .name:before, #top-doctor .name:after {
  content: none;
}
#top-doctor p:not(.btn) {
  line-height: 1.875;
  letter-spacing: 0.05em;
}
#top-doctor .btn {
  margin-top: 40px;
}
@media (max-width: 767px) {
  #top-doctor .btn {
    margin-top: 30px;
  }
}

/* ===============================================
# 下層
=============================================== */
.table-price {
  border-collapse: collapse;
  padding: 2px;
  background: #fff;
  border: 1px solid #999;
  width: 100%;
  margin: auto;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .table-price th,
  .table-price td {
    font-size: 12px;
  }
}
.table-price tr {
  border: 1px solid #999;
}
.table-price th {
  background: rgba(53, 54, 59, 0.1);
  padding: 15px 20px;
  border: 1px solid #999;
  text-align: center;
  font-weight: bold;
}
.table-price td {
  border: 1px solid #999;
  padding: 15px 20px;
  vertical-align: middle;
  text-align: right;
}
.table-price.th_left th {
  text-align: left;
}
.table-price small {
  line-height: 1.2;
}

body:not(.home) .under_mb > div:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  body:not(.home) .under_mb > div:not(:last-child) {
    margin-bottom: 30px;
  }
}
body:not(.home) h3 {
  padding-left: 0;
  background: #35363B;
  padding: 0.7em 0.8em;
  color: #fff;
  font-size: 20px;
}
@media (max-width: 767px) {
  body:not(.home) h3 {
    font-size: 18px;
  }
}
body:not(.home) h3::before {
  content: none;
}
body:not(.home) .u_number_list_2 {
  counter-reset: number;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
body:not(.home) .u_number_list_2 li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
  margin-right: 2%;
  width: 100%;
  gap: 10px;
}
body:not(.home) .u_number_list_2 li span.inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.5;
}
body:not(.home) .u_number_list_2 li:last-child {
  margin-bottom: 0;
}
body:not(.home) .u_number_list_2 li::before {
  background-color: #35363B;
  border-radius: 50%;
  color: #fff;
  content: counter(number);
  counter-increment: number;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8em;
  font-weight: bold;
  height: 1.6em;
  line-height: 1.1em;
  margin-right: 0.2em;
  padding: 2px;
  text-align: center;
  width: 1.6em;
  font-family: "Roboto Condensed", sans-serif;
}
body:not(.home) .u_number_list_2 .ttl {
  font-weight: 600;
  display: block;
  margin-bottom: 0.3em;
  font-size: 16px;
}
body:not(.home) .u_number_list_2 .inner {
  font-size: 15px;
}
body:not(.home) .u_number_list_2.img_list li {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
body:not(.home) .u_number_list_2.img_list li .ttl {
  display: block;
  width: calc(100% - 1.6em);
}
@media (max-width: 767px) {
  body:not(.home) .u_number_list_2.img_list .col:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  body:not(.home) .u_number_list_2.img_list .img_wrap {
    max-width: 200px;
  }
}
body:not(.home) .u_number_list_2.img_list .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}
body:not(.home) .u_number_list_2.img_list .row {
  width: 100%;
}
@media (min-width: 768px) {
  body:not(.home) .u_number_list_2.list_col2 {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(6, auto);
  }
}
@media (min-width: 768px) {
  body:not(.home) .u_number_list_2.list_img_col2 {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
  }
  body:not(.home) .u_number_list_2.list_img_col2 li {
    margin-bottom: 0;
    margin-top: 15px;
  }
}
body:not(.home) .border_box {
  border: solid 1px rgba(53, 54, 59, 0.3);
  padding: 4%;
}
@media (max-width: 767px) {
  body:not(.home) .border_box {
    padding: 30px 4%;
  }
}
@media (min-width: 768px) {
  body:not(.home) .border_box.small {
    padding: 30px 20px;
  }
}
@media (min-width: 768px) {
  body:not(.home) .under_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  body:not(.home) .under_flex > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body:not(.home) .under_flex .border_box {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
body:not(.home) .highlight_small {
  background: rgba(213, 22, 22, 0.1);
  padding: 20px;
}

footer .foot_pay_box {
  border: solid 1px rgba(53, 54, 59, 0.5);
  padding: 22px 3.0208333333vw;
  display: table;
  margin: 20px auto 40px;
}
@media (max-width: 767px) {
  footer .foot_pay_box {
    width: 90%;
    margin: 30px auto;
  }
}
footer .foot_pay_box .foot_pay_ttl {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  font-family: "Roboto Condensed", "BIZ UDGothic", sans-serif;
}
@media (max-width: 767px) {
  footer .foot_pay_box .foot_pay_ttl {
    font-size: 16px;
  }
}
footer .foot_pay_box figure {
  max-width: 800px;
  margin: auto;
}
footer .foot_pay_box .alipay {
  max-width: 113px;
}
@media (max-width: 767px) {
  footer .foot_pay_box .coin_p {
    margin: 20px auto;
  }
}

#ftr_info {
  z-index: 101;
  width: 100%;
  display: none;
  left: 0;
}
#ftr_info .container {
  padding: 0;
  margin: 0;
}
#ftr_info .pc {
  background: rgba(51, 51, 51, 0.8);
}
@media (max-width: 1023px) {
  #ftr_info .pc {
    display: none;
  }
}
#ftr_info .pc .box {
  padding: 10px 6%;
  max-width: calc(1200px + 12%);
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.25vw;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#ftr_info .pc .box > * {
  width: calc((100% - 1.25vw * 2) / 3 - 1px);
}
@media (max-width: 767px) {
  #ftr_info .pc .box > * {
    width: 100%;
  }
}
#ftr_info .pc .foot_cta {
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}
#ftr_info .pc .btn {
  margin: 0;
}
#ftr_info .pc .btn a {
  padding: 0.8em 1em;
  color: #fff;
  background: #D51616;
  font-size: clamp(14px, 1.0980966325vw, 16px);
  font-weight: normal;
  border: solid 1px #fff;
  width: 100%;
  max-width: none;
}
#ftr_info .pc .btn a::before {
  content: none;
}
#ftr_info .pc .btn a span.icon {
  padding-left: 34px;
  padding-right: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
}
#ftr_info .pc .btn.line a {
  background: #D51616;
}
#ftr_info .pc .btn.line a:hover {
  background: rgb(185.2646808511, 19.1353191489, 19.1353191489);
}
#ftr_info .pc .btn.line span.icon {
  background: url(/wp-content/uploads/line_icon.svg) no-repeat left center/22px;
}
#ftr_info .pc .btn.tel a {
  background: #35363B;
}
#ftr_info .pc .btn.tel a:hover {
  background: rgb(38.5196428571, 39.2464285714, 42.8803571429);
}
#ftr_info .pc .btn.tel span.icon {
  padding-left: 24px;
  background: url(/wp-content/uploads/tel_icon_2.svg) no-repeat left center/14px;
}
#ftr_info .sp {
  display: none;
  border-top: solid 1px rgba(255, 255, 255, 0.5);
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  background: #fff;
}
@media (max-width: 1023px) {
  #ftr_info .sp {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
#ftr_info .sp > * {
  width: 100%;
}
#ftr_info .sp > *:not(:last-child) {
  position: relative;
}
#ftr_info .sp > *:not(:last-child):before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 0.4);
  width: 1px;
}
#ftr_info .sp .ftr_btn {
  padding: 6px 0 2px;
  background: #D51616;
}
#ftr_info .sp .ftr_btn.btn_no02 {
  background: #35363B;
}
#ftr_info .sp .ttl {
  text-align: center;
  margin-top: 2px;
}
#ftr_info .sp .icon {
  max-width: 20px;
  margin: auto;
}
#ftr_info .sp .icon.tel {
  max-width: 14px;
}
#ftr_info .sp .icon img {
  width: 100%;
}
#ftr_info .sp a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  display: grid;
  font-weight: bold;
}

/*=========
faq
=========*/
/*=========
accordion
=========*/
.accordion_area .accordion_one .ac_header {
  border-top: 1px solid #ccc;
  padding: 35px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.accordion_area .accordion_one:last-child {
  border-bottom: 1px solid #ccc;
}

.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

.accordion_area .accordion_one .ac_header .i_box:before,
.accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}

.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #35363B;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #35363B;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}

.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 0px 35px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 767px) {
  .accordion_area .accordion_one .ac_header {
    padding: 1.5rem 3rem 1.5rem 1rem;
  }
  .accordion_area .accordion_one .ac_header .i_box {
    right: 0.8rem;
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
  .accordion_area .accordion_one .ac_header .i_box:before {
    width: 15px;
  }
  .accordion_area .accordion_one .ac_header .i_box:after {
    height: 15px;
    right: 7px;
  }
  .accordion_area .accordion_one .ac_inner {
    padding: 0 1.5rem 1.5rem 1rem;
  }
}
/*=========
faq
=========*/
.p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}

.p-faq__headinner::before {
  position: absolute;
  left: 0;
  content: "Q";
  color: #35363B;
  font-size: 2.4rem;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}

.p-faq__headinner p.p-faq__q-txt {
  font-size: 18px;
}

@media screen and (max-width: 736px) {
  .p-faq__headinner {
    padding-left: 25px;
  }
  .p-faq__headinner::before {
    font-size: 18px;
  }
  .p-faq__headinner p.p-faq__q-txt {
    font-size: 14px;
  }
}
.p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}

.p-faq__bodyinner::before {
  position: absolute;
  left: 0;
  content: "A";
  color: #D51616;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}

.p-faq__bodyinner p.p-faq__a-txt {
  font-size: 16px;
}

@media (max-width: 767px) {
  .p-faq__bodyinner {
    padding-left: 25px;
  }
  .p-faq__bodyinner::before {
    font-size: 18px;
  }
  .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 14px;
  }
}
/* ===============================================
# qaここまで
=============================================== */
.list_step .list_step_item {
  position: relative;
  padding-bottom: 38px;
}
.list_step .list_step_item::before {
  content: "";
  width: 1px;
  background: #D51616;
  display: block;
  position: absolute;
  top: 68px;
  left: 30px;
  bottom: 4px;
}
@media (max-width: 767px) {
  .list_step .list_step_item::before {
    top: 54px;
    left: 23px;
    bottom: 4px;
  }
}
.list_step .list_step_item:last-of-type {
  padding-bottom: 0;
}
.list_step .list_step_item:last-of-type::before {
  content: none;
}
.list_step .list_step_num {
  background: #D51616;
  color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 10px 0;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.2;
  font-size: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .list_step .list_step_num {
    width: 50px;
    height: 50px;
  }
}
.list_step .list_step_num span {
  display: block;
  font-size: 26px;
  line-height: 1;
}
@media (max-width: 767px) {
  .list_step .list_step_num span {
    font-size: 16px;
  }
}
.list_step .list_step_itm_main {
  padding-left: 86px;
  position: relative;
  padding-top: 8px;
}
@media (max-width: 767px) {
  .list_step .list_step_itm_main {
    padding-left: 62px;
    padding-top: 11px;
  }
}
.list_step .list_step_itm_main h4 {
  color: #35363B;
  padding-left: 0;
  margin-bottom: 20px;
  font-size: 22px;
}
@media (max-width: 767px) {
  .list_step .list_step_itm_main h4 {
    font-size: 18px;
  }
}
.list_step .list_step_itm_main h4:before {
  content: none;
}

body:not(.home) .premium_ttl big {
  display: block;
}
body:not(.home) .premium_ttl small {
  display: block;
  font-size: 18px;
}
body:not(.home) .premium_img_box12 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 20px;
}
body:not(.home) .premium_img_box12 > * {
  width: calc((100% - 100px) / 6 - 1px);
}
@media (max-width: 767px) {
  body:not(.home) .premium_img_box12 > * {
    width: calc((100% - 20px) / 2 - 1px);
  }
}
body:not(.home) .premium_img_box12 figcaption {
  text-align: left;
  font-size: 14px;
}
body:not(.home) .u_img_left {
  text-align: left;
}
body:not(.home) .premium_small_img img {
  max-width: 200px;
}
body:not(.home) .color_main {
  color: #D51616;
}
body:not(.home) .mb10 {
  margin-bottom: 10px !important;
}
body:not(.home) .u_option_sec figure img {
  max-width: 257px;
}

.price_pay_box figure {
  max-width: 800px;
  margin: auto;
}
.price_pay_box .alipay {
  max-width: 113px;
}
@media (max-width: 767px) {
  .price_pay_box .coin_p {
    margin: 20px auto;
  }
}

h3 .ruby {
  display: block;
  font-size: 50%;
}

.mt20 {
  margin-top: 20px !important;
}

.mt10 {
  margin-top: 10px !important;
}

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

.text-red {
  color: red;
}

.yt-shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 3列 */
  gap: 20px;
  margin: 0 auto;
}

.yt-shorts-item iframe {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 10px;
  background: #000;
}

/* スマホでは2列 or 1列に調整 */
@media (max-width: 767px) {
  .yt-shorts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
#top-YouTube {
  margin-bottom: 110px;
}
@media (max-width: 767px) {
  #top-YouTube {
    margin-bottom: 70px;
  }
}
#top-YouTube .btn {
  margin-top: 50px;
}
@media (max-width: 767px) {
  #top-YouTube .btn {
    margin-top: 30px;
  }
}/*# sourceMappingURL=main.css.map */