@charset "utf-8";

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

  base

=========================*/
:root {
  /*color*/
  --fontcolor: #4A4A4A;
  --accentcolor: #26A9B3;
  --accentcolor-hover: #3BC3CC;
  --bg-gray: #F8F8F8;
  --bg-green: #1D8289;
  --font: "Noto Serif JP", serif;
  --normalfont: 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  --enfont: "Cormorant", serif;
  --zenmaru: "Zen Maru Gothic", sans-serif;
  --border-color: #C3C3C3;
  --shadow: 0px 0px 14px 0px rgba(0, 0, 0, .20);
}

body {
  color: var(--fontcolor);
  font-size: 18px;
  font-family: var(--normalfont);
  line-height: 1.8em;
  background-color: #FDFEFF;
  letter-spacing: 0.08em;
  scroll-behavior: smooth;
  overflow: hidden;
}
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;
}
img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.wrapper {
  overflow: hidden;
}
@media screen and (max-width:768px) {
  body {
    font-size: 16px;
    line-height: 1.6em;
    overflow: hidden;
  }
}

/* ------------------------
  contents
------------------------*/
.section-contents {
  margin-bottom: 150px;
  position: relative;
}
.section-contents__inner {
  max-width: 1400px;
  width: 90%;
  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:1450px) {
  .section-contents__inner {
    width: 90%;
  }
}
@media screen and (max-width:768px) {
  .section-contents {
    margin-bottom: 80px;
  }
  .section-contents p {
    margin-bottom: 20px;
    text-align: left;
  }
  .img__area img {
    width: 100%;
  }
}

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

  nav

=========================*/
header.fixed-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 99999;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(1500px - 80px);
  margin: auto;
}
header.fixed-header.is-fixed {
  position: fixed;
  top: 10px;
  background: rgba(255, 255, 255, .85);
  border-radius: 10px;
  padding: 10px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  backdrop-filter: blur(20px);
}
header.fixed-header nav ul li a {
  color: #FFFFFF;
}
header.fixed-header.is-fixed nav ul li a {
  color: var(--fontcolor);
}
header.fixed-header .logo {
  max-width: 510px;
  position: relative;
}
header.fixed-header .logo img {
  width: 100%;
  transition: opacity .3s ease;
}
/* ロゴ切り替え */
header.fixed-header.is-fixed .logo img.light_logo {
  opacity: 0;
}
header.fixed-header.is-fixed .logo img.dark_logo {
  opacity: 1;
}
.logo img.dark_logo {
  opacity: 0;
  position: absolute;
  left: 0;
}
/* PCナビ */
.fixed-header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.global-nav .global-nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.global-nav .global-nav__list li a {
  font-weight: bold;
}
@media screen and (max-width:1550px) {
  header.fixed-header {
    width: calc(92% - 20px);
    padding: 10px 0;
  }
}
@media screen and (max-width:1160px) {
  .global-nav .global-nav__list {
    font-size: 16px;
  }
  header.fixed-header .logo {
    width: 45%;
  }
  .global-nav .global-nav__list {
    align-items: unset;
  }
}

/* =========================
  hamburger
=========================*/
.nav-toggle {
  display: none;
  position: relative;
  width: 52px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle__line {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background-color: #FFFFFF;
  transition: transform .3s ease, opacity .3s ease, background-color .3s ease;
}
.nav-toggle__line:nth-child(1) { top: 8px; }
.nav-toggle__line:nth-child(2) { top: 16px; }
.nav-toggle__line:nth-child(3) { top: 24px; }

.nav-toggle__text {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

@media (min-width: 1025px) {
  header.fixed-header {
    position: absolute;
  }
  .nav-toggle {
    display: none;
  }
  header.fixed-header nav {
    position: static;
  }
  header.fixed-header nav ul {
    flex-direction: row;
  }
}

@media (max-width: 1024px) {
  header.fixed-header {
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: calc(100% - 24px);
    padding: 12px;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  /* ロゴ */
  header.fixed-header .logo img.light_logo {
    display: none;
  }
  header.fixed-header .logo {
    width: 50%;
    max-width: 415px;
  }
  header.fixed-header .logo img.dark_logo {
    position: static;
    opacity: 1;
  }
  header.fixed-header nav ul li a {
    color: var(--fontcolor);
  }
  header.fixed-header.is-fixed {
    /* width: calc(95% - 32px); */
    padding: 12px;
    top: 0;
    border-radius: 0;
  }
  header.fixed-header.is-fixed nav ul li a {
    color: var(--fontcolor);
    transition: unset;
  }
  .nav-toggle {
    display: block;
  }
  .nav-toggle__line {
    background-color: var(--fontcolor);
  }
  .nav-toggle__text {
    color: var(--fontcolor);
  }
  header.fixed-header nav {
    position: fixed;
    inset: 74px 0 0 0;
    background-color: #FFFFFF;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease;
  }
  header.fixed-header nav ul {
    width: 88%;
    margin: auto;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
  }
  header.fixed-header nav ul li {
    width: 45%;
    height: 90px;
    display: table;
    align-items: center;
    border: 1px solid var(--accentcolor);
  }
  header.fixed-header nav ul li a {
    display: table-cell;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
  }
  header.fixed-header nav ul li a .sub {
    color: var(--accentcolor);
    font-size: 10px;
    line-height: 1.0em;
  }
  header.fixed-header.is-open nav {
    height: 100vh;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    padding-top: 50px;
    background-color: var(--bg-gray);
  }
  header.fixed-header.is-open .nav-toggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  header.fixed-header.is-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }
  header.fixed-header.is-open .nav-toggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  header.fixed-header .logo {
    width: 80%;
    max-width: 290px;
  }
}

/* =========================
  ページ内リンク用
=========================*/
@media (min-width: 768px) {
  #about,
  #clinic,
  #message,
  #medical {
    scroll-margin-top: 150px;
  }
}
@media (max-width: 767px) {
  #about,
  #clinic,
  #message,
  #medical {
    scroll-margin-top: 80px;
  }
}


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

  kv

=========================*/
.kv {
  height: 100vh;
  background-image: url(../images/kv.jpg);
  background-size: cover;
  position: relative;
}
.kv::after {
  content: "";
  width: 100%;
  background: rgba(0, 0, 0, .4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.kv_inner {
  max-width: 1400px;
  width: 90%;
  height: 100%;
  margin: auto;
}
.kv_copy {
  font-family: var(--normalfont);
  color: #FFFFFF;
  width: 90%;
  position: absolute;
  bottom: 5vw;
  z-index: 9999;
}
.kv_copy h1 {
  font-family: var(--enfont);
  font-size: clamp(80px, 9vw, 130px);
  line-height: 0.9em;
  letter-spacing: 0.08em;
}
.kv_copy h2 {
  font-family: var(--normalfont);
  font-size: clamp(18px, 4vw, 34px);
  line-height: 1.4em;
  margin: 8px 0 0;
  padding: 0;
}
.kv_copy h2::after {
  content: none;
}
.kv_copy p {
  font-size: clamp(25px, 6vw, 45px);
  font-weight: bold;
  text-align: center;
  line-height: 1.4em;
  padding: 15px 40px;
  border: 1px solid #FFFFFF;
  display: inline-block;
  margin-top: 40px;
}
@media screen and (max-width:1024px) {
  .kv {
    height: 90vh;
    background-size: cover;
  }
}
@media screen and (max-width:768px) {
  .kv_copy h2 {
    margin-top: 15px;
  }
  .kv_copy p {
    width: calc(100% - 80px);
    margin-top: 25px;
  }
}

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

  ttl

=========================*/
h2, .fixed-header {
  font-family: var(--font);
}
h2 {
  font-size: clamp(28px, 5vw, 45px);
  line-height: 1.4em;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  h2 {
    margin-bottom: 30px;
  }
}
h2::after {
  content: "";
  position: absolute;
  width: 65px;
  height: 1px;
  background-color: var(--accentcolor);
  bottom: 0;
  left: 0;
}
#about::before {
  content: "philosophy";
  text-transform: uppercase;
  font-family: var(--enfont);
  font-size: clamp(50px, 12vw, 180px);
  font-weight: 500;
  line-height: 1.2em;
  position: absolute;
  top: 1vw;
  opacity: 0.26;
  letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
  #about::before {
    top: 6vw;
  }
}
#clinic::before {
  content: "clinic";
  text-transform: uppercase;
  font-family: var(--enfont);
  font-size: clamp(55px, 12vw, 180px);
  font-weight: 500;
  line-height: 1.2em;
  position: absolute;
  top: -5vw;
  right: 0;
  opacity: 0.1;
  letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
  #clinic::before {
    top: 51vw;
  }
}
#message::before {
  content: "message";
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: var(--enfont);
  font-size: clamp(55px, 12vw, 160px);
  font-weight: 500;
  line-height: 1.2em;
  position: absolute;
  top: 1vw;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0.26;
  letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
  #message::before {
    top: 8vw;
  }
}
#medical .description::before {
  content: "medical";
  text-transform: uppercase;
  color: var(--accentcolor);
  font-family: var(--enfont);
  font-size: clamp(55px, 10vw, 130px);
  font-weight: 500;
  line-height: 1.2em;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
  #medical .description::before {
    position: absolute;
    top: -10vw;
    left: -14px;
    opacity: 0.2;
  }
}
#recruit .description::before {
  content: "recruit";
  text-transform: uppercase;
  color: var(--fontcolor);
  font-family: var(--enfont);
  font-size: clamp(55px, 10vw, 130px);
  font-weight: 500;
  line-height: 1.2em;
  text-align: center;
  letter-spacing: 0.1em;
  opacity: 0.26;
  position: absolute;
  right: 0;
  top: -1vw;
}
@media screen and (max-width:768px) {
  #recruit .description::before {
    top: -8vw;
  }
}


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

  about

=========================*/
#about {
  padding-top: clamp(110px, 16vw, 260px);
}
#about .box {
  background-color: #FFFFFF;
  padding: 40px;
}

.point__block {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 70px;
}
.point__block li {
  width: calc(50% - 1.5rem);
}
.point__block li img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.point__block li .ttl {
  font-family: var(--font);
  margin: 30px 0 20px;
  padding: 0 10px 20px;
  border-bottom: 1px solid var(--border-color);
}
.point__block li .ttl .point {
  color: var(--accentcolor);
  font-size: 25px;
  font-weight: bold;
  margin: 0 0 15px;
}
.point__block li .ttl .point .num {
  font-size: 2em;
  margin-left: 6px;
}
.point__block li .ttl h3 {
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.4em;
}
.point__block li > p {
  padding: 0 10px;
}
@media screen and (max-width:768px) {
  .point__block {
    flex-flow: column;
  }
  .point__block li {
    width: 100%;
  }
  .point__block li .ttl .point {
    font-size: 20px;
  }
}

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

  clinic

=========================*/
#clinic .col2 {
  justify-content: flex-start !important;
}
#clinic .col2 img {
  width: 40%;
}
#clinic .description {
  max-width: 856px;
  width: 60%;
  padding-left: 5vw;
}
.description__table {
  width: 100%;
  font-size: 1.15em;
  overflow: hidden;
  margin-top: 70px;
}
.description__table dt, .description__table dd {
  float: left;
  margin-bottom: 15px;
}
.description__table dt {
  width: 17%;
  font-weight: bold;
}
.description__table dd {
  width: 83%;
}
#clinic .time_table {
  font-size: 1.1em;
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  #clinic .col2 img {
    width: 85%;
    aspect-ratio: 16 / 9;
  }
  #clinic .description {
    width: 90%;
    max-width: 90%;
    padding: 0;
    margin: 40px auto 0;
  }
  .description__table {
    font-size: 1em;
    margin-top: 50px;
  }
  .description__table dt, .description__table dd {
    width: 100%;
    float: none;
  }
  .description__table dt {
    width: calc(100% - 20px);
    color: #FFFFFF;
    font-weight: bold;
    background-color: var(--accentcolor);
    padding: 4px 10px;
    margin-bottom: 8px;
  }
  .description__table dd {
    margin-bottom: 30px;
  }
  #clinic .time_table {
    font-size: 16px;
    margin-top: 0;
  }
}

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

  map

=========================*/
@media screen and (max-width:768px) {
  .maps {
    height: 450px;
    background-color: #99BCBF;
  }
}

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

  message

=========================*/
#message {
  padding-top: clamp(130px, 16vw, 260px);
  padding-bottom: 150px;
  margin-bottom: 80px;
}
#message .col2 {
  gap: 4rem;
}
#message .col2 .txt_area {
  width: 60%;
}
#message .col2 .img_area {
  width: 40%;
}
@media screen and (max-width:768px) {
  #message {
    padding-bottom: 90px;
    margin-bottom: 40px;
  }
  #message .col2 .txt_area, #message .col2 .img_area {
    width: 100%;
  }
  #message .col2 .img_area {
    height: 350px;
  }
  #message .col2 .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

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

  medical

=========================*/
#medical {
  padding-top: 50px;
}
/* #medical .section-contents__inner {
  position: relative;
} */
#medical .col2 img {
  width: 50%;
  height: fit-content;
  position: absolute;
  right: 0;
  top: 180px;
  bottom: 0;
  margin: auto;
}
#medical .description {
  width: 48%;
  position: relative;
}
ul.list li {
  text-indent: -20px;
  padding-left: 25px;
  margin-bottom: 10px;
}
ul.list li:before {
  content: "●";
  color: #3E9FA7;
  font-size: 18px;
  margin-right: 8px;
  vertical-align: bottom;
  opacity: .4;
}
@media screen and (max-width:768px) {
  #medical .description {
    width: 100%;
  }
  #medical .col2 img {
    position: unset;
    width: 100%;
  }
  ul.list li:before {
    font-size: 14px;
  }
}


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

  recruit

=========================*/
#recruit {
  padding-top: 50px;
}
#recruit .recruit-box {
  margin-top: 80px;
}
#recruit .recruit-box h3 {
  color: var(--accentcolor);
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 30px;
}
#recruit .recruit-box__item {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 72px);
  max-width: 900px;
  padding: 36px;
  background-color: var(--bg-gray);
  margin: auto;
}
#recruit .recruit-box__item dt,
#recruit .recruit-box__item dd {
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
#recruit .recruit-box__item dt {
  width: 20%;
  font-weight: bold;
}
#recruit .recruit-box__item dd {
  width: 80%;
}
#recruit .recruit-box__item .inner {
  display: block;
  margin-bottom: 20px;
}
#recruit .recruit-box__item .inner:last-of-type {
  margin-bottom: 0;
}
#recruit .attention {
  font-size: 0.8em;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width:768px) {
  #recruit {
    padding-top: 0;
  }
  #recruit .recruit-box {
    margin-top: 50px;
  }
  #recruit .recruit-box h3 {
    font-size: 26px;
  }
  #recruit .recruit-box__item {
    width: calc(100% - 40px);
    padding: 20px;
    flex-flow: column;
  }
  #recruit .recruit-box__item dt, #recruit .recruit-box__item dd {
    width: 100%;
  }
  #recruit .recruit-box__item dt {
    border-bottom: 0;
    padding: 0;
    margin-bottom: 10px;
  }
}




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

  footer

=========================*/
footer .footer__inner {
  max-width: 1400px;
  width: 90%;
  margin: auto;
  padding: 100px 0;
}
footer .footer__inner.col2 {
  gap: 3rem;
}
footer .footer__inner .left {
  width: 55%;
}
footer .footer__inner .add {
  margin-top: 40px;
}
footer .time_table {
  width: 45%;
}
.link-btn {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 30px;
}
.link-btn li {
  text-align: center;
  background-color: #8B8B8B;
  display: table;
}
.link-btn li:first-of-type {
  width: 60%;
}
.link-btn li:last-of-type {
  width: 40%;
}
.link-btn li .inner {
  color: #FFFFFF;
  font-size: 30px;
  padding: 20px 40px;
  display: table-cell;
  vertical-align: middle;
}
.link-btn li .inner .small {
  font-size: 16px;
  display: block;
}
.link-btn li > a[href] {
  font-family: var(--zenmaru);
  color: #FFFFFF;
  font-weight: bold;
  background: var(--accentcolor);
}
.link-btn li > a:hover {
  background-color: var(--accentcolor-hover);
  opacity: 1.0;
}
.copy {
  width: calc(100% - 8px);
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
  background-color: var(--accentcolor);
  padding: 4px;
}
@media screen and (max-width:990px) {
  footer .footer__inner {
    padding: 30px 0;
  }
  footer .footer__inner.col2 {
    flex-flow: column;
  }
  footer .footer__inner .left {
    width: 100%;
  }
  footer .logo {
    width: 90%;
    margin: auto;
  }
  footer .time_table {
    width: calc(100% - 42px);
  }
  .link-btn {
    flex-flow: column;
  }
  .link-btn li, .link-btn li:first-of-type, .link-btn li:last-of-type {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .link-btn li .inner {
    font-size: 24px;
  }
  .link-btn li .inner .small {
    line-height: 1.1em;
    margin-bottom: 2px;
  }
  .link-btn li .inner p {
    line-height: 1.4em;
  }
  .copy {
    font-size: 11px;
  }
}

/* ------------------------
  time_table, tag
------------------------*/
.day_tag, .day_cat {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 10px;
}
.tags {
  font-size: 14px;
  background-color: var(--accentcolor);
  color: #FFFFFF;
  display: table;
  width: 120px;
  text-align: center;
}
.tags .tags-txt {
  display: table-cell;
  vertical-align: middle;
}
.table_area {
  width: 600px;
}
.time_table {
  width: calc(100% - 82px);
  background-color: #FFFFFF;
  padding: 40px;
  border: 1px solid var(--border-color);
  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: 10px 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: 40px;
}
.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;
  background-color: var(--accentcolor);
  border-radius: 100vw;
  border-color: var(--accentcolor);
  padding: 4px 30px;
}
.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 .circle {
  color: var(--fontcolor);
}
.time_table .ttl_border {
  margin: 40px 0 15px;
}
@media screen and (max-width:1024px) {
  .time_table.w70 {
    width: auto;
  }
}
@media screen and (max-width:768px) {
  .time_table {
    width: calc(100% - 40px);
    padding: 20px;
  }
  .time_table .tag_des.tag_border,
  .time_table .closed_day .tag_des {
    font-size: 14px;
  }
  .time_table .closed_day {
    margin-top: 20px;
  }
}


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

  other

=========================*/
.mb0 {
  margin-bottom: 0 !important;
}
.bg {
  padding: 100px 0;
}
.bg_gray {
  background-color: var(--bg-gray);
}
.bg_green {
  background-color: var(--bg-green);
}
.bg_green h2, .bg_green p {
  color: #FFFFFF;
}
.bg_green h2::after {
  background-color: #FFFFFF;
}
.col2 {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .col2 {
    flex-flow: column;
    gap: 1rem;
  }
}
.btn {
  position: relative;
  padding: 15px 40px 15px 30px;
  color: #FFFFFF;
  background-color: var(--accentcolor);
  margin: auto;
  width: fit-content;
  display: block;
}
.section-contents .btn {
  margin: 20px auto 50px;
}
@media screen and (max-width:768px) {
  .btn {
    width: calc(100% - 70px);
    text-align: center;
  }
}
.arrow {
  position: absolute;
  padding: 8px;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.arrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #CCCCCC;
  border-right: solid 1px #CCCCCC;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn .arrow::before {
  border-color: #FFFFFF;
}
.arrow.arrow_right::before {
  transform: rotate(45deg);
}
.pc_ver {
  display: block;
}
@media screen and (max-width:768px) {
  .pc_ver {
    display: none;
  }
}
.sp_ver {
  display: none;
}
@media screen and (max-width:768px) {
  .sp_ver {
    display: block;
  }
}