@charset "UTF-8";
.telfont {
  white-space: nowrap;
  letter-spacing: 0;
  font-family: "Oswald", sans-serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background-position: top center;
  background-repeat: no-repeat;
  font-size: inherit;
}

*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

li,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

address,
i {
  font-style: normal;
}

ins {
  background-color: #ffff99;
  color: #000000;
  text-decoration: none;
}

mark {
  background-color: #ffff99;
  color: #000000;
  font-weight: bold;
  font-style: italic;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  text-align: left;
}

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

input,
select {
  vertical-align: middle;
}

img,
svg {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  max-width: 100%;
  /***/
  width: auto;
  height: auto;
  vertical-align: top;
  line-height: 0;
}

ins[style] {
  background-color: transparent;
}

span {
  vertical-align: baseline;
}

em {
  font-weight: bold;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.38;
}

body {
  -webkit-font-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  color: #333333;
  font-weight: normal;
  font-size-adjust: 100%;
  font-family: Helvetica Neue, Helvetica, Hiragino Sans, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

a {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
a:hover {
  opacity: 0.9;
  cursor: pointer;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f03535;
  font-weight: bold;
}

.blue {
  color: #0789d2;
  font-weight: bold;
}

strong {
  color: #f76e92;
  font-weight: bold;
}

.line {
  background: -webkit-linear-gradient(transparent 60%, #ffe958 60%, #ffe958 90%, transparent 90%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffe958), color-stop(90%, #ffe958), color-stop(90%, transparent));
  background: linear-gradient(transparent 60%, #ffe958 60%, #ffe958 90%, transparent 90%);
  font-weight: bold;
}

.gmap {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 56.25%;
  height: 0;
}

.gmap embed,
.gmap iframe,
.gmap object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.click:hover {
  opacity: 0.8;
  cursor: pointer;
}

.tel {
  position: relative;
}

.phone {
  position: absolute;
  white-space: nowrap;
  letter-spacing: 0;
  font-weight: 900;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}

.time {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  margin: auto;
  white-space: nowrap;
  letter-spacing: 0;
  font-weight: bold;
}
.time i {
  padding: 0.2rem 0.5rem;
  background-color: #efffe9;
  color: #32b800;
}

.block {
  display: block;
}

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

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

.flex-around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

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

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

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

.flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

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

.margin-auto {
  margin: auto;
}

.auto {
  margin-right: auto;
  margin-left: auto;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

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

.table {
  display: table;
  width: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: top;
}

.vertical-middle {
  vertical-align: middle;
}

.vertical-bottom {
  vertical-align: bottom;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.no-repeat {
  background-repeat: no-repeat;
}

.cover {
  background-size: cover;
}

.contain {
  background-size: contain;
}

.hidden {
  overflow: hidden;
}

.scroll {
  overflow: scroll;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clear {
  clear: both;
}

.mincho {
  font-family: "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", serif;
}

.text {
  line-height: 1.8;
}
.text p {
  margin-bottom: 1.5em;
}
.text p:last-child {
  margin-bottom: 0;
}

.img-cover {
  position: relative;
  overflow: hidden;
}
.img-cover img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
}

.border-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.content-box {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.font-bold {
  font-weight: bold;
}

.font-normal {
  font-weight: normal;
}

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

body {
  -webkit-font-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  color: #333333;
  font-weight: normal;
  font-size-adjust: 100%;
  font-family: Helvetica Neue, Helvetica, Hiragino Sans, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0.06em;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

a {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
a:hover {
  opacity: 0.9;
  cursor: pointer;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f03535;
  font-weight: bold;
}

.blue {
  color: #0789d2;
  font-weight: bold;
}

strong {
  color: #f76e92;
  font-weight: bold;
}

.line {
  background: -webkit-linear-gradient(transparent 60%, #ffe958 60%, #ffe958 90%, transparent 90%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffe958), color-stop(90%, #ffe958), color-stop(90%, transparent));
  background: linear-gradient(transparent 60%, #ffe958 60%, #ffe958 90%, transparent 90%);
  font-weight: bold;
}

.gmap {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 56.25%;
  height: 0;
}

.gmap embed,
.gmap iframe,
.gmap object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.click:hover {
  opacity: 0.8;
  cursor: pointer;
}

.sp {
  display: none;
}

.tel {
  position: relative;
}

.phone {
  position: absolute;
  white-space: nowrap;
  letter-spacing: 0;
  font-weight: 900;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}

.time {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  margin: auto;
  white-space: nowrap;
  letter-spacing: 0;
  font-weight: bold;
}
.time i {
  padding: 0.2rem 0.5rem;
  background-color: #efffe9;
  color: #32b800;
  margin-right: 0.7rem;
}

.block {
  display: block;
}

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

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

.flex-around-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-grow-1-pc {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

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

.flex-center-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-wrap-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-grid-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-grow-pc {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

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

.margin-auto-pc {
  margin: auto;
}

.auto-pc {
  margin-right: auto;
  margin-left: auto;
}

.bold-pc {
  font-weight: bold;
}

.normal-pc {
  font-weight: normal;
}

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

.text-left-pc {
  text-align: left;
}

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

.table-pc {
  display: table;
  width: 100%;
}

.table-cell-pc {
  display: table-cell;
  vertical-align: top;
}

.vertical-middle-pc {
  vertical-align: middle;
}

.vertical-bottom-pc {
  vertical-align: bottom;
}

.block-pc {
  display: block;
}

.inline-pc {
  display: inline;
}

.inline-block-pc {
  display: inline-block;
}

.relative-pc {
  position: relative;
}

.absolute-pc {
  position: absolute;
}

.fixed-pc {
  position: fixed;
}

.no-repeat-pc {
  background-repeat: no-repeat;
}

.cover-pc {
  background-size: cover;
}

.contain-pc {
  background-size: contain;
}

.hidden-pc {
  overflow: hidden;
}

.scroll-pc {
  overflow: scroll;
}

.float-left-pc {
  float: left;
}

.float-right-pc {
  float: right;
}

.clear-pc {
  clear: both;
}

.mincho-pc {
  font-family: "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", serif;
}

.text-pc {
  line-height: 1.8;
}
.text-pc p {
  margin-bottom: 1.5em;
}
.text-pc p:last-child {
  margin-bottom: 0;
}

.img-cover-pc {
  position: relative;
  overflow: hidden;
}
.img-cover-pc img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
}

.border-box-pc {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.content-box-pc {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.font-bold-pc {
  font-weight: bold;
}

.font-normal-pc {
  font-weight: normal;
}

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

/* Post
******************/
.post-content {
  line-height: 1.8;
  position: relative;
  z-index: 1;
  margin: 0 0 3rem;
}
.post-content::after {
  content: "";
  display: block;
  clear: both;
}
.post-content > a {
  color: #117ee4;
}
.post-content > p {
  margin-bottom: 1.62em;
}
.post-content > blockquote {
  background-color: #f1f1f1;
  position: relative;
  margin: 3em 0;
  color: #6d6d6d;
  background-color: #f3f3f3;
  color: #696969;
  border-radius: 1rem;
  padding: 5.5rem 5rem 3rem;
  font-size: 1.3rem;
}
.post-content > blockquote::after, .post-content > blockquote::before {
  content: url("../imgco/quote.svg");
  position: absolute;
  width: 2.6rem;
  height: 2.6rem;
  opacity: 0.2;
}
.post-content > blockquote::before {
  top: 0.4rem;
  left: 0.8rem;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.post-content > blockquote::after {
  bottom: 0.4rem;
  right: 0.8rem;
}
.post-content > blockquote cite {
  font-size: 0.8em;
  color: #b3b3b3;
  display: block;
  text-align: right;
  position: relative;
  bottom: -1rem;
}
.post-content > blockquote a {
  color: #9dc6da;
}

.post-thumbnail {
  text-align: center;
  margin: 0 0 1em;
  overflow: hidden;
  position: relative;
  height: 38rem;
}
.post-thumbnail img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/* post headline */
.post-banner {
  background-position: center;
  background-size: cover;
}
.post-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 29rem;
  padding: 2rem 0;
}
.post-banner__box {
  line-height: 1.6;
  position: relative;
  z-index: 1;
  color: #3c4f59;
  background-color: #fff;
  border: 1px solid #dde1e2;
  -webkit-box-shadow: 0 0 0 1px #3c4f59, 0 0 0 4px #fff, 0 0 0 6px #3c4f59;
          box-shadow: 0 0 0 1px #3c4f59, 0 0 0 4px #fff, 0 0 0 6px #3c4f59;
  padding: 3rem;
  width: 68rem;
}
.post-banner__box-head {
  font-weight: bold;
  position: relative;
  line-height: 1.3;
  font-size: 2.8rem;
}
.post-banner__box-desc {
  line-height: 1.6;
  margin-top: 1rem;
  font-size: 1.4rem;
}

.post-header h1 {
  color: #fff;
  position: relative;
  background: #3c4f59;
  background: -webkit-linear-gradient(-45deg, #3c4f59 0%, #3c4f59 70%, #3f5d6e 70%, #3f5d6e 70%, #3f5d6e 100%);
  background: -webkit-linear-gradient(315deg, #3c4f59 0%, #3c4f59 70%, #3f5d6e 70%, #3f5d6e 70%, #3f5d6e 100%);
  background: linear-gradient(135deg, #3c4f59 0%, #3c4f59 70%, #3f5d6e 70%, #3f5d6e 70%, #3f5d6e 100%);
  z-index: 2;
  font-size: 2.8rem;
  padding: 1.5rem 1rem 1.5rem 3rem;
  margin-bottom: 3rem;
  border-radius: 0.5rem;
}

.post-content > h2, .post-content > h3, .post-content > h4, .post-content > h5, .post-content > h6 {
  font-weight: bold;
  line-height: 1.4;
  clear: both;
}
.post-content > h2 {
  color: #fff;
  background: #3f5d6e;
  background: -webkit-linear-gradient(-45deg, #3f5d6e 0%, #3c4f59 30%, #3f5d6e 30%, #3f5d6e 30%, #3c4f59 100%);
  background: -webkit-linear-gradient(315deg, #3f5d6e 0%, #3c4f59 30%, #3f5d6e 30%, #3f5d6e 30%, #3c4f59 100%);
  background: linear-gradient(135deg, #3f5d6e 0%, #3c4f59 30%, #3f5d6e 30%, #3f5d6e 30%, #3c4f59 100%);
  font-size: 2.4rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0 1.5rem 2.5rem;
  border-radius: 0.5rem;
}
.post-content > h3 {
  position: relative;
  font-size: 2rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 0.7rem 0rem 0.7rem 1.6rem;
  border-left: 0.8rem solid #3c4f59;
}
.post-content > h4 {
  line-height: 1.4;
  border-bottom: 0.1rem solid #333;
  font-size: 1.8rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

/* post Table */
.post-content > table {
  margin: 3em 0;
  width: 100%;
  font-size: 0.86em;
}
.post-content > table td,
.post-content > table th {
  vertical-align: top;
  text-align: left;
  padding: 1rem 3rem;
}
.post-content > table tr {
  border-bottom: 0.5rem solid #fff;
}
.post-content > table thead th {
  background-color: #3c4f59;
  color: #fff;
}
.post-content > table thead th:not(:last-child) {
  border-right: 0.5rem solid #fff;
}
.post-content > table tbody th {
  background-color: #e5e5e5;
  color: #3c4f59;
  width: 30%;
}
.post-content > table tbody th:not(:last-child) {
  border-right: 0.5rem solid #fff;
}
.post-content > table tbody td {
  background-color: #f9f6f3;
}
.post-content > table tbody td:not(:last-child) {
  border-right: 0.5rem solid #fff;
}
.post-content > table tfoot {
  font-size: 0.82em;
}
.post-content > table tfoot th {
  background-color: #f3fbe2;
}
.post-content > table tfoot td {
  background-color: #fff;
  text-align: right;
}
.post-content > table caption {
  text-align: center;
  font-size: 0.82em;
  color: #848484;
  margin: 0 0 0.8em;
}

.post-content > ol, .post-content > ul {
  position: relative;
  background-color: #fbf8f6;
  z-index: 1;
  border-top: 0.4rem solid #3c4f59;
  padding: 1.5rem 2.5rem;
  margin: 4rem 0;
}
.post-content > ol > li, .post-content > ul > li {
  position: relative;
  padding: 1rem 0 1rem 5rem;
}
.post-content > ul > li {
  background-image: url("../img/si__post-list__icn.png");
  background-position: top 1.6rem left 1.6rem;
}
.post-content > ol > li {
  counter-increment: li;
}
.post-content > ol > li::before {
  content: counter(li);
  position: absolute;
  display: inline-block;
  text-align: center;
  font-size: 0.8em;
  font-weight: bold;
  line-height: 0;
  background-color: #3c4f59;
  color: #fff;
  border-radius: 0.2rem;
  left: 1.6rem;
  top: 1.4rem;
  width: 1.6em;
  padding: 0.8em 0;
}

.post-content .box {
  margin: 3em 0;
  padding: 4rem 5rem 3rem;
}
.post-content .box.is-yellow {
  background-color: #f7f3cf;
  border: 0.4rem dashed #f3e3b2;
}
.post-content .box.is-red {
  background-color: #f7cfcf;
  border: 0.4rem dashed #f3b2b2;
}
.post-content .box.is-gray {
  background-color: #f1f1f1;
  border: 0.4rem dashed #c3c3c3;
}

.post__box__tyui {
  border: 0.1rem solid #f7cf6a;
  margin: 4rem 0;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 2.6rem 2.5rem 1.3rem;
  position: relative;
}
.post__box__tyui::before {
  content: "注意点";
  color: #f7cf6a;
  font-size: 2.2rem;
  top: -2.1rem;
  padding: 2rem 0.8rem 2rem 6rem;
  position: absolute;
  font-weight: bold;
  background: #fff;
  line-height: 0;
}
.post__box__tyui::after {
  content: "\f071";
  position: absolute;
  background: #f7cf69;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2.2rem;
  border: 0.5rem solid #fff;
  text-align: center;
  width: 5.4rem;
  height: 5.4rem;
  line-height: 4.5rem;
  left: 2.5rem;
  top: -3.1rem;
  border-radius: 50%;
}
.post__box__point {
  border: 0.1rem solid #85db8f;
  margin: 4rem 0;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 2.6rem 2.5rem 1.3rem;
  position: relative;
}
.post__box__point::before {
  content: "ポイント";
  color: #85db8f;
  font-size: 2.2rem;
  top: -2.1rem;
  padding: 2rem 0.8rem 2rem 6rem;
  position: absolute;
  font-weight: bold;
  background: #fff;
  line-height: 0;
}
.post__box__point::after {
  content: "\f00c";
  position: absolute;
  background: #85db8f;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2.2rem;
  border: 0.5rem solid #fff;
  text-align: center;
  width: 5.4rem;
  height: 5.4rem;
  line-height: 4.5rem;
  left: 2.5rem;
  top: -2.9rem;
  border-radius: 50%;
}
.post__box__midashi {
  border: 0.1rem solid #ea91a9;
  margin-bottom: 4rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 2.5rem 1.6rem;
  position: relative;
}
.post__box__midashi-title {
  background-color: #ea91a9;
  position: absolute;
  line-height: 0;
  font-size: 1.8rem;
  left: -0.1rem;
  top: -3.2rem;
  color: #fff;
  padding: 1.6rem 1.5rem;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  letter-spacing: 0;
}

.alignright {
  display: block;
  margin: 0 0 1em;
  float: right;
  margin: 0 0 1em 1em;
}

.alignleft {
  display: block;
  margin: 0 0 1em;
  float: left;
  margin: 0 1em 1em 0;
}

.aligncenter {
  display: block;
  text-align: center;
  margin: 0 auto 1rem;
}

.kanren {
  position: relative;
  background-color: #3c4f59;
  margin-top: 6rem;
  padding: 3rem;
}
.kanren__label {
  margin-top: -7.1rem;
  margin-left: -3rem;
  margin-bottom: 3rem;
}
.kanren__box {
  clear: both;
  display: table;
  width: 100%;
  color: inherit !important;
  background-color: #fff;
  padding: 2rem 3rem;
}
.kanren__img {
  display: table-cell;
  padding-right: 3rem;
  width: 16rem;
}
.kanren__content {
  display: table-cell;
}
.kanren__title {
  font-weight: bold;
  color: #eb6100;
  margin: 0 0 0.5rem;
  font-size: 2rem;
}
.kanren__text {
  font-size: 0.7em;
  color: #797979;
}

.post-relation__title {
  padding: 2rem;
  background-color: #3c4f59;
  color: #fff;
  padding: 2rem;
  font-size: 2rem;
}
.post-relation__title.is-case {
  margin-bottom: 3rem;
}
.post-relation__item {
  background-color: #fff;
}
.post-relation__item:not(:last-child) {
  border-bottom: 0.1rem dashed #d7d7d7;
}
.post-relation__item a {
  color: inherit;
  position: relative;
  display: block;
  font-weight: normal;
  padding: 1.9rem 0 1.6rem 3rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.post-relation__item a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 1.2rem;
  top: 2.5rem;
  border: 0.5rem solid transparent;
  border-left: 0.5rem solid #3c4f59;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.post-relation__item a:hover {
  color: #1b3474;
}
.post-relation__item a:hover::before {
  left: 1.6rem;
}

/* Layout
******************/
.bg1 {
  background-color: #e7ebed;
}

.bg2 {
  background-color: #f2f6f6;
}

.bg3 {
  background-color: #eb8a00;
}

.bg4 {
  background-color: #eb6100;
}

.bg5 {
  background-color: #fffeed;
}

.bg6 {
  background-color: #fffeed;
}

.pattern1 {
  background-image: url("../img/si__pattern1.png");
  background-repeat: repeat;
}

.pattern2 {
  background-image: url("../img/si__pattern2.png");
  background-repeat: repeat;
}

.pattern3 {
  background-image: url("../img/si__pattern3.png");
  background-repeat: repeat;
}

.bg-image1 {
  background-image: url("1bg-image1.png");
}
.bg-image1-pc {
  background-image: url("1bg-image1_pc.png");
}

.bg-image2 {
  background-image: url("2bg-image2.png");
}
.bg-image2-pc {
  background-image: url("2bg-image2_pc.png");
}

.bg-image3 {
  background-image: url("3bg-image3.png");
}
.bg-image3-pc {
  background-image: url("3bg-image3_pc.png");
}

.bg-image4 {
  background-image: url("4bg-image4.png");
}
.bg-image4-pc {
  background-image: url("4bg-image4_pc.png");
}

.bg-image5 {
  background-image: url("5bg-image5.png");
}
.bg-image5-pc {
  background-image: url("5bg-image5_pc.png");
}

.bg3 {
  position: relative;
  background-image: url("../img/si__bg3__center_pc.png");
  background-size: contain;
  background-repeat: repeat-y;
}
.bg3::after, .bg3::before {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  background-size: contain;
  content: "";
}
.bg3::before {
  background-image: url("../img/si__bg3__top_pc.png");
  background-position: left bottom;
  top: -8rem;
  height: 8rem;
}
.bg3::after {
  background-image: url("../img/si__bg3__bottom_pc.png");
  background-position: left top;
  bottom: -8rem;
  height: 8rem;
}

.c-list {
  font-weight: bold;
  margin: 2rem 0;
}
.c-list-item {
  position: relative;
  padding-left: 3rem;
}
.c-list-item::before {
  position: absolute;
  left: 0;
  display: block;
  border-radius: 100%;
  background-color: #3c4f59;
  content: "";
  top: 1rem;
  width: 1rem;
  height: 1rem;
}

.c-body {
  line-height: 1.8;
}
.c-body > ol, .c-body > ul {
  position: relative;
  background-color: #fbf8f6;
  z-index: 1;
  border-top: 0.4rem solid #3c4f59;
  padding: 1.5rem 2.5rem;
  margin: 4rem 0;
}
.c-body > ol > li, .c-body > ul > li {
  position: relative;
  padding: 1rem 0 1rem 5rem;
}
.c-body > ul > li {
  background-image: url("../img/si__post-list__icn.png");
  background-position: top 1.6rem left 1.6rem;
}
.c-body > ol > li {
  counter-increment: li;
}
.c-body > ol > li::before {
  content: counter(li);
  position: absolute;
  display: inline-block;
  text-align: center;
  font-size: 0.8em;
  font-weight: bold;
  line-height: 0;
  background-color: #3c4f59;
  color: #fff;
  border-radius: 0.2rem;
  left: 1.6rem;
  top: 1.4rem;
  width: 1.6em;
  padding: 0.8em 0;
}
.c-body > table {
  margin: 3em 0;
  width: 100%;
  font-size: 0.86em;
}
.c-body > table td,
.c-body > table th {
  vertical-align: top;
  text-align: left;
  padding: 1rem 3rem;
}
.c-body > table tr {
  border-bottom: 0.5rem solid #fff;
}
.c-body > table thead th {
  background-color: #3c4f59;
  color: #fff;
}
.c-body > table thead th:not(:last-child) {
  border-right: 0.5rem solid #fff;
}
.c-body > table tbody th {
  background-color: #e5e5e5;
  color: #3c4f59;
  width: 30%;
}
.c-body > table tbody th:not(:last-child) {
  border-right: 0.5rem solid #fff;
}
.c-body > table tbody td {
  background-color: #f9f6f3;
}
.c-body > table tbody td:not(:last-child) {
  border-right: 0.5rem solid #fff;
}
.c-body > table tfoot {
  font-size: 0.82em;
}
.c-body > table tfoot th {
  background-color: #f3fbe2;
}
.c-body > table tfoot td {
  background-color: #fff;
  text-align: right;
}
.c-body > table caption {
  text-align: center;
  font-size: 0.82em;
  color: #848484;
  margin: 0 0 0.8em;
}
.c-body::after {
  display: block;
  clear: both;
  content: "";
}
.c-body p {
  margin-bottom: 1em;
}
.c-body p:last-child {
  margin-bottom: 0;
}
.c-body h2 {
  color: #fff;
  background: #3f5d6e;
  background: -webkit-linear-gradient(-45deg, #3f5d6e 0%, #3c4f59 30%, #3f5d6e 30%, #3f5d6e 30%, #3c4f59 100%);
  background: -webkit-linear-gradient(315deg, #3f5d6e 0%, #3c4f59 30%, #3f5d6e 30%, #3f5d6e 30%, #3c4f59 100%);
  background: linear-gradient(135deg, #3f5d6e 0%, #3c4f59 30%, #3f5d6e 30%, #3f5d6e 30%, #3c4f59 100%);
  font-size: 2.4rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0 1.5rem 2.5rem;
  border-radius: 0.5rem;
}
.c-body h3 {
  position: relative;
  font-size: 2rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 0.7rem 0rem 0.7rem 1.6rem;
  border-left: 0.8rem solid #3c4f59;
}
.c-body h4 {
  line-height: 1.4;
  border-bottom: 0.1rem solid #333;
  font-size: 1.8rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.c-body a {
  color: #167bcc;
}
.c-body small {
  font-size: 1.2rem;
}

.c-title {
  position: relative;
  background: #3f5d6e;
  background: -webkit-linear-gradient(315deg, #3f5d6e 0%, #3c4f59 30%, #3f5d6e 30%, #3f5d6e 30%, #3c4f59 100%);
  background: linear-gradient(135deg, #3f5d6e 0%, #3c4f59 30%, #3f5d6e 30%, #3f5d6e 30%, #3c4f59 100%);
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 3rem;
  padding: 2.5rem 3rem;
  border-radius: 0.6rem;
  font-size: 3.2rem;
}

.c-headline {
  position: relative;
  margin: 1.6em 0 0.8em;
  border-top: 2px solid #3c4f59;
  border-bottom: 1px solid #eeeeee;
  background-image: url("../img/si__postH1__bg_pc.jpg");
  background-position: top center;
  -webkit-box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
  padding: 1.3rem 1rem 1rem 3rem;
  border-radius: 0.8rem;
  font-size: 2.2rem;
}
.c-headline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 0.6rem;
  height: 90%;
  background-color: #3c4f59;
  content: "";
  height: calc(100% - 3rem);
}

.b-p1 {
  background-image: url("../img/si__grid__pattern_bg.jpg");
}

.b-p2 {
  background-image: url("../img/si__note__pattern_bg.jpg");
}

.b-p3 {
  background-image: url("../img/si__board__pattern_bg.jpg");
}

.c-more {
  text-align: center;
}
.c-more a {
  display: inline-block;
  border-radius: 10rem;
  background-color: #ffffff;
  background-image: url("../icn/c-more__arrow_pc.png");
  background-repeat: no-repeat;
  color: #3c4f59;
  font-weight: bold;
  padding: 2.2rem 10rem 2rem 8rem;
  border: 0.3rem solid #3c4f59;
  background-position: right 2.2rem center;
  font-size: 2rem;
}

.tb-head {
  font-weight: bold;
  font-size: 0.9em;
}

.tb-body {
  position: relative;
  padding-left: 2rem;
}
.tb-body::before {
  position: absolute;
  left: 0;
  content: "・";
  top: 0.1rem;
}

hr {
  border-top: 0.1rem dashed #cccccc;
  margin: 1.5rem 0;
}

.unit {
  margin: 0 auto;
  padding: 1rem 0;
  width: 110rem;
}

.sec-side:not(:last-of-type) {
  margin-bottom: 3rem;
}

.container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-repeat: repeat;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  margin: auto;
  min-width: 114rem;
  max-width: 1920px;
}
.container-header {
  padding-top: 11rem;
  background-image: url("../img/si__container-header__bg_pc.jpg");
  background-position: top center;
}
.container-header.is-type2 {
  background-image: url("../img/si__container-header_type2__bg_pc.jpg");
  min-height: 71.7rem;
}
.container-header.is-type4 {
  background-image: url("../img/si__container-header_type4__bg_pc.jpg");
  min-height: 71.7rem;
  background-position: bottom center;
}
.container-side {
  position: relative;
  z-index: 100;
  float: right;
  width: 24rem;
}
.container-side__inner {
  width: inherit;
}
.container-side__inner.on {
  bottom: 0;
}
.pagetop {
  position: fixed;
  z-index: 9995;
  display: none;
  overflow: hidden;
  background-image: url("../img/si__container__icn_pc.png");
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 1rem;
  left: 50%;
  margin-left: 61rem;
  width: 6rem;
  height: 6rem;
}
.pagetop.in {
  bottom: 3rem;
}

.campaign__inner {
  padding: 7rem 0;
}
.campaign__img1 {
  margin-bottom: 4rem;
}
.campaign__img2 {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.campaign__img2:hover {
  opacity: 0.9;
}
.campaign__img2-toggle {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  background-color: #39c5d6;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 0.7rem 0;
  font-size: 2.2rem;
}
.campaign__img2-toggle p::after {
  display: inline-block;
  background-image: url("../img/si__campaign__img2-toggle_bg_pc.png");
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  top: 0.3rem;
  left: 1.5rem;
  width: 3.7rem;
  height: 2.2rem;
}
.campaign__img2-toggle.on p::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.campaign__img2-content {
  visibility: hidden;
  overflow: hidden;
  height: 0;
  background-color: #f3fbfd;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0 3rem;
  border: 0.2rem solid #3bc4d6;
  border-top: none;
  border-bottom: none;
}
.campaign__img2-content.open {
  visibility: unset;
  height: auto;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.campaign__img2-content-headline {
  margin: 0 auto 3rem;
}
.campaign__img2-content-subtitle {
  margin-bottom: 2rem;
}
.campaign__img2-content-list {
  margin-bottom: 2.5rem;
  font-weight: 600;
  font-size: 1.6rem;
}
.campaign__img2-content-list > li {
  position: relative;
  padding-left: 1.8rem;
}
.campaign__img2-content-list > li:not(:last-child) {
  margin-bottom: 1.2rem;
}
.campaign__img2-content-list > li::before {
  position: absolute;
  left: 0;
  display: block;
  border-radius: 50%;
  background-color: #39c5d6;
  content: "";
  top: 0.2rem;
  width: 1.2rem;
  height: 1.2rem;
}
.campaign__img2-content-text {
  font-weight: 500;
  line-height: 1.5;
  font-size: 1.8rem;
}

.qualification {
  background-color: #f3fbfd;
}
.qualification__inner {
  padding: 100px 0;
}
.qualification__title {
  margin-bottom: 50px;
}
.qualification__text {
  margin-bottom: 30px;
}
.qualification__movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.qualification__figure {
  margin-bottom: 30px;
}

.worries {
  background-image: url("../img/si__common__bg1_pc.jpg");
  background-position: center top;
}
.worries__title {
  margin: 9rem auto 1rem;
}
.worries__pic {
  margin-bottom: 3rem;
}
.worries__arrow {
  margin-bottom: 5rem;
}

.correct {
  height: 28rem;
  background-image: url("../img/si__correct__bg_pc.jpg");
  background-position: center;
}
.correct__copy {
  margin: 5rem auto 0;
}

.difference {
  background-color: #f3fbfd;
}
.difference__title {
  margin: 10rem auto 8rem;
}
.difference__table {
  margin-bottom: 8rem;
}
.difference__table td,
.difference__table th {
  padding: 2rem 2.5rem;
  border: 1px solid #45ddda;
}
.difference__table thead {
  background-color: #ccf0f0;
}
.difference__table tbody th {
  background-color: #fffde7;
  color: #39c5d6;
  vertical-align: middle;
  text-align: center;
}
.difference__table tbody td {
  vertical-align: top;
  line-height: 1.8;
}
.difference__table tbody td li {
  position: relative;
  padding-left: 2.5rem;
}
.difference__table tbody td li::before {
  position: absolute;
  top: 0.8rem;
  left: 0;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 100%;
  background-color: #39c5d6;
  content: "";
}
.difference__table tfoot td {
  border: none;
  padding: 10px 0 0;
  border: none;
  text-align: right;
  font-size: 12px;
}
.difference__box {
  position: relative;
  margin-bottom: 8rem;
  padding-right: 48rem;
}
.difference__headline {
  margin-bottom: 2rem;
}
.difference__pic {
  position: absolute;
  top: 0;
  right: 0;
}

.mouthpiece {
  background-image: url("../img/si__mouthpiece_type2_bg_pc.jpg");
  background-position: left top;
}
.mouthpiece__inner {
  padding: 14.4rem 0 5.7rem;
}
.mouthpiece__title {
  margin: 0 auto 3rem;
}
.mouthpiece__body-price, .mouthpiece__body-text {
  margin: 0 auto;
}

.symptoms {
  background-image: url("../img/si__common__bg1_pc.jpg");
  background-position: center top;
}
.symptoms__title {
  margin: 9rem auto 6rem;
}
.symptoms__pic {
  margin-bottom: 8rem;
}
.symptoms__text {
  margin-bottom: 8rem;
  text-align: center;
}

.cost {
  background-color: #fdf3f7;
}
.cost__title {
  margin: 9rem auto 2rem;
}
.cost__point {
  margin-bottom: 4rem;
}
.cost__desc {
  margin-bottom: 4rem;
}
.cost__moderu {
  margin-bottom: 1rem;
}
.cost__tyusyaku {
  margin-bottom: 6rem;
  font-size: 1.2rem;
}
.cost__message-head {
  margin: 6rem auto 2rem;
}
.cost__message-body {
  margin-bottom: 8rem;
}
.cost__box {
  position: relative;
  margin-bottom: 8rem;
  padding-right: 48rem;
}
.cost__headline {
  margin-bottom: 2rem;
}
.cost__pic {
  position: absolute;
  top: 0;
  right: 0;
}

.lifestyle {
  background-image: url("../img/si__lifestyle__bg_pc.jpg");
}
.lifestyle__inner {
  padding: 6rem 0;
}
.lifestyle__title {
  margin: 0 auto 4rem;
}
.lifestyle__box {
  position: relative;
  margin-bottom: 4rem;
  width: 140rem;
  height: 34rem;
}
.lifestyle__box p {
  position: absolute;
}
.lifestyle__box.n1 {
  background-image: url("../img/si__lifestyle__box_bg1_pc.jpg");
  margin-left: 25rem;
}
.lifestyle__box.n1 p {
  top: 8rem;
  left: -5rem;
}
.lifestyle__box.n2 {
  background-image: url("../img/si__lifestyle__box_bg2_pc.jpg");
  margin-left: -41rem;
}
.lifestyle__box.n2 p {
  top: 8rem;
  right: -5rem;
}
.lifestyle__box.n3 {
  background-image: url("../img/si__lifestyle__box_bg3_pc.jpg");
  margin-left: 25rem;
}
.lifestyle__box.n3 p {
  top: 8rem;
  left: -5rem;
}
.lifestyle__box.n4 {
  background-image: url("../img/si__lifestyle__box_bg4_pc.jpg");
  margin-left: -41rem;
}
.lifestyle__box.n4 p {
  top: 8rem;
  right: -5rem;
}
.lifestyle__arrow {
  margin: 4rem auto 0;
}

.case {
  position: relative;
  background-color: #ffffff;
}
.case::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  background-color: #eaf9fb;
  content: "";
  height: 50%;
  height: calc(100% - 330px);
}
.case__inner {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}
.case__title {
  margin-bottom: 50px;
}
.case__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.case__list-item {
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.05);
}
.case__attention {
  border: 1px solid #eee;
  border-radius: 5px;
  background-color: #fff;
  line-height: 1.6;
  padding: 2rem 2.5rem;
  width: 48rem;
  margin: 2rem auto 0;
}
.case__attention-title {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.case__attention-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
  font-size: 1.2rem;
}
.case__attention-list li {
  position: relative;
  padding-left: 2rem;
}
.case__attention-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.policy {
  background-color: #fdf3f7;
}
.policy__title {
  margin: 9rem auto 6rem;
}
.policy__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8rem;
}
.features {
  position: relative;
}
.features::before {
  position: absolute;
  top: 34rem;
  left: 50%;
  z-index: -1;
  display: block;
  margin-left: -35.4rem;
  width: 134rem;
  height: 94rem;
  background-image: url("../img/si__features__bg_pc.jpg");
  content: "";
}
.features__inner {
  padding: 6rem 0 15rem;
}
.features__title {
  margin: 0 auto 6rem;
}
.features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 112rem;
}
.features__item {
  margin-bottom: 2rem;
}

.message {
  background-image: url("../img/si__message__bg_pc.jpg");
  background-position: center top;
}
.message__inner {
  height: 68rem;
}
.message__title {
  margin: -3rem 0 4rem;
}
.message__box {
  position: relative;
  padding-left: 44.8rem;
  min-height: 48rem;
}
.message__headline {
  margin-bottom: 2rem;
}
.message__pic {
  position: absolute;
  top: 0;
  left: 0;
}
.message__body {
  font-size: 1.3rem;
}

.flow {
  position: relative;
}
.flow::after, .flow::before {
  position: absolute;
  left: 50%;
  z-index: -1;
  display: block;
  margin-left: -100rem;
  width: 200rem;
  height: 133.4rem;
  background-image: url("../img/si__common__bg1_pc.jpg");
  content: "";
}
.flow::before {
  top: 0;
}
.flow::after {
  bottom: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.flow__inner {
  padding: 8rem 0;
}
.flow__list {
  position: relative;
}
.flow__list::before {
  position: absolute;
  display: block;
  background-color: #f77296;
  content: "";
  top: 8rem;
  left: 7.3rem;
  width: 0.1rem;
  height: 184rem;
}
.flow__item {
  position: relative;
  z-index: 2;
}
.flow__item.n2 {
  margin-left: -1.7rem;
}
.flow__item.n3 {
  margin-left: -0.5rem;
}
.flow__item.n4 {
  margin-left: -0.4rem;
}
.flow__item.n5 {
  margin-left: -0.1rem;
}
.flow__item.n6 {
  margin-left: -1.7rem;
}
.flow__item.n7 {
  margin-left: -0.1rem;
}

.gallery {
  margin-top: 5rem;
  background-color: #f3fbfd;
}
.gallery__title {
  margin: -3rem 0 8rem auto;
}
.gallery__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gallery__item {
  margin-bottom: 5rem;
  width: 34rem;
}
.gallery__item:nth-child(7) {
  margin: 0 auto 5rem;
}
.gallery__item:nth-child(8) {
  margin-right: 19rem;
}
.gallery__item-box {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.92);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: -5rem auto 0;
  padding: 3rem;
  width: 30rem;
}
.gallery__item-copy {
  margin: 0 auto 2rem;
}
.gallery__item-text {
  font-size: 1.4rem;
}

.price {
  background-image: url("../img/si__common__bg1_pc.jpg");
  background-position: center top;
}
.price__inner {
  padding: 9rem 0;
}
.price__title {
  margin: 0 auto 6rem;
}
.price__table {
  margin-bottom: 1rem;
}
.price__tyushaku {
  text-align: right;
  margin-bottom: 8rem;
  font-size: 1.2rem;
}
.price__headline {
  margin-bottom: 6rem;
}
.price__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.price__item {
  position: relative;
  background-color: #f3fbfd;
  padding: 4rem 3rem 3rem;
  width: 34rem;
}
.price__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  border-top-color: #ffffff;
  border-bottom: 0;
  border-left: 0;
  content: "";
  border: 4rem solid transparent;
}
.price__item-head {
  margin: 0 auto 3rem;
}

.faq {
  background-color: #fdf3f7;
}
.faq.is-type1, .faq.is-type2 {
  margin-top: 7rem;
}
.faq__title {
  margin: -3rem 0 5rem;
}
.faq__inner {
  padding: 1rem 0 8rem;
}
.faq__item {
  border-bottom: 1px solid #f76e93;
}
.faq__item:first-child {
  border-top: 1px solid #f76e93;
}
.faq__item-head {
  position: relative;
  background-image: url("../img/si__faq__item-head_icn_pc.png");
  padding: 3rem 10rem;
  background-position: top 2.5rem left 3rem;
}
.faq__item-head.on::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq__item-head::after {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  background-image: url("../img/si__faq__switch_pc.png");
  content: "";
  -webkit-transition: 0.1s;
  transition: 0.1s;
  right: 3rem;
  width: 3.4rem;
  height: 3.4rem;
}
.faq__item-body {
  overflow: hidden;
  max-height: 0;
  background-image: url("../img/si__faq__item-body_icn_pc.png");
  -webkit-transition: 0.1s;
  transition: 0.1s;
  padding: 0 10rem;
  background-position: top 1rem left 3rem;
}
.faq__item-body.on {
  max-height: 30rem;
  padding: 1rem 10rem 3rem;
}

.staff {
  position: relative;
  overflow: hidden;
}
.staff::after {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  margin-left: -100rem;
  width: 200rem;
  height: 300rem;
  background-image: url("../img/si__staff__bg_pc.png");
  content: "";
  z-index: 1;
}
.staff__inner {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
}
.staff__title {
  margin-bottom: 4rem;
}
.staff__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.staff__list-pic {
  margin-bottom: 4rem;
}
.staff__list-head {
  font-weight: bold;
  text-align: center;
  position: relative;
  color: #42c0d0;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.staff__list-head.n-nagata {
  color: #f76f93;
}
.staff__list-head.n-nagata::after {
  background-color: #f76f93;
}
.staff__list-head::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  margin: auto;
  background-color: #42c0d0;
  width: 6rem;
}
.staff__list-body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem 2.5rem;
  font-size: 1.5rem;
}

.hygienist {
  height: 36rem;
  background-image: url("../img/si__hygienist__bg_pc.jpg");
  background-position: center;
}
.hygienist__copy {
  margin: 8rem 0 0 68rem;
}

/* Layout/header */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  margin: auto;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
  width: 130rem;
}
.header__branding {
  position: relative;
}
.header__title {
  position: relative;
  z-index: 10;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.sideMenu__title {
  background-image: url("../img/si__pattern1.png");
}
.sideMenu__nav {
  border: 1px solid #e6e6e6;
  border-top: none;
}
.sideMenu__nav-head {
  background-image: url("../img/si__sideMenu__head.png");
  background-repeat: repeat;
  text-align: center;
  padding: 1.5rem 0;
}
.sideMenu__nav-list {
  background-color: #ffffff;
}
.sideMenu__nav-item {
  background-image: url("../img/si__sideMenu__arrow.png");
  font-size: 0.86em;
  background-position: center right 1rem;
}
.sideMenu__nav-item:not(:last-child) {
  border-bottom: 1px dotted #cccccc;
}
.sideMenu__nav-item a {
  display: block;
  line-height: 1.2;
  padding: 1.5rem 3rem 1.3rem 1.5rem;
}

.sideOffice__title {
  margin-bottom: -5rem;
}
.sideOffice__body {
  position: relative;
  z-index: 2;
  padding: 0 1rem 1rem;
  background-color: #4facfe;
}
.sideOffice__body-inner {
  padding: 1rem 2rem;
  background-color: #ffffff;
}
.sideOffice__item {
  padding: 1rem 0;
  border-top: 0.1rem solid #dddddd;
  background-image: url("../img/al__sideOffice__arrow_pc.png");
  background-repeat: no-repeat;
  padding-left: 2rem;
  background-position: top 1rem left;
  font-size: 1.2rem;
}
.sideOffice__item:last-of-type {
  border-bottom: 0.1rem solid #dddddd;
}

.sideBanner__simu {
  margin: 0 0 1.5rem;
}

.sideCta__body {
  background: #dae8ef;
  text-align: center;
  padding: 1.5rem 0;
}
.sideCta__phone {
  margin: 0 0 2rem;
  padding: 3.4rem 0 0 2.9rem;
  height: 6rem;
  background-image: url("../img/si__sideCta__phone_pc.png");
  background-position: top center;
  background-repeat: no-repeat;
  color: #00479d;
  font-size: 3.1rem;
}

.sideAccess {
  border: 0.3rem solid #e6e6e6;
  background-color: #ffffff;
  padding: 0 0 2rem;
}
.sideAccess::before {
  display: block;
  margin: -0.4rem -0.3rem 0;
  height: 0.4rem;
  background-color: #3c4f59;
  content: "";
}
.sideAccess__inner {
  padding: 0 2rem;
}
.sideAccess__pic {
  margin-bottom: 1.5rem;
}
.sideAccess__station {
  background-color: #f3f3f3;
  color: #333333;
  font-weight: bold;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem 0.5rem;
  font-size: 1.4rem;
}
.sideAccess__address {
  display: block;
  margin: 1rem 0;
  font-size: 1.3rem;
  line-height: 1.5;
}
.sideAccess__btn {
  margin-top: 2rem;
  text-align: center;
}

.footer__inner {
  position: relative;
  padding: 8rem 0;
}
.footer__logo {
  margin-bottom: 4rem;
}
.footer__address {
  margin-bottom: 3rem;
  font-size: 1.3rem;
}
.footer__tel {
  margin-bottom: 3rem;
}
.footer__main {
  width: 55rem;
}
.footer__sub {
  position: absolute;
  top: 8rem;
  left: 55rem;
  overflow: hidden;
  width: 96rem;
  height: 34rem;
}
.footer__copyright {
  display: block;
  text-align: center;
  padding: 2rem 0;
  font-size: 1rem;
}

.fvMain__inner {
  position: relative;
  width: 130rem;
}
.fvMain__copy1 {
  margin: 2rem 0 2rem 12rem;
}
.fvMain__copy1.is-type2 {
  margin-top: 10rem;
}
.fvMain__copy1.is-type3 {
  margin-bottom: 1rem;
}
.fvMain__copy1.is-type4 {
  margin: 10rem 0 0 12rem;
}

/* Layout/nav */
.gnav {
  font-weight: bold;
}
.archive__post {
  position: relative;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  margin: 0 0 3rem;
  padding: 3rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.archive__post:hover {
  opacity: 0.8;
}
.archive__post::after {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: 0.5rem solid transparent;
  border-left: 0.5rem solid #3c4f59;
}
.archive__headline {
  color: #3c4f59;
  line-height: 1.4;
  margin: 0 0 1.4rem;
  font-size: 2.2rem;
}
.archive__excerpt {
  color: #5a5a5a;
  font-size: 0.8em;
  line-height: 1.5;
}

/* Object
******************/
.breadcrumb {
  font-size: 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: flex;
  align-items: center;
  margin: auto;
  margin: 0 -100rem;
  padding: 0 100rem;
  height: 6rem;
  line-height: 1.3;
}
.breadcrumb-wrap {
  height: 6rem;
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb li:not(:last-child)::after {
  position: relative;
  display: inline-block;
  margin: 0 1rem;
  background-image: url("../img/si__breadcrumb__arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  content: ">";
  font-size: 0.8em;
  top: -0.1rem;
  width: 0.7rem;
  height: 1rem;
}
.breadcrumb a {
  color: #3c4f59;
  text-decoration: underline;
}

.contact-form__wrap {
  border-top: 1px dotted #ccc;
}
.contact-form__item {
  border-bottom: 1px dotted #ccc;
  display: table;
  width: 100%;
}
.contact-form__item-head {
  display: table-cell;
  width: 35%;
  padding: 2rem 1rem;
  vertical-align: top;
}
.contact-form__item-body {
  padding: 2rem 1rem;
  display: table-cell;
}
.contact-form input[type=text], .contact-form input[type=tel], .contact-form input[type=email], .contact-form textarea {
  border: 1px solid #ddd;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem;
  -webkit-box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1) inset;
  margin-right: 0.5em;
}
.contact-form input[type=radio] {
  display: none;
}
.contact-form input[type=text], .contact-form input[type=tel], .contact-form input[type=email] {
  width: 30rem;
}
.contact-form .is_grade input[type=text] {
  width: 10rem;
}
.contact-form__asterisk {
  color: #F44336;
}
.contact-form__example {
  font-size: 0.7em;
  color: #999;
  padding-top: 0.5em;
}
.contact-form__btn {
  text-align: center;
  margin-top: 3rem;
}
.contact-form input[type=submit] {
  background-color: #198c91;
  color: #fff;
  padding: 1rem 6rem;
  border-radius: 0.5rem;
  font-weight: bold;
}

.office-map {
  position: relative;
  margin-bottom: 1.5em;
}
.office-map__card {
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  display: inline-block;
  z-index: 1;
  padding: 0.7em 1.4em;
  border-radius: 5px;
  font-size: 0.8em;
  line-height: 1.5;
  position: absolute;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  top: 70px;
  right: 146px;
  width: 450px;
}
.office-map__card::before {
  content: "";
  display: block;
  width: 1.8em;
  height: 1.8em;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  background: #fff;
  bottom: -0.8em;
  left: 0;
  right: 0;
  margin: auto;
}
.office-map__card::after {
  content: "";
  display: block;
  width: 4em;
  height: 2em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
}
.office-map__card.on {
  top: 10px;
  right: 10px;
}
.office-map__card.on::after, .office-map__card.on::before {
  display: none;
}
.office-map__card__btn-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 4px;
  right: 4px;
  width: 1em;
  height: 1em;
  font-size: 1.5em;
}
.office-map__card__btn-toggle::before {
  content: "\f00d";
  font-family: fontawesome;
  color: #555;
}
.office-map__card__btn-toggle.on::before {
  content: "\f041";
}
.office-map__card__name {
  font-size: 1.4em;
  margin-bottom: 0.1em;
}
.office-map__card__name.tokyo {
  font-size: 1.2em;
}
.office-map__card__name.tokyo span {
  font-size: 0.8em;
}
.office-map__card__name::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("images/icon-map-logo.png") no-repeat center bottom;
  background-size: contain;
  margin-right: 0.4em;
}
.office-map__card__address {
  margin-bottom: 0.5em;
}
.office-map__card__btn {
  color: #3b7c1c;
  font-weight: bold;
}
.office-map__card__btn a::before {
  content: "\f08e";
  font-family: fontawesome;
  margin-right: 0.5em;
}

.info__pic {
  margin: 3.7rem auto 3.2rem;
  width: 75.2rem;
}
.info__table {
  width: 100%;
  line-height: 1.4;
  margin: 0 0 3rem;
}
.info__dl {
  display: table;
  width: 100%;
  font-size: 0.92em;
}
.info__dl:nth-child(2n+1) {
  background-color: #f2f4f6;
}
.info__dt {
  display: table-cell;
  text-align: left;
  width: 16rem;
  padding: 1rem 2rem;
}
.info__dd {
  display: table-cell;
  padding: 1rem 3rem;
}
.info__dd p {
  margin-bottom: 0;
}
.category__list {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.category__item {
  width: 26rem;
  margin: 0 1.5rem 2rem 0;
}
.category__item:nth-of-type(3n) {
  margin-right: 0;
}
.category__thumbnail {
  margin: 0 0 1rem;
  position: relative;
  overflow: hidden;
  width: 26rem;
  height: 18rem;
}
.category__thumbnail img {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  min-height: 18rem;
}
.category__time {
  color: #0f9c2d;
  font-weight: bold;
  display: block;
  margin: 0 0 0.5rem;
}
.category__headline {
  line-height: 1.28;
}

.intro {
  position: relative;
  margin: 0 0 5rem;
}
.intro:not(:first-of-type) {
  padding-top: 3rem;
}
.intro__block {
  margin-bottom: 6rem;
}
.intro__top {
  position: relative;
  padding-left: 26.5rem;
  margin-bottom: 2rem;
}
.intro__title {
  background-color: #f2f6f6;
  position: relative;
  border-top: 0.2rem solid #3c4f59;
  margin-bottom: 2rem;
  padding: 3rem 1.5rem 0.5rem;
}
.intro__label {
  background-color: #3c4f59;
  color: #fff;
  position: relative;
  border-radius: 0.4rem;
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.4rem 1.5rem;
  margin-right: 1rem;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
}
.intro__name {
  font-weight: bold;
  display: inline-block;
  position: relative;
  font-size: 2.8rem;
  margin-right: 1.5rem;
}
.intro__ruby {
  display: inline-block;
  position: relative;
  font-style: italic;
  color: #939393;
  font-size: 1.5rem;
  top: -0.2rem;
}
.intro__number {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.intro__number i {
  background-color: #eee;
  margin-right: 1rem;
  font-size: 1.2rem;
  padding: 0.5rem 1.4rem;
}
.intro__head {
  position: relative;
  padding-left: 27rem;
  margin-bottom: 2rem;
  min-height: 34rem;
}
.intro__picbox {
  position: absolute;
  top: 0;
  left: 0;
}
.intro__pic {
  width: 24.2rem;
  border: 0.1rem solid #eee;
  margin-bottom: 0.8rem;
}
.intro__office {
  text-align: center;
}
.intro__office a {
  color: #3c4f59;
  font-weight: bold;
  background-color: #fff;
  border-radius: 10rem;
  background-image: url("../icn/c-more__arrow_pc.png");
  background-repeat: no-repeat;
  display: inline-block;
  border: 0.2rem solid #3c4f59;
  padding: 1rem 3rem 1rem 1.2rem;
  font-size: 1.2rem;
  background-position: right 0.9rem center;
  background-size: 1.4rem auto;
}
.intro__career {
  margin-left: 1.5rem;
}
.intro__career dl {
  margin-bottom: 1.5rem;
}
.intro__career dt {
  color: #3c4f59;
  position: relative;
  font-weight: bold;
  border-bottom: 0.1rem solid #3c4f59;
  line-height: 1.4;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding: 0 0 0.4rem;
}
.intro__career dt:not(:first-child) {
  margin-top: 2rem;
}
.intro__career dd {
  position: relative;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  font-size: 1.3rem;
  line-height: 1.6;
}
.intro__career dd:not(:last-child) {
  border-bottom: 1px solid #efefef;
}
.intro__career dd::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #b5b5b5;
  border-radius: 50%;
  width: 0.3rem;
  height: 0.3rem;
  top: 1.2rem;
  left: 1rem;
}
.intro__body {
  background-color: #f2f6f6;
  position: relative;
  padding: 4rem 5rem;
}
.intro__body::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border: 4rem solid transparent;
  border-top: 0;
  border-right: 0;
  border-bottom: 4rem solid #3c4f59;
}
.office-intro {
  border: 0.1rem solid #3c4f59;
  position: relative;
  width: 36rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1rem 1rem 13rem;
}
.office-intro__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.office-intro__pic {
  position: absolute;
  top: 1.3rem;
  left: 1rem;
  width: 10.8rem !important;
  height: 10.8rem !important;
}
.office-intro__label {
  border-bottom: 0.1rem solid #f2f6f6;
  font-size: 1.2rem;
  padding-bottom: 0.4rem;
  margin-bottom: 1.3rem;
}
.office-intro__name {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.office-intro__ruby {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}
.office-intro__more a {
  display: inline-block;
  border: 0.1rem solid #f2f6f6;
  position: relative;
  color: #333;
  font-size: 1.2rem;
  padding: 0.2em 1rem 0.2rem 2rem;
}
.office-intro__more a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  left: 1rem;
  border: 0.5rem solid transparent;
  border-left-color: #eb8a00;
}

.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 3rem;
}

.page-numbers {
  position: relative;
  display: inline-block;
  margin: 0 0.6rem;
  width: 3rem;
  background-color: #c3dae5;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  line-height: 3rem;
}
.page-numbers.prev {
  background-color: #e4e4e4;
}
.page-numbers.prev::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border: 1rem solid transparent;
  border-right: 1rem solid #ffffff;
  border-left: 0;
  content: "";
}
.page-numbers.prevall {
  background-color: #e4e4e4;
}
.page-numbers.prevall::before {
  position: absolute;
  top: 0;
  right: 0.5rem;
  bottom: 0;
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border: 1rem solid transparent;
  border-right: 0.8rem solid #ffffff;
  border-left: 0;
  content: "";
}
.page-numbers.prevall::after {
  position: absolute;
  top: 0;
  right: 1.8rem;
  bottom: 0;
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border: 1rem solid transparent;
  border-right: 0.8rem solid #ffffff;
  border-left: 0;
  content: "";
}
.page-numbers.next {
  background-color: #a6a6a6;
}
.page-numbers.next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border: 1rem solid transparent;
  border-right: 0;
  border-left: 1rem solid #ffffff;
  content: "";
}
.page-numbers.nextall {
  background-color: #a6a6a6;
}
.page-numbers.nextall::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5rem;
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border: 1rem solid transparent;
  border-right: 0;
  border-left: 0.8rem solid #ffffff;
  content: "";
}
.page-numbers.nextall::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.8rem;
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border: 1rem solid transparent;
  border-right: 0;
  border-left: 0.8rem solid #ffffff;
  content: "";
}
.page-numbers.current {
  background-color: #3883a9;
}

.labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.labels__item {
  border: 0.1rem solid #3c4f59;
  border-left: 0.8rem solid #3c4f59;
  background-image: url("../img/si__labels__icn_pc.png");
  display: table;
  line-height: 1.6;
  border-left: 0.8rem solid #3c4f59;
  width: 49%;
  height: 8rem;
  background-position: center right 1.5rem;
  margin-bottom: 1rem;
  -webkit-transition: all 0.22s linear;
  transition: all 0.22s linear;
}
.labels__item:hover {
  background-color: #ebeff3;
}
.labels__item a {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  padding: 0 5rem 0 1.5rem;
  font-size: 1.8rem;
}

.caseAttention {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.caseAttention.on {
  visibility: visible;
}
.caseAttention__container {
  background-color: #fff;
  border-radius: 5px;
  padding: 2rem;
  width: 56rem;
}
.caseAttention__message {
  line-height: 1.6;
}
.caseAttention__message p {
  position: relative;
  font-size: 1.2rem;
  margin-bottom: 1em;
  padding-left: 1.5rem;
}
.caseAttention__message p::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.caseAttention__close {
  border: 1px solid #39c5d6;
  border-radius: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  position: relative;
  width: 12rem;
  height: 3.6rem;
  margin-top: 3rem;
  padding-left: 2rem;
}
.caseAttention__close-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  left: 1.5rem;
}
.caseAttention__close-icon::before, .caseAttention__close-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.caseAttention__close-icon::before {
  rotate: 45deg;
}
.caseAttention__close-icon::after {
  rotate: -45deg;
}

.js-case-attention:hover {
  cursor: pointer;
  opacity: 0.9;
}

/* Cta
******************/
.info__time {
  line-height: 1.5rem;
}
.info__time i {
  margin-right: 0.5rem;
}
.info__time small {
  font-size: 0.8em;
  margin-left: 0.5rem;
}

.ctaHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ctaHeader__banner {
  margin-right: 1.5rem;
}
.ctaHeader__address {
  margin-right: 3rem;
}
.ctaHeader__tel {
  margin-right: 3rem;
}
.ctaLaptop {
  background-color: #3c4f59;
  position: fixed;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 50%;
  margin-left: 56rem;
  z-index: 9999;
  bottom: -24rem;
  padding: 1rem 1rem 1rem;
  width: 25rem;
  height: 23rem;
}
.ctaLaptop::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border: 3rem solid transparent;
  border-top-color: #3f5d6e;
  border-bottom: 0;
  border-left: 0;
}
.ctaLaptop.in {
  bottom: 0 !important;
}
@media only screen and (max-width: 1600px) {
  .ctaLaptop {
    display: none;
  }
}
.ctaLaptop__copy {
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 2.5rem;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.ctaLaptop__inner {
  background-color: #fff;
  padding: 1rem;
}
.ctaLaptop__tel {
  position: relative;
  margin: 0 0 1.3rem;
}
.ctaLaptop__tel-phone {
  font-size: 2.7rem;
  position: absolute;
  top: 0.3rem;
  left: 4rem;
}
.ctaLaptop__tel-time {
  position: absolute;
  bottom: 0.5remz;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 1rem;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

.ctaSide {
  background-color: #3c4f59;
  padding: 0.7rem;
}
.ctaSide__inner {
  background-color: #fff;
  padding-bottom: 1rem;
}
.ctaSide__zero {
  margin: 0 auto 0.8rem;
}
.ctaSide__tel-phone {
  font-size: 2.9rem;
  top: 0.8rem;
  left: 4.4rem;
}
.ctaSide__tel-time {
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0;
  bottom: 1.4rem;
}
.ctaSide__tel-time i {
  display: none;
}
.ctaSide__address {
  padding: 0.6rem 0;
  font-size: 1.4rem;
  line-height: 1.6;
  height: 6.2rem;
}
.ctaSide__mail {
  margin: auto;
}

.ctaMain {
  background-image: url("../img/si__ctaMain__bg_pc.jpg");
  background-size: cover;
  padding: 2.5rem 0 4rem;
  background-position: center;
}
.ctaMain:last-child {
  margin-bottom: 0;
}
.ctaMain__copy {
  margin: 2.5rem auto 2rem;
}
.ctaMain__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1110px;
}
.ctaHome__top {
  background: -webkit-linear-gradient(-45deg, #ffffff 25%, #f8f8f8 25%, #f8f8f8 50%, #ffffff 50%, #ffffff 75%, #f8f8f8 75%, #f8f8f8);
  background: -webkit-linear-gradient(135deg, #ffffff 25%, #f8f8f8 25%, #f8f8f8 50%, #ffffff 50%, #ffffff 75%, #f8f8f8 75%, #f8f8f8);
  background: linear-gradient(-45deg, #ffffff 25%, #f8f8f8 25%, #f8f8f8 50%, #ffffff 50%, #ffffff 75%, #f8f8f8 75%, #f8f8f8);
  background-size: 4rem 4rem;
  position: relative;
  z-index: 2;
  padding: 1rem 0;
}
.ctaHome__bottom {
  background-color: #3c4f59;
  padding: 5rem 0 3rem;
}
.ctaHome__copy {
  margin: 3rem auto -3.5rem;
}
.ctaHome__cta {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  width: 94rem;
  margin: auto;
  border-radius: 1rem;
}
.ctaHome__cta-copy {
  background-color: #c3dce8;
  text-align: center;
  font-weight: bold;
  padding: 1.5rem 0 1.2rem;
  font-size: 2.7rem;
}
.ctaHome__cta-box {
  padding: 1.5rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ctaHome__tel {
  margin-top: 0;
}
.ctaHome__tel-phone {
  top: 2.4rem;
  left: 8.8rem;
  font-size: 5.4rem;
}
.ctaHome__tel-time {
  position: absolute;
  white-space: nowrap;
  position: absolute;
  white-space: nowrap;
  font-size: 1.5rem;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  letter-spacing: 0;
  margin: auto;
  text-align: center;
}
.ctaHome__mail {
  margin-top: 1.2rem;
}
/*# sourceMappingURL=laptop.css.map */
