/*///////////////
// Default
///////////////*/

/*html, body {
  height: 100%;
  overflow: hidden;
}

.is-fullscreen {
  height: 100vh;
  overflow: hidden;
}*/

a, button {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  cursor: pointer;
}

a:hover, button:hover {
  opacity: 0.8;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  color: var(--color_bg);
}

img {
  vertical-align: middle;
  max-width: 100%;
}

::-webkit-input-placeholder {
  color: #888888;
}

::-moz-placeholder {
  color: #888888;
}

:-ms-input-placeholder {
  color: #888888;
}

::-ms-input-placeholder {
  color: #888888;
}

::placeholder {
  color: #888888;
}

/*///////////////
// Layout
///////////////*/

.l-body {
  width: 100%;
  background-color: var(--color_bg);
  color: var(--color_main);
  line-height: var(--line_height);
  letter-spacing: var(--letter_spacing);
  font-family: var(--font_family);
  font-weight: 400;
  opacity: 1;
  /*overflow: hidden;*/
}

.l-header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 5;
  background: var(--bg_header);
}

@media screen and (max-width: 960px) {
  .l-header {
      top:0;
    padding: 0 8px 0 20px;
  }
}
.l-header.is-fixed {
  position: fixed;
  top: 0;
}

.l-footer {
  color: var(--color_footer);
  background: var(--bg_footer);
}

.l-main.is-second {
  padding-top: 68px;
}

@media screen and (max-width: 960px) {
  .l-main.is-second {
    padding-top: 53px;
  }
}
.l-content {
  height: 100%;
}

.l-content__s {
  max-width: var(--size_content--s);
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 960px) {
  .l-content__s {
    padding: 0 20px;
  }
}
.l-content__m {
  max-width: var(--size_content--m);
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 960px) {
  .l-content__m {
    padding: 0 20px;
  }
}
.l-content__l {
  /*max-width: var(--size_content--l);*/
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 960px) {
  .l-content__l {
    padding: 0 20px;
  }
}
.l-content__full {
  max-width: var(--size_content--full);
  margin: 0 auto;
  padding: 0;
}

.l-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 72px;
  padding-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .l-cart {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 0 20px 60px;
  }
}
.l-page {
  padding-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .l-page {
    padding: 0 20px 60px;
  }
}
.l-contact {
  padding-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .l-contact {
    padding: 0 20px 60px;
  }
}
.l-blog {
  padding-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .l-blog {
    padding: 0 20px 60px;
  }
}
.l-article {
  padding-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .l-article {
    padding: 0 20px 60px;
  }
}

/*///////////////
// Project
///////////////*/
.p-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 50px;
  font-family: var(--font_family--en);
}

@media screen and (max-width: 960px) {
  .p-header {
    padding: 0;
  }
}
.p-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 40px;
  max-width: 220px;
}

@media screen and (max-width: 960px) {
  .p-header__logo {
    position: relative;
    z-index: 6;
    max-width: 180px;
    width: 46%;
    padding-right: 0;
    top: 2px;
  }
}
.p-header__logo img {
  width: 100%;
  height: auto;
}

.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 0;
}

@media screen and (max-width: 960px) {
  .p-header__right {
    gap: 0;
    padding: 0 0;
  }
}
.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 24px 0 24px 0;
}

@media screen and (max-width: 960px) {
  .p-header__nav {
    opacity: 0;
    visibility: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    -webkit-transition-duration: 0.6s;
            transition-duration: 0.6s;
    padding: 0;
  }
}
.p-header__nav.is-active {
  opacity: 1;
  visibility: inherit;
}

.p-header__nav.is-active .p-header__sp {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  opacity: 1;
  visibility: inherit;
}

@media screen and (max-width: 960px) {
  .p-header__sp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    color: var(--color_main);
    background: var(--color_bg);
    overflow: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-transition-duration: 0.8s;
            transition-duration: 0.8s;
    padding-bottom: 40px;
    opacity: 0;
    visibility: hidden;
  }
}
.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

@media screen and (max-width: 960px) {
  .p-header__list {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-left: 0;
    padding: 120px 20px 60px;
  }
}
.p-header__global {
  margin-top: 60px;
  margin-bottom: 20px;
  padding: 0 20px;
  text-align: right;
      margin-left: auto;
}
.p-header__global li {
  margin: 12px 0;
  width: 100%;
  font-size: 16px;
}
.p-header__global li a {
  color: #555;
}
.p-header__overlay {
  display: none;
}

@media screen and (max-width: 960px) {
  .p-header__overlay {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
  }
}
.p-header__ham {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 50px;
  height: 50px;
  padding: 0;
  cursor: pointer;
  z-index: 6;
}

@media screen and (min-width: 960px) {
  .p-header__ham {
    display: none;
  }
}
.p-header__hamBorder {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-header__hamBorder span {
  position: absolute;
  display: inline-block;
  left: 50%;
  height: 1px;
  background: var(--color_hamburger);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  width: 50%;
  height: 1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-header__hamBorder span:first-child {
  top: calc(50% - 3px);
}

.p-header__hamBorder span:nth-child(2) {
  bottom: calc(50% - 3px);
  right: 0;
}

.p-header__ham.is-active .p-header__hamBorder span:first-child {
  top: calc(50% + 6px);
  -webkit-transform: rotate(32deg) translate(-50%, -50%);
          transform: rotate(32deg) translate(-50%, -50%);
  border-radius: 0;
}

.p-header__ham.is-active .p-header__hamBorder span:nth-child(2) {
  bottom: calc(50% + 6px);
  -webkit-transform: rotate(-32deg) translate(-50%, -50%);
          transform: rotate(-32deg) translate(-50%, -50%);
  border-radius: 0;
}

.p-header__item {
  position: relative;
  font-size: 16px;
}

@media screen and (max-width: 960px) {
  .p-header__item {
    width: 100%;
    font-size: 28px;
  }
}
.p-header__item a {
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .p-header__item a {
    position: relative;
  }
}
.p-header__item a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 960px) {
  .p-header__item a:hover {
    opacity: 0.8;
  }
}
.p-contact {
  padding: 0 40px;
}

@media screen and (max-width: 960px) {
  .p-contact {
    padding: 0 20px;
  }
}
.p-contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 100px 0 100px 40px;
  border-top: 1px solid var(--color_border);
}

@media screen and (max-width: 960px) {
  .p-contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 36px 0;
  }
}
.p-contact__ttl {
  width: 40%;
  font-size: 72px;
  line-height: 1;
  font-family: var(--font_family--en);
  white-space: nowrap;
}
@media screen and (max-width: 1300px) {
  .p-contact__ttl {
    width: 50%;
    font-size: 60px;
  }
}
@media screen and (max-width: 960px) {
  .p-contact__ttl {
    width: 100%;
    font-size: 36px;
    line-height: 1;
  }
}
.p-contact__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .p-contact__info {
    flex-direction: column;
    align-items: flex-end;
    width: 50%;
    gap: 32px;
  }
}
@media screen and (max-width: 960px) {
  .p-contact__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
    gap: 32px;
  }
}
.p-contact__info .c-btn {
  padding: 6px 40px 3px;
  font-size: 14px;
  font-family: var(--font_family--en);
  letter-spacing: 0.05em;
}

@media screen and (max-width: 960px) {
  .p-contact__info .c-btn {
    padding: 6px 40px 2px;
  }
}
.p-contact__info p {
  font-size: 14px;
  line-height: 2.4;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .p-contact__info p {
    font-size: 13px;
    line-height: 2.2;
  }
}
.p-footer {
  padding: 0 40px;
}
@media screen and (max-width: 960px) {
  .p-footer {
    padding: 0 20px;
  }
}
.p-footer__inner {
  padding: 72px 0;
  border-top: 1px solid var(--color_border);
}

@media screen and (max-width: 960px) {
  .p-footer__inner {
    padding: 32px 0;
  }
}
.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.p-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  font-size: 16px;
  font-family: var(--font_family--en);
}

@media screen and (max-width: 960px) {
  .p-footer__list {
    display: none;
  }
}
.p-footer__item {
  line-height: 1.4;
}
.p-footer__item a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 960px) {
  .p-footer__item a:hover {
    opacity: 0.8;
  }
}
.p-footer__btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 1300px) {
  .p-footer__btm {
    gap: 20px;
  }
}
.p-
@media screen and (max-width: 960px) {
  .p-footer__btm {
    gap: 20px;
  }
}
.p-footer__global {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 44px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  color: #555;
  font-family: var(--font_family--en);
}
@media screen and (max-width: 1300px) {
  .p-footer__global {
    gap: 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-footer__global {
    display: none;
  }
}
.p-footer__copy {
  color: #555;
  font-size: 14px;
  font-family: var(--font_family--en);
}

@media screen and (max-width: 960px) {
  .p-footer__copy {
    font-size: 12px;
  }
}
.p-form {
  padding: 64px 0 34px;
}
@media screen and (max-width: 960px) {
  .p-form {
    padding: 40px 0;
  }
}
.p-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 960px) {
  .p-form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.p-form__item .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.p-form__btm {
  font-size: min(7.2vw,100px);
  text-align: center;
  width: 100vw;
  line-height: 1.1;
  margin: 0 calc(50% - 50vw);
  margin-top: 40px !important;
  font-family: "Tai Heritage Pro", serif;
  color: #eee;
  letter-spacing: -0.02em;
}
.p-form .welltake {
  display: block;
  max-width: 480px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 960px) {
  .p-form .welltake {
  max-width: 80%;
  margin: 0 auto 20px;
  }
}
.p-form .welltake img {
  width: 100%;
}
.wpcf7-response-output {
  margin: 60px 0 80px;
  text-align: center;
  color: #E26666;
}
@media screen and (max-width: 960px) {
  .wpcf7-response-output {
    margin: 30px 0 40px;
    text-align: center;
    color: #E26666;
    font-size: 14px;
  }
}
.p-form__item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-width: 200px;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .p-form__item label {
    min-width: inherit;
    margin-top: 0;
    font-size: 14px;
  }
}
.p-form__required {
  width: 50px;
  margin-left: 20px;
  margin-top: 2px;
  padding: 1px 12px;
  color: #E26666;
  border: 1px solid #E26666;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  .p-form__required {
      padding: 0 12px 1px;
  }
}
.p-form__item input[type=text],
.p-form__item input[type=tel],
.p-form__item input[type=email],
.p-form__item input[type=password] {
  width: 100%;
  height: 60px;
  padding: 20px;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  background: #FBFBFB;
  color: var(--color_main);
}

.p-form__item select {
  width: 100%;
  height: 60px;
  padding: 0 24px;
  background-color: #FBFBFB;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  color: #000;
  background-image: url(../img/icon-select.svg);
  background-size: 12px;
  background-position: calc(100% - 28px) center;
  background-repeat: no-repeat;
  font-size: 16px;
  color: var(--color_main);
  font-weight: 400;
}

@media screen and (max-width: 960px) {
  .p-form__item select {
    background-position: calc(100% - 20px) center;
    background-size: 10px;
  }
}
.p-form__item textarea {
  width: 100%;
  height: 180px;
  padding: 24px;
  border: 0;
  background: #FBFBFB;
  font-size: 16px;
  font-weight: 400;
  color: var(--color_main);
}

@media screen and (max-width: 960px) {
  .p-form__item textarea {
    height: 240px;
  }
}
.p-form__consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.p-form__consentTxt {
  font-size: 16px;
}

.p-form__consentTxt a {
  text-decoration: underline;
}

.p-form__link {
  text-align: center;
  font-size: 12px;
  font-family: var(--font_family--en);
  letter-spacing: 0.06em;
}

@media screen and (max-width: 960px) {
  .p-form__link {
    font-size: 12px;
    text-align: left;
  }
}
.p-form__link a {
  text-decoration: underline;
}

.p-form__check {
  align-items: center;
  gap: 28px;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .p-form__check {
    align-items: flex-start;
    margin-top: -40px;
    margin-bottom: 40px;
  }
}
.p-form__check input {
  display: none;
}

.p-form__check .p-form__consentTxt {
  position: relative;
  margin-top: 0;
  padding-left: 32px;
  cursor: pointer;
  font-weight: 400;
  min-width: inherit;
  width: inherit;
  margin-left: 13px;
}
@media screen and (max-width: 960px) {
  .p-form__check .p-form__consentTxt {
      padding-left: 32px;
      margin-left: 0;
  }
}
.p-form__check .p-form__consentTxt a {
  text-decoration: underline;
}

.p-form__check .p-form__consentTxt:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #eee;
}

@media screen and (max-width: 960px) {
  .p-form__check .p-form__consentTxt:before {
    top: 3px;
  }
}
.p-form__check .p-form__consentTxt:after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 5px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--color_main);
  border-bottom: 2px solid var(--color_main);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
}

@media screen and (max-width: 960px) {
  .p-form__check .p-form__consentTxt:after {
    top: 9px;
  }
}
.p-form__check input:checked + .p-form__consentTxt:after {
  opacity: 1;
}

.p-form__privacy {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 960px) {
  .p-form__privacy {
    font-size: 13px;
  }
}
.p-form__privacy a {
  text-decoration: underline;
}

.p-form__submit {
  width: 320px;
  height: 80px;
  margin: 40px auto 0;
  border-radius: 0;
}

@media screen and (max-width: 960px) {
  .p-form__submit {
    height: 72px;
    width: 100%;
  }
}
.p-form__submit input {
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 28px;
  background: #888;
  font-size: 16px;
  color: #fff;
  border: 0;
  cursor: pointer;
  background: #888;
  border-radius: 0;
}

@media screen and (max-width: 960px) {
  .p-form__submit input {
    font-size: 14px;
  }
}
.p-form__submit input:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.p-page {
  padding: 40px 0 100px;
}

@media screen and (max-width: 960px) {
  .p-page {
    padding: 40px 0 60px;
  }
}
.p-page h2 {
  margin: 40px 0;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .p-page h2 {
    margin: 40px 0 16px;
  }
}
.p-page h3 {
  margin: 28px 0 8px;
  font-size: 14px;
  font-weight: 400;
}

.p-page p {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .p-page p {
    font-size: 13px;
  }
}
.p-page ul {
  margin: 10px 0 20px;
  list-style: disc;
  padding-left: 1em;
  text-indent: 0.3em;
}

.p-page ul li {
  margin: 0;
  text-indent: 0;
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  ..p-page ul li {
    font-size: 13px;
  }
}
.p-page a {
  text-decoration: underline;
}

/*///////////////
// Compornent
///////////////*/
.c-contTtl {
  margin-bottom: 32px;
  padding: 0;
  font-size: 22px;
  line-height: 1.2;
  font-family: var(--font_family--en);
}

@media screen and (max-width: 960px) {
  .c-contTtl {
    margin-bottom: 32px;
    font-size: 19px;
  }
}
.c-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 44px;
}

@media screen and (max-width: 960px) {
  .c-sort {
    margin-top: 60px;
    gap: 0;
    width: 100%;
  }
}
.c-sort__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

@media screen and (max-width: 960px) {
  .c-sort__item {
    width: 100%;
    height: 100%;
  }
}
.c-sort__item select {
  width: 200px;
  height: 45px;
  padding: 0 50px 0 0;
  border: 0;
  border-bottom: 1px solid var(--color_main);
  color: var(--color_main);
  text-align: left;
  font-size: 16px;
  background-image: url(../img/icon-select.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: 100% center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media screen and (max-width: 960px) {
  .c-sort__item select {
    width: 100%;
    max-width: 100%;
    height: 44px;
    opacity: 1;
    background-size: 10px;
    font-size: 14px;
    background-position: calc(100% - 12px) center;
  }
}
@media screen and (max-width: 960px) {
  .c-sort__item dd {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .c-sort__item dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 14px 20px;
    text-align: center;
    background-color: var(---color_bg);
    background-image: url(../assets/icon-select.svg);
    background-position: calc(100% - 20px) center;
    background-repeat: no-repeat;
    background-size: 10px;
    font-size: 13px;
  }
}
.c-pageTtl {
  padding: 0 50px;
  color: var(--color_main);
  font-family: var(--font_family--en);
}

@media screen and (max-width: 960px) {
  .c-pageTtl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
  }
}
.c-pageTtl__inner {
  width: 100%;
  padding: 160px 0 0px;
  /*border-bottom: 1px solid var(--color_border);*/
}

@media screen and (max-width: 960px) {
  .c-pageTtl__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 140px 0 20px;
    gap: 40px;
    border-bottom: 0;
  }
}
.c-pageTtl__inner--detail {
  padding: 160px 0 40px;
}
@media screen and (max-width: 960px) {
  .c-pageTtl__inner--detail {
    padding: 140px 0 40px;
  }
}
.c-pageTtl__flex--pc {
  display: flex;
  justify-content: space-between;
  gap: 40;
}
@media screen and (max-width: 960px) {
  .c-pageTtl__flex--pc {
    display: none;
  }
}
.c-pageTtl__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
}

@media screen and (max-width: 960px) {
  .c-pageTtl__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0px;
  }
}
.c-pageTtl__vertical {
  flex-direction: column;
  align-items: center;
  gap: 80px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .c-pageTtl__vertical {
  gap: 60px;
  }
}
.c-pageTtl__vertical .c-pageTtl__desc {
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .c-pageTtl__vertical .c-pageTtl__desc {
  justify-content: flex-start;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  }
}
.c-pageTtl__second {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-bottom: 0;
  padding: 160px 0 20px;
}

@media screen and (max-width: 960px) {
  .c-pageTtl__second {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 160px 0 20px;
    text-align: left;
  }
}
.c-pageTtl__second .c-pageTtl__top {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .c-pageTtl__second .c-pageTtl__top {
    text-align: left;
  }
}
.c-pageTtl__top .c-btn {
  width: 140px;
  padding: 4px 40px 1px;
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .c-pageTtl__top .c-btn {
    display: none;
  }
}
.c-pageTtl__start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-pageTtl__center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 960px) {
  .c-pageTtl__center {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-pageTtl__main {
  position: relative;
  top: 8px;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font_family--en);
}

@media screen and (max-width: 960px) {
  .c-pageTtl__main {
    font-size: 38px;
    top: 0;
  }
}
.c-pageTtl__inner--detail .c-pageTtl__main {
  font-size: 40px;
}

@media screen and (max-width: 960px) {
  .c-pageTtl__inner--detail .c-pageTtl__main {
    font-size: 22px;
  }
}
.c-pageTtl__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 50%;
  font-size: 16px;
  line-height: 2.2;
}

@media screen and (max-width: 960px) {
  .c-pageTtl__desc {
    width: 100%;
    margin: 60px 0 32px;
    font-size: 13px;
  }
}
.c-pageTtl__cat {
  position: relative;
  top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 12px;
  color: var(--color_note);
}

@media screen and (max-width: 960px) {
  .c-pageTtl__cat {
    top: -7px;
    margin-top: 28px;
    gap: 6px 12px;
    font-size: 11px;
  }
}
.c-pageTtl__corp {
  display: block;
  margin-top: 50px;
  font-size: 14px;
  color: #555;
}

@media screen and (max-width: 960px) {
  .c-pageTtl__corp {
    margin-top: 12px;
  }
}
@media screen and (max-width: 960px) {
  .c-pageTtl__btn {
    display: inline-block;
    color: var(--color_bg);
        background: var(--color_main);
        border-radius: 40px;
    margin-top: 20px;
    padding: 7px 40px 3px;
    font-size: 14px;
  }
}
.p-contact__info .c-btn {
  padding: 5px 40px 3px;
  font-size: 14px;
}
@media screen and (max-width: 960px) {
  .p-contact__info .c-btn {
    padding: 6px 40px 3px;
  }
}
.p-co
.c-form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  font-size: 14px;
  color: var(--color_main);
  background: var(--color_bg);
}

.c-form__btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.c-form__cancel {
  text-align: center;
  font-size: 14px;
  text-decoration: underline;
}

.c-pagenavi {
  margin-top: 40px;
  padding-left: 360px;
}

@media screen and (max-width: 960px) {
  .c-pagenavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px auto;
    padding-left: 0;
    padding: 0 20px;
  }
}
.c-pagenavi__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 24px;
  color: var(--color_bg);
}

@media screen and (max-width: 960px) {
  .c-pagenavi__list {
    gap: 20px;
  }
}
.c-pagenavi__list span, .c-pagenavi__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  padding-top: 2px;
  padding-left: 1px;
  border: 1px solid var(--color_bg);
  border-radius: 32px;
  font-size: 14px;
}

@media screen and (max-width: 960px) {
  .c-pagenavi__list span, .c-pagenavi__list a {
    width: 26px;
    height: 26px;
    padding-top: 1px;
    border-radius: 26px;
    font-size: 12px;
  }
}
.c-pagenavi__list span {
  color: var(--color_main);
  background: var(--color_bg);
}

.c-pagenavi__list a {
  color: rgb(170, 170, 170);
  background: var(--color_main);
  border: 1px solid rgb(170, 170, 170);
}

.c-btn {
  padding: 5px 24px 2px;
  color: var(--color_bg);
  background: var(--color_main);
  border: 1px solid var(--color_main);
  border-radius: 40px;
  font-size: 16px;
}

@media screen and (max-width: 960px) {
  .c-btn {
    font-size: 14px;
  }
}

.c-btn__bd {
  color: var(--color_main);
  background: inherit;
  border: 1px solid var(--color_main);
}

/*///////////////
// Utility
///////////////*/
.u-pc {
  display: block;
}

@media screen and (max-width: 960px) {
  .u-pc {
    display: none;
  }
}
.u-pc__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 960px) {
  .u-pc__flex {
    display: none;
  }
}
.u-pc__inline {
  display: inline;
}

@media screen and (max-width: 960px) {
  .u-pc__inline {
    display: none;
  }
}
.u-sp {
  display: none;
}

@media screen and (max-width: 960px) {
  .u-sp {
    display: block;
  }
}
.u-sp__flex {
  display: none;
}

@media screen and (max-width: 960px) {
  .u-sp__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-sp__inline {
  display: none;
}

@media screen and (max-width: 960px) {
  .u-sp__inline {
    display: inline;
  }
}

.js-up > span {
  display: inline-block;
  line-height: 1.2;
  /*overflow: hidden;*/
}

.js-up span span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 14px;
}

@media screen and (max-width: 960px) {
  .wpcf7-not-valid-tip {
    font-size: 14px;
  }
}
