@charset "UTF-8";
/*=============================================
* body
*=============================================*/
body {
  background: #FFFAF1;
  color: #333;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  position: relative;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 28px;
  }
}

/*=============================================
* <main>
*=============================================*/
main {
  background: url("../img/common/body-deco.png") no-repeat left calc(50% - 85px) top 650px;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  main {
    background: transparent;
  }
}

/*=============================================
* <header>
*=============================================*/
header {
  display: flex;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  box-sizing: border-box;
}

header .logo {
  flex: 1 0 0;
}

header .logo a {
  display: block;
  width: 270px;
}

.hamburger {
  display: none;
}

@media screen and (max-width: 767px) {
  header {
    padding-right: 30px;
  }
  header:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s;
  }
  header .logo {
    position: relative;
    z-index: 1;
  }
  header .logo a {
    width: 150px;
    position: relative;
  }
  header .logo a:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url("../img/common/peppy_logo-1.png") no-repeat center/90px auto;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    transform: translateY(-50%);
  }
  header.fixed:before {
    opacity: 1;
  }
  header.fixed .logo a:before {
    background-image: url("../img/common/peppy_logo-2.png");
    opacity: 1;
  }
  header.fixed .logo a img {
    opacity: 0;
  }
  #navbar {
    width: 100%;
    height: 100vh;
    background-color: #FFFAF1;
    overflow-y: auto;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    padding: 100px 30px;
    transition: all 0.3s linear;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }
  #navbar .nav .sub-menu {
    position: relative;
  }
  #navbar .nav .sub-menu + .sub-menu {
    margin-top: 14px;
  }
  #navbar .nav .sub-menu_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 23px;
    border-radius: 6px;
  }
  #navbar .nav .sub-menu_btn a {
    display: block;
    flex: 1 0 0;
    padding: 15px;
  }
  #navbar .nav .sub-menu_btn i {
    display: block;
    width: 53px;
    height: 53px;
    position: relative;
  }
  #navbar .nav .sub-menu_btn i:before,
  #navbar .nav .sub-menu_btn i:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
    border-radius: 4px;
  }
  #navbar .nav .sub-menu_btn i:before {
    width: 10px;
    height: 0;
    border-top: 2px solid #000;
  }
  #navbar .nav .sub-menu_btn i:after {
    width: 0;
    height: 10px;
    border-left: 2px solid #000;
  }
  #navbar .nav .sub-menu_main {
    display: none;
  }
  #navbar .nav .sub-menu_main li {
    padding-top: 5px;
  }
  #navbar .nav .sub-menu_main a {
    display: block;
    background-color: #fff;
    letter-spacing: 0.08em;
    line-height: 20px;
    border-radius: 6px;
    padding: 10px 35px 10px 15px;
    position: relative;
  }
  #navbar .nav .sub-menu_main a:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #000;
    -webkit-mask: url("../img/common/arrow-right.png") no-repeat center/100% auto;
    mask: url("../img/common/arrow-right.png") no-repeat center/100% auto;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
  #navbar .nav .sub-menu.is-active .sub-menu_btn {
    background-color: #E50012;
    color: #fff;
  }
  #navbar .nav .sub-menu.is-active .sub-menu_btn i:before,
  #navbar .nav .sub-menu.is-active .sub-menu_btn i:after {
    border-color: #fff;
  }
  #navbar .nav .sub-menu.is-active .sub-menu_btn i:after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .hamburger {
    display: block;
  }
  .navOpen header .logo a:before {
    opacity: 1;
    transition: all 0.3s;
  }
  .navOpen header .logo a img {
    opacity: 0;
  }
  .navOpen #navbar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media screen and (min-width: 768px) {
  header {
    padding-right: 20px;
  }
  #navbar {
    height: auto !important;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px 30px;
  }
  #navbar .nav {
    display: flex;
    align-items: center;
    gap: 40px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
  }
  #navbar .nav .sub-menu {
    position: relative;
  }
  #navbar .nav .sub-menu:hover .sub-menu_main {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
  #navbar .nav .sub-menu_btn {
    text-align: center;
    padding: 10px 0;
  }
  #navbar .nav .sub-menu_btn span {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  #navbar .nav .sub-menu_main {
    width: max-content;
    max-width: 225px;
    background-color: #fff;
    border-radius: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 14px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }
  #navbar .nav .sub-menu_main li + li {
    padding-top: 10px;
  }
  #navbar .nav .sub-menu_main a {
    display: inline-block;
    background: url("../img/common/arrow-right.png") no-repeat center left/9px auto;
    padding-left: 20px;
  }
  #navbar .nav .sub-menu_main a:hover {
    background-position: center left 5px;
  }
}

@media screen and (min-width: 1024px) {
  header {
    padding-right: 40px;
  }
  #navbar .nav {
    gap: 80px;
    padding: 10px 60px;
  }
}

/*=============================================
* <footer>
*=============================================*/
footer {
  background-color: #fff;
  padding: 50px 0 12px;
}

footer .logo {
  width: 151px;
  margin: 0 auto;
}

footer hr {
  border-top: 1px solid #EBEBEB;
  margin-top: 30px;
}

footer nav {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding-top: 45px;
}

footer nav dl {
  line-height: 26px;
}

footer nav dl dt {
  font-weight: 700;
  font-size: 17px;
}

footer nav dl dd {
  font-size: 13px;
  padding-top: 10px;
}

footer address {
  color: #666;
  font-weight: 500;
  font-size: 11px;
  line-height: 26px;
  padding-top: 24px;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 40px 0;
  }
  footer .logo {
    width: 122px;
  }
  footer nav {
    flex-direction: column;
    gap: 30px;
    padding-top: 30px;
  }
  footer nav dl {
    line-height: 23px;
  }
  footer nav dl dt {
    font-size: 16px;
    border-bottom: 1px solid #A54700;
    padding: 10px 0;
  }
  footer nav dl dd {
    font-size: 14px;
    line-height: 32px;
    padding-top: 10px;
  }
  footer hr {
    margin-top: 30px;
  }
  footer address {
    padding-top: 30px;
  }
}

@media screen and (min-width: 1200px) {
  footer hr {
    margin-right: -50px;
    margin-left: -50px;
  }
}

/* -- -- */
#pagetop {
  width: 24px;
  position: fixed;
  right: 50px;
  bottom: 52px;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}

#pagetop.visible {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1023px) {
  #pagetop {
    width: 15px;
    right: 10px;
  }
}

@media screen and (max-width: 767px) {
  #pagetop {
    bottom: 40px;
  }
}

/* -- -- */
.ft-fixed {
  position: fixed;
  z-index: 9;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.ft-fixed a {
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: -3px 3px 11px rgba(0, 0, 0, 0.35);
}

.ft-fixed .building {
  background-color: #a5e1dc;
}

.ft-fixed .doc {
  background-color: #fcc570;
}

.ft-fixed.fixed {
  opacity: 1;
  visibility: visible;
}

/*=============================================
* <section>
*=============================================*/
section {
  box-sizing: border-box;
}

/* Animation */
.fade-in {
  filter: blur(20px);
  opacity: 0;
  background: linear-gradient(270deg, #111 0%, #777 100%);
  background-clip: text;
  -webkit-background-clip: text;
  transition-delay: 200ms;
  transition-duration: 600ms;
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.fade-in[style*="visible"] {
  filter: blur(0);
  opacity: 1;
  background: linear-gradient(90deg, black 0%, black 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.fade-in-up {
  transition-delay: 200ms;
  transition-duration: 800ms;
  transform: translate(0px, 24px);
  opacity: 0;
}

.fade-in-up[style*="visible"] {
  transform: translate(0px, 0px);
  opacity: 1;
}

/* -- -- */
.img_effect {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.img_effect:after {
  content: "";
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-delay: 300ms;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
}

.img_effect[style*="visible"]:after {
  animation-name: homeTileAnimation;
}

/* =============================================
* Custom
*=============================================*/
/* -- heading -- */
.h2 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.14em;
  line-height: 35px;
}

.h2 .en {
  display: block;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 20px;
  text-transform: uppercase;
  padding-top: 5px;
}

.h-18 {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
}

.h-20 {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 30px;
}

.h-22 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 32px;
}

.h-24 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 35px;
}

.h-25 {
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0;
  line-height: 35px;
}

.h-26 {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 35px;
}

.h-28 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 40px;
}

.h-30 {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 52px;
}

@media screen and (max-width: 767px) {
  .h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .h2 .en {
    font-size: 12px;
    line-height: 12px;
  }
  .h-18,
  .h-20 {
    font-size: 16px;
    line-height: 26px;
  }
  .h-22,
  .h-24 {
    font-size: 18px;
    line-height: 26px;
  }
  .h-26,
  .h-28 {
    font-size: 20px;
    line-height: 30px;
  }
  .h-30 {
    font-size: 22px;
    line-height: 30px;
  }
}

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

.button a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  border-radius: 50px;
  box-sizing: border-box;
}

.button a:hover {
  opacity: 1;
}

.button .more {
  width: 130px;
  height: 40px;
  border: 1px solid #fff;
  background: #FFF;
  color: #333;
}

.button .more:hover {
  background-color: transparent;
  color: #FFF;
}

.button a:not(.more) {
  width: 250px;
  height: 60px;
  background-color: #E50012;
  color: #fff;
  text-align: center;
}

.button a:not(.more):hover {
  background-color: #333;
}

@media screen and (max-width: 767px) {
  .button {
    text-align: center;
  }
  .button a:not(.more) {
    width: 100%;
  }
}

/* -- -- */
.txt-udl {
  text-decoration: underline;
}

a.txt-udl:hover {
  text-decoration: none;
}

.txt-c {
  text-align: center;
}

.txt-j {
  text-align: justify;
}

.txt-r {
  text-align: right;
}

.txt-uppercase {
  text-transform: uppercase;
}

.cl-blue {
  color: #0057AA;
}

.cl-green {
  color: #4BA334;
}

.cl-red {
  color: #E50012;
}

.cl-white {
  color: #fff;
}

.cl-orange {
  color: #E85400;
}

.cl-pink {
  color: #D8005C;
}

.cl-yellow {
  color: #FFEB00;
}

.cl-grey {
  color: #AFAFAF;
}

.cl-brown {
  color: #A54700;
}

.hightlight {
  background-image: linear-gradient(#fae428, #fae428);
  background-size: 100% 33px;
  background-repeat: no-repeat;
  background-position: left bottom;
}

@media screen and (max-width: 767px) {
  .hightlight {
    background-size: 100% 15px;
  }
}

.fw-r {
  font-weight: 400;
}

.fw-m {
  font-weight: 500;
}

.fw-smb {
  font-weight: 600;
}

.fw-b {
  font-weight: 700;
}

.fw-black {
  font-weight: 900;
}

.bdra-10 {
  border-radius: 10px;
}

.bdra-20 {
  border-radius: 20px;
}

.bdra-24 {
  border-radius: 24px;
}

.bdra-30 {
  border-radius: 30px;
}

.bdra-50 {
  border-radius: 30px;
}

.bdra-64 {
  border-radius: 64px;
}

.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.clear {
  clear: both;
}

@media screen and (max-width: 767px) {
  .bdra-20 {
    border-radius: 10px;
  }
  .bdra-30 {
    border-radius: 15px;
  }
  .bdra-50 {
    border-radius: 25px;
  }
  .bdra-64 {
    border-radius: 32px;
  }
}

/* -- --*/
.w600 {
  max-width: 600px;
  margin: 0 auto;
}

.w800 {
  max-width: 800px;
  margin: 0 auto;
}

/* -- --*/
.mt60 {
  margin-top: 60px;
}

.pt60 {
  padding-top: 60px;
}

.pb120 {
  padding-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .mt60 {
    margin-top: 40px;
  }
  .pt60 {
    padding-top: 40px;
  }
  .pb120 {
    padding-bottom: 90px;
  }
}

@media screen and (min-width: 768px) {
  .pb120_pc {
    padding-bottom: 120px;
  }
}

/* -- --*/
.bg-cl01 {
  background: #F8F8F8;
}

/* -- -- */
.img-zoom,
.img-zoom figure {
  display: block;
  overflow: hidden;
}

.img-zoom > img,
.img-zoom .img-cover {
  transition: 0.6s ease-in-out;
}

.img-zoom:hover {
  opacity: 1;
}

.img-zoom:hover > img,
.img-zoom:hover .img-cover {
  transform: scale(1.07);
  filter: brightness(0.8);
}

/* -- -- */
.effect-bnr a {
  display: block;
  background-color: #030c17;
  position: relative;
}

.effect-bnr a:after {
  content: '';
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid #fff;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1);
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.effect-bnr a:hover {
  opacity: 1;
}

.effect-bnr a:hover:after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.effect-bnr a:hover img {
  opacity: 0.3 !important;
}

/* -- --*/
.tb-style {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  position: relative;
}

.tb-style dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  padding: 30px 0;
}

.tb-style dl + dl {
  border-top: 0;
}

.tb-style dl dt {
  font-size: 16px;
}

.tb-style dl dd dl {
  border-style: dashed;
  padding: 10px 0;
}

.tb-style dl dd dl:first-child {
  border-top: 0;
  padding-top: 0;
}

.tb-style dl dd dl:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.tb-style dl dd dl dt {
  font-size: 14px;
}

.tb-style dl dd p + p {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .tb-style dl {
    grid-template-columns: 100px 1fr;
    padding: 20px 0;
  }
  .tb-style dl dt {
    font-size: 14px;
  }
  .tb-style dl dd dl {
    grid-template-columns: 1fr;
  }
  .tb-style dl dd dl dd {
    padding-left: 10px;
  }
  .tb-style dl dd p + p {
    padding-top: 20px;
  }
}

/* -- -- */
.swiper {
  overflow: hidden;
  position: relative;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-button-next,
.swiper-button-prev {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #1C4B68;
  transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  width: 100%;
  height: 100%;
  font-size: 0;
}

.swiper-button-next:after {
  background: url("../img/common/slider-next.png") no-repeat center/23px auto;
}

.swiper-button-prev:after {
  background: url("../img/common/slider-prev.png") no-repeat center/23px auto;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.7;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  position: static;
  margin: 0;
  padding-right: 10px;
}

.swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 30px;
  margin: 0;
}

.swiper-pagination .swiper-pagination-bullet-active {
  color: #53B075;
}

@media screen and (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

/* -- --*/
.slick-arrow {
  display: block;
  width: 40px;
  height: 44px;
  background: #E50012;
  border: 0;
  font-size: 0;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 8px;
}

.slick-arrow:before {
  content: '';
  width: 100%;
  height: 100%;
  background: no-repeat center / 100% auto;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-arrow:hover {
  opacity: 0.5;
}

.slick-arrow.slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.slick-prev {
  left: 0;
}

.slick-prev:before {
  background-image: url("../img/common/slider-prev.png");
}

.slick-next {
  right: 0;
}

.slick-next:before {
  background-image: url("../img/common/slider-next.png");
}

@media screen and (max-width: 767px) {
  .slick-arrow {
    width: 30px;
  }
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.slick-dots li {
  width: 7px;
  height: 7px;
  position: relative;
}

.slick-dots button {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #A54700;
  border: 0;
  font-size: 0;
  transition: all 0.3s;
  cursor: pointer;
  opacity: 0.3;
  border-radius: 50%;
}

.slick-dots .slick-active button {
  opacity: 1;
}

@media screen and (min-width: 1081px) {
  .slick-dots li button:hover {
    opacity: 1;
  }
}

/* -- --*/
.photo-full img {
  width: 100%;
  max-width: inherit;
}

.img-cover {
  width: 100%;
  max-width: inherit;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .photo-full {
    width: 100%;
    height: 60vw;
  }
  .photo-full img {
    height: 100%;
    object-fit: cover;
  }
}

/* -- --*/
hr {
  border: 0;
  border-top: 1px solid #ccc;
}

/* -- --*/
.ovh {
  overflow: hidden;
}

/* -- --*/
.wrap_bg {
  width: calc(100% - 30px);
  background-color: #fff;
  padding: 60px 30px;
}

@media screen and (max-width: 767px) {
  .wrap_bg {
    padding: 40px 20px;
  }
}

/*=============================================*
* Key
*=============================================*/
#kv {
  display: flex;
  align-items: center;
  height: 370px;
  padding: 0 50px;
  position: relative;
}

#kv .page-title {
  font-weight: 500;
  font-size: 29px;
  line-height: 42px;
  letter-spacing: 0;
  color: #fff;
  position: relative;
  z-index: 1;
}

#kv .page-title .en {
  display: block;
  font-weight: 700;
  font-size: 84px;
  letter-spacing: 0;
  line-height: 120px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  .page-id-110 #kv .page-title .en {
    font-size: 65px;
  }
}

@media screen and (max-width: 767px) {
  #kv {
    height: 200px;
    padding: 0 20px;
  }
  #kv .page-title {
    font-size: 20px;
    line-height: 30px;
  }
  #kv .page-title .en {
    font-size: 60px;
    line-height: 60px;
  }
}

/* -- --*/
.breadcrumbs {
  width: 100%;
  background-color: #fff;
  color: #000;
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  position: relative;
  margin: 100px 0 2px;
  padding: 10px 0;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs ul li + li:before {
  content: '›';
  display: inline-block;
  vertical-align: baseline;
  margin: 0 5px;
}

.breadcrumbs a {
  color: #009DFF;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1023px) {
  .breadcrumbs .wrap {
    overflow-x: auto;
    overflow-y: hidden;
  }
  .breadcrumbs ul {
    width: max-content;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    font-size: 14px;
    position: relative;
    margin-top: 0;
  }
}

/*=============================================*
* 404
*=============================================*/
#content-404 {
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  padding: 60px 0 115px;
}

#content-404 .txt {
  padding-top: 20px;
}

#content-404 .button {
  text-align: center;
  padding-top: 60px;
}

@media screen and (max-width: 767px) {
  #content-404 {
    padding: 40px 0 0;
  }
  #content-404 .txt {
    text-align: justify;
  }
}

/*=============================================*
* お問い合わせ
*=============================================*/
.wpcf7 {
  position: relative;
}

.wpcf7 .select {
  position: relative;
}

.wpcf7 .select {
  display: flex;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap {
  display: block;
  flex: 1;
  position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap::after {
  content: '';
  background: url("../img/common/arrow-down.png") no-repeat center top/100% auto;
  width: 9px;
  height: 6px;
  position: absolute;
  top: 23px;
  right: 20px;
}

.wpcf7 .select select {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: 0;
  box-shadow: none;
  background-color: #FAFAFA;
  border: 1px solid #EBEBEB;
  line-height: 32px;
  border-radius: 6px !important;
  padding: 10px 50px 10px 15px;
  cursor: pointer;
}

.wpcf7 .select select::-ms-expand {
  display: none;
}

.wpcf7 input:not([type="checkbox"], [type="radio"]),
.wpcf7 textarea {
  display: block;
  width: 100%;
  background-color: #FAFAFA;
  border: 1px solid #EBEBEB;
  line-height: 32px;
  border-radius: 6px !important;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  padding: 10px 15px;
}

.wpcf7 textarea {
  height: 230px;
  resize: vertical;
}

.wpcf7 input[type="date"] {
  padding-right: 40px;
}

.wpcf7 input[type="date"]::-webkit-calendar-picker-indicator {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-position: top 22px right 15px;
  background-size: 18px auto;
  position: absolute;
  top: 0;
  left: 0;
}

.wpcf7 ::-webkit-input-placeholder {
  color: #999;
}

.wpcf7 ::-moz-placeholder {
  color: #999;
}

.wpcf7 :-ms-input-placeholder {
  color: #999;
}

.wpcf7 :-moz-placeholder {
  color: #999;
}

.wpcf7-checkbox,
.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 22px;
}

.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-left: 0;
  cursor: pointer;
}

.wpcf7-checkbox input,
.wpcf7-radio input {
  display: none;
}

.wpcf7-checkbox .wpcf7-list-item-label,
.wpcf7-radio .wpcf7-list-item-label {
  display: inline-grid;
  grid-template-columns: 16px 1fr;
  align-items: flex-start;
  gap: 5px;
  cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-checkbox .wpcf7-list-item-label:after,
.wpcf7-radio .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:after {
  content: '';
  background-color: #fff;
  border: 1px solid #EBEBEB;
  grid-area: 1/1;
  position: relative;
  top: 1px;
  border-radius: 3px;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
  top: 4px;
}

.wpcf7-checkbox .wpcf7-list-item-label:after,
.wpcf7-radio .wpcf7-list-item-label:after {
  display: none;
  background: url("../img/common/icon-checked.png") no-repeat center/cover;
  width: 16px;
  height: 16px;
}

.wpcf7-checkbox input:checked + .wpcf7-list-item-label:after,
.wpcf7-radio input:checked + .wpcf7-list-item-label:after {
  display: block;
}

.page-id-190 .wpcf7-checkbox .wpcf7-list-item-label:after,
.wpcf7-radio .wpcf7-list-item-label:after {
  background-image: url("../img/common/icon-checked-1.png");
}

.wpcf7 .wpcf7-not-valid-tip {
  font-size: 13px;
  line-height: 22px;
  color: #E50012;
}
