@charset "utf-8";

/* =========================

  base

=========================*/
:root {
  /*color*/
  --fontcolor: #3C3C3C;
  --maincolor: #27A1B5;
  --maincolor-hover: #60B7C5;
  --subcolor: #0E7788;
  --subcolor-hover: #0C899D;
  --accentcolor: #FAF582;
  --red: #C76276;
  --bgcolor: #E9F6F8;
  --font: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --border-color: #E5E5E5;
}

body {
  color: var(--fontcolor);
  font-size: 16px;
  font-family: var(--font);
  line-height: 2em;
  background-color: #FDFEFF;
  letter-spacing: 0.08em;
  scroll-behavior: smooth;
}
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}
a {
  color: var(--fontcolor);
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
a:hover {
  opacity: .6;
}
section a {
  color: var(--maincolor);
  text-decoration: underline;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.wrapper {
  overflow: hidden;
}
@media screen and (max-width:750px) {
  body {
    font-size: 15px;
    line-height: 1.8em;
  }
}
/* ------------------------
  icon
------------------------*/
.icon {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 100vw;
  width: 35px;
  height: 35px;
  display: inline-block;
  position: relative;
  margin-right: 12px;
}
.icon_online::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_online.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 28px;
  height: 45px;
  vertical-align: text-bottom;
}
.icon.icon_online::before {
  content: "";
  width: 14px;
  height: 23px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.icon_online_w::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_online_w.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 24px;
  height: 39px;
  vertical-align: text-bottom;
}
.icon_face-to-face::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_face-to-face.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 23px;
  height: 25px;
  vertical-align: text-bottom;
}
.icon.icon_face-to-face::before {
  content: "";
  width: 15px;
  height: 17px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.icon_home::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_home.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 25px;
  height: 26px;
  vertical-align: text-bottom;
}
.icon.icon_home::before {
  content: "";
  width: 20px;
  height: 19px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

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

/* ------------------------
  contents
------------------------*/
.section__contents {
  margin-bottom: 180px;
}
.section__contents__inner {
  width: 1200px;
  margin: auto;
}
.section__contents p {
  margin-bottom: 30px;
}
.section__contents p:last-child {
  margin-bottom: 0;
}
.section__contents p a:hover {
  opacity: 0.6;
}
@media screen and (max-width:1250px) {
  .section__contents__inner {
    width: 90%
  }
}
@media screen and (max-width:750px) {
  .section__contents {
    margin-bottom: 60px;
  }
  .section__contents p {
    margin-bottom: 20px;
    text-align: left;
  }
  .img__area img {
    width: 100%;
  }
}

/* ------------------------
  ttl
------------------------*/
h2 {
  font-size: clamp(25px, 3vw, 32px);
  text-align: center;
  letter-spacing: 0.15em;
  font-weight: 700;
  line-height: 1.4em;
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
  padding-bottom: 35px;
  text-align: center;
}
h2::before {
  width: 90px;
  height: 2px;
  content: "";
  position: absolute;
  background-color: var(--maincolor);
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.section__ttl {
  font-family: var(--font);
  text-align: center;
  display: flex;
  flex-flow: column;
  margin-bottom: 70px;
  position: relative;
}
.section__ttl .subttl {
  color: var(--fontcolor);
  font-size: 1.3em;
  font-weight: 500;
  display: block;
  margin-top: 5px;
}
.section__ttl h2 {
  line-height: 1.1em;
  margin-bottom: 0;
}
h3 {
  font-family: var(--font);
  color: var(--maincolor);
  font-size: clamp(20px, 3.2vw, 22px);
  font-weight: 700;
  line-height: 1.6em;
  background-color: var(--bgcolor);
  margin: 50px 0 30px;
  padding: 8px 12px;
}
h4, .ttl_border {
  font-size: clamp(17px, 2vw, 18px);
  font-weight: 700;
  margin: 30px 0 12px;
  padding: 2px 0 2px 30px;
  position: relative;
}
h4::before, .ttl_border::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background-color: var(--maincolor);
  border-radius: 100vw;
}
@media screen and (max-width:750px) {
  h2, .feature_ttl {
    margin-bottom: 40px;
  }
  h2 {
    padding-bottom: 26px;
  }
  h2::before {
    width: 80px;
  }
  .subttl {
    font-size: 16px;
  }
  .section__ttl {
    display: block;
    margin-bottom: 50px;
  }
}

/* ------------------------
  btn
------------------------*/
/* base */
.btn_wrap {
  margin-top: 25px;
  gap: 1.5rem;
}
.btn {
  text-align: center;
  padding: 0 !important;
}
.btn a, .wp-block-button__link a,
.btn.shadow_btn .inner {
  font-family: var(--font);
  color: #FFFFFF;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid var(--maincolor);
  background-color: var(--maincolor);
  display: block;
  padding: 10px 36px;
  border-radius: 100vh;
  position: relative;
}
.btn a .arrow::before, .wp-block-button__lin .arrow::before,
.btn.shadow_btn .inner .arrow::before {
  border-color: #FFFFFF;
}
.wp-block-button__link {
  border: 1px solid var(--maincolor);
  background-color: var(--maincolor) !important;
}
.wp-block-button__link.wp-element-button {
  font-size: 1em;
  line-height: 1.4em;
  padding: 12px 56px !important;
  position: relative;
}
.wp-block-button__link {
  color: #FFFFFF !important;
}
.wp-block-button__link:hover {
  color: var(--maincolor) !important;
  border: 1px solid var(--maincolor);
  background-color: transparent !important;
}
a.wp-block-button__link.wp-element-button:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #FFFFFF;
  border-right: solid 1px #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  right: 30px;
}
/* hover時 */
.btn a:hover {
  color: var(--maincolor);
  background-color: transparent;
  border-color: var(--maincolor);
  border-radius: 100vh;
  opacity: 1.0;
}
.btn a:hover .arrow::before, .wp-block-button__link a:hover .arrow::before {
  border-color: var(--maincolor);
}
a.wp-block-button__link.wp-element-button:hover::before {
  border-top: solid 1px var(--maincolor);
  border-right: solid 1px var(--maincolor);
}

/* border */
.btn.btn_border a {
  color: var(--maincolor);
  border: 2px solid var(--maincolor);
  border-radius: 100vh;
  background-color: transparent;
}
.btn.btn_border a:hover {
  color: #FFFFFF;
  background-color: var(--maincolor);
  opacity: 1;
}
.btn.btn_border a .arrow::before {
  border-color: var(--maincolor);
}
.btn.btn_border a:hover .arrow::before {
  border-color: #FFFFFF;
}

/* shadow */
.btn.shadow_btn a {
  font-family: var(--font);
  color: var(--fontcolor);
  font-size: 1.3em;
  font-weight: 600;
  border-color: #FFFFFF;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 14px 0px rgba(97, 140, 200, .4);
  padding: 15px 56px;
  border: 3px solid #FFFFFF;
}
.btn.shadow_btn a:hover {
  opacity: 1.0;
  border-color: var(--maincolor);
}

@media screen and (max-width:750px) {
  .btn a {
    font-size: 16px !important;
    padding: 8px 40px;
  }
  .btn_wrap.flex.flex_center,
  .btn_wrap.flex {
    display: block;
    margin: 30px 0 0;
  }
  .btn_wrap .btn {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .btn_wrap .btn:last-child {
    margin-bottom: 0;
  }
}

/* ------------------------
  time_table, tag
------------------------*/
.tags {
  font-size: 12px;
  background-color: #666;
  color: #FFFFFF;
  display: table;
  width: 96px;
  text-align: center;
}
.tags .tags-txt {
  display: table-cell;
  vertical-align: middle;
}
.table_area {
  width: 600px;
}
.time_table {
  width: calc(100% - 62px);
  background-color: #FFFFFF;
  padding: 30px;
  border: 2px solid var(--maincolor);
  border-radius: 20px;
}
.time_table table {
  width: 100%;
}
.time_table table th, .time_table td {
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding: 6px 0;
  vertical-align: middle;
}
.time_table .last_time {
  display: flex;
  margin: 15px 0;
}
.time_table .last_time dd {
  width: 70%;
}
.time_table .last_time ul {
  display: flex;
  flex-wrap: wrap;
}
.time_table .last_time ul li {
  margin: 0 10px 5px 0;
}
.time_table .closed_day {
  font-size: 0.9em;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.time_table .tag_des.tag_border,
.time_table .closed_day .tag_des {
  margin-right: 10px;
}
.time_table .tag_des.tag_border,
.time_table .last_time dd {
  margin-left: 12px;
}
.time_table .closed_day .tag_des {
  color: #FFFFFF;
  line-height: 1.4em;
  background-color: var(--accentcolor);
  border-radius: 100vw;
  border-color: var(--accentcolor);
}
.time_table .last_time {
  display: block;
}
.time_table .last_time dt {
  width: 100%;
  line-height: 1.4em;
  text-align: left;
  margin-bottom: 10px;
}
.time_table .tag_des.tag_border, .time_table .last_time dd {
  width: 100%;
  margin-left: 0;
}
.time_table td {
  color: var(--maincolor);
}
.time_table .circle {
  font-size: 1.3em;
}
.time_table .ttl_border {
  font-family: var(--font);
  color: var(--maincolor);
  font-size: 1em;
  line-height: 1.8em;
  margin: 0 0 10px;
}
@media screen and (max-width:1024px) {
  .time_table.w70 {
    width: auto;
  }
}
@media screen and (max-width:750px) {
  .time_table {
    width: calc(100% - 40px);
    padding: 20px;
  }
  .time_table .tag_des.tag_border,
  .time_table .closed_day .tag_des {
    font-size: 13px;
  }
}


/* =========================

  block

=========================*/

/* ------------------------
  -- link block
------------------------*/
.link__block {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.megamenu .link__block {
  gap: .5rem;
}
.link__block li {
  width: calc(100% / 5 - 15px);
  height: 94px;
  border: 1px solid var(--maincolor);
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  display: table;
}
.link__block li:last-child,
.link__block li:nth-child(4n) {
  margin-right: 0;
}
.link__block li a {
  color: var(--maincolor);
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4em;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  transition: none;
  padding: 10px;
  transition: all 0.3s ease 0s;
}
.link__block li:hover {
  color: #FFFFFF;
  background-color: var(--maincolor);
  transition: all 0.5s ease 0s;
}
.link__block li:hover a {
  color: #FFFFFF;
}
.link__block .no_post li {
  width: 100%;
  background-color: transparent;
  border: none; 
  font-weight: normal;
}
.link__block .no_post li:hover {
  color: #5F5F5F;
}
.shadow__block__arrow li {
  border: 2px solid #FFFFFF;
}
.shadow__block__arrow li a {
  position: relative;
  box-shadow: 0px 0px 9px 0px rgba(58, 114, 203, .1);
}
.shadow__block__arrow li a::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}
.shadow__block__arrow li:hover {
  background-color: #FFFFFF;
  border: 2px solid var(--maincolor);
}
.shadow__block__arrow li:hover a {
  color: var(--maincolor);
  transition: all 0.5s ease 0s;
}
.shadow__block__arrow li a p {
  padding-right: 40px;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width:1024px) { 
  .link__block {
    width: 100%;
  }
  .link__block li,
  .link__block li:nth-child(3n) {
    width: 40%;
    height: auto;
    padding: 4%;
  }
  .link__block li:nth-child(2n){
    margin-right: 0;
  }
}
@media screen and (max-width:750px) {
  .link__block li,
  .link__block li:nth-child(3n) {
    width: 46.5%;
    padding: 0;
  }
  .link__block li a {
    padding: 8%;
  }
  .link__block li a p {
    text-align: center;
  }
  .shadow__block__arrow li a::before {
    width: 20px;
    height: 20px;
    right: 10px;
  }
  .shadow__block__arrow li a p {
    padding-right: 22px;
  }
}

/* ------------------------
  -- step block / 
     nostep block
------------------------*/
.step__block, .nostep__block {
  width: 100%;
}
.step__block > li, .nostep__block > li {
  display: flex;
  align-items: center;
  background-color: #F5F5F5;
  padding: 32px 48px;
  position: relative;
  margin-bottom: 122px;
}
.nostep__block > li {
  margin-bottom: 40px;
}
.step__block > li::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 41px solid transparent;
  border-left: 41px solid transparent;
  border-top: 32px solid var(--border-color);
  border-bottom: 0;
  bottom: -80px;
  left: 0;
  right: 0;
  margin: auto;
}
.step__block > li:last-child, .nostep__block > li:last-child {
  margin-bottom: 0;
}
.step__block > li:last-child::after {
  content: none;
}
.step__block > li .txt__area, .nostep__block > li .txt__area {
  width: 588px;
  margin-right: 20px;
}
.step__block > li .txt__area .ttl__area, .nostep__block > li .txt__area .ttl__area {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 25px;
  padding-bottom: 12px;
}
.step__block > li .txt__area .ttl__area p.step, .nostep__block > li .txt__area .ttl__area p.step {
  font-size: 20px;
  margin-bottom: 0;
}
.step__block > li .txt__area .ttl__area p.step .num {
  font-size: 2.5em;
  line-height: 1.0;
  margin-left: 3px;
}
.step__block > li .txt__area .ttl__area .step_ttl, .nostep__block > li .txt__area .ttl__area .nostep_ttl {
  font-size: 22px;
  margin-left: 20px;
}
.nostep__block > li .txt__area .ttl__area .nostep_ttl {
  margin-left: 0;
}
.step__block > li .txt__area .txt, .nostep__block > li .txt__area .txt {
  text-align: left;
}
.step__block > li img, .nostep__block > li img {
  width: 498px;
  height: 309px;
  object-fit: cover;
  border-radius: 5px;
}
.step__block > li .img__area iframe, .nostep__block > li .img__area iframe {
  width: 498px;
  border-radius: 5px;
}
.step__block > li .btn, .nostep__block > li .btn {
  display: inline-block;
}
@media screen and (max-width:1099px) {
  .step__block > li, .nostep__block > li {
    display: block;
    padding: 20px;
  }
  .step__block > li .txt__area .ttl__area p.step .num {
    font-size: 2em;
  }
  .step__block > li .txt__area, .nostep__block > li .txt__area {
    width: 100%;
    margin: 0;
  }
  .step__block > li .img__area iframe, .nostep__block > li .img__area iframe {
    width: 100%;
  }
  .step__block > li img, .nostep__block > li img {
    width: 100%;
    height: auto;
  }
  .step__block > li .img__area, 
  .nostep__block > li .img__area {
    margin-top: 40px;
  }
  .step__block p.text_center {
    text-align: center;
  }
}
@media screen and (max-width:750px) {
  .step__block > li .txt__area .ttl__area, .nostep__block > li .txt__area .ttl__area { 
    display: block;
  }
  .step__block > li .txt__area .ttl__area .step_ttl, .nostep__block > li .txt__area .ttl__area .nostep_ttl {
    font-size: 18px;
    margin: 12px 0 0;
  }
  .step__block > li img {
    height: 150px;
  }
}

/* ------------------------
  -- table
------------------------*/
.wp-block-table thead,
.wp-block-table td, .wp-block-table th {
  line-height: 1.4em;
  vertical-align: middle;
  border: none !important;
  border-collapse: separate;
  border-spacing: 5px;
  padding: 30px 25px !important;
}
.wp-block-table .has-fixed-layout {
  border-collapse: separate;
}
.wp-block-table thead {
  color: #FFFFFF;
  background: var(--maincolor);
}
.wp-block-table td {
  background-color: var(--bgcolor);
  vertical-align: middle;
}
.wp-block-table td, .wp-block-table th {
  border: 3px solid #FFFFFF !important;
}
.wp-block-table.solid__table td, .wp-block-table.solid__table th {
  border: 3px solid #FFFFFF !important;
}
.wp-block-table.solid__table td {
  border-bottom: 1px solid var(--border-color) !important;
  padding: 1em .5em;
}
.wp-block-table .has-fixed-layout td {
  background-color: var(--bgcolor);
}
.wp-block-table.solid__table td:first-of-type {
  width: 30%;
}
.wp-block-table.is-style-vk-table-border-top-bottom td {
  border-bottom: 1px solid var(--border-color) !important;
  background-color: transparent;
  padding: 14px 0 10px !important;
}
/* ※ */
/*
.attention li {
  text-indent: -14px;
  padding-left: 14px;
  margin-bottom: 5px;
}
.attention li::before {
  content: "※";
}
 */
/* ※num */
.attention li.num {
  text-indent: -27px;
  padding-left: 27px;
}
.attention li.num::before {
  counter-increment: number 1;
  content: "※" counter(number) ;
  margin-right: 5px;
}
@media screen and (max-width:750px) {
  .wp-block-table thead,
  .wp-block-table td, .wp-block-table th {
    padding: 10px !important;
  }
  .price__table table, .price__table .attention, .normal__table, .solid__table {
    width: 100%;
  }
  .price__table td, .price__table th, .normal__table td, .normal__table th, .solid__table th {
    padding: 12px 18px;
  }
  .table__wrap__scroll {
    overflow-x: scroll;
  }
}

/* ------------------------
  other table
------------------------*/
dl.border__table {
  /* width: 650px; */
  width: 100%;
  margin: auto;
  line-height: 1.5em;
  display: flex;
  flex-wrap: wrap;
}
dl.border__table dt, dl.border__table dd {
  box-sizing: border-box;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
  margin-top: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
}
dl.border__table dt {
  width: 30%;
}
dl.border__table dd {
  width: 70%;
}
.border__list {
  /* width: 650px; */
  width: 100%;
  margin: auto;
  line-height: 1.5em;
}
.border__list li {
  text-align: left;
  margin-top: 20px;
  padding-left: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}
@media screen and (max-width:750px) {
  dl.border__table, .border__list {
    width: 100%;
  }
  dl.border__table dt, dl.border__table dd {
    padding-left: 10px;
  }
}

/* ------------------------
  -- txt__img__block
------------------------*/
.txt__img__block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
.txt__img__block .txt__area {
  width: 55%;
  text-align: left;
}
.txt__img__block .img__area {
  width: 45%;
  object-fit: cover;
  object-position: center;
}
.txt__img__block .img__area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width:1500px) {
  .txt__img__block .txt__area {
    width: 60%;
  }
  .txt__img__block .img__area {
    width: 38%;
  }
}
@media screen and (max-width:1024px) {
  .txt__img__block {
    flex-flow: column;
    gap: 2.5rem;
  }
  .txt__img__block .txt__area {
    width: 100%;
  }
  .txt__img__block .img__area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ------------------------
  -- accordion
------------------------*/
.accordion-js dl {
  width: 100%;
  margin: 10px auto;
}
.accordion-js .accordion {
  text-align: left;
  margin-bottom: 20px;
  cursor: pointer;
  background-color: #FFFFFF;
  border-radius: 40px;
  border: 2px solid var(--maincolor);
}
.accordion-js .accordion:last-child {
  margin-bottom: 0;
}
.accordion-js .accordion-title {
  position: relative;
  padding: 20px 74px 20px 40px;
}
.accordion-js .accordion-content {
  display: none;
  padding: 30px 0;
  margin: 0 40px;
  border-top: 1px solid var(--maincolor);
  overflow: hidden;
  cursor: initial;
}
.accordion-js .toggle_btn {
  width: 40px;
  height: 40px;
  right: 0;
}
.accordion-js .accordion-title .toggle_btn::before {
  display: block;
	content: "";
	position: absolute;
	top: 0; 
	right: 40px;
	bottom: 0;
	margin:auto;
	width: 30px;
	height: 3px;
	background-color: var(--maincolor);
	transition: .2s;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
  transition: transform 0.5s;
  border-radius: 100vh;
}
.accordion-js .accordion-title .toggle_btn::after {
  display: block;
	content: "";
	position: absolute;
	top: 0; 
	right: 40px;
	bottom: 0;
	margin: auto;
	width: 30px;
	height: 3px; 
	background-color: var(--maincolor);
	transition: .3s;
  border-radius: 100vh;
}
.accordion-js .accordion-title.open .toggle_btn::before{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
.accordion-js .accordion-title.open .toggle_btn::after{
	background-color: transparent;
}
.accordion-js.accordion_col2 {
  overflow: hidden;
}
.accordion-js.accordion_col2 .accordion {
  width: 47.5%;
  float: left;
  padding: 0;
  margin-right: 2.5%;
}
.accordion-js.accordion_col2 .accordion:nth-child(2n) {
  margin-right: 0;
}
.accordion.accordion_none {
  cursor: default;
}
@media screen and (max-width:1099px) {
  #sp-nav .accordion-js dl {
    margin: 0;
  }
  #sp-nav .accordion-js .accordion {
    border: none;
    background-color: transparent;
  }
  #sp-nav .accordion-js .accordion-title {
    font-size: 15px;
    padding: 0;
  }
  #sp-nav nav .accordion-js .accordion-content {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #sp-nav nav .accordion-js .accordion-content ul li {
    width: 100%;
    margin: 0;
    border: none;
  }
  #sp-nav nav .accordion-js .accordion-content .bg_blue {
    border-radius: 0 0 10px 10px;
  }
  #sp-nav nav .accordion-js .accordion-content ul li {
    border-radius: 0;
  }
  #sp-nav nav .accordion-js .accordion-content ul li a {
    width: calc(100% - 76px);
    font-weight: normal;
    margin: auto;
    padding: 10px 26px 10px 50px;
    border-bottom: 1px solid #CAE3E7;
    position: relative;
  }
  #sp-nav nav .accordion-js .accordion-content ul li a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: var(--maincolor);
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    left: 16px;
  }
  #sp-nav nav .accordion-js .accordion-content ul li:last-child a {
    border-bottom: none;
  }
  #sp-nav nav .accordion-js .accordion-content .nopost {
    width: calc(100% - 28px);
    font-weight: 400;
    padding: 14px;
  }
}
@media screen and (max-width:1099px) {
  .accordion-js .accordion-title .toggle_btn::before,
  .accordion-js .accordion-title .toggle_btn::after {
    width: 20px;
    right: 20px;
    right: 15px;
  }
  .accordion-js .accordion-content {
    margin: 0 25px;
    padding: 20px 0;
  }
}
@media screen and (max-width:750px) {
  .accordion-js .accordion {
    border: 3px solid var(--border-color);
  }
  .accordion-js .accordion-title {
    padding: 15px 45px 15px 30px;
  }
  .accordion-js .accordion-content {
    margin: 0 20px;
  }
  #first_time_faq .accordion .a {
    float: none;
  }
  .accordion-js.accordion_col2 .accordion {
    width: calc(100% - 6px);
    margin: 0 0 25px 0;
    float: none;
  }
  #sp-nav .accordion-js .accordion-content {
    margin: 0;
  }
  #sp-nav .accordion-js .accordion-title .toggle_btn::before,
  #sp-nav .accordion-js .accordion-title .toggle_btn::after {
    width: 15px;
    height: 2px;
    right: 10px;
  }
}

/* =========================

  img slide

=========================*/
.img__slide {
  margin: 120px 0;
}
.img__slide__wrap {
  display: flex;
  overflow: hidden;
}
.img__slide__list {
  display: flex;
  list-style: none;
}
.img__slide__list {
animation:infinity-scroll-left 95s infinite linear 0.5s both;
}
.img__slide__item {
  width: calc(100vw / 4);
  margin-right: 30px;
}
.img__slide__item > img{
   width: 100%;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width:1500px) {
  .img__slide {
    margin: 90px 0;
  }
  .img__slide__item {
    width: calc(210vw / 5);
    margin-right: 15px;
  }
  .img__slide__item > img {
    border-radius: 10px;
  }
}

/* =========================

  header

=========================*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
  background-color: #FFFFFF;
}
header a:hover {
  opacity: 0.6;
  transition: all 0.3s ease 0s;
}

/* =========================

  nav

=========================*/
.sp_nav {
  display: none;
}
header .pc_nav {
  max-width: 1500px;
  width: 95%;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
header .pc_nav .nav {
  width: 100%;
  height: 90px;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: #FFFFFF;
  box-shadow: var(--shadow);
  gap: 2rem;
}
header .pc_nav ul.nav_inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
header .pc_nav ul.nav_inner li {
  width: max-content;
  line-height: 1.4em;
  text-align: center;
  display: table;
}
header .pc_nav .nav.fixed li a {
  color: var(--fontcolor);
}
header .pc_nav ul.nav_inner li > a {
  position: relative;
  /* display: inline-block; */
  font-size: 1rem;
  font-weight: bold;
  color: var(--fontcolor);
}
header .pc_nav ul.nav_inner.link {
  height: fit-content;
  gap: 1.5rem;
  justify-content: end;
}
header .pc_nav .nav_online {
  height: 100%;
  background-color: var(--maincolor);
  display: flex;
  justify-content: center;
}
header .pc_nav .nav_online:hover {
  background-color: var(--maincolor-hover);
}
header .pc_nav .nav_online a {
  color: #FFFFFF;
  font-size: 15px;
  text-align: center;
  line-height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 20px;
}
.fixed-header {
  position: fixed;
  top: 0;
  background-color: #FFFFFF;
  z-index: 9999;
  display: table;
}
.fixed-header .logo_btn {
  display: flex;
  justify-content: space-between;
}
.fixed-header .logo {
  max-width: 340px;
  min-width: 280px;
  width: 30%;
}
.fixed-header .logo img {
  border-radius: 0;
}
@media screen and (max-width:1400px) {
  header .pc_nav {
    padding: 0;
  }
  header .pc_nav .nav {
    gap: 1rem;
  }
  .fixed-header nav .nav_inner {
    gap: 0.8rem !important;
  }
  header .pc_nav ul.nav_inner li > a {
    font-size: 14px;
    line-height: 1.6em;
  }
}
@media screen and (max-width: 1300px) {
  header .pc_nav {
    width: 98%;
  }
  header .pc_nav .nav_online .icon_online_w::before {
    content: none;
  }
  header .pc_nav .nav_online a {
    width: max-content;
    font-size: 14px;
    gap: 0;
    padding: 0.8rem;
  }
}
@media screen and (max-width: 1150px) {
  header {
    width: 100%;
  }
  header .pc_nav {
    display: none;
  }
  header .sp_nav {
    width: 100%;
    height: 64px;
    display: table;
    top: 0;
    left: 0;
    z-index: 999;
  }
  header .sp_nav_inner {
    position: relative;
    z-index: 9999;
    display: table-cell;
    vertical-align: middle;
    background: #FFFFFF;
    box-shadow: var(--shadow);
  }
}
@media screen and (max-width: 768px) {
  header {
    width: 100%;
    position: fixed !important;
    top: 0;
    background: transparent;
  }
}

/* hamburger menu */
body.menu-open {
  position: fixed; /* 背景のスクロールを防ぐ */
  width: 100%;
  overflow: hidden;
}

#sp-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  /* right: -120%; */
  display: none;
  width: 100%;
  height: 100vh;
  background: #FAFAFA;
  transition: all 0.6s;
  overflow: auto;
}
#sp-nav.panelactive {
  right: 0;
  display: block;
  animation-name: fadeIn;
  animation-fill-mode:forwards;
  animation-duration:1s;
  overflow: auto;
}
/*フェードイン*/
@keyframes fadeIn{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
#sp-nav .sp-nav_inner {
  width: 100%;
  height: calc(100vh - 90px);
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
#sp-nav .sp-nav_inner ul.link {
  width: 90%;
  margin: auto;
  gap: 1rem;
}
#sp-nav nav ul li {
  list-style: none;
  border: 1px solid var(--maincolor);
  border-radius: 10px;
  position: relative;
}
#sp-nav nav ul li:first-child {
  border-top: 1px solid var(--maincolor);
}
#sp-nav .sp-nav_inner nav a,
#sp-nav .accordion-js .accordion-title {
  width: calc(100% - 20px);
  line-height: 1.4em;
  display: block;
  padding: 20px 10px;
}
#sp-nav .accordion-js .ttl_border {
  font-size: 1em;
  font-weight: 500;
  margin: 30px 15px 15px;
  padding-left: 20px;
}
#sp-nav .accordion-js .ttl_border::before {
  background-color: var(--maincolor);
}
#sp-nav .sp-nav_inner nav a {
  position: relative;
}
#sp-nav .sp-nav_inner nav a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--maincolor);
  border-right: solid 2px var(--maincolor);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  transform: rotate(45deg);
}
.openbtn {
  position: absolute;
  z-index: 9999;
  width: 75px;
  height: 75px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  cursor: pointer;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 20px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--maincolor);
  width: 50%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 25px;
}
.openbtn span:nth-of-type(3) {
  top: 35px;
}
.openbtn.active span:nth-of-type(1) {
  top: 20px;
  left: 20px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 32px;
  left: 20px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
@media screen and (max-width: 1150px) {
  #sp-nav .sp-nav_inner .nav_inner {
    display: block;
  }
  .sp_nav_inner .logo {
    width: 250px;
    padding-left: 25px;
    margin: 8px 15px;
  }
  #sp-nav .sp_nav .nav_btn {
    margin-bottom: 20px;
  }
  #sp-nav .sp_nav .detail {
    margin: 20px 0;
    font-weight: bold;
  }
  #sp-nav .sp_nav .detail .tel_mail i {
    font-size: 16px;
    padding: 8px;
    margin-right: 8px;
  }
  #sp-nav .sp_nav .detail .tel_mail li.tel span {
    font-size: 25px;
    vertical-align: middle;
  }
  #sp-nav nav ul li {
    width: 90%;
    margin: 0 auto 15px;
  }
  .fixed-header nav .nav_inner > li {
    margin-right: 0;
  }
  #sp-nav .sp-nav_inner .nav_btn .col2 {
    display: block;
  }
  #sp-nav .sp-nav_inner .nav_btn .col2 li {
    margin: 0 0 15px 0;
  }
  .sp_nav_inner .logo {
    z-index: 9999;
    position: relative;
  }
  .openbtn {
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 75px;
    height: 65px;
  }
  .openbtn .menu {
    font-size: 11px;
    line-height: 1.2em;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 4px;
    right: 0;
  }
  p.menu::before {
    content: "MENU";
    display: inline-block;
  }
  #sp-nav .sp-nav_inner .nav_inner {
    padding: 20px 0 150px;
  }
  #sp-nav .access {
    padding: 20px 10px;
    text-align: center;
    margin: 0 20px 20px;
  }
  #sp-nav .navlogo {
    width: 150px;
    margin: 0 auto 80px;
  }
}
@media screen and (max-width: 768px) {
  .sp_nav_inner .logo {
    width: 56%;
    min-width: auto;
    margin: 8px 15px;
    padding-left: 0;
  }
  .sp_nav_inner .logo img {
    width: 100%;
  }
  #sp-nav .sp-nav_inner nav a,
  #sp-nav .accordion-js .accordion-title {
    width: calc(100% - 45px);
    font-weight: normal;
    display: block;
    padding: 12px 30px 15px 15px;
    word-break: break-all;
  }
  #sp-nav .navlogo {
    width: 150px;
    margin: 0 auto 150px;
  }
  #sp-nav .tel {
    font-size: 30px;
    text-align: center;
  }
  #sp-nav .tel .fa-phone {
    font-size: 14px;
    padding: 10px;
    vertical-align: text-top;
  }
}

/* =========================

  dropdown / megamenu

=========================*/
.nav_megamenu_box, .dropdown_box {
  display: none;
}
.nav_megamenu:hover .nav_megamenu_box,
.dropdown:hover .dropdown_box {
  display: block;
  position: absolute;
  animation: appear .3s ease;
  z-index: 99;
}
.dropdown:hover .dropdown_box {
  width: 242px;
  text-align: center;
  padding: 0 15px;
  display: block;
  position: absolute;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
  margin: auto;
  box-shadow: 0px 0px 6px 0px rgba(39, 161, 181, .5);
}
@keyframes appear {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.dropdown_box li {
  width: 100% !important;
}
.dropdown {
  position: relative;
}
.dropdown li {
  font-size: 16px;
  border-bottom: 1px solid #CAE3E7;
  position: relative;
}
.dropdown li:last-child {
  border-bottom: none;
}
.dropdown li a {
  color: #333333;
  width: 100%;
  height: 100%;
  display: block;
  padding: 15px 0;
}
.dropdown_box {
  background-color: #FFFFFF;
  border-radius: 15px;
}
.nav_megamenu_box {
  width: calc(100% - 50px);
  left: 0;
  background-color: #FFFFFF;
  padding: 30px;
}
.nav_megamenu:hover .nav_megamenu_box .col3 {
  justify-content: center;
}
.nav_megamenu:hover .nav_megamenu_box .megamenu_item {
  margin-right: 6vw;
}
.nav_megamenu:hover .nav_megamenu_box .megamenu_item:last-child {
  margin-right: 0;
}
.nav_megamenu:hover .nav_megamenu_box .megamenu_item .megamenu_ttl {
  width: 100%;
  line-height: 1.0;
  text-align: center;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 20px;
  padding-bottom: 12px;
}
@media screen and (max-width:1200px) {
  .dropdown:hover .dropdown_box {
    width: 206px;
    padding: 0 10px;
  }
  .dropdown li {
    font-size: 15px;
  }
  .dropdown li a {
    padding: 12px 0;
  }
}


/* =========================

  KV

=========================*/
.kv {
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover;
  position: relative;
  border-radius: 0 0 8vw 8vw;
}
.kv img {
  border-radius: 0;
}
.kv .kv_inner {
  display: flex;
  height: inherit;
}
.kv .kv_inner .left img {
  height: 47%;
}
.kv .kv_inner .left .txt {
  height: calc(53% - 2rem );
}
.kv .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.kv .txt_inner {
  font-size: clamp(14px, 1.6vw, 28px);
  line-height: 1.6em;
  height: fit-content;
  flex-flow: column;
  display: flex;
  gap: 2rem;
}
.kv h1 {
  font-size: clamp(25px, 5vw, 55px);
  line-height: 1.4em;
}
.kv .kv_inner .left {
  width: 45%;
}
.kv .kv_inner .left img {
  object-fit: cover;
}
.kv .kv_inner .right {
  width: 55%;
}
.kv .kv_inner .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kv .txt_inner p:first-of-type {
  font-size: 1.2em;
  line-height: 1.6em;
  font-weight: bold;
}
.br_1500 {
  display: none;
}
@media screen and (max-width:1500px) { 
  .kv h1 {
    font-size: clamp(25px, 4vw, 48px);
    line-height: 1.4em;
  }
  .kv .txt_inner {
    gap: 1rem;
  }
  .kv .txt_inner p:first-of-type {
    font-size: 25px;
  }
  .kv .txt_inner .pc_ver {
    display: none;
  }
  .br_1500 {
    display: block;
  }
}
@media screen and (max-width:768px) { 
  .kv {
    height: 57vh;
  }
  .kv .kv_inner .left {
    width: 55%;
  }
  .kv .kv_inner .right {
    width: 45%;
  }
  .kv .txt_inner p {
    font-size: 14px;
    line-height: 1.4em;
  }
  .kv .txt_inner p:first-of-type {
    font-size: 14px;
    line-height: 1.5em;
  }
  .kv .txt {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
  .kv .kv_inner .left .txt {
    height: calc(53% - 1.2rem );
  }
  .kv .txt_inner {
    gap: 0.7rem;
  }
}


/* =========================

  top news, top column

=========================*/
#top_news {
  display: flex;
  justify-content: space-around;
}
#top_news img {
  border-radius: 0;
}
#top_news .top_news,
#top_news .news_item_wrap {
  width: 45%;
}
#top_news .news_item_wrap {
  width: 55%;
}
#top_news .top_news_inner {
  display: flex;
  gap: 8rem;
  justify-content: space-between;
  margin-bottom: 20px;
}
#top_news .section__ttl {
  margin-bottom: 30px;
  justify-content: center;
}
#top_news .news_item a,
#top_news .no_posts {
  background-color: #FFFFFF;
  padding: 15px 20px;
  margin-bottom: 20px;
  display: block;
}
#top_news .news_item a:hover {
  opacity: .6;
}
.day {
  line-height: 1.2em;
  margin-bottom: 6px;
}
.post_name {
  font-weight: normal;
  line-height: 1.4em;
}
#top_news .no_posts {
  text-align: center;
}
#top_news .news_item_inner a {
  display: flex;
  border-bottom: 1px solid var(--border-color);
}
#top_news .news_item_inner a .day {
  margin-right: 35px;
}
#top_column .column_item_wrap .column_item {
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.14);
  margin-bottom: 10px;
}
#top_column .column_item_wrap .column_item a {
  text-decoration: none;
}
@media screen and (max-width:1344px) { 
  #top_news .top_news_inner {
    gap: 3rem;
  }
}
@media screen and (max-width:1150px) { 
  #top_news .top_news_inner {
    flex-flow: column;
    gap: 1.5rem;
  }
  #top_news .news_item_wrap {
    width: 100%;
  }
}
@media screen and (max-width:750px) { 
  #top_news {
    width: 100%;
    display: block;
  }
  #top_news .section__ttl {
    text-align: center;
    margin-bottom: 0;
  }
  #top_news .top_news, #top_news .top_column {
    width: 90%;
    margin: auto;
  }
  #top_news .news_item_inner a {
    flex-flow: column;
    gap: 0.5rem;
  }
}

/* =========================

  top worries

=========================*/
#top_worries {
  position: relative;
  padding: 5rem 0;
}
#top_worries::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-top: 96px solid var(--bgcolor);
  position: absolute;
  bottom: -6rem;
  left: 0;
  right: 0;
  margin: auto;
}
#top_worries h2 {
  margin: 0 0 50px;
  padding: 0;
}
#top_worries h2::before {
  content: none;
}
.checklist_wrap {
  background-color: #e9f6f8;
}
.checklist_inner {
  max-width: calc(1200px - 80px);
  width: 90%;
  margin: 0 auto;
  padding: 32px 40px;
  border: 3px solid var(--maincolor);
  border-radius: 12px;
  background-color: #FFFFFF;
  display: flex;
  gap: 40px;
}
.checklist_col {
  flex: 1 1 0;
}
.checklist_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checklist_item {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 6px 0 6px 40px;
  line-height: 1.7;
  font-size: 16px;
}
.checklist_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 28px;
  height: 28px;
  background-image: url(../images/icon_check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.checklist_label {
  display: inline-block;
}
.checklist_item__emphasis .checklist_label strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  #top_worries {
    padding: 3rem 0;
  }
  #top_worries h2 {
    margin: 0 0 30px;
  }
  .checklist_inner {
    flex-direction: column;
    padding: 24px 20px;
    gap: 6px;
  }
  .checklist_item {
    font-size: 15px;
    padding-left: 36px;
  }
  .checklist_item::before {
    width: 24px;
    height: 24px;
  }
}

/* =========================

  top next

=========================*/
#top_next {
  padding: 10rem 0 0;
}
#top_next .section__contents__inner {
  max-width: calc(1200px - 6rem);
  width: calc(90% - 6rem);
  padding: 3rem;
  border: dotted 4px var(--maincolor);
}
#top_next h2 {
  font-size: clamp(25px, 3vw, 40px);
  margin-bottom: 2.5vw;
  padding: 0;
}
#top_next h2::before {
  content: none;
}
#top_next p {
  font-size: clamp(17px, 2.5vw, 22px);
  text-align: center;
}
@media (max-width: 768px) {
  #top_next {
    padding: 6rem 0 0;
  }
  #top_next .section__contents__inner {
    width: calc(90% - 4rem - 8px);
    padding: 2rem;
  }
  #top_next p {
  text-align: left;
}
}

/* =========================

  top ed

=========================*/
#top_ed img {
  border-radius: 0;
}
#top_ed .txt__area h2 {
  text-align: left;
  padding: 0;
}
#top_ed .txt__area h2::before {
  content: none;
}
#top_ed .txt__area .bg_blue {
  padding: 1.5rem;
}
@media (max-width: 1024px) {
  #top_ed .txt__img__block .img__area {
    width: 55%;
    margin: auto;
  }
}
@media (max-width: 768px) {
  #top_ed .txt__area h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
  }
  #top_ed .txt__img__block .img__area {
    width: 100%;
  }
}

/* =========================

  bnr_selfcheck

=========================*/
.bnr_col2 {
  margin: 120px 0;
  border: 3px solid var(--maincolor);
  border-radius: 5px;
  position: relative;
}
.bnr_col2::before {
  content: "";
  position: absolute;
  background-image: url(../images/icon_1min.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 143px;
  height: 151px;
  top: -50px;
  left: -30px;
  z-index: 9;
}
.bnr_col2 a {
  display: flex;
}
.bnr_col2 a .left {
  width: 42%;
}
.bnr_col2 a .left img {
  height: 100%;
  object-fit: cover;
  border-radius: 3px 0 0 3px;
}
.bnr_col2 a .right {
  width: calc(58% - 30px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.bnr_col2 a .right p {
  font-size: clamp(17px, 2.2vw, 24px);
  line-height: 1.4em;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
}
.bnr_col2 a .right .btn .inner {
  font-family: var(--font);
  color: #FFFFFF;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid var(--maincolor);
  background-color: var(--maincolor);
  display: block;
  padding: 10px 36px;
  border-radius: 100vh;
  position: relative;
}
.bnr_col2 a:hover .triangle {
  border-left: 7px solid #FFFFFF;
}
@media (max-width: 768px) {
  .bnr_col2 {
    margin-bottom: 60px;
  }
  .bnr_col2 a {
    flex-flow: column;
  }
  .bnr_col2 a .left {
    width: 100%;
  }
  .bnr_col2 a .left img {
    border-radius: 2px 2px 0 0;
  }
  .bnr_col2 a .right {
    width: calc(100% - 30px);
    padding: 25px 15px;
  }
  .bnr_col2 a .right p {
    font-size: 17px;
    margin-bottom: 6px;
  }
  .bnr_col2::before {
    width: 100px;
    height: 105px;
    left: -17px;
  }
}

/* =========================

  top features

=========================*/
#top_features h2 {
  margin-bottom: 115px;
}
.features_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.features_item {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 60px 32px 32px;
  text-align: center;
  position: relative;
}
.features_num {
  width: 68px;
  height: 68px;
  background: var(--maincolor);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -34px;
  left: 0;
  right: 0;
  margin: auto;
}
.features_title {
  color: var(--maincolor);
  font-weight: 700;
  background-color: transparent;
  padding: 0;
  line-height: 1.5;
  margin: 0 0 15px;
}
.features_text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

@media (max-width: 950px) {
  .features_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
  }
}

@media (max-width: 768px) {
  #top_features h2 {
    margin-bottom: 80px;
  }
  .features_list {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .features_item {
    padding: 45px 20px;
  }
  .features_num {
    width: 55px;
    height: 55px;
    font-size: 24px;
    top: -25px;
  }
}


/* =========================

  top doctor

=========================*/
@media screen and (max-width:1130px) { 
  #top_doctor .section__contents__inner {
    width: calc(100% - 100px);
  }
  #top_doctor .txt__img__block {
    display: block;
  }
  #top_doctor .txt__img__block .txt__area {
    width: 100%;
  }
  #top_doctor .img__area {
    width: 55%;
    margin: 50px auto 0;
  }
}
@media screen and (max-width:1024px) { 
  #top_doctor .img__area {
    width: 90%;
  }
  #top_doctor .img__area {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width:750px) { 
  #top_doctor {
    margin-top: 0;
  }
  #top_doctor .section__contents__inner {
    width: 90%;
  }
  #top_doctor .txt__area .txt__area__inner:before {
    width: 85px;
    height: 86px;
    top: -60px;
    left: -20px;
  }
  #top_doctor .img__slide {
    margin: 90px auto 0;
    padding-bottom: 30px;
  }
  #top_doctor .img__area .name {
    font-size: 14px;
    padding: 6px 15px;
    bottom: 15px;
    right: 12px;
  }
}

/* =========================

  top feature

=========================*/
.point__block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px 2rem;
}
.point__block li {
  width: calc(100% / 3 - 2rem);
  position: relative;
}
.point__block .img__area {
  position: relative;
  margin-bottom: 15px;
  padding: 15px;
}
.point__block .txt__area {
  text-align: center;
}
.point__block .txt__area p {
  text-align: left;
}
.point__block .point {
  font-family: var(--font);
  color: var(--maincolor);
  background-color: var(--bgcolor);
  font-size: 18px;
  font-weight: 600;
  border-radius: 100vw;
  width: 130px;
  height: 130px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: table;
  text-align: center;
  margin-bottom: 0;
}
.point__block .point .point__inner {
  display: table-cell;
  vertical-align: middle;
}
.point__block .point .num {
  font-size: 3.2em;
  font-weight: 600;
  line-height: 1.0;
  margin-top: -7px;
  display: block;
}
#top_feature .point__block h3 {
  font-size: 1.7em;
  font-weight: 500;
}
@media screen and (max-width:750px) { 
  .point__block {
    display: block;
  }
  .point__block li {
    width: 100%;
    margin-bottom: 40px;
  }
  .point__block li:nth-child(2n) {
    margin-top: 0;
  }
  .point__block .txt__area {
    position: relative;
  }
  .point__block .point {
    font-size: 14px;
    width: 100px;
    height: 100px;
  }
  .point__block h3,
  #top_feature .point__block h3 {
    font-size: 1.4em;
  }
  .point__block .img__area {
    text-align: center;
  }
  .point__block .img__area img {
    width: 90%;
  }
  #top_feature .point__block h3 {
    margin-bottom: 15px;
  }
}

/* =========================

  top medical

=========================*/
#top_medical img.train {
  border-radius: 0;
  margin-top: 100px;
}
.medical_list {
  display: flex;
  flex-wrap: wrap;
  gap: 125px 2rem;
  justify-content: center;
}
.medical_list li {
  width: calc(100% / 4 - 2rem);
  position: relative;
}
.medical_list li .img_area img {
  width: calc(100% - 20px);
  border: 10px solid #FFFFFF;
  border-radius: 100vw;
}
.medical_list li .medical_name {
  width: fit-content;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-table;
}
.medical_list li .medical_name a {
  font-size: 1.3em;
  color: var(--maincolor);
  font-weight: 500;
  text-align: center;
  background-color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 100vw;
  display: inline-block;
  border: 3px solid #FFFFFF;
}
.medical_list li .medical_name a:hover {
  opacity: 1.0;
  border-color: var(--maincolor);
}
@media screen and (max-width:950px) { 
  .medical_list {
    width: 80%;
    margin: auto;
    gap: 40px 1rem;
  }
  .medical_list li {
    width: calc(100% / 2 - 0.5rem);
  }
  .medical_list li .img_area img {
    border: 5px solid #FFFFFF;;
  }
  .medical_list li .medical_name {
    bottom: -10px;
  }
  .medical_list li .medical_name a {
    font-size: 1em;
    padding: 4px 12px;
    line-height: 1.4em;
  }
  #top_medical img.train {
    margin-top: 60px;
  }
}
@media screen and (max-width:950px) { 
  .medical_list {
    width: 100%;
  }
}

/* =========================

  top first-time

=========================*/
#top_first-time {
  position: relative;
}
#top_first-time::before {
  content: "";
  background-image: url(../images/first-time_img01.png);
  background-size: cover;
  max-width: 542px;
  max-height: 535px;
  width: 35vw;
  height: 34.5vw;
  position: absolute;
  top: 0;
  left: -10px;
  z-index: -1;
}
#top_first-time::after {
  content: "";
  background-image: url(../images/first-time_img02.png);
  background-size: cover;
  max-width: 415px;
  max-height: 423px;
  width: 25vw;
  height: 25vw;
  position: absolute;
  top: 5vw;
  right: -60px;
  z-index: -1;
}
#top_first-time .section__contents__inner {
  padding-top: 5vw;
}
#top_first-time h3 {
  text-align: center;
  position: relative;
  margin-top: 120px;
}
.panel {
  display: flex;
  gap: 2rem;
  margin-top: 70px;
}
.panel li {
  width: calc(100% / 3);
  box-shadow: 0px 0px 14px 0px rgba(97, 140, 200, .4);
  border-radius: 2vw;
  display: table;
}
.panel li a {
  padding: 35px;
  border: 3px solid #FFFFFF;
  border-radius: 2vw;
  display: table-cell;
  vertical-align: bottom;
}
.panel li a:hover {
  opacity: 1.0;
  border-color: var(--maincolor);
}
.panel li a:hover .btn.shadow_btn .inner {
  color: var(--maincolor);
  background-color: #FFFFFF;
  border-color: var(--maincolor);
  transition: all 0.3s ease 0s;
}
.panel li a:hover .btn.shadow_btn .inner .arrow::before{
  border-color: var(--maincolor);
}
.panel li p {
  font-family: var(--font);
  font-size: 1.5em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width:950px) { 
  .panel {
    flex-flow: column;
    gap: 1rem;
    margin-top: 30px;
  }
  .panel li {
    width: 100%;
  }
  .panel li a {
    padding: 20px;
  }
  .panel li p {
    font-size: 1.2em;
  }
}
@media screen and (max-width:750px) { 
  #top_first-time {
    margin: 160px 0 0;
  }
  #top_first-time::before {
    top: -24vw;
    left: -27px;
  }
  #top_first-time::after {
    top: 12vw;
    right: -31px;
  }
  #top_first-time h3 {
    margin-top: 90px;
  }
}

/* =========================

  bnr contact

=========================*/
#bnr_contact img {
  border-radius: 0;
}

/* =========================

  footer

=========================*/
footer {
  background-color: var(--bgbeige);
  padding: 80px 0 0;
}
footer .footer_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}
footer .footer_inner .detail {
  display: flex;
  justify-content: center;
  margin: 0 0 50px;
}
footer .footer_inner .detail .col2 {
  display: flex;
  gap: 1rem;
}
.logo_footer {
  width: 374px;
  max-width: 95%;
  margin: 0 auto 48px;
}
.copy {
  width: calc(100% - 10px);
  color: #FFFFFF;
  text-align: center;
  background-color: var(--maincolor);
  padding: 5px 0;
}
@media screen and (max-width:750px) {
  footer {
    padding: 60px 0 0;
  }
  .logo_footer {
    width: 80%;
    margin: 0 0 30px;
  }
  footer .footer_inner .detail {
    display: block;
    margin: 0 0 50px;
  }
  footer .footer_inner .clinic_detail {
    margin-bottom: 50px;
  }
  footer .footer_inner .clinic_detail {
    width: 100%;
  }
  footer .footer_inner .detail .col2 {
    flex-flow: column;
  }
}

/* =========================

  fixed side

=========================*/
#fixed-side {
  position: fixed;
  right: 60px;
  bottom: 20px;
  z-index: 999;
}
#fixed-side ul {
  display: flex;
  align-items: center;
}
#fixed-side ul li {
  margin-right: 20px;
}
#fixed-side ul li:last-child {
  margin-right: 0;
}
#fixed-side ul li a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 16px 36px;
}
#fixed-side ul li a:hover {
  opacity: 1.0;
}
#fixed-side ul li.online {
  border-radius: 10px;
  background-color: var(--maincolor);
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.24);
}
#fixed-side ul li.online :hover {
  background-color: var(--maincolor-hover);
  opacity: 1.0;
}
#fixed-side ul li.online :hover .icon {
  background-color: #FFFFFF;
}
#fixed-side ul li.web {
  border-radius: 10px;
  background-color: var(--subcolor);
}
#fixed-side ul li.web a:hover {
  background-color: var(--subcolor-hover);
  opacity: 1.0;
}
@media screen and (max-width:1100px) {
  #fixed-side {
    right: 20px;
  }
}
@media screen and (max-width:750px) {
  #fixed-side {
    width: 100%;
    padding: 0;
    background-color: transparent;
    right: auto;
    bottom: 0;
    box-shadow: unset;
    z-index: 9999;
  }
  #fixed-side ul {
    width: 100%;
  }
  #fixed-side ul li {
    width: 100%;
    height: 56px;
    margin-right: 0;
  }
  #fixed-side ul li a,
  #fixed-side ul li.web, #fixed-side ul li.online {
    color: #FFFFFF;
    font-size: 15px;
    border-radius: 0 !important;
  }
  #fixed-side ul li a {
    color: #FFFFFF;
    justify-content: center;
    padding: 14px 5px;
  }
  #fixed-side ul li a.inner {
    line-height: 1.3em;
    text-align: center;
    height: -webkit-fill-available;
  }
}