@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;
  --EN-gothic-secondary: "Roboto Condensed", sans-serif;
  --bg-color: #FFFFFF;
  --bg-color-pale: #f9f8f7;
  --main-color: #131150;
  --sub-color: #b1a693;
  --point-color: #c43742;
  --append-color: #87326d;
  --border-color: #e4e3e8;
  --filter-white: invert(100%) sepia(0%) saturate(7418%) hue-rotate(202deg) brightness(118%) contrast(103%);
}

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-red {
  color: #c00 !important;
}

.color-blue {
  color: #5d5c84 !important;
}

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

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

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

.color-green {
  color: #00b900 !important;
}

.color-gray {
  color: #CCC !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-pale {
  background-color: var(--bg-color-pale) !important;
}

/* A TAG */

a {
  transition: 0.14s ease-out;
  color: var(--main-color);
}

a.ar {
  position: relative;
  display: inline-block;
  width: fit-content;
  text-decoration: none;
  color: var(--main-color);
  margin: 5px 0;
  padding-right: 34px;
}

a.ar::before,
a.btn.bullet::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  background: var(--main-color);
  top: calc(50% - 10px);
  right: 7px;
  border-radius: 50%;
  transition: 0.2s;
}

a.btn.bullet.fill::before {
  background: white;
  opacity: .3;
}

a.ar::after,
a.btn.bullet::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: calc(50% - 2.5px);
  right: 15px;
  transform: rotate(45deg);
}

a.ar:hover::before {
  filter: var(--filter-point-color);
}

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

a:hover {
  color: var(--sub-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;
}

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

a.btn {
  position: relative;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  text-align: center;
  display: inline-block;
  padding: 1.2em 2em;
  margin: 5px 0 10px;
  background: var(--bg-color);
  color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 10px;
}

a.btn:hover {
  background: var(--main-color);
  color: var(--bg-color);
}

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

a.btn-ar::before {
  position: absolute;
  top: calc(50% - 9px);
  right: 12px;
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/icon-ar.svg) no-repeat left center;
  transition: 0.2s;
}

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

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

a.btn.bullet {
  padding: 9px 36px 9px 24px;
  min-width: auto;
  border-radius: 40px;
  font-size: 1em;
  line-height: 1.4;
  position: relative;
}

a.btn.bullet.fill {
  background-color: var(--point-color);
  border-color: var(--point-color);
  color: white;
}
a.btn.bullet.fill.blue {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

a.btn.bullet.fill:hover {
  opacity: .7;
}

a.btn.bullet.reverse::after {
  left: 14px;
  transform: rotate(225deg);
}

a.btn.bullet.small {
  font-size: .8em;
}

a.btn.bullet.large {
  min-width: 260px;
  padding: 14px 28px 14px 18px;
  border-radius: 30px;
  font-size: 1em;
}

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;
  }
}

@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.6rem;
  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: 1.6rem;
  }

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

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

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

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

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

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

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

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

h2.title {
  font-size: 1.4rem;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 35px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  background: white;
  color: var(--sub-color);
  border: 1px solid var(--sub-color);
  border-radius: 30px;
}

h3 {
  font-size: 1.4em;
  font-weight: 500;
}

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) {
  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 {
    font-size: 1.3rem;
    padding: 10px 30px;
  }

  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%;
}

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

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

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

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

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

table.data thead+tbody th:first-of-type {
  border-top: none;
}

table.data tbody tr:first-of-type {
  border-top: 1px solid var(--append-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 tr:first-of-type,
  table.data.sp-row td,
  table.data.sp-row th {
    display: block;
    border: none;
  }

  table.data.sp-row th,
  table.data.sp-row tbody th:first-of-type {
    border-top: 1px solid var(--border-color);
    width: 100% !important;
  }
}

@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 {
  display: block;
  width: 100%;
  margin: 0;
  height: 1px;
  border-top: 1px dashed var(--sub-color);
}


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

hr.sep.simple::before,
hr.sep.simple::after {
  display: none;
}

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

figure {
  margin: 0;
  padding: 0;
}

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

.lh0 {
  line-height: 0;
}

.lh18 {
  line-height: 1.8;
}

/*********************
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: var(--bg-color-pale) !important;
}

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

.font-small {
  font-size: 0.85em;
}

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

.font-xlarge {
  font-size: 1.6em;
}

.font-xxlarge {
  font-size: 1.9em;
}

@media screen and (max-width: 1199px) {
  .font-large {
    font-size: 1.9rem;
  }

  .font-xlarge {
    font-size: 2.1rem;
  }

  .font-xxlarge {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 767px) {
  .font-small {
    font-size: 11px;
  }

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

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

  .font-xxlarge {
    font-size: 2.0rem;
  }

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

.strong {
  font-weight: 600;
}

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

.semi-strong {
  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: var(--bg-color);
  width: 100%;
}

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

.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 {
    padding: 10px;
  }

  .box.thick {
    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;
}

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

/* primary */
#head-primary {
  background-color: #141320;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8em;
  line-height: 0;
  padding: 0 50px;
}

#head-primary .site-title {
  display: flex;
  align-items: center;
  color: white;
}

#head-primary br {
  display: none;
}

#head-primary .site-title h1 {
  margin: 20px 40px 20px 0;
}

#head-primary .site-title h1 .logo {
  height: 30px;
  width: auto;
}

#head-primary address {
  position: relative;
  color: #ddd;
  font-style: normal;
  text-align: right;
  padding-left: 16px;
}

#head-primary address::before {
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  display: block;
  content: url(../images/icon-pin.svg);
  width: 10px;
  height: 10px;
  opacity: .6;
}

#head-entry-sp {
  display: none;
}

#head-entry {
  line-height: 1;
  display: flex;
  align-items: center;
}

#head-entry a {
  position: relative;
  display: block;
  border: 2px solid var(--main-color);
  text-decoration: none;
  padding: 1em 1.4em;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.6rem;
  border-radius: 40px;
}

#head-entry a.envelope-btn {
  padding: 1em 1.4em 1em calc(1.4em + 24px);
  margin-left: 5px;
}

#head-entry a.envelope-btn::before {
  position: absolute;
  top: calc(50% - 9px);
  left: 1.4em;
  display: block;
  content: url(../images/icon-mail.svg);
  width: 18px;
  height: 18px;
  transition: .1s;
}

#head-entry a:hover {
  color: white;
  background-color: var(--main-color);
}

#head-entry a:hover::before {
  filter: brightness(100);
}

.open-bg {
  display: none;
}

.logo-sp {
  display: none;
}

/* call */

#head-entry .call-wrapper {
  margin-right: 1.2em;
}

.call-wrapper .call-num {
  font-family: var(--EN-gothic-secondary);
  font-weight: 400;
  font-size: 2.2em;
  line-height: 1;
  letter-spacing: -1px;
}

.call-wrapper .spec {
  font-weight: 600;
  text-align: center;
}

#head-nav-wrapper .primary {
  display: none;
}


#head-nav-wrapper .call-wrapper .spec {
  line-height: 1.4;
  color: var(--append-color);
}

#head-nav-wrapper .call-wrapper .spec br {
  display: none;
}

@media screen and (max-width: 1600px) {
  #head-nav-wrapper .call-wrapper .spec {
    display: none;
  }
}

@media screen and (max-width: 1480px) {
  #head-nav-wrapper .call-wrapper .spec {
    display: none;
  }

  #head-nav-wrapper .call-wrapper .spec br {
    display: block;
  }
}

@media screen and (max-width: 1380px) {
  #head-nav-wrapper .call-wrapper .spec {
    display: none;
  }
}

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

  #head-primary .site-title div,
  #head-primary address {
    line-height: 1.4;
  }

  #head-primary br {
    display: block;
  }
}

/*@media screen and (min-width: 1200px) {*/
@media screen and (min-width: 1280px) {
  #top-head {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    transition: 0.2s;
  }

  #top-head.is-fixed {
    background: var(--bg-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  #head-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 50px;
  }

  #top-head.is-fixed #head-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 50px;
  }

  #head-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    line-height: 0;
    margin: 15px 0;
  }

  header#top-head {
    padding: 0;
  }

  #nav-toggle {
    display: none;
  }

  #head-global-nav-secondary {
    display: none;
  }
}

/*@media screen and (max-width: 1199px) {*/
@media screen and (max-width: 1279px) {
  #head-entry {
    display: none;
  }

  #head-primary {
    height: 56px;
    padding-left: 20px;
  }

  #head-primary address {
    display: none;
  }

  #head-primary .site-title h1 {
    margin: 10px 20px 10px 0;
    max-width: 160px;
    height: auto;
  }

  #head-primary .site-title h1 .logo {
    height: 20px;
    width: auto;
  }

  #top-head {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
  }

  #head-wrapper {
    width: 100%;
    display: block;
    position: relative;
  }

  /* entry */

  #top-head.is-fixed #head-entry-sp {
    display: block;
    position: fixed;
    z-index: 99;
    top: 15px;
    right: 60px;
  }

  #head-entry-sp a {
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--main-color);
    border: 2px solid transparent;
    background: var(--bg-color);
    border: 2px solid var(--main-color);
    font-weight: 700;
  }

  /* Toggle Button */
  #nav-toggle {
    display: block;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    top: 0;
    right: 0;
    position: fixed;
    width: 54px;
    height: 54px;
    background-color: #141320;
  }

  #nav-toggle div {
    position: relative;
  }

  #nav-toggle span {
    display: inline-block;
    position: absolute;
    background: var(--bg-color);
    height: 1px;
    width: 28px;
    left: 14px;
    transition: 0.2s ease-in-out;
  }

  #nav-toggle span:nth-child(1) {
    top: 20px;
  }

  #nav-toggle span:nth-child(2) {
    top: 26px;
  }

  #nav-toggle span:nth-child(3) {
    top: 32px;
  }

  /* open */
  body.open .open-bg {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    width: 100vw;
    height: 100vh;
    background: rgba(200, 200, 200, .8);
  }

  body.open {
    overflow: hidden;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 24px;
    transform: rotate(-45deg);
  }

  .open #nav-toggle span:nth-child(2) {
    width: 0;
    opacity: 0;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 24px;
    transform: rotate(45deg);
  }

  /* call */
  #head-nav-wrapper .primary {
    display: block;
    border-bottom: 1px solid var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
    height: 54px;
    width: 100%;
    line-height: 1.1;
  }

  #head-wrapper .call-wrapper {
    display: flex;
    align-items: center;
    position: absolute;
    top: 13px;
    left: 10px;
  }

  #head-wrapper .call-wrapper .call-num {
    margin-right: 1rem;
  }

  #head-wrapper {
    height: 54px;
    position: absolute;
    z-index: 999;
    top: 0;
    margin-top: 0;
  }

  #head-nav-wrapper #head-entry .call-wrapper .spec {
    display: block;
  }

  /*main.main {
    padding-top: 56px;
  }*/

  #head-primary address {
    display: none;
  }

  #head-nav-wrapper .call-wrapper .spec {
    font-size: 1.1rem;
    text-align: left;
  }
}
/*
@media screen and (min-width: 680px) and (max-width: 1199px) {*/
@media screen and (min-width: 680px) and (max-width: 1279px) {
  #head-entry-sp {
    display: block;
    position: fixed;
    z-index: 99;
    top: 15px;
    right: 60px;
  }
}

@media screen and (min-width: 579px) and (max-width: 680px) {

  #head-entry-sp,
  #top-head.is-fixed #head-entry-sp {
    top: 18px;
  }
}

/*********************
NAVIGATION
*********************/

#head-global-nav>ul>li {
  margin-right: 2em;
}

#head-global-nav>ul>li a,
#head-global-nav-secondary>ul>li a {
  text-decoration: none;
  font-weight: 600;
  display: block;
  position: relative;
  color: var(--main-color);
  font-size: 1.6rem;
  padding: 20px 0;
}

#head-global-nav>ul>li a:hover {
  color: var(--sub-color);
}

#head-global-nav>ul li.instagram a::before,
#head-global-nav-secondary li.instagram a::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 5px;
  background: url(../images/instagram_logo.png) no-repeat center center;
  background-size: contain;
}

#head-global-nav-secondary ul li.contact {
  display: none;
}

/*@media screen and (min-width: 1200px) {*/
@media screen and (min-width: 1280px) {
  #top-head.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
  }

  #top-head.is-fixed #head-wrapper h1 img.logo {
    width: 14vw;
    min-width: 240px;
    max-width: 300px;
  }

  #head-global-nav {
    display: flex;
    align-items: end;
    margin-right: 30px;
  }

  #head-global-nav>ul {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
  }

  #head-global-nav>ul li {
    position: relative;
  }

  #head-global-nav>ul li a {
    vertical-align: middle;
  }

  #head-global-nav>ul li a::after {
    left: calc(50% - 3px);
    width: 6px;
  }

  #head-global-nav>ul>li.contact {
    display: none;
  }
}

/*
@media screen and (max-width: 1199px) {*/
@media screen and (max-width: 1279px) {
  body.open {
    scrollbar-gutter: stable;
  }

  #head-nav-wrapper {
    position: fixed;
    background: var(--bg-color);
    transition: all 0.1s ease-out;
    overflow-y: auto;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    opacity: 0;
    margin: 0;
    padding: 60px 0 0;
  }

  .open #head-nav-wrapper {
    top: 0;
    opacity: 1;
  }

  #head-global-nav {
    width: 80%;
    max-width: 880px;
    margin: 0 auto;
  }

  #head-global-nav ul {
    margin-bottom: 1em;
    display: flex;
    flex-wrap: wrap;
  }

  #head-global-nav ul li {
    width: 25%;
    text-align: center;
    margin: 0;
  }

  #head-global-nav-secondary ul {
    margin: 10px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  #head-global-nav ul li a,
  #head-global-nav-secondary ul li a {
    text-decoration: none;
    font-size: 1.4rem;
    padding: 10px 0;
    margin: 0;
    display: block;
  }

  #head-global-nav-secondary ul li a {
    padding: 5px 10px;
  }
}

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

  #head-nav-wrapper>h1,
  #head-global-nav {
    width: 90%;
  }

  #head-nav-wrapper>h1 img {
    max-width: 200px;
  }

  .open .logo-sp img {
    width: 100%;
  }

  #head-global-nav ul li {
    width: 33.33%;
    text-align: center;
    margin: 0;
  }

  #head-global-nav ul li.contact {
    width: 100%;
    margin: 5px 0;
    border-radius: 8px;
  }

  #head-global-nav ul li.contact a {
    border: 2px solid var(--main-color);
    border-radius: 5px;
  }

  #head-global-nav-secondary ul li.contact {
    display: block;
  }
}

.use-btn {
  border: 2px solid var(--point-color) !important;
  background-color: var(--point-color) !important;
  color: white !important;
}

.use-btn:hover {
  opacity: .7;
}

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

#footer {
  position: relative;
  background: var(--bg-color-pale);
}

.foot-wrapper {
  position: relative;
  display: flex;
}

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

.foot-wrapper .call-wrapper .spec {
  text-align: left;
}

.foot-wrapper .text-link {
  display: flex;
  gap: 1em;
  font-size: 0.9em;
}

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

@media all and (min-width: 1142px) {
  .foot-wrapper {
    justify-content: space-between;
  }

  .foot-wrapper .secondary {
    text-align: right;
  }
}

@media all and (max-width: 1141px) {
  .foot-wrapper {
    flex-direction: column;
  }

  .foot-wrapper .secondary {
    margin-top: 2em;
    width: auto;
  }
}

@media all and (max-width: 480px) {

  #footer article {
    margin: 0;
  }

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

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

  .foot-wrapper .text-link {
    display: block;
  }

  .foot-wrapper .text-link li {
    margin-bottom: 5px;
  }

}

/* foot-ill */
.foot-ill {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-75%);
  width: 30vw;
  max-width: 240px;
}

/* foot-spec */

.foot-spec {
  display: none;
}

@media screen and (max-width: 1380px) {
  .foot-spec {
    font-size: .9em;
    display: block;
    width: 100%;
    background: var(--main-color);
    color: white;
    text-align: center;
    padding: .7em;
    position: fixed;
    bottom: 0;
  }
}

/* to_top */

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

#pageTop a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  background: var(--main-color);
}

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

@media all and (max-width: 580px) {

  #pageTop,
  #pageTop a {
    display: none;
  }
}