@charset "UTF-8";
/* 共通 style
*******************/
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
}
html * {
  box-sizing: border-box;
}

p, a, li, dd, dt, th, td {
  font-size: 1.6rem;
  line-height: 1.65;
}

.sp {
  display: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

.block {
  display: block;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

.pc_block {
  display: block;
}

.container {
  overflow: hidden;
  position: relative;
}

.lwrap {
  max-width: 1128px;
  margin: auto;
}

.lwrap2 {
  max-width: 1223px;
  margin: auto;
}

.lwrap3 {
  max-width: 1370px;
  margin: auto;
}

.lwrap4 {
  max-width: 1200px;
  margin: auto;
}

.lwrap5 {
  max-width: 1060px;
  margin: auto;
}

.tel a {
  pointer-events: none;
  text-decoration: none;
  color: #000000;
}

/* float
*******************/
.fl-l {
  float: left;
}

.fl-r {
  float: right;
}

/* clear
*******************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* txt 揃え
*******************/
.alignCenter {
  text-align: center;
}

.alignLeft {
  text-align: left;
}

.alignRight {
  text-align: right;
}

/* flex
*******************/
.flex {
  display: flex;
}
.flex.col-2 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.col-2 .item {
  width: 48%;
}
.flex.col-3 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.col-3 .item {
  width: 32%;
}
.flex.col-4 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.col-4 .item {
  width: 23.5%;
}
.flex.col-5 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.col-5 .item {
  width: 18.4%;
}

/* border
*******************/
.border-solid-top {
  border-top: 1px solid #ebebeb;
}

.border-solid-left {
  border-left: 1px solid #ebebeb;
}

.border-solid-right {
  border-right: 1px solid #ebebeb;
}

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

.border-dashed-top {
  border-top: 1px dashed #ebebeb;
}

.border-dashed-left {
  border-left: 1px dashed #ebebeb;
}

.border-dashed-right {
  border-right: 1px dashed #ebebeb;
}

.border-dashed-bottom {
  border-bottom: 1px dashed #ebebeb;
}

.border-dotted-top {
  border-top: 1px dotted #ebebeb;
}

.border-dotted-left {
  border-left: 1px dotted #ebebeb;
}

.border-dotted-right {
  border-right: 1px dotted #ebebeb;
}

.border-dotted-bottom {
  border-bottom: 1px dotted #ebebeb;
}

/* カラー
*******************/
.c-white {
  color: #ffffff !important;
}

.c-black {
  color: #000000 !important;
}

.c-blue {
  color: #144aa6 !important;
}

.c-yellow {
  color: #fff582 !important;
}

.c-red {
  color: #c81f21 !important;
}

.c-green {
  color: #5aaa3c !important;
}

.c-orange {
  color: #ff9020 !important;
}

.c-gray {
  color: #ebebeb !important;
}

/* bgカラー
*******************/
.bg-white {
  background-color: #ffffff !important;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-blue {
  background-color: #144aa6 !important;
}

.bg-yellow {
  background-color: #fff582 !important;
}

.bg-red {
  background-color: #c81f21 !important;
}

.bg-green {
  background-color: #5aaa3c !important;
}

.bg-orange {
  background-color: #ff9020 !important;
}

.bg-gray {
  background-color: #ebebeb !important;
}

/* border color
*******************/
.bc-white {
  border-color: #ffffff !important;
}

.bc-black {
  border-color: #000000 !important;
}

.bc-blue {
  border-color: #144aa6 !important;
}

.bc-yellow {
  border-color: #fff582 !important;
}

.bc-red {
  border-color: #c81f21 !important;
}

.bc-green {
  border-color: #5aaa3c !important;
}

.bc-orange {
  border-color: #ff9020 !important;
}

.bc-gray {
  border-color: #ebebeb !important;
}

/* circle
*******************/
.circle {
  display: inline-block;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  background-color: #ebebeb;
  text-align: center;
  position: relative;
}
.circle > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}

/* square
*******************/
.square {
  display: inline-block;
  width: 10rem;
  height: 10rem;
  background-color: #ebebeb;
  text-align: center;
  position: relative;
}
.square > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}

/* 角丸
*******************/
.round-15 {
  border-radius: 1.5rem;
}

.round-30 {
  border-radius: 3rem;
}

.round-60 {
  border-radius: 6rem;
}

.round-90 {
  border-radius: 9rem;
}

.round-100 {
  border-radius: 100%;
}

/* margin
*******************/
.mt-0 {
  margin-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mt-5 {
  margin-top: 0.5rem !important;
}

.mb-5 {
  margin-bottom: 0.5rem !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mt-25 {
  margin-top: 2.5rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mt-35 {
  margin-top: 3.5rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mt-45 {
  margin-top: 4.5rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.mt-50 {
  margin-top: 5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mt-55 {
  margin-top: 5.5rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mt-65 {
  margin-top: 6.5rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.mt-70 {
  margin-top: 7rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.mt-75 {
  margin-top: 7.5rem !important;
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

.mt-80 {
  margin-top: 8rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.mt-85 {
  margin-top: 8.5rem !important;
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

.mt-90 {
  margin-top: 9rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mt-95 {
  margin-top: 9.5rem !important;
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

.mt-105 {
  margin-top: 10.5rem !important;
}

.mb-105 {
  margin-bottom: 10.5rem !important;
}

.mt-110 {
  margin-top: 11rem !important;
}

.mb-110 {
  margin-bottom: 11rem !important;
}

.mt-115 {
  margin-top: 11.5rem !important;
}

.mb-115 {
  margin-bottom: 11.5rem !important;
}

.mt-120 {
  margin-top: 12rem !important;
}

.mb-120 {
  margin-bottom: 12rem !important;
}

.mt-125 {
  margin-top: 12.5rem !important;
}

.mb-125 {
  margin-bottom: 12.5rem !important;
}

.mt-130 {
  margin-top: 13rem !important;
}

.mb-130 {
  margin-bottom: 13rem !important;
}

.mt-135 {
  margin-top: 13.5rem !important;
}

.mb-135 {
  margin-bottom: 13.5rem !important;
}

.mt-140 {
  margin-top: 14rem !important;
}

.mb-140 {
  margin-bottom: 14rem !important;
}

.mt-145 {
  margin-top: 14.5rem !important;
}

.mb-145 {
  margin-bottom: 14.5rem !important;
}

.mt-150 {
  margin-top: 15rem !important;
}

.mb-150 {
  margin-bottom: 15rem !important;
}

/* padding
*******************/
.pd-0 {
  padding: 0rem !important;
  box-sizing: border-box;
}

.pd-5 {
  padding: 0.5rem !important;
  box-sizing: border-box;
}

.pd-10 {
  padding: 1rem !important;
  box-sizing: border-box;
}

.pd-15 {
  padding: 1.5rem !important;
  box-sizing: border-box;
}

.pd-20 {
  padding: 2rem !important;
  box-sizing: border-box;
}

.pd-25 {
  padding: 2.5rem !important;
  box-sizing: border-box;
}

.pd-30 {
  padding: 3rem !important;
  box-sizing: border-box;
}

.pd-35 {
  padding: 3.5rem !important;
  box-sizing: border-box;
}

.pd-40 {
  padding: 4rem !important;
  box-sizing: border-box;
}

.pd-45 {
  padding: 4.5rem !important;
  box-sizing: border-box;
}

.pd-50 {
  padding: 5rem !important;
  box-sizing: border-box;
}

.pd-55 {
  padding: 5.5rem !important;
  box-sizing: border-box;
}

.pd-60 {
  padding: 6rem !important;
  box-sizing: border-box;
}

.pd-65 {
  padding: 6.5rem !important;
  box-sizing: border-box;
}

.pd-70 {
  padding: 7rem !important;
  box-sizing: border-box;
}

.pd-75 {
  padding: 7.5rem !important;
  box-sizing: border-box;
}

.pd-80 {
  padding: 8rem !important;
  box-sizing: border-box;
}

.pd-85 {
  padding: 8.5rem !important;
  box-sizing: border-box;
}

.pd-90 {
  padding: 9rem !important;
  box-sizing: border-box;
}

.pd-95 {
  padding: 9.5rem !important;
  box-sizing: border-box;
}

.pd-100 {
  padding: 10rem !important;
  box-sizing: border-box;
}

.pd-105 {
  padding: 10.5rem !important;
  box-sizing: border-box;
}

.pd-110 {
  padding: 11rem !important;
  box-sizing: border-box;
}

.pd-115 {
  padding: 11.5rem !important;
  box-sizing: border-box;
}

.pd-120 {
  padding: 12rem !important;
  box-sizing: border-box;
}

.pd-125 {
  padding: 12.5rem !important;
  box-sizing: border-box;
}

.pd-130 {
  padding: 13rem !important;
  box-sizing: border-box;
}

.pd-135 {
  padding: 13.5rem !important;
  box-sizing: border-box;
}

.pd-140 {
  padding: 14rem !important;
  box-sizing: border-box;
}

.pd-145 {
  padding: 14.5rem !important;
  box-sizing: border-box;
}

.pd-150 {
  padding: 15rem !important;
  box-sizing: border-box;
}

/* box shadow
*******************/
.b-shadow {
  box-shadow: 0.5rem 0.5rem 0.4rem rgba(0, 0, 0, 0.2);
}

/* text shadow
*******************/
.t-shadow {
  text-shadow: 0.43rem 0.43rem 0.323rem rgba(0, 0, 0, 0.6);
}

/* marker
*******************/
.marker-yellow {
  background: linear-gradient(transparent 0%, #fff582 0%);
}

/* header
*******************/
.header .lwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo a {
  font-size: 1.7rem;
  display: block;
  text-decoration: none;
  color: #000000;
}

.header .logo-wrap {
  width: 29.5rem;
  padding: 2rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.header .logo-wrap p {
  font-size: 2.2rem;
  line-height: 1.5;
}
.header .logo-wrap p.small {
  font-size: 1.2rem;
  margin: 5rem 0 0;
}

.nav-wrap {
  position: fixed;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  transition: 0.3s;
}

.nav-wrap-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-wrap.fixed {
  background-color: #000;
  z-index: 3;
  opacity: 1;
}
.nav-wrap.fixed .header-logo_2 {
  display: block;
}
.nav-wrap.fixed .header-logo_2 a img {
  opacity: 1;
  display: block;
}
.nav-wrap.fixed .nav-menu {
  position: static;
}
.nav-wrap.fixed .nav-menu li a {
  color: #fff;
}
.nav-wrap.fixed .nav-menu li .contact-btn {
  padding: 1rem 3rem;
  margin-top: 2rem;
  border-radius: 3rem;
}
.nav-wrap .header-logo_2 {
  transition: 0.3s;
  display: none;
  width: 22rem;
}
.nav-wrap .header-logo_2 a {
  display: block;
  color: #333;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 0;
  top: 0rem;
}
.nav-menu li.active {
  background-color: #ebebeb;
}
.nav-menu li i {
  text-align: center;
  margin-right: 0.5rem;
}
.nav-menu li a {
  text-decoration: none;
  color: #fff;
  padding: 3rem;
  box-sizing: border-box;
  display: block;
  font-size: 1.7rem;
  text-align: center;
  transition: 0.3s;
}
.nav-menu li .children-menu {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #ebebeb;
  justify-content: center;
  /* 初めはメニューを隠す */
  display: none;
  padding: 3rem;
  /* jsでクラスを付けて表示 */
}
.nav-menu li .children-menu.active {
  display: block;
}
.nav-menu li .children-menu li {
  display: inline-block;
}
.nav-menu li .children-menu li a {
  font-size: 1.6rem;
}
.nav-menu li .children-menu li a i {
  font-size: 1.2rem;
}
.nav-menu .sns i {
  color: #CF2E92;
}

.nav-btn {
  display: none;
  width: 9.3rem;
  height: 9.3rem;
  position: fixed;
  right: 0;
  top: 0;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.5s;
  z-index: 9;
}
.nav-btn span {
  position: absolute;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  width: 3.7rem;
  height: 2px;
  background-color: #000000;
  border-radius: 3px;
  transition: all 0.5s;
  box-sizing: border-box;
  display: inline-block;
}
.nav-btn span:nth-of-type(1) {
  top: 3.3rem;
}
.nav-btn span:nth-of-type(2) {
  top: 4.55rem;
}
.nav-btn span:nth-of-type(3) {
  bottom: 3.3rem;
}
.nav-btn.active {
  background-color: transparent;
}
.nav-btn.active span {
  background-color: #ffffff;
}
.nav-btn.active span:nth-of-type(1) {
  -webkit-transform: translateX(-50%) translateY(1.3rem) rotate(45deg);
  transform: translateX(-50%) translateY(1.3rem) rotate(45deg);
}
.nav-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.nav-btn.active span:nth-of-type(3) {
  -webkit-transform: translateX(-50%) translateY(-1.3rem) rotate(-45deg);
  transform: translateX(-50%) translateY(-1.3rem) rotate(-45deg);
}

.nav-contact-btn {
  display: none;
}

.nav-sns-btn {
  display: none;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .header {
    position: relative;
  }
  .header-logo.sp {
    position: absolute;
    left: 5rem;
    top: 7rem;
  }
  .header .logo-wrap {
    position: fixed;
    width: 100%;
    background: #000;
  }
  .header .logo-wrap p {
    font-size: 2.8rem;
  }
  .header .logo-wrap p.small {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
  .header .sp-flex {
    display: flex;
  }
  .header .sp-flex .header-logo {
    width: 31rem;
  }
  .header .sp-flex .txt {
    position: relative;
    top: 0.5rem;
  }
  .nav-contact-btn {
    display: block;
    width: 13.8rem;
    height: 13.8rem;
    position: fixed;
    text-align: center;
    right: 13.8rem;
    top: 0;
    z-index: 3;
  }
  .nav-contact-btn a {
    display: block;
    padding: 3.3rem 0;
    text-decoration: none;
    font-size: 1.8rem;
  }
  .nav-contact-btn a i {
    display: block;
    font-size: 4rem;
  }
  .nav-sns-btn {
    display: block;
    width: 13.8rem;
    height: 13.8rem;
    position: fixed;
    text-align: center;
    right: 27.5rem;
    top: 0;
    z-index: 3;
    background: linear-gradient(to right, rgba(247, 207, 0, 0.7), rgba(246, 37, 2, 0.7) 45%, rgba(182, 47, 82, 0.7) 75%, rgba(113, 58, 166, 0.7));
  }
  .nav-sns-btn a {
    display: block;
    padding: 3.3rem 0;
    text-decoration: none;
    font-size: 1.8rem;
  }
  .nav-sns-btn a i {
    display: block;
    font-size: 4rem;
  }
  .nav-btn {
    width: 13.8rem;
    height: 13.8rem;
    position: fixed;
    display: block;
  }
  .nav-btn span {
    width: 5.5rem;
    height: 0.3rem;
  }
  .nav-btn span:nth-of-type(1) {
    top: 4.7rem;
  }
  .nav-btn span:nth-of-type(2) {
    top: 6.8rem;
  }
  .nav-btn span:nth-of-type(3) {
    bottom: 4.7rem;
  }
  .nav-btn.active span:nth-of-type(1) {
    -webkit-transform: translateX(-50%) translateY(2rem) rotate(45deg);
    transform: translateX(-50%) translateY(2rem) rotate(45deg);
  }
  .nav-btn.active span:nth-of-type(3) {
    -webkit-transform: translateX(-50%) translateY(-2rem) rotate(-45deg);
    transform: translateX(-50%) translateY(-2rem) rotate(-45deg);
  }
  .nav-wrap {
    background-color: rgba(1, 1, 1, 0.7);
    box-sizing: border-box;
    display: flex;
    transition: 0.3s;
    z-index: 3;
    left: auto;
    right: -100%;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    align-items: inherit;
  }
  .nav-wrap.fixed {
    background-color: rgba(1, 1, 1, 0.8);
  }
  .nav-wrap.fixed .nav-menu li a {
    color: #fff;
  }
  .nav-wrap.fixed .header-logo_2 {
    display: none;
  }
  .nav-wrap.active {
    right: 0;
  }
  .nav-wrap-inner {
    width: 100%;
    position: relative;
    align-items: start;
    top: 12rem;
    padding-bottom: 12rem;
  }
  .nav-wrap .header-logo_2 {
    display: none;
  }
  .nav-menu {
    width: 100%;
    display: block;
    position: static;
  }
  .nav-menu li a {
    text-align: left;
    font-size: 3.3rem;
    padding: 2rem;
    color: #fff;
  }
  .nav-menu li a.contact-btn {
    text-align: center;
    border-radius: 7rem;
    margin-bottom: 6rem;
  }
  .nav-menu li .children-menu {
    display: block;
    position: static;
    background: transparent;
    padding: 0;
    padding-left: 2rem;
  }
  .nav-menu li .children-menu li {
    display: block;
  }
  .nav-menu li .children-menu li a {
    font-size: 2.6rem;
  }
  .nav-menu li .children-menu li a i {
    font-size: 2.4rem;
  }
  .nav-menu li .children-menu.active {
    background: transparent;
  }
  .nav-menu li.active {
    background: transparent;
  }
}
/* footer
*******************/
.footer {
  background: #000;
  color: #fff;
}
.footer > .lwrap3 {
  justify-content: space-between;
  margin: auto;
  padding: 3rem 0;
  align-items: end;
}
.footer .tel-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  text-align: center;
  z-index: 5;
}
.footer .tel-btn a {
  color: #fff;
  padding: 3rem 3rem 2rem;
  font-size: 3rem;
  text-decoration: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #000;
}
.footer .tel-btn a i {
  font-size: 4rem;
  margin-right: 1rem;
}
.footer .tel-btn a small {
  display: block;
  background: none;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  padding: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.92;
  width: 20rem;
}
.footer-logo i {
  line-height: 0;
  margin-right: 2rem;
}

.footer-nav {
  display: flex;
  align-items: center;
}
.footer-nav li {
  margin-right: 6rem;
}
.footer-nav li:last-child {
  margin-right: 0;
}
.footer-nav li a {
  font-weight: 500;
  text-decoration: none;
  color: #fff;
}
.footer-nav .sns a {
  text-align: center;
  display: block;
}
.footer-nav .sns a i {
  color: #CF2E92;
  font-size: 2.6rem;
}

.footer small {
  display: block;
  text-align: right;
  font-size: 1.4rem;
  background-color: #ebebeb;
  color: #000;
  padding: 15rem 0 1.5rem;
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .footer > .lwrap3 {
    padding: 3rem 1.5rem;
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .footer small {
    font-size: 2rem;
    padding: 3.8rem 0 18rem;
  }
  .footer > .lwrap3 {
    flex-wrap: wrap;
    padding: 6rem 2.5rem 6rem;
  }
  .footer > .lwrap3.last {
    padding-top: 0;
  }
  .footer-logo {
    width: 50%;
    justify-content: center;
    margin: 0 0 5.5rem;
  }
  .footer-logo i {
    margin-right: 0;
  }
  .footer-logo i img {
    width: 16.4rem;
  }
  .footer-logo span {
    display: none;
  }
  .footer-nav {
    width: 100%;
    flex-wrap: wrap;
  }
  .footer-nav li {
    width: 50%;
    margin: 0;
  }
  .footer-nav li a {
    font-size: 2.6rem;
    padding: 2rem;
    display: block;
  }
  .footer-nav.sub {
    margin-top: 6rem;
  }
  .footer-nav.sub li {
    width: auto;
    margin-right: 2rem;
  }
  .footer-nav.sub li:last-child {
    margin-right: 0;
  }
  .footer-nav.sub li a {
    font-size: 2.2rem;
    padding: 0;
  }
}
.breadcrumbs {
  padding: 0.5rem 0;
  background: #f8f8f8;
  font-size: 1.2rem;
}
.breadcrumbs a, .breadcrumbs span {
  color: #000;
  font-size: 1.2rem;
}

@media screen and (max-width: 750px) {
  .breadcrumbs {
    padding: 1rem 0;
    font-size: 1.6rem;
  }
  .breadcrumbs a, .breadcrumbs span {
    font-size: 1.6rem;
  }
}
/* fadein
*******************/
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
.fadein.fadein-left {
  transform: translate(-30px, 0);
}
.fadein.fadein-right {
  transform: translate(30px, 0);
}
.fadein.fadein-up {
  transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ttl
*******************/
.ttl01 {
  font-size: 5.5rem;
  font-weight: 500;
  font-family: "Karla", sans-serif;
  font-style: italic;
  line-height: 1.25;
  text-align: center;
  margin: 0 0 6rem;
}
.ttl01 .small {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-style: normal;
  display: block;
  margin: 1rem 0 0;
}

.ttl02 {
  font-size: 5.5rem;
  font-family: "Karla", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.ttl02 .small {
  font-size: 1.8rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  font-style: normal;
  margin: 1.8rem 0 0 1rem;
  display: block;
}

.ttl03 {
  margin: 6rem 0 3rem;
  text-align: center;
  font-size: 4.5rem;
  font-family: "Karla", sans-serif;
  font-weight: 500;
}
.ttl03 .small {
  font-size: 1.4rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  font-style: normal;
  margin: 1.8rem 0 0 1rem;
  display: block;
}

.ttl04 {
  margin: 6rem 0 3rem;
  font-size: 4.5rem;
  font-family: "Karla", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.ttl04 .small {
  font-size: 1.4rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  font-style: normal;
  margin: 1.8rem 0 0 1rem;
  display: block;
}

.lead {
  margin-bottom: 6rem;
  text-align: center;
  font-size: 1.4rem;
  color: #333;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

/* btn
*******************/
.btn {
  text-align: center;
}
.btn a, .btn span {
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: 1px solid #000000;
  padding: 1.2rem 0;
  min-width: 21.4rem;
  background-color: #000000;
  color: #ffffff;
  position: relative;
}
.btn.white a, .btn.white span {
  background-color: transparent;
  border-color: #ffffff;
}

/* it-st-01
*******************/
.it-st-01 {
  display: flex;
  justify-content: flex-start;
}
.it-st-01 .item {
  width: 48%;
}
.it-st-01.imgright {
  justify-content: flex-end;
}

/* dl style
*******************/
.dl-style01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dl-style01 dt {
  font-size: 1.6rem;
  font-weight: 500;
  width: 20.7rem;
  text-align: center;
  padding: 3rem 1rem;
  line-height: 2.2;
  border-bottom: 2px solid #000000;
}
.dl-style01 dt.none {
  border-bottom: none;
}
.dl-style01 dd {
  font-size: 1.6rem;
  font-weight: 400;
  padding: 3rem 3rem 3rem 5rem;
  line-height: 2.2;
  width: calc(100% - 21rem);
  border-bottom: 1px solid #DFDFDF;
}
.dl-style01 dd a {
  font-size: 1.6rem;
  text-decoration: none;
  color: #000000;
  display: block;
}
.dl-style01 dd table th {
  font-weight: normal;
}

/* contact
*******************/
.contact {
  background: url("../images/common/contact-bg.jpg") no-repeat center top;
  background-size: cover;
}
.contact .ttl01 {
  color: #ffffff;
}

/* access
*******************/
.access iframe {
  width: 100%;
  height: 500px;
}

.section {
  padding: 9rem 0;
}

#message {
  overflow-x: hidden;
  position: relative;
}
#message .lwrap {
  max-width: 800px;
}
#message .ttl03 {
  font-weight: bold;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  margin-top: 0;
}
#message .lead {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
  font-weight: bold;
}
#message .message-img {
  position: absolute;
}
#message .message-img:nth-child(1) {
  left: 3rem;
  top: 20%;
  width: 10%;
}
#message .message-img:nth-child(2) {
  right: 6rem;
  top: 50%;
  width: 10%;
}
#message .message-img:nth-child(3) {
  left: 9rem;
  bottom: 20%;
  width: 10%;
}

#service {
  overflow-x: hidden;
}
#service .flex {
  justify-content: center;
}
#service .flex.col-2 .item {
  margin: 1rem;
  background: #fff;
}
#service .flex.col-2 .item a {
  color: #000;
  text-decoration: none;
}
#service .flex.col-2 .item .img {
  line-height: 1;
}
#service .flex.col-2 .item .text {
  padding: 2rem;
}
#service .flex.col-2 .item .text h2, #service .flex.col-2 .item .text h3 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  margin: 0 0 1.5rem;
}
#service .flex.col-3 .item {
  width: 31.5%;
  margin: 1rem;
  background: #fff;
  position: relative;
}
#service .flex.col-3 .item a {
  color: #000;
  text-decoration: none;
}
#service .flex.col-3 .item a i {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  font-size: 2rem;
  color: #ebebeb;
}
#service .flex.col-3 .item .img {
  line-height: 1;
}
#service .flex.col-3 .item .text {
  padding: 2rem;
}
#service .flex.col-3 .item .text h2, #service .flex.col-3 .item .text h3 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  margin: 0 0 1.5rem;
}
#service .flex.col-4 .item {
  width: 23%;
  margin: 1rem;
  background: #fff;
}
#service .flex.col-4 .item a {
  color: #000;
  text-decoration: none;
}
#service .flex.col-4 .item .img {
  line-height: 1;
}
#service .flex.col-4 .item .text {
  padding: 2rem;
}
#service .flex.col-4 .item .text h2, #service .flex.col-4 .item .text h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 1.5rem;
}
#service .flex.col-4 .item .text p {
  font-size: 1.4rem;
}
#service .btn {
  margin-top: 6rem;
}

#service01 {
  overflow-x: hidden;
  padding: 0;
}
#service01 .flex.col-2 {
  align-items: center;
}
#service01 .flex.col-2 .item {
  display: flex;
  align-items: center;
  width: 100%;
}
#service01 .flex.col-2 .item:nth-child(odd) {
  flex-direction: row-reverse;
}
#service01 .flex.col-2 .item:nth-child(even) {
  flex-direction: row;
}
#service01 .flex.col-2 .item .img {
  flex: 1;
  display: flex;
  justify-content: center;
}
#service01 .flex.col-2 .item .text {
  flex: 1;
}
#service01 .flex.col-2 .item .text .content {
  padding: 0 4rem;
}
#service01 .flex.col-2 .item .text .content h3 {
  font-size: 4rem;
  margin-bottom: 3rem;
}
#service01 .flex.col-2 .item .text .content .btn {
  margin-top: 3rem;
  text-align: right;
}

.about {
  overflow-x: hidden;
}
.about .item {
  position: relative;
  width: 100%;
}
.about .item .img {
  width: 50%;
  text-align: center;
  margin: 0 auto 3rem;
}
.about .item .text {
  width: 70%;
  padding: 3rem;
  background: #fff;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
  margin: auto;
}
.about .item .text h3 {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 4rem;
  margin-bottom: 3rem;
}
.about .item .text .btn {
  margin-top: 3rem;
  text-align: right;
}
.about01 {
  position: relative;
}
.about01::before {
  position: absolute;
  top: -12rem;
  right: 0;
  bottom: -9rem;
  width: 80%;
  background-color: #ebebeb;
  content: "";
  z-index: -1;
}
.about01 .item {
  position: relative;
  width: 100%;
  margin-bottom: 12rem;
}
.about01 .item .img {
  position: relative;
  z-index: 1;
}
.about01 .item .img img {
  width: 60%;
}
.about01 .item .text {
  width: 50%;
  position: absolute;
  padding: 6rem 3rem;
  background: #fff;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
  bottom: -6rem;
}
.about01 .item .text .text-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  max-width: unset;
  height: 100%;
}
.about01 .item .text .text-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001b35;
  content: "";
}
.about01 .item .text .text-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  filter: blur(1rem);
}
.about01 .item .text h3 {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 4rem;
  margin-bottom: 3rem;
  color: #fff;
}
.about01 .item .text p, .about01 .item .text li {
  color: #fff;
}
.about01 .item .text .btn {
  margin-top: 3rem;
  text-align: right;
}
.about01 .item:nth-child(odd) .text {
  right: 0;
  z-index: 1;
}
.about01 .item:nth-child(even) .text {
  padding-left: 12%;
  right: 0;
}
.about01 .item:last-child {
  margin-bottom: 6rem;
}

#works h3 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: normal;
}
#works .swiper-button-next, #works .swiper-button-prev {
  top: calc(50% - 1rem);
  width: 5rem;
  height: 5rem;
  border: none;
  border-radius: 100%;
  background-color: #000;
}
#works .swiper-button-prev {
  transform: rotate(180deg);
}
#works .swiper-button-next::after, #works .swiper-button-prev::after {
  display: inline-block;
  width: 1.4rem;
  height: 2.4rem;
  background: url(../images/common/icon_swiper_arrow.svg) no-repeat center/contain;
  vertical-align: middle;
  content: "";
}

#voice .swiper-button-next, #voice .swiper-button-prev {
  top: calc(50% - 1rem);
  width: 5rem;
  height: 5rem;
  border: none;
  border-radius: 100%;
  background-color: #000;
}
#voice .swiper-button-prev {
  transform: rotate(180deg);
}
#voice .swiper-button-next::after, #voice .swiper-button-prev::after {
  display: inline-block;
  width: 1.4rem;
  height: 2.4rem;
  background: url(../images/common/icon_swiper_arrow.svg) no-repeat center/contain;
  vertical-align: middle;
  content: "";
}
#voice .swiper-button-prev {
  left: 28%;
}
#voice .swiper-button-next {
  right: 28%;
}
#voice .swiper-pagination {
  position: unset;
  margin-top: 3rem;
}
#voice .swiper-pagination-bullet {
  margin-inline: 0.6rem !important;
  background-color: #000;
  opacity: 0.2;
}
#voice .swiper-pagination-bullet-active {
  opacity: 0.8;
}
#voice .swiper-slide {
  padding: 3rem;
  background: #fff;
  transform: scale(0.8);
  transition: transform 0.8s;
}
#voice .swiper-slide .meta {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
#voice .swiper-slide .meta .img i {
  font-size: 6rem;
}
#voice .swiper-slide .meta .info {
  font-size: 2.4rem;
}
#voice .swiper-slide .text h3 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  line-height: normal;
}
#voice .swiper-slide.swiper-slide-active {
  transform: scale(1);
}

#flow {
  position: relative;
  background: url(../images/service/bg_flow_pc.jpg) no-repeat center/cover;
  color: #fff;
}
#flow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 14, 18, 0.7);
  content: "";
}
#flow .ttl01 {
  z-index: 1;
  position: relative;
  color: #ffffff;
}
#flow .flow-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 4rem;
  padding-right: 3.5rem;
  counter-reset: counter;
  gap: 6rem 4rem;
}
#flow .flow-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
  row-gap: 2.4rem;
}
#flow .flow-item::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0.5rem;
  z-index: 1;
  transform: translateY(-40%);
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 100%;
  background: #fff94d;
  color: #808080;
  font-weight: 700;
  font-size: 1.9rem;
  counter-increment: counter;
  content: counter(counter, decimal-leading-zero) "";
}
#flow .flow-item-img {
  position: relative;
  height: 13rem;
  background-color: #fff;
}
#flow .flow-item-img::before {
  position: absolute;
  top: 50%;
  left: calc(100% - 1px);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-width: 6.5rem 0px 6.5rem 3.5rem;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  content: "";
}
#flow .flow-item-img img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#flow .flow-item-title {
  padding-left: 1.75rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
}

.point .flex {
  overflow-x: hidden;
}
.point .flex.col-2 {
  align-items: center;
}
.point .flex.col-2 .item {
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
}
.point .flex.col-2 .item:nth-child(odd) {
  flex-direction: row-reverse;
}
.point .flex.col-2 .item:nth-child(odd) .text .point-ttl .point-icon {
  background: #ebebeb;
}
.point .flex.col-2 .item:nth-child(even) {
  flex-direction: row;
  background-color: #ebebeb;
}
.point .flex.col-2 .item .img {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-left: 3rem;
}
.point .flex.col-2 .item .text {
  flex: 1;
  padding-left: 3rem;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.point .flex.col-2 .item .text .point-ttl {
  float: left;
  text-align: center;
}
.point .flex.col-2 .item .text .point-ttl .point-icon {
  font-size: 1.6rem;
  background: #fff;
  border-radius: 3rem;
  padding: 1rem 2rem;
  text-align: center;
}
.point .flex.col-2 .item .text .point-ttl .point-num {
  font-size: 10rem;
  font-family: "Karla", sans-serif;
  font-style: italic;
}
.point .flex.col-2 .item .text .ttl {
  float: right;
  font-size: 3rem;
  margin-top: auto;
  width: 75%;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.point .flex.col-2 .item .text .point-text {
  margin-top: 1.5rem;
}

.tip {
  margin-top: 3rem;
  border: solid 1px #000;
  padding: 2rem;
  position: relative;
  background: #fff;
}
.tip .ttl {
  background: #000;
  margin-bottom: 2rem;
  padding: 2rem;
  font-size: 2.6rem;
  text-align: center;
  color: #fff;
  border-radius: 3rem;
}

#plan .item {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 2rem;
}
#plan .item h3 {
  margin: 0 0 1.5rem;
  color: #f70;
}
#plan .item h3 span {
  color: #000;
}
#plan .item .price {
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
#plan .item .price span {
  font-size: 1.4rem;
}
#plan .item ul {
  text-align: left;
  margin-left: 2rem;
}
#plan .item ul li {
  margin-bottom: 1rem;
  line-height: 1;
  font-size: 1.4rem;
  list-style-type: disc;
}

#product .item a {
  text-decoration: none;
  color: #000;
  line-height: normal;
}
#product .item .text h3 {
  font-size: 2rem;
  font-weight: 500;
  margin: 1.5rem 0 0;
}
#product .item .text p {
  font-size: 1.4rem;
}
#product .item .text .price {
  font-size: 1.6rem;
}
#product .item .text .price span {
  font-size: 2.6rem;
  color: red;
  margin-left: 0.5rem;
}
#product .item .text .category li {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  background: #000;
  padding: 0.5rem;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
#product .item .text .category .new {
  background-color: #fff582;
}
#product .item .text .category .subscription {
  background-color: #144aa6;
}
#product .item .text .btn {
  margin: 1.5rem 0 0;
}
#product .item .text .btn span {
  font-size: 1.4rem;
  min-width: inherit;
  padding: 1rem 2rem;
}
#product .btn {
  margin: 6rem 0 0;
}

/* トップページ
*******************/
.home {
  /* ビデオ */
}
.home .mv {
  background: url("../images/top/mv.jpg") no-repeat center center;
  background-size: cover;
}
.home .mv .lwrap {
  height: 77rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .mv .lwrap .inner {
  display: flex;
}
.home .mv .lwrap h2 {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  writing-mode: vertical-rl;
  margin-left: auto;
  margin-right: auto;
  font-size: 3.6rem;
  color: #fff;
  line-height: 2.5;
  text-shadow: 0 0 4px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.home .mv .lwrap h2 .small {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  display: block;
  margin: 1rem 0 0;
}
.home #company {
  padding: 0 0 9rem;
  background: linear-gradient(180deg, transparent 0%, transparent 33%, #F6F6F6 33%, #F6F6F6 100%);
}
.home #company .lwrap4 > img {
  width: 100%;
  margin: 0 0 6rem;
}
.home #company .lwrap4 .flex {
  margin: 0 3.5rem;
}
.home #company .lwrap4 .flex .item {
  width: 43%;
}
.home #company .lwrap4 .flex .item:nth-child(2) {
  width: 57%;
}
.home #company .lwrap4 .flex .item:nth-child(2) p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.6;
}
.home #company .lwrap4 .flex .item:nth-child(2) .btn {
  text-align: left;
  margin: 7rem 0 0;
}
.home #company .lwrap4 .flex .item:nth-child(2) table th {
  width: 20%;
  text-align: left;
  padding: 1rem;
}
.home #company .lwrap4 .flex .item:nth-child(2) table td a {
  color: #000;
  text-decoration: none;
}
.home #company .lwrap4 .flex .item h3 {
  font-size: 5.5rem;
  font-family: "Karla", sans-serif;
  font-weight: 500;
  font-style: italic;
  margin-top: 1rem;
}
.home #company .lwrap4 .flex .item h3 .small {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.8rem;
  font-weight: 500;
  font-style: normal;
  margin: 2rem 0 0 1rem;
  display: block;
}
.home #company .btn {
  margin: 6rem 0 0;
}
.home #company .btn.pc {
  text-align: left;
}
.home #news .dl-style01 dt, .home #news .dl-style01 dd {
  line-height: normal;
}
.home #news .dl-style01 dt a, .home #news .dl-style01 dd a {
  line-height: normal;
}
.home #news .btn {
  margin: 6rem 0 0;
}
.home #blog .item {
  background: #fff;
}
.home #blog .item a {
  text-decoration: none;
  color: #000;
  line-height: normal;
  display: block;
}
.home #blog .item .img {
  line-height: 1;
}
.home #blog .item .img img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.home #blog .item .text {
  padding: 2rem;
  position: relative;
}
.home #blog .item .text h3 {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 2rem;
  margin: 1.5rem 0;
}
.home #blog .item .text p {
  font-size: 1.4rem;
}
.home #blog .item .text .category {
  position: absolute;
  top: 0;
  left: 0;
}
.home #blog .item .text .category li {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  background: #000;
  padding: 0.5rem;
}
.home #blog .item .text time {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.2rem;
  line-height: 1;
}
.home #blog .btn {
  margin: 6rem 0 0;
}

body:not(.home) .mv {
  position: relative;
}
body:not(.home) .mv::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 14, 18, 0.7);
  content: "";
}
body:not(.home) .mv .lwrap {
  padding: 24rem 0 12rem;
}
body:not(.home) .mv .inner {
  width: 100%;
}
body:not(.home) .mv h1 {
  font-family: "Karla", sans-serif;
  text-align: center;
  font-size: 5.5rem;
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
}
body:not(.home) .mv h1 .small {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 1.5rem 0 0;
}
body:not(.home) .nav-menu li a {
  color: #fff;
}
body:not(.home) .nav-menu li.active a {
  color: #000000;
}
body:not(.home) .nav-menu li .children-menu li a {
  color: #000000;
}

@media screen and (max-width: 750px) {
  body:not(.home) .nav-menu li.active a {
    color: #fff;
  }
  body:not(.home) .nav-menu li .children-menu li a {
    color: #fff;
  }
  body:not(.home) .mv .lwrap {
    padding: 15rem 0 6rem;
  }
}
.contact-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  align-items: center;
}
.contact-wrap .tel {
  text-align: center;
  font-size: 2.8rem;
}
.contact-wrap .tel a {
  font-size: 6rem;
  color: #fff;
  text-decoration: none;
}
.contact-wrap .item {
  width: 48%;
}
.contact-wrap .item.w100 {
  width: 100%;
}
.contact-wrap .item .ttl {
  margin: 0 0 1rem;
}
.contact-wrap .item .required {
  margin-left: 2rem;
  background: red;
  padding: 0.5rem;
  line-height: 1;
  font-size: 1.4rem;
}
.contact-wrap .item table {
  width: 100%;
  text-align: left;
}
.contact-wrap .item table tr {
  border-bottom: 1px solid #A1A1A1;
}
.contact-wrap .item table th {
  vertical-align: top;
  width: 40%;
  padding: 1rem;
}
.contact-wrap .item table td {
  padding: 1rem;
}
.contact-wrap input[type=submit] {
  width: 100% !important;
}
.contact-wrap input[type=text], .contact-wrap input[type=tel], .contact-wrap input[type=email] {
  width: 100% !important;
  padding: 1rem;
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 0.4rem;
}
.contact-wrap input[type=checkbox], .contact-wrap input[type=radio] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  background: #fff;
  border: 1px solid #cecece;
  display: inline-block;
  margin-top: 0;
}
.contact-wrap select {
  width: 100% !important;
  padding: 1rem;
  background: #fff;
  cursor: pointer;
  border: 1px solid #cecece;
  border-radius: 0.4rem;
  padding-right: 3rem;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  color: #000;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .contact-wrap select {
    -webkit-appearance: menulist-button !important;
    height: 50px;
  }
}
.contact-wrap textarea {
  width: 100% !important;
  height: 12rem !important;
  padding: 1rem;
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 0.4rem;
}
.contact-wrap .js-mw-checkbox {
  text-align: center;
  margin: 3.5rem 0 0;
}
.contact-wrap .js-mw-checkbox a {
  color: #fff;
}
.contact-wrap .js-mw-checkbox input {
  display: inline-block;
  width: inherit !important;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
.contact-wrap .wpcf7-response-output {
  font-size: 1.6rem;
  padding: 2rem !important;
}

.submit-wrap {
  margin: 3.5rem 0 0;
  text-align: center;
}
.submit-wrap button, .submit-wrap .confirmation {
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: 1px solid #000000;
  padding: 1.8rem 0;
  min-width: 21.4rem;
  background-color: #000000;
  color: #ffffff;
  position: relative;
  transition: 0.3s;
}
.submit-wrap button::after, .submit-wrap .confirmation::after {
  content: "";
  display: block;
  width: 5rem;
  height: 1.1rem;
  background-size: 100%;
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%) translateX(0%);
}
.submit-wrap button:hover, .submit-wrap .confirmation:hover {
  opacity: 0.7;
}

body:not(.home) .contact-wrap {
  display: inherit;
}
body:not(.home) .btn {
  margin-top: 6rem;
}

@media screen and (max-width: 1400px) {
  .lwrap3 {
    margin: 0 1.5rem;
  }
}
@media screen and (max-width: 1253px) {
  .lwrap2 {
    margin: 0 1.5rem;
  }
}
@media screen and (max-width: 1230px) {
  .lwrap4 {
    margin: 0 1.5rem;
  }
  #message {
    position: relative;
  }
  #message .lwrap {
    max-width: inherit;
    text-align: center;
  }
  #message .message-img {
    z-index: -1;
    opacity: 0.3 !important;
    width: 15% !important;
  }
}
@media screen and (max-width: 1158px) {
  .lwrap {
    margin: 0 1.5rem;
  }
  .contact-wrap {
    display: block;
    max-width: 800px;
    margin: auto;
  }
  .contact-wrap .item {
    width: 100%;
    margin-top: 3rem;
  }
  .contact-wrap .item table th {
    width: 30%;
  }
  .contact-wrap .item .wpcf7-response-output {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1090px) {
  .lwrap5 {
    margin: 0 1.5rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  html {
    font-size: 1.33333vw;
  }
  p, a, li, dd, dt, th, td {
    font-size: 2.8rem;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .tel a {
    pointer-events: auto;
  }
  .lwrap, .lwrap2, .lwrap3, .lwrap4, .lwrap5 {
    margin: 0 2.5rem;
  }
  /* margin
  *******************/
  .sp-mt-0 {
    margin-top: 0rem !important;
  }
  .sp-mb-0 {
    margin-bottom: 0rem !important;
  }
  .sp-mt-5 {
    margin-top: 0.5rem !important;
  }
  .sp-mb-5 {
    margin-bottom: 0.5rem !important;
  }
  .sp-mt-10 {
    margin-top: 1rem !important;
  }
  .sp-mb-10 {
    margin-bottom: 1rem !important;
  }
  .sp-mt-15 {
    margin-top: 1.5rem !important;
  }
  .sp-mb-15 {
    margin-bottom: 1.5rem !important;
  }
  .sp-mt-20 {
    margin-top: 2rem !important;
  }
  .sp-mb-20 {
    margin-bottom: 2rem !important;
  }
  .sp-mt-25 {
    margin-top: 2.5rem !important;
  }
  .sp-mb-25 {
    margin-bottom: 2.5rem !important;
  }
  .sp-mt-30 {
    margin-top: 3rem !important;
  }
  .sp-mb-30 {
    margin-bottom: 3rem !important;
  }
  .sp-mt-35 {
    margin-top: 3.5rem !important;
  }
  .sp-mb-35 {
    margin-bottom: 3.5rem !important;
  }
  .sp-mt-40 {
    margin-top: 4rem !important;
  }
  .sp-mb-40 {
    margin-bottom: 4rem !important;
  }
  .sp-mt-45 {
    margin-top: 4.5rem !important;
  }
  .sp-mb-45 {
    margin-bottom: 4.5rem !important;
  }
  .sp-mt-50 {
    margin-top: 5rem !important;
  }
  .sp-mb-50 {
    margin-bottom: 5rem !important;
  }
  .sp-mt-55 {
    margin-top: 5.5rem !important;
  }
  .sp-mb-55 {
    margin-bottom: 5.5rem !important;
  }
  .sp-mt-60 {
    margin-top: 6rem !important;
  }
  .sp-mb-60 {
    margin-bottom: 6rem !important;
  }
  .sp-mt-65 {
    margin-top: 6.5rem !important;
  }
  .sp-mb-65 {
    margin-bottom: 6.5rem !important;
  }
  .sp-mt-70 {
    margin-top: 7rem !important;
  }
  .sp-mb-70 {
    margin-bottom: 7rem !important;
  }
  .sp-mt-75 {
    margin-top: 7.5rem !important;
  }
  .sp-mb-75 {
    margin-bottom: 7.5rem !important;
  }
  .sp-mt-80 {
    margin-top: 8rem !important;
  }
  .sp-mb-80 {
    margin-bottom: 8rem !important;
  }
  .sp-mt-85 {
    margin-top: 8.5rem !important;
  }
  .sp-mb-85 {
    margin-bottom: 8.5rem !important;
  }
  .sp-mt-90 {
    margin-top: 9rem !important;
  }
  .sp-mb-90 {
    margin-bottom: 9rem !important;
  }
  .sp-mt-95 {
    margin-top: 9.5rem !important;
  }
  .sp-mb-95 {
    margin-bottom: 9.5rem !important;
  }
  .sp-mt-100 {
    margin-top: 10rem !important;
  }
  .sp-mb-100 {
    margin-bottom: 10rem !important;
  }
  .sp-mt-105 {
    margin-top: 10.5rem !important;
  }
  .sp-mb-105 {
    margin-bottom: 10.5rem !important;
  }
  .sp-mt-110 {
    margin-top: 11rem !important;
  }
  .sp-mb-110 {
    margin-bottom: 11rem !important;
  }
  .sp-mt-115 {
    margin-top: 11.5rem !important;
  }
  .sp-mb-115 {
    margin-bottom: 11.5rem !important;
  }
  .sp-mt-120 {
    margin-top: 12rem !important;
  }
  .sp-mb-120 {
    margin-bottom: 12rem !important;
  }
  .sp-mt-125 {
    margin-top: 12.5rem !important;
  }
  .sp-mb-125 {
    margin-bottom: 12.5rem !important;
  }
  .sp-mt-130 {
    margin-top: 13rem !important;
  }
  .sp-mb-130 {
    margin-bottom: 13rem !important;
  }
  .sp-mt-135 {
    margin-top: 13.5rem !important;
  }
  .sp-mb-135 {
    margin-bottom: 13.5rem !important;
  }
  .sp-mt-140 {
    margin-top: 14rem !important;
  }
  .sp-mb-140 {
    margin-bottom: 14rem !important;
  }
  .sp-mt-145 {
    margin-top: 14.5rem !important;
  }
  .sp-mb-145 {
    margin-bottom: 14.5rem !important;
  }
  .sp-mt-150 {
    margin-top: 15rem !important;
  }
  .sp-mb-150 {
    margin-bottom: 15rem !important;
  }
  .section {
    padding: 6rem 0;
  }
  .ttl01 {
    font-size: 6rem;
    margin: 0 0 3rem;
  }
  .ttl01 .small {
    font-size: 2.6rem;
    margin: 2rem 0 0;
  }
  .ttl02 {
    font-size: 6rem;
    margin: 0 0 3rem;
  }
  .ttl02 .small {
    font-size: 2.6rem;
    margin: 2rem 0 0;
  }
  .ttl03 {
    font-size: 4.5rem;
    text-align: center;
    margin: 6rem 0 3rem;
  }
  .ttl03 .small {
    font-size: 2.2rem;
    margin: 2rem 0 0;
  }
  .ttl04 {
    font-size: 4.5rem;
    margin: 6rem 0 3rem;
  }
  .ttl04 .small {
    font-size: 2.2rem;
    margin: 2rem 0 0;
  }
  .lead {
    font-size: 2rem;
    text-align: left;
  }
  .btn a, .btn span {
    font-size: 2.4rem;
    min-width: 36rem;
    padding: 2.7rem 0;
    border-radius: 7rem;
  }
  .it-st-01 .item {
    width: 100%;
  }
  .dl-style01 dt {
    width: 23rem;
    font-size: 2.6rem;
    padding: 3.5rem 0;
    border-bottom: 0.2rem solid #000000;
    line-height: 2.14;
  }
  .dl-style01 dd {
    width: calc(100% - 23rem);
    font-size: 2.6rem;
    padding: 3.5rem 1.5rem 3.5rem 4rem;
    border-bottom: 0.1rem solid #DFDFDF;
    line-height: 2.14;
  }
  .dl-style01 dd a {
    font-size: 2.6rem;
    line-height: 2.14;
  }
  .dl-style01 dd table th {
    width: 100%;
    display: block;
    text-align: left;
  }
  .dl-style01 dd table td {
    width: 100%;
    display: block;
  }
  .js-scrollable table th, .js-scrollable table td {
    white-space: nowrap;
  }
  .contact {
    background-image: url("../images/common/sp-contact-bg.jpg");
  }
  #message p {
    font-size: 2.4rem;
    text-align: left;
  }
  #message .lead {
    font-size: 3rem;
  }
  #message .message-img {
    width: 30% !important;
  }
  #service .flex.col-2 .item, #service .flex.col-3 .item, #service .flex.col-4 .item {
    margin: 0 0 3rem 0;
    width: 100%;
  }
  #service .flex.col-2 .item:last-child, #service .flex.col-3 .item:last-child, #service .flex.col-4 .item:last-child {
    margin-bottom: 0;
  }
  #service .flex.col-2 .item a i, #service .flex.col-3 .item a i, #service .flex.col-4 .item a i {
    font-size: 3rem;
  }
  #service .flex.col-2 .item .img img, #service .flex.col-3 .item .img img, #service .flex.col-4 .item .img img {
    width: 100%;
  }
  #service .flex.col-2 .item .text h2, #service .flex.col-2 .item .text h3, #service .flex.col-3 .item .text h2, #service .flex.col-3 .item .text h3, #service .flex.col-4 .item .text h2, #service .flex.col-4 .item .text h3 {
    font-size: 3.6rem;
    margin: 2rem 0 3rem;
  }
  #service .flex.col-2 .item .text p, #service .flex.col-3 .item .text p, #service .flex.col-4 .item .text p {
    font-size: 2.4rem;
  }
  #service01 .flex.col-2 {
    display: block;
  }
  #service01 .flex.col-2 .item {
    display: block;
    width: 100%;
    margin-bottom: 3rem;
  }
  #service01 .flex.col-2 .item:last-child {
    margin-bottom: 0;
  }
  #service01 .flex.col-2 .item .img {
    flex: auto;
    display: block;
  }
  #service01 .flex.col-2 .item .text {
    flex: auto;
  }
  #service01 .flex.col-2 .item .text .content {
    width: 90%;
    background: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem;
    margin-top: -24rem;
  }
  #service01 .flex.col-2 .item .text .content h3 {
    font-size: 3.6rem;
    margin: 0 0 3rem;
  }
  #service01 .flex.col-2 .item .text .content p {
    font-size: 2.4rem;
  }
  #service01 .flex.col-2 .item:nth-child(even) .text {
    text-align: right;
  }
  #service01 .flex.col-2 .item:nth-child(even) .text .content {
    text-align: left;
    display: inline-block;
  }
  #service01 .btn {
    margin: 20rem 0 0;
  }
  .about .item {
    margin-bottom: 3rem !important;
  }
  .about .item .img img {
    width: 90%;
  }
  .about .item .text {
    position: static;
    width: 100%;
  }
  .about .item .text h3 {
    font-size: 3.6rem;
    margin: 0 0 3rem;
  }
  .about .item .text p {
    font-size: 2.4rem;
  }
  .about .item:last-child {
    margin-bottom: 0 !important;
  }
  .about01 .item {
    margin-bottom: 3rem !important;
  }
  .about01 .item .img {
    z-index: 0;
  }
  .about01 .item .img img {
    width: 60%;
  }
  .about01 .item .text {
    position: static;
    width: 90%;
    margin-left: auto;
    margin-top: -6rem;
    padding: 3rem !important;
  }
  .about01 .item .text h3 {
    font-size: 3.6rem;
    margin: 0 0 3rem;
  }
  .about01 .item .text p, .about01 .item .text li {
    font-size: 2.4rem;
  }
  .about01 .item:nth-child(even) .text {
    margin-left: 10%;
  }
  .about01 .item:last-child {
    margin-bottom: 0 !important;
  }
  #works h3 {
    font-size: 2rem;
  }
  #voice .swiper-slide {
    padding: 2rem;
  }
  #voice .swiper-slide .meta .info {
    font-size: 3rem;
  }
  #voice .swiper-slide .text h3 {
    font-size: 3.6rem;
  }
  #voice .swiper-slide .text p {
    font-size: 2.4rem;
  }
  #voice .swiper-button-prev {
    left: 1.5rem;
  }
  #voice .swiper-button-next {
    right: 1.5rem;
  }
  #flow {
    background-image: url(../images/service/bg_flow_pc.jpg);
  }
  #flow .flow-list {
    display: grid;
    padding-right: 0;
  }
  #flow .flow-item {
    row-gap: 7rem;
  }
  #flow .flow-item::before {
    left: 0.5rem;
    width: 10rem;
    height: 10rem;
    font-size: 3.2rem;
  }
  #flow .flow-item-img {
    height: 20rem;
  }
  #flow .flow-item-img::before {
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    border-width: 6rem 35rem 0 35rem;
    border-color: #fff transparent transparent transparent;
  }
  #flow .flow-item-img img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24rem;
  }
  #flow .flow-item-title {
    padding-left: 0;
    font-size: 3rem;
  }
  .point .flex.col-2 .item {
    position: relative;
  }
  .point .flex.col-2 .item .img {
    top: 2rem;
    right: 2rem;
    position: absolute;
    width: 40%;
    opacity: 0.3 !important;
  }
  .point .flex.col-2 .item .text {
    position: relative;
    flex: inherit;
    margin-right: auto;
    width: 100%;
  }
  .point .flex.col-2 .item .text .point-ttl .point-icon {
    font-size: 1.6rem;
  }
  .point .flex.col-2 .item .text .point-ttl .point-num {
    font-size: 6rem;
  }
  .point .flex.col-2 .item .text .ttl {
    font-size: 3.6rem;
  }
  .point .flex.col-2 .item .text .point-text {
    font-size: 2.4rem;
  }
  .tip .ttl {
    font-size: 3.6rem;
    border-radius: 7rem;
  }
  .tip p, .tip li {
    font-size: 2.4rem;
  }
  #plan .item {
    width: 48.5%;
    margin-bottom: 2rem;
  }
  #plan .item .price {
    font-size: 3rem;
  }
  #plan .item .price span {
    font-size: 2rem;
  }
  #plan .item ul {
    margin-left: 3rem;
  }
  #plan .item ul li {
    font-size: 2.2rem;
  }
  #product .col-4 .item {
    width: 48%;
    margin: 0 0 3rem;
  }
  #product .col-4 .item .text h3 {
    font-size: 3rem;
  }
  #product .col-4 .item .text p {
    font-size: 2.4rem;
  }
  #product .col-4 .item .text .price {
    font-size: 2.6rem;
  }
  #product .col-4 .item .text .price span {
    font-size: 3.6rem;
  }
  #product .col-4 .item .text .category li {
    font-size: 2rem;
    padding: 1rem;
  }
  #product .col-4 .item .text .btn span {
    width: 100%;
    font-size: 2.4rem;
  }
  .home .mv {
    background: url(../images/top/sp-mv.jpg) no-repeat bottom center;
    background-size: cover;
    margin-top: 13rem;
  }
  .home .mv .lwrap {
    height: 42rem;
    align-items: inherit;
  }
  .home .mv .lwrap h2 {
    position: relative;
    top: 5.5rem;
    font-size: 2.6rem;
  }
  .home .mv .lwrap h2 .small {
    font-size: 2.8rem;
    line-height: 1.75;
    margin: 1.5rem 0 0;
  }
  .home #company {
    padding: 0 0 6rem;
    background: linear-gradient(180deg, transparent 0%, transparent 15%, #F6F6F6 15%, #F6F6F6 100%);
  }
  .home #company .lwrap4 img {
    margin-bottom: 0;
  }
  .home #company .lwrap4 .flex {
    flex-wrap: wrap;
    margin: -17rem 0 0 0;
  }
  .home #company .lwrap4 .flex .item {
    width: 100%;
  }
  .home #company .lwrap4 .flex .item:nth-child(2) {
    width: 100%;
  }
  .home #company .lwrap4 .flex .item:nth-child(2) p {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 2.07;
  }
  .home #company .lwrap4 .flex .item:nth-child(2) .btn {
    text-align: center;
    margin: 14rem 0 0;
  }
  .home #company .lwrap4 .flex .item h3 {
    color: #fff;
    font-size: 6rem;
    text-align: center;
    margin: 0 0 6rem;
  }
  .home #company .lwrap4 .flex .item h3 .small {
    font-size: 2.6rem;
    margin: 4rem 0 0;
  }
  .home #blog .col-4 .item {
    width: 48%;
    margin: 0 0 3rem;
  }
  .home #blog .col-4 .item:last-child, .home #blog .col-4 .item:nth-child(3) {
    margin-bottom: 0;
  }
  .home #blog .col-4 .item .text h3 {
    font-size: 3rem;
    margin-top: 3rem;
  }
  .home #blog .col-4 .item .text p {
    font-size: 2.4rem;
  }
  .home #blog .col-4 .item .text .category li {
    font-size: 2rem;
    padding: 1rem;
  }
  .home #blog .col-4 .item .text time {
    font-size: 2rem;
  }
  .home .access iframe {
    height: 400px;
  }
  body:not(.home) .mv {
    margin-top: 12rem;
  }
  body:not(.home) .mv h1 {
    font-size: 6rem;
    margin: 15.2rem 0 0;
  }
  body:not(.home) .mv h1 .small {
    font-size: 2.6rem;
    margin: 3rem 0 0;
  }
  .contact-wrap .item table th {
    padding-bottom: 0;
    width: 100%;
    display: block;
  }
  .contact-wrap .item table td {
    width: 100%;
    display: block;
  }
  .contact-wrap .item table input {
    font-size: 16px;
  }
  .contact-wrap .item table textarea {
    font-size: 16px;
  }
  .submit-wrap button, .submit-wrap .confirmation {
    font-size: 2.6rem;
    padding: 4rem 0;
    border-radius: 7rem;
  }
  body:not(.home) .btn {
    margin-top: 3rem;
  }
}
.not-found h1 {
  font-size: 5.6rem;
  margin-bottom: 5rem;
}

/* アーカイブ
*******************/
.archive .mv, .blog .mv {
  background: url("../images/top/mv.jpg") no-repeat center center;
  background-size: cover;
}
.archive .mv .lwrap h1, .blog .mv .lwrap h1 {
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: -4rem;
  text-align: center;
}
.archive .mv .lwrap h1 .small, .blog .mv .lwrap h1 .small {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  display: block;
  margin: 1rem 0 0;
}
.archive #blog .item, .blog #blog .item {
  background: #fff;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
}
.archive #blog .item a, .blog #blog .item a {
  text-decoration: none;
  color: #000;
  line-height: normal;
}
.archive #blog .item .text, .blog #blog .item .text {
  padding: 2rem;
  position: relative;
  margin-top: -3rem;
  background: rgba(255, 255, 255, 0.8);
}
.archive #blog .item .text h3, .blog #blog .item .text h3 {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 2rem;
  margin: 1.5rem 0;
}
.archive #blog .item .text p, .blog #blog .item .text p {
  font-size: 1.4rem;
}
.archive #blog .item .text .category, .blog #blog .item .text .category {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}
.archive #blog .item .text .category li, .blog #blog .item .text .category li {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  background: #000;
  padding: 0.5rem;
  margin-right: 0.5rem;
}
.archive #blog .item .text time, .blog #blog .item .text time {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.2rem;
  line-height: 1;
}
.archive #blog .column, .blog #blog .column {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.archive #blog .column .item, .blog #blog .column .item {
  margin-bottom: 3rem;
}
.archive #blog .column .item a, .blog #blog .column .item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.archive #blog .column .item a .img, .blog #blog .column .item a .img {
  width: 30%;
  line-height: 1;
}
.archive #blog .column .item a .img img, .blog #blog .column .item a .img img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.archive #blog .column .item a .text, .blog #blog .column .item a .text {
  width: 70%;
  margin-top: 0;
}
.archive #blog .btn, .blog #blog .btn {
  margin: 6rem 0 0;
}
.archive #news, .blog #news {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.archive #news .dl-style01 dt, .archive #news .dl-style01 dd, .blog #news .dl-style01 dt, .blog #news .dl-style01 dd {
  line-height: normal;
}
.archive #news .dl-style01 dt a, .archive #news .dl-style01 dd a, .blog #news .dl-style01 dt a, .blog #news .dl-style01 dd a {
  line-height: normal;
}
.archive #product .item, .blog #product .item {
  margin-bottom: 2rem;
}
.archive #product .item a, .blog #product .item a {
  text-decoration: none;
  color: #000;
  line-height: normal;
}
.archive #product .item .text h3, .blog #product .item .text h3 {
  font-size: 2rem;
  font-weight: 500;
  margin: 1.5rem 0 0;
}
.archive #product .item .text p, .blog #product .item .text p {
  font-size: 1.4rem;
}
.archive #product .item .text .price, .blog #product .item .text .price {
  font-size: 1.6rem;
}
.archive #product .item .text .price span, .blog #product .item .text .price span {
  font-size: 2.6rem;
  color: red;
  margin-left: 0.5rem;
}
.archive #product .item .text .category li, .blog #product .item .text .category li {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  background: #000;
  padding: 0.5rem;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.archive #product .item .text .category .new, .blog #product .item .text .category .new {
  background-color: #fff582;
}
.archive #product .item .text .category .subscription, .blog #product .item .text .category .subscription {
  background-color: #144aa6;
}
.archive #product .item .text .btn, .blog #product .item .text .btn {
  margin: 1.5rem 0 0;
}
.archive #product .item .text .btn span, .blog #product .item .text .btn span {
  font-size: 1.4rem;
  min-width: inherit;
  padding: 1rem 2rem;
}
.archive .custom-pagination, .blog .custom-pagination {
  margin-top: 6rem;
}
.archive .custom-pagination .screen-reader-text, .blog .custom-pagination .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.archive .custom-pagination .screen-reader-text:focus, .blog .custom-pagination .screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
.archive .c-pagination, .blog .c-pagination {
  display: flex;
  justify-content: center;
}
.archive .c-pagination .page-numbers, .blog .c-pagination .page-numbers {
  display: grid;
  place-items: center;
  width: 4rem;
  height: auto;
  aspect-ratio: 1;
  font-size: 0.875em;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 2px solid rgba(13, 57, 107, 0.2);
  transition: border-color var(--transition-duration) var(--transition-timing-function);
  background: none;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}
.archive .c-pagination .page-numbers:focus-visible, .blog .c-pagination .page-numbers:focus-visible {
  border-color: #0d396b;
}
@media (any-hover: hover) {
  .archive .c-pagination .page-numbers:hover, .blog .c-pagination .page-numbers:hover {
    border-color: #0d396b;
  }
}
.archive .c-pagination .current, .blog .c-pagination .current {
  pointer-events: none;
  border-color: #0d396b;
}

@media screen and (max-width: 750px) {
  .not-found h1 {
    font-size: 3.8rem;
    margin-bottom: 5rem;
  }
  .archive .mv .lwrap h1, .blog .mv .lwrap h1 {
    top: 38rem;
    font-size: 6rem;
  }
  .archive .mv .lwrap h1 .small, .blog .mv .lwrap h1 .small {
    font-size: 2.8rem;
    line-height: 1.75;
    margin: 1.5rem 0 0;
  }
  .archive #blog .col-4 .item, .blog #blog .col-4 .item {
    width: 48%;
    margin: 0 0 3rem;
  }
  .archive #blog .col-4 .item .text h3, .blog #blog .col-4 .item .text h3 {
    font-size: 3rem;
  }
  .archive #blog .col-4 .item .text p, .blog #blog .col-4 .item .text p {
    font-size: 2.4rem;
  }
  .archive #blog .col-4 .item .text .category, .blog #blog .col-4 .item .text .category {
    top: -1rem;
  }
  .archive #blog .col-4 .item .text .category li, .blog #blog .col-4 .item .text .category li {
    font-size: 2rem;
    padding: 1rem;
  }
  .archive #blog .col-4 .item .text time, .blog #blog .col-4 .item .text time {
    font-size: 2rem;
  }
  .archive #blog .column .item a .img, .blog #blog .column .item a .img {
    width: 40%;
  }
  .archive #blog .column .item a .img img, .blog #blog .column .item a .img img {
    height: 160px;
  }
  .archive #blog .column .item a .text, .blog #blog .column .item a .text {
    width: 60%;
    align-items: center;
    display: flex;
  }
  .archive #blog .column .item a .text h3, .blog #blog .column .item a .text h3 {
    font-size: 3rem;
    margin: 0;
  }
  .archive #blog .column .item a .text p, .blog #blog .column .item a .text p {
    font-size: 2.4rem;
    display: none;
  }
  .archive #blog .column .item a .text .category li, .blog #blog .column .item a .text .category li {
    font-size: 2rem;
    padding: 1rem;
  }
  .archive #blog .column .item a .text time, .blog #blog .column .item a .text time {
    font-size: 2rem;
    bottom: 2rem;
    top: inherit;
  }
  .archive #news, .blog #news {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .archive #product .col-4 .item, .blog #product .col-4 .item {
    width: 48%;
    margin: 0 0 3rem;
  }
  .archive #product .col-4 .item .text h3, .blog #product .col-4 .item .text h3 {
    font-size: 3rem;
  }
  .archive #product .col-4 .item .text p, .blog #product .col-4 .item .text p {
    font-size: 2.4rem;
  }
  .archive #product .col-4 .item .text .price, .blog #product .col-4 .item .text .price {
    font-size: 2.6rem;
  }
  .archive #product .col-4 .item .text .price span, .blog #product .col-4 .item .text .price span {
    font-size: 3.6rem;
  }
  .archive #product .col-4 .item .text .category li, .blog #product .col-4 .item .text .category li {
    font-size: 2rem;
    padding: 1rem;
  }
  .archive #product .col-4 .item .text .btn span, .blog #product .col-4 .item .text .btn span {
    width: 100%;
    font-size: 2.4rem;
  }
  .archive .c-pagination .page-numbers, .blog .c-pagination .page-numbers {
    font-size: 2.4rem;
  }
}
/* 詳細
*******************/
.single .nav-menu li a {
  color: #fff;
}
.single .mv {
  background: url("../images/top/mv.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}
.single .mv::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 14, 18, 0.7);
  content: "";
}
.single .mv .lwrap h1, .single .mv .lwrap p {
  font-family: "Karla", sans-serif;
  font-style: italic;
  font-size: 5.6rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  margin-top: -4rem;
  text-align: center;
}
.single .mv .lwrap h1 .small, .single .mv .lwrap p .small {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  display: block;
  margin: 1rem 0 0;
}
.single .mv .lwrap h1 {
  font-style: normal;
}
.single .btn {
  margin-top: 6rem;
}
.single #news, .single #blog {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.single #news h1, .single #blog h1 {
  font-size: 3.8rem;
  margin-bottom: 6rem;
  font-weight: normal;
}
.single #news h2, .single #blog h2 {
  font-size: 3.4rem;
  margin: 5rem 0;
  padding: 2rem;
  background: #000;
  color: #fff;
}
.single #news h3, .single #blog h3 {
  font-size: 3rem;
  margin: 4rem 0;
  position: relative;
  padding-bottom: 2rem;
}
.single #news h3::before, .single #blog h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100px;
  height: 0.5rem;
  background: #000;
  z-index: 1;
}
.single #news h3::after, .single #blog h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5rem;
  background: #bbb;
}
.single #news h4, .single #blog h4 {
  font-size: 2.6rem;
  margin: 3rem 0;
  padding: 0 0 1.5rem 0;
  border-bottom: 1px solid #000;
}
.single #news p, .single #blog p {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 2;
}
.single #news p a, .single #blog p a {
  color: #f70;
}
.single #news ol, .single #blog ol {
  list-style-type: decimal;
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.single #news ol li, .single #blog ol li {
  line-height: 2;
}
.single #news ul, .single #blog ul {
  list-style-type: disc;
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.single #news ul li, .single #blog ul li {
  line-height: 2;
}
.single #news .info, .single #blog .info {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-bottom: 3rem;
}
.single #news .info .category, .single #blog .info .category {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}
.single #news .info .category li, .single #blog .info .category li {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  background: #000;
  padding: 1rem;
  margin-right: 1rem;
}
.single #news .info time, .single #blog .info time {
  margin-left: 1rem;
  font-size: 1.4rem;
}
.single #toc_container {
  margin-top: 3rem;
  width: 100%;
}
.single #toc_container a {
  color: #f70;
}
.single #product .item .slider-thumbnail {
  margin-bottom: 3rem;
}
.single #product .item .slider-thumbnail .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.5s;
  width: 33.3333333333%;
}
.single #product .item .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.single #product .item .swiper-slide img {
  height: auto;
  width: 100%;
}
.single #product .item h1 {
  font-size: 3.4rem;
  margin-bottom: 3rem;
}
.single #product .item h2 {
  font-size: 3rem;
  margin: 3rem 0;
  padding: 1rem;
  background: #000;
  color: #fff;
}
.single #product .item iframe {
  margin-top: 3rem;
}
.single #product .item .category li {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  background: #000;
  padding: 0.5rem;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.single #product .item .category .new {
  background-color: #fff582;
}
.single #product .item .category .subscription {
  background-color: #144aa6;
}
.single #product .item .price {
  font-size: 1.6rem;
}
.single #product .item .price span {
  font-size: 2.6rem;
  color: red;
  margin-left: 0.5rem;
}
.single #product .item .btn {
  margin-top: 3rem;
}
.single #product .item .btn a {
  color: #fff;
}

@media screen and (max-width: 750px) {
  .single .mv .lwrap h1, .single .mv .lwrap p {
    top: 38rem;
    font-size: 6rem;
  }
  .single .mv .lwrap h1 .small, .single .mv .lwrap p .small {
    font-size: 2.8rem;
    line-height: 1.75;
    margin: 1.5rem 0 0;
  }
  .single .info .category li {
    font-size: 2.4rem;
  }
  .single .info time {
    font-size: 2.4rem;
  }
  .single #news h1, .single #blog h1 {
    margin-bottom: 5rem;
  }
  .single #news h2, .single #blog h2 {
    margin-bottom: 4rem;
  }
  .single #news h3, .single #blog h3 {
    margin-bottom: 3rem;
  }
  .single #news h4, .single #blog h4 {
    margin-bottom: 2rem;
  }
  .single #news p, .single #blog p {
    font-size: 2.6rem;
  }
  .single #news ol li, .single #blog ol li {
    font-size: 2.6rem;
  }
  .single #news ul li, .single #blog ul li {
    font-size: 2.6rem;
  }
  .single #news .info .category li, .single #blog .info .category li {
    font-size: 2.4rem;
  }
  .single #news .info time, .single #blog .info time {
    font-size: 2.4rem;
  }
  .single #product .item {
    width: 100%;
  }
  .single #product .item h1 {
    font-size: 4rem;
    margin-top: 6rem;
  }
  .single #product .item iframe {
    width: 100%;
  }
  .single #product .item .category li {
    font-size: 2rem;
    padding: 1rem;
  }
  .single #product .item .price {
    font-size: 2.6rem;
  }
  .single #product .item .price span {
    font-size: 3.6rem;
  }
}
/* ページ
*******************/
.page-template-default .mv, .page-template-page-contact .mv, .error404 .mv, .search .mv, .single-result .mv, .single-schedule .mv {
  background: url("../images/top/mv.jpg") no-repeat center center;
  background-size: cover;
}
.page-template-default .mv .lwrap h1, .page-template-page-contact .mv .lwrap h1, .error404 .mv .lwrap h1, .search .mv .lwrap h1, .single-result .mv .lwrap h1, .single-schedule .mv .lwrap h1 {
  font-family: "Karla", sans-serif;
  font-style: italic;
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: -4rem;
  text-align: center;
}
.page-template-default .mv .lwrap h1 .small, .page-template-page-contact .mv .lwrap h1 .small, .error404 .mv .lwrap h1 .small, .search .mv .lwrap h1 .small, .single-result .mv .lwrap h1 .small, .single-schedule .mv .lwrap h1 .small {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  display: block;
  margin: 1rem 0 0;
}
.page-template-default .btn, .page-template-page-contact .btn, .error404 .btn, .search .btn, .single-result .btn, .single-schedule .btn {
  margin-top: 6rem;
}
.page-template-default .entry-content, .page-template-page-contact .entry-content, .error404 .entry-content, .search .entry-content, .single-result .entry-content, .single-schedule .entry-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-template-default .entry-content h1, .page-template-page-contact .entry-content h1, .error404 .entry-content h1, .search .entry-content h1, .single-result .entry-content h1, .single-schedule .entry-content h1 {
  font-size: 3.8rem;
  margin-bottom: 6rem;
  font-weight: normal;
}
.page-template-default .entry-content h2, .page-template-page-contact .entry-content h2, .error404 .entry-content h2, .search .entry-content h2, .single-result .entry-content h2, .single-schedule .entry-content h2 {
  font-size: 3.4rem;
  margin: 5rem 0;
  padding: 2rem;
  background: #000;
  color: #fff;
}
.page-template-default .entry-content h3, .page-template-page-contact .entry-content h3, .error404 .entry-content h3, .search .entry-content h3, .single-result .entry-content h3, .single-schedule .entry-content h3 {
  font-size: 3rem;
  margin: 4rem 0;
  position: relative;
  padding-bottom: 2rem;
}
.page-template-default .entry-content h3::before, .page-template-page-contact .entry-content h3::before, .error404 .entry-content h3::before, .search .entry-content h3::before, .single-result .entry-content h3::before, .single-schedule .entry-content h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100px;
  height: 0.5rem;
  background: #000;
  z-index: 1;
}
.page-template-default .entry-content h3::after, .page-template-page-contact .entry-content h3::after, .error404 .entry-content h3::after, .search .entry-content h3::after, .single-result .entry-content h3::after, .single-schedule .entry-content h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5rem;
  background: #bbb;
}
.page-template-default .entry-content h4, .page-template-page-contact .entry-content h4, .error404 .entry-content h4, .search .entry-content h4, .single-result .entry-content h4, .single-schedule .entry-content h4 {
  font-size: 2.6rem;
  margin: 3rem 0;
  padding: 0 0 1.5rem 0;
  border-bottom: 1px solid #000;
}
.page-template-default .entry-content p, .page-template-page-contact .entry-content p, .error404 .entry-content p, .search .entry-content p, .single-result .entry-content p, .single-schedule .entry-content p {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 2;
}
.page-template-default .entry-content p a, .page-template-page-contact .entry-content p a, .error404 .entry-content p a, .search .entry-content p a, .single-result .entry-content p a, .single-schedule .entry-content p a {
  color: #f70;
}
.page-template-default .entry-content ol, .page-template-page-contact .entry-content ol, .error404 .entry-content ol, .search .entry-content ol, .single-result .entry-content ol, .single-schedule .entry-content ol {
  list-style-type: decimal;
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.page-template-default .entry-content ol li, .page-template-page-contact .entry-content ol li, .error404 .entry-content ol li, .search .entry-content ol li, .single-result .entry-content ol li, .single-schedule .entry-content ol li {
  line-height: 2;
}
.page-template-default .entry-content ul, .page-template-page-contact .entry-content ul, .error404 .entry-content ul, .search .entry-content ul, .single-result .entry-content ul, .single-schedule .entry-content ul {
  list-style-type: disc;
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.page-template-default .entry-content ul li, .page-template-page-contact .entry-content ul li, .error404 .entry-content ul li, .search .entry-content ul li, .single-result .entry-content ul li, .single-schedule .entry-content ul li {
  line-height: 2;
}
.page-template-default .entry-content table, .page-template-page-contact .entry-content table, .error404 .entry-content table, .search .entry-content table, .single-result .entry-content table, .single-schedule .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.page-template-default .entry-content table thead tr th, .page-template-page-contact .entry-content table thead tr th, .error404 .entry-content table thead tr th, .search .entry-content table thead tr th, .single-result .entry-content table thead tr th, .single-schedule .entry-content table thead tr th {
  padding: 1.5rem 1.5rem;
  border: solid 1px #cbd2dc;
  vertical-align: top;
  border-top: solid 0.6rem;
  border-top-color: #808080;
}
.page-template-default .entry-content table tbody tr:nth-of-type(even) > *, .page-template-page-contact .entry-content table tbody tr:nth-of-type(even) > *, .error404 .entry-content table tbody tr:nth-of-type(even) > *, .search .entry-content table tbody tr:nth-of-type(even) > *, .single-result .entry-content table tbody tr:nth-of-type(even) > *, .single-schedule .entry-content table tbody tr:nth-of-type(even) > * {
  background-color: #f7f7f7;
}
.page-template-default .entry-content table tbody tr > *, .page-template-page-contact .entry-content table tbody tr > *, .error404 .entry-content table tbody tr > *, .search .entry-content table tbody tr > *, .single-result .entry-content table tbody tr > *, .single-schedule .entry-content table tbody tr > * {
  padding: 1.5rem 1.5rem;
  border: solid 1px #cbd2dc;
  color: #000;
  text-align: center;
}
.page-template-default .entry-content table tbody tr > * a, .page-template-page-contact .entry-content table tbody tr > * a, .error404 .entry-content table tbody tr > * a, .search .entry-content table tbody tr > * a, .single-result .entry-content table tbody tr > * a, .single-schedule .entry-content table tbody tr > * a {
  color: #f70;
}
.page-template-default #service .item, .page-template-page-contact #service .item, .error404 #service .item, .search #service .item, .single-result #service .item, .single-schedule #service .item {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
}

.single-schedule .entry-content, .single-schedule #news {
  max-width: inherit;
}

.page-template-page-contact .entry-content table tr {
  border-bottom: 1px solid #A1A1A1;
}
.page-template-page-contact .entry-content table tr th {
  border: none;
  background: none !important;
  vertical-align: top;
  width: 30%;
  padding: 1rem;
  text-align: left;
}
.page-template-page-contact .entry-content table tr th .required {
  margin-left: 2rem;
  background: red;
  padding: 0.5rem;
  line-height: 1;
  font-size: 1.4rem;
  color: #fff;
}
.page-template-page-contact .entry-content table tr th p {
  margin-bottom: 0;
}
.page-template-page-contact .entry-content table tr td {
  border: none;
  background: none !important;
  padding: 1rem;
  text-align: left;
}
.page-template-page-contact .entry-content table tr td input {
  width: 100% !important;
  padding: 1rem;
  background: #fff;
  border: solid 1px #ddd;
}
.page-template-page-contact .entry-content table tr td select {
  width: 100% !important;
  padding: 1rem;
  background: #fff;
  cursor: pointer;
  border: 1px solid #cecece;
  border-radius: 0.4rem;
  padding-right: 3rem;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  color: #000;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .page-template-page-contact .entry-content table tr td select {
    -webkit-appearance: menulist-button !important;
    height: 50px;
  }
}
.page-template-page-contact .entry-content table tr td input[type=checkbox], .page-template-page-contact .entry-content table tr td input[type=radio] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  background: #fff;
  border: 1px solid #cecece;
  display: inline-block;
  margin-top: 0;
  width: inherit !important;
}
.page-template-page-contact .entry-content table tr td textarea {
  width: 100% !important;
  height: 12rem !important;
  padding: 1rem;
  background: #fff;
  border: solid 1px #ddd;
}
.page-template-page-contact .entry-content table tr td p {
  margin-bottom: 0;
}
.page-template-page-contact .entry-content .submit-wrap .confirmation {
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 3rem;
  text-decoration: none;
  text-align: center;
  border: 1px solid #000000;
  padding: 1.8rem 0;
  min-width: 21.4rem;
  background-color: #000000;
  color: #ffffff;
  position: relative;
  transition: 0.3s;
  display: block;
  margin: auto;
}
.page-template-page-contact .entry-content .js-mw-checkbox {
  margin: 3rem 0 0;
  text-align: center;
}
.page-template-page-contact .entry-content .js-mw-checkbox a {
  color: #fff;
}
.page-template-page-contact .entry-content .js-mw-checkbox input {
  display: inline-block;
  width: inherit !important;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
.page-template-page-contact .entry-content .wpcf7-response-output {
  font-size: 1.6rem;
  padding: 2rem !important;
}

@media screen and (max-width: 750px) {
  .page-template-default .mv .lwrap h1, .page-template-page-contact .mv .lwrap h1 {
    top: 38rem;
    font-size: 6rem;
  }
  .page-template-default .mv .lwrap h1 .small, .page-template-page-contact .mv .lwrap h1 .small {
    font-size: 2.8rem;
    line-height: 1.75;
    margin: 1.5rem 0 0;
  }
  .page-template-default .entry-content h1, .page-template-page-contact .entry-content h1 {
    margin-bottom: 5rem;
  }
  .page-template-default .entry-content h2, .page-template-page-contact .entry-content h2 {
    margin-bottom: 4rem;
  }
  .page-template-default .entry-content h3, .page-template-page-contact .entry-content h3 {
    margin-bottom: 3rem;
  }
  .page-template-default .entry-content h4, .page-template-page-contact .entry-content h4 {
    margin-bottom: 2rem;
  }
  .page-template-default .entry-content p, .page-template-page-contact .entry-content p {
    font-size: 2.6rem;
  }
  .page-template-default .entry-content ol, .page-template-page-contact .entry-content ol {
    padding-left: 4rem;
  }
  .page-template-default .entry-content ol li, .page-template-page-contact .entry-content ol li {
    font-size: 2.6rem;
  }
  .page-template-default .entry-content ul, .page-template-page-contact .entry-content ul {
    padding-left: 4rem;
  }
  .page-template-default .entry-content ul li, .page-template-page-contact .entry-content ul li {
    font-size: 2.6rem;
  }
  .page-template-page-contact .entry-content table tr th {
    padding-bottom: 0;
    width: 100%;
    display: block;
  }
  .page-template-page-contact .entry-content table tr td {
    width: 100%;
    display: block;
  }
  .page-template-page-contact .entry-content table tr input {
    font-size: 16px;
  }
  .page-template-page-contact .entry-content table tr textarea {
    font-size: 16px;
  }
  .page-template-page-contact .entry-content .wpcf7-response-output {
    font-size: 2.4rem;
  }
  .page-template-page-contact .entry-content .submit-wrap button, .page-template-page-contact .entry-content .submit-wrap .confirmation {
    font-size: 2.6rem;
    border-radius: 7rem;
    width: 100%;
  }
}
.page-recruit .entry-content table tr th, .page-recruit .entry-content table tr td {
  text-align: left;
}

#qa .qa-list {
  display: grid;
  row-gap: 3rem;
  max-width: 930px;
  margin: auto;
}
#qa .qa-item-title, #qa .qa-item-body-inner {
  display: flex;
  column-gap: 1.5rem;
  padding-inline: 4rem;
}
#qa .qa-item-title::before, #qa .qa-item-body-inner::before {
  font-weight: 700;
  font-size: 3.2rem;
}
#qa .qa-item-title {
  align-items: center;
  background-color: #f2f2f2;
  font-weight: 700;
  font-size: 2.2rem;
  cursor: pointer;
  padding-block: 1.5rem;
}
#qa .qa-item-title::before {
  color: #0e578a;
  content: "Q.";
}
#qa .qa-item-body {
  display: none;
  background: #fff;
}
#qa .qa-item-body-inner {
  align-items: flex-start;
  font-size: 1.8rem;
  line-height: 2.1111111111;
  padding-block: 2rem;
}
#qa .qa-item-body-inner > *:first-child {
  padding-top: 1em;
}
#qa .qa-item-body-inner::before {
  color: #f70;
  content: "A.";
}
#qa .qa-item-body-inner a {
  color: #f70;
}

@media screen and (max-width: 750px) {
  .page-recruit .entry-content table tr th, .page-recruit .entry-content table tr td {
    display: block;
  }
  #qa .qa-item-title, #qa .qa-item-body-inner {
    column-gap: 2rem;
    padding-inline: 3.5rem;
  }
  #qa .qa-item-title::before, #qa .qa-item-body-inner::before {
    font-size: 4.6rem;
  }
  #qa .qa-item-title {
    font-size: 2.8rem;
  }
  #qa .qa-item-body-inner {
    font-size: 2.6rem;
  }
}
#sitemap .sitemap-list {
  margin: 0;
  padding: 0;
}
#sitemap .sitemap-list .page-item {
  list-style-type: none;
}
#sitemap .sitemap-list .page-item a {
  border-bottom: solid 1px #000;
  display: block;
  text-decoration: none;
  padding: 1rem;
  color: #000;
}
#sitemap .sitemap-list .page-item a i {
  margin-right: 0.5rem;
}
#sitemap .sitemap-list .page-item .children {
  margin-bottom: 0;
}
#sitemap .sitemap-list .page-item-has-children ul li a {
  border: none;
}
#sitemap .sitemap-list .page-item-has-children ul li a i {
  margin-left: 0.5rem;
}

/*# sourceMappingURL=style.css.map */
