@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 2;
  height: 100%;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    min-width: 0;
    width: 100%;
  }
}
a {
  text-decoration: none;
  cursor: pointer;
  color: blue;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  word-wrap: break-word;
}

a:hover {
  opacity: 0.8;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-family: inherit;
}

textarea {
  font-family: inherit;
}

main {
  display: block;
  overflow: hidden;
}

small {
  font-size: 90%;
}

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

  共通

============================================================================*/
/*----------パディング----------*/
/* 上下 */
.u-py-xs {
  padding-top: 20px;
  padding-bottom: 20px;
}

.u-py-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.u-py-md {
  padding-top: 60px;
  padding-bottom: 60px;
}

.u-py-lg {
  padding-top: 80px;
  padding-bottom: 80px;
}

.u-py-xl {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .u-py-xs {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .u-py-sm {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .u-py-md {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .u-py-lg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .u-py-xl {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* 上 */
.u-pt-none {
  padding-top: 0 !important;
}

.u-pt-xs {
  padding-top: 20px;
}

.u-pt-sm {
  padding-top: 40px;
}

.u-pt-md {
  padding-top: 60px;
}

.u-pt-lg {
  padding-top: 80px;
}

.u-pt-xl {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .u-pt-xs {
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-sm {
    padding-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-md {
    padding-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-lg {
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-xl {
    padding-top: 50px;
  }
}
/* 下 */
.u-pb-none {
  padding-bottom: 0 !important;
}

.u-pb-xs {
  padding-bottom: 20px;
}

.u-pb-sm {
  padding-bottom: 40px;
}

.u-pb-md {
  padding-bottom: 60px;
}

.u-pb-lg {
  padding-bottom: 80px;
}

.u-pb-xl {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .u-pb-xs {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-sm {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-md {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-lg {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-xl {
    padding-bottom: 60px;
  }
}
/*----------マージン----------*/
/* 上下 */
.u-my-xs {
  margin-top: 20px;
  margin-bottom: 20px;
}

.u-my-sm {
  margin-top: 40px;
  margin-bottom: 40px;
}

.u-my-md {
  margin-top: 60px;
  margin-bottom: 60px;
}

.u-my-lg {
  margin-top: 80px;
  margin-bottom: 80px;
}

.u-my-xl {
  margin-top: 120px;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .u-my-xs {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .u-my-sm {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .u-my-md {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .u-my-lg {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .u-my-xl {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
/* 上 */
.u-mt-none {
  margin-top: 0 !important;
}

.u-mt-xs {
  margin-top: 20px;
}

.u-mt-sm {
  margin-top: 40px;
}

.u-mt-md {
  margin-top: 60px;
}

.u-mt-lg {
  margin-top: 80px;
}

.u-mt-xl {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .u-mt-xs {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-sm {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-md {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-lg {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-xl {
    margin-top: 60px;
  }
}
/* 下 */
.u-mb-none {
  margin-bottom: 0 !important;
}

.u-mb-xs {
  margin-bottom: 20px;
}

.u-mb-sm {
  margin-bottom: 40px;
}

.u-mb-md {
  margin-bottom: 60px;
}

.u-mb-lg {
  margin-bottom: 80px;
}

.u-mb-xl {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .u-mb-xs {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-sm {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-md {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-lg {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-xl {
    margin-bottom: 60px;
  }
}
/*----------カラー----------*/
.red {
  color: #ff0000;
}

.blue {
  color: #1e00ff;
}

.pink {
  color: #FF8F8F;
}

/*----------マーカー下線----------*/
.c-marker {
  display: inline;
  background-color: #333;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #333));
  background: -webkit-linear-gradient(transparent 60%, #333 60%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), to(#333));
  background: -webkit-linear-gradient(transparent 60%, #333);
  background: linear-gradient(transparent 60%, #333);
}

/*----------クリアフィックス----------*/
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*----------グリッド----------*/
.col2,
.col2-col2,
.col3,
.col3-col2,
.col4,
.col4-col2 {
  display: -ms-grid;
  display: grid;
}

/* 2つ並び */
.col2,
.col2-col2 {
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/*3つ並び */
.col3,
.col3-col2 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 4つ並び */
.col4,
.col4-col2 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20;
}

/*----------フレックス----------*/
/* 画像大きめ・画像左 */
.flex01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .flex01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.flex01 .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.flex01 .img {
  margin: 0 4% 0 0;
  width: 40%;
}

@media screen and (max-width: 767px) {
  .flex01 .img {
    width: 100%;
    margin: 20px 0 0 0;
  }
}
.flex01 .img img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}

/* 画像大きめ・画像右 */
.flex02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .flex02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.flex02 .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.flex02 .img {
  margin: 0 0 0 4%;
  width: 40%;
}

@media screen and (max-width: 767px) {
  .flex02 .img {
    margin: 20px 0 0 0;
    width: 100%;
  }
}
.flex02 .img img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}

/* 画像小さめ・画像左 */
.flex03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .flex03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.flex03 .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.flex03 .img {
  margin: 0 3% 0 0;
  width: 30%;
}

@media screen and (max-width: 767px) {
  .flex03 .img {
    margin: 20px 0 0 0;
    width: 100%;
  }
}
.flex03 .img img {
  max-width: 100%;
  height: auto;
  width: 100%;
  border-radius: 30px;
}

/* 画像小さめ・画像右 */
.flex04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .flex04 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.flex04 .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.flex04 .img {
  margin: 0 0 0 3%;
  width: 30%;
}

@media screen and (max-width: 767px) {
  .flex04 .img {
    margin: 20px 0 0 0;
    width: 100%;
  }
}
.flex04 .img img {
  max-width: 100%;
  height: auto;
  width: 100%;
  border-radius: 30px;
}

/*----------ラッパー----------*/
/* 幅1080px */
.wrapper-sm {
  max-width: 1260px;
  width: 100%;
  padding-right: 90px;
  padding-left: 90px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1100px) {
  .wrapper-sm {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper-sm {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* 幅1160px */
.wrapper-md {
  max-width: 1340px;
  width: 100%;
  padding-right: 90px;
  padding-left: 90px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1100px) {
  .wrapper-md {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper-md {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* 幅1240px */
.wrapper-lg {
  max-width: 1380px;
  width: 100%;
  padding-right: 90px;
  padding-left: 90px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1100px) {
  .wrapper-lg {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper-lg {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*----------リスト----------*/
/* 点のみ */
.list01 {
  list-style: none;
}

.list01 li {
  line-height: 2;
}

.list01 li::before {
  content: "●";
  color: #FF8F8F;
  font-size: 11px;
  margin-right: 10px;
  vertical-align: middle;
}

/*----------下線----------*/
.list02 {
  margin: 10px 0;
  border-width: 0 1px 1px;
}

.list02 li {
  margin: 0;
  border-bottom: 1px dotted #333;
  list-style-type: none;
}

.list02 p:last-of-type {
  margin-bottom: 0;
}

/*----------点と背景----------*/
.list03 {
  margin: 0 0 15px;
  margin-bottom: 27px;
  padding: 20px 20px 12px;
  background-color: #ccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.list03 li {
  position: relative;
  float: left;
  margin-bottom: 8px;
  padding-left: 0.9em;
  padding-right: 4%;
  list-style-type: none;
}

.list03 li:before {
  display: block;
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #333;
  border: 1px solid #333;
  border-radius: 50%;
}

.list03 p:last-of-type {
  margin-bottom: 0;
}

/*----------点と枠線----------*/
.list04 {
  margin: 0 0 15px;
  margin-bottom: 27px;
  padding: 20px 20px 12px;
  border: solid 4px #ccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.list04 li {
  position: relative;
  float: left;
  margin-bottom: 8px;
  padding-left: 0.9em;
  padding-right: 4%;
  list-style-type: none;
}

.list04 li:before {
  display: block;
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #333;
  border: 1px solid #333;
  border-radius: 50%;
}

.list04 p:last-of-type {
  margin-bottom: 0;
}

/*チェックと背景*/
.list05 {
  margin-bottom: 10px;
  padding: 35px 10px 20px 45px;
  background-color: #ccc;
}

@media screen and (max-width: 768px) {
  .list05 {
    padding: 20px 20px 20px 25px;
  }
}
.list05:after {
  display: block;
  clear: both;
  content: "";
}

.list05 li {
  position: relative;
  float: left;
  margin-right: 5%;
  margin-bottom: 20px;
  margin-left: 19px;
  border-bottom: 1px dotted #cdcdcd;
}

@media screen and (max-width: 768px) {
  .list05 li {
    margin-bottom: 10px;
  }
}
.list05 li:before {
  display: block;
  position: absolute;
  top: 9px;
  left: -28px;
  width: 18px;
  height: 18px;
  background-image: url(../images/common/icon-check.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  content: "";
}

@media screen and (max-width: 768px) {
  .list05 li:before {
    width: 14px;
    height: 14px;
    left: -20px;
  }
}
/*----------囲み枠----------*/
/*背景のみ*/
.well01 {
  padding: 40px;
  background: #ccc;
  word-wrap: break-word;
}

@media screen and (max-width: 768px) {
  .well01 {
    padding: 20px;
  }
}
/*枠線*/
.well02 {
  padding: 40px;
  border: 4px solid #ccc;
  background: #fff;
  word-wrap: break-word;
}

@media screen and (max-width: 768px) {
  .well02 {
    padding: 20px;
  }
}
/*----------テーブル----------*/
.table01 {
  width: 100%;
  border: 1px solid #ddd;
  border-spacing: 0;
  border-collapse: collapse;
  line-height: 1.8;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .table01 {
    font-size: 0.875rem;
  }
}
.table01 thead tr th {
  background-color: #d6ffd7;
  border: 1px solid #ddd;
  padding: 12px 20px;
  text-align: center;
  vertical-align: middle;
}

.table01 tbody th,
.table01 tbody td {
  border: 1px solid #ddd;
  vertical-align: middle;
}

.table01 tbody th {
  background-color: #333;
  color: #fff;
  font-weight: normal;
  padding: 12px 20px;
  text-align: center;
}

.table01 tbody td {
  text-align: left;
  padding: 5px 20px;
}

@media screen and (max-width: 768px) {
  .table01 thead tr th {
    padding: 10px;
  }
  .table01 tbody th {
    padding: 8px 10px;
  }
  .table01 tbody td {
    padding: 8px 15px;
  }
}
/*----------流れ----------*/
.flow01 {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.flow01 h4 {
  color: #333;
  font-size: 22px !important;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .flow01 h4 {
    font-size: 18px !important;
    margin-bottom: 0;
  }
}
.flow01 {
  margin-top: 30px;
}

.flow01 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 50px;
  position: relative;
}

.flow01 .item::after {
  content: "";
  position: absolute;
  left: 43px;
  top: 0;
  height: 100%;
  width: 2px;
  z-index: 0;
  background: url(../images/common/dot.png) repeat-y left top;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  .flow01 .item::after {
    left: 28px;
  }
}
.flow01 .item.last::after {
  display: none;
}

.flow01 .item.last {
  padding-bottom: 0;
}

.flow01 .item .step {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #333;
  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;
  z-index: 1;
}

.flow01 .item .step em {
  color: #fff;
  font-size: 3rem;
  font-style: inherit;
  text-align: center;
  line-height: 1;
  font-weight: normal;
}

.flow01 .item .well {
  background: #ededed;
  padding: 10px 20px;
  border-radius: 0;
  display: block;
  border: none;
  margin: 10px 0 0;
}

.flow01 .item .text {
  padding: 0 30px 0 40px;
  margin-right: auto;
}

.flow01 .item .text p a {
  color: #333;
  text-decoration: underline;
}

.flow01 .item figure {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 300px;
}

.flow01 .item figure img {
  border-radius: 0px;
}

@media screen and (max-width: 768px) {
  .flow01 .item figure img {
    width: 100%;
  }
}
.flow01 .item:last-child:before {
  content: none;
}

@media screen and (max-width: 768px) {
  .flow01 {
    width: 100%;
  }
  .flow01 .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-bottom: 25px;
  }
  .flow01 .item:before {
    left: 27px;
  }
  .flow01 .item .step {
    width: 56px;
    height: 56px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .flow01 .item .step em {
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1;
    font-weight: normal;
  }
  .flow01 .item .text {
    width: calc(100% - 76px);
    padding: 0;
    margin-right: 0;
    margin-left: auto;
  }
  .flow01 .item figure {
    width: calc(100% - 76px);
    margin-left: 76px;
    margin-top: 20px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .flow01 .item:last-child:before {
    content: none;
  }
}
/*----------FAQ----------*/
.qa-list dl {
  position: relative;
  margin: 20px 0 0;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .qa-list dl {
    margin: 10px 0 0;
  }
}
.qa-list dl:first-child {
  margin-top: 0;
}

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 65px;
  background: #FFECEC;
  border-radius: 100vw;
}

@media screen and (max-width: 768px) {
  .qa-list dl dt {
    padding: 14px 34px 14px 48px;
  }
}
.qa-list dl dt::before {
  font-size: 30px;
  line-height: 1;
  position: absolute;
  top: 19px;
  left: 20px;
  display: block;
  content: "Q.";
  font-weight: normal;
  color: #FF8F8F;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

@media screen and (max-width: 768px) {
  .qa-list dl dt::before {
    line-height: 1;
    font-size: 18px;
    top: 20px;
    left: 20px;
  }
}
.qa-list dl dt::after {
  position: absolute;
  top: 40%;
  right: 30px;
  display: block;
  width: 9px;
  height: 9px;
  margin: auto;
  content: "";
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

@media screen and (max-width: 768px) {
  .qa-list dl dt::after {
    right: 16px;
    width: 7px;
    height: 7px;
  }
}
.qa-list dl dd {
  position: relative;
  margin-top: 10px;
  padding: 20px 20px 20px 60px;
  background: #F7F3EE;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .qa-list dl dd {
    padding: 14px 14px 14px 48px;
  }
}
.qa-list dl dd::before {
  font-size: 30px;
  line-height: 1;
  position: absolute;
  left: 20px;
  display: block;
  content: "A.";
  color: #FF8F8F;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

@media screen and (max-width: 768px) {
  .qa-list dl dd::before {
    font-size: 18px;
    margin-top: 5px;
  }
}
.qa-list dl dd p {
  margin: 30px 0 0;
}

.qa-list dl dd p:first-child {
  margin-top: 0;
}

.qa-list .open dt::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*----------ボタン----------*/
.btn01 {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 320px;
  width: 100%;
  line-height: 1.6;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  padding: 15px 15px;
  border-radius: 100vw;
  color: #fff;
  background-color: #4fbeec;
  border-radius: 100vw;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 50px auto 0;
  border: 1px solid #4fbeec;
}
.btn01:hover {
  background: #fff;
  border: 1px solid #4fbeec;
  color: #4fbeec;
}
.btn01:hover::after {
  background: url(../images/common/btn-arrow-hover.png) center center/cover no-repeat;
}

.btn01::after {
  content: "";
  background: url(../images/common/btn-arrow.png) center center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 23px;
  height: 23px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .btn01 {
    margin: 30px auto 0;
    max-width: 280px;
  }
}
/*----------スマホで表示・非表示----------*/
.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/*----------パンくずリスト----------*/
.low #breadcrumbs {
  padding: 15px 0 50px;
}

.low #breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.low #breadcrumbs ul li {
  position: relative;
  margin-right: 0.5em;
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 3px;
}

.low #breadcrumbs ul li:before {
  content: "＞";
  display: inline-block;
  padding-right: 0.5em;
}

.low #breadcrumbs ul li:first-child::before {
  display: none;
}

.low #breadcrumbs ul li a {
  color: #0000a3;
}

.low #breadcrumbs ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .low #breadcrumbs {
    padding: 10px 0 40px;
  }
  .low #breadcrumbs ul li {
    font-size: 10px;
  }
}
/*----------サイドナビ----------*/
#side-nav {
  position: fixed;
  z-index: 1000;
  right: 0;
  top: 56%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 1100px) {
  #side-nav {
    display: none;
  }
}
#side-nav li {
  margin-bottom: 10px;
}

#side-nav li:last-child {
  margin-bottom: 0;
}

#side-nav a {
  display: inline-block;
  text-decoration: none;
  width: 100px;
  text-align: center;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 15px 10px 15px 0;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 14px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: clamp(0.6875rem, 0.7vw + 0.4775rem, 1rem);
}

#side-nav a:hover {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

#side-nav .web a {
  background-color: #FF8F8F;
  color: #fff;
  line-height: 1.4;
}

#side-nav .web a span {
  text-align: left;
  display: inline-block;
  position: relative;
  padding-top: 40px;
}

#side-nav .web a span:before {
  content: "";
  background: url(../images/common/web-icon.png) no-repeat;
  background-size: 39px;
  width: 39px;
  height: 39px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#side-nav .line a {
  background-color: #40D840;
  color: #fff;
  line-height: 1.4;
}

#side-nav .line a span {
  text-align: left;
  display: inline-block;
  position: relative;
  padding-top: 40px;
}

#side-nav .line a span:before {
  content: "";
  background: url(../images/common/line-icon.png) no-repeat;
  background-size: 39px;
  width: 39px;
  height: 39px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*----------診療時間----------*/
.schedule {
  padding: 10px 30px 25px;
  background-color: #FF8F8F;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .schedule {
    padding: 10px;
    width: 100%;
  }
}
.schedule table {
  width: 100%;
  border-spacing: 0;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .schedule table {
    margin-bottom: 10px;
  }
}
.schedule table tr:first-of-type {
  border-bottom: 1px solid #fff;
}

.schedule table tr:first-of-type td, .schedule table tr:first-of-type th {
  line-height: 40px;
  color: #fff;
}

.schedule table tr:nth-of-type(2) td, .schedule table tr:nth-of-type(2) th {
  padding-top: 14px;
}

.schedule table tr:nth-of-type(3) td, .schedule table tr:nth-of-type(3) th {
  padding-top: 14px;
  padding-bottom: 14px;
}

.schedule table tr th {
  padding-left: 10px;
  line-height: 1;
  text-align: left;
  font-weight: 400;
  color: #fff;
}

.schedule table tr td {
  width: 1em;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .schedule table tr td {
    padding-left: 4px;
    padding-right: 4px;
  }
}
.schedule_note {
  margin-top: 10px;
}

/*----------アンカーリンクリスト----------*/
.anchor-list {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .anchor-list {
    margin-bottom: 40px;
  }
}
.anchor-list ul {
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .anchor-list ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.anchor-list ul li {
  border-radius: 10px;
  background: #FF8F8F;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.anchor-list ul li:hover {
  background: #f47676;
}

.anchor-list ul li a {
  opacity: 1;
  padding: 10px;
  display: block;
  text-align: center;
  color: #fff;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 17px;
  position: relative;
}

.anchor-list ul li a::before {
  content: "";
  display: block;
  position: absolute;
  color: #fff;
  width: 8px;
  height: 8px;
  top: 48%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

  ヘッダー

============================================================================*/
/* header */
/* header PC */
.header-bg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #fff;
}

.header-wrapper {
  width: 100%;
  height: 90px;
  padding-left: 300px;
  padding-right: 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  line-height: 1;
  position: absolute;
  top: 13px;
  left: 30px;
  z-index: 1;
}

.header-logo > a {
  display: block;
  line-height: 1;
  width: 300px;
}

.header-logo > a:hover {
  opacity: 1;
}

.header-logo > a img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header-logo > a img:hover {
  opacity: 0.7;
}

.header-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header-contact > a {
  display: inline-block;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.header-contact .tel {
  text-align: center;
  font-weight: bold;
}

.header-contact .tel a {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  color: #FF8F8F;
  display: block;
  padding: 14px 0 19px;
}

.header-contact .tel a h3 {
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
  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;
}

.header-contact .tel a h3:before,
.header-contact .tel a h3:after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: 1px dashed #FF8F8F;
}

.header-contact .tel a h3:before {
  margin-right: 5px;
}

.header-contact .tel a h3:after {
  margin-left: 5px;
}

.header-contact .tel a p {
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 0.8;
  margin-top: 5px;
  position: relative;
  padding-left: 30px;
}
.header-contact .tel a p::before {
  position: absolute;
  content: "";
  background: url(../images/common/tel-icon.png);
  background-size: cover;
  width: 24px;
  height: 24px;
  left: 0;
  top: -1px;
}

.header-nav {
  text-align: center;
  margin-left: auto;
  margin-right: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.header-nav__list > li > a {
  display: inline-block;
  color: #333;
  padding: 4px 8px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.5;
}

.header-nav__list > li > a:hover,
.header-nav__list > li > a:focus {
  opacity: 0.7;
}

.header-nav__list > li:not(:last-of-type) {
  margin-right: 15px;
}

.header-nav__has-child {
  position: relative;
}

.header-nav__second-menu {
  display: none;
  z-index: 1001;
  position: absolute;
  top: 40px;
  left: -5px;
}

.header-nav__second-menu > li {
  border-top: 1px solid #fff;
}

.header-nav__second-menu > li {
  width: 150px;
}

.header-nav__second-menu > li a {
  margin: 0;
  display: block;
  font-size: 15px;
  height: auto;
  line-height: 1.2;
  background-color: #FF8F8F;
  color: #fff;
  text-align: left;
  padding: 12px 15px;
  height: 43px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

.header-nav__second-menu > li a::after {
  display: none;
}

.header-nav__second-menu > li a:hover,
.header-nav__second-menu > li a:focus {
  opacity: 1;
  background-color: #f96c6c;
}

.header-fixed.thin {
  width: 100%;
  -webkit-box-shadow: 2px 0px 4px rgba(51, 51, 51, 0.3);
  box-shadow: 2px 0px 4px rgba(51, 51, 51, 0.3);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header-fixed.thin {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px);
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}

@media screen and (max-width: 1100px) {
  .header-fixed.thin {
    display: none;
    height: 0;
  }
}
.header-fixed.thin .header-nav__list > li > a span {
  font-size: 15px;
}

.is-fixed .header-fixed {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.header-fixed.thin .header-wrapper {
  height: 70px;
  padding-left: 20px;
}

.header-fixed.thin .header-contact .tel a {
  padding: 2px 0 10px;
}

.header-fixed.thin .header-nav {
  padding-top: 0px;
}

.header-fixed.thin .header-nav__second-menu {
  top: 40px;
}

.header-fixed.thin .header-logo {
  top: 8px;
  left: 20px;
}

.header-fixed.thin .header-logo > a {
  width: 260px;
}

@media (min-width: 1100px) and (max-width: 1280px) {
  .header-nav__list > li > a {
    font-size: 14px;
  }
  .header-nav__list > li:not(:last-of-type) {
    margin-right: 8px;
  }
  .header-fixed.thin .header-logo-thin {
    width: 230px;
  }
  .header-fixed.thin .header-nav__list > li > a {
    font-size: 14px;
  }
  .header-nav__list > li > a {
    padding: 4px;
  }
}
@media screen and (max-width: 1100px) {
  .header {
    display: none;
  }
  .header-logo > a {
    width: 100%;
    max-width: 240px;
  }
  .header-contact__tel {
    font-size: 1.5rem;
  }
  .header-contact__tel::before {
    width: 20px;
    height: 20px;
  }
  .header-nav__list > li > a {
    font-size: 0.875rem;
    padding: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-nav__list > li > a:hover,
  .header-nav__list > li > a:focus {
    opacity: 0.7;
  }
  .header-nav__list > li:not(:last-of-type) {
    margin-right: 10px;
  }
}
/* sp header */
.sp_header {
  display: none;
  height: 0;
  position: relative;
}

@media screen and (max-width: 1100px) {
  .sp_header {
    display: block;
    width: 100%;
    height: 60px;
    z-index: 100;
  }
}
.sp_header-top {
  width: 100%;
  height: 70px;
  background-color: white;
  position: relative;
}

.sp_header-logo {
  width: 219px;
  display: inline-block;
  line-height: 1;
  height: auto;
  z-index: 6;
  margin: 7px 10px 0;
  position: absolute;
}

.sp_header-logo > a {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sp_header-logo > a:hover,
.sp_header-logo > a:focus {
  opacity: 0.7;
}

.sp_header-logo > a > img {
  height: auto;
}

.fixd-btn {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 111111;
}

.sp_header-menu {
  position: relative;
}

.sp_menu-btn {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 101;
  background: #FF8F8F;
}

.sp_menu-btn .hamburger {
  display: block;
  height: 3px;
  width: 35px;
  margin-left: 12px;
  margin-top: -7px;
  border-radius: 2px;
  background-color: #fff;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.sp_menu-btn .hamburger::before,
.sp_menu-btn .hamburger::after {
  content: "";
  display: block;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.sp_menu-btn .hamburger::before {
  top: -11px;
}

.sp_menu-btn .hamburger::after {
  bottom: -11px;
}

.sp_menu-btn .alph {
  color: #fff;
  font-size: 12px;
  line-height: 3.3;
  position: absolute;
  left: 12px;
}

.sp_header-nav {
  width: 70%;
  height: 100%;
  padding-top: 60px;
  background-color: #FF8F8F;
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 99;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.sp_header-nav__inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.sp_header-nav__list > li {
  border-top: 1px solid #FFF;
}

.sp_header-nav__list > li:last-child {
  border-bottom: 1px solid #FFF;
}

.sp_header-nav__list > li > a {
  display: block;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  text-align: left;
  padding: 12px 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sp_header-nav__list > li > a:hover,
.sp_header-nav__list > li > a:focus {
  opacity: 0.7;
}

.sp_header-nav__toggle--open span.sp_header-nav__toggle-btn::after {
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.sp_header-nav__toggle-btn {
  display: block;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  text-align: left;
  cursor: default;
  padding: 12px 12px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sp_header-nav__toggle-btn:hover,
.sp_header-nav__toggle-btn:focus {
  opacity: 0.7;
}

.sp_header-nav__toggle-btn::before,
.sp_header-nav__toggle-btn::after {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sp_header-nav__toggle-btn::before {
  width: 16px;
  height: 4px;
  border-radius: 2px;
  right: 19px;
}

.sp_header-nav__toggle-btn::after {
  right: 25px;
  width: 4px;
  border-radius: 2px;
  height: 16px;
}

.sp_header-nav__second-menu {
  display: none;
}

.sp_header-nav__second-menu li {
  background-color: #ee7070;
  border-top: 1px solid white;
}

.sp_header-nav__second-menu li a {
  display: block;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  text-align: left;
  padding: 12px 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sp_header-nav__second-menu li a:hover,
.sp_header-nav__second-menu li a:focus {
  opacity: 0.7;
}

.sp_header-bnr {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  padding: 0 20px;
  margin: 40px auto 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sp_header-bnr:hover,
.sp_header-bnr:focus {
  opacity: 0.7;
}

.is_open-menu .sp_header-nav {
  right: 0px;
}

.is_open-menu .sp_menu-btn .hamburger {
  background: transparent !important;
}

.is_open-menu .sp_menu-btn .hamburger::before {
  background-color: #fff;
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.is_open-menu .sp_menu-btn .hamburger::after {
  background-color: #fff;
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.is_open-menu .sp_menu-btn .alph {
  display: none;
}

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

  タイトル

============================================================================*/
.top-ttl {
  text-align: center;
  font-size: 43px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  position: relative;
  padding-top: 64px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .top-ttl {
    font-size: 30px;
    line-height: 1.3;
    padding-top: 55px;
    margin-bottom: 30px;
  }
}
.top-ttl::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/top-ttl-deco.png);
  width: 143px;
  height: 63px;
  background-size: cover;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .top-ttl::before {
    width: 100px;
    height: 44px;
  }
}
.top-ttl span {
  font-size: 19px;
  color: #FF8F8F;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top-ttl span {
    font-size: 14px;
    padding-top: 10px;
  }
}

.ttl01 {
  background: #f4eee7;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  text-align: center;
  font-size: 36px;
  position: relative;
  padding: 8px 0;
  margin-bottom: 40px;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ttl01 {
    font-size: 25px;
    line-height: 1.4;
    padding: 10px 0 12px;
    margin-bottom: 20px;
  }
}
.ttl01::first-letter {
  color: #FF8F8F;
}
.ttl01::before {
  position: absolute;
  content: "";
  background: url(../images/common/ttl01-deco2.png);
  width: 57px;
  height: 56px;
  background-size: cover;
  right: 30px;
  top: 15px;
}
@media screen and (max-width: 768px) {
  .ttl01::before {
    width: 39px;
    height: 38px;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.ttl01::after {
  position: absolute;
  content: "";
  background: url(../images/common/ttl01-deco1.png);
  width: 57px;
  height: 59px;
  background-size: cover;
  left: 30px;
  top: 15px;
}
@media screen and (max-width: 768px) {
  .ttl01::after {
    width: 41px;
    height: 42px;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.ttl02 {
  display: block;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 30px;
  color: #FF8F8F;
  line-height: 1.4;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px dotted #DCDCDC;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 50px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .ttl02 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 14px;
  }
}
.ttl02::before {
  content: "";
  width: 4px;
  height: calc(100% - 10px);
  background-color: #FF8F8F;
  position: absolute;
  top: 2px;
  left: 0;
}

.ttl03 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 22px;
  margin-top: 10px;
  color: #4FBEEC;
}
@media screen and (max-width: 768px) {
  .ttl03 {
    font-size: 18px;
  }
}

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

  トップページ

============================================================================*/
/* TOP MV */
.top-mv {
  width: 100%;
  height: 500px;
  margin-bottom: 50px;
  position: relative;
}
.top-mv::before {
  content: "";
  position: absolute;
  background: url(../images/top/mv-deco.png);
  background-size: cover;
  width: 315px;
  height: 156px;
  z-index: 1;
  left: 103px;
  bottom: -47px;
}
@media screen and (max-width: 768px) {
  .top-mv::before {
    width: 225px;
    height: 113px;
    z-index: 1;
    left: 40px;
    bottom: -40px;
  }
}

@media screen and (max-width: 1200px) {
  .top-mv {
    height: 600px;
  }
}
@media screen and (max-width: 768px) {
  .top-mv {
    height: 62vh;
  }
}
.top-mv__catch .txt {
  position: absolute;
  top: 50%;
  left: 140px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-mv__catch .txt {
    left: 40px;
    top: 60%;
  }
}

.top-mv__catch h2 {
  font-size: 32px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: bold;
  line-height: 2.3;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  .top-mv__catch h2 {
    font-size: 19px;
    letter-spacing: 1px;
    line-height: 2.5;
  }
}

.top-mv__catch h2 .bg {
  background: #fff;
  border-radius: 14px;
  padding: 4px 15px 10px 20px;
}
@media screen and (max-width: 768px) {
  .top-mv__catch h2 .bg {
    padding: 4px 10px 7px 12px;
    border-radius: 10px;
  }
}

/* TOP slide */
.top-mv-swiper {
  overflow: hidden;
  width: calc(100% - 63px);
  height: 100%;
  position: relative;
  z-index: 0;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .top-mv-swiper {
    width: calc(100% - 20px);
  }
}
.top-mv-slide {
  width: 80%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  border-radius: 100px 0 0 100px;
}

@media screen and (max-width: 768px) {
  .top-mv-slide {
    border-radius: 40px 0 0 40px;
  }
}
.top-mv-slide__01 {
  background-image: url(../images/top/mv1.jpg);
}

@media screen and (max-width: 1100px) {
  .top-mv-slide__01 {
    background-image: url(../images/top/mv1.jpg);
    background-position: 60% center;
  }
}
.top-mv-slide__02 {
  background-image: url(../images/top/mv2.jpg);
}

@media screen and (max-width: 1100px) {
  .top-mv-slide__02 {
    background-image: url(../images/top/mv2.jpg);
    background-position: 56% center;
  }
}
.top-mv-slide__03 {
  background-image: url(../images/top/mv3.jpg);
}

@media screen and (max-width: 1100px) {
  .top-mv-slide__03 {
    background-image: url(../images/top/mv3.jpg);
    background-position: 54% center;
  }
}
/*----------お知らせ----------*/
.top-news {
  position: relative;
  padding: 300px 0 60px;
  margin-top: -300px;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: 250px 0 40px;
    margin-top: -250px;
  }
}
.top-news::after {
  content: "";
  position: absolute;
  width: 97%;
  max-width: 1840px;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: #FFECEC;
  border-radius: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  .top-news::after {
    border-radius: 0 0 40px 0;
    width: 100%;
  }
}
.top-news .ttl {
  text-align: center;
  font-size: 43px;
  color: #FF8F8F;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .top-news .ttl {
    font-size: 30px;
  }
}
.top-news .contents {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .top-news .contents {
    border-radius: 20px;
    padding: 20px;
  }
}

/*----------清水歯科医院の3つの治療のポイント----------*/
.top-points {
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-points {
    padding: 50px 0;
  }
}
.top-points::before {
  content: "";
  position: absolute;
  background: url(../images/top/points-deco.png);
  background-size: cover;
  width: 166px;
  height: 132px;
  z-index: 1;
  right: 100px;
  top: 100px;
}
@media screen and (max-width: 1100px) {
  .top-points::before {
    top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .top-points::before {
    width: 80px;
    height: 62px;
    right: 20px;
    top: 27px;
  }
}
.top-points .contents .items {
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .top-points .contents .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.top-points .contents .items .num {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  background: #FF8F8F;
  border-radius: 100vw;
  width: 70px;
  height: 70px;
  color: #fff;
  font-size: 29px;
  text-align: center;
  padding-top: 5px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-points .contents .items .num {
    font-size: 24px;
    width: 60px;
    height: 60px;
  }
}
.top-points .contents .items img {
  border-radius: 70px;
  margin-top: -35px;
}
@media screen and (max-width: 768px) {
  .top-points .contents .items img {
    margin-top: -30px;
    border-radius: 40px;
  }
}
.top-points .contents .items h4 {
  font-size: 24px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  text-align: center;
  margin: 10px 0 4px;
}
@media screen and (max-width: 1100px) {
  .top-points .contents .items h4 {
    font-size: 20px;
  }
}

/*----------診療のご案内----------*/
.top-medical {
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .top-medical {
    padding: 50px 0;
  }
}
.top-medical::before {
  content: "";
  position: absolute;
  background: url(../images/top/medical-deco.png);
  background-size: cover;
  width: 154px;
  height: 137px;
  z-index: 1;
  left: 140px;
  top: 100px;
}
@media screen and (max-width: 768px) {
  .top-medical::before {
    width: 65px;
    height: 58px;
    left: 27px;
    top: 24px;
  }
}
.top-medical::after {
  content: "";
  position: absolute;
  width: 97%;
  max-width: 1840px;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #F7F3EE;
  border-radius: 80px 0 0 80px;
}
@media screen and (max-width: 768px) {
  .top-medical::after {
    border-radius: 40px 0 0 40px;
    width: 100%;
  }
}
.top-medical .top-ttl + p {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .top-medical .top-ttl + p {
    text-align: left;
    margin-bottom: 30px;
  }
}
.top-medical .contents .items {
  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-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -40px;
  margin-bottom: -40px;
}
@media screen and (max-width: 768px) {
  .top-medical .contents .items {
    margin-left: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.top-medical .contents .items .item {
  background: #fff;
  border-radius: 30px;
  width: 240px;
  margin-left: 40px;
  margin-bottom: 40px;
  text-align: center;
  padding: 25px 0;
  color: #333;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .top-medical .contents .items .item {
    width: 215px;
  }
}
@media screen and (max-width: 1100px) {
  .top-medical .contents .items .item {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .top-medical .contents .items .item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
    padding: 15px 0;
    border-radius: 10px;
  }
}
.top-medical .contents .items .item::before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 18px;
  height: 18px;
  background-color: #FBCFC4;
  position: absolute;
  bottom: 15px;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .top-medical .contents .items .item::before {
    width: 13px;
    height: 13px;
    bottom: 5px;
    right: 5px;
  }
}
.top-medical .contents .items .item img {
  width: 92px;
}
@media screen and (max-width: 768px) {
  .top-medical .contents .items .item img {
    width: 60px;
  }
}
.top-medical .contents .items .item h4 {
  font-size: 22px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
@media screen and (max-width: 768px) {
  .top-medical .contents .items .item h4 {
    font-size: 18px;
  }
}
.top-medical .contents .items .item p {
  letter-spacing: 0;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .top-medical .contents .items .item p {
    font-size: 12px;
  }
}

/*---------清水歯科医院が選ばれる5つの理由----------*/
.top-reason {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-reason {
    padding: 50px 0;
  }
}
.top-reason::before {
  content: "";
  position: absolute;
  background: url(../images/top/reason-deco.png);
  background-size: cover;
  width: 128px;
  height: 131px;
  z-index: 1;
  right: 140px;
  top: 140px;
}
@media screen and (max-width: 768px) {
  .top-reason::before {
    width: 58px;
    height: 58px;
    right: 20px;
    top: 101px;
  }
}
.top-reason .ttl {
  width: 470px;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .top-reason .ttl {
    width: 280px;
    margin-bottom: 40px;
  }
}
.top-reason .item01 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
}
.top-reason .item01 .item .img {
  width: 680px;
  position: relative;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}
@media screen and (max-width: 1200px) {
  .top-reason .item01 .item .img {
    width: 530px;
  }
}
@media screen and (max-width: 1100px) {
  .top-reason .item01 .item .img {
    width: 480px;
  }
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item .img {
    width: 95%;
  }
}
.top-reason .item01 .item .img img {
  border-radius: 0 80px 80px 0;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item .img img {
    border-radius: 0 40px 40px 0;
  }
}
.top-reason .item01 .item .img .point-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 30px;
  bottom: -40px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item .img .point-box {
    left: 20px;
  }
}
.top-reason .item01 .item .img .point-box p {
  margin-right: 15px;
  background: rgba(255, 143, 143, 0.8784313725);
  width: 120px;
  height: 120px;
  color: #fff;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 19px;
  text-align: center;
  line-height: 1.4;
  border-radius: 100vw;
  padding-top: 33px;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item .img .point-box p {
    width: 85px;
    height: 85px;
    font-size: 14px;
    padding-top: 24px;
    margin-right: 10px;
  }
}
.top-reason .item01 .item .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 70px;
  margin-right: 7%;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item .txt {
    margin: 60px 20px 0;
  }
}
.top-reason .item01 .item .txt .ttl-wrap {
  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;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item .txt .ttl-wrap {
    margin-bottom: 15px;
  }
}
.top-reason .item01 .item .txt .ttl-wrap img {
  width: 67px;
  height: 90px;
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item .txt .ttl-wrap img {
    width: 46px;
    height: 58px;
    margin-right: 10px;
  }
}
.top-reason .item01 .item .txt .ttl-wrap h4 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 34px;
  line-height: 1.6;
}
@media screen and (max-width: 1100px) {
  .top-reason .item01 .item .txt .ttl-wrap h4 {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item .txt .ttl-wrap h4 {
    font-size: 22px;
  }
}
.top-reason .item01 .item .txt .img-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item .txt .img-wrap {
    margin-top: 20px;
  }
}
.top-reason .item01 .item .txt .img-wrap img {
  width: 48.5%;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item .txt .img-wrap img {
    border-radius: 10px;
    width: 48%;
  }
}
.top-reason .item01 .item.rvs {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item.rvs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item.rvs .img {
    margin-left: auto;
  }
}
.top-reason .item01 .item.rvs .img img {
  border-radius: 80px 0 0 80px;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item.rvs .img img {
    border-radius: 40px 0 0 40px;
  }
}
.top-reason .item01 .item.rvs .img .point-box {
  left: auto;
  right: 30px;
  bottom: -30px;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item.rvs .img .point-box {
    right: 20px;
  }
}
.top-reason .item01 .item.rvs .img .point-box p {
  margin-right: 0;
  width: 150px;
  height: 150px;
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item.rvs .img .point-box p {
    width: 90px;
    height: 90px;
    padding-top: 15px;
  }
}
.top-reason .item01 .item.rvs .txt {
  margin-right: 70px;
  margin-left: 7%;
}
@media screen and (max-width: 768px) {
  .top-reason .item01 .item.rvs .txt {
    margin: 40px 20px 0;
  }
}
.top-reason .item02 {
  border: 10px solid #FFECEC;
  border-radius: 100px;
  text-align: center;
  padding: 80px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .top-reason .item02 {
    border: 5px solid #FFECEC;
    border-radius: 40px;
    padding: 40px 20px;
    margin-top: 40px;
  }
}
.top-reason .item02 .num {
  width: 67px;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .top-reason .item02 .num {
    width: 46px;
    height: 58px;
  }
}
.top-reason .item02 h4 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 34px;
  width: 100%;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1100px) {
  .top-reason .item02 h4 {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .top-reason .item02 h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .top-reason .item02 .txt {
    text-align: left;
  }
}
.top-reason .item02 .img-wrap {
  margin-top: 40px;
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .top-reason .item02 .img-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 20px;
    padding: 0 30px;
  }
}
.top-reason .item02 .img-wrap .img {
  position: relative;
}
.top-reason .item02 .img-wrap .img img {
  border-radius: 100vw;
}
.top-reason .item02 .img-wrap .img img + p {
  background: rgba(255, 143, 143, 0.8784313725);
  width: 130px;
  height: 130px;
  color: #fff;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 19px;
  text-align: center;
  line-height: 1.4;
  border-radius: 100vw;
  padding-top: 38px;
  position: absolute;
  right: -40px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .top-reason .item02 .img-wrap .img img + p {
    font-size: 14px;
    width: 90px;
    height: 90px;
    padding-top: 24px;
    right: -20px;
  }
}
.top-reason .item03 .items {
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .top-reason .item03 .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
.top-reason .item03 .items .item .img {
  margin-bottom: 30px;
}
.top-reason .item03 .items .item .img img {
  border-radius: 80px;
}
@media screen and (max-width: 768px) {
  .top-reason .item03 .items .item .img img {
    border-radius: 40px;
  }
}
.top-reason .item03 .items .item .ttl-wrap {
  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;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top-reason .item03 .items .item .ttl-wrap {
    margin-bottom: 15px;
  }
}
.top-reason .item03 .items .item .ttl-wrap img {
  width: 67px;
  height: 90px;
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  .top-reason .item03 .items .item .ttl-wrap img {
    width: 46px;
    height: 58px;
  }
}
.top-reason .item03 .items .item .ttl-wrap h4 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 34px;
  line-height: 1.6;
}
@media screen and (max-width: 1100px) {
  .top-reason .item03 .items .item .ttl-wrap h4 {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .top-reason .item03 .items .item .ttl-wrap h4 {
    font-size: 22px;
  }
}

/*---------院長ご挨拶----------*/
.top-greeting {
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .top-greeting {
    padding: 40px 0 50px;
  }
}
.top-greeting::after {
  content: "";
  position: absolute;
  width: 97%;
  max-width: 1840px;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: #FF8F8F;
  border-radius: 0 80px 80px 0;
}
@media screen and (max-width: 768px) {
  .top-greeting::after {
    width: 100%;
    border-radius: 0 40px 40px 0;
  }
}
.top-greeting .contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top-greeting .contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-greeting .contents .ttl {
  color: #fff;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 43px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 8px;
  margin-left: -70px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .top-greeting .contents .ttl {
    margin: 0;
    margin-bottom: 10px;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    font-size: 30px;
    letter-spacing: 1px;
  }
}
.top-greeting .contents .ttl span {
  position: relative;
}
.top-greeting .contents .ttl span::after {
  content: "";
  position: absolute;
  bottom: -110px;
  left: 0;
  right: 0;
  width: 2px;
  height: 100px;
  margin: auto;
  border-left: 2px dashed #fff;
}
@media screen and (max-width: 768px) {
  .top-greeting .contents .ttl span::after {
    display: none;
  }
}
.top-greeting .contents .img {
  width: 422px;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .top-greeting .contents .img {
    width: 100%;
  }
}
.top-greeting .contents .img img {
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .top-greeting .contents .img img {
    border-radius: 30px;
  }
}
.top-greeting .contents .img p {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 130px;
  height: 130px;
  background: #FFFFFF;
  border-radius: 100vw;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  color: #FF8F8F;
  font-size: 22px;
  text-align: center;
  line-height: 1.4;
  padding-top: 20px;
}
.top-greeting .contents .img p::before {
  content: "";
  position: absolute;
  top: 4px; /* 内側に4pxずらす */
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 100vw;
  border: 1px solid #FF8F8F;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .top-greeting .contents .img p {
    width: 120px;
    height: 120px;
    font-size: 18px;
    padding-top: 23px;
  }
}
.top-greeting .contents .img p small {
  font-size: 18px;
  display: block;
}
@media screen and (max-width: 768px) {
  .top-greeting .contents .img p small {
    font-size: 16px;
  }
}
.top-greeting .contents .img p span {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .top-greeting .contents .img p span {
    margin-top: 2px;
  }
}
.top-greeting .contents .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 60px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-greeting .contents .txt {
    margin: 20px 0 0;
  }
}
.top-greeting .contents .txt h4 {
  font-size: 32px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  line-height: 1.6;
  margin-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .top-greeting .contents .txt h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.top-greeting .contents .txt .btn01 {
  border: 1px solid #fff;
  margin: 33px 0 0;
  background: none;
}
@media screen and (max-width: 768px) {
  .top-greeting .contents .txt .btn01 {
    margin: 30px auto 0;
  }
}
.top-greeting .contents .txt .btn01:hover {
  border: 1px solid #fff;
  opacity: 1;
  background: #fff;
}

/*---------よくあるご質問----------*/
.top-faq {
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-faq {
    padding: 50px 0;
  }
}
.top-faq::before {
  content: "";
  position: absolute;
  background: url(../images/top/faq-deco.png);
  background-size: cover;
  width: 168px;
  height: 111px;
  z-index: 1;
  left: 140px;
  top: 120px;
}
@media screen and (max-width: 768px) {
  .top-faq::before {
    width: 79px;
    height: 52px;
    left: 20px;
    top: 28px;
  }
}

/*---------ループ画像----------*/
.top-loop {
  padding-bottom: 120px;
  position: relative;
}
.top-loop::before {
  content: "";
  position: absolute;
  background: url(../images/top/loop-deco.png);
  background-size: cover;
  width: 182px;
  height: 62px;
  z-index: 1;
  right: 100px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .top-loop::before {
    width: 98px;
    height: 33px;
    right: 20px;
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .top-loop {
    padding-bottom: 60px;
  }
}
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 200px;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .scroll-infinity__item {
    width: 150px;
  }
}
.scroll-infinity__item:nth-child(odd) {
  width: 226px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .scroll-infinity__item:nth-child(odd) {
    width: 140px;
    margin-top: 30px;
  }
}
.scroll-infinity__item > img {
  width: 100%;
}

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

  階層ページ

============================================================================*/
/*----------メインビジュアル----------*/
.low #mv {
  width: 100%;
  height: 320px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .low #mv {
    margin: 0;
  }
}
.low #mv:before {
  content: "";
  background-color: rgba(79, 68, 46, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.low #mv .ttl {
  display: block;
  width: 100%;
  font-size: 44px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 1px;
  color: #fff;
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-shadow: 0 0 6px #4D3E2C, 0 0 6px #4D3E2C;
}

.low .contents {
  position: relative;
}

@media screen and (max-width: 1100px) {
  .low #mv {
    height: 180px;
  }
  .low #mv .ttl {
    font-size: 30px;
    margin-top: -5px;
  }
}
/*各ページメインビジュアル背景*/
#feature #mv {
  background: url(../images/feature/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#staff #mv {
  background: url(../images/staff/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#clinic #mv {
  background: url(../images/clinic/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#access #mv {
  background: url(../images/access/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#medical #mv {
  background: url(../images/medical/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

/*----------当院の特長----------*/
#feature .feature .item {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #feature .feature .item {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #feature .feature .item:first-of-type {
    margin-top: 0;
  }
}
#feature .feature .item .txt .ttl-wrap {
  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;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #feature .feature .item .txt .ttl-wrap {
    margin-bottom: 15px;
  }
}
#feature .feature .item .txt .ttl-wrap img {
  width: 71px;
  height: 90px;
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  #feature .feature .item .txt .ttl-wrap img {
    width: 45px;
    height: 53px;
    margin-right: 12px;
  }
}
#feature .feature .item .txt .ttl-wrap h4 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 34px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #feature .feature .item .txt .ttl-wrap h4 {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  #feature .feature .item .txt .ttl-wrap h4.sm {
    font-size: 20px;
  }
}
#feature .feature .item .txt h5 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  display: block;
  letter-spacing: 0.04em;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  padding-left: 15px;
  margin-top: 30px;
  margin-bottom: 20px;
  position: relative;
  color: #FF8F8F;
  border-left: 4px solid #FF8F8F;
}
@media screen and (max-width: 768px) {
  #feature .feature .item .txt h5 {
    line-height: 1.4;
    font-size: 20px;
    margin-top: 15px;
  }
}
#feature .feature .item .img {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #feature .feature .item .img {
    width: 100%;
  }
}
#feature .feature .item .img img {
  width: 100%;
  outline: 1.5px dashed #ffffff;
  outline-offset: -8px;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  #feature .feature .item .img img {
    border-radius: 60px;
  }
}

/*----------スタッフ紹介----------*/
#staff .director .catch {
  font-size: 22px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  margin-top: 10px;
  color: #4FBEEC;
}

@media screen and (max-width: 768px) {
  #staff .director .catch {
    font-size: 18px;
    line-height: 1.6;
  }
}
#staff .director .career {
  background-repeat: repeat;
  background-size: 1.1257035647vw auto;
  width: 100%;
  padding: 50px 0 0;
}

@media screen and (max-width: 768px) {
  #staff .director .career {
    padding: 20px 0 0;
  }
}
#staff .director .career .box-item {
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  display: grid;
}

@media screen and (max-width: 768px) {
  #staff .director .career .box-item {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #staff .director .career .box-item .col2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

#staff .director .career .box-item .box {
  background: #FFECEC;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  #staff .director .career .box-item .box {
    width: 100%;
    padding: 20px;
  }
}
#staff .director .career .box-item .box h4 {
  text-align: center;
  background: #FF8F8F;
  color: #fff;
  border-radius: 10px;
  padding: 2px 0;
  font-size: 21px;
  font-weight: normal;
  margin-bottom: 20px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

@media screen and (max-width: 768px) {
  #staff .director .career .box-item .box h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
#staff .director .career .box-item .box ul li {
  line-height: 2.2;
}

#staff .director .career .box-item .box .col2 {
  gap: 0 20px;
}

@media screen and (max-width: 768px) {
  #staff .director .career .box-item .box .col2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
#staff .staff .img {
  text-align: center;
}
#staff .staff .img img {
  max-width: 800px;
  width: 100%;
  border-radius: 40px;
}

/*----------院内紹介----------*/
#clinic .clinic-slide {
  max-width: 1080px !important;
  position: relative;
}

#clinic .clinic-slide-main {
  position: relative;
}

#clinic .clinic-slide-main__outer {
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #clinic .clinic-slide-main__outer {
    margin-bottom: 10px;
  }
}
#clinic .clinic-slide-main__item {
  width: 100%;
  position: relative;
}

#clinic .clinic-slide-main__img {
  width: 100%;
  max-width: none;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  #clinic .clinic-slide-main__img {
    border-radius: 20px;
  }
}
#clinic .clinic-slide-main__caption {
  font-weight: bold;
  line-height: 1.4;
  font-size: 14px;
  background: #FF8F8F;
  color: #fff;
  position: absolute;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  bottom: 0;
  left: 0;
  border-radius: 0 20px 0 20px;
  padding: 8px 40px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  #clinic .clinic-slide-main__caption {
    padding: 10px 15px 12px;
  }
}
#clinic .clinic-slide-main__caption span {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  #clinic .clinic-slide-main__caption span {
    font-size: 14px;
  }
}
#clinic .clinic-slide {
  max-width: 900px !important;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

#clinic .clinic-slide-main {
  position: relative;
  z-index: 10;
  cursor: pointer;
}

#clinic .swiper-button-prev,
#clinic .swiper-button-next {
  height: 43px !important;
  width: 43px !important;
  position: absolute;
}

#clinic .swiper-button-prev {
  left: -21px;
}

#clinic .swiper-button-next {
  right: -21px;
}

#clinic .swiper-button-prev:after,
#clinic .swiper-button-next:after {
  content: "" !important;
  background-repeat: no-repeat;
  background-size: contain;
  height: 43px !important;
  width: 43px !important;
  margin: auto;
}

@media screen and (max-width: 768px) {
  #clinic .swiper-button-prev:after,
  #clinic .swiper-button-next:after {
    width: 35px !important;
    height: 35px !important;
  }
}
#clinic .swiper-button-prev:after {
  background-image: url(../images/clinic/prev.png);
}

#clinic .swiper-button-next:after {
  background-image: url(../images/clinic/next.png);
}

.clinic-slide-thumb__outer img {
  border-radius: 5px;
}

/*----------アクセス----------*/
#access .schedule-cont .schedule {
  max-width: 700px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
#access .schedule-cont .schedule table tr th {
  width: 100px;
}
@media screen and (max-width: 768px) {
  #access .schedule-cont .schedule table tr th {
    width: auto;
  }
}
#access .schedule-cont .schedule_note {
  text-align: center;
}

#access .map iframe {
  vertical-align: bottom;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  #access .map iframe {
    height: 300px;
  }
}
#access .map iframe + p {
  text-align: center;
  background: #FDEEF0;
  padding: 10px;
  line-height: 1.7;
  border-radius: 0 0 20px 20px;
}

#access .movie {
  text-align: center;
}

#access .movie iframe {
  border-radius: 20px;
  width: 800px;
  height: 450px;
}

@media screen and (max-width: 768px) {
  #access .movie iframe {
    width: 100%;
    height: 51vw;
    border-radius: 10px;
  }
}
#access .movie iframe + p {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  #access .movie iframe + p {
    font-size: 14px;
  }
}

#access .movie .root {
  gap: 30px;
}

@media screen and (max-width: 768px) {
  #access .movie .root {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
#access .movie .root h3 {
  position: relative;
  padding-left: 40px;
  margin-top: 10px;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  font-weight: normal;
	text-align: left;
}

@media screen and (max-width: 768px) {
 #access .movie .root h3 {
    line-height: 1.5;
    font-size: 14px;
  }
}
#access .movie .root h3 span {
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  background-color: #4FBEEC;
  border-radius: 100vw;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

@media screen and (max-width: 768px) {
  #access .movie .root h3 span {
    line-height: 30px;
    top: 2px;
  }
}
@media screen and (max-width: 768px) {
  #access .movie .root p {
    font-size: 13px;
    line-height: 1.8;
  }
}
#access .movie .root img {
  width: 100%;
  border-radius: 20px;
}
/*============================================================================

  フッター

============================================================================*/
/* footer */
.footer {
  position: relative;
  background-position: center bottom;
  background-repeat: no-repeat;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  background-size: cover;
}

.footer .contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer .contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer .contents .txt {
  text-align: center;
  background: #FDEEF0;
  width: 50%;
  padding: 60px 20px;
}
@media screen and (max-width: 768px) {
  .footer .contents .txt {
    width: 100%;
    padding: 40px 20px;
  }
}

.footer .contents .txt .logo {
  width: 380px;
}
@media screen and (max-width: 768px) {
  .footer .contents .txt .logo {
    width: 280px;
  }
}

.footer .contents .txt .add {
  line-height: 1.6;
  margin-top: 18px;
}

.footer .contents .txt .tel {
  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;
  margin-bottom: 10px;
}

.footer .contents .txt .tel a {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  color: #FF8F8F;
  display: block;
  padding: 14px 0 19px;
}

.footer .contents .txt .tel a h3 {
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
  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;
}

.footer .contents .txt .tel a h3:before,
.footer .contents .txt .tel a h3:after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: 1px dashed #FF8F8F;
}

.footer .contents .txt .tel a h3:before {
  margin-right: 5px;
}

.footer .contents .txt .tel a h3:after {
  margin-left: 5px;
}

.footer .contents .txt .tel a p {
  font-size: 28px;
  letter-spacing: 1px;
  line-height: 0.8;
  margin-top: 5px;
  position: relative;
  padding-left: 40px;
}
.footer .contents .txt .tel a p::before {
  position: absolute;
  content: "";
  background: url(../images/common/tel-icon.png);
  background-size: cover;
  width: 29px;
  height: 29px;
  left: 0;
  top: -3px;
}

.footer .contents .map {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer .contents .map {
    width: 100%;
  }
}

.footer .contents .map iframe {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .footer .contents .map iframe {
    height: 70vw;
    vertical-align: bottom;
  }
}
/*----------ナビゲーション----------*/
.footer-nav {
  padding: 40px 0 40px;
}

@media screen and (max-width: 768px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-nav .content .ttl {
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 0px;
  position: relative;
  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;
}

.footer-nav .content ul li a {
  position: relative;
  color: #4B4739;
  padding-left: 22px;
  line-height: 2.2;
}

.footer-nav .content ul li a::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #4B4739;
  position: absolute;
  top: 13px;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

.footer-nav .content .left {
  width: 34.6%;
}

.footer-nav .content .left .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-nav .content .left .flex ul {
  width: 50%;
}

.footer-nav .content .right {
  width: 61.3%;
}

.footer-nav .content .right .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-nav .content .right .flex ul {
  width: 33%;
}

.footer-bnr {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer-bnr {
    margin: 10px 0 20px;
  }
}
.footer-bnr .items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-bnr .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-bnr .items a {
  width: 32.333%;
}
@media screen and (max-width: 768px) {
  .footer-bnr .items a {
    width: 100%;
    margin-top: 10px;
  }
}

.copy {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  background-color: #F7F3EE;
  padding: 18px 0;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .copy {
    margin-bottom: 60px;
  }
}
/*----------スマホフッター固定ボタン----------*/
.sp_bottom-menu {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.sp_bottom-menu__btn {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  vertical-align: bottom;
  width: 50%;
  height: 60px;
  line-height: 30px;
  background-color: rgba(255, 143, 143, 0.9254901961);
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3215686275);
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

.sp_bottom-menu__btn::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 27px;
  background: url(../images/common/web.png) no-repeat center center/contain;
  margin-right: 5px;
}

.sp_bottom-menu__btn--line {
  background-color: rgba(14, 211, 0, 0.9058823529) !important;
}

.sp_bottom-menu__btn--line::before {
  width: 22px;
  height: 30px;
  background-image: url(../images/common/line.png) !important;
}

.sp_bottom-menu__btn--tel {
  background-color: rgba(50, 173, 132, 0.8823529412) !important;
}

.sp_bottom-menu__btn--tel::before {
  width: 19px;
  height: 29px;
  background-image: url(../images/common/tel.png) !important;
}

@media screen and (max-width: 1024px) {
  .sp_bottom-menu {
    visibility: visible;
    height: auto;
    overflow: visible;
  }
}
/*----------上部に戻るボタン----------*/
.pageup-area {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  display: none;
}

@media screen and (max-width: 768px) {
  .pageup-area {
    right: 10px;
    bottom: 70px;
  }
}
.pageup {
  display: block;
  display: none;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 100vw;
  background-color: #333;
  opacity: 0.8;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pageup::before,
.pageup::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  background-color: #fff;
}

.pageup::before {
  width: 26px;
  height: 5px;
  border-radius: 3px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
  left: 25px;
}

.pageup::after {
  width: 26px;
  height: 5px;
  border-radius: 3px;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.pageup:hover,
.pageup:focus {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .pageup {
    width: 40px;
    height: 40px;
  }
  .pageup::before,
  .pageup::after {
    top: calc(50% - 1px);
  }
  .pageup::before {
    width: 18px;
    height: 3px;
    left: 17px;
  }
  .pageup::after {
    width: 18px;
    height: 3px;
    right: 17px;
  }
}/*# sourceMappingURL=style.css.map */