/* helpers */
:root {
  /*
  * BREAKPOINT DEVICE
  */
  --cus-grid-breakpoints-smp: 768px;
  /*
  * FONTS
  */
  --cus-font-family-base: "arial", sans-serif;
  --cus-font-weight-base: 400;
  --cus-font-style-base: normal;
  --cus-font-size-base: 16px;
  --cus-font-size-smp-base: 100%;
  /*
  * LINE-HEIGHT
  */
  --cus-line-height-base: 1.5;
  /*
  * COLORS
  */
  --cus-text-color-base: #313841;
  /*
  * CONTAINER WIDTH
  */
  --cus-container-default: 1280px;
  --cus-container-default-smp: 90%;
  --cus-container-default-padding: 0;
  /*
  * EFFECTS
  */
  --cus-transition-speed: 0.5s;
}

/*
 * BREAKPOINT VAR SCSS
 */
/*
 * @include mixins.background( $color, $image, $position, $repeat, $size )
 */
/*
 * @include mixins.background-image($name)
 */
/*
 * @include iframe-absolute( $ratio : 45% )
 */
/*
 * @include transform( $transform )
 */
/*
 * @include rotate( $deg )
 */
/*
 * @include font-size( $size )
 */
/* font */
.noto-sans-jp, .trial, .main_visual_title {
  font-style: normal;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

/* inview */
[class*=inview-] {
  visibility: hidden;
  opacity: 0;
  transition: 1s transform, 1s opacity;
}

@media (min-width: 769px) {
  .inview-up {
    transform: translate3d(0, 30px, 0);
  }
  .inview-down {
    transform: translate3d(0, -30px, 0);
  }
  .inview-left {
    transform: translate3d(30px, 0, 0);
  }
  .inview-right {
    transform: translate3d(-30px, 0, 0);
  }
}
.inview-active {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

.delay6 {
  transition-delay: 0.6s;
}

.delay7 {
  transition-delay: 0.7s;
}

.delay8 {
  transition-delay: 0.8s;
}

.delay9 {
  transition-delay: 0.9s;
}

.delay10 {
  transition-delay: 1s;
}

/* background extend */
.bgextend {
  position: relative;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: bgextendAnimeBase;
  overflow: hidden;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  opacity: 0;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  animation-name: bgextendAnimeSecond;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  position: absolute;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: bgLRextendAnime;
  background-color: #36A100;
  width: 100%;
  height: 100%;
  content: "";
}

@keyframes bgLRextendAnime {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.bginnerTrg,
.bgLRendTrg {
  opacity: 0;
}

@keyframes arrow {
  50% {
    right: 0.2em;
    opacity: 1;
  }
  100% {
    right: -0.4em;
    opacity: 0;
  }
}
/* anime sroll left to right */
@keyframes marquee_right {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/* anime sroll right to left */
@keyframes marquee_left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
/* anime scroll bottom to top */
@keyframes marquee_up {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -100%, 0);
  }
}
/* anime scroll top to bottom */
@keyframes marquee_down {
  from {
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: translate3d(0, 0%, 0);
  }
}
/* Hover Glow Effect  */
.glow-on-hover {
  position: relative;
  z-index: 0;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 10px;
  background: #111;
  width: 220px;
  height: 50px;
  color: #fff;
}
.glow-on-hover::before {
  position: absolute;
  top: -2px;
  left: -2px;
  opacity: 0;
  z-index: -1;
  filter: blur(5px);
  animation: glowing 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  content: "";
}
.glow-on-hover::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px;
  background: #111;
  width: 100%;
  height: 100%;
  content: "";
}
.glow-on-hover:active {
  color: #000;
}
.glow-on-hover:active::after {
  background: transparent;
}
.glow-on-hover:hover::before {
  opacity: 1;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
/*!
 * THEMES
!*/
/* components */
/* helpers */
.btn, .btn-pdf, .btn_black {
  --btn-color-text: #313841;
  --btn-color-icon: #313841;
  --btn-color-bg: #FACE39;
  --btn-color-border: #FACE39;
  --btn-font-size: 17px;
  --btn-font-weight: 700;
  --btn-border-radius: 8px;
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  transition: filter 0.2s ease, color 0.2s ease;
  cursor: pointer;
  outline: none;
  border: 1px solid var(--btn-color-border);
  border-radius: var(--btn-border-radius);
  background-color: var(--btn-color-bg);
  padding: 20px 0;
  min-width: 265px;
  height: 64px;
  color: var(--btn-color-text);
  font-weight: var(--btn-font-weight);
  font-size: var(--btn-font-size);
  text-align: center;
}
.btn:hover, .btn-pdf:hover, .btn_black:hover {
  filter: brightness(1.15);
  color: var(--btn-color-text);
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .btn, .btn-pdf, .btn_black {
    --btn-font-size: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    min-width: 230px;
    height: auto;
    min-height: 60px;
  }
}

input.btn, input.btn-pdf, input.btn_black {
  --cus-transition-speed: 0.2s;
  opacity: 1;
  -webkit-transition: var(--cus-transition-speed);
  transition: var(--cus-transition-speed);
}
input.btn:hover, input.btn-pdf:hover, input.btn_black:hover {
  opacity: 0.8;
  filter: brightness(1.5);
}

.btn_black {
  --btn-color-text: #fff;
  --btn-color-bg: #313841;
  --btn-color-border: #313841;
}

.btn-pdf ._txt {
  position: relative;
  padding-right: 40px;
}
.btn-pdf ._txt::before {
  width: 25px;
  height: 25px;
  content: "";
  background-image: url("../../../../uploads/icon-pdf.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* templates */
/*
* html tag reset
*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: var(--cus-text-color-base);
  font-style: var(--cus-font-style-base);
  font-weight: var(--cus-font-weight-base);
  font-size: var(--cus-font-size-base);
  line-height: var(--cus-line-height-base);
  font-family: var(--cus-font-family-base);
}

nav,
ul,
li {
  list-style: none;
}

img {
  display: block;
  margin: 0 auto;
  border: 0;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  outline: 0;
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

input[type=checkbox],
input[type=radio] {
  border: 1px solid #b3b3b3;
  border-radius: 0;
  background-color: #fff;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
select,
textarea {
  position: relative;
  border: 1px solid #b3b3b3;
  border-radius: 0;
  background-color: #fff;
  padding: 6px 0;
  width: auto;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  text-indent: 1em;
}

textarea {
  resize: none;
}

area {
  outline: 0;
}

table {
  margin: 0 auto;
  width: 100%;
  max-width: var(--cus-container-default);
  table-layout: fixed;
}

table,
td,
th {
  vertical-align: top;
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: var(--cus-font-weight-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 120%;
}

/*
* smooth effect
*/
a,
button,
input {
  -webkit-transition: var(--cus-transition-speed);
  transition: var(--cus-transition-speed);
}

#outside {
  overflow-x: hidden;
}

/*
* common class
*/
.pc {
  display: inline-block;
}

.smp {
  display: none;
}

.hide {
  display: none;
}

.logo_hover:hover img {
  opacity: 1;
  cursor: default;
}

@media only screen and (max-width: 768px) {
  /*
  * html tag reset
  */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    line-height: inherit;
  }
  a,
  button,
  input {
    -webkit-transition: none;
    transition: none;
  }
  /*
  * common class
  */
  .pc {
    display: none;
  }
  html.pc {
    display: block;
  }
  .smp {
    display: inline-block;
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 33;
  transition: 0.5s;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
  background: #fff;
  padding-top: 30px;
  padding-bottom: 17px;
  width: 100%;
}

.head_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100% !important;
  max-width: 1280px !important;
}
.head_logo {
  width: 300px;
}
.head_panel_container {
  display: flex;
  column-gap: 30px;
  align-items: center;
}
.head_info {
  display: flex;
  column-gap: 19px;
  justify-content: flex-end;
  align-items: flex-end;
}
.head_info .btn {
  padding: 26px 0 12px 0;
}
.head_info_btn {
  position: relative;
}
.head_info_btn p {
  position: absolute;
  top: -20px;
  left: 6px;
  z-index: 2;
  border-radius: 20px;
  background-color: #313841;
  padding: 8px 0;
  width: 172px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
.head_navi {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  gap: 0 28px;
  margin-top: 15px;
}
.head_navi a {
  color: #0D0D0D;
  font-weight: bold;
}
.head_call {
  width: 253px;
  font-weight: bold;
  line-height: 100%;
}
.head_call ._tel {
  display: flex;
  flex-direction: column;
  font-size: 33px;
  line-height: 120%;
  text-align: end;
}
.head_call ._tel span {
  position: relative;
  letter-spacing: 1px;
}
.head_call ._tel span:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("../../../../uploads/icon-tel.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 22px;
  content: "";
}
.head_call ._time {
  background: rgba(229, 229, 229, 0.78);
  padding: 5px 10px;
  font-size: 13px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  #header {
    border-bottom: unset;
    padding-top: 5px;
    padding-bottom: 5px;
    height: 60px !important;
    color: #000000;
  }
  #header._small {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #header.is-open .head_panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .head_container {
    flex-wrap: wrap;
    width: 90% !important;
    height: 100%;
  }
  .head_info {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .head_info .button_block {
    text-align: center;
  }
  .head_info .button {
    top: 0;
    gap: 30px 0;
    margin-bottom: 20px;
  }
  .head_info .btn {
    width: 100%;
    max-width: 325px;
    --btn-height: 68px;
    --btn-font-size: 110%;
  }
  .head_info .btn:after {
    width: 22px;
    height: 21px;
  }
  .head_call {
    margin: 0 auto;
    border: 1px solid #707070;
    padding: 10px 30px;
    width: 100%;
    max-width: 313px;
  }
  .head_call ._time {
    background: none;
    padding: 0;
    font-size: 95%;
    letter-spacing: -1px;
  }
  .head_call ._tel {
    margin-bottom: 5px;
    font-size: 30px;
  }
  .head_call ._tel a {
    display: flex;
    justify-content: center;
    text-decoration: none;
  }
  .head_call ._tel span {
    padding-left: 40px;
    font-size: 88%;
  }
  .head_call ._tel span:before {
    display: block;
    top: 50%;
    left: 0;
    background: #000000;
    width: 34px;
    height: 25px;
    content: "TEL";
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    line-height: 27px;
    text-align: center;
  }
  .head_navi {
    display: block;
    margin-bottom: 55px;
    width: 100%;
  }
  .head_navi li {
    border-bottom: 1px solid rgba(112, 112, 112, 0.24);
  }
  .head_navi li a {
    display: block;
    padding: 20px 5%;
  }
  .head_navi li ._trigger {
    padding-bottom: 0;
  }
  .head_navi .subnavi {
    padding-top: 5px;
  }
  .head_navi .subnavi li {
    position: relative;
    border-bottom: unset;
  }
  .head_navi .subnavi li a {
    display: block;
    position: relative;
    padding: 7px 0;
    padding-left: 20px;
    font-weight: 500;
  }
  .head_navi .subnavi li a:before {
    width: 8px;
    height: 11px;
    content: "";
    background-image: url("../../../../uploads/icon-arrow-right.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 32%;
    left: 0;
  }
  .head_navi .subnavi_box {
    padding-bottom: 15px;
    padding-left: 5%;
  }
  .head_navi .smp {
    display: block;
  }
  .head_panel {
    visibility: hidden;
    opacity: 0;
    height: 70vh;
    pointer-events: none;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    position: fixed;
    top: 60px;
    left: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background: #fff;
    padding: 30px 5%;
    width: 100%;
    font-size: 85%;
  }
  .head_panel_container {
    display: block;
    column-gap: unset;
    flex-wrap: wrap;
    padding-bottom: 60px;
    width: 100%;
    height: 100%;
    max-height: 85vh;
    overflow-y: auto;
  }
  .head_logo {
    margin: 0 auto;
    width: 155px;
  }
  .head_logo a {
    background-size: contain;
  }
  .head_menu_trigger {
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
  }
  .head_menu_trigger .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 24px;
    height: 24px;
  }
  .head_menu_trigger .hamburger-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
  }
  .head_menu_trigger .hamburger-inner,
  .head_menu_trigger .hamburger-inner::before,
  .head_menu_trigger .hamburger-inner::after {
    background-color: #9A9A9A;
    width: 24px;
    height: 3px;
  }
  .head_menu_trigger .is-active .hamburger-inner,
  .head_menu_trigger .is-active .hamburger-inner::before,
  .head_menu_trigger .is-active .hamburger-inner::after {
    background-color: #9A9A9A;
    width: 24px;
    height: 3px;
  }
}
#footer {
  margin-top: 100px;
  background: rgba(235, 235, 235, 0.2);
}

body.home #footer,
body.home-page #footer {
  margin-top: 0;
}

.footer_info {
  padding: 86px 0 60px 0;
}
.footer_logo {
  margin-bottom: 37px;
  width: 325px;
}
.footer_content {
  display: flex;
  justify-content: space-between;
}
.footer_group01 {
  width: 325px;
}
.footer_group01 ._text01 {
  margin-bottom: 5px;
  font-weight: 700;
}
.footer_group01 ._info {
  display: flex;
  column-gap: 25px;
  margin-bottom: 10px;
}
.footer_group01 ._name {
  display: inline-block;
  position: relative;
  top: 3px;
  background: #313841;
  width: 48px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}
.footer_group01 ._number {
  font-weight: 600;
  font-size: 37px;
  line-height: 100%;
}
.footer_group01 ._tel {
  display: flex;
  column-gap: 13px;
  align-items: center;
}
.footer_group01 ._time {
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer_group01 ._address {
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 165%;
}
.footer_group01 ._website span {
  position: relative;
  padding-right: 20px;
}
.footer_group01 ._website span:before {
  width: 12px;
  height: 12px;
  content: "";
  background-image: url("../../../../uploads/icon-link.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  position: absolute;
  top: 6px;
  right: 0;
}
.footer_group02 {
  display: flex;
  justify-content: space-between;
  padding-right: 35px;
  width: 70%;
  max-width: 780px;
}
.footer_navi {
  font-weight: 700;
  font-size: 16px;
}
.footer_navi .subnavi {
  margin-top: 26px;
  font-weight: 400;
}
.footer_navi .subnavi li {
  margin-bottom: 12px;
}
.footer_navi .subnavi a {
  position: relative;
  padding-left: 20px;
}
.footer_navi .subnavi a:before {
  width: 8px;
  height: 11px;
  content: "";
  background-image: url("../../../../uploads/icon-arrow-right.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  position: absolute;
  top: 7px;
  left: 0;
}
.footer_copyright {
  background: #313841;
  padding: 19px 0;
  color: #fff;
  text-align: right;
}
.footer_copyright p {
  padding-right: 40px;
}

@media only screen and (max-width: 768px) {
  .wrap-text {
    display: block;
  }
  #footer {
    margin-top: 50px;
  }
  .footer {
    padding: 0;
  }
  .footer_info {
    padding: 33px 0 18px 0;
  }
  .footer_logo {
    margin-bottom: 18px;
    width: 186px;
  }
  .footer_group01 {
    width: 100%;
  }
  .footer_group01 ._text01 {
    margin-bottom: 5px;
    font-size: 90%;
  }
  .footer_group01 ._info {
    display: block;
    margin-bottom: 5px;
  }
  .footer_group01 ._number {
    font-size: 125%;
  }
  .footer_group01 ._name {
    top: 0px;
    padding: 5px 0;
    width: 45px;
    font-size: 90%;
    line-height: 100%;
  }
  .footer_group01 ._time {
    margin-bottom: 17px;
    font-size: 90%;
  }
  .footer_group01 ._tel {
    column-gap: 10px;
  }
  .footer_group01 ._address {
    display: block;
    margin-bottom: 23px;
    font-size: 90%;
  }
  .footer_group01 ._website {
    font-size: 90%;
  }
  .footer_group01 ._website span:before {
    top: 5px;
  }
  .footer_group02 {
    display: none;
    width: 100%;
  }
  .footer_copyright {
    background-color: #000000;
    padding: 18px 0 15px;
    font-weight: 500;
    font-size: 75%;
    text-align: center;
  }
}
/* helpers */
/*
* container
*/
.container-default, .container-1800, .container-1400, .container-1200, .container, .container-full {
  position: relative;
  clear: both;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  width: var(--cus-container-default, 100%);
  max-width: var(--cus-container-default, 100%);
}
@media only screen and (max-width: 768px) {
  .container-default, .container-1800, .container-1400, .container-1200, .container, .container-full {
    --cus-container-default-padding: 0;
    width: var(--cus-container-default-smp, 100%);
  }
}

.container-full {
  --cus-container-default: 100%;
  --cus-container-default-smp: 100%;
}

.container {
  padding-right: var(--cus-container-default-padding);
  padding-left: var(--cus-container-default-padding);
}

.container-1200 {
  --cus-container-default: 1200px;
}

.container-1400 {
  --cus-container-default: 1400px;
}

.container-1800 {
  --cus-container-default: 1800px;
}

.text-hightlight {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: #ffe30d;
  text-decoration-thickness: 9px;
  text-underline-offset: -5px;
}

/*
* template
*/
a.to-top-button {
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.67);
}

#wrapper {
  padding-top: 120px;
  min-height: 1000px;
}
@media only screen and (max-width: 768px) {
  #wrapper {
    padding-top: 60px !important;
  }
}

.main_visual {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-bottom: 90px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 156px;
  overflow: hidden;
}
.main_visual::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.51);
  width: 100%;
  height: 100%;
  content: "";
}
.main_visual_title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 30px;
}
@media only screen and (max-width: 768px) {
  .main_visual {
    margin-bottom: 40px;
    height: 25.45vw;
  }
  .main_visual_title {
    font-size: 130%;
  }
}

.common_contact {
  background-color: rgba(250, 206, 57, 0.83);
  padding: 55px 10px 45px;
  font-weight: 700;
  text-align: center;
}
.common_contact h3 {
  margin-bottom: 20px;
  font-size: 30px;
}
.common_contact ._link {
  margin-bottom: 15px;
}
.common_contact ._link a {
  --btn-font-size: 16px;
  --btn-font-weight: 700;
  --btn-border-radius: 8px;
  width: 100%;
  max-width: 655px;
  height: 71px;
}
@media only screen and (max-width: 768px) {
  .common_contact {
    padding: 30px 0;
  }
  .common_contact h3 {
    margin-bottom: 13px;
    font-size: 100%;
  }
  .common_contact ._link {
    margin-bottom: 20px;
  }
  .common_contact ._link a {
    --btn-font-size: 95%;
  }
  .common_contact p {
    font-size: 90%;
  }
}

/*
* pager
*/
.pager-list {
  clear: both;
  margin: 95px auto 70px;
  width: 80%;
}
.pager-list .page-container {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 20px 15px;
}
.pager-list .page-numbers {
  --pager-color: #fff;
  --pager-color-border: #0A89CB;
  --pager-size: 52px;
  -webkit-transition: 0.5s;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  transition: color 0.3s ease-out;
  cursor: pointer;
  border: 2px solid var(--pager-color-border);
  border-radius: 50%;
  background-color: var(--pager-color);
  padding: 0 4px;
  width: var(--pager-size);
  height: var(--pager-size);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}
.pager-list .page-numbers.current, .pager-list .page-numbers:hover {
  --pager-color: #0A7EBA;
  color: #fff;
}
.pager-list .page-numbers.current {
  cursor: default;
}
.pager-list .page-numbers.dots {
  color: var(--pager-color);
  letter-spacing: 3px;
}
.pager-list .page-numbers.prev, .pager-list .page-numbers.next {
  border: none;
  width: auto;
  color: var(--pager-color-border);
  font-size: 20px;
}
.pager-list .page-numbers.prev:hover, .pager-list .page-numbers.next:hover {
  opacity: 0.8;
  background-color: transparent;
  color: var(--pager-color);
}
@media only screen and (max-width: 768px) {
  .pager-list {
    margin: 40px auto 80px;
    width: 100%;
  }
  .pager-list .page-numbers {
    --pager-size: 50px;
    font-size: 105%;
  }
  .pager-list .page-numbers.dots {
    margin: 0;
    width: 30px;
  }
  .pager-list .page-numbers.prev, .pager-list .page-numbers.next {
    font-size: 100%;
  }
}

.smp-tel-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 33;
  padding: 10px 0;
  width: 100%;
}
.smp-tel-contact.stop {
  position: relative;
  opacity: 1;
  z-index: auto;
}
.smp-tel-contact .common_contact_template .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.smp-tel-contact .common_contact_template ._tel {
  position: relative;
}
.smp-tel-contact .common_contact_template ._tel:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("../../../../uploads/icon-tel-circle.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 41px;
  content: "";
}
.smp-tel-contact .common_contact_template ._btn {
  position: relative;
}
.smp-tel-contact .common_contact_template ._btn p {
  position: absolute;
  top: -15px;
  left: 0;
  z-index: 2;
  border-radius: 20px;
  background-color: #313841;
  padding: 6px 0;
  width: 88px;
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  text-align: center;
}
.smp-tel-contact .common_contact_template .btn {
  --btn-border-radius: 8px;
  --btn-font-size: 13px;
  min-width: 285px;
  height: 40px;
}

.page-contact .smp-tel-contact,
.page-contact .common_contact {
  display: none;
}
.page-contact #wrapper {
  min-height: 0;
}

/* pages */
.ind {
  overflow: hidden;
}
.ind video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind_top {
  position: relative;
}
.ind_top ._content {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  margin: 0 auto;
  max-width: 1200px;
  pointer-events: none;
}
.ind_top ._text01 {
  margin-bottom: 35px;
  color: #fff;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.5px;
}
.ind_top ._text02 {
  margin-bottom: 30px;
  background: #FACE39;
  padding: 12px 0 12px 20px;
  max-width: 395px;
  color: #303841;
  font-weight: 900;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: -0.7px;
}
.ind_top ._title {
  margin-bottom: 50px;
}
.ind_top img {
  margin: 0;
}
.ind_top ._list {
  display: flex;
  gap: 10px 15px;
}
.ind_top ._list li {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.85);
  padding: 16px 0 14px;
  width: 255px;
  font-weight: 700;
  font-size: 20px;
  line-height: 190%;
  text-align: center;
}
.ind_top ._font23 {
  display: block;
  color: #101010;
  font-weight: 900;
  font-size: 23px;
}
.ind_top_video {
  height: 100%;
  width: 100%;
  position: relative;
}
.ind_top_video::before {
  display: block;
  padding-top: 45%;
  content: "";
}
.ind_top_video video {
  position: absolute;
  top: 0;
  left: 0;
}
.ind_block01 {
  background-color: #FAF8F6;
  padding: 100px 0 100px;
}
.ind_block01_title {
  margin-bottom: 90px;
  font-weight: 700;
  text-align: center;
}
.ind_block01_title ._small {
  display: block;
  position: relative;
  margin-bottom: 15px;
  padding-top: 60px;
  font-size: 31px;
}
.ind_block01_title ._small:before {
  width: 43px;
  height: 48px;
  content: "";
  background-image: url("../../../../uploads/ind-img02.png");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.ind_block01_box {
  display: flex;
  justify-content: space-between;
}
.ind_block01_box ._left {
  width: 490px;
}
.ind_block01_box ._title {
  margin-bottom: 15px;
  font-weight: 900;
  font-size: 31px;
  line-height: 135%;
  letter-spacing: -1px;
}
.ind_block01_box ._des {
  line-height: 175%;
}
.ind_block01_box ._right {
  position: relative;
  width: 670px;
}
.ind_block01_box ._right:before {
  width: 594px;
  height: 594px;
  content: "";
  background-image: url("../../../../uploads/ind-img04.png");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: -385px;
  right: -187px;
  z-index: 1;
}
.ind_block01_box ._video {
  width: 100%;
  height: 370px;
  overflow: hidden;
}
.ind_block02 {
  background: #E3DFD9;
  padding: 95px 0 50px;
  overflow: hidden;
}
.ind_block02 .ind_block02_title {
  font-size: 32px;
}
.ind_block02 .container-1200:before {
  width: 1045px;
  height: 1184px;
  content: "";
  background-image: url("../../../../uploads/ind-img08.png");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: -139px;
  left: -475px;
  z-index: -1;
}
.ind_block02_title {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 30px;
  font-weight: 900;
  font-size: 31px;
  line-height: 140%;
  text-align: center;
}
.ind_block02_title:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  background: #FACE39;
  width: 100px;
  height: 3px;
  content: "";
}
.ind_block02_box {
  margin-bottom: 50px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  background: #fff;
  padding: 32px 80px 50px;
}
.ind_block02_box ._text {
  margin-bottom: 17px;
  font-weight: 900;
  font-size: 39px;
}
.ind_block02_box ._item {
  display: flex;
  column-gap: 37px;
}
.ind_block02_box ._img {
  width: 330px;
}
.ind_block02_box ._content {
  width: 650px;
}
.ind_block02_box ._title {
  margin-top: -6px;
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 26px;
  line-height: 150%;
}
.ind_block02_box ._des {
  margin-bottom: 15px;
}
.ind_block02_box ._list {
  margin-bottom: 10px;
  background: #F2F0ED;
  padding: 18px 20px 15px;
}
.ind_block02_box li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 40px;
  font-weight: 700;
}
.ind_block02_box li:last-child {
  margin-bottom: 0;
}
.ind_block02_box li:before {
  width: 27px;
  height: 27px;
  content: "";
  background-image: url("../../../../uploads/ind-img09.png");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: -2px;
  left: 0;
}
.ind_block02_box ._link {
  text-align: center;
}
.ind_block02_box .btn {
  --btn-font-size: 16px;
  --btn-font-weight: 700;
}
.ind_block03 {
  background: rgba(242, 237, 232, 0.78);
  padding: 90px 0 100px;
}
.ind_block03 .ind_block02_title {
  margin-bottom: 50px;
  padding-bottom: 25px;
}
.ind_block03_box01 {
  display: flex;
  column-gap: 80px;
  margin-bottom: 55px;
}
.ind_block03_box01:last-child {
  margin-bottom: 0;
}
.ind_block03_box01._mbt100 {
  margin-bottom: 100px;
}
.ind_block03_box01 ._video {
  height: 340px;
  overflow: hidden;
}
.ind_block03_box01 ._content {
  padding-top: 30px;
  width: 530px;
}
.ind_block03_box01 ._title {
  display: flex;
  position: relative;
  column-gap: 15px;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 21px;
}
.ind_block03_box01 ._title ._number {
  display: inline-block;
  width: 43px;
  height: 48px;
  font-size: 23px;
  line-height: 48px;
  text-align: center;
  background-image: url("../../../../uploads/ind-img22.png");
  background-repeat: no-repeat;
  background-position: center center;
}
.ind_block03_box01 ._title ._note {
  width: calc(100% - 43px);
}
.ind_block03_box01 ._des {
  line-height: 180%;
}
.ind_block03_box01 ._text {
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 26px;
  line-height: 153%;
}
.ind_block03_text {
  margin-bottom: 15px;
  border-radius: 20px;
  background: #313841;
  padding: 10px 0;
  max-width: 400px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.ind_block03_box02 {
  display: flex;
  gap: 27px;
  margin-bottom: 100px;
}
.ind_block03_box02 ._item {
  position: relative;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  border-width: 4px;
  border-style: solid;
  border-color: #FFE30D;
  background: #fff;
  padding: 42px 20px 20px;
  width: 280px;
  text-align: center;
}
.ind_block03_box02 ._item:first-child {
  border-color: #FACE39;
}
.ind_block03_box02 ._item:before {
  width: 9px;
  height: 14px;
  content: "";
  background-image: url("../../../../uploads/icon-arrow-right.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
}
.ind_block03_box02 ._item:last-child:before {
  display: none;
}
.ind_block03_box02 ._label {
  position: absolute;
  top: 0;
  left: 0;
  background: #FACE39;
  padding: 2px 0;
  width: 65px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.ind_block03_box02 ._title {
  margin-bottom: 7px;
  font-weight: 700;
  font-size: 19px;
}
.ind_block03_box02 ._img {
  margin-bottom: 15px;
}
.ind_block04 {
  padding: 100px 0;
}
.ind_block04_title {
  margin-bottom: 40px;
  font-weight: 900;
  font-size: 31px;
  text-align: center;
}
.ind_block04_box {
  display: flex;
  gap: 20px 20px;
}
.ind_block04_box ._item {
  width: 240px;
}
.ind_block04_box ._img {
  margin-bottom: 7px;
}
.ind_block04_box ._des {
  font-weight: 700;
}
.ind_block05 {
  background: #F2EDE8;
  padding: 95px 0 65px;
}
.ind_block05_title {
  margin-bottom: 15px;
  font-weight: 900;
  font-size: 31px;
  text-align: center;
}
.ind_block05_text {
  position: relative;
  margin-bottom: 72px;
  padding-bottom: 25px;
  font-weight: 700;
  line-height: 185%;
  text-align: center;
}
.ind_block05_text:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  background: #FACE39;
  width: 100px;
  height: 3px;
  content: "";
}
.ind_block05 ._row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.ind_block05 ._item01 {
  display: flex;
  position: relative;
  align-items: center;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  background: #F5F5F5;
  padding: 37px 10px 37px 70px;
  width: 510px;
  font-weight: 900;
}
.ind_block05 ._item01:before {
  width: 15px;
  height: 25px;
  content: "";
  background-image: url("../../../../uploads/icon-arrow-right.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  position: absolute;
  top: 50%;
  right: -37px;
  transform: translateY(-50%);
}
.ind_block05 ._item02 {
  position: relative;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  background: #FACE39;
  padding: 30px 25px 20px;
  width: 625px;
}
.ind_block05 ._label {
  position: absolute;
  top: -20px;
  left: 0;
  border-radius: 20px;
  background: #313841;
  padding: 8px 0;
  width: 170px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}
.ind_block05 ._list {
  position: relative;
  padding-left: 45px;
  font-weight: 900;
  font-size: 17px;
  line-height: 170%;
}
.ind_block05 ._list:before {
  width: 28px;
  height: 28px;
  content: "";
  background-image: url("../../../../uploads/ind-img23.png");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.ind_block05 ._color {
  color: #FF7600;
}
.ind_block06 {
  margin-bottom: 67px;
  padding: 100px 0 30px;
}
.ind_block06_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin: 0 auto;
  margin-bottom: 23px;
  max-width: 845px;
}
.ind_block06_box ._item {
  width: 190px;
  font-weight: 700;
  text-align: center;
}
.ind_block06_box ._img {
  margin-bottom: 15px;
}
.ind_block06_box ._text {
  line-height: 170%;
}
.ind_block06_note {
  margin: 0 auto;
  max-width: 845px;
  font-weight: 700;
  text-align: right;
}
.ind_block06_boxtext {
  max-width: 1040px;
  margin: 0 auto;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 85px;
}
.ind_block06_boxtext ._item {
  width: auto;
}
.ind_block06_boxtext ._title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.ind_block06_boxtext ._des {
  line-height: 180%;
}
.ind_block07 {
  background: rgba(234, 234, 234, 0.28);
  padding: 105px 0 60px;
}
.ind_block07 .ind_block02_title {
  padding-bottom: 18px;
}
.ind_block07_box {
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 50px 90px 35px;
}
.ind_block07_box ._q,
.ind_block07_box ._a,
.ind_block07_box ._link {
  padding-left: 45px;
}
.ind_block07_box ._q {
  position: relative;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
}
.ind_block07_box ._q:before {
  width: 25px;
  height: 33px;
  content: "";
  background-image: url("../../../../uploads/ind-img20.png");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.ind_block07_box ._a {
  position: relative;
  margin-bottom: 15px;
  line-height: 165%;
}
.ind_block07_box ._a:before {
  width: 25px;
  height: 33px;
  content: "";
  background-image: url("../../../../uploads/ind-img21.png");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.ind_block07_box a {
  color: #707070;
  text-decoration: underline;
}
.ind_block07_box a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .ind {
    padding-top: 65px;
  }
  .ind_top {
    height: auto;
  }
  .ind_top ._content {
    position: static;
    transform: unset;
    margin: 0 auto 30px;
    width: 90%;
  }
  .ind_top ._list {
    display: block;
  }
  .ind_top ._text01 {
    margin-bottom: 20px;
    color: #000;
    font-size: 125%;
  }
  .ind_top ._text02 {
    margin-bottom: 25px;
    width: 95%;
    font-size: 110%;
  }
  .ind_top ._title {
    margin-bottom: 25px;
  }
  .ind_top ._list li {
    margin-bottom: 5px;
    border: 2px solid #313233;
    border-radius: unset;
    padding: 7px 5%;
    width: 100%;
    color: #101010;
    font-weight: 900;
    font-size: 100%;
    line-height: 165%;
  }
  .ind_top ._font23 {
    display: inline;
    font-size: 100%;
  }
  .ind_top_video {
    height: 221px;
  }
  .ind_block01 {
    padding: 40px 0 100px;
  }
  .ind_block01_box {
    display: block;
  }
  .ind_block01_box ._right {
    width: 100%;
  }
  .ind_block01_box ._right:before {
    top: auto;
    right: -17%;
    bottom: -120px;
    background-size: 100% 100%;
    width: 250px;
    height: 250px;
  }
  .ind_block01_box ._left {
    margin: 0 auto 40px;
    width: 95%;
  }
  .ind_block01_box ._title {
    font-size: 110%;
    line-height: 160%;
    letter-spacing: 0;
  }
  .ind_block01_box ._video {
    height: 221px;
  }
  .ind_block01_box ._des {
    line-height: 165%;
  }
  .ind_block01_title {
    margin: 0 auto 30px;
    width: 95%;
  }
  .ind_block01_title ._small {
    display: block;
    margin-bottom: 10px;
    padding-top: 55px;
    font-size: 110%;
  }
  .ind_block02 {
    padding: 45px 0 50px;
  }
  .ind_block02 .container-1200:before {
    display: none;
  }
  .ind_block02_title {
    margin-bottom: 45px;
    padding-bottom: 20px;
    font-size: 120%;
  }
  .ind_block02 .ind_block02_title {
    font-size: 120%;
  }
  .ind_block02_box {
    margin-bottom: 40px;
    padding: 30px 30px;
  }
  .ind_block02_box ._text {
    margin-bottom: 10px;
    font-size: 130%;
    text-align: center;
  }
  .ind_block02_box ._item {
    display: block;
  }
  .ind_block02_box ._content {
    width: 100%;
  }
  .ind_block02_box ._img {
    margin-bottom: 15px;
    width: 100%;
  }
  .ind_block02_box ._title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 100%;
    line-height: 160%;
  }
  .ind_block02_box ._list {
    margin-bottom: 35px;
    padding: 15px;
  }
  .ind_block02_box li {
    margin-bottom: 10px;
    padding-left: 30px;
  }
  .ind_block02_box li:before {
    top: 2px;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
  }
  .ind_block03 {
    padding: 45px 0 50px;
  }
  .ind_block03 .ind_block02_title {
    margin-bottom: 40px;
  }
  .ind_block03_box01 {
    display: block;
    margin-bottom: 45px;
  }
  .ind_block03_box01._mbt100 {
    margin-bottom: 45px;
  }
  .ind_block03_box01 ._video {
    width: 100%;
    height: 221px;
  }
  .ind_block03_box01 ._content {
    width: 100%;
  }
  .ind_block03_box01 ._title {
    font-size: 117%;
  }
  .ind_block03_box01 ._text {
    font-size: 105%;
  }
  .ind_block03_box01 ._des {
    line-height: 165%;
  }
  .ind_block03_text {
    font-size: 90%;
  }
  .ind_block03_box02 {
    display: block;
    margin-bottom: 50px;
  }
  .ind_block03_box02 ._item {
    margin-bottom: 40px;
    padding: 12px 10px;
    width: 100%;
  }
  .ind_block03_box02 ._item:before {
    top: auto;
    right: 0;
    bottom: -31px;
    left: 0;
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .ind_block03_box02 ._label {
    font-size: 90%;
  }
  .ind_block03_box02 ._title {
    font-size: 105%;
  }
  .ind_block03_box02 ._img {
    margin-bottom: 10px;
  }
  .ind_block04 {
    padding: 45px 0;
  }
  .ind_block04_title {
    margin-bottom: 30px;
    font-size: 110%;
  }
  .ind_block04_box {
    flex-wrap: wrap;
    gap: 10px 4%;
  }
  .ind_block04_box ._item {
    width: 48%;
  }
  .ind_block04_box ._des {
    font-size: 95%;
  }
  .ind_block05 {
    padding: 45px 0 15px;
  }
  .ind_block05_title {
    margin-bottom: 20px;
    font-size: 115%;
  }
  .ind_block05_text {
    margin-bottom: 50px;
    padding-bottom: 15px;
    line-height: 165%;
  }
  .ind_block05 ._row {
    display: block;
    margin-bottom: 60px;
  }
  .ind_block05 ._item01 {
    margin-bottom: 50px;
    padding: 22px 2% 22px 5%;
    width: 100%;
  }
  .ind_block05 ._item01:before {
    top: auto;
    right: 0;
    bottom: -32px;
    left: 0;
    transform: rotate(90deg);
    margin: 0 auto;
    width: 10px;
    height: 18px;
  }
  .ind_block05 ._item02 {
    padding: 30px 4% 20px;
    width: 100%;
  }
  .ind_block05 ._label {
    top: -16px;
    padding: 7px 0;
    width: 150px;
    font-size: 80%;
  }
  .ind_block05 ._list {
    padding-left: 40px;
    font-size: 100%;
    line-height: 165%;
  }
  .ind_block05 ._list:before {
    background-size: 100% 100%;
    width: 23px;
    height: 23px;
  }
  .ind_block06 {
    position: relative;
    margin-bottom: 0;
    padding: 0 0 50px;
  }
  .ind_block06::before {
    position: absolute;
    top: 0;
    left: -5%;
    z-index: -1;
    background-color: #F2EDE8;
    width: 100vw;
    height: 100%;
    content: "";
  }
  .ind_block06_box {
    gap: 20px 2%;
    margin-bottom: 20px;
    width: 95%;
  }
  .ind_block06_box ._item {
    width: 49%;
  }
  .ind_block06_box ._text {
    line-height: 165%;
  }
  .ind_block06_box ._img {
    margin-bottom: 10px;
  }
  .ind_block06_boxtext {
    display: block;
  }
  .ind_block06_boxtext ._item {
    width: 100%;
    margin-bottom: 25px;
  }
  .ind_block06_boxtext ._item:last-child {
    margin-bottom: 0;
  }
  .ind_block06_boxtext ._title {
    font-size: 105%;
    margin-bottom: 10px;
  }
  .ind_block06_boxtext ._des {
    line-height: 165%;
  }
  .ind_block07 {
    padding: 45px 0 50px;
  }
  .ind_block07_box {
    padding: 30px 5%;
  }
  .ind_block07_box ._q,
  .ind_block07_box ._a,
  .ind_block07_box ._link {
    padding-left: 32px;
  }
  .ind_block07_box ._q {
    font-size: 105%;
  }
  .ind_block07_box ._q:before {
    top: -2px;
    background-size: 100% 100%;
    width: 20px;
    height: 28px;
  }
  .ind_block07_box ._a:before {
    background-size: 100% 100%;
    width: 20px;
    height: 28px;
  }
}
/* 
 * Both PC & SMP 
 */
.products {
  margin-bottom: -100px;
}
.products_navi {
  margin-bottom: 75px;
}
.products_navi h3 {
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 31px;
}
.products_navi p {
  margin-bottom: 60px;
  font-weight: 700;
  line-height: 165%;
}
.products_navi ul {
  display: flex;
  column-gap: 20px;
}
.products_navi li {
  width: 310px;
}
.products_navi li a {
  display: block;
  position: relative;
  border-radius: 8px;
  background: #F1D061;
  padding: 16px 0;
  font-weight: 900;
  text-align: center;
}
.products_navi li a:before {
  width: 11px;
  height: 7px;
  content: "";
  background-image: url("../../../../uploads/icon-arrow.png");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.products_item {
  padding: 40px 0;
}
.products_item:nth-child(2n+1) {
  background: #E3DFD9;
}
.products_item:nth-child(2n) {
  padding: 100px 0 110px;
}
.products_item ._box01,
.products_item ._box02 {
  padding-left: 115px;
}
.products_item ._box01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
}
.products_item ._img {
  width: 475px;
}
.products_item ._content {
  padding-left: 30px;
  width: calc(100% - 475px);
}
.products_item ._text01 {
  margin-bottom: 5px;
  font-weight: 900;
}
.products_item ._title {
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 26px;
}
.products_item ._text02 {
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 25px;
  line-height: 170%;
}
.products_item ._des {
  max-width: 515px;
  font-weight: 700;
  line-height: 170%;
}
.products_item ._box02 {
  display: flex;
  column-gap: 20px;
  align-items: flex-end;
}
.products_item ._left {
  position: relative;
  border: 2px solid #000;
  background: #fff;
  padding: 44px 25px 22px;
  min-width: 698px;
}
.products_item ._label {
  position: absolute;
  top: -16px;
  left: -2px;
  background: #000000;
  padding: 5px 25px 5px 15px;
  color: #fff;
  font-weight: 700;
}
.products_item ._font20 {
  padding-left: 10px;
  color: #FACE39;
  font-size: 20px;
}
.products_item ._list_box {
  display: flex;
  font-weight: 700;
}
.products_item ._list {
  width: 50%;
}
.products_item li {
  position: relative;
  margin-bottom: 15px;
  padding-right: 30px;
  padding-left: 35px;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.products_item li:last-child {
  margin-bottom: 0;
}
.products_item li:before {
  width: 21px;
  height: 21px;
  content: "";
  background-image: url("../../../../uploads/ind-img23.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/*
 * only SMP 
 */
@media only screen and (max-width: 768px) {
  .products {
    margin-bottom: -50px;
  }
  .products_navi {
    margin-bottom: 60px;
  }
  .products_navi h3 {
    font-size: 130%;
  }
  .products_navi ul {
    column-gap: 0;
    row-gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 90%;
    max-width: 320px;
  }
  .products_navi li {
    width: 100%;
  }
  .products_item ._box01,
  .products_item ._box02 {
    padding-left: 0;
  }
  .products_item ._box01 {
    flex-wrap: wrap;
  }
  .products_item ._img,
  .products_item ._content {
    width: 100%;
  }
  .products_item ._img {
    margin-bottom: 20px;
  }
  .products_item ._content {
    padding-left: 0;
  }
  .products_item ._title {
    margin-bottom: 15px;
    font-size: 120%;
  }
  .products_item ._text02 {
    font-size: 100%;
    line-height: 165%;
  }
  .products_item ._box02 {
    column-gap: unset;
    flex-wrap: wrap;
  }
  .products_item ._left {
    margin-bottom: 20px;
    padding: 0 0 15px 0;
    min-width: auto;
  }
  .products_item ._list_box {
    flex-wrap: wrap;
    margin: 0 auto;
    width: 92%;
  }
  .products_item ._list {
    width: 100%;
  }
  .products_item ._label {
    position: static;
    margin-bottom: 20px;
  }
  .products_item ._font20 {
    display: block;
    padding-left: 0;
    font-size: 105%;
  }
  .products_item li,
  .products_item li:last-child {
    margin-bottom: 10px;
  }
  .products_item li {
    padding-right: 0;
    white-space: unset;
  }
  .products_item ._right {
    width: 100%;
    text-align: center;
  }
  .products_item:nth-child(2n) {
    padding: 50px 0;
  }
}
/* 
 * Both PC & SMP 
 */
.download {
  padding-top: 40px;
}
.download_title {
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
  font-weight: 900;
  font-size: 20px;
}
.download_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;
  width: 100%;
}
.download_list li {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  width: 100%;
  font-weight: 700;
  line-height: 180%;
}
.download_list li:nth-child(odd) {
  background-color: rgba(111, 111, 111, 0.05);
}
.download_list ._title {
  padding-right: 30px;
  width: 265px;
}
.download_list ._content {
  padding-right: 20px;
  width: 630px;
}
.download_list ._link {
  width: 265px;
}

/*
 * only SMP 
 */
@media only screen and (max-width: 768px) {
  .download {
    padding-top: 20px;
  }
  .download_title {
    font-size: 110%;
  }
  .download_list li {
    flex-wrap: wrap;
    padding: 15px;
    line-height: 150%;
  }
  .download_list ._title,
  .download_list ._content,
  .download_list ._link {
    padding-right: 0;
    width: 100%;
  }
  .download_list ._title {
    margin-bottom: 10px;
  }
  .download_list ._content {
    margin-bottom: 15px;
  }
}
/* helpers */
/* 
 * Both PC & SMP 
 */
.trial {
  color: #000;
}
.trial_intro {
  margin-bottom: 30px;
  text-align: center;
}
.trial_intro h2 {
  margin-bottom: 35px;
  font-weight: 800;
  font-size: 20px;
}
.trial_intro p {
  font-weight: 500;
  font-size: 18px;
  line-height: 200%;
}
.trial_contact {
  margin-bottom: 40px;
  background-color: #FACE39;
  padding: 30px 0;
}
.trial_contact ._box {
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  padding: 34px 10px;
  width: 90%;
  max-width: 607px;
  text-align: center;
}
.trial_contact ._tellink {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
}
.trial_contact ._tel {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 39px;
  line-height: 100%;
}
.trial_contact ._time {
  font-weight: 600;
  font-size: 13px;
}
.trial_calendar {
  position: relative;
  width: 100%;
}

/*
 * only SMP 
 */
@media only screen and (max-width: 768px) {
  .trial_intro {
    margin-bottom: 60px;
  }
  .trial_intro h2 {
    margin-bottom: 20px;
    font-size: 120%;
  }
  .trial_intro p {
    font-size: 100%;
    line-height: 180%;
    text-align: left;
  }
  .trial_contact {
    margin-bottom: 40px;
    padding: 25px 0;
  }
  .trial_contact ._box {
    padding: 15px 10px;
  }
  .trial_contact ._tellink {
    display: block;
  }
  .trial_contact ._tel {
    margin-bottom: 5px;
    font-size: 35px;
  }
}
.contact .wrap-text-pc {
  display: block;
}
.contact .form_page__des {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 49px;
}
.contact .form_page__des h3 {
  font-weight: 800;
  font-size: 20px;
}
.contact .form_page__des p {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  text-align: center;
}
.contact .form_page__tel {
  margin-bottom: 40px;
  background-color: #FACE39;
  padding: 30px 0;
}
.contact .form_page__tel ._box {
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  padding: 34px 10px;
  width: 90%;
  max-width: 607px;
  text-align: center;
}
.contact .form_page__tel ._tellink {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
}
.contact .form_page__tel ._tel {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 39px;
  line-height: 100%;
}
.contact .form_page__tel ._time {
  font-weight: 600;
  font-size: 13px;
}
.contact .form_page__detail {
  margin: 0 auto;
  padding: 50px 0 0 0;
  max-width: 607px;
}
.contact .form_group dt {
  margin-bottom: 5px;
}
.contact .form_group dd {
  margin-bottom: 23px;
}
.contact .form_group ._title {
  margin-right: 15px;
  color: #484848;
  font-weight: bold;
  font-size: 18px;
}
.contact .form_group ._list {
  color: #484848;
}
.contact .form_group ._list .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}
.contact .form_group ._list label {
  display: flex;
  align-items: center;
}
.contact .form_group ._require {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #DA2234;
  border-radius: 4px;
  width: 45px;
  height: 23px;
  color: #DA2234;
  font-weight: bold;
  font-size: 13px;
}
.contact .form_group input:not(input[type=checkbox]) {
  height: 50px;
}
.contact .form_group textarea {
  height: 230px;
}
.contact .form_group input:not(input[type=checkbox]),
.contact .form_group textarea {
  border: none;
  background: #F2F5FA;
  width: 100%;
}
.contact .form_group input:not(input[type=checkbox])::placeholder,
.contact .form_group textarea::placeholder {
  color: rgba(72, 72, 72, 0.17);
}
.contact .form_group input[type=checkbox] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}
.contact .form_privacy {
  display: flex;
  justify-content: center;
  margin: 27px 0 64px 0;
}
.contact .form_privacy p {
  align-items: center;
  background-color: #F8F8F8;
  padding: 29px 0;
  width: 795px;
  text-align: center;
}
.contact .form_btn_group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 100px;
  text-align: center;
}
.contact .form_btn_group .btn {
  --btn-color-text: #fff;
  --btn-font-size: 16px;
  --btn-font-weight: bold;
  --btn-border-radius: 8px;
  --btn-color-border: #000000;
  background-color: #000000;
}
.contact .form_btn_group .btn input {
  outline: none;
  border: none;
  background-color: transparent;
  color: #fff;
}
.contact.form_page_thanks {
  text-align: center;
}
.contact.form_page_thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.contact.form_page_thanks .container ._link {
  margin-top: 35px;
}
.contact.form_page_confirm ._confirm__title {
  margin: 0 0 50px 0;
  max-width: 590px;
  color: #484848;
  font-size: 18px;
}
.contact.form_page_confirm dt {
  display: inline;
}
.contact.form_page_confirm__detail {
  padding: 0;
}
.contact.form_page_confirm .form_group {
  margin-bottom: 80px;
}

@media only screen and (max-width: 768px) {
  .contact .wrap-text-pc {
    display: inline;
  }
  .contact .form_page__des {
    gap: 21px;
    margin-bottom: 51px;
  }
  .contact .form_page__des p {
    font-size: 95%;
    text-align: start;
  }
  .contact .form_page__tel {
    margin-bottom: 40px;
    padding: 25px 0;
  }
  .contact .form_page__tel ._box {
    padding: 15px 10px;
  }
  .contact .form_page__tel ._tellink {
    display: block;
  }
  .contact .form_page__tel ._tel {
    margin-bottom: 5px;
    font-size: 35px;
  }
  .contact .form_page__detail {
    padding-top: 30px;
  }
  .contact .form_group ._title {
    font-size: 95%;
  }
  .contact .form_group dt {
    margin-bottom: 10px;
  }
  .contact .form_group ._list .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    font-size: 95%;
  }
  .contact .form_group textarea {
    height: 173px;
  }
  .contact .form_privacy {
    margin: 0 auto;
    width: 95%;
  }
  .contact .form_privacy p {
    padding: 20px 16px;
  }
  .contact .form_btn_group {
    margin: 30px 0 50px 0;
  }
  .contact .form_btn_group .btn {
    min-width: 150px;
  }
}
/* 
 * Both PC & SMP 
 */
.privacy .wrap-text {
  display: block;
}
.privacy_intro {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 2.3;
  margin-bottom: 110px;
}
.privacy_des {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5;
}
.privacy ._item {
  margin-bottom: 40px;
}

/*
 * only SMP 
 */
@media only screen and (max-width: 768px) {
  .privacy .wrap-text {
    display: inline;
  }
  .privacy_intro {
    font-size: 95%;
    text-align: start;
    line-height: 2;
    margin-bottom: 50px;
  }
  .privacy_des {
    font-size: 95%;
    font-weight: 500;
    line-height: 2.5;
  }
  .privacy ._item {
    margin-bottom: 40px;
  }
}
/* wordpress */
/*! ready !*/
.block_ready {
  clear: both;
  margin: -50px 0 200px;
  text-align: center;
}
.block_ready h3 {
  margin-bottom: 30px;
  color: #F15A29;
  font-weight: 700;
  font-size: 48px;
  line-height: 140%;
  letter-spacing: 1.5px;
}
.block_ready p {
  color: #3E2311;
  font-weight: normal;
  line-height: 180%;
}

/* thanks */
.thanks_page {
  text-align: center;
}
.thanks_wrapper {
  margin: 150px auto;
  border: 2px solid #ccc;
  padding: 50px 20px;
  width: 700px;
}
.thanks_title {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 30px;
}
.thanks_content {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 170%;
}
.thanks_link {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  /*! ready !*/
  .block_ready {
    margin-top: 0;
    padding: 10px 5% 0;
  }
  .block_ready h3 {
    margin-bottom: 25px;
    font-size: 230%;
    line-height: 125%;
  }
  /* thanks */
  .thanks_wrapper {
    padding: 35px 3%;
    width: 100%;
  }
  .thanks_title {
    margin-bottom: 15px;
    font-size: 145%;
    line-height: 160%;
  }
  .thanks_content {
    font-size: 100%;
  }
}
/*# sourceMappingURL=wordpress-styles.min.css.map */
