@charset "UTF-8";
/* =====================================================
  0.0 - Foundation
===================================================== */
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
/*最後に削除する！--*/
/*--最後に削除する！*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*
i-functions
-----------------------------------------------------*/
/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
	Base
-----------------------------------------------------*/
*,
:before,
:after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  color: #333333;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", "Lato", sans-serif;
  font-optical-sizing: auto;
  font-display: swap;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-size: clamp(1rem, 0.31vw + 0.9375rem, 1.125rem);
  line-height: 1.7;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
}

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

a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:active,
a:hover {
  color: inherit;
  text-decoration: none;
}

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

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
  line-height: 2;
}

p + p {
  margin-top: 2rem;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

img {
  width: 100%;
  max-width: 100%; /* 1 */
  height: auto; /* 1 */
  vertical-align: middle; /* 2 */
  font-style: italic; /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover; /* 4 */
  shape-margin: 0.75rem; /* 5 */
  display: block;
}

svg {
  vertical-align: bottom;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
  margin: 0;
}

td {
  margin: 0;
}

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

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

button {
  border: none;
  font: inherit;
  line-height: inherit;
  background: none;
  margin: 0;
}

/* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

.-center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

RESET CSS

html5doctor.com Reset Stylesheet

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
} /* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
} /* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
}

button {
  padding: 0;
}

* {
  box-sizing: border-box;
}

em,
i {
  font-weight: normal;
  font-style: normal;
}

/* =====================================================
  1.0 - inc
===================================================== */
/* =====================================================
  2.0 - Layout
===================================================== */
/*
body
-----------------------------------------------------*/
html {
  scroll-padding-top: 90px;
}

body i {
  font-style: normal;
}

.sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
.-link {
  color: #0000ee !important;
}

/*
cta
-----------------------------------------------------*/
.l-cta {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-cta {
    width: 100%;
    margin: 0;
  }
}
.l-cta h2 {
  font-size: clamp(27px, 2.9vw + 17.7px, 40px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-cta h2 {
    text-align: left;
  }
}
.l-cta h2 span {
  display: block;
  color: #d0a74d;
  font-size: clamp(16px, 0.45vw + 14.5px, 18px);
  line-height: 1.3;
}
.l-cta .-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  margin-bottom: clamp(50px, 8.93vw + 21.4px, 90px);
}
@media screen and (min-width: 768px) {
  .l-cta .-contact {
    flex-direction: row;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
  }
}
.l-cta .-contact .-call,
.l-cta .-contact .-gotoform {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-cta .-contact .-call,
  .l-cta .-contact .-gotoform {
    padding: 2rem;
  }
}
.l-cta .-contact .-call h3,
.l-cta .-contact .-gotoform h3 {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-cta .-contact .-call h3,
  .l-cta .-contact .-gotoform h3 {
    display: block;
    text-align: center;
  }
  .l-cta .-contact .-call h3 i,
  .l-cta .-contact .-gotoform h3 i {
    display: block;
    font-size: clamp(20px, 2.46vw + 12.1px, 31px);
    margin: 0 auto 0.5em;
  }
}
.l-cta .-contact .-call a,
.l-cta .-contact .-gotoform a {
  position: relative;
  background: #fff;
  color: #fff;
  display: block;
  text-align: center;
  font-size: clamp(17px, 0vw + 17px, 17px);
  border-radius: 3em;
  background: #333333;
  padding: 1rem 0;
  transition: all 0.3s;
}
.l-cta .-contact .-call a:after,
.l-cta .-contact .-gotoform a:after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  top: calc(50% - 5px);
  right: 1.5em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: all 0.3s;
}
.l-cta .-contact .-call a:hover,
.l-cta .-contact .-gotoform a:hover {
  background: #110e60;
}
.l-cta .-contact .-call a:hover:after,
.l-cta .-contact .-gotoform a:hover:after {
  right: 1em;
}
.l-cta .-contact .-call a i,
.l-cta .-contact .-gotoform a i {
  font-size: clamp(16px, 1.34vw + 11.7px, 22px);
  margin-right: 0.5em;
}
@media screen and (min-width: 768px) {
  .l-cta .-contact .-call a .-sp,
  .l-cta .-contact .-gotoform a .-sp {
    display: none;
  }
}
.l-cta .-contact .-call a .-pc,
.l-cta .-contact .-gotoform a .-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-cta .-contact .-call a .-pc,
  .l-cta .-contact .-gotoform a .-pc {
    display: inline-block;
  }
}
.l-cta .-contact .-call .-time,
.l-cta .-contact .-gotoform .-time {
  text-align: center;
  font-size: clamp(14px, 0vw + 14px, 14px);
  margin: 1em auto 1.8em;
}
@media screen and (min-width: 768px) {
  .l-cta .-contact .-call .-time,
  .l-cta .-contact .-gotoform .-time {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .l-cta .-contact .-call {
    border-right: 1px solid #ddd;
  }
  .l-cta .-contact .-call a {
    font-family: "Roboto", sans-serif;
    font-size: clamp(17px, 6.25vw - 3px, 45px);
    color: #333333;
    background: transparent;
  }
  .l-cta .-contact .-call a i {
    display: none;
  }
  .l-cta .-contact .-gotoform a {
    margin-top: 2.2rem;
    padding: 1.2em 0;
  }
}
.l-cta_banner {
  margin-bottom: clamp(50px, 8.93vw + 21.4px, 90px);
}
.l-cta_banner ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1%;
}
@media screen and (min-width: 768px) {
  .l-cta_banner ul {
    gap: 2%;
    flex-wrap: nowrap;
  }
}
.l-cta_banner ul li {
  flex: 0 0 49%;
  margin-bottom: 2%;
}
@media screen and (min-width: 768px) {
  .l-cta_banner ul li {
    flex: 1;
  }
}

/*
works
-----------------------------------------------------*/
.l-works {
  padding-bottom: clamp(84px, 15.85vw + 33.3px, 155px);
}
.l-works h2 {
  font-size: clamp(27px, 5.13vw + 10.6px, 50px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1em;
}
.l-works h2 span {
  display: block;
  color: #d0a74d;
  font-size: clamp(24px, 0vw + 24px, 24px);
  line-height: 1.3;
}
.l-works .swiper {
  margin: 0 calc(50% - 50vw);
}
.l-works .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
}
@media screen and (min-width: 768px) {
  .l-works .swiper-slide {
    margin: 0 auto;
  }
}
.l-works .swiper-slide a figure .thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1em;
}
.l-works .swiper-slide a figure img {
  height: 100%;
  margin-bottom: 1em;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.l-works .swiper-slide a figure figcaption {
  width: 100%;
  font-size: 20px;
  font-weight: 500;
}
.l-works .swiper-slide a figure figcaption span {
  display: block;
  color: #9f9f9f;
  font-size: 14px;
}
.l-works .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
footer
-----------------------------------------------------*/
.l-foot {
  background: #fafafa;
}
.l-foot .l-wrapper {
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .l-foot .l-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
.l-foot .-logo {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-foot .-logo {
    width: 30%;
    margin: 0;
  }
}
.l-foot .-logo .-img {
  max-width: 270px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-foot .-logo .-img {
    order: 2;
  }
}
.l-foot .-logo address {
  font-style: normal;
  font-size: clamp(14px, 0vw + 14px, 14px);
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .l-foot .-logo address {
    order: 1;
    max-width: 318px;
  }
}
.l-foot .-logo .-sns {
  display: flex;
  gap: 0.5em;
}
.l-foot .-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-foot .-nav {
    width: 62%;
    display: flex;
    justify-content: space-between;
  }
}
.l-foot .-nav > dl {
  width: 31%;
  font-size: clamp(14px, 0vw + 14px, 14px);
}
.l-foot .-nav > dl dt {
  text-align: center;
  color: #fff;
  background: #110e60;
  border-radius: 2rem;
  padding: 0.3em;
  margin-bottom: 1rem;
}
.l-foot .-nav > dl dd {
  line-height: 2;
  margin-left: 0.5rem;
  margin-bottom: 0.5em;
}
.l-foot .-nav > ul li {
  line-height: 2.8;
  font-size: clamp(14px, 0vw + 14px, 14px);
}
.l-foot .-headoffice {
  padding: 0 0 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-foot .-headoffice {
    display: none;
  }
}
.l-foot .-headoffice a {
  display: inline-block;
  width: 50%;
}

.l-footer {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer {
    display: block;
  }
}

.l-footer__nav dl a svg {
  vertical-align: baseline;
}

.l-footer__copy {
  padding-bottom: 2rem;
}
/*
 header
-----------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 80px;
  background: #fff;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.l-header .-logo {
  width: 240px;
  margin-left: 5%;
}
@media screen and (min-width: 1080px) {
  .l-header .-logo {
    width: 255px;
    margin-left: 1rem;
  }
}
.l-header .-hamburger {
  position: relative;
  width: 36px;
  height: 36px;
  margin: 22px;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 1080px) {
  .l-header .-hamburger {
    display: none;
  }
}
.l-header .-hamburger .-bar, .l-header .-hamburger::before, .l-header .-hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: 0.3s ease;
}
.l-header .-hamburger .-bar {
  top: 50%;
  transform: translateY(-50%);
}
.l-header .-hamburger::before {
  top: 6px;
}
.l-header .-hamburger::after {
  bottom: 6px;
}
.l-header .-hamburger.-active .-bar {
  opacity: 0;
  transform: scaleX(0.4);
}
.l-header .-hamburger.-active::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header .-hamburger.-active::after {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.l-header .-nav {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 80px;
  left: 0;
  right: 0;
  color: #fff;
  background: #363636;
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav {
    position: static;
    background: transparent;
    display: flex;
    height: 80px;
    top: 0;
    color: #333333;
    padding: 0;
    visibility: visible;
    opacity: 1;
    overflow: visible;
  }
}
.l-header .-nav.-open {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav.-open {
    display: flex;
    align-items: center;
  }
}
.l-header .-nav a {
  color: #fff;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav a {
    color: #333333;
  }
}
.l-header .-nav > ul {
  list-style: none;
  font-size: clamp(14px, -0.79vw + 22.5px, 20px);
  font-weight: 600;
}
.l-header .-nav > ul.-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #717171;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-list {
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
    height: 80px;
    border: 0;
  }
}
.l-header .-nav > ul.-list li {
  position: relative;
  border-top: 1px solid #717171;
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-list li {
    border: 0;
    margin: 0;
    padding: 0;
  }
}
.l-header .-nav > ul.-list li > a, .l-header .-nav > ul.-list li > span {
  display: block;
  padding: 0.5em 1.5em;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-list li > a, .l-header .-nav > ul.-list li > span {
    padding: 2.5em 1.5em;
    color: #333333;
  }
}
.l-header .-nav > ul.-list li > span {
  display: block;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-list li > span {
    position: relative;
  }
}
.l-header .-nav > ul.-list li > span:before, .l-header .-nav > ul.-list li > span:after {
  position: absolute;
  content: "";
  background: #fff;
  transition: transform 0.3s;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-list li > span:before, .l-header .-nav > ul.-list li > span:after {
    display: none;
  }
}
.l-header .-nav > ul.-list li > span:before {
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 16px;
  height: 2px;
}
.l-header .-nav > ul.-list li > span:after {
  top: 50%;
  transform: translateY(-50%);
  right: 27px;
  width: 2px;
  height: 16px;
}
.l-header .-nav > ul.-list li > ul, .l-header .-nav > ul.-list li > dl {
  display: none;
  transition: max-height 0.3s, padding 0.3s;
  background: #333333;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-list li > ul, .l-header .-nav > ul.-list li > dl {
    display: block;
    position: absolute;
    left: -10%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1;
    padding: 3em;
    background: #fff !important;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  }
  .l-header .-nav > ul.-list li > ul:before, .l-header .-nav > ul.-list li > dl:before {
    content: "";
    position: absolute;
    top: -30px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
  }
}
.l-header .-nav > ul.-list li > ul a, .l-header .-nav > ul.-list li > dl a {
  display: block;
  padding: 0.5em 1.5em 0.5em 3em;
  font-size: clamp(14px, -0.26vw + 16.8px, 16px);
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-list li > ul a, .l-header .-nav > ul.-list li > dl a {
    position: relative;
    display: block;
    padding: 1em 100px 1em 0;
    transition: 0.3s ease;
  }
  .l-header .-nav > ul.-list li > ul a:before, .l-header .-nav > ul.-list li > ul a:after, .l-header .-nav > ul.-list li > dl a:before, .l-header .-nav > ul.-list li > dl a:after {
    content: "";
    position: absolute;
    right: 1em;
    transition: 0.3s;
  }
  .l-header .-nav > ul.-list li > ul a:before, .l-header .-nav > ul.-list li > dl a:before {
    width: 94px;
    height: 1px;
    margin-top: 0.8em;
    background-color: #333333;
  }
  .l-header .-nav > ul.-list li > ul a:after, .l-header .-nav > ul.-list li > dl a:after {
    top: calc(50% - 0.5px);
    width: 8px;
    height: 1px;
    background-color: #333333;
    transform: rotate(45deg);
    transform-origin: calc(100% - 0.5px) 50%;
  }
  .l-header .-nav > ul.-list li > ul a:hover:before, .l-header .-nav > ul.-list li > ul a:hover:after, .l-header .-nav > ul.-list li > dl a:hover:before, .l-header .-nav > ul.-list li > dl a:hover:after {
    right: 0;
  }
}
.l-header .-nav > ul.-list li > dl {
  left: 0;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-list li > dl {
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-list li > ul {
    width: 443px;
  }
  .l-header .-nav > ul.-list li > ul:before {
    left: 6em;
  }
}
.l-header .-nav > ul.-list li > dl {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-list li > dl {
    width: 844px;
    flex-direction: row;
    flex-wrap: wrap !important;
    justify-content: space-between;
  }
  .l-header .-nav > ul.-list li > dl:before {
    left: 55%;
  }
}
.l-header .-nav > ul.-list li > dl dt {
  display: none;
  font-size: clamp(19px, 1.05vw + 15.7px, 27px);
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-list li > dl dt {
    dispaly: block;
    width: 100%;
  }
}
.l-header .-nav > ul.-list li > dl dd {
  border-top: 1px solid #717171;
  font-size: clamp(16px, 0.13vw + 15.6px, 17px);
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-list li > dl dd {
    width: 47% !important;
    border-top: 0;
  }
}
.l-header .-nav > ul.-list li:hover > ul, .l-header .-nav > ul.-list li:hover > dl {
  background: #fff;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility 0.3s;
}
.l-header .-nav > ul.-list li.-active {
  cursor: pointer;
  font-weight: 600;
}
.l-header .-nav > ul.-list li.-active span:after {
  height: 0;
}
.l-header .-nav > ul.-list li.-active ul,
.l-header .-nav > ul.-list li.-active dl {
  display: block !important;
  background: #333333;
}
.l-header .-nav > ul.-btn {
  border: 1px solid red;
  padding: 3rem 1rem 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-content: center;
  border: 0;
}
@media screen and (max-width: 319px) {
  .l-header .-nav > ul.-btn {
    width: 100%;
  }
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-btn {
    display: none;
  }
}
.l-header .-nav > ul.-btn li {
  margin-bottom: 2em;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-btn li {
    margin: 0;
  }
}
.l-header .-nav > ul.-btn li a {
  display: block;
  color: #fff;
  padding: 0.5em 1em;
  text-align: center;
  background: #fff;
  border-radius: 3em;
  color: #333333;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-btn li a {
    width: 145px;
    height: 80px;
    color: #fff;
    white-space: nowrap;
    padding: 2.5em 1em;
    border-radius: 0;
    transition: 0.2s;
  }
}
.l-header .-nav > ul.-btn li a:hover {
  opacity: 0.7;
}
.l-header .-nav > ul.-btn li a i {
  margin-right: 0.3em;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-btn li a span {
    display: none;
  }
}
.l-header .-nav > ul.-btn li em {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin-top: 0.3em;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-btn .-contact a {
    background: #333333;
  }
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-btn .-tel {
    display: none;
  }
}
.l-header .-nav > ul.-btn .-catalog a {
  display: none;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav > ul.-btn .-catalog a {
    display: block;
    background: #000;
  }
}
.l-header .-nav .-foot {
  display: block;
  padding: 3rem 1rem;
}
@media screen and (min-width: 1080px) {
  .l-header .-nav .-foot {
    display: none;
  }
}
.l-header .-nav .-foot .-logo {
  margin: 0 auto 3rem;
}
.l-header .-nav .-foot .-sns {
  display: flex;
  justify-content: center;
  margin: 0 auto 3rem;
}
.l-header .-nav .-foot .-sns li {
  margin: 0 0.5em;
}
.l-header .-nav .-foot .-sns li a img {
  width: 42px;
}
.l-header .-nav .-foot .-headoffice {
  width: 70%;
  margin: 0 auto 5rem;
}

/*
main
-----------------------------------------------------*/
.l-main {
  padding-bottom: 1.815vw;
}
.l-main.-subpage {
  padding: 4em 0 12em;
}
@media screen and (min-width: 768px) {
  .l-main.-subpage {
    padding: 9em 0 12em;
  }
}
.l-main .gmap_iframe {
  aspect-ratio: 16/9;
  max-width: 1000px;
  width: 100%;
  height: auto;
}
.l-main .-section {
  padding: 5%;
  padding-bottom: clamp(70px, 15.63vw + 20px, 140px);
}

/*
spacer
-----------------------------------------------------*/
.l-spacer.-large {
  margin-bottom: clamp(120px, 17.86vw + 62.8px, 200px);
}
.l-spacer.-medium {
  margin-bottom: clamp(80px, 8.93vw + 51.4px, 120px);
}
.l-spacer.-small {
  margin-bottom: clamp(60px, 4.46vw + 45.7px, 80px);
}
.l-spacer.-sp_none {
  margin-bottom: clamp(30px, 20.09vw - 34.3px, 120px);
}

.l-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-sp {
    display: none;
  }
}

.l-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-pc {
    display: block;
  }
}

/*
wrapper
-----------------------------------------------------*/
.l-wrapper {
  width: 95%;
  margin: 0 auto;
  /*dl.-definition*/
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    width: 100%;
    max-width: 1004px;
  }
}
.l-wrapper.-sec {
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .l-wrapper.-sec {
    margin-bottom: 80px;
  }
}
.l-wrapper.-flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-wrapper.-flex {
    flex-direction: row;
    justify-content: space-between;
  }
}
.l-wrapper p {
  margin-bottom: 2.8em;
}
.l-wrapper .-definition {
  line-height: 1.8;
  border-top: 1px solid #dbdbdb;
}
.l-wrapper .-definition div {
  display: flex;
  flex-direction: column;
  padding: 0.5em 1em;
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (min-width: 768px) {
  .l-wrapper .-definition div {
    flex-direction: row;
  }
}
.l-wrapper .-definition div dt {
  color: #110e60;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .l-wrapper .-definition div dt {
    width: 12em;
  }
}
@media screen and (min-width: 768px) {
  .l-wrapper .-definition div dd {
    width: calc(100% - 2em - 12em);
  }
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
/*
button
-----------------------------------------------------*/
.c-btn {
  margin-top: 3em;
}
.c-btn a {
  position: relative;
  display: inline-block;
  color: #333333;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #333333;
  padding: 0.8rem 6rem 0.8rem 2rem;
  transition: all 0.3s;
}
.c-btn a:before, .c-btn a:after {
  content: "";
  position: absolute;
  right: 2rem;
  transition: 0.3s;
}
.c-btn a:before {
  width: 38px;
  height: 1px;
  top: 28px;
  background-color: #333333;
}
.c-btn a:after {
  top: 28px;
  width: 17px;
  height: 1px;
  background-color: #333333;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
.c-btn a:hover {
  color: #fff;
  background: #110E60;
}
.c-btn a:hover:before, .c-btn a:hover:after {
  right: 1rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-btn.-left a, .c-btn.-right a {
    display: inline-block;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.c-btn.-right {
  text-align: right;
}
.c-btn.-right a {
  text-align: left;
}
.c-btn.-sp100 a {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-btn.-sp100 a {
    width: auto;
  }
}
.c-btn.-small a {
  font-size: 14px;
  padding: 0.6rem 5rem 0.6rem 2rem;
}
.c-btn.-small a:before {
  top: 24px;
}
.c-btn.-small a:after {
  top: 24px;
  width: 13px;
}

/*
form
-----------------------------------------------------*/
.c-form h2 {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 2em;
}
.c-form dl {
  margin-bottom: 5em;
}
.c-form dl div {
  width: 100%;
  background: #F4F4F4;
  border: 1px solid #D9D9D9;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .c-form dl div {
    display: table;
    flex-direction: row;
  }
}
.c-form dl div dt,
.c-form dl div dd {
  display: block;
  padding: 1em;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .c-form dl div dt,
  .c-form dl div dd {
    display: table-cell;
  }
}
.c-form dl div dt p,
.c-form dl div dd p {
  margin: 0;
}
.c-form dl div dt {
  margin: 0;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .c-form dl div dt {
    width: 12em;
    margin: 0;
  }
}
.c-form dl div dd {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-form dl div dd {
    width: calc(100% - 10em);
    border-left: 1px solid #D9D9D9;
  }
}
.c-form .-policy {
  max-width: 640px;
  margin: 5em auto;
  align-items: center !important;
  align-content: center;
}
.c-form .-acceptance label {
  display: block;
}
.c-form .-acceptance input[type=checkbox] {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c-form .-acceptance input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.c-form .-acceptance .wpcf7-list-item-label {
  position: relative;
  padding-left: 50px;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  line-height: 40px;
  white-space: nowrap;
}
.c-form .-acceptance .wpcf7-list-item-label:before, .c-form .-acceptance .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}
.c-form .-acceptance .wpcf7-list-item-label:before {
  height: 40px;
  width: 40px;
  background: #707F89;
  border-radius: 99px;
  top: 50%;
  left: 0;
  margin-top: -18px;
  transition: 0.3s;
}
.c-form .-acceptance .wpcf7-list-item-label:after {
  top: 50%;
  transition: 0.3s;
  transform: rotate(45deg);
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 12px;
  height: 20px;
  left: 14px;
  margin-top: -10px;
  opacity: 0.05;
}
.c-form .-txt {
  max-width: 640px;
  margin: 5em auto;
}
.c-form .-txt p {
  font-weight: 400;
}
.c-form .-select {
  position: relative;
  width: 100%;
  display: inline-flex;
  align-items: center;
}
.c-form .-select:after {
  position: absolute;
  right: 1em;
  width: 10px;
  height: 7px;
  background-color: #333333;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.c-form .-select p {
  width: 100%;
}
.c-form .-select select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 2.8em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: none;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}
.c-form ul {
  margin: 0;
  padding: 0;
}
.c-form ul li {
  display: block;
}
.c-form ul li label {
  width: auto;
}
.c-form input[type=text], .c-form input[type=email], .c-form input[type=tel], .c-form input[type=datetime], .c-form input[type=date], .c-form input[type=month], .c-form input[type=week], .c-form input[type=time], .c-form input[type=datetime-local], .c-form input[type=tel], .c-form input[type=serch], .c-form input[type=url], .c-form input[type=password], .c-form input[type=number], .c-form input[type=range], .c-form input[type=color], .c-form input[type=file], .c-form input[type=image] {
  width: 100%;
  font-size: clamp(1rem, 0.31vw + 0.9375rem, 1.125rem);
  padding: 0.8em;
  border: transparent;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #CDD6DD;
}
.c-form input[type=radio], .c-form input[type=checkbox] {
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 0.3em;
}
.c-form input.zipcode {
  width: calc(100% - 2em);
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-form input.zipcode {
    width: 8em;
  }
}
.c-form textarea {
  width: 100%;
  font-size: clamp(1rem, 0.31vw + 0.9375rem, 1.125rem);
  padding: 0.8em;
  border: transparent;
  box-sizing: border-box;
  height: 10em;
  background: #fff;
  border: 1px solid #CDD6DD;
}
.c-form input[type=submit], .c-form input[type=button],
.c-form button[type=submit],
.c-form button[type=button] {
  position: relative;
  display: inline-block;
  color: #333333;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #333333;
  padding: 0.8rem 6rem 0.8rem 2rem;
  transition: all 0.3s;
}
.c-form input[type=submit]:before, .c-form input[type=submit]:after, .c-form input[type=button]:before, .c-form input[type=button]:after,
.c-form button[type=submit]:before,
.c-form button[type=submit]:after,
.c-form button[type=button]:before,
.c-form button[type=button]:after {
  content: "";
  position: absolute;
  right: 2rem;
  transition: 0.3s;
}
.c-form input[type=submit]:before, .c-form input[type=button]:before,
.c-form button[type=submit]:before,
.c-form button[type=button]:before {
  width: 38px;
  height: 1px;
  top: 28px;
  background-color: #333333;
}
.c-form input[type=submit]:after, .c-form input[type=button]:after,
.c-form button[type=submit]:after,
.c-form button[type=button]:after {
  top: 28px;
  width: 17px;
  height: 1px;
  background-color: #333333;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
.c-form input[type=submit]:hover, .c-form input[type=button]:hover,
.c-form button[type=submit]:hover,
.c-form button[type=button]:hover {
  color: #fff;
  background: #110E60;
}
.c-form input[type=submit]:hover:before, .c-form input[type=submit]:hover:after, .c-form input[type=button]:hover:before, .c-form input[type=button]:hover:after,
.c-form button[type=submit]:hover:before,
.c-form button[type=submit]:hover:after,
.c-form button[type=button]:hover:before,
.c-form button[type=button]:hover:after {
  right: 1rem;
  background-color: #fff;
}
.c-form .-chance {
  margin: 5em auto;
}
.c-form .-chance ul li {
  display: inline-block;
  margin-right: 2em;
}
.c-form .-submit {
  text-align: center;
  margin: 5em auto;
}
.c-form .-comfirm dl {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-form .-comfirm dl {
    flex-direction: row;
  }
}
.c-form .-comfirm dl dt {
  font-weight: bold;
  width: 100%;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 768px) {
  .c-form .-comfirm dl dt {
    width: 10em;
    margin: 0 1rem 0;
  }
}
.c-form .-comfirm dl dd {
  width: auto;
}

/*
pagetitle
-----------------------------------------------------*/
.c-herohead {
  position: relative;
  height: 280px;
  margin-top: 80px;
  border-bottom: 1px solid #ddd;
}
.c-herohead .-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  overflow: hidden; /* 画像がはみ出ないようにする */
}
.c-herohead .-img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c-herohead .-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.34);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-herohead .-head {
    text-align: flex-start;
  }
}
.c-herohead .-head h1 {
  width: 90%;
  max-width: 736px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-herohead .-head h1 {
    text-align: left;
  }
}
.c-herohead .-head h1 span {
  display: block;
  font-size: clamp(27px, 2.9vw + 17.7px, 40px);
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}
.c-herohead.-none {
  height: 180px;
}
.c-herohead.-none .-head {
  background: transparent;
}
.c-herohead.-none .-head h1 {
  color: #333333;
  max-width: 980px;
}
.c-herohead.-heightauto {
  height: auto;
}
.c-herohead.-heightauto .-head {
  position: static;
  justify-content: flex-start;
  max-width: 1004px;
  margin: 0 auto;
  padding: 50px 0 30px;
}
.c-herohead.-heightauto .-head h1 {
  width: 100%;
  max-width: 100%;
  color: #7c7c7c;
  font-size: 12px;
  font-weight: 500;
}
.c-herohead.-heightauto .-head h1 span {
  color: #333333;
  font-weight: 600;
}
.c-herohead.-homes {
  height: calc(50vh - 80px);
}
@media screen and (min-width: 768px) {
  .c-herohead.-homes {
    height: calc(100vh - 80px);
  }
}
.c-herohead.-homes .-head h1 {
  text-align: center;
}

/*
breadcrumbs
-----------------------------------------------------*/
.l-breadcrumbs {
  border-bottom: 1px solid #ddd;
  margin-bottom: 65px;
  background: #fff;
}
.l-breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  width: 96%;
  max-width: 980px;
  padding: 0.8em 0;
  margin: 0 auto;
}
.l-breadcrumbs ul li {
  display: inline-block;
  position: relative;
  color: #7c7c7c;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 1.3;
  padding-right: calc(0.6em + 1px);
}
@media screen and (min-width: 768px) {
  .l-breadcrumbs ul li {
    padding-right: 2em;
  }
}
.l-breadcrumbs ul li:not(:last-child):after {
  position: absolute;
  content: "";
  width: 1px;
  height: 1em;
  top: calc(50% - 0.5em);
  right: 0.3em;
  border-right: 1px solid #7c7c7c;
}
@media screen and (min-width: 768px) {
  .l-breadcrumbs ul li:not(:last-child):after {
    width: 0.5em;
    height: 0.5em;
    right: 0.85em;
    top: 0.4em;
    border-top: 1px solid #7c7c7c;
    transform: rotate(45deg);
  }
}
.l-breadcrumbs ul li a {
  display: block;
  color: #7c7c7c;
}
/*
localnav
-----------------------------------------------------*/
.c-localnav {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-localnav {
    display: none;
  }
}
.c-localnav ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 3em auto;
}
.c-localnav ul li a {
  display: block;
  color: #110e60;
  border: 1px solid #110e60;
  border-radius: 2em;
  font-weight: 700;
  padding: 0.5em;
  transition: all 0.3s;
}
.c-localnav ul li a:hover {
  color: #fff;
  background: #110e60;
}

/*
pagenav
-----------------------------------------------------*/
.wp-pagenavi {
  display: flex;
  gap: 0.5rem;
  margin: 0 auto;
  position: relative;
  width: 100%;
  margin-top: clamp(100px, 10.71vw + 17.8px, 172px);
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    width: 100%;
  }
}
.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .back {
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  color: #110e60;
  transition: 0.3s;
  text-decoration: none !important;
  border: 1px solid #333333;
  display: inline-block;
  width: 4em;
  height: 2em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi .current.current,
.wp-pagenavi .page.current,
.wp-pagenavi .back.current {
  background: #110e60;
  color: #fff;
}
.wp-pagenavi .current:hover,
.wp-pagenavi .page:hover,
.wp-pagenavi .back:hover {
  background: #110e60;
  border-color: #110e60;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .current,
  .wp-pagenavi .page,
  .wp-pagenavi .back {
    width: 160px;
    height: 3em;
  }
}
.wp-pagenavi .back {
  width: 100%;
  padding: 2em 3em;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .back {
    width: auto;
  }
}

/*
table
-----------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}
table th,
table td {
  font-size: clamp(1.125rem, 0vw + 1.125rem, 1.125rem);
  line-height: 1.3;
  font-weight: 400;
  border: 1px solid #dbdbdb;
  padding: 0.5em;
}
table thead th {
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background: #7abf85;
}
table thead td {
  text-align: center;
  vertical-align: middle;
}
table tbody th {
  background: #EFEFEF;
  white-space: nowrap;
}
table.-allcenter th,
table.-allcenter td {
  text-align: center;
}
table.-flex th,
table.-flex td {
  width: 100%;
  float: left;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  table.-flex th,
  table.-flex td {
    width: auto;
    float: none;
    margin-top: 0;
  }
}

.js-scrollable table {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .js-scrollable table {
    white-space: auto;
  }
}

/*
title
-----------------------------------------------------*/
.c-title.-h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-wrap-mode: nowrap;
  font-size: clamp(30px, 3.13vw + 20px, 44px);
  line-height: 1.3;
  margin-bottom: 58px;
}
@media screen and (min-width: 768px) {
  .c-title.-h2 {
    width: 90%;
    max-width: 1004px;
    margin: 0 auto;
    flex-direction: row;
    margin-bottom: 98px;
  }
}
.c-title.-h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: url("../img/common/bg_dots.svg") repeat-x;
}
.c-title.-h2 span {
  display: block;
  text-align: center;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .c-title.-h2 span {
    display: inline-block;
    margin: 0;
    white-space: nowrap;
    padding-right: 1em;
  }
}
.c-title.-h3 {
  text-align: center;
  color: #fff;
  font-size: clamp(21px, 1.12vw + 17.4px, 26px);
  line-height: 1.3;
  padding: 0.5em;
  background: #110e60;
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .c-title.-h3 {
    text-align: left;
    width: 90%;
    max-width: 1004px;
    margin: 0 auto;
    border-radius: 10px;
    margin-bottom: 1.8rem;
  }
}

/*
contactnav
-----------------------------------------------------*/
.c-contactnav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  text-align: center;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  font-size: clamp(12px, -0.83vw + 22.6px, 20px);
}
@media screen and (min-width: 1080px) {
  .c-contactnav {
    width: auto;
    writing-mode: vertical-rl;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.c-contactnav ul {
  display: flex;
  flex-direction: row;
  gap: 0;
}
@media screen and (min-width: 1080px) {
  .c-contactnav ul {
    flex-direction: row;
  }
}
.c-contactnav ul li {
  width: 100%;
}
.c-contactnav ul li a {
  display: block;
  color: #110e60;
  font-size: clamp(14px, 0.21vw + 13.3px, 16px);
  font-weight: 600;
  padding: 1em 1.5em;
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .c-contactnav ul li a {
    padding: 2em 1em;
  }
}
.c-contactnav ul li a:hover {
  color: #fff;
  background: #110e60;
}
.c-contactnav ul li a i {
  margin-right: 0.5rem;
}
@media screen and (min-width: 1080px) {
  .c-contactnav ul li a i {
    margin-right: 0;
    margin-bottom: 0.5em;
  }
}
.c-contactnav ul .-contact a {
  color: #fff;
  background: #000;
}
.c-contactnav ul .-catalog a {
  color: #fff;
  background: #333333;
}

.c-contactnav.is-show {
  opacity: 1;
  pointer-events: auto;
}

/*
modal
-----------------------------------------------------*/
/* モーダル中のスクロール禁止 */
body.is-modal-open {
  overflow: hidden;
  height: 100vh;
}

/* モーダルを開くボタン */
.modal-open {
  position: fixed;
  top: 50%;
  left: 50%;
  font-size: 16px;
  font-weight: bold;
  width: 300px;
  height: 60px;
  color: #fff;
  background: #000;
  border: none;
  cursor: pointer;
  translate: -50% -50%;
}

/* モーダルと背景の指定 */
.modal {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 0;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* モーダルの擬似要素の指定 */
.modal:before {
  content: none;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

/* モーダル内側の指定 */
.modal-container {
  position: relative;
  vertical-align: middle;
  width: 100%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 20px;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p {
  margin: 1em 0;
}

/*
instagram
-----------------------------------------------------*/
.c-instagram {
  padding-bottom: clamp(84px, 15.85vw + 33.3px, 155px);
}
.c-instagram h2 img {
  width: auto;
  height: 60px !important;
}
.c-instagram .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.c-instagram .c-list li {
  width: 32%;
  margin: 0.5% !important;
  box-sizing: border-box;
}
.c-instagram .c-list li:nth-child(n+7) {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-instagram .c-list li {
    width: 19%;
  }
  .c-instagram .c-list li:nth-child(n+7) {
    display: block;
  }
}
.c-instagram .c-list li img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
  aspect-ratio: 1/1;
}
.c-instagram .c-list li > div {
  height: 100%;
}
.c-instagram .c-list li > div a {
  height: 100%;
}
.c-instagram .c-list li .maskCap {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: hsla(0, 0%, 0%, 0.4);
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  pointer-events: none;
  transition: 0.3s;
  text-align: center;
}
.c-instagram .c-list li .maskCap p {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-instagram .c-list li .maskCap p a {
  color: #fff;
}
.c-instagram .c-list li .maskCap p i {
  vertical-align: baseline;
  font-size: 1em;
  margin-right: 0.1em;
}
.c-instagram .c-list li:hover .maskCap {
  opacity: 1;
}/*# sourceMappingURL=common.css.map */