@charset "UTF-8";

/*********************
ROOT
*********************/
:root {
  --JP-gothic: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック",
    "Yu Gothic Medium", "Yu Gothic", sans-serif;
  --JP-mincho: "游明朝", YuMincho, "Hiragino Mincho ProN W3",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  --EN-gothic: "Roboto", sans-serif;
  --emoji-font: apple color emoji, segoe ui emoji, noto color emoji,
    android emoji, emojisymbols, emojione mozilla, twemoji mozilla,
    segoe ui symbol;
  --bg-color: #FFF;
  --bg-color-pale: #fefbf6;
  --main-color: #000;
  --sub-color: #09b6a3;
  --point-color: #ee4c5a;
  --append-color: #f9a01f;
  --border-color: #999;
  --border-color-pale: #eee;
  --sub-color-pale: #58efc9;
  --filter-sub-color: invert(29%) sepia(41%) saturate(481%) hue-rotate(90deg)
    brightness(98%) contrast(85%);
  --filter-sub-color-pale: invert(81%) sepia(22%) saturate(402%)
    hue-rotate(87deg) brightness(87%) contrast(84%);
  --filter-point-color: invert(61%) sepia(78%) saturate(336%) hue-rotate(338deg)
    brightness(98%) contrast(87%);
  --filter-white: invert(100%) sepia(0%) saturate(0%) hue-rotate(342deg)
    brightness(102%) contrast(102%);
}

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

.sp {
  display: none;
}

@media only screen and (max-width: 575px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/*********************
clearfix
*********************/

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after {
  display: table;
  content: " ";
}

.clearfix:after,
.container:after,
.row:after {
  clear: both;
}

/*********************
COLOR
*********************/

/* font-color */

.color-main {
  color: var(--main-color) !important;
}
.color-red {
  color: #c00 !important;
}

.color-blue {
  color: #5186c0 !important;
}

.color-purple {
  color: #9370db !important;
}

.color-white {
  color: white !important;
}

.color-yellow {
  color: yellow !important;
}

.color-green {
  color: #346145 !important;
}

.color-sub {
  color: var(--sub-color) !important;
}
.color-point {
  color: var(--point-color) !important;
}
.color-append {
  color: var(--append-color) !important;
}

.marker {
  background: linear-gradient(transparent 50%, yellow 50%);
}

.bg-gray {
  background-color: #fafafa !important;
}

.bg-darkgray {
  background-color: #554e4f !important;
}

.bg-black {
  background-color: #222 !important;
}

.bg-white {
  background-color: white !important;
}

.bg-blue {
  background-color: #ebf6f7 !important;
}

.bg-pale {
  background-color: var(--bg-color-pale) !important;
}

.bg-darkblue {
  background-color: #00a6e4 !important;
}

.bg-yellow {
  background-color: #f0e68c !important;
}

/* A TAG */

a {
  transition: 0.14s ease-out;
  color: var(--sub-color);
}
a.ar {
  position: relative;
  display: inline-block;
  width: fit-content;
  text-decoration: none;
  color: var(--main-color);
  font-size: 0.9em;
  margin: 5px 0;
  padding-left: 34px;
}
a.ar::before {
  position: absolute;
  top: -4px;
  left: 0;
  display: block;
  content: "";
  width: 28px;
  height: 28px;
  background: url(../images/icon-ar.svg) no-repeat left center;
  filter: var(--filter-sub-color-pale);
  transition: 0.2s;
}
a.ar:hover::before {
  filter: var(--filter-point-color);
}

a.underline {
  text-decoration: underline !important;
}

a:hover {
  color: var(--point-color);
}

a.outlink::after {
  content: "";
  width: 0.8em;
  height: 0.8em;
  margin-left: 6px;
  display: inline-block;
  background: url(../images/icon-outlink.svg) no-repeat left center;
  background-size: contain;
}

/* LINK-AREA */
.link-area {
  position: relative;
}
.link-area * {
  transition: 0.2s;
}
.link-area > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}
.link-area:hover a.ar {
  color: var(--point-color);
}
.link-area:hover a.ar::before {
  filter: var(--filter-point-color);
}

.link-area.border {
  background: white;
  height: 100%;
  border-radius: 18px;
  transition: 0.2s;
  border: 1px solid var(--main-color);
}
.link-area.border:hover {
  border: 1px solid var(--point-color);
  box-shadow: 5px 5px 0 var(--point-color);
}

/*********************
BUTTON
*********************/

a.btn {
  position: relative;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  text-align: center;
  display: inline-block;
  padding: 1.8em 2em;
  margin: 5px 0 10px;
  color: var(--point-color);
  background: white;
  border: 2px solid var(--point-color);
  border-radius: 18px;
  line-height: 1;
}
a.btn.fill {
  background: var(--sub-color);
  color: white;
}

a.btn:hover {
  border: 2px solid var(--point-color);
}
a.btn.fill:hover {
  background: var(--point-color);
}

a.btn.search {
  display: flex;
  align-items: center;
  width: fit-content;
  text-align: left;
}

a.btn.search::before {
  display: block;
  opacity: 0.3;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/icon-search.svg) no-repeat center left;
  background-size: contain;
  margin-right: 7px;
}

a.btn.btn-ar {
  padding: 1.8em 4em 1.8em 2em;
  text-align: left;
}

a.btn.btn-ar::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--point-color);
  border-right: 2px solid var(--point-color);
  position: absolute;
  top: calc(50% - 4px);
  right: 1em;
  transform: rotate(45deg);
}

a.btn.full {
  width: 100%;
}

a.btn.small {
  padding: 0.3em 1.2em 0.4em;
  min-width: auto;
}

a.btn.bullet {
  padding: .9em 2.5em .9em 1.8em;
  min-width: auto;
  background: var(--main-color);
  border: none;
  color: white;
  border-radius: 60px;
  font-size: 0.8em;
  line-height: 1.4;
  position: relative;
}
a.btn.bullet.reverse {
  padding: 9px 18px 9px 28px;
}

a.btn.bullet::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: calc(50% - 3px);
  right: 14px;
  transform: rotate(45deg);
}
a.btn.bullet.reverse::after {
  left: 14px;
  transform: rotate(225deg);
}

a.btn.bullet.large {
  font-size: 1em;
}

a.btn.bullet:hover {
  background: var(--sub-color);
}

span.btn.under {
  position: relative;
  display: block;
  min-width: auto;
  width: fit-content;
  padding: 9px 28px 9px 18px;
  background: var(--border-color-pale);
  color: #878172;
  border-radius: 20px;
  font-size: 0.8em;
  line-height: 1.4;
}

@media screen and (min-width: 681px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
@media screen and (max-width: 680px) {
  a.btn {
    min-width: auto;
  }
  a[href^="tel:"] {
    text-decoration: none;
    border-bottom: 1px dotted #5186c0;
  }
  a.btn.bullet {
    font-size: 1em;
    width: fit-content;
    margin-right: inherit;
    margin-left: inherit;
  }
}

@media screen and (max-width: 480px) {
  a.btn {
    display: block;
    width: 100%;
    margin: 5px auto 10px;
    padding: 12px;
  }

  a.btn.bullet {
    width: fit-content;
    margin-right: inherit;
    margin-left: inherit;
  }
  .align-center a.btn.bullet {
    margin-right: auto;
    margin-left: auto;
  }
  a.btn.box {
    width: 100%;
  }
}

/*********************
ELEMENTS
*********************/

html {
  font-size: 62.5%;
  height: 100%;
  background-color: var(--bg-color);
}

body,
input,
textarea {
  font-family: var(--JP-gothic);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--main-color);
  position: relative;
}

input,
textarea {
  font-weight: normal;
}

@media screen and (min-width: 991px) {
  body {
    font-size: 2rem;
  }

  section.content-wrapper {
    padding: 80px 0;
  }
}

@media screen and (max-width: 990px) {
  html {
    height: 100%;
  }

  body {
    height: 100%;
    font-size: 1.8rem;
  }

  section.content-wrapper {
    padding: 60px 0;
  }
}

@media screen and (max-width: 680px) {
  html {
    height: 100%;
  }

  body {
    height: 100%;
    font-size: 1.6rem;
  }

  section.content-wrapper {
    padding: 40px 0;
  }
}

/* title */
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-weight: bold;
}

h2.title {
  margin: 0;
  padding: 0;
  font-weight: 600;
  line-height: 1.4;
}
h2.title.en {
  letter-spacing: 2px;
  font-size: 2.2em;
}
h2.title.jp {
  font-size: 2.1em;
}

h2.title span {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0;
  color: var(--sub-color);
  margin-bottom: 4px;
  margin-top: 4px;
}

h3 {
  font-size: 1.4em;
}

h3.title.circle {
  position: relative;
  margin: 0 0 1em 0;
  padding: 0 0 0 1.4em;
}
h3.title.font-xxlarge {
  font-size: 2.4em;
}

h3.title.circle::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.3em;
  width: 1em;
  height: 1em;
  margin: auto;
  border: 4px solid var(--border-color-pale);
  border-radius: 50%;
  box-sizing: border-box;
}

h3.title.border {
  border-bottom: 1px solid var(--border-color);
  margin: 0 0 1.5em;
  padding-bottom: 10px;
}

.title span {
  font-size: 1.4rem;
}

h4 {
  margin: 0;
  padding: 0;
  font-size: 1.1em;
  position: relative;
}

h4.title.border {
  border-bottom: 1px solid var(--border-color-pale);
  margin: 0 0 1.5em;
  padding-bottom: 10px;
}
h4.title.circle {
  padding-left: 20px;
}
h4.title.circle::before {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 3px solid var(--sub-color-pale);
  border-radius: 50%;
  box-sizing: border-box;
}

h4.border + p {
  margin-top: 0;
}

h5 {
  font-size: 0.9em;
  font-weight: bold;
  margin: 0 0 10px;
}
h5.title {
  border-left: 5px solid var(--sub-color-pale);
  padding-left: 10px;
}

@media screen and (max-width: 990px) {
  h2.title.en {
    font-size: 1.9em;
  }
  h2.title.jp {
    font-size: 1.8em;
  }

  h3.title.font-xxlarge {
    font-size: 2rem;
  }

  h3.title-min {
    font-size: 1.4rem;
  }

  h3.title.circle {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 680px) {
  h2.title span {
    font-size: 11px;
  }

  h2.title.en {
    font-size: 1.7em;
  }
  h2.title.jp {
    font-size: 1.6em;
  }

  h3 {
    font-size: 1.7rem;
  }

  h3.title.font-xxlarge {
    font-size: 1.8rem;
  }

  h3.title.circle {
    font-size: 1.6rem;
  }

  h3.title.circle::before {
    top: 0.3em;
    margin: auto;
    border: 3px solid var(--border-color-pale);
  }

  h3.title span {
    font-size: 11px;
  }
}

th {
  text-align: left;
}

dt {
  font-weight: bold;
}

dl,
dt,
dd {
  margin: 0;
}

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

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

ul.list {
  list-style: none;
}

ul.list > li {
  padding: 0.2em 0;
}

ul.odd li,
ol.odd li {
  padding: 0.8em 0.4em;
}
ul.odd li:nth-child(odd),
ol.odd li:nth-child(odd) {
  background-color: #fff;
  border-top: 1px solid var(--sub-color-append);
  border-bottom: 1px solid var(--sub-color-append);
}

ul.voice li {
  padding-left: 28px;
  background: url(../images/voice.svg) top 1em left 6px no-repeat;
  background-size: 14px;
}

ul.list-disc,
.entry-body ul {
  margin-left: 1.5em;
}

ul.list-disc li,
.entry-body ul li {
  list-style: disc;
  list-style-position: outside;
  margin-bottom: 0.5em;
}

ul.list-disc li:last-child,
.entry-body ul li:last-child {
  margin-bottom: 0;
}

ol {
  counter-reset: item;
}

ol li {
  list-style: none;
  margin-bottom: 1em;
  position: relative;
  padding-left: 2em;
}
ol.odd li {
  list-style: none;
  margin-bottom: 1em;
  position: relative;
  padding-left: 2.4em !important;
}
ol li:before {
  position: absolute;
  left: 0.4em;
  counter-increment: item;
  content: counter(item) " )";
  display: inline-block;
  font-weight: bold;
}

ul.list-disc-small {
  margin-left: 1em;
  font-size: 0.86em;
}

ul.list-disc-small li {
  list-style: circle;
  list-style-position: outside;
  margin-bottom: 1em;
}

img.img100 {
  width: 100%;
}

img.circle {
  border-radius: 50%;
}

.fuwa {
  animation: animation-fuwa 1.1s ease-in-out infinite alternate-reverse;
}
@keyframes animation-fuwa {
  0% {
    transform: translateY(-7%);
  }
  100% {
    transform: translateY(7%);
  }
}

table.data {
  width: 100%;
  /*background: var(--bg-color);*/
}

table.data thead th {
  font-size: 0.9em;
  background: var(--append-color);
  padding: 1em;
  color: var(--bg-color);
  border-right: 1px solid var(--bg-color);
  text-align: center;
}
table.data thead th:last-child {
  border-right: none;
}

table.data tbody tr:last-child {
  border-bottom: none;
}

table.data tbody td {
  padding: 1em;
  border-right: 1px dashed var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

table.data tbody th {
  font-weight: bold;
  font-size: 0.9em;
  padding: 1em 1em 1em 0;
  border-right: 1px dashed var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

table.data tbody th:first-of-type {
  border-top: 1px solid var(--border-color);
}
table.data thead + tbody th:first-of-type {
  border-top: none;
}

table.data tbody tr:first-of-type {
  border-top: 1px solid var(--border-color);
}

table.data tbody td:last-child {
  border-right: none;
}

table.data tbody td {
  text-align: left;
}

table.data.center td {
  text-align: center;
}

table.data th.w25 {
  width: 25%;
}
table.data th.w40 {
  width: 40%;
}

tr.tate th,
tr.tate td {
  text-align: center;
}
tr.tate th span,
tr.tate td span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: pre;
  display: inline-block;
}

@media screen and (max-width: 680px) {
  table.data td,
  table.data th {
    text-align: left;
  }

  table.data.sp-row td,
  table.data.sp-row th {
    display: block;
    border: none;
    padding-left: 0;
    padding-right: 0;
  }

  table.data.sp-row th {
    font-weight: 900;
    color: var(--append-color);
    border-bottom: 1px dotted var(--border-color);
    width: 100% !important;
  }

  .bg-pale table.data.sp-row th {
    background: white;
  }
}
@media screen and (max-width: 1199px) {
  .table-scroll.lg {
    overflow-x: scroll;
    position: relative;
  }
  .table-scroll.lg table {
    width: 100%;
    white-space: nowrap;
  }
  .table-scroll.lg::before {
    content: "左右にスクロールできます ⇔";
    display: inline-block;
    font-size: 11px;
    background: #fff;
    padding: 2px 5px;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 991px) {
  .table-scroll.md {
    overflow-x: scroll;
    position: relative;
  }
  .table-scroll.md table {
    width: 100%;
    white-space: nowrap;
  }
  .table-scroll.md::before {
    content: "左右にスクロールできます ⇔";
    display: inline-block;
    font-size: 11px;
    background: #fff;
    padding: 2px 5px;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 580px) {
  .table-scroll {
    overflow-x: scroll;
    position: relative;
  }
  .table-scroll table {
    width: 100%;
    white-space: nowrap;
  }
  .table-scroll::before {
    content: "左右にスクロールできます ⇔";
    display: inline-block;
    font-size: 11px;
    background: #fff;
    padding: 2px 5px;
    margin-bottom: 7px;
  }
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
}

hr.sep {
  margin: 0;
  height: 8px;
  display: block;
  background: url(../images/sep-image.png);
  position: relative;
}

hr.sep.ill {
  margin: 0;
  height: 53px;
  display: block;
  background: url(../images/people-sep.png);
  position: relative;
}

hr.sep.narrow {
  margin-top: 0;
  margin-bottom: 0;
  display: block;
  border-top: 1px solid var(--sub-color-append);
}

hr.sep.simple::before,
hr.sep.simple::after {
  display: none;
}
@media screen and (max-width: 680px) {
  hr.sep.ill {
    height: 40px;
    background-size: cover;
  }
}

figure {
  margin: 0;
  padding: 0;
}

/*********************
LAYOUT
*********************/

.lh0 {
  line-height: 0;
}

.lh18 {
  line-height: 1.8;
}
.lh20 {
  line-height: 2;
}


/*********************
DESIGN
*********************/

.en {
  font-family: var(--EN-gothic);
  font-weight: 500;
}

.jp {
  font-family: var(--JP-gothic);
}
.emoji {
  font-family: var(--emoji-font);
}

.style-round {
  border-radius: 18px;
}
.style-round.min {
  border-radius: 10px;
}

.style-border {
  border: 1px solid var(--main-color);
}
.style-border.sub {
  border: 1px solid var(--sub-color);
}
.style-border.point {
  border: 1px solid var(--point-color);
}
.style-border.append {
  border: 1px solid var(--sub-color-append);
}
.style-border.thick {
  border-width: 2px !important;
}
.style-border.thickest {
  border-width: 4px !important;
}

.style-shadow {
  box-shadow: 1px 3px 15px rgba(0, 0, 0, 0.1);
}

.minimum-area {
  min-height: 550px;
}

.bg-secondary {
  background: #fdffeb !important;
}

.font-xsmall {
  font-size: 0.8em;
}
.font-small {
  font-size: 0.9em;
}

.font-large {
  font-size: 1.3em;
}

.font-xlarge {
  font-size: 1.6em;
}
.font-xxlarge {
  font-size: 1.9em;
}
.font-xxxlarge {
  font-size: 2.3em;
}

@media screen and (max-width: 767px) {
/*  .font-xsmall {
    font-size: 1.2rem;
  }
  .font-small {
    font-size: 1.3rem;
  }

  .font-large {
    font-size: 1.8rem;
  }

  .font-xlarge {
    font-size: 2rem;
  }
  .font-xxlarge {
    font-size: 2.2rem;
  }*/
  .font-xxxlarge {
    font-size: 2.1em;
  }
  .minimum-area {
    min-height: 300px;
  }
}

.strong {
  font-weight: bold;
}

.font-mincho {
  font-family: var(--JP-mincho);
}

.font-thin {
  font-weight: 500;
}

.text-tate {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: pre;
  display: inline-block;
}

/* box */

.box {
  padding: 2em 2.4em;
  background: #fdfae3;
  width: 100%;
}
.box.thin {
  padding: 1em 1.4em;
}
.box.pale {
  background: #fcf5e9;
}

.box.line {
  border: 1px solid var(--border-color);
}

.box.line.blk {
  border: 1px solid #000;
}

.box.line.green {
  border: 1px solid var(--sub-color);
}

@media screen and (max-width: 991px) {
  .box {
    width: 100%;
  }
}

@media screen and (max-width: 565px) {
  .box,
  .box.thin {
    padding: 15px;
  }
}

.height100 {
  height: 100%;
}
.height-auto {
  height: auto !important;
}

.box-height-wrapper {
  display: -wbkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* badge */
.badge {
  position: relative;
  color: white;
  font-size: 1.2em;
  font-weight: 900;
  text-align: center;
}
.badge > * {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  line-height: 1.2;
}
.badge::before {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/badge-gr.svg) no-repeat;
  display: block;
  content: "";
  width: 140px;
  height: 140px;
}
.badge.point::before {
  background: url(../images/badge-or.svg) no-repeat;
}
.badge.white::before {
  background: url(../images/badge-white.svg) no-repeat;
}
.badge.rotate::before {
  animation: rotation 30s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 575px) {
  .badge > * {
    width: 100px;
    height: 100px;
  }
  .badge::before {
    width: 100px;
    height: 100px;
  }
}

/*********************
HEADER
*********************/

/*********************
FOOTER
*********************/

#footer {
  position: relative;
  font-size: 1.4rem;
  background: white;
  border-top: 1px solid var(--append-color);
  color: #000;
}

.foot-wrapper {
  display: flex;
}

.foot-wrapper .logo {
  margin-bottom: 10px;
  padding: 0;
  max-width: 180px;
}

.foot-wrapper a {
  text-decoration: none;
  color: #000;
}

.foot-wrapper .primary ul.link-wrapper li {
  display: inline-block;
  margin-right: 20px;
}

.foot-wrapper .primary ul.link-wrapper li a {
  text-decoration: none;
}

.foot-wrapper .primary ul.link-wrapper li a:hover {
  color: var(--point-color);
}

.foot-wrapper .copyright {
  font-size: 0.8em;
}

@media all and (min-width: 1142px) {
  #footer {
    padding: 40px 0;
  }

  .foot-wrapper {
    justify-content: space-between;
    align-items: center;
  }
  .foot-wrapper .logo {
    order: 1;
  }
  .foot-wrapper .primary {
    order: 3;
  }
  .foot-wrapper .secondary {
    order: 2;
  }
}

@media screen and (max-width: 1499px) {
  #footer {
    padding: 30px 0 100px;
  }
}
@media all and (max-width: 1141px) {
  .foot-wrapper .primary {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .foot-wrapper .primary ul.link-wrapper li {
    font-size: 1.2rem;
  }

  .foot-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media all and (max-width: 480px) {
  #footer {
    padding: 0 0 80px;
  }

  #footer article {
    margin: 0;
  }

  .foot-wrapper {
    flex-direction: column;
  }

  .foot-wrapper .primary {
    width: 100%;
  }

  .foot-wrapper .primary ul.link-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }

  .foot-wrapper .primary ul.link-wrapper li {
    border-bottom: 1px solid var(--append-color);
    width: 50%;
    margin: 0;
    padding: 0;
  }

  .foot-wrapper .primary ul.link-wrapper li:nth-of-type(1) {
    border-right: 1px solid var(--append-color);
  }
  .foot-wrapper .primary ul.link-wrapper li:nth-of-type(3) {
    width: 100%;
  }
  .foot-wrapper .primary ul.link-wrapper a {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 1.2rem;
  }

  .foot-wrapper .secondary {
    padding: 0 20px;
  }
}

/* to_top */

#pageTop {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 58px;
  height: 58px;
  text-align: center;
  z-index: 10;
  margin: 0;
}

#pageTop a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--sub-color);
}

#pageTop a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--sub-color);
  border-right: 2px solid var(--sub-color);
  position: absolute;
  top: calc(50% - 4px);
  right: calc(50% - 5px);
  transform: rotate(-45deg);
}

@media all and (max-width: 580px) {
  #pageTop,
  #pageTop a {
    display: none;
  }
}

/*********************
FOOT-CONTACT
*********************/

#foot-contact-wrapper {
  border-top: 1px solid var(--border-color);
}
#foot-contact-wrapper h3 {
  font-size: 1.1rem;
  width: fit-content;
  margin-bottom: 10px;
  padding: 2px 15px 3px;
  border-radius: 20px;
  border: 1px solid var(--main-color);
}
#foot-contact-wrapper ul {
  font-size: 1.2rem;
  margin-bottom: 18px;
}
#foot-contact-wrapper ul li {
  margin-bottom: 7px;
}
#foot-contact-wrapper ul li::before {
  content: "・";
  display: inline-block;
  color: var(--point-color);
  margin-right: 3px;
}

#foot-contact-wrapper header {
  font-weight: bold;
}

@media all and (max-width: 767px) {
  #foot-contact-wrapper header {
    margin-bottom: 20px;
  }
  #foot-contact-wrapper .inner {
    padding: 15px;
    border-radius: 18px;
    background: var(--bg-color-pale);
    border: 1px solid var(--border-color-pale);
  }
}

/*********************
PAGE-TITLE
*********************/

#page-title article.content-wrapper {
  padding-top: 2em;
  padding-bottom: 4em;
}
.page-content #page-title article.content-wrapper {
  padding-bottom: 0;
}
#page-title .lead {
  text-align: left;
  padding: 1em 0 0;
  margin: 0;
}

#page-title h2 {
  font-size: 2.4em;
  line-height: 1.2;
  margin-bottom: 10px;
}

@media screen and (max-width: 1099px) {
  #page-title article.content-wrapper {
    padding-bottom: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  #page-title h2 {
    font-size: 1.6em;
    line-height: 1.2;
  }
}

/*********************
BREADCRUMBS
*********************/
.breadcrumbs {
  margin-bottom: 20px;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
}

.breadcrumbs ul li {
  position: relative;
  margin-right: 12px;
  padding-right: 12px;
}

.breadcrumbs ul li::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  border-top: 1px solid var(--sub-color);
  border-right: 1px solid var(--sub-color);
  transform: rotate(45deg);
}

.breadcrumbs ul li:last-of-type {
  font-weight: bold;
}

.breadcrumbs ul li:last-of-type:after {
  display: none;
}

/*********************
DECORATION
*********************/

/* fukidashi */
.fukidashi {
  position: relative;
  width: fit-content;
  max-width: 90%;
  padding: 12px 16px;
  border: 2px solid #000;
  background-color: #ffffff;
  border-radius: 18px;
}
.fukidashi::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #ffffff;
  rotate: 135deg;
  translate: -50%;
}
.fukidashi::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 2px solid;
  border-color: #000 #000 transparent transparent;
  rotate: 135deg;
  translate: -50%;
}
.layer-fukidashi {
  padding-top: 20px;
}
.layer-fukidashi .fukidashi {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .row .fukidashi {
  margin-left: 10px;
}
}

/* zoom */
.zoom-wrapper {
  position: relative;
}
.zoom-wrapper::before,
.zoom-wrapper::after {
  display: block;
  position: absolute;
  content: "";
}
.zoom-wrapper::before {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--point-color);
  bottom: 20px;
  right: 20px;
  transition: .2s;
}
.zoom-wrapper::after {
  background: url(../images/icon-search.svg);
  background-size: contain;
  filter: var(--filter-white);
  width: 16px;
  height: 16px;
  bottom: 29px;
  right: 29px;
}

.zoom-wrapper:hover::before {
  opacity: .6;
}
.slb_data_title {
  font-family: var(--JP-gothic) !important;
  font-size: 1.4rem !important;
  padding: 3px 10px !important;
  border-radius: 4px !important;
  background: var(--bg-color) !important;
}

/*********************
SNS
*********************/
.sns-share {
  border-bottom: 1px solid var(--append-color);
  padding-bottom: 30px;
}
.sns-list {
  display: flex;
  justify-content: space-between;
}
.sns-list li {
  width: 24.44%;
  text-align: center;
}
.sns-list li a {
  color: #fff;
  display: block;
  height: 36px;
  line-height: 36px;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 5px;
}
.sns-list li a:hover {
  opacity: .6;
}
.sns-twitter a {
  background-color: #222;
}
.sns-fb a {
  background-color: #3b5998;
}
.sns-hatena a {
  background-color: #5d8ac1;
}
.sns-pocket a {
  background-color: #f03e51;
}
.sns-line a {
  background-color: #6cc655;
}

/*********************
SLICK
*********************/
.slick-next {
  right: 0 !important;
}

.slick-prev {
  left: 0 !important;
}

.slick-arrow {
  z-index: 2 !important;
}

.slick-prev::before,
.slick-next::before {
  content: "" !important;
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--sub-color);
  border-right: 2px solid var(--sub-color);
  position: absolute;
  top: calc(50% - 7px);
}

.slick-prev::before {
  left: -10px;
  transform: rotate(225deg);
}

.slick-next::before {
  right: -10px;
  transform: rotate(45deg);
}

.slide-white .slick-prev::before,
.slide-white .slick-next::before {
  border-top: 2px solid white;
  border-right: 2px solid white;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

.slide-white .slick-dots li button::before,
.slide-white .slick-dots li.slick-active button::before {
  color: white;
}

.home-slider .slick-slide {
  margin: 15px !important;
}

.home-slider .slick-slide img {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.home-slider .slick-dots {
  bottom: -15px;
}

@media all and (max-width: 769px) {
  .home-slider {
    margin: 0;
  }

  .home-slider .slick-dots {
    bottom: -5px;
  }
}

@media all and (min-width: 768px) {
  .home-slider .slick-prev::before {
    left: calc(15vw - 7px);
  }

  .home-slider .slick-next::before {
    right: calc(15vw - 7px);
  }

  .home-slider .slick-slide {
    opacity: 0.7;
    transition: all 0.3s ease;
  }

  .home-slider .slick-slide.slick-center {
    opacity: 1;
  }

  .home-slider.slick-dotted.slick-slider {
    margin-bottom: 50px;
  }
}

@media all and (min-width: 1401px) {
  .home-slider .slick-prev::before {
    left: calc(20vw - 7px);
  }

  .home-slider .slick-next::before {
    right: calc(20vw - 7px);
  }
}

@media all and (min-width: 1801px) {
  .home-slider .slick-prev::before {
    left: calc(25vw - 7px);
  }

  .home-slider .slick-next::before {
    right: calc(25vw - 7px);
  }
}
