@charset "UTF-8";
/* reset
----------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-Mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

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

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  width: 100%;
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #202020;
  background-color: #fff;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.l-main {
  position: relative;
  display: block;
  flex-grow: 1;
  overflow: hidden;
}

.l-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.l-inner {
  margin: 0 auto;
  width: 92%;
  max-width: 1200px;
}
.l-inner.-large {
  max-width: 1600px;
}
.l-inner.-fluid {
  width: 100%;
  max-width: 1920px;
}

/******************************
* utility
*******************************/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.u-en {
  font-family: "Noto Sans JP", sans-serif;
}

.u-min {
  font-weight: 700;
}

.u-tal {
  text-align: left;
}

.u-tac {
  text-align: center;
}

.u-tar {
  text-align: right;
}

.u-fwb {
  font-weight: 700;
}

.u-red {
  color: #FF0000;
}

.u-gray {
  color: #535a5b;
}

.u-theme-color {
  color: #023793;
}

.bg-white {
  background-color: #fff;
}

.bg-theme-color {
  background-color: #023793;
}

.bg-gray {
  background-color: #e6e6e6;
}

.bg-gray02 {
  background-color: #F2F2F2;
}

.br-sp {
  display: none;
}

.br-tab {
  display: none;
}

.br-pc {
  display: block;
}

@media (max-width: 960px) {
  .br-pc {
    display: none;
  }
  .br-tab {
    display: block;
  }
}
@media (max-width: 768px) {
  .br-sp {
    display: block;
  }
}
.u-num {
  font-family: "Oswald", sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px #202020;
  text-stroke: 1px #202020;
}

.u-gradation01 {
  display: inline-block;
  background-image: linear-gradient(45deg, rgb(217, 152, 64), rgb(215, 113, 133) 35%, rgb(135, 102, 172) 65%, rgb(65, 80, 177) 99%);
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(255, 255, 255, 0);
}

/******************************
* header
*******************************/
body:not(.home) .l-header {
  background-color: rgb(221, 231, 230);
}
@media (max-width: 768px) {
  body:not(.home) .l-header {
    background-color: white;
    background-color: rgb(221, 231, 230);
  }
}

.l-header {
  position: fixed;
  width: 100%;
  height: 65px;
  z-index: 100;
  transition: 0.3s height ease-in-out;
  transition-property: height, background-color;
  z-index: 100;
}
.l-header.is-fixed {
  height: 64px;
  background-color: white;
}
@media (max-width: 1400px) {
  .l-header {
    height: 60px;
  }
  .l-header.is-fixed {
    height: 60px;
  }
}
.l-header .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
  max-width: none;
  width: 100%;
}

.p-header__title {
  margin-right: 30px;
  margin-left: 4%;
  flex-shrink: 0;
  width: 135px;
}
@media (max-width: 1400px) {
  .p-header__title {
    width: 135px;
    padding-bottom: 0.5em;
  }
}
.p-header__title a {
  display: block;
}

.p-header__nav.-pc {
  height: inherit;
}
@media (max-width: 1400px) {
  .p-header__nav.-pc {
    display: none;
  }
}
.p-header__nav.-pc .p-gnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: inherit;
}
.p-header__nav.-pc .p-gnav__item {
  position: relative;
  border-left: 1px solid rgb(183, 192, 191);
}
.p-header__nav.-pc .p-gnav__item:first-child {
  border-left: none;
}
.p-header__nav.-pc .p-gnav__item:nth-child(6) {
  border-left: none;
}
.p-header__nav.-pc .p-gnav__link {
  position: relative;
  display: inline-block;
  padding: 0 1.25em;
  color: #202020;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.56;
  letter-spacing: 0.02em;
  text-align: center;
}
.p-header__nav.-pc .p-gnav__link:hover:not(.-contact)::after, .p-header__nav.-pc .p-gnav__link:focus:not(.-contact)::after, .p-header__nav.-pc .p-gnav__link:active:not(.-contact)::after {
  width: 80%;
}
.p-header__nav.-pc .p-gnav__link:not(.-contact)::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: 0.3s width ease-in-out;
}
.p-header__nav.-pc .p-gnav__link.-contact {
  margin-left: 1em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 65px;
  background: linear-gradient(90deg, #119844 0%, #3fd19e 50%, #119844);
  background-size: 200% auto;
  transition: 0.3s background ease-in-out;
}
.p-header__nav.-pc .p-gnav__link.-contact::before {
  content: "";
  display: inline;
  background-image: url(../img/common/contact-arrow.svg);
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.p-header__nav.-pc .p-gnav__link:hover.-contact {
  opacity: 1;
  background-position: right center;
}

.p-header__nav.-sp {
  display: none;
}

@media (max-width: 1400px) {
  .p-header__nav.-pc {
    display: none;
  }
  .p-header__nav.-sp {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 100px;
    background-color: #023793;
  }
  .p-header__nav.-sp .p-nav-logo {
    margin-top: 16px;
    margin-left: 4%;
    width: 135px;
  }
  .p-header__nav.-sp .p-gnav {
    margin-top: 20px;
    display: block;
    width: 100%;
    padding: 0 1em;
  }
  .p-header__nav.-sp .p-gnav {
    margin-top: 110px;
    display: block;
    width: 100%;
    padding: 0 2em;
  }
  .p-header__nav.-sp .p-gnav__item {
    width: 100%;
  }
  .p-header__nav.-sp .p-gnav__item:first-child {
    border-top: 1px solid #D8D8D8;
  }
  .p-header__nav.-sp .p-gnav__item:not(.-contact) {
    border-bottom: 1px solid #D8D8D8;
  }
  .p-header__nav.-sp .p-gnav__link {
    position: relative;
    display: block;
    color: #000;
    text-align: center;
    padding: 1.45em 0;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .p-header__nav.-sp .p-gnav__link:not(.-contact):before {
    content: "";
    position: absolute;
    right: 2em;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 0.5em;
    height: 0.5em;
    background: url(../img/common/arrow01.svg) no-repeat center/contain;
  }
  .p-header__nav.-sp .p-gnav__link:hover, .p-header__nav.-sp .p-gnav__link:focus, .p-header__nav.-sp .p-gnav__link:active {
    opacity: 0.6;
  }
  .p-header__nav.-sp .p-gnav__link.-contact {
    margin: 40px auto 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 48px;
    background: linear-gradient(90deg, #119844 0%, #3fd19e 100%);
    background-size: 200% auto;
    transition: 0.3s background ease-in-out;
  }
  .p-header__nav.-sp .p-gnav__link:hover.-contact {
    opacity: 1;
    background-position: right center;
  }
  .p-header__nav.-sp .p-gnav__link.-smileplan {
    padding-left: 0.5em;
    padding-right: 0.5em;
    width: 300px;
    height: 60px;
  }
  .l-header {
    position: fixed;
    top: 0%;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px;
    -webkit-backface-visibility: hidden;
  }
  .p-header__nav.-sp {
    position: fixed;
    top: 0;
    right: 0;
    color: #000;
    background-color: #fff;
    text-align: center;
    width: 100%;
    height: 100vh;
    transition: 0.3s ease-out 0s;
    transition-property: opacity, visibility;
    z-index: 100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
  }
  .is-drawerActive .p-header__nav.-sp {
    opacity: 1;
    visibility: visible;
  }
}
.p-hamburger {
  display: none;
}

@media (max-width: 1400px) {
  .p-hamburger {
    position: fixed;
    content: "";
    top: 5px;
    right: 2%;
    bottom: 0;
    left: auto;
    display: block;
    z-index: 101;
    outline: 0;
    border: 0;
    border-radius: 50%;
    background-color: transparent;
    width: 55px;
    height: 55px;
    transition: background-color 0.3s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .p-hamburger__line {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background 0.2s cubic-bezier(0.23, 1, 0.58, 1);
    margin: auto;
    border-radius: 0.25em;
    background-color: #000;
    width: 80%;
    height: 2px;
  }
  .p-hamburger__line:after,
.p-hamburger__line:before {
    display: block;
    position: absolute;
    content: "";
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1), top 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s;
    border-radius: inherit;
    background-color: inherit;
    width: 100%;
    height: 100%;
  }
  .p-hamburger__line:before {
    top: -14px;
  }
  .p-hamburger__line:after {
    top: 14px;
  }
  .is-drawerActive .p-hamburger::after {
    color: #000;
  }
  .is-drawerActive .p-hamburger__line {
    background-color: transparent;
  }
  .is-drawerActive .p-hamburger__line:after,
.is-drawerActive .p-hamburger__line:before {
    top: 0;
    background-color: #000;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s, top 0.2s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .is-drawerActive .p-hamburger__line:before {
    transform: rotate(-45deg);
  }
  .is-drawerActive .p-hamburger__line:after {
    transform: rotate(45deg);
  }
}
/*******************************
* common
******************************/
.c-text01 {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 768px) {
  .c-text01 {
    font-size: 15px;
  }
}
.c-text01 + .c-text01 {
  margin-top: 1.5em;
}

.c-text02 {
  font-size: 15px;
  line-height: 2;
}
@media (max-width: 768px) {
  .c-text02 {
    font-size: 14px;
  }
}
.c-text02 + .c-text02 {
  margin-top: 1.5em;
}

.c-text03 {
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .c-text03 {
    font-size: 14px;
  }
}
.c-text03 + .c-text03 {
  margin-top: 1.5em;
}

.c-text-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.048em;
}
@media (max-width: 768px) {
  .c-text-lead {
    font-size: 24px;
  }
}

.c-title01 {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-title01 .u-ja {
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background-image: linear-gradient(45deg, rgb(217, 152, 64), rgb(215, 113, 133) 35%, rgb(135, 102, 172) 65%, rgb(65, 80, 177) 99%);
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(255, 255, 255, 0);
}
@media (max-width: 768px) {
  .c-title01 .u-ja {
    font-size: 24px;
  }
}
.c-title01 .u-en {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .c-title01 .u-en {
    font-size: 15px;
  }
}

.c-title02 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0.04em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media (max-width: 768px) {
  .c-title02 {
    font-size: 20px;
  }
}

.c-button01 a {
  display: inline-block;
  padding: 0.5em 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.c-button01 a:hover span::before {
  background-position: right center;
}
.c-button01 span {
  position: relative;
  padding-right: 3.5em;
}
.c-button01 span::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  color: #fff;
  background: linear-gradient(90deg, #d99840 0%, #e4754d 10.1%, #e05669 20.2%, #c64789 30.5%, #9547a3 40.2%, #404fae 50%, #9547a3 70.5%, #c64789 80.2%, #e05669 90.1%, #e4754d 100%, #d99840);
  background-size: 200% auto;
  transition: 0.3s background ease-in-out;
  z-index: 0;
}
.c-button01 span:after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/arrow02_w.png) no-repeat center/7px 9px;
  z-index: 1;
}

.c-button02 a {
  display: block;
  padding: 0.75em 1em;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #119844 0%, #3fd19e 50%, #119844);
  background-size: 200% auto;
  transition: 0.3s background ease-in-out;
}
@media (hover: hover) {
  .c-button02 a:hover {
    background-position: right center;
  }
}
@media (hover: none) {
  .c-button02 a:active {
    background-position: right center;
  }
}

.c-button03 {
  max-width: 300px;
}
.c-button03 span {
  position: relative;
  text-align: center;
}
.c-button03 a {
  padding: 1em 1em;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(90deg, #d99840 0%, #e4754d 10.1%, #e05669 20.2%, #c64789 30.5%, #9547a3 40.2%, #404fae 50%, #9547a3 70.5%, #c64789 80.2%, #e05669 90.1%, #e4754d 100%, #d99840);
  background-size: 200% auto;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .c-button03 a {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .c-button03 a:hover {
    background-position: right center;
  }
  .c-button03 a:hover span::before {
    background-position: right center;
  }
}
@media (hover: none) {
  .c-button03 a:active {
    background-position: right center;
  }
  .c-button03 a:active span::before {
    background-position: right center;
  }
}
.c-button03 span {
  position: relative;
  padding-right: 3.5em;
  display: block;
}
.c-button03 span::before {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  content: "";
  display: block;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  color: #fff;
  background: linear-gradient(90deg, #571cc2 0%, 50%, #3c4fce 70.5%, 100%, #571cc2);
  background-size: 200% auto;
  transition: 0.3s background ease-in-out;
  z-index: 0;
}
.c-button03 span:after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/arrow02_w.png) no-repeat center/7px 9px;
  z-index: 1;
}

@media (max-width: 768px) {
  .c-button04 {
    margin-top: 18px;
  }
}
.c-button04 span {
  position: relative;
  text-align: center;
}
.c-button04 a {
  padding: 1em 1em;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(90deg, #25d484 0%, 50%, #31ddcb 70.5%, 100%, #25d484);
  background-size: 200% auto;
  border-radius: 40px;
  transition: 0.3s background ease-in-out;
}
@media (hover: hover) {
  .c-button04 a:hover {
    background-position: right center;
  }
  .c-button04 a:hover span::before {
    background-position: right center;
  }
}
@media (hover: none) {
  .c-button04 a:active {
    background-position: right center;
  }
  .c-button04 a:active span::before {
    background-position: right center;
  }
}
.c-button04 span {
  position: relative;
  padding-right: 2em;
  display: inline-block;
}
.c-button04 span:after {
  position: absolute;
  top: 50%;
  right: -1.5em;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/arrow02_w.png) no-repeat center/7px 9px;
  z-index: 1;
}

.c-button05 a {
  display: block;
  padding: 0.75em 1em;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #d99840 0%, #e4754d 10.1%, #e05669 20.2%, #c64789 30.5%, #9547a3 40.2%, #404fae 50%, #9547a3 70.5%, #c64789 80.2%, #e05669 90.1%, #e4754d 100%, #d99840);
  background-size: 200% auto;
}
@media (hover: hover) {
  .c-button05 a:hover {
    background-position: right center;
  }
}
@media (hover: none) {
  .c-button05 a:active {
    background-position: right center;
  }
}

.c-button06 a {
  display: block;
  padding: 0.25em 1em;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 2.08;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #d99840 0%, #e4754d 10.1%, #e05669 20.2%, #c64789 30.5%, #9547a3 40.2%, #404fae 50%, #9547a3 70.5%, #c64789 80.2%, #e05669 90.1%, #e4754d 100%, #d99840);
  background-size: 200% auto;
  border-radius: 40px;
}
.c-button06 a span {
  position: relative;
  padding-left: 1.25em;
}
.c-button06 a span:after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/top/event_arrow02.png) no-repeat left center/14px 14px;
  z-index: 1;
}
@media (hover: hover) {
  .c-button06 a:hover {
    background-position: right center;
  }
}
@media (hover: none) {
  .c-button06 a:active {
    background-position: right center;
  }
}

/***********************
* breadcrumb
************************/
.breadcrumb {
  position: relative;
  background-color: rgb(246, 250, 251);
}
.breadcrumb.single {
  position: relative;
  top: 60px;
}
.breadcrumb .l-inner {
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
}
.breadcrumb .l-inner ul {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb .l-inner ul li + li::before {
  content: ">";
  padding: 10px;
}

/***********************
* footer
************************/
.l-footer {
  padding: 162px 0 50px;
  background-color: rgb(221, 231, 230);
}
@media (max-width: 960px) {
  .l-footer {
    padding-top: 67px;
    padding-bottom: 50px;
  }
}

.footer-header {
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  width: 270px;
}
@media (max-width: 960px) {
  .footer-logo {
    margin: 0 auto;
    width: 226px;
  }
}
.footer-logo a {
  display: block;
}
@media (hover: hover) {
  .footer-logo a:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .footer-logo a:active {
    opacity: 0.8;
  }
}

.footer-btn-contact {
  margin-top: 30px;
  width: 261px;
}
@media (max-width: 960px) {
  .footer-btn-contact {
    display: none;
  }
}

.footer-wrap {
  margin-top: 62px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .footer-wrap {
    margin-top: 22px;
    flex-direction: column;
  }
}

.footer-left {
  width: 34%;
}
@media (max-width: 960px) {
  .footer-left {
    width: 100%;
  }
}

.footer-left-title {
  padding: 0.25em 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.56;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgb(183, 192, 191);
}

.footer-left-text {
  margin-top: 0.5em;
  padding-bottom: 3em;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.23;
  letter-spacing: 0.08em;
  color: rgb(183, 192, 191);
}
@media (max-width: 768px) {
  .footer-left-text {
    padding-bottom: 2em;
  }
}

.footer-right {
  width: 56%;
}
@media (max-width: 960px) {
  .footer-right {
    margin-top: 65px;
    width: 100%;
  }
}

.footer__copy {
  margin-top: 50px;
  text-align: right;
  font-size: 15px;
  line-height: 1.66;
  letter-spacing: 0.12em;
}
@media (max-width: 960px) {
  .footer__copy {
    text-align: left;
    font-size: 10px;
    line-height: 2;
  }
}

.footer-menu {
  width: 100%;
}
@media (max-width: 768px) {
  .footer-menu {
    margin-top: 0;
  }
}
.footer-menu li {
  border-bottom: 1px solid rgb(183, 192, 191);
}
.footer-menu li:first-child {
  border-top: 1px solid rgb(183, 192, 191);
}

.footer-menu__link {
  position: relative;
  display: block;
  color: #000;
  text-align: center;
  padding: 1.85em 0;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: 0.3s color ease-in-out;
}
@media (max-width: 960px) {
  .footer-menu__link {
    padding: 1.6em 0;
    font-size: 18px;
  }
}
.footer-menu__link span {
  position: relative;
  display: inline-block;
  padding-right: 2em;
}
@media (max-width: 960px) {
  .footer-menu__link span {
    padding-right: 1em;
  }
}
.footer-menu__link span:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 0.5em;
  height: 0.5em;
  background: url(../img/common/arrow01.svg) no-repeat center/contain;
}
@media (hover: hover) {
  .footer-menu__link:hover {
    color: #535a5b;
  }
}
@media (hover: none) {
  .footer-menu__link:active {
    color: #535a5b;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 24px;
}
@media (max-width: 960px) {
  .footer-bottom {
    justify-content: center;
    margin-top: 0;
  }
}

.footer-submenu {
  display: flex;
}
@media (max-width: 960px) {
  .footer-submenu {
    margin-top: 50px;
    flex-direction: column;
  }
}
.footer-submenu li {
  font-size: 16px;
  font-weight: 600;
  line-height: 3.5;
  letter-spacing: 0.08em;
}
@media (max-width: 960px) {
  .footer-submenu li {
    font-size: 13px;
  }
}
.footer-submenu li:not(:first-child) {
  margin-left: 2.5em;
}
@media (max-width: 960px) {
  .footer-submenu li:not(:first-child) {
    margin-left: 0;
  }
}
.footer-submenu li a:hover, .footer-submenu li a:active {
  color: #535a5b;
}

.footer-snsmenu {
  display: flex;
  margin-left: 1.5em;
}
@media (max-width: 960px) {
  .footer-snsmenu {
    margin-top: 45px;
  }
}
.footer-snsmenu li {
  width: 30px;
}
@media (max-width: 960px) {
  .footer-snsmenu li {
    width: 40px;
  }
}
.footer-snsmenu li:not(:first-child) {
  margin-left: 1.5em;
}
@media (max-width: 960px) {
  .footer-snsmenu li:not(:first-child) {
    margin-left: 2em;
  }
}
.footer-snsmenu li a:hover, .footer-snsmenu li a:active {
  opacity: 0.6;
}

/***********************
* page common
************************/
.c-kv-large {
  position: relative;
}
.c-kv-large.post-kv picture {
  display: block;
  position: relative;
  overflow: hidden;
}
.c-kv-large.post-kv picture::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 49%;
  height: 0;
}
@media (max-width: 960px) {
  .c-kv-large.post-kv picture::before {
    padding-top: 100.1333333333%;
  }
}
.c-kv-large.post-kv picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-kv-large__title {
  padding: 0.75em 1.75em;
  padding-left: min(13%, 200px);
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 52%;
  transform: translateY(-50%);
  font-size: 40px;
  letter-spacing: 0.24em;
  font-size: clamp(24px,2.5vw,40px);
  z-index: 10;
}
.c-kv-small {
  position: relative;
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .c-kv-small {
    height: 250px;
  }
}

.c-kv-small__title {
  padding: 0.75em 1.75em;
  padding-left: min(13%, 200px);
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 32px;
  letter-spacing: 0.12em;
  font-size: clamp(24px,2vw,32px);
  z-index: 10;
}
@media (max-width: 768px) {
  .c-kv-small__title {
    font-size: clamp(20px,6.4vw,24px);
  }
}

.c-fixed-reserve {
  position: absolute;
  right: 3.125%;
  bottom: -85px;
  z-index: 80;
  width: 170px;
  height: 170px;
  border-radius: 100%;
  background: linear-gradient(45deg, #d99840 0%, #e4754d 10.1%, #e05669 20.2%, #c64789 30.5%, #9547a3 40.2%, #404fae 50%, #9547a3 70.5%, #c64789 80.2%, #e05669 90.1%, #e4754d 100%, #d99840);
  background-size: 200% auto;
  background-position: left bottom;
  transition: 0.3s width cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-property: height, width, background, border-radius, top, right;
}
@media (hover: hover) {
  .c-fixed-reserve:hover {
    background-position: right center;
  }
}
@media (hover: none) {
  .c-fixed-reserve:active {
    background-position: right center;
  }
}
@media (max-width: 768px) {
  .c-fixed-reserve {
    bottom: -65px;
    width: 130px;
    height: 130px;
  }
}
.c-fixed-reserve.is-fixed {
  position: fixed;
  right: 0;
  top: 50%;
  width: 56px;
  height: 197px;
  border-radius: 0;
  background: linear-gradient(180deg, #d99840 0%, #e4754d 10.1%, #e05669 20.2%, #c64789 30.5%, #9547a3 40.2%, #404fae 50%, #9547a3 70.5%, #c64789 80.2%, #e05669 90.1%, #e4754d 100%, #d99840);
  background-size: auto 200%;
}
@media (hover: hover) {
  .c-fixed-reserve.is-fixed:hover {
    background-position: center left;
  }
}
@media (hover: none) {
  .c-fixed-reserve.is-fixed:active {
    background-position: center left;
  }
}
@media (max-width: 768px) {
  .c-fixed-reserve.is-fixed {
    top: auto;
    bottom: 0;
  }
}
.c-fixed-reserve.is-fixed .ct-visible {
  display: block;
}
.c-fixed-reserve.is-fixed .kv-visible {
  display: none;
}
.c-fixed-reserve a {
  display: block;
}
.c-fixed-reserve .kv-visible {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56.4705882353%;
}
.c-fixed-reserve .ct-visible {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: auto;
}

/***********************
* modal
***********************/
.mfp-auto-cursor .mfp-content {
  width: 90%;
  max-width: 760px;
  cursor: auto;
}

button.mfp-close, button.mfp-arrow {
  display: none;
}

.mfp-close-btn-in .mfp-close {
  display: none;
}

.js-mfp-youtube.mfp-close-btn-in .mfp-close {
  display: block;
  color: #2E4755;
}

.mfp-arrow:before {
  display: none;
}

.mfp-arrow:after {
  display: none;
}

.mfp-arrow-right:before {
  display: none;
}

.mfp-arrow-right:after {
  display: none;
}

.mfp-arrow-left:before {
  display: none;
}

.mfp-arrow-left:after {
  display: none;
}

.mfp-bg {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgb(0, 0, 0));
  opacity: 1;
}

.c-modal-prev, .c-modal-next {
  background: url("../img/common/modal_arrow_l.svg") no-repeat 0 0/contain;
  width: 30px;
  height: 30px;
}

.c-modal-next {
  background: url("../img/common/modal_arrow_r.svg") no-repeat 0 0/contain;
}

.c-modal-counter {
  margin: 0 1em;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
}

.c-modal-item {
  position: relative;
  margin: 0 auto;
  padding: 30px 10px;
  width: 100%;
  border-radius: 0px;
  background-color: #fff;
  border: 1px solid #000;
  max-width: 760px;
}

.c-modal-box-img {
  position: relative;
  margin: 0 auto;
  width: 85%;
}
@media (max-width: 768px) {
  .c-modal-box-img {
    width: 90%;
  }
}
.c-modal-box-img div {
  max-height: 597px;
  overflow: hidden;
  text-align: center;
}
.c-modal-box-img img {
  width: auto;
  max-width: 100%;
  text-align: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-modal-top {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

.c-modal-bottom {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 26px 15px 10px 15px;
}

.c-modal-close {
  position: absolute;
  right: 0;
  top: 20px;
  width: 71px;
  height: 71px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  align-self: flex-end;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  color: #000;
}
.c-modal-close span {
  display: block;
}
.c-modal-close span:nth-child(1) {
  position: absolute;
  top: 20px;
  height: 1px;
  width: 58px;
  background-color: #000;
  transform: rotate(45deg);
}
.c-modal-close span:nth-child(2) {
  position: absolute;
  top: 20px;
  height: 1px;
  width: 58px;
  background-color: #000;
  transform: rotate(135deg);
}
.c-modal-close span:nth-child(3) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  text-align: center;
}

/*************************
* input
*************************/
input, textarea, select {
  font-size: 16px;
}

.c-form-text {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  background-color: #F7F8FA;
  border-radius: 0;
  border: none;
  box-shadow: 0 0 0 1px #E7E7E7 inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-form-text:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #023793 inset;
}
.c-form-text.-half {
  max-width: 334px;
}
.c-form-text.-small {
  max-width: 3.5em;
}

.c-form-checkbox input[type=checkbox],
.c-form-radio input[type=radio] {
  position: relative;
  cursor: pointer;
  margin: 0;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  text-align: center;
  border: none;
}

.c-form-checkbox input[type=checkbox]::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f7f8fa;
  border: 1px solid #E7E7E7;
  border-radius: 5px;
}
.c-form-checkbox input[type=checkbox]::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  left: 0.5em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.4em;
  height: 0.65em;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0;
}

.c-form-radio input[type=radio]::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f7f8fa;
  border: 1px solid #E7E7E7;
  border-radius: 100%;
}
.c-form-radio input[type=radio]::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  width: 0.5em;
  height: 0.5em;
  background-color: #f7f8fa;
  opacity: 0;
}

.c-form-checkbox-text, .c-form-radiobox-text {
  margin-left: 0.5em;
}

.c-form-checkbox input[type=checkbox]:checked::before {
  background-color: #023793;
  border: 1px solid #E7E7E7;
  border-radius: 5px;
}

.c-form-radio input[type=radio]:checked::before {
  background-color: #023793;
  border: 1px solid #E7E7E7;
  border-radius: 100%;
}

.c-form-checkbox input[type=checkbox]:checked::after,
.c-form-radio input[type=radio]:checked::after {
  opacity: 1;
}

.c-form-checkbox input:focus,
.c-form-checkbox input:focus-visible {
  border: 1px solid #023793;
  border-radius: 5px;
}

.c-form-radio input:focus,
.c-form-radio input:focus-visible {
  border: 1px solid #023793;
  border-radius: 100%;
}

.c-form-select {
  position: relative;
}
.c-form-select:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(135deg);
  pointer-events: none;
}
.c-form-select select {
  height: 2.4em;
  width: 100%;
  padding: 0 8px;
  border: none;
  background-color: #F7F8FA;
  border-radius: 0;
  box-shadow: 0 0 0 1px #E7E7E7 inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  color: inherit;
}
.c-form-select select::-ms-expand {
  display: none;
}
.c-form-select select select:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #023793 inset;
}

.c-form-textarea {
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px 16px;
  border: none;
  background-color: #F7F8FA;
  border-radius: 0;
  box-shadow: 0 0 0 1px #E7E7E7 inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  resize: vertical;
}
.c-form-textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #023793 inset;
}

button[type=submit],
input[type=button],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=submit].c-form-submit-button, input[type=button].c-form-submit-button {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  border: 1px solid rgba(2, 55, 147, 0);
  color: #fff;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
  transition-property: background;
  padding: 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: linear-gradient(90deg, #119844 0%, #3fd19e 50%, #119844);
  background-size: 200% auto;
}
@media (hover: hover) {
  input[type=submit].c-form-submit-button:hover, input[type=button].c-form-submit-button:hover {
    background-position: right center;
  }
}
@media (hover: none) {
  input[type=submit].c-form-submit-button:active, input[type=button].c-form-submit-button:active {
    background-position: right center;
  }
}

.c-form-submit__wrap {
  display: flex;
}
@media (max-width: 960px) {
  .c-form-submit__wrap {
    flex-direction: column-reverse;
  }
}

.p-contact-text__caution {
  font-size: 1.4rem;
}

.p-contact-text__caution02 {
  margin-top: 48px;
}

.p-contact__form {
  margin-top: 35px;
}
.p-contact__form .is-required::after {
  content: "※";
  margin-left: 0.5em;
  display: inline-block;
  color: inherit;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.p-contact__form__row {
  display: flex;
  align-items: flex-start;
}
.p-contact__form__row + .p-contact__form__row {
  margin-top: 48px;
}
@media (max-width: 960px) {
  .p-contact__form__row {
    flex-direction: column;
  }
}

.p-contact__form__head {
  max-width: 220px;
  width: 100%;
  flex-shrink: 0;
  margin-right: 1em;
}
.p-contact__form__head.-top {
  align-self: flex-start;
}
@media (max-width: 960px) {
  .p-contact__form__head {
    margin-right: 0;
    max-width: 100%;
  }
}
.p-contact__form__head.p-col-name {
  margin-left: 56px;
  max-width: 110px;
}
@media (max-width: 960px) {
  .p-contact__form__head.p-col-name {
    margin-top: 48px;
    margin-left: 0;
    max-width: 100%;
  }
}

.p-contact__form__body {
  width: 100%;
}
@media (max-width: 960px) {
  .p-contact__form__body {
    margin-top: 20px;
  }
}

.p-contact__form__body__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.p-contact__form__body__row span {
  display: inline-block;
  padding: 0 0.5em;
}

.p-form-contact__check label {
  margin-right: 48px;
}
@media (max-width: 960px) {
  .p-form-contact__check label {
    display: block;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.p-form-agree {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.p-form-agree a {
  text-decoration: underline;
}

.p-form-agree__check .c-form-checkbox-name {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.p-contact-submit__wrap {
  margin: 72px auto 0;
  max-width: 620px;
}
@media (max-width: 960px) {
  .p-contact-submit__wrap {
    max-width: 234px;
  }
}
.p-contact-submit__wrap .c-form-submit-button:nth-child(2) {
  margin-left: 30px;
}
@media (max-width: 960px) {
  .p-contact-submit__wrap .c-form-submit-button:nth-child(2) {
    margin-left: 0;
  }
}
@media (max-width: 960px) {
  .p-contact-submit__wrap .c-form-submit-button:nth-child(1) {
    margin-top: 30px;
    margin-left: 0;
  }
}

.p-contact-submit__wrap > .c-form-submit-button {
  max-width: 234px;
  width: 100%;
}

.mw_wp_form_confirm .c-form-select::before {
  display: none;
}
.mw_wp_form_confirm .p-form-agree__text {
  display: none;
}
.mw_wp_form_confirm .p-form-agree__text02 {
  display: none;
}
.mw_wp_form_confirm .p-form-agree {
  display: none;
}
.mw_wp_form_confirm .postal-search {
  display: none;
}

.mw_wp_form_confirm .p-contact-text__caution,
.mw_wp_form_complete .p-contact-text__caution {
  display: none;
}
.mw_wp_form_confirm .p-form-agree__text02,
.mw_wp_form_complete .p-form-agree__text02 {
  display: none;
}

/************************
*column
*************************/
.c-column-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 92%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 56px;
}
@media (max-width: 960px) {
  .c-column-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 12px;
  }
}

.c-column-item {
  position: relative;
  background-color: #F2F2F2;
  display: block;
}
.c-column-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 1px;
  width: 100%;
  background-image: linear-gradient(90deg, rgb(217, 152, 64), rgb(215, 113, 133) 35%, rgb(135, 102, 172) 65%, rgb(65, 80, 177) 99%);
}
.c-column-item:focus .c-column-item-thumb img {
  transform: scale(1.2);
}
@media (hover: hover) {
  .c-column-item:hover .c-column-item-thumb img {
    transform: scale(1.2);
  }
}
@media (hover: none) {
  .c-column-item:active img {
    transform: scale(1.2);
  }
}

.c-column-item-thumb {
  position: relative;
  overflow: hidden;
}
.c-column-item-thumb::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 69.2307692308%;
}
.c-column-item-thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
}

.c-column-item-body {
  padding: 2em 2em;
}
@media (max-width: 960px) {
  .c-column-item-body {
    padding: 1em 1em;
  }
}
.c-column-item-body .title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.46;
}
@media (max-width: 960px) {
  .c-column-item-body .title {
    font-size: 13px;
    line-height: 1.39;
  }
}
.c-column-item-body .tag {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.66;
}
@media (max-width: 960px) {
  .c-column-item-body .tag {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.53;
  }
}
.c-column-item-body .tag li {
  margin-right: 1em;
}
.c-column-item-body .date {
  margin-top: 55px;
  font-size: 10px;
  line-height: 1.7;
}
@media (max-width: 960px) {
  .c-column-item-body .date {
    margin-top: 10px;
  }
}

/*************************
* animation
**************************/
.js-animation[data-type=fadeIn] {
  visibility: hidden;
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, visibility;
}

.js-animation[data-type=fadeIn].is-show {
  visibility: visible;
  opacity: 1;
}

.js-animation[data-type=fadeInLeft] {
  transform: translate(-30px, 0);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInLeft].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=fadeInRight] {
  transform: translate(30px, 0);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInRight].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=fadeInUp] {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInUp].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/*************************
* pagination
**************************/
.c-pagination .navigation.pagination {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .c-pagination .navigation.pagination {
    margin-top: 80px;
  }
}
.c-pagination .navigation.pagination .screen-reader-text {
  display: none;
}
.c-pagination .navigation.pagination .nav-links {
  text-align: center;
}
.c-pagination .navigation.pagination .nav-links .page-numbers {
  display: inline-block;
  margin: 0 2px;
  padding: 1em 0.5em;
  min-width: 3em;
  color: #B7B7B7;
  border: 1px solid rgba(244, 244, 244, 0);
  transition: background-color 0.5s ease-in-out;
  transition-property: background-color, color;
  text-align: center;
}
.c-pagination .navigation.pagination .nav-links .page-numbers:focus, .c-pagination .navigation.pagination .nav-links .page-numbers:active, .c-pagination .navigation.pagination .nav-links .page-numbers:hover {
  color: #4D4D4D;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.current {
  color: #4D4D4D;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev {
  padding: 0.5em 0em;
  color: #fff;
  background-color: #F4F4F4;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next:focus, .c-pagination .navigation.pagination .nav-links .page-numbers.next:active, .c-pagination .navigation.pagination .nav-links .page-numbers.next:hover,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:focus,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:active,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:hover {
  opacity: 0.6;
}
.c-pagination #arrow_left {
  width: 8px;
  height: 8px;
}
.c-pagination #arrow_right {
  width: 8px;
  height: 8px;
}
.c-pagination.works-header .navigation.pagination {
  margin-top: 0;
}
.c-pagination.works-header .navigation.pagination .nav-links {
  text-align: right;
}
@media (max-width: 768px) {
  .c-pagination.works-header .navigation.pagination .nav-links {
    text-align: center;
  }
}

.c-txt-nodata {
  margin: 50px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
}
@media (max-width: 768px) {
  .c-txt-nodata {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.37;
  }
}

/*****************
*photo-gallery
******************/
.photo-gallery {
  padding: 45px 0 65px;
  border-top: 1px solid #D5D5D5;
  border-bottom: 1px solid #D5D5D5;
}
@media (max-width: 768px) {
  .photo-gallery {
    padding: 50px 0 60px;
  }
}

.photo-gallery-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .photo-gallery-title {
    font-size: 18px;
  }
}

.photo-gallery-nodata {
  margin: 35px auto 0;
}

.photo-gallery-wrap {
  margin: 35px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 24px;
  max-width: 896px;
}
@media (max-width: 960px) {
  .photo-gallery-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .photo-gallery-wrap {
    grid-template-columns: repeat(2, 1fr);
    width: 92%;
  }
}
.photo-gallery-wrap a {
  position: relative;
  width: 100%;
}
.photo-gallery-wrap a::before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  transition: 0.3s opacity ease-in-out;
  z-index: 1;
}
.photo-gallery-wrap a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 27px;
  height: 27px;
  background: url(../img/modelhouse/icon_zoom.svg);
  opacity: 0;
  transition: 0.3s opacity ease-in-out;
  z-index: 2;
}
.photo-gallery-wrap .thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.photo-gallery-wrap .thumb::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
.photo-gallery-wrap .thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo-gallery-wrap.-modelhouse .thumb::before {
  padding-top: 65.625%;
}
@media (hover: hover) {
  .photo-gallery-wrap a:hover::before {
    opacity: 1;
  }
  .photo-gallery-wrap a:hover::after {
    opacity: 1;
  }
}
@media (hover: none) {
  .photo-gallery-wrap a:active::before {
    opacity: 1;
  }
  .photo-gallery-wrap a:active::after {
    opacity: 1;
  }
}