@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #13264C;
  --gray: #444444;
  --red: #DA8FA0;
  --blue: #608AB0;
  --dblue: #14264B;
  --orange: #F1BF9D;
  --font: "Zen Kaku Gothic New", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

* {
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: var(--black);
  font-family: var(--font);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
  background: url(../img/common/bg.png);
  background-repeat: repeat;
  background-size: contain;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

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

p {
  margin: 0;
  line-height: 1.625;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

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

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

/***************************

foundation/_animation.scss

***************************/
.mv_fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.mv_title.mv_fadeUp {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
    ボンッ、ヒュッ
    ===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
    じわっ
    ===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

@-webkit-keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.textSlideIn {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideIn.is-animated {
  -webkit-animation-name: textSlideIn;
          animation-name: textSlideIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.textSlideDown {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideDown.is-animated {
  -webkit-animation-name: textSlideDown;
          animation-name: textSlideDown;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
            clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
            clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

@keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
            clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
            clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}
.clipPathTrigger {
  opacity: 0;
}

.clipPathTrigger.is-animated {
  -webkit-animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
          animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
}

/***************************

layout/_header.scss

***************************/
.header.-is-fixed {
  z-index: 999;
  background-color: var(--white);
}
.header.-is-fixed .header__logo a {
  flex-direction: row;
}
@media screen and (min-width: 769px) {
  .header.-is-fixed .header__logo {
    padding-left: 30px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

.header_wrap {
  position: relative;
}

.header__logo {
  padding-left: 15px;
  padding-right: 15px;
  line-height: 1;
  padding-bottom: 10px;
}
.header__logo a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 0 5px;
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
}

.header__nav_toggle_bar {
  position: relative;
  margin: 8px 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--black);
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  position: absolute;
  content: "";
}

.header__nav_toggle_bar {
  width: 30px;
}

.header__nav_toggle_bar::after {
  width: 30px;
}

.header__nav_toggle_bar::before {
  top: -8px;
}

.header__nav_toggle_bar::after {
  top: 8px;
}

.header__nav_toggle_title {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  padding-top: 5px;
  width: 4em;
  white-space: nowrap;
}

.header__nav_toggle_title:before {
  content: "MENU";
  font-weight: bold;
  color: var(--black);
}

.header.-is-open .header__nav_toggle_bar {
  background-color: transparent;
}

.header.-is-open .header__nav_toggle_bar::before {
  transform: translateY(8px) rotate(135deg);
}

.header.-is-open .header__nav_toggle_bar::after {
  transform: translateY(-8px) rotate(-135deg);
  width: 30px;
}

.header.-is-open .header__nav_toggle_title:before {
  content: "CLOSE";
}

.header {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.header__nav_item i {
  font-weight: 400;
  color: var(--white);
  background: var(--black);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 5px;
}

.header__nav_form {
  width: 100%;
  max-width: 170px;
}
@media screen and (min-width: 769px) {
  .header__nav_form {
    width: 100%;
    max-width: 257px;
  }
}

.header.-is-fixed .header__nav_contact {
  margin-bottom: -10px;
}
@media screen and (min-width: 769px) {
  .header.-is-fixed .header__nav_contact {
    margin-bottom: -40px;
  }
}

.header__nav_contact {
  color: var(--white);
  letter-spacing: 0.06em;
  width: 100%;
  max-width: 85px;
  z-index: 7;
  transition: all 0.5s;
  border-radius: 0 0 5px 5px;
  padding: 15px 0 10px;
  position: relative;
}
.header__nav_contact::before {
  content: "";
  background: url(../img/common/bg.png) repeat center center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .header__nav_contact {
    padding: 30px 0 20px;
    max-width: 128px;
  }
}
.header__nav_contact.--tel {
  background: var(--red);
  border-right: 1px solid #ffffff;
}
.header__nav_contact.--mail {
  background: var(--blue);
}
.header__nav_contact a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 11px;
  padding: 5px;
  line-height: 1.5;
}
.header__nav_contact a span {
  border: 1px solid var(--white);
  border-radius: 9px;
  line-height: 1;
  padding: 2px 5px;
  margin-top: 5px;
  font-size: 9px;
}
@media screen and (min-width: 769px) {
  .header__nav_contact a {
    font-size: 16px;
  }
  .header__nav_contact a span {
    font-size: 10px;
    padding: 2px 10px;
  }
}

.header__nav {
  padding-right: 15px;
}

.header__nav_item a {
  position: relative;
}
.header__nav_item a::before {
  background: var(--black);
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 4px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.5s;
}
.header__nav_item a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.header__right_wrap {
  width: 100%;
  max-width: calc(100% - 300px);
  justify-content: flex-end;
}

@media screen and (min-width: 769px) {
  .header__nav_toggle {
    display: none;
  }
  .header__nav_list {
    gap: 0 30px;
  }
}
.header__nav_item a {
  padding: 10px 0;
}

@media screen and (max-width: 768px) {
  .header__logo {
    z-index: 10;
    width: 100%;
    max-width: 200px;
    margin-right: auto;
  }
  .header__nav {
    max-width: min(100%, 280px);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    z-index: 6;
    transition: 0.5s;
  }
  .header.-is-open .header__nav {
    height: 100vh;
    position: absolute;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
    padding-right: 0;
  }
  .header__nav_list {
    flex-direction: column;
    margin: 5px 0 0 0;
    padding: 0 30px;
    text-align: left;
    position: relative;
    top: 120%;
    transform: translateY(-120%);
    opacity: 0;
  }
  .header.-is-open .header__nav_list {
    opacity: 1;
    top: 25%;
    transform: translateY(-25%);
  }
  .header__nav_item a {
    opacity: 0;
    visibility: hidden;
  }
  .header.-is-open .header__nav_item a {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
  }
}
@media screen and (max-width: 450px) {
  .header__logo {
    z-index: 10;
    width: 100%;
    max-width: 150px;
    margin-right: auto;
  }
}
/***************************

layout/_footer.scss

***************************/
/*////////////////////////

footer

////////////////////////*/
.js-pagetop {
  font-size: 20px;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 500;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

.js-pagetop a {
  display: block;
  color: var(--white);
  transition: all 0.5s;
  background: var(--black);
  border-radius: 50%;
}
.js-pagetop a:hover {
  opacity: 1;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
}

.footer {
  background: #F6F5F4;
}

.footer__nav_wrapper {
  background: var(--white);
  border-radius: 10px;
  padding: 40px 20px;
  margin-bottom: -50px;
  position: relative;
  z-index: 2;
  gap: 10px;
}
@media screen and (min-width: 769px) {
  .footer__nav_wrapper {
    align-items: center;
    padding: 40px 45px;
  }
}

.footer__address_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer__logo a {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__address_title {
  font-weight: bold;
  letter-spacing: 0.02em;
}

.footer__address_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.footer_bg {
  background: var(--black);
  border-radius: 35px 35px 0 0;
  padding: 100px 0 100px;
}
@media screen and (min-width: 769px) {
  .footer_bg {
    padding: 100px 0 50px;
  }
}

.footer__copyright {
  color: var(--white);
  text-align: center;
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 400;
}

/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  font-family: "Montserrat Alternates", serif;
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 2.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #38ACEF;
  opacity: 1;
  border-radius: 50%;
}
@media screen and (min-width: 1101px) {
  .wp-pagenavi a,
.wp-pagenavi span {
    width: 60px;
    height: 60px;
    line-height: 4;
    font-size: 16px;
  }
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  line-height: 4.5;
}

.wp-pagenavi span.current {
  color: #38ACEF;
  cursor: default;
  background: #E6F8FF;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }
  .wp-pagenavi .extend + .larger {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .wp-pagenavi a,
.wp-pagenavi span {
    width: 40px;
  }
}
.pager {
  margin: 20px 0 100px 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto;
  }
}
/***************************

layout/_breadcrumbs.scss

***************************/
.l-breadcrumbs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 15px;
  font-size: 12px;
}
.l-breadcrumbs a {
  color: #fff;
  display: block;
}

.l-breadcrumbs__item {
  position: relative;
}
.l-breadcrumbs__item:not(:first-of-type) {
  padding-left: 20px;
}
.l-breadcrumbs__item:not(:first-of-type):after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 8px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}
.l-breadcrumbs__item:last-of-type {
  pointer-events: none;
  text-decoration: none;
}

.l-pageTitle .l-breadcrumbs {
  position: absolute;
  bottom: 0;
  left: 0;
}

.breadcrumbs_content {
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 5;
  background-color: #fff;
  padding: 10px 30px;
  padding-bottom: 0;
  padding-right: 40px;
  border-radius: 12px 0 0 0;
}
@media screen and (max-width: 768px) {
  .breadcrumbs_content {
    width: 85%;
  }
}
@media screen and (max-width: 450px) {
  .breadcrumbs_content {
    width: 85%;
    padding: 10px 15px;
    padding-bottom: 0;
    padding-right: 10px;
  }
}

.breadcrumbs {
  font-size: 15px;
  font-weight: bold;
  color: #999999;
}
@media screen and (max-width: 450px) {
  .breadcrumbs {
    font-size: 14px;
  }
}

.breadcrumbs li:before {
  content: "／";
  margin: 0 10px;
  color: #999999;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs a {
  color: #444444;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  color: #999999;
}

/***************************

layout/_page-title.scss

***************************/
.title01 {
  font-size: 28px;
  letter-spacing: 0.02em;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title01_fukidashi {
  background: var(--black);
  color: var(--white);
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 13px 20px;
  line-height: 1.3;
  border-radius: 5px;
  position: relative;
  margin-bottom: 10px;
}
.title01_fukidashi::before {
  content: "";
  background: var(--black);
  width: 14px;
  height: 10px;
  display: block;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/***************************

object/component/_box.scss

***************************/
.container_l {
  max-width: 1370px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_m {
  max-width: 1330px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_s {
  max-width: 1110px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

/***************************

object/component/_button.scss

***************************/
.btn01 {
  font-size: 10px;
  font-weight: bold;
  color: var(--black);
  border-radius: 27px;
  background: var(--white);
  border: 1px solid var(--black);
  padding: 13px 40px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 230px;
  position: relative;
  transition: all 0.5s;
}
.btn01 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 13px;
  height: 13px;
  background: var(--black);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
.btn01:hover {
  color: #fff;
  background: var(--black);
  opacity: 1;
}
.btn01:hover i {
  background: var(--white);
  color: var(--black);
}

.btn02 {
  font-size: 16px;
  color: var(--white);
  border-radius: 34px;
  font-weight: 500;
  padding: 19px 40px;
  display: block;
  text-align: center;
  gap: 10px;
  width: 100%;
  max-width: 345px;
  position: relative;
}
.btn02:hover {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .btn02 {
    padding-left: 65px;
  }
  .btn02::before {
    content: "";
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .btn02::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    z-index: 5;
  }
}
.btn02.--tel {
  background: var(--red);
  border: 1px solid var(--red);
}
.btn02.--tel::after {
  background: url(../img/top/ico_tel.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.btn02.--tel:hover {
  color: var(--red);
  background: var(--white);
  border: 1px solid var(--red);
}
.btn02.--tel:hover::before {
  background: var(--red);
}
.btn02.--tel:hover::after {
  background: url(../img/top/ico_tel-w.png);
}
.btn02.--mail {
  background: var(--blue);
  border: 1px solid var(--blue);
}
.btn02.--mail::after {
  background: url(../img/top/ico_mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 15px;
  left: 32px;
}
.btn02.--mail:hover {
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--blue);
}
.btn02.--mail:hover::before {
  background: var(--blue);
}
.btn02.--mail:hover::after {
  background: url(../img/top/ico_mail-w.png);
}

/***************************

object/object/project/_home.scss

***************************/
.top_mv {
  padding-top: 100px;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .top_mv {
    padding-top: 150px;
    gap: 10px;
    flex-direction: row;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.top_mv_img {
  width: 100%;
  max-width: 600px;
}
@media screen and (min-width: 769px) {
  .top_mv_img {
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (min-width: 1024px) {
  .top_mv_img {
    max-width: 55%;
  }
}
@media screen and (min-width: 1300px) {
  .top_mv_img {
    max-width: 816px;
  }
}
@media screen and (min-width: 1500px) {
  .top_mv_img {
    margin-right: 0;
  }
}
.top_mv_img img {
  border-radius: 20px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .top_mv_img img {
    border-radius: 0;
  }
}

.top_mv_fukidashi {
  background: var(--black);
  color: var(--white);
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 10px 20px;
  line-height: 1.3;
  border-radius: 5px;
  position: relative;
  margin-bottom: 20px;
}
.top_mv_fukidashi::before {
  content: "";
  background: var(--black);
  width: 14px;
  height: 10px;
  display: block;
  position: absolute;
  bottom: -9px;
  left: 20px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.top_mv_wrap p {
  padding-left: 10px;
}

.top_mv_contactbox {
  margin-top: 10px;
  display: flex;
  gap: 5px;
  align-items: flex-end;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 540px) {
  .top_mv_contactbox {
    flex-direction: row;
  }
}

.top_mv_textbox {
  width: 100%;
}

.sec_access {
  padding-top: 75px;
}

.movie_wrap {
  width: 100%;
  max-width: 828px;
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .movie_wrap {
    max-width: 45%;
  }
}
.movie_wrap video {
  width: 100%;
}
.movie_wrap img {
  width: 100%;
}
.movie_wrap .sp {
  display: block;
}
@media screen and (min-width: 769px) {
  .movie_wrap .sp {
    display: none;
  }
}
.movie_wrap .pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .movie_wrap .pc {
    display: block;
  }
}

.access_deco {
  position: absolute;
  bottom: -10px;
  left: -10px;
  z-index: 2;
  width: 100%;
  max-width: 150px;
}
.access_deco img {
  width: auto;
}
@media screen and (min-width: 960px) {
  .access_deco {
    max-width: 100%;
    bottom: -60px;
    left: -60px;
  }
}

.sec_flow {
  padding-top: 100px;
}
@media screen and (min-width: 769px) {
  .sec_flow {
    padding-top: 135px;
  }
}

.slider-wrapper {
  display: flex;
  overflow: hidden;
  gap: 20px;
  padding-top: 60px;
}
@media screen and (min-width: 769px) {
  .slider-wrapper {
    padding-top: 80px;
  }
}

.slider_list {
  -webkit-animation: scroll-left 30s infinite linear 0.8s both;
          animation: scroll-left 30s infinite linear 0.8s both;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.slider_item {
  width: calc(50vw + 20px);
  background: #F8F6F3;
  padding: 10px;
  border-radius: 29px;
}
@media screen and (min-width: 769px) {
  .slider_item {
    width: 25vw;
  }
}
.slider_item img {
  display: block;
  width: 100%;
  border-radius: 25px;
}

/* CSSアニメーション */
@-webkit-keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.sec_map {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (min-width: 769px) {
  .sec_map {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.map {
  width: 100%;
  max-width: 518px;
}
.map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 259/240;
}

.map_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #E0DED6;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  margin-top: 30px;
  gap: 30px 20px;
}
@media screen and (min-width: 769px) {
  .map_wrap {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .map_wrap {
    padding: 90px;
  }
}

.list_type01_list {
  width: 100%;
  max-width: 575px;
}

.list_type01_item {
  border-bottom: 1px dotted #AAAAAA;
  padding: 10px 0;
}
@media screen and (min-width: 1024px) {
  .list_type01_item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
  }
}

.list_type01_title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.link_map {
  color: #F1BF9D;
  font-size: 16px;
  font-weight: 500;
}

.link_bd {
  border-bottom: 1px solid #F1BF9D;
}

.sec_contact {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #F6F5F4;
}
@media screen and (min-width: 769px) {
  .sec_contact {
    padding-top: 165px;
    padding-bottom: 120px;
  }
}

.service-flow {
  width: 100%;
}

.service-flow_item {
  width: 100%;
  position: relative;
  background: url(../img/common/bg.png) repeat center center;
  background-color: var(--white);
  border: 1px solid #E0DED6;
  border-radius: 20px;
  padding: 45px 50px;
  display: flex;
  align-items: center;
  gap: 20px 30px;
}

.service-flow_item:not(:last-child) {
  margin-bottom: 50px;
}

.service-flow_item:not(:last-child):after {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  background: url(../img/common/bg.png) repeat center center;
  background-color: var(--white);
  border: 1px solid #E0DED6;
  border-left: none;
  border-top: none;
  border-radius: 5px;
  bottom: -13px;
  left: 50%;
  translate: -50% 0;
  rotate: 45deg;
}

.service-flow_item .num {
  position: absolute;
  top: -15px;
  left: 25px;
  z-index: 2;
}

.service-flow_item .icn {
  width: 120px;
}

.service-flow_item .text {
  width: calc(100% - 150px);
}

.service-flow_item .text h4 {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .top05 {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .t-service-block {
    margin-bottom: 60px;
  }
  .service-content {
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .service-content_item {
    padding: 30px 25px;
  }
  .service-flow_item {
    padding: 30px 25px;
  }
  .service-flow_item:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  .service-flow_item {
    flex-wrap: wrap;
  }
  .service-flow_item .icn {
    width: 100%;
    text-align: center;
  }
  .service-flow_item .text {
    width: 100%;
  }
}
.btn_list {
  gap: 10px 25px;
  margin-top: 10px;
}
.btn_list li {
  width: 100%;
  max-width: 345px;
}

.contact-formWrap {
  max-width: 580px;
  width: 100%;
  margin: 50px auto 0;
}

.contact-form {
  width: 100%;
  margin-bottom: 40px;
}

.contact-form-block {
  width: 100%;
}

.contact-form-block:not(:last-child) {
  margin-bottom: 50px;
}

.contact-form-block dt {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-left: 55px;
  margin-bottom: 10px;
}

.contact-form-block dt:before {
  position: absolute;
  display: inline-block;
  width: 42px;
  content: "任意";
  font-size: 1.4rem;
  text-align: center;
  border-radius: 3px;
  background: url(../img/common/bg.png) repeat center center;
  background-color: #ccc;
  color: #fff;
  line-height: 1;
  padding: 5px 0;
  left: 0;
  top: 3px;
}

.contact-form-block dt.req:before {
  content: "必須";
  background-color: #DA8FA0;
}

.contact-form-block input[type=text],
.contact-form-block input[type=email],
.contact-form-block input[type=tel] {
  width: 100%;
  height: 60px;
  padding: 15px 20px;
  background: url(../img/common/bg.png) repeat center center;
  background-color: #fff;
  border-radius: 6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  border: none;
}

.contact-form-block textarea {
  width: 100%;
  height: 290px;
  padding: 15px 20px;
  background: url(../img/common/bg.png) repeat center center;
  background-color: #fff;
  border-radius: 6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  border: none;
}

.contact-form-block input::-moz-placeholder, .contact-form-block textarea::-moz-placeholder {
  font-size: 1.8rem;
  color: #D8D8D8;
}

.contact-form-block input::placeholder,
.contact-form-block textarea::placeholder {
  font-size: 1.8rem;
  color: #D8D8D8;
}

.privacy-block {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.privacy-check input[type=checkbox] {
  display: none;
}

.privacy-check .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding: 0 0 0 40px;
  cursor: pointer;
  line-height: 2;
  font-size: 2rem;
  line-height: 1.4;
}

.privacy-check .wpcf7-list-item-label {
  font-weight: 500;
  display: inline-block;
}

.privacy-check .wpcf7-list-item-label::after,
.privacy-check .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.3s;
}

.privacy-check .wpcf7-list-item-label::after {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #F0EFE7;
  border-radius: 0;
}

.privacy-check .wpcf7-list-item-label::before {
  left: 5px;
  top: 3px;
  transform: rotate(-45deg);
  margin-top: 0;
  width: 20px;
  height: 10px;
  background: transparent;
  border-left: 3px solid #5D86AB;
  border-bottom: 3px solid #5D86AB;
  border-radius: 0;
  opacity: 0;
  z-index: 1;
  transition: all 0.6s;
}

.privacy-check input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}

.privacy-check .wpcf7-list-item-label {
  height: 30px;
}

.popupBtn {
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 5;
}

.popupBtn {
  color: #5F87AD;
  text-decoration: underline;
  transition: all 0.5s;
  display: inline-block;
}

.popupBtn:hover {
  cursor: pointer;
  text-decoration: underline;
  opacity: 0.5;
}

.contact-submit {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin: 45px auto 0;
}

.contact-submit:after {
  position: absolute;
  content: "\ea54";
  font-family: "remixicon";
  width: 16px;
  height: 16px;
  font-size: 1.5rem;
  background: #fff;
  border-radius: 100%;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  right: 25px;
  top: 50%;
  translate: 0 -50%;
}

.contact-submit input {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  background: var(--black);
  border: none;
  border-radius: 40px;
  padding: 25px 50px;
}

.contact-submit input:hover {
  cursor: pointer;
}

.privacy-content-block {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(70, 67, 61, 0.7);
  z-index: 999;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.privacy-content-block.show {
  opacity: 1;
}

.privacy-content-body {
  position: relative;
  max-width: 1000px;
  width: 100%;
  padding-top: 50px;
}

.privacy-content-close {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  font-size: 2.4rem;
  color: #fff;
  background: url(../img/common/bg.png) repeat center center;
  background-color: var(--black);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
}

.privacy-content-close:hover {
  cursor: pointer;
  opacity: 0.8;
}

.privacy-content-inner {
  width: 100%;
  max-height: 80svh;
  background: url(../img/common/bg.png) repeat center center;
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  .contact-formWrap {
    margin-top: 30px;
  }
  .contact-form {
    margin-bottom: 25px;
  }
  .contact-form-block:not(:last-child) {
    margin-bottom: 30px;
  }
  .contact-submit {
    margin-top: 20px;
  }
}
.sp425 {
  display: none;
}

@media screen and (max-width: 425px) {
  .sp425 {
    display: block;
  }
}
/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

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

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: col;
}

.flex-col-rev {
  flex-direction: col-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.flex-item {
  flex: 0 1 auto;
}

.flex-item0 {
  flex: 0 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

/***************************

object/utility/_text.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

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

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

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

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }
  .t-left_pc {
    text-align: left;
  }
  .t-right_pc {
    text-align: right;
  }
}
.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fz-10 {
  font-size: 10px;
}

.fz-11 {
  font-size: 11px;
}

.fz-12 {
  font-size: 12px;
}

.fz-13 {
  font-size: 13px;
}

.fz-14 {
  font-size: 14px;
}

.fz-15 {
  font-size: 15px;
}

.fz-16 {
  font-size: 16px;
}

.fz-17 {
  font-size: 17px;
}

.fz-18 {
  font-size: 18px;
}

.fz-19 {
  font-size: 19px;
}

.fz-20 {
  font-size: 20px;
}

.fz-21 {
  font-size: 21px;
}

.fz-22 {
  font-size: 22px;
}

.fz-23 {
  font-size: 23px;
}

.fz-24 {
  font-size: 24px;
}

.fz-25 {
  font-size: 25px;
}

.fz-26 {
  font-size: 26px;
}

.fz-27 {
  font-size: 27px;
}

.fz-28 {
  font-size: 28px;
}

.fz-29 {
  font-size: 29px;
}

.fz-30 {
  font-size: 30px;
}

.fz-31 {
  font-size: 31px;
}

.fz-32 {
  font-size: 32px;
}

.fz-33 {
  font-size: 33px;
}

.fz-34 {
  font-size: 34px;
}

.fz-35 {
  font-size: 35px;
}

.fz-36 {
  font-size: 36px;
}

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

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

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--gray {
  color: var(--black);
}

.fc--black {
  color: var(--black);
}

.fc--red {
  color: var(--red);
}

.txtdeco-none {
  text-decoration: none;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

/***************************

object/utility/_font.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.vertical {
  writing-mode: vertical-rl;
}
/*# sourceMappingURL=style.css.map */