@charset "UTF-8";
/* =====================================================
  0.0 - Foundation
===================================================== */
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Noto+Sans+JP:wght@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;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

body {
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-display: swap;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-size: clamp(0.875rem, 0.31vw + 0.8125rem, 1rem);
  line-height: clamp(2.5rem, 0vw + 2.5rem, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  background: #fff;
}

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

/*
footer
-----------------------------------------------------*/
.l-footer {
  padding-top: 50px;
  padding-bottom: 1em !important;
  background: #F2F2F2;
}
.l-footer .l-wrapper {
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer .l-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.l-footer .-logo {
  margin-bottom: 36px;
}
.l-footer .-logo img {
  width: 245px;
  margin: 0 auto;
}
.l-footer .-nav {
  margin-bottom: 50px;
}
.l-footer .-nav li {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer .-nav li {
    text-align: left;
  }
}
.l-footer .-nav li a {
  color: #707070;
  font-family: "EB Garamond", serif;
  font-size: 25px;
  line-height: 40px;
}
.l-footer .-sns {
  margin-bottom: 20px;
}
.l-footer .-sns img {
  width: 35px;
}
.l-footer .-copy {
  font-size: 12px;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .l-footer .-copy {
    width: 100%;
  }
}

/*
 header
-----------------------------------------------------*/
.l-header {
  position: sticky;
  top: 0;
  width: 100vw;
  height: clamp(5rem, 6.25vw + 3.75rem, 7.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.l-header .-logo {
  width: 223px;
}
.l-header .-hamburger {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .l-header .-hamburger {
    top: 35px;
    right: 35px;
  }
}
.l-header .-hamburger span {
  width: 100%;
  height: 1px;
  background-color: #707070;
  position: relative;
  transition: ease 0.4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}
.l-header .-hamburger span:nth-child(1) {
  top: 0;
}
.l-header .-hamburger span:nth-child(2) {
  margin: 8px 0;
}
.l-header .-hamburger span:nth-child(3) {
  top: 0;
}
.l-header .-hamburger.-active {
  transform: translateX(0);
}
.l-header .-hamburger.-active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.l-header .-hamburger.-active span:nth-child(2) {
  opacity: 0;
}
.l-header .-hamburger.-active span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}
.l-header .-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f2f2f2;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}
@media screen and (min-width: 768px) {
  .l-header .-nav {
    clip-path: circle(0% at calc(100% - 60px) 60px);
  }
}
.l-header .-nav.-active {
  clip-path: circle(150% at calc(100% - 40px) 40px);
}
@media screen and (min-width: 768px) {
  .l-header .-nav.-active {
    clip-path: circle(150% at calc(100% - 60px) 60px);
  }
}
.l-header .-nav .l-wrapper {
  max-width: 260px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-header .-nav ul {
  width: 260px;
  font-family: "EB Garamond", serif;
  color: #919191;
}
.l-header .-nav ul:nth-of-type(1) {
  font-size: clamp(2.25rem, 1.72vw + 1.90625rem, 2.9375rem);
  margin-bottom: 1.48em;
}
.l-header .-nav ul:nth-of-type(1) li:not(:last-child) {
  margin-bottom: 0.85em;
}
.l-header .-nav ul:nth-of-type(2) {
  margin-bottom: 50px;
}
.l-header .-nav ul:nth-of-type(2) li:nth-of-type(1) {
  margin-bottom: 60px;
}
.l-header .-nav ul:nth-of-type(2) li:nth-of-type(1) img {
  width: clamp(2.5rem, 1.56vw + 2.1875rem, 3.125rem);
}
.l-header .-nav ul:nth-of-type(2) li:nth-of-type(2) img {
  width: 260px;
}
.l-header .-nav ul:nth-of-type(3) {
  font-size: clamp(1rem, 0.63vw + 0.875rem, 1.25rem);
}

/*
main
-----------------------------------------------------*/
.l-main {
  padding-bottom: 110px;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-bottoom: 220px;
  }
}
.l-main.-page {
  padding-top: 65px;
}
@media screen and (min-width: 768px) {
  .l-main.-page {
    padding-top: 130px;
  }
}
.l-main h2 {
  text-align: center;
  font-size: 50px;
  font-family: "EB Garamond", serif;
  color: #919191;
  margin-bottom: 80px;
}
.l-main h3 {
  font-weight: bold;
  margin-bottom: 1rem;
}

#home .l-main.-page {
  padding-top: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*
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: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    width: 100%;
    max-width: 1004px;
  }
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
/*
c-section
-----------------------------------------------------*/
.c-section {
  /*----------concept----------*/
}
.c-section .l-wrapper {
  max-width: 834px;
}
.c-section dl {
  line-height: 1.5;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .c-section dl {
    margin-bottom: 160px;
  }
}
.c-section dl div {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .c-section dl div {
    flex-direction: row;
  }
  .c-section dl div dt {
    width: 8em;
  }
  .c-section dl div dd {
    width: calc(100% - 8em);
  }
}
.c-section .gmap_iframe iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.c-section .gmap_iframe .-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.c-section .gmap_iframe .-btn a {
  border: 1px solid #707070;
  padding: 0.5em 3em;
  transition: all 0.6s;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-section .gmap_iframe .-btn a {
    width: auto;
  }
}
.c-section .gmap_iframe .-btn a:hover {
  background: #707070;
  color: #fff;
}
.c-section table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
.c-section table th,
.c-section table td {
  display: block;
  width: 100%;
  font-size: clamp(1.125rem, 0vw + 1.125rem, 1.125rem);
  line-height: 1.3;
  font-weight: 400;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  .c-section table th,
  .c-section table td {
    display: table-cell;
    width: auto;
    vertical-align: middle;
  }
}
.c-section table thead th {
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background: #f5f5f5;
}
.c-section table thead td {
  text-align: center;
  vertical-align: middle;
}
.c-section table tbody th {
  background: #EFEFEF;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-section table tbody th {
    width: 30%;
  }
}
.c-section table tbody th span {
  padding: 0.1em 1em;
  margin-left: 2em;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  background: #FF3838;
  color: #fff;
  vertical-align: middle;
}
.c-section.-concept .-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .c-section.-concept .-img {
    aspect-ratio: auto;
    margin: 0 auto;
    width: 100%;
  }
}
.c-section.-concept .-img img {
  width: 300vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .c-section.-concept .-img img {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }
}
.c-section.-concept .-txt {
  text-align: center;
  font-size: 22px;
  line-height: 66px;
  padding: 220px 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-section.-concept .-txt {
    width: 70%;
  }
}

/*
fade
-----------------------------------------------------*/
.c-fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.c-fadein.-active {
  opacity: 1;
  transform: translateY(0);
}

/*
c-concept
-----------------------------------------------------*/
.c-concept .-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .c-concept .-img {
    aspect-ratio: auto;
    margin: 0 auto;
    width: 100%;
  }
}
.c-concept .-img img {
  width: 300vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .c-concept .-img img {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }
}
.c-concept .-txt {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
  text-align: center;
  font-size: 22px;
  line-height: 66px;
  padding: 220px 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-concept .-txt {
    width: 70%;
  }
}

/*
form
-----------------------------------------------------*/
.c-form table {
  margin-bottom: 3rem;
}
.c-form .-policy {
  max-width: 640px;
  margin: 5em auto;
  align-items: center !important;
  align-content: center;
}
.c-form .-acceptance {
  margin-bottom: 5em;
}
.c-form .-acceptance label {
  display: block;
  width: 8em;
  margin: 0 auto;
}
.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;
  display: 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: #707070;
  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 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;
  border: 1px solid #cdd6dd;
}
.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);
  font-weight: 400;
  padding: 0.8em;
  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);
  font-weight: 400;
  padding: 0.8em;
  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] {
  width: 100%;
  display: inline-block;
  cursor: pointer;
  color: #fff;
  font-size: clamp(1.25rem, 0vw + 1.25rem, 1.25rem);
  font-weight: 900;
  padding: 0.6em 0;
  border: 0;
  background: #707070;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .c-form input[type=submit], .c-form input[type=button],
  .c-form button[type=submit],
  .c-form button[type=button] {
    display: block;
    width: auto;
    padding: 0.6em 5em;
    margin: 0 auto;
  }
}
@media (hover: hover) {
  .c-form input[type=submit]:hover, .c-form input[type=button]:hover,
  .c-form button[type=submit]:hover,
  .c-form button[type=button]:hover {
    opacity: 0.7;
  }
}
.c-form input::-moz-placeholder, .c-form textarea::-moz-placeholder {
  color: #d0d0d0;
}
.c-form input::placeholder,
.c-form textarea::placeholder {
  color: #d0d0d0;
}
.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;
}

.wpcf7 {
  margin-top: 6rem;
}

/*
c-swiper
-----------------------------------------------------*/
.c-swiper {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-swiper {
    margin: 0 auto;
    width: 100%;
  }
}
.c-swiper .swiper-wrapper {
  margin-bottom: 50px;
}
.c-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: calc(100vh - 80px - 50px);
  min-height: 400px;
}
@media screen and (min-width: 768px) {
  .c-swiper .swiper-slide {
    margin: 0 auto;
    width: 100%;
    height: calc(100vh - 120px - 50px);
  }
}
.c-swiper .swiper-slide img {
  width: 300vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .c-swiper .swiper-slide img {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }
}
.swiper-pagination-bullet-active {
  background: #5d5d5d;
}

/*
items
-----------------------------------------------------*/
.c-items {
  padding-top: 70px;
  padding-bottom: 160px;
}
@media screen and (min-width: 768px) {
  .c-items {
    padding-top: 140px;
    padding-bottom: 320px;
  }
}
.c-items ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1%;
}
.c-items ul li {
  width: 49%;
  color: #707070;
  line-height: 1.6;
  margin-bottom: 3em;
}
.c-items ul li figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 460/686;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-items ul li figure figcaption {
  margin-top: 1em;
}
.c-items ul li figure figcaption span {
  display: block;
}

/*
instagram
-----------------------------------------------------*/
/*
  3.2 - Utility
-----------------------------------------------------*/
/*
u-shutter-animation
-----------------------------------------------------*/
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  text-align: center;
  color: #fff;
  transition: 0.5s;
  opacity: 1;
  visibility: visible;
}

#loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loading_logo img {
  width: 100%;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

#loading.active {
  opacity: 0;
  visibility: hidden;
}/*# sourceMappingURL=common.css.map */