@charset "UTF-8";
/*   
Theme Name: Uchimado
Theme URI: https://xeory.jp/base/
Author: Yuya Asai
*/

:root {
  --primary-color: var(--Material-Acrylic-Primary, rgba(255, 255, 255, 0.50));
  --secondary-color: var(--Material-Acrylic-Secondary, rgba(231, 236, 243, 0.70));
  --blur-amount: var(--Material-Acrylic-Acrylic-blur, 60px);
  --primary-color-dark: var(--Material-Acrylic-Primary, rgba(0, 0, 0, 0.50));
  --secondary-color-dark: var(--Material-Acrylic-Secondary, rgba(17, 25, 46, 0.80));

  --color-blue: #0099da;
  --color-red: #ec6d57;
  --color-brown: #da9249;
  --color-green: #8fc31f;
  --color-gray: #655E5A;
  --color-light-gray: #D4D3D1;
  --color-yellow: #ffe100;

  --color-uchimado-black: #333;
  --color-uchimado-white: #fff;
  --color-uchimado-orange: #FE7A16;
  --color-uchimado-light-green: #43cea2;
  --color-uchimado-green: #2baca8;
  --color-uchimado-light-yellow: #ffff99;
  --color-uchimado-yellow: #ffff00;
  /*--color-uchimado-red:#fe1916;*/
  --color-uchimado-red: #e5151f;
  --color-uchimado-gray: #999;
  --color-uchimado-light-gray: #efefef;


  --heading-font: "Epilogue", "Epilogue override", serif;
  --body-font: "Inter", "Inter override", sans-serif;
  --body-font: "Noto Sans JP", sans-serif;
  --display-font-size: 5rem;
  --h1-font-size: 3.25rem;
  --h2-font-size: 2.25rem;
  --h3-font-size: 1.75rem;
  --h4-font-size: 1.5rem;
  --h5-font-size: 1rem;
  --h6-font-size: 0.875rem;
  --paragraph-font-size--small: 0.875rem;
  --paragraph-font-size--medium: 1.25rem;
  --paragraph-font-size--large: 1.5rem;
  --paragraph-font-size--x-large: 2rem;
  --paragraph-font-size--regular: 1rem;



  --para-font-size-regular: 1rem;
  --para-font-size-small: 0.875rem;
  --para-font-size-tiny: 0.75rem;
  --para-font-weight-regular: 400;
  --para-font-weight-medium: 500;
  --para-font-weight-semi-bold: 600;
  --heading-font-weight-bold: 700;
  --border-radius: .75rem;
  --box-shadow-small: 0px 1px 6px hsl(226deg 16% 61% / 8%);
  --box-shadow-small--inset: inset 0px 1px 6px hsl(226deg 16% 61% / 8%);
  --box-shadow-large: 0px 3px 12px hsl(226deg 16% 61% / 24%);
  --box-shadow-large--inset: inset 0px 3px 12px hsl(226deg 16% 61% / 8%);
  --margin: 1rem;
  --padding: 1rem;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

/* Block Font Sizes Palette
https://developer.wordpress.org/block-editor/how-to-guides/themes/theme-support/#block-font-sizes*/
.has-small-font-size {
  font-size: var(--paragraph-font-size--small) !important;
}

.has-medium-font-size {
  font-size: var(--paragraph-font-size--medium) !important;
}

.has-large-font-size {
  font-size: var(--paragraph-font-size--large) !important;
}

.has-x-large-font-size {
  font-size: var(--paragraph-font-size--x-large) !important;
}

/*Block Color Palettes
https://developer.wordpress.org/block-editor/how-to-guides/themes/theme-support/*/
/* color */
.has-black-color {
  color: var(--color-uchimado-black);
}

.has-white-color {
  color: var(--color-uchimado-white);
}

.has-orange-color {
  color: var(--color-uchimado-orange);
}

.has-light-green-color {
  color: var(--color-uchimado-light-green);
}

.has-green-color {
  color: var(--color-uchimado-green);
}

.has-light-yellow-color {
  color: var(--color-uchimado-light-yellow);
}

.has-yellow-color {
  color: var(--color-uchimado-yellow);
}

.has-red-color {
  color: var(--color-uchimado-red);
}

.has-light-gray-color {
  color: var(--color-uchimado-light-gray);
}

.has-gray-color {
  color: var(--color-uchimado-gray);
}

/* background */
.has-black-background-color {
  background-color: var(--background-color-uchimado-black);
}

.has-white-background-color {
  background-color: var(--background-color-uchimado-white);
}

.has-orange-background-color {
  background-color: var(--background-color-uchimado-orange);
}

.has-light-green-background-color {
  background-color: var(--background-color-uchimado-light-green);
}

.has-green-background-color {
  background-color: var(--background-color-uchimado-green);
}

.has-light-yellow-background-color {
  background-color: var(--background-color-uchimado-light-yellow);
}

.has-yellow-background-color {
  background-color: var(--background-color-uchimado-yellow);
}

.has-red-background-color {
  background-color: var(--background-color-uchimado-red);
}

.has-light-gray-background-color {
  background-color: var(--background-color-uchimado-light-gray);
}

.has-gray-background-color {
  background-color: var(--background-color-uchimado-gray);
}

/* border */
.has-black-border-color {
  border-color: var(--border-color-uchimado-black);
}

.has-white-border-color {
  border-color: var(--border-color-uchimado-white);
}

.has-orange-border-color {
  border-color: var(--border-color-uchimado-orange);
}

.has-light-green-border-color {
  border-color: var(--border-color-uchimado-light-green);
}

.has-green-border-color {
  border-color: var(--border-color-uchimado-green);
}

.has-light-yellow-border-color {
  border-color: var(--border-color-uchimado-light-yellow);
}

.has-yellow-border-color {
  border-color: var(--border-color-uchimado-yellow);
}

.has-red-border-color {
  border-color: var(--border-color-uchimado-red);
}

.has-light-gray-border-color {
  border-color: var(--border-color-uchimado-light-gray);
}

.has-gray-border-color {
  border-color: var(--border-color-uchimado-gray);
}





/* ----------------------------------------
* header
---------------------------------------- */

#header {
  width: 100%;
  z-index: 10;
  top: 0;
  height: 70px;
  position: fixed;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #fff;
  box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

#header #logo {
  padding-right: 30px;
  display: block;
  float: left;
}

#header #logo a {
  height: 70px;
  line-height: 70px;
  background-image: url(/lib/img/logo.png);
  background-size: 130px;
  background-position: right center;
  width: 190px;
  display: block;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  position: relative;
  padding-left: 60px;
}

#header #logo a::before {
  content: '';
  background-image: url(/lib/img/_logo.png);
  background-size: 100%;
  background-position: center center;
  width: 50px;
  height: 70px;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
}

#header .desc {
  float: left;
  line-height: 70px;
  font-size: 14px;
}





#header .header-nav.left {
  float: left;
}

#header .header-nav.right {
  float: right;
}


#header .header-nav {
  height: 70px;
  line-height: 70px;
}

#header .header-nav ul {
  float: left;
}

#header .header-nav ul li {
  float: left;
}

#header .header-nav.right ul li:last-child {
  padding-left: 10px;
}


#header .tel {
  height: 70px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 10px;
}


#header .header-nav .tel {
  padding: 10px 0;
}

#header .header-nav .tel .main {
  font-size: 21px;
  line-height: 35px;
  font-weight: 900;
}

#header .header-nav .tel .main .num {
  font-size: 24px;
  line-height: 25px;
  display: block;
  padding-left: 40px;
  position: relative;
  color: #FE7A16;
}

#header .header-nav .tel .main .num::before {
  content: '';
  background-image: url(/lib/img/icon.png);
  background-repeat: no-repeat;
  background-size: 96px;
  position: absolute;
  width: 32px;
  height: 32px;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background-position: -32px -416px;
}





#header .header-nav .tel .sub {
  line-height: 20px;
  height: 20px;
  color: #666;
  margin: 5px 0 0 0;
}


#header .header-nav .tel .sub>div {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  margin: 0 10px 0 0;
}

#header .header-nav .tel .sub>div:last-child {
  margin: 0;
}

#header .header-nav .tel .sub>div .deco {
  display: inline-block;
  float: left;
  padding: 0 5px;
  background: #efefef;
  border-radius: .25em;
  font-size: 10px;
  margin: 0 5px 0 0;
}








#header .pr {
  position: absolute;
  bottom: 15px;
  right: 270px;
  font-weight: 900;
  padding: 15px;
  overflow: hidden;
  line-height: 25px;
  background-image: url(/lib/img/balloon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


.header-nav-child {
  display: none;
  opacity: 0;
  height: 300px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.header-nav-child.show {
  display: block;
  animation-fill-mode: both;
  animation-duration: 900ms;
  animation-delay: 50ms;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-name: popInUp;
}





#header .header-nav a {
  color: #333;
  font-size: 15px;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
  display: inline-block;
  text-decoration: none;
  z-index: 1;
  padding: 0 15px;
  display: block;
  font-weight: bold;
  border-radius: 0.25rem;
}

#header .header-nav.left a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}


#header .header-nav li.form a {
  height: 50px;
  margin: 10px 0;
  line-height: 46px;
  font-size: 14px;
  border: 2px solid #666;
  box-shadow: none;
}







#header .header-nav li.simu a {
  height: 50px;
  margin: 10px 0;
  line-height: 46px;
  font-size: 14px;
  border: 2px solid #FE7A16;
  color: #FE7A16;
  box-shadow: none;
}


#header .header-nav li a:hover {
  opacity: 0.9;
}



#header .header-menu {
  position: absolute;
  right: 0;
  height: 80px;
  width: 50px;
  line-height: 80px;
  font-size: 21px;
  text-align: center;
}

#header .header-menu a {
  color: #333;
}


/* menu
-------------------------------------------------- */

#show-menu {
  position: absolute;
  right: 15px;
  width: 50px;
  height: 50px;
  top: 15px;
  padding: 16px 14px;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 22px;
  height: 18px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 8px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger span:nth-of-type(1) {
  -webkit-animation: menu-bar01 .6s forwards;
  animation: menu-bar01 .6s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
  }

  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(8px) rotate(45deg);
  }

  50% {
    transform: translateY(8px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

.menu-trigger span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
  -webkit-animation: menu-bar02 .6s forwards;
  animation: menu-bar02 .6s forwards;
}

@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }

  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar02 {
  0% {
    transform: translateY(-8px) rotate(-45deg);
  }

  50% {
    transform: translateY(-8px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

.active .menu-trigger span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .6s forwards;
  animation: active-menu-bar01 .6s forwards;
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }

  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
  }
}

@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(8px) rotate(0);
  }

  100% {
    transform: translateY(8px) rotate(45deg);
  }
}

.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.active .menu-trigger span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 .6s forwards;
  animation: active-menu-bar03 .6s forwards;
}

@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }

  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }
}

@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-8px) rotate(0);
  }

  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}


#menu {
  position: fixed;
  z-index: 999;
  top: 70px;
  width: 300px;
  right: 0;
  display: none;
}


#menu li a {
  display: block;
  position: relative;
  padding: 15px;
  font-size: 15px;
  color: #333;
  font-weight: bold;
}

#menu li.simu a {
  color: #FE7A16;
}


#menu .module {
  height: 100%;
}


#menu .module::before {
  -webkit-box-shadow: 0 10px 40px rgba(51, 51, 51, .1);
  box-shadow: 0 10px 40px rgba(51, 51, 51, .1);
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 15px;
  right: 15px;
  z-index: 0;
  display: block;
  content: "";
}

#menu .inner {
  background: #fff;
  position: relative;
}


#menu .tel-content {
  text-align: center;
  background: none;
  padding: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

#menu .tel-content::before {
  display: none;
}


#menu .tel-content .operator {
  bottom: 0;
  right: 0;
}

#menu .tel-content.inactive {
  display: none;
}

/* radio
-------------------------------------------------- */

.contact-inner li.radio {
  display: block;
  padding: 0 15px;
  border-bottom: 1px solid #efefef;
  color: #666;
  font-size: 14px;
  line-height: 50px;
  cursor: pointer;
  position: relative;
}

.contact-inner li.radio label {
  display: block;
  cursor: pointer;
}

.contact-inner li input[type="radio"] {
  display: none;
}

.contact-inner li input[type="radio"]+label {
  position: relative;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: background-color 0.3s, color 0.3s, width 0.3s, border-width 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, width 0.3s, border-width 0.3s, border-color 0.3s;
}

.contact-inner li input[type="radio"]+label::before,
.contact-inner li input[type="radio"]+label::after {
  position: absolute;
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
}

.contact-inner li input[type="radio"]+label::after {
  opacity: 0;
  top: 50%;
  right: 0;
  width: 10px;
  height: 5px;
  margin-top: -6.7px;
  border-left: 2px solid #1ECD97;
  border-bottom: 2px solid #1ECD97;
  -webkit-transform: rotate(-45deg) scale(.5);
  transform: rotate(-45deg) scale(.5);
}

.contact-inner li input[type="radio"]:checked+label::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}







.form-inner li.radio label {
  display: block;
  cursor: pointer;
}

.form-inner li input[type="radio"] {
  display: none;
}


.form-inner label {
  cursor: pointer;
}

.form-inner.inner-0 label span,
.form-inner.inner-1 label span,
.form-inner.inner-3 label span,
.form-inner.inner-4 label span,
.form-inner.inner-5 label span {
  font-weight: bold;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}





.form-inner li input[type="radio"]+label {
  position: relative;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  box-shadow: 0 0 0 2px #efefef inset, 0 2px 0 #efefef;

}

.form-inner li input[type="radio"]+label::before,
.form-inner li input[type="radio"]+label::after {
  position: absolute;
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
}

.form-inner li input[type="radio"]+label::after {
  opacity: 0;
  top: 50%;
  right: 0;
  width: 10px;
  height: 5px;
  margin-top: -6.7px;
  border-left: 2px solid #1ECD97;
  border-bottom: 2px solid #1ECD97;
  -webkit-transform: rotate(-45deg) scale(.5);
  transform: rotate(-45deg) scale(.5);
}

.form-inner li input[type="radio"]:checked+label {
  color: #FE7A16;
  box-shadow: 0 0 0 2px #FE7A16 inset;
  transform: translateY(2px);
}

#form_pay li {
  width: calc((100% - 20px) / 2);
}



#form_pay .form-inner li .name {
  font-weight: bold;
  display: block;
}

#form_pay .form-inner li .sup {
  font-size: 12px;
  display: block;
}

#form_pay .form-inner li figure {
  background-image: url(/lib/img/form/6.png);
  width: 64px;
  height: 64px;
  background-size: 128px;
  margin: 0 auto;
  margin-bottom: 10px;
}



#form_pay .form-inner li:nth-child(1) figure {
  background-position: 0 0;
}


#form_pay .form-inner li:nth-child(2) {
  pointer-events: none;
  opacity: .3;
}


#form_pay .form-inner li:nth-child(2) figure {
  background-position: 0px -64px;
}

#form_pay .form-inner li:nth-child(1) input[type="radio"]:checked+label figure {
  background-position: -64px 0;
}

#form_pay .form-inner li:nth-child(2) input[type="radio"]:checked+label figure {
  background-position: -64px -64px;
}

#form_pay .com {
  font-size: 14px;
  color: #fe1916;
}


#form_style li {
  width: calc((100% - 20px) / 2);
}


#form_style .form-inner li .name {
  font-weight: bold;
  display: block;
}

#form_style .form-inner li .sup {
  font-size: 12px;
  display: block;
}


#form_style .form-inner li figure {
  font-size: 40px;
  font-weight: 900;
  line-height: 64px;
}

#form_style .form-inner li:nth-child(2) {
  pointer-events: none;
  opacity: .3;
}

#form_other .form-inner li {
  text-align: left;
  width: 100%;
  margin-left: 0;
}






#form_other .form-inner input[type="checkbox"]+label {
  line-height: 30px;
  padding-left: 30px;
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  padding-left: 50px;
}

#form_other .form-inner input[type="checkbox"]+label::before {
  content: '';
  position: absolute;
  left: 15px;
  width: 20px;
  height: 20px;
  border: 1px solid #efefef;
  border-radius: 0.25rem;
  background: #fff;
  top: 50%;
  margin-top: -10px;
  box-sizing: border-box;
}



#form_other .form-inner input[type="checkbox"]+label::after {
  content: '';
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: absolute;
  top: 50%;
  left: 22px;
  display: block;
  margin-top: -6px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #FE7A16;
  border-bottom: 2px solid #FE7A16;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) scale(0.1);
}

#form_other .form-inner input[type="checkbox"]:checked+label::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

#form_other .form-inner li input[type="checkbox"]:checked+label {
  color: #FE7A16;
  box-shadow: 0 0 0 2px #FE7A16 inset;
}


#form_cost {
  margin-bottom: 30px;
}





/* checkbox
-------------------------------------------------- */

li.checkbox {
  padding: 10px 15px;
  border-bottom: 1px solid #efefef;
}

li.checkbox span {
  line-height: 30px;
  color: #666;
  font-size: 14px;
}

li.checkbox input[type="checkbox"]+label {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  outline: 0;
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

li.checkbox input[type="checkbox"]+label:after {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  border-radius: 2em;
  background: #fbfbfb;
  -webkit-transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
  transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08);
  left: 0;
}

li.checkbox input[type="checkbox"]+label:active {
  box-shadow: inset 0 0 0 2em #e8eae9;
}

li.checkbox input[type="checkbox"]+label:active:after {
  padding-right: .8em;
}

li.checkbox input[type="checkbox"]:checked+label {
  background: #4cd864;
}

li.checkbox input[type="checkbox"]:checked+label:after {
  left: 50%;
}

li.checkbox input[type="checkbox"]:checked+label:active {
  box-shadow: none;
}

li.checkbox input[type="checkbox"]:checked+label:active:after {
  margin-left: -.8em;
}

li input[type="checkbox"] {
  display: none;
}


/* select
-------------------------------------------------- */

select.select {
  -webkit-tap-highlight-color: transparent;
  color: #666;
  background-color: transparent;
  border-radius: 0.25rem;
  border: solid 1px #efefef;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 40px;
  line-height: 40px;
  outline: none;
  padding-left: 10px;
  padding-right: 35px;
  position: relative;
  text-align: left !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  white-space: nowrap;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 16px;
}

.inner-1 label span {
  font-weight: bold;
}


.inner-4 label span {
  font-weight: bold;
}

.inner-5 {
  position: relative;
  margin-bottom: 30px;
}


.inner-5 label {
  position: absolute;
  right: 0;
  top: 0;
}

.inner-5 label::after {
  content: '個';
  position: absolute;
  right: 15px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  height: 30px;
  top: 50%;
  margin-top: -15px;
  pointer-events: none;
}


.inner-5 select.select {
  height: auto;
  border-radius: 0.8em;
  background: #fff;
  box-shadow: 0 0 0 2px #efefef inset, 0 2px 0 #efefef;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  outline: none;
  vertical-align: middle;
  color: inherit;
  font-size: 18px;
  font-weight: 900;
  font-family: inherit;
  line-height: 30px;
  padding: 10px 45px 10px 30px;
  width: auto;
  box-sizing: border-box;
  max-width: 180px;
}

/* tube
-------------------------------------------------- */

#tube-popup {
  background: rgba(255, 255, 255, .8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: 9;
  text-align: center;
  padding: 20px;
  display: none;
  justify-content: center;
  align-items: center;
}

#tube-popup .close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -50px;
  right: 0;
  text-align: center;
  line-height: 50px;
  color: #333;
  font-size: 35px;
  cursor: pointer;
}

#tube-popup .close::before {
  content: "\e646";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

#tube-popup .video-block {
  position: relative;
  width: 1280px;
  height: 720px;
}

#tube-popup .video-block iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.play-inner {
  text-align: center;
  position: relative;
  width: 300px;
  position: absolute;
  right: 0;
  bottom: 0;
}

#tube-play {
  color: #154ca1;
  display: inline-block;
  text-align: center;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
  overflow: hidden;
  line-height: 32px;
  padding-left: 50px;
  cursor: pointer;
}

#tube-play::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  background-position: center;
  background-size: cover;
  left: 9px;
  top: 50%;
  margin-top: -16px;
  background-image: url(/lib/img/_icon_4.png);
}


/* overlay
-------------------------------------------------- */

#overlay {
  background: #fafafa;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: 99;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#overlay .close {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  cursor: zoom-out;
}

#overlay.done {
  background: none;
}

#overlay::after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
  vertical-align: middle;
}

#overlay .module {
  width: 100%;
  height: 100%;
}


#overlay .inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  border-radius: 0.25rem;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
}

#overlay .alert {
  min-width: 600px;
  max-width: 900px;
  text-align: center;
  position: absolute;
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}


#overlay .navi .next {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-size: 30px;
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  height: 100%;
  line-height: 100%;
  width: 10%;
  text-align: right;
  padding: 20px;
  transition: all .35s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .15) 100%);
}

#overlay .navi .prev {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-size: 30px;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  height: 100%;
  line-height: 100%;
  width: 10%;
  text-align: left;

  padding: 20px;
  transition: all .35s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .15) 100%);
}


#overlay .navi .next:hover,
#overlay .navi .prev:hover {
  color: #FE7A16;
}


#overlay .navi .jump_product {
  line-height: 50px;
  position: absolute;
  bottom: 0;
  color: #fff;
  display: block;
  text-align: center;
  width: 150px;
  left: 50%;
  margin-left: -75px;
}

#overlay .item_prev,
#overlay .item_next {
  display: none;
}


#overlay .closebtn {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

#overlay .closebtn::before {
  content: "\e646";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 60px;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 21px;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}




#overlay .closebtn2 {
  width: 50px;
  height: 50px;
  padding: 8px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

#overlay .closebtn2::before {
  content: "\e646";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 32px;
  width: 32px;
  height: 32px;
  text-align: center;
}


#overlay .title {
  background: #fff;
}


#overlay .alert-inner {
  background: #fff;
}


#overlay .alert-inner h3 {
  line-height: 50px;
  font-weight: 900;
}

#overlay .alert-inner .text {
  padding: 15px;
}


#overlay .alert-inner .icatch {
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
}

#overlay .alert-inner .button {
  padding: 15px;

}


#overlay .alert-inner .button button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
  padding: 15px;
  margin-right: 15px;
  font-size: 14px;
  -webkit-transition: all .3s;
  transition: all .3s;
  visibility: visible !important;
  animation-timing-function: ease cubic-bezier(.1, .8, .35, 1);
  border-radius: 0.25rem;
}

#overlay .alert-inner .button button:first-child:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

#overlay .alert-inner .button button:last-child {
  color: #fff;
  margin-right: 0;
  background: #ef2d73;
  background-image: linear-gradient(90deg, #ef2d73, #fc6767);

}

#overlay .alert-inner .button button:last-child:hover {
  opacity: 0.9;
}


.gallery .thumbnail img {
  width: 100%;
}


.dummy {
  -webkit-animation: dummy 1.2s infinite linear;
  animation: dummy 1.2s infinite linear;
}

@-webkit-keyframes dummy {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@keyframes dummy {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.loader {
  margin: auto 0;
  margin-left: -25px;
  position: absolute;
  left: 50vw;
  top: 0;
  bottom: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  border-right: 2px solid rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-left: 2px solid #FE7A16;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 .9s infinite linear;
  animation: load8 .9s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#next .loader,
#next_ajax .loader {
  width: 30px;
  height: 30px;
  margin-left: 0;
  margin: auto;
  left: 0;
  right: 0
}

#overlay .color {
  display: block;
  width: 40px;
  height: 40px;
  margin: 15px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
}

#overlay .name {
  display: block;
  text-align: left;
  font-size: 18px;
  font-weight: 900;
  line-height: 70px;
}


.pre {
  position: relative;
}

.pre .loader {
  width: 35px;
  height: 35px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  display: inline-block;
  margin: auto;
}





/* all display
-------------------------------------------------- */

.wrap {
  width: 1100px;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  *zoom: 1;
}

.wrap:before {
  display: inline-table;
}

.wrap:after,
.post-loop-wrap article:after {
  content: "";
  display: block;
  clear: both;
}

#main {
  width: 100%;
  float: left;
}

.main-inner {
  margin-right: 320px;
}

#side {
  width: 300px;
  float: left;
  margin-left: -300px;
}


/* ----------------------------------------
* レスポンシブ
* ~ / 1100px / 991px / 767px 
* desctop / laptop / tablet / phone
---------------------------------------- */

@media screen and (max-width: 1100px) {

  /* laptop */
  .wrap,
  .one-column #content .wrap {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }

  /* laptop end */
}

@media screen and (max-width: 991px) {

  /* tablet */
  .wrap,
  .one-column #content .wrap {
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
    width: auto;
  }

  #main,
  .main-inner,
  #side {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* tablet end */
}

@media screen and (max-width: 767px) {

  /* phone */
  .wrap,
  .one-column #content .wrap {
    margin-left: 10px;
    margin-right: 10px;
    width: auto;
  }

  /* phone end */
}


/* ----------------------------------------
* カラースキーム
---------------------------------------- */

/* ----------------------------------------
* all
---------------------------------------- */

body {
  background: #fafafa;
  color: #333;
  overflow-x: hidden;
  overflow-y: scroll;
}

a {
  text-decoration: none;
  color: #FE7A16;
  cursor: pointer;
}

a:hover {}

body.lock {
  width: 100%;
  height: 100%;
  position: fixed;
}


/* form
---------------------------------------- */

input,
button {
  font-family: "Noto Sans Japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

form input[type="submit"]:hover {
  cursor: pointer;
}


/* ----------------------------------------
* Animation
---------------------------------------- */

.anim {
  animation-fill-mode: both;
  animation-duration: 1200ms;
  animation-delay: 200ms;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.titleIn {
  animation-name: titleIn;
}

.fadeIn {
  animation-name: fadeIn;
  visibility: visible !important;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
  visibility: visible !important;
  animation-timing-function: ease, cubic-bezier(.1, .8, .35, 1);
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.popInUp {
  animation-name: popInUp;
  visibility: visible !important;
}

@keyframes popInUp {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }

  99.9% {
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.block-reveal.block-reveal-end {
  animation-name: block-reveal-end;
}

@keyframes block-reveal-end {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.even .block-reveal.block-reveal-end {
  animation-name: block-reveal-even-end;
}

@keyframes block-reveal-even-end {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

.block-reveal.block-reveal-start {
  animation-name: block-reveal-start;
}

@keyframes block-reveal-start {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.even .block-reveal.block-reveal-start {
  animation-name: block-reveal-even-start;
}

@keyframes block-reveal-even-start {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-50px);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  99.9% {
    transform: translateY(50px);
  }

  100% {
    opacity: 0;
    transform: none;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }

  99.9% {
    transform: translateZ(-100px) scale(0.5);
  }

  100% {
    opacity: 0;
    transform: none;
  }
}

.lineAnim {
  animation-name: lineAnim;
}

@keyframes lineAnim {
  0% {
    transform: translateX(-100%);
  }

  99.9% {
    transform: translateX(0);
  }

  100% {
    transform: none;
  }
}

. .pulse {
  display: inline-block;
  animation: pulse .1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(.9);
  }

  80% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes shake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.shake {
  animation-name: shake;
  display: inline-block;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  30% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  60% {
    transform: scale3d(.9, .9, .9);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
  visibility: visible !important;
}

.vanishIn {
  animation-name: vanishIn;
  visibility: visible !important;
}

@keyframes vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(1.5, 1.5);
    filter: blur(50px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    filter: blur(0px);
  }
}


/* ----------------------------------------
* single
---------------------------------------- */

h1.post-title {
  font-size: 21px;
  font-weight: 900;
  line-height: 30px;
}



.head-content .post-title {
  padding: 15px;
  font-size: 18px;
  font-weight: 900;
  border-bottom: 1px solid #efefef;
}


.page-template-page-order .post-content {
  box-shadow: none;
  margin-bottom: 0;
}


/* ----------------------------------------
* breadcrumb
---------------------------------------- */

.breadcrumb {
  overflow: hidden;
  font-size: 12px;
  padding: 0;
  margin: 0 auto;
  line-height: 40px;
  width: 100%;
  z-index: 1;
  background: url(/lib/img/stripe.png) repeat left top;
  margin-bottom: 20px;
}

.breadcrumb ol {
  width: max-content;
}



.breadcrumb li {
  float: left;
  margin-left: 10px;
}

.breadcrumb li:first-child {
  margin-left: 0;
}

.breadcrumb li::before {
  content: "\e649";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
  padding-right: 10px;
  position: relative;
}

.breadcrumb li:first-child::before {
  content: '';
  padding-right: 0;
}

.breadcrumb li a {
  text-decoration: none;

}

#news-post {
  line-height: 36px;
  margin-bottom: 20px;
  background: #fff;
  border: 2px solid #efefef;
}

#news-post .title {
  font-size: 14px;
  float: left;
  color: #999;
  padding: 0 15px;
}

#news-post a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


.post-type-archive-news .post {
  border-bottom: 1px solid #efefef;
}

.post-type-archive-news .post a {
  display: block;
  line-height: 25px;
  padding: 15px;
  color: #666;
}

.post-type-archive-news .post .cat {
  font-size: 12px;
  line-height: 21px;
  display: block;
  float: left;
  margin-right: 10px;
  width: 100px;
  text-align: center;
  color: #FE7A16;
  background: #fff;
  border: 2px solid #FE7A16;
}

.post-type-archive-news .post .date {
  font-size: 14px;
  display: block;
  float: left;
  margin-right: 10px;
  width: 120px;
}


.post-type-archive-news .post .title {
  padding-left: 240px;
}


/* ----------------------------------------
* pickup
---------------------------------------- */

#pickup_1 li.post {
  width: 33.3333%;
  float: left;
  padding: 0 15px;
}

#pickup_1 li.post .post-thumbnail {
  width: 100%;
  float: none;
  position: relative;
  overflow: hidden;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

#pickup_1 .post-loop .metadata {
  color: #154ca1;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 7px;
}

#pickup_1 .post-loop .post-title {
  color: #666;
  line-height: 30px;
  height: 60px;
  overflow: hidden;
}

#pickup_1 li.post a:hover>.post-thumbnail {
  opacity: 0.8;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  -moz-transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

#pickup_1 li.post a:hover>.post-thumbnail::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

#pickup_1 li.post a:hover>.post-thumbnail::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}


/* ----------------------------------------
* page
---------------------------------------- */

.i-catch {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}

.i-catch.no-img {
  height: 250px;
  background: -webkit-linear-gradient(to right, #154ca1, #0575E6);
  background: linear-gradient(to right, #154ca1, #0575E6);
}

.i-catch figure {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
}

.i-catch .wrap span {
  font-size: 35px;
  font-weight: 900;
  display: block;
  letter-spacing: .08em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
  color: #fff;
  font-family: 'Roboto', sans-serif;
}

.i-catch .wrap h1 {
  font-size: 14px;
  color: #666;
  position: relative;
  display: inline-block;
  padding-top: 5px;
  color: #fff;
  letter-spacing: .08em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}


/* ----------------------------------------
* slider
---------------------------------------- */

.dummy {
  height: 1000px;
}

#slider {
  margin-top: 70px;
  margin-bottom: 20px;
  max-height: 450px;
  overflow: hidden;
}

#slider .swiper-wrapper {}

#slider .swiper-wrapper figure {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
}

#slider .swiper-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc((100% - 1100px)/2);
  background: #fff;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#slider .swiper-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc((100% - 1100px)/2);
  background: #fff;
  z-index: 2;
  background-color: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#slider h3 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: .008em;
}

#slider h3.c_w {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
}

#slider span.c_w {
  color: #fff;
}

#slider .swiper-slide {
  max-width: 1100px;
  max-height: 450px;
}



#slider-product {
  background: #efefef;
  border-bottom: 1px solid #efefef;
}


#slider-product .swiper-slide {
  max-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-data .swiper-pagination {
  position: relative;
  text-align: left;
}


.post-data .swiper-pagination .swiper-pagination-bullet.thumb {
  width: 80px;
  height: 80px;
  border-radius: 0;
  margin-right: 10px;
  float: left;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: .6;
}


.post-data .swiper-pagination .swiper-pagination-bullet-active.thumb {
  opacity: 1;
  box-shadow: 0 0 0 2px #FE7A16 inset;
}



.product-color {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 22px;
  line-height: 22px;
}

.product-color span {
  float: left;
  font-size: 14px;
}

.product-color ul {
  float: left;
}



.product-color li {
  float: left;
}

.product-color .color-item {
  margin-left: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ddd;
  border: 1px solid #efefef;
  background-size: cover;
  position: relative;
}

.product-color .color-item span {
  width: 100%;
  display: block;
  background: #fff;
  font-size: 14px;
}

.anim_fadein_hover {
  -webkit-transform: translatey(30px);
  -ms-transform: translatey(30px);
  transform: translatey(30px);
  -webkit-transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
}




#slider .swiper-button-next,
#slider .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  z-index: 10;
  cursor: pointer;
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  opacity: 0;
  visibility: hidden;
}

#slider:hover .swiper-button-next,
#slider:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}




#slider .swiper-button-next:hover,
#slider .swiper-button-prev:hover {
  transform: translateY(1px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1) !important;
}

#slider .swiper-button-next {
  background-image: none;
  right: calc((100% - 1100px)/2 - 25px);
  left: auto;
}

#slider .swiper-button-next::before {
  content: "\e649";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  line-height: 50px;
  width: 50px;
  height: 50px;
  display: block;
  font-size: 21px;
  color: #333;
}

#slider .swiper-button-prev {
  background-image: none;
  left: calc((100% - 1100px)/2 - 25px);
  right: auto;
}

#slider .swiper-button-prev::before {
  content: "\e64a";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  line-height: 50px;
  width: 50px;
  height: 50px;
  display: block;
  font-size: 21px;
  color: #333;
}

#slider .swiper-pagination-bullet-active {
  background: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
}

#side-works .swiper-container {
  padding-bottom: 15px;
}

#side-works .swiper-pagination-bullet-active {
  background: #FE7A16;
}

#side-works .swiper-slide {
  background: #fff;
}


#simulation .swiper-pagination-progressbar {
  background: rgba(0, 0, 0, .1);
}

#simulation .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #FE7A16;
}






/* ----------------------------------------
* color
---------------------------------------- */

.c_w {
  color: #fff !important;
}

.c_b {
  color: #154ca1 !important;
}

.c_m {
  color: #154ca1 !important;
}

.c_sub {
  color: #ff1200 !important;
}


/* ----------------------------------------
* content
---------------------------------------- */

.content-inner {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.content-inner.c_g {
  background: #fafafa;
}

.content-inner.c_w {
  background: #fff;
}

.column-inner.c_g {
  background: #fafafa;
}

.column-inner.c_w {
  background: #fff;
}

.content-inner .content-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.content-inner .content-title span {
  font-size: 28px;
  font-weight: 900;
  display: block;
  letter-spacing: .08em;
  color: #154ca1;
  line-height: 1;
  padding-bottom: 10px;
  opacity: 0;
  font-family: 'Roboto', sans-serif;
}

.content-inner .content-title h2 {
  font-size: 28px;
  font-weight: 900;
  display: block;
  letter-spacing: .08em;
  line-height: 1;
  padding-bottom: 10px;
}

.content-inner .content-title h3 {
  font-size: 21px;
  font-weight: 900;
  position: relative;
  display: block;
  line-height: 50px;
}


.content-inner .btn-inner {
  margin-top: 60px;
}


.content-inner .btn-inner .btn-3 {
  font-size: 16px;
  line-height: 60px;
  display: block;
  text-align: center;
  padding: 0 50px;
  display: inline-block;
  text-align: center;
  color: #999;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
  overflow: hidden;
  border-radius: 0.25em;
  margin-left: 10px;
  font-weight: bold;
}





.content-inner .btn-inner .btn-2 {
  font-size: 16px;
  line-height: 60px;
  display: block;
  text-align: center;
  padding: 0 20px 0 50px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #FE7A16;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
  overflow: hidden;
  border-radius: 0.25em;
  font-weight: bold;
}

.content-inner .btn-inner .btn-2.disabled {
  pointer-events: none;
  background: #ddd;
  box-shadow: none;
  transform: none;
}



.content-inner .btn-inner .btn-1 {
  font-size: 16px;
  line-height: 60px;
  display: block;
  text-align: center;
  padding: 0 20px 0 50px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #FE7A16;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
  overflow: hidden;
  border-radius: 0.25em;
  margin-left: 10px;
  font-weight: bold;
  border: 2px solid #FE7A16;
  background: #fff;
  color: #FE7A16;
  font-weight: bold;
  line-height: 56px;
  cursor: pointer;
}


.content-inner .btn-inner .btn-1::after {
  content: "\e64e";
}

.content-inner .btn-inner .btn-1:hover::after {
  animation: none;
  -webkit-animation: none;
}

.content-inner .btn-inner .btn-1:hover,
.content-inner .btn-inner .btn-2:hover {
  box-shadow: 0 1px 0 #e06101;
  transform: translateY(1px);
}

.content-inner .btn-inner .btn-1:active,
.content-inner .btn-inner .btn-2:active {
  box-shadow: 0 1px 0 transparent;
  transform: translateY(2px);
}


.content-inner .btn-inner .btn-3:hover {
  background: rgba(0, 0, 0, .05);
}

#simulation .content-inner .content-title h2 {
  padding-bottom: 0;
}



#simulation .wrap-inner {
  max-width: 900px;
  margin: 0 auto;
}

#simulation .wrap-inner.desc {
  margin-bottom: 30px;
}

#simulation .sup-inner {
  position: relative;
  padding: 25px;
  margin-top: 15px;
  font-size: 16px;
}

#simulation .sup-inner a {
  color: #999;
}


#simulation .sup-inner::before {
  content: 'または';
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  width: 300px;
  margin: 0 auto;
  line-height: 20px;
  font-size: 12px;
  color: #999;
  text-shadow: #fafafa 2px 0px, #fafafa -2px 0px, #fafafa 0px -2px, #fafafa 0px 2px, #fafafa 2px 2px, #fafafa -2px 2px, #fafafa 2px -2px, #fafafa -2px -2px, #fafafa 1px 2px, #fafafa -1px 2px, #fafafa 1px -2px, #fafafa -1px -2px, #fafafa 2px 1px, #fafafa -2px 1px, #fafafa 2px -1px, #fafafa -2px -1px;
  z-index: 9;
}

#simulation .sup-inner::after {
  content: '';
  height: 1px;
  width: 150px;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  background: #e0e0e0;
  margin: 0 auto;
}

#simulation .content-inner .content-title {
  margin-bottom: 30px;
}

#simulation .wrap-inner li {
  width: calc((100% - 45px) / 3);
  /* 2025.01.27 4分割から3分割へ */
  float: left;
  text-align: center;
  font-size: 14px;
  margin-left: 15px;
  margin-bottom: 15px;
  position: relative;
}

#simulation .wrap-inner li:nth-child(4n + 1) {
  margin-left: 0;
}


#simulation .wrap-inner li input {
  display: none;
}


#simulation .wrap-inner li label {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 0.8em;
  background: #fff;
  box-shadow: 0 0 0 2px #efefef inset, 0 2px 0 #efefef;
  position: relative;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  cursor: pointer;
}


#simulation li input[type="radio"]:checked+label,
#simulation li input[type="checkbox"]:checked+label {
  color: #FE7A16;
  box-shadow: 0 0 0 2px #FE7A16 inset;
  transform: translateY(2px);
}






#simulation li label span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}


#simulation .btn-inner li {
  display: inline-block;
  float: none;
}

#simulation .show_image {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
}

#simulation .show_image a {
  line-height: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
  font-size: 18px;
  color: #999;
  cursor: zoom-in;
}

#simulation .show_image a::before {
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


#simulation ul li a {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 0.8em;
  color: #333;
  background: #fff;
  box-shadow: 0 0 0 2px #efefef inset, 0 2px 0 #efefef;
  position: relative;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  cursor: pointer;
}

#simulation ul li a:hover {
  box-shadow: 0 0 0 2px #efefef inset, 0 1px 0 #efefef;
  transform: translateY(1px);
}

#simulation ul li a:hover:active {
  box-shadow: 0 0 0 2px #efefef inset, 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}


#simulation .com {
  font-size: 14px;
  color: #999;
}

#simulation .sup {
  display: block;
  font-size: 12px;
}

#simulation .title {
  font-weight: bold;
}

#simulation h3 {
  margin: 15px;
  font-size: 18px;
  font-weight: 900;
  text-align: left;
}





#simu_2_2 .show_image a::before {
  content: "\e732";
}


#simulation #simu_4_2 .thumb {
  height: 400px;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 0.8em;
}

#simulation #simu_4_2 .thumb figure {
  width: 100%;
  height: 100%;
}

#simulation #simu_4_2 .thumb img {
  width: auto;
  height: 100%;
}


#simulation #simu_4_2 li input {
  border-radius: 0.8em;
  background: #fff;
  box-shadow: 0 0 0 2px #efefef inset, 0 2px 0 #efefef;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  outline: none;
  vertical-align: middle;
  color: inherit;
  font-size: 18px;
  font-weight: 900;
  font-family: inherit;
  line-height: 30px;
  padding: 15px 60px 15px 30px;
  width: auto;
  box-sizing: border-box;
  max-width: 180px;
  display: block;
}



#simulation #simu_4_2 select {
  border-radius: 0.8em;
  background: #fff;
  box-shadow: 0 0 0 2px #efefef inset, 0 2px 0 #efefef;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  outline: none;
  vertical-align: middle;
  color: inherit;
  font-size: 18px;
  font-weight: 900;
  font-family: inherit;
  line-height: 30px;
  padding: 15px 30px;
  width: auto;
  box-sizing: border-box;
  min-width: 200px;
}


#simulation #simu_4_2 li {
  width: auto;
  float: none;
  display: inline-block;
}

#simulation #simu_4_2 li:last-child {
  padding-left: 65px;
}

#simulation #simu_4_2 li:last-child::before {
  content: "\e646";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: 0;
  width: 50px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
}


#simulation #simu_4_2 li label {
  padding: 0;
  background: none;
  box-shadow: none;
}


#simulation #simu_4_2 li label::after {
  content: 'mm';
  position: absolute;
  position: absolute;
  right: 15px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  height: 30px;
  top: 50%;
  margin-top: -15px;
  pointer-events: none;
}


#simulation #simu_4_2 .sup {
  display: block;
  float: left;
  line-height: 60px;
  font-size: 16px;
  font-weight: 900;
  padding-right: 15px;
}



#simu_5_2 .show_image a::before {
  content: "\e718";
}

#simu_6_2 .show_image a::before {
  content: "\e71e";
}



#simu_6_2 li figure {
  overflow: visible;
  width: 80px;
  height: 80px;
  margin: auto;
  z-index: 1;
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 50%;
  border: 1px solid #efefef;
}

#simu_6_2 li label span {
  display: block;
  padding-top: 10px;
}


#simu_7_2.wrap-inner li {
  width: calc((100% - 15px) / 2);
}

#simu_7_2.wrap-inner li .sup {
  font-size: 14px;
}

#simu_7_2.wrap-inner li .title {
  font-size: 18px;
  font-weight: 900;
}

#simu_7_2.wrap-inner li figure {
  font-size: 80px;
  font-weight: 900;
}



#simu .post-sup,
#contact .post-sup {
  border: 2px solid #efefef;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #666;
}




#simu .post-sup ul li,
#contact .post-sup ul li {
  position: relative;
  text-align: left;
  line-height: 25px;
  padding: 0 0 0 20px !important;
  margin: 0;
}


#simu .post-sup ul li::before,
#contact .post-sup ul li::before {
  content: '※';
  position: absolute;
  left: 0;
  top: 0;
}

#simu .btn-inner .btn-2,
#contact .btn-inner .btn-2 {
  font-size: 16px;
}

#contact form #radio_3 .datepickr {
  display: inline-block;
  width: 110px;
  margin-right: 30px;
  text-align: right;
}

#contact form #radio_3 .timepickr {
  display: inline-block;
  width: 100px;
  text-align: right;
}

#contact form #radio_3 .wpcf7-form-control-wrap {
  display: inline-block;
}

#contact form #radio_3 .sup {
  width: 30px;
  text-align: center;
  display: inline-block;
}

#contact form #radio_3 .select_month {
  margin-right: 10px;
}


#contact form #radio_3 .select_day {
  margin-right: 30px;
}

#contact form #radio_3 .select_date {
  margin-right: 30px;
}


.contact-form input[type="checkbox"] {
  display: none;
}

.contact-form input[type="checkbox"]+span {
  line-height: 40px;
  padding-left: 30px;
  height: 40px;
  display: block;
  position: relative;
  cursor: pointer;
}

.contact-form input[type="checkbox"]+span::before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  content: '';
  border: 1px solid #efefef;
  border-radius: 0.25rem;
  background: #fafafa;
  top: 50%;
  margin-top: -10px;
  box-sizing: border-box;
}

.contact-form input[type="checkbox"]+span::after {
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  position: absolute;
  top: 50%;
  left: 7px;
  display: block;
  margin-top: -6px;
  width: 4px;
  height: 8px;

  border-right: 2px solid #FE7A16;
  border-bottom: 2px solid #FE7A16;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) scale(0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-form input[type="checkbox"]:checked+span::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}



#contact form #file .wpcf7-form-control-wrap {
  display: inline-block;
  position: relative;
  width: 150px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  background: #fafafa;
  border: 1px solid #efefef;
  border-radius: .25rem;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  cursor: pointer;
  overflow: hidden;
  float: left;
}

#contact form #file .wpcf7-form-control-wrap:hover {
  background: #fff;
  border: 1px solid #ea5413;
}

#contact form #file .file-input {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

#contact form #file .wpcf7-form-control-wrap::before {
  content: "\e647";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#contact form #file ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

#contact form #file ul li {
  margin: 0 0 30px;
  padding: 0;
}

#contact form #file .file-name {
  display: inline-block;
  position: relative;
  margin: 0 10px;
  font-size: 12px;
  line-height: 42px;
  overflow: hidden;
  width: calc(100% - 170px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}




.big-content {
  padding: 60px 0;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.sup-text {
  font-size: 14px;
  color: #999;
  margin: 0 auto;
  max-width: 900px;
  margin-top: 30px;
}

.card {
  color: #383838;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}





#index_2 .card .btn-inner {
  text-align: left;
  position: absolute;
  bottom: 30px;
}

#index_2 .column-2 {
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

#index_2 .column-2:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 4;
}

#index_2_1 {
  z-index: 3;
}

#index_2_2 {
  z-index: 2;
}

#index_2_3 {
  z-index: 1;
}

a.card .btn {
  width: 50px;
  line-height: 50px;
  height: 50px;
  position: absolute;
  bottom: 0;
  right: 0;
}

a.card .btn::before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: '';
  border-color: transparent #154ca1 transparent transparent;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  z-index: 11111;
  border-style: solid;
  border-style: solid;
  border-width: 50px 50px 0 0;
}

a.card:hover .btn::before {
  transform: scale(1, 1);
}

a.card:hover .btn {
  border-color: #154ca1;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes arrow {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(5%);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes arrow {
  0% {
    -webkit-transform: translateX(0%);
  }

  50% {
    -webkit-transform: translateX(5%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}


@keyframes pop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes pop {
  0% {
    -webkit-transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
  }
}




@keyframes before {
  40% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

a.card .block-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #154ca1;
  pointer-events: none;
  -webkit-transition: all 0.9s cubic-bezier(0.8, 0, 0.2, 1);
  transition: all 0.9s cubic-bezier(0.8, 0, 0.2, 1);
  transform: translateX(100%);
}

a.card .block-reveal.even {
  transform: translateX(0%);
}

.btn-inner {
  margin-top: 15px;
  text-align: center;
  position: relative;
}

.btn-inner .emphasis {
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 30px;
}

.price-bottom .btn-inner .emphasis {
  margin-top: 0;
}


.btn-inner .emphasis h5 {
  display: inline-block;
  position: relative;
  padding: 0 50px 0 130px;
  height: 70px;
}



.btn-inner .emphasis h5::before,
.btn-inner .emphasis h5::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(/lib/img/headdeco.png);
  background-repeat: no-repeat;
  background-size: 40px;
  height: 30px;
  width: 20px;
}

.btn-inner .emphasis h5::before {
  left: 0;
  background-position: 0 0;
}

.btn-inner .emphasis h5::after {
  right: 0;
  background-position: -20px 0;
}





.btn-inner .emphasis .free {
  font-size: 16px;
  line-height: 70px;
  display: inline-block;
  background: url(/lib/img/headdeco_4.png);
  background-size: cover;
  width: 70px;
  font-weight: 900;
  position: absolute;
  left: 50px;
}

.btn-inner .emphasis .free span {
  font-size: 18px;
  display: block;
}


.btn-inner .emphasis .body {
  text-align: left;
  margin: auto;
  margin-top: 7.5px;
}

.btn-inner .emphasis .body .sup {
  font-size: 14px;
  display: block;
  line-height: 25px;
}

.btn-inner .emphasis .body .main {
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 30px;
}

.btn-inner a.btn-1 {
  outline: 0;
  padding: 0 20px 0 50px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
  overflow: hidden;
  border-radius: 0.25em;
  font-size: 14px;
  line-height: 46px;
  border: 2px solid #FE7A16;
  background: #fff;
  color: #FE7A16;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.btn-inner a.btn-1:hover {
  background: #FE7A16;
  color: #fff;
}

.btn-inner a.btn-1::after {
  content: "\e65d";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 18px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 20px;
}


.btn-inner.form-inner a.btn-1.plus::after {
  content: "\e61a";
}

.btn-inner.form-inner a.btn-1.plus.done::after {
  content: "\e64c";
}

.btn-inner.form-inner a.btn-1:hover::after {
  animation-name: pop;
  -webkit-animation-name: pop;
}



.btn-inner a.btn-1::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.btn-inner a.btn-1:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

.btn-inner a.btn-1:hover::after {
  animation-name: arrow;
  -webkit-animation-name: arrow;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

.btn-inner .btn-2 {
  border: 0;
  outline: 0;
  padding: 20px 20px 20px 50px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #FE7A16;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
  overflow: hidden;
  line-height: 1;
  border-radius: 0.25em;
  font-weight: bold;
  font-size: 14px;
}

.btn-inner .btn-2:hover {
  box-shadow: 0 1px 0 #e06101;
  transform: translateY(1px);

}

.btn-inner .btn-2:hover:active {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;

}

.btn-inner .btn-2::after {
  content: "\e65d";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 18px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 20px;
}

.btn-inner .btn-2::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.btn-inner .btn-2:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

.btn-inner .btn-2:hover::after {
  animation-name: arrow;
  -webkit-animation-name: arrow;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}



.post-loop-wrap .btn-inner {
  margin-top: 0;
}

.contact-this {
  text-align: center;
  position: relative;
  padding-top: 25px;
  margin-top: 5px;
  font-size: 14px;
}

.contact-this::before {
  content: 'または';
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  width: 300px;
  margin: 0 auto;
  line-height: 20px;
  font-size: 12px;
  color: #999;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
  z-index: 9;
}

.contact-this::after {
  content: '';
  height: 1px;
  width: 150px;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  background: #e0e0e0;
  margin: 0 auto;
}


.contact-this a {
  color: #999;
}

/* ----------------------------------------
* flatpicker
---------------------------------------- */

.flatpickr-calendar:not(.noCalendar) .flatpickr-current-month {
  display: flex !important;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.flatpickr-calendar:not(.noCalendar) .cur-year {
  order: 1;
  height: 100% !important;
}

.flatpickr-calendar:not(.noCalendar) .flatpickr-current-month input.cur-year {
  font-weight: 700 !important;
  text-align: right;
  color: inherit !important;
}

.flatpickr-calendar:not(.noCalendar) .numInputWrapper span.arrowUp,
.flatpickr-calendar:not(.noCalendar) .numInputWrapper span.arrowDown {
  display: none;
}


.flatpickr-calendar:not(.noCalendar) .numInputWrapper:hover,
.flatpickr-calendar:not(.noCalendar) .flatpickr-current-month span.cur-month:hover {
  background: none !important;
}


.flatpickr-calendar:not(.noCalendar) .cur-month:before {
  content: "年 ";
}

.flatpickr-calendar:not(.noCalendar) .cur-month {
  order: 2;
  margin-left: 0 !important;
}





/* ----------------------------------------
* area
---------------------------------------- */

#area {
  margin: 0 auto;
  display: block;
  text-align: center;
  max-width: 800px;
  width: auto;
}

#area-in {
  margin: 0 auto;
  display: block;
  text-align: center;
  max-width: 800px;
  width: auto;
  height: 600px;
  overflow: hidden;
}

#area-in canvas {
  position: relative;
}


.area .thumb {
  padding: 30px;
}

#all-area ul {
  padding: 20px 20px 0;
}


#all-area ul li {
  width: calc((100% - 60px)/4);
  display: block;
  float: left;
  line-height: 50px;
  margin-bottom: 20px;
  margin-left: 20px;
}


#all-area ul li.area_1 a {
  color: #8886d9;
}

#all-area ul li.area_2 a {
  color: #619feb;
}


#all-area ul li.area_3 a {
  color: #3da942;
}


#all-area ul li.area_4 a {
  color: #99cc33;
}

#all-area ul li.area_5 a {
  color: #f2c100;
}

#all-area ul li.area_6 a {
  color: #ff9900;
}


#all-area ul li.area_7 a {
  color: #fd9fab;
}

#all-area ul li.area_8 a {
  color: #ff6460;
}

#all-area ul li.area_9 a {
  color: #ff6460;
}


#all-area ul li.inactive {
  opacity: .3;
  pointer-events: none;
}

#all-area ul li.inactive a {
  color: #999;
}


#all-area ul li:nth-child(4n + 1) {
  margin-left: 0;
}


#all-area ul li a {
  display: block;
  border: 2px solid;
  text-align: center;

}


.content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
  border-bottom: 1px solid #efefef;
}

.post-type-archive-area .content-area h2 {
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 30px;
}


.content-area .title-inner {
  font-size: 21px;
  font-weight: bold;
}

.content-area .title-inner span {
  display: inline-block;
  font-size: 24px;
  position: relative;
  font-weight: 900;
}


.content-area-inner {
  max-width: 800px;
  margin: 30px auto 0;
}

.content-area-inner ul li {
  display: inline-block;
  padding: 0 15px;
}



/* ----------------------------------------
* sitemap
---------------------------------------- */

#sitemap_1_1 .text {
  max-width: 650px;
}

#sitemap_1 a {
  padding: 15px;
  color: #154ca1;
  display: block;
  border: 2px solid #154ca1;
  line-height: 46px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

#sitemap_1 a:hover {
  color: #fff;
}

#sitemap_1 a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: #154ca1;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  z-index: -1;
}

#sitemap_1 a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

#sitemap_1 a:hover::after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

#sitemap_1 ul {
  margin: 0;
}

#sitemap_1 .top {
  position: relative;
  width: 250px;
  text-align: center;
}

#sitemap_1 .parent {
  padding-left: 200px;
  position: relative;
}

#sitemap_1 .parent::before {
  content: '';
  width: 2px;
  height: 100%;
  background: #154ca1;
  position: absolute;
  left: 125px;
  top: 0;
}

#sitemap_1 .parent.last::before {
  height: calc(100% - 40px);
}

#sitemap_1 .parent::after {
  content: '';
  height: 2px;
  width: 75px;
  background: #154ca1;
  position: absolute;
  left: 125px;
  top: 68px;
}

#sitemap_1 .parent .child {
  padding-left: 200px;
  position: relative;
}

#sitemap_1 .parent .child::before {
  content: '';
  width: 2px;
  height: calc(100% - 40px);
  background: #154ca1;
  position: absolute;
  left: 125px;
  top: 0;
}

#sitemap_1 .parent .child-item::after {
  content: '';
  height: 2px;
  width: 75px;
  background: #154ca1;
  position: absolute;
  left: -75px;
  top: 68px;
}

#sitemap_1 li {
  display: block;
  width: 250px;
  text-align: center;
  padding-top: 30px;
  position: relative;
}



/* ----------------------------------------
* content
---------------------------------------- */

.home #content {
  padding-top: 0;
}

#content {
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  padding: 70px 0;
}

#content .wp-caption {
  max-width: 100%;
  border: 1px solid #efefef;
  text-align: center;
  padding: 5px;
}

#content .wp-caption-text {
  padding: 12px 16px;
  margin-bottom: 0;
  text-align: center;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.fixed {
  position: fixed !important;
  top: 90px;
}


img.fadeUp {
  opacity: 0;
  transition: all .3s;
}

img.fadeUp.lazyloaded {
  opacity: 1;
}


.m_0 {
  margin: 0 !important;
}

.blur {
  filter: blur(20px);
}

.grayscale {
  -webkit-filter: grayscale(60%);
  filter: grayscale(60%);
}

.hook {
  position: absolute;
  bottom: 30%;
  width: 1px;
  height: 0;
}

.center {
  margin: 0 auto;
  text-align: center;
}

.lazyload {
  opacity: 0;
}

.remado-color {
  color: #154ba3;
}

.sankaku::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 50px 0 0;
  border-color: #154ca1 transparent transparent transparent;
}


/* ----------------------------------------
* icon
---------------------------------------- */

span.had-icon {
  padding-left: 34px;
}

span.had-icon::before {
  content: '';
  background-image: url(/lib/img/icon.png);
  background-repeat: no-repeat;
  background-size: 72px;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 15px;
  bottom: 0;
  top: 0;
  margin: auto;
}

span.had-icon.icon-1::before {
  background-position: 0 0;
}

span.had-icon.icon-2::before {
  background-position: 0 -24px;
}

span.had-icon.icon-3::before {
  background-position: 0 -48px;
}

span.had-icon.icon-4::before {
  background-position: 0 -72px;
}

span.had-icon.icon-5::before {
  background-position: 0 -96px;
}

span.had-icon.icon-6::before {
  background-position: 0 -120px;
}

span.had-icon.icon-7::before {
  background-position: 0 -144px;
}

span.had-icon.icon-8::before {
  background-position: 0 -168px;
}

span.had-icon.icon-9::before {
  background-position: 0 -192px;
}

span.had-icon.icon-10::before {
  background-position: 0 -216px;
}


span.had-icon.icon-11::before {
  background-position: 0 -240px;
}


span.had-icon.icon-12::before {
  background-position: 0 -264px;
}


span.had-icon.icon-13::before {
  background-position: 0 -288px;
}


span.had-icon.icon-14::before {
  background-position: 0 -312px;
}


span.had-icon.icon-15::before {
  background-position: 0 -336px;
}

span.had-icon.icon-16::before {
  background-position: 0 -360px;
}



span.had-icon.icon-1.c_2::before {
  background-position: -24px 0;
}

span.had-icon.icon-2.c_2::before {
  background-position: -24px -24px;
}

span.had-icon.icon-3.c_2::before {
  background-position: -24px -48px;
}

span.had-icon.icon-4.c_2::before {
  background-position: -24px -72px;
}

span.had-icon.icon-5.c_2::before {
  background-position: -24px -96px;
}

span.had-icon.icon-6.c_2::before {
  background-position: -24px -120px;
}

span.had-icon.icon-7.c_2::before {
  background-position: -24px -144px;
}

span.had-icon.icon-8.c_2::before {
  background-position: -24px -168px;
}

span.had-icon.icon-9.c_2::before {
  background-position: -24px -192px;
}

span.had-icon.icon-10.c_2::before {
  background-position: -24px -216px;
}

span.had-icon.icon-11.c_2::before {
  background-position: -24px -240px;
}


span.had-icon.icon-12.c_2::before {
  background-position: -24px -264px;
}


span.had-icon.icon-13.c_2::before {
  background-position: -24px -288px;
}


span.had-icon.icon-14.c_2::before {
  background-position: -24px -312px;
}


span.had-icon.icon-15.c_2::before {
  background-position: -24px -336px;
}

span.had-icon.icon-16.c_2::before {
  background-position: -24px -360px;
}

span.had-icon.icon-1.c_3::before {
  background-position: -48px 0;
}

span.had-icon.icon-2.c_3::before {
  background-position: -48px -24px;
}

span.had-icon.icon-3.c_3::before {
  background-position: -48px -48px;
}

span.had-icon.icon-4.c_3::before {
  background-position: -48px -72px;
}

span.had-icon.icon-5.c_3::before {
  background-position: -48px -96px;
}

span.had-icon.icon-6.c_3::before {
  background-position: -48px -120px;
}

span.had-icon.icon-7.c_3::before {
  background-position: -48px -144px;
}

span.had-icon.icon-8.c_3::before {
  background-position: -48px -168px;
}

span.had-icon.icon-9.c_3::before {
  background-position: -48px -192px;
}

span.had-icon.icon-10.c_3::before {
  background-position: -48px -216px;
}

span.had-icon.icon-11.c_3::before {
  background-position: -48px -240px;
}


span.had-icon.icon-12.c_3::before {
  background-position: -48px -264px;
}


span.had-icon.icon-13.c_3::before {
  background-position: -48px -288px;
}


span.had-icon.icon-14.c_3::before {
  background-position: -48px -312px;
}


span.had-icon.icon-15.c_3::before {
  background-position: -48px -336px;
}

span.had-icon.icon-16.c_3::before {
  background-position: -48px -360px;
}

/* ----------------------------------------
* ballon
---------------------------------------- */

.alert_text {
  color: #fe1916;
  font-weight: bold;
  text-align: center;
  display: block;
}


.balloon-box {
  display: inline-block;
}


button[data-balloon] {
  overflow: visible
}

[data-balloon]:after {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  -moz-transition: all 0.18s ease-out 0.18s;
  -ms-transition: all 0.18s ease-out 0.18s;
  -o-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  font-family: sans-serif !important;
  font-weight: normal !important;
  font-style: normal !important;
  text-shadow: none !important;
  font-size: 12px !important;
  line-height: 1.8;
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #fff;
  content: attr(data-balloon);
  padding: .5em 1em;
  position: absolute;
  white-space: nowrap;
  z-index: 10;

}

[data-balloon]:before {
  background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  background-size: 100% auto;
  width: 18px;
  height: 6px;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  -moz-transition: all 0.18s ease-out 0.18s;
  -ms-transition: all 0.18s ease-out 0.18s;
  -o-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  content: '';
  position: absolute;
  z-index: 10;
}

[data-balloon]:hover:before,
[data-balloon]:hover:after,
[data-balloon][data-balloon-visible]:before,
[data-balloon][data-balloon-visible]:after {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  pointer-events: auto;
}

[data-balloon][data-balloon-pos="up"]:after {
  bottom: 100%;
  left: 50%;
  margin-bottom: 11px;
  -webkit-transform: translate(-50%, 10px);
  -moz-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}

[data-balloon][data-balloon-pos="up"]:before {
  bottom: 100%;
  left: 50%;
  margin-bottom: 5px;
  -webkit-transform: translate(-50%, 10px);
  -moz-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}

[data-balloon][data-balloon-pos="up"]:hover:after,
[data-balloon][data-balloon-pos="up"][data-balloon-visible]:after {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

[data-balloon][data-balloon-pos="up"]:hover:before,
[data-balloon][data-balloon-pos="up"][data-balloon-visible]:before {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

[data-balloon][data-balloon-pos='down']:after {
  left: 50%;
  margin-top: 11px;
  top: 100%;
  -webkit-transform: translate(-50%, -10px);
  -moz-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
}

[data-balloon][data-balloon-pos='down']:before {
  background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  background-size: 100% auto;
  width: 18px;
  height: 6px;
  left: 50%;
  margin-top: 5px;
  top: 100%;
  -webkit-transform: translate(-50%, -10px);
  -moz-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
}

[data-balloon][data-balloon-pos='down']:hover:after,
[data-balloon][data-balloon-pos='down'][data-balloon-visible]:after {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

[data-balloon][data-balloon-pos='down']:hover:before,
[data-balloon][data-balloon-pos='down'][data-balloon-visible]:before {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

/* ----------------------------------------
* main
---------------------------------------- */

article.post,
article.page,
article.news,
.side-widget {
  background: #fff;
  border: 0;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.cat-content {
  margin: 0px;
  padding: 0 15px;
  font-size: 14px;
  background: #fff;
  position: relative;
  height: 50px;
  line-height: 50px;
  display: flex;
  align-items: center;
}

.post-loop-wrap {
  margin-bottom: 20px;
  background: #fff;
  border: 0;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px -1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.post-loop-wrap article a {
  display: block;
  padding: 15px;
  color: #333;
  width: 100%;
  height: 100%;
}

.post-loop-wrap article .post-comment a {
  display: inline-block;
  width: auto;
  height: auto;
  color: #FE7A16;
}




#loop-works article .post-header a,
article.works .post-header a {
  padding: 0;
  position: relative;
}

#loop-works article .post-header a:hover,
article.works .post-header a:hover {
  color: #FE7A16;
}




.post-loop-wrap article a:hover .post-thumbnail {
  opacity: .6;
}

#loop-product article a:hover .cat {
  background-image: url(/lib/img/cat/_cat.png) !important;
}

#loop-product article a:hover .simu_btn {
  box-shadow: 0 1px 0 #e06101;
  transform: translateY(1px);
}

#loop-product article a:active .simu_btn {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}



.post-loop-wrap article {
  border-bottom: 1px solid #efefef;
  box-shadow: none;
  margin-bottom: 0;
  position: relative;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  box-sizing: border-box;
}

.post-loop-wrap article:last-child {
  border-bottom: none;
}

.post-loop-wrap article a.hover {
  background: #f9f9f9;
}

.post-loop-wrap article.cotent-none {
  margin-bottom: 0px;
  background: #fff;
  border: 0;
  box-shadow: none;
  padding: 0px;
}

#loop-product .post-title {
  clear: none;
  line-height: 30px;
  font-size: 18px;
  max-height: 50px;
  overflow: hidden;
  font-weight: 900;
  margin-bottom: 10px;
}

#loop-product .price {
  line-height: 50px;
  font-weight: 900;
  position: absolute;
  left: 15px;
  bottom: 0;
  min-width: 215px;
}

.price .c_3 {

  color: #fe1916;
}

#loop-product .price .num {
  font-size: 24px;
  display: block;
  float: left;
}

#loop-product .price .sup {
  float: left;
  padding-right: 15px;
  font-size: 14px;
  display: block;
}

#loop-product .pricedown {
  line-height: 21px;
  position: absolute;
  bottom: 50px;
  left: 15px;
  font-weight: 900;
  min-width: 215px;
}

#loop-product .pricedown .priceoff {
  float: left;
  font-size: 14px;
  position: relative;
  background: linear-gradient(transparent 70%, #ffff00 70%);
}



#loop-product .pricedown .sup {
  font-size: 16px;
  padding-left: 10px;
  color: #999;
  text-decoration: line-through;
}

#loop-product .pricedown .num {
  font-weight: 900;
  font-size: 21px;
}

#loop-product .simu {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  height: 50px;
}


#loop-product .simu_btn {
  display: block;
  line-height: 48px;
  width: auto;
  text-align: center;
  border-radius: 0.25em;
  position: relative;
  padding: 0 40px 0 15px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #FE7A16;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

#loop-product .simu_btn::before {
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 11px;
  top: 0;
  font-size: 18px;
  -webkit-transition: all .3s;
  transition: all .3s;
  content: "\e65d";
}




#loop-product .cat {
  background-image: url(/lib/img/cat/cat.png);
  background-size: 400px;
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  top: 5px;
  right: 0;
  width: 100px;
  height: 20px;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

#loop-product .cat-plast {
  background-position: 0 0;
}

#loop-product .cat-agc {
  background-position: -100px 0;
}

#loop-product .cat-lixil {
  background-position: -200px 0;
}

#loop-product .cat-ykkap {
  background-position: -300px 0;
}


#loop-product .post-works {
  position: absolute;
  display: none;
  bottom: 10px;
  right: 230px;
  font-weight: 900;
  padding: 15px;
  overflow: hidden;
  line-height: 25px;
  background-image: url(/lib/img/balloon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#loop-product .post-works .sup {
  font-size: 12px;
  font-weight: normal;
}

#loop-product .post-works .balloon {
  display: block;
  text-align: center;
}

#loop-product .post-works .num {
  font-size: 18px;
}

#loop-post article {
  width: 33.333%;
  float: left;
  border-bottom: none;
  border-left: 1px solid #efefef;
}

#loop-post article:first-child {
  border: none;
}


#loop-post .post-body {}

#loop-post .post-title {
  clear: none;
  line-height: 25px;
  height: 50px;
  overflow: hidden;
  font-weight: bold;
  margin-top: 10px;
  font-size: 15px;
}

#loop-topics .post-thumbnail {
  width: auto;
  height: 200px;
  float: left;
}

#loop-topics .post-thumbnail img {
  width: auto;
  height: 100%;
}


#loop-topics .post-body {
  padding-left: 15px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

#loop-topics .post-title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 10px;
}


#loop-topics .post-title a {
  padding: 0;
}

#loop-topics .post-title a:hover {
  color: #FE7A16;
}

#loop-topics .post-ex {
  margin-bottom: 15px;
  font-size: 15px;
  max-height: 54px;
  overflow: hidden;
}


#loop-topics .post-tag .tag,
.topics-tag .tag {
  line-height: 30px;
  font-size: 12px;
  display: inline-block;
  padding: 0 10px;
  background: #fafafa;
  border-radius: 0.25em;
  border: 1px solid #efefef;
  margin-right: 10px;
  width: auto;
  color: #666;
}

.topics-tag {
  padding: 15px;
}


#loop-topics .post-tag {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  -webkit-overflow-scrolling: touch;
}



#related-post article {
  width: 33.333%;
  float: left;
  border: none;
}


#related-post article:nth-child(2),
#related-post article:nth-child(3) {
  border-left: 1px solid #efefef;
}



#related-post .post-title {
  clear: none;
  line-height: 25px;
  height: 50px;
  overflow: hidden;
  font-weight: bold;
  margin-top: 10px;
  font-size: 15px;
}







#loop-works article {
  padding: 15px;
}

#loop-works .post-thumbnail {
  width: 220px;
  float: left;
}

#loop-works .post-body {
  min-height: 220px;
  position: relative;
}


article.works {
  margin-bottom: 20px;
  background: #fff;
  border: 0;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px -1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .3s;
  transition: all .3s;
}


article.works .header-title {
  padding: 15px;
  font-size: 18px;
  font-weight: 900;
  border-bottom: 1px solid #efefef;
}


article.works .post-body {
  padding: 15px;
}


#loop-works article a {
  padding: 0;
}

#loop-works.single-works article .post-header a {
  padding: 0;
  margin: 0;
}


#loop-works.single-works .post-balloon {
  padding: 15px;
}

#loop-works .post-balloon {
  padding: 15px;
  border: 2px solid #e0e0e0;
  margin-bottom: 15px;
  border-radius: 0.8em;
  position: relative;
}


article.works .post-balloon {
  padding: 15px;
  border: 2px solid #e0e0e0;
  margin-bottom: 15px;
  border-radius: 0.8em;
  position: relative;
}

#loop-works .post-balloon::before,
article.works .post-balloon::before {
  content: '';
  background-image: url(/lib/img/hukidashi.png);
  position: absolute;
  width: 40px;
  height: 25px;
  bottom: -25px;
  left: 50px;
  background-size: contain;
  background-repeat: no-repeat;
}

#loop-works .post-header,
article.works .post-header {
  line-height: 30px;
  position: relative;
}

#loop-works .post-title,
article.works .post-title {
  font-weight: bold;
  font-size: 15px;
}

#loop-works .post-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}




#loop-works .post-rate,
article.works .post-rate {
  position: relative;
  font-size: 14px;
  line-height: 30px;
  float: left;
  padding-right: 5px;
}


#loop-works .post-rate .star,
article.works .post-rate .star {
  background-image: url(/lib/img/star.png);
  width: 80px;
  height: 16px;
  display: block;
  background-size: cover;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  margin: 7px 0;
}

.star[data-value="4"] {
  background-position: -16px;
}

.star[data-value="3"] {
  background-position: -32px;
}

.star[data-value="2"] {
  background-position: -48px;
}

.star[data-value="1"] {
  background-position: -64px;
}


#loop-works .post-product .had-icon::before,
article.works .post-product .had-icon::before {
  left: 0;
}

#loop-works .post-product,
article.works .post-product {
  position: relative;
  height: 50px;
  line-height: 50px;
  font-weight: 900;
  font-size: 16px;
  border-bottom: 1px dotted #efefef;
}

#loop-works .post-product span,
article.works .post-product span {
  display: inline-block;
}

#loop-works .post-product span.details,
article.works .post-product span.details {
  font-size: 14px;
  font-weight: 500;
}

#loop-works .post-data,
article.works .post-data {
  font-size: 14px;
  position: relative;
}

.works-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border: 2px solid #efefef;

  border-radius: 50%;
  float: left;
  background-repeat: no-repeat;
  background-size: 400px;
  background-position: 0 0;
}

.works-icon.icon_01_10 {
  background-position: 0 0;
}

.works-icon.icon_01_20 {
  background-position: -50px 0;
}


.works-icon.icon_01_30 {
  background-position: -100px 0;
}


.works-icon.icon_01_40 {
  background-position: -150px 0;
}

.works-icon.icon_01_50 {
  background-position: -200px 0;
}

.works-icon.icon_01_60 {
  background-position: -250px 0;
}

.works-icon.icon_01_70 {
  background-position: -300px 0;
}

.works-icon.icon_01_80 {
  background-position: -350px 0;
}


.works-icon.icon_02_10 {
  background-position: 0 -50px;
}

.works-icon.icon_02_20 {
  background-position: -50px -50px;
}


.works-icon.icon_02_30 {
  background-position: -100px -50px;
}


.works-icon.icon_02_40 {
  background-position: -150px -50px;
}

.works-icon.icon_02_50 {
  background-position: -200px -50px;
}

.works-icon.icon_02_60 {
  background-position: -250px -50px;
}

.works-icon.icon_02_70 {
  background-position: -300px -50px;
}

.works-icon.icon_02_80 {
  background-position: -350px -50px;
}







#loop-works .post-comment,
article.works .post-comment {
  font-size: 15px;
  margin-bottom: 15px;
}

#loop-works .post-name,
article.works .post-name {
  line-height: 50px;
  padding-left: 10px;
  float: left;
}

#loop-works .date,
article.works .date {
  line-height: 50px;
  padding-left: 5px;
  color: #999;
  border-left: 1px solid;
  margin-left: 5px;
}



#loop-works .post-btn,
article.works .post-btn {
  position: absolute;
  top: 0;
  right: 0;
}

#loop-works .post-btn a,
article.works .post-btn a {
  display: block;
  margin-left: 10px;
  float: left;
  height: 50px;
  line-height: 50px;
  width: auto;
  text-align: center;
  border-radius: 0.25em;
  position: relative;
  padding: 0 40px 0 15px;
}

#loop-works .post-btn a.btn_1,
article.works .post-btn a.btn_1 {
  background: none;
  color: #FE7A16;
  font-weight: bold;
}



#loop-works .post-btn a.btn_1:hover,
article.works .post-btn a.btn_1:hover {
  background-color: rgba(0, 0, 0, 0.05);
}


#loop-works .post-btn a.btn_2,
article.works .post-btn a.btn_2 {
  background: #FE7A16;
  font-weight: bold;
  color: #fff;
}

#loop-works .post-btn a.btn_2:hover,
article.works .post-btn a.btn_2:hover {
  opacity: 0.9;
}


#loop-works .post-thumbnail,
article.works .post-thumbnail {
  width: 80px;
  position: relative;
  float: left;
  margin-right: 10px;
}

#loop-works .post-thumbnail a,
article.works .post-thumbnail a {
  cursor: zoom-in;
  padding: 0;
}

#loop-works .post-thumbnail a:hover,
article.works .post-thumbnail a:hover {
  opacity: .6;
}




.product-data li {
  font-size: 12px;
  display: inline-block;
  padding-right: 15px;
  color: #999;
  line-height: 30px;
}



.product-data li a {
  color: #999;
}


#loop-guide .inner {
  background: url(/lib/img/stripe.png) repeat left top;
}



#loop-guide article {
  width: 50%;
  float: left;
  padding: 15px;
  background: none;
}

#loop-guide article:nth-child(even)::before {
  content: '';
  position: absolute;
  height: 80%;
  width: 1px;
  background: #ddd;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#loop-guide article:nth-child(n + 3)::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 80%;
  background: #ddd;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}




#loop-guide article a {
  padding: 0;
  position: relative;
  margin-bottom: 15px;
}

#loop-guide article a .card {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px -1px rgba(0, 0, 0, 0.1);
  padding: 15px;
  background: #fff;
  z-index: 2;
}

#loop-guide article a .card_deco {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}



#loop-guide article a .card_deco::before {
  content: '';
  position: absolute;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px -1px rgba(0, 0, 0, 0.1);
  width: calc(100% - 20px);
  height: 100%;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#loop-guide article a .card_deco::after {
  content: '';
  position: absolute;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px -1px rgba(0, 0, 0, 0.1);
  width: calc(100% - 10px);
  height: 100%;
  top: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#loop-guide article .new_label {
  position: absolute;
  z-index: 99;
  top: -10px;
  left: -10px;
  background-image: url(/lib/img/new.png);
  background-size: cover;
  width: 64px;
  height: 64px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

#loop-guide article .count_label {
  position: absolute;
  z-index: 99;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, .95);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
}



#loop-guide article .post-thumbnail {}

#loop-guide article .post-body {
  height: 50px;
  overflow: hidden;
  margin-top: 10px;
}

#loop-guide article .post-title {
  font-weight: bold;
  font-size: 15px;
  line-height: 25px;
}


#loop-guide .desc {
  padding: 15px;
  font-size: 14px;
}


#loop-guide article {
  border: none;

}


#post-guide .post-loop-wrap {
  box-shadow: none;
  border-top: 1px solid #efefef;
}

#post-guide .inner {
  padding: 0;
}


#loop-history .swiper-container,
#loop-history .pre {
  padding: 15px 15px 40px;
}


#loop-history .inner.not_history {
  height: 257px;
  background-image: url(/lib/img/not_history.png);
  background-position: center center;
}

#loop-history .inner.not_history span {
  text-align: center;
  display: block;
  padding: 60px 0;
  font-size: 21px;
  font-weight: 900;
  color: #efefef;
}




#loop-history article {
  width: calc(33.333% - 10px);
  margin-right: 15px;
  border: none;
}

#loop-history article .post-body {
  margin-top: 10px;
}

#loop-history article .post-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 5px;
}


#loop-history article .post-price {
  position: relative;
  line-height: 30px;
}

#loop-history article .pricedown {
  position: absolute;
  font-size: 14px;
  font-weight: 900;
  border: 2px solid #fe1916;
  color: #fe1916;
  font-size: 12px;
  line-height: 26px;
  padding: 0 5px;
}

#loop-history article .price {
  text-align: right;
  font-weight: 900;
}

#loop-history article .price .num {
  font-size: 18px;
}


#loop-history .cat {
  font-size: 14px;
  color: #999;
  line-height: 1;
  margin-bottom: 5px;
}


#loop-history .swiper-pagination-bullet-active,
#side-rank .swiper-pagination-bullet-active {
  background: #FE7A16;
}

#loop-history .main-inner-title a {
  color: #999;
  padding: 0 15px 0 40px;
}

#loop-history .main-inner-title a::before {
  content: "\e646";
  left: 15px;
  top: 0;
  right: auto;
}

#loop-history .main-inner-title a:hover::before {
  transform: scale(1.1);
}

#process {
  padding: 30px 0;
}

#process .loader {
  position: relative;
  margin-bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto 30px;
}


.post-type-archive-works .main-inner-title a {
  padding: 0 15px 0 40px;
}

.post-type-archive-works .main-inner-title a::before {
  content: "\e686";
  left: 15px;
  top: 0;
  right: auto;
}

.post-type-archive-works .main-inner-title a:hover::before {
  transform: scale(1.1);
}


.post-type-archive-area h1 {
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 30px;
}

.post-type-archive-area .breadcrumb {
  margin-bottom: 0;
}

.post-type-archive-area .list {
  margin: 0 auto;
  display: block;
  text-align: center;
  display: inline-block;
}

.post-type-archive-area h2 {
  font-size: 18px;
  font-weight: 900;
}

.post-type-archive-area .post-sup {
  border: 2px solid #efefef;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #666;
  max-width: 800px;
  margin: 30px auto 0;
}


.post-type-archive-area .post-sup ul li {
  position: relative;
  line-height: 20px;
  padding-left: 20px;
  text-align: left;
}

.post-type-archive-area .post-sup ul li::before {
  content: '※';
  position: absolute;
  left: 0;
  top: 0;
}


.post-type-archive-area #content,
.page-template-page-simulation #content {
  padding: 70px 0 0;
}

.main-inner-title a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}









#loop-history article a {
  padding: 0;
}



a.btn {
  position: relative;
  padding: 0 40px 0 15px;
}

.btn:hover::before {
  transform: translateX(2px);
}




.btn::before {
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 11px;
  top: 0;
  font-size: 18px;
  -webkit-transition: all .3s;
  transition: all .3s;
  content: "\e65d";
}

.head-content .text {
  padding: 15px;
  font-size: 15px !important;
}

.ads {
  margin-bottom: 20px;
}

.post-header {
  display: block;
  position: relative;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  background: #fff;
  border: 0;
}

.post-content .post-header {
  padding: 15px;
  border-bottom: 1px solid #efefef;
}




.post-header .maker {
  display: inline-block;
  height: 30px;
  float: left;
  padding: 5px 10px 5px 0;
  margin-right: 10px;
  border-right: 1px solid #efefef;
}

.post-header .maker img {
  width: auto;
  height: 100%;
  vertical-align: top;
}

#post-404 .post-header {
  padding: 20px;
}

.post-header-movie {
  font-size: 21px;
  font-weight: bold;
  line-height: 21px;
}




.post-title a {
  color: #383838;
}

.post-title a:hover {
  text-decoration: none;
}

.cat-content .post-header,
article.page .post-header {
  /*padding: 56px 64px 0;*/
  margin-bottom: 0;
  background: #fff;
}

.cat-content .post-title,
article.page .post-title {
  margin-bottom: 0;
}

.post-meta {
  margin-top: 0;
  margin-bottom: 42px;
  padding: 0;
  border-top: 1px #efefef solid;
}

.post-meta li {
  background: #fff;
  float: left;
  margin-top: -0.7em;
  margin-right: 20px;
  padding-right: 24px;
  font-size: 14px;
}

.post-thumbnail {
  width: 100%;
  float: none;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.post-thumbnail img.lazyload {}

.post-thumbnail img {
  width: 100%;
  height: auto;
}

.post-content,
.head-content {
  background: #fff;
  border: 0;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative;
}




.post-content p,
.post-comment p {
  margin-bottom: .9rem;
  line-height: 1.8;
}

.post-content p:last-child,
.post-comment p:last-child {
  margin-bottom: 0;
}

.post-content .maker-link {
  margin-top: 30px;
  text-align: center;
}


.post-content .maker-link a {
  border: 0;
  outline: 0;
  padding: 0 20px 0 50px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
  overflow: hidden;
  line-height: 1;
  border-radius: 0.25em;
  font-weight: 900;
  font-size: 14px;
  line-height: 46px;
  border: 2px solid #FE7A16;
  background: #fff;
  color: #FE7A16;
  font-weight: bold;
  line-height: 46px;
  cursor: pointer;
}


.post-content .maker-link a:hover {
  box-shadow: 0 1px 0 #e06101;
  transform: translateY(1px);
}

.post-content .maker-link a:hover:active {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}

.post-content .maker-link a::after {
  content: "\e732";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 18px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 20px;
}

.post-content .readmore {
  padding: 15px;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
}



.post-content #chara_show {
  border: 0;
  outline: 0;
  padding: 0 20px 0 50px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
  overflow: hidden;
  line-height: 1;
  border-radius: 0.25em;
  font-weight: 900;
  font-size: 14px;
  line-height: 46px;
  border: 2px solid #FE7A16;
  background: #fff;
  color: #FE7A16;
  font-weight: bold;
  line-height: 46px;
  cursor: pointer;
  position: relative;
}



.post-content #chara_show::before {
  content: "\e657";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 18px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 20px;

}

.post-content #chara_show:hover {
  box-shadow: 0 1px 0 #e06101;
  transform: translateY(1px);
}

.post-content #chara_show:hover:active {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}


.post-content .post-inner .text {
  padding: 15px;
}


.post-content .inner.hide {
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.post-content .inner.hide::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 45%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(70%, #fff), to(white));
  background: linear-gradient(rgba(255, 255, 255, 0) 0, #fff 70%, #fff 100%);
}





.post-content .inner {
  padding: 15px;
}


.post-content hr {
  border-bottom: 1px solid #efefef;
  margin: 20px 0;
  clear: both;
}

.post-content ol {
  list-style: decimal;
}

.post-content dl dt {
  font-weight: bold;
  margin-bottom: 4px;
}

.post-content dl dd {
  margin: 0 0 20px;
  border-left: 4px solid #e5e5e5;
  padding: 0 0 0 10px;
}

.post-content .text h2 {
  font-size: 21px;
  font-weight: 900;
  max-width: 900px;
  background: url(/lib/img/stripe.png) repeat left top;
  padding: 15px;
  margin: 15px -15px;
}



.post-content .text h3 {
  font-size: 18px;
  font-weight: 900;
  max-width: 900px;
  padding-bottom: 10px;
  margin: 0 auto 10px;
  border-bottom: 1px solid #efefef;
}

.post-content .text h4 {
  font-weight: 900;
}


.post-content .text {
  max-width: 900px;
  margin: 0 auto;
  padding: 15px;
  font-size: 16px;
}

.post-content .graph {
  padding-top: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.post-content .post-data {
  padding: 15px;
  border-bottom: 1px solid #efefef;
}


.post-content .post-price {
  padding: 15px;
}




.post-price .price-top {
  padding-top: 25px;
  position: relative;
}

.post-content .pricedown {
  line-height: 25px;
  position: absolute;
  bottom: 50px;
  left: 0;
  font-weight: 900;
  min-width: 215px;
}

.post-content .pricedown .priceoff {
  float: left;
  line-height: 25px;
  font-size: 16px;
  position: relative;
  background: linear-gradient(transparent 70%, #ffff00 70%);
}

.post-content .pricedown .priceoff .num {

  font-size: 21px;
}

.post-content .pricedown .sup {
  font-size: 16px;
  padding-left: 10px;
  color: #999;
  text-decoration: line-through;
}





.post-content .price {
  line-height: 50px;
  font-weight: 900;
}

.post-content .price .sup {
  float: left;
  padding-right: 15px;
  font-size: 14px;
  display: block;
}

.post-content .price .num {
  font-size: 24px;
}

.post-content .section-title {
  margin: 0px;
  padding: 0 15px;
  background: #fff;
  position: relative;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #efefef;
}

.post-content .section-title span {
  font-weight: 900;
}


.post-content .question-content {
  background: #fafafa;
  padding: 15px;
  font-size: 14px;
  border: 2px solid #efefef;
}

.post-content .question-content h4 {
  font-size: 18px;
  font-weight: 900;
  color: #FE7A16;
  margin-bottom: 10px;
}


.post-content .sup-content {
  font-size: 14px;
  color: #999;
}



.post-content .caution-box {
  padding: 15px;
  color: #fe1916;
  font-weight: bold;
  border: 3px solid;
}


.post-content .point {
  padding: 15px;
  border: 2px dotted #FE7A16;
}

.post-content .point ul li {
  font-weight: 900;
  margin-bottom: 15px;
  position: relative;
  padding-left: 34px;
}

.post-content .point ul li::before {
  content: '';
  background-image: url(/lib/img/icon.png);
  background-repeat: no-repeat;
  background-size: 72px;
  background-position: -24px -24px;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}



.post-content .point ul li:last-child {
  margin-bottom: 0px;
}



.cast-inner {
  padding: 15px;
}


.form-item {
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 0.8em;
  position: relative;
  margin-bottom: 30px;
}

.form-item.done {
  border: 2px solid #FE7A16;
}


.form-inner {
  margin-bottom: 15px;
}

.form-inner:last-child {
  margin-bottom: 0;
}


.simulation .desc {}

.simulation .inner {
  font-size: 14px;
}

.cast-inner h3 {
  font-size: 16px;
  font-weight: 900;
  line-height: 50px;
  padding: 0;
}

.cast-inner h4 {
  font-size: 16px;
  font-weight: 900;
  color: #FE7A16;
  line-height: 50px;
  padding: 0;
  padding-left: 50px;
  position: relative;
}

.cast-inner h4 span {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
  bottom: 0;
  top: 0;
  text-align: center;
}

.cast-inner .form-item h3 {
  position: absolute;
  top: -25px;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: #fff;
  width: 110px;
}


.form-item {
  padding: 10px;
}


.form-inner li {
  width: calc((100% - 30px) / 3);
  float: left;
  text-align: center;
  font-size: 14px;
  margin-left: 15px;
  margin-bottom: 15px;
  position: relative;
}

.form-inner li:nth-child(3n + 1) {
  margin-left: 0;
}

.form-inner.inner-3 li label .name {
  font-weight: bold;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.form-inner.inner-3 li label .sup {
  font-size: 12px;
  font-weight: normal;
  padding-top: 5px;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}




.form-inner li figure {
  overflow: hidden;
  border-radius: 0.8em;
}

.form-inner li label {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 0.8em;
  background: #fff;
  box-shadow: 0 0 0 2px #efefef inset, 0 2px 0 rgba(0, 0, 0, .1)
}



.form-inner.inner-2 ul {
  text-align: center;
}


.form-inner.inner-2 li {
  margin-left: 0;
  float: none;
  display: inline-block;
  width: auto;
}

.form-inner.inner-2 li:last-child {
  padding-left: 65px;
  margin-left: 15px;
}

.form-inner.inner-2 li:last-child::before {
  content: "\e646";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: 0;
  width: 50px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
}



.form-inner.inner-2 li label {
  box-shadow: none;
  padding: 0;
}

.form-inner.inner-2 li select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  outline: none;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  color: inherit;
  font-size: 18px;
  font-weight: 900;
  font-family: inherit;
  line-height: 30px;
  padding: 15px 60px;
  width: 100%;
  box-sizing: border-box;
}

.form-inner.inner-2 li label::after {
  content: 'mm';
  position: absolute;
  right: 15px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  height: 30px;
  top: 50%;
  margin-top: -15px;

  pointer-events: none;
}


.form-inner.inner-2 li label::before {
  position: absolute;
  left: 15px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  height: 30px;
  top: 50%;
  margin-top: -15px;
}


.form-inner.inner-2 li label .sup {
  display: block;
  float: left;
  line-height: 60px;
  font-size: 16px;
  font-weight: 900;
  padding-right: 15px;
}

.form-inner.inner-2 li label input {
  border-radius: 0.8em;
  background: #fff;
  box-shadow: 0 0 0 2px #efefef inset, 0 2px 0 #efefef;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  outline: none;
  vertical-align: middle;
  color: inherit;
  font-size: 18px;
  font-weight: 900;
  font-family: inherit;
  line-height: 30px;
  padding: 15px 60px 15px 30px;
  width: auto;
  box-sizing: border-box;
  max-width: 180px;
}

.form-inner.inner-2 li label input.error {
  box-shadow: 0 0 0 2px #fe1916 inset;
  background: rgba(254, 25, 22, 0.1);
}

.form-inner.inner-2 figure {
  height: 300px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.form-inner.inner-2 figure img {
  width: auto;
  height: 100%;
}


.form-inner.inner-4 li .show_image {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
}


.form-inner.inner-4 li .show_image a {
  line-height: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
  font-size: 18px;
  color: #999;
  cursor: zoom-in;
}


.form-inner.inner-4 li .show_image a::before {
  content: "\e71e";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.form-inner.inner-4 li figure {
  overflow: visible;
  width: 80px;
  height: 80px;
  margin: auto;
  z-index: 1;
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 50%;
  border: 1px solid #efefef;
}








.form-inner.inner-4 li a {}


.form-inner.btn-inner {
  margin-bottom: 0;
}


.remove-this {
  text-align: center;
  position: relative;
  padding-top: 25px;
  margin-top: 5px;
  font-size: 14px;
}


.remove-this a {
  color: #999;
}


.remove-this::before {
  content: 'または';
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  width: 300px;
  margin: 0 auto;
  line-height: 20px;
  font-size: 12px;
  color: #999;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
  z-index: 9;
}

.remove-this::after {
  content: '';
  height: 1px;
  width: 150px;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  background: #e0e0e0;
  margin: 0 auto;
}



#form_2_thumb img {
  max-height: 300px;
}


.simulation {
  position: relative;
}

.simulation .breadcrumb {
  margin: 0;
}


.simulation .post-cast {
  width: 100%;
}

.simulation .post-result {
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 9;
  background-color: rgba(255, 255, 255, .95);
}


.simulation .post-result .result-inner {}

.simulation .post-result.stop {
  top: auto;
  bottom: -20px;
}

.post-result .result-top {
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px -1px rgba(0, 0, 0, 0.1);
}


.post-content .result-top table {
  border: 2px solid #efefef;
}

.post-content .result-top table th,
.post-content .result-top table td {
  padding: 15px;
  border-bottom: 1px solid #efefef;

}


.post-content .result-top table th {
  border-right: 1px solid #efefef;
  font-weight: 900;
  color: #333;
  background: #fafafa;
  width: 200px;
  text-align: center;
  font-size: 15px;

}

.post-content .result-top table td.price {
  font-weight: 900;
  font-size: 18px;
  text-align: right;
}

.post-content .result-top table td.sub {
  font-size: 14px;
}

.post-content .result-top .item-price {
  margin-top: 15px;
}

table td.price .survey_01 {
  color: #999;
  font-weight: normal;
  font-size: 16px;

  margin-right: 5px;
}

table td.price .survey_01 span {
  text-decoration: line-through;

  margin-right: 5px;
}

table td.price .survey_02 {
  color: #FE7A16;
}


.result-top .simu-price {
  font-size: 18px;
}

.result-top .simu-price .simu-name {
  padding-right: 15px;
  color: #333;
}

.result-top .simu-price .simu-num {
  font-size: 24px;
}

.post-result .result-bottom {
  background: rgba(255, 255, 255, .95);
  line-height: 50px;
  padding: 10px 0;
}

.post-result .result-top h3 {
  font-weight: 900;
  font-size: 16px;
  line-height: 50px;
  border-bottom: 1px solid #efefef;
  padding: 0 15px;
  color: #FE7A16;
}

.result-top .item-inner {}

.result-bottom .item-inner {
  padding: 0 15px;
}

.result-bottom .result-btn {
  float: right;
}

.result-bottom .result-btn a.btn-1 {
  outline: 0;
  padding: 0 20px 0 50px;
  display: inline-block;
  text-align: center;
  border: 2px solid #FE7A16;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  float: left;
  overflow: hidden;
  border-radius: 0.25em;
  font-size: 14px;
  line-height: 46px;
  background: #fff;
  color: #FE7A16;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}


.result-bottom .result-btn a.btn-1:hover {
  box-shadow: 0 1px 0 #e06101;
  transform: translateY(1px);
}


.result-bottom .result-btn a.btn-1:hover:active {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}


.result-bottom .result-btn a.btn-1::after {
  content: "\e6b4";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 18px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 20px;
}



.result-bottom .result-btn a.btn-2 {
  line-height: 50px;
  display: block;
  text-align: center;
  float: left;
  padding: 0 20px 0 50px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #FE7A16;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
  overflow: hidden;
  border-radius: 0.25em;
  font-size: 14px;
  margin-left: 10px;
  font-weight: bold;
}


.result-bottom .result-btn a.btn-2:hover {
  box-shadow: 0 1px 0 #e06101;
  transform: translateY(1px);
}


.result-bottom .result-btn a.btn-2:hover:active {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}


.result-bottom .result-btn a.btn-2::after {
  content: "\e65d";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 18px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 20px;
}


.result-btn a.btn-3 {
  font-size: 12px;
  line-height: 20px;
  padding: 35px 10px 5px;
  display: block;
  border-left: 1px solid #efefef;
  position: relative;
}


.result-btn a.btn-3::before {
  content: '';
  background-image: url(/lib/img/icon.png);
  background-repeat: no-repeat;
  background-size: 72px;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 20px;
  margin: auto;
}

#result-tel::before {
  background-position: -24px -240px;
}


#result-show::before {
  background-position: -24px -264px;
}

#result-submit::before {
  background-position: -24px -288px;
}



.result-bottom .result-btn a.btn-1::after {
  content: "\e6b4";
}


.btn-inner .btn-2.simu-btn::after {
  content: "\e6ba";
}



.result-breakdown {
  background: #fff;
}

.result-breakdown h3 {
  line-height: 50px;
  font-weight: 900;
}

.result-breakdown table {
  width: 100%;
}

.result-breakdown table td.simu-price {
  font-size: 18px;
}

.result-breakdown table td.simu-price .simu-num {
  font-size: 24px;
}

.result-breakdown table td,
.result-breakdown table th {
  border: 0;
  padding: 15px;
  border-bottom: 1px solid #efefef;
}

.result-breakdown table th {
  border-right: 1px solid #efefef;
  font-weight: 900;
  color: #333;
  background: #fafafa;
  width: 200px;
  text-align: center;
  font-size: 15px;
}

.result-breakdown table td.sub {
  font-size: 14px;
}

.result-breakdown table td.price {
  font-size: 18px;
  font-weight: 900;
  text-align: right;
}


.alert .result-breakdown .item-inner {
  padding: 0 15px 15px;
}

.alert .result-breakdown .item-inner .item-price {
  margin-top: 15px;
}


.result-bottom .result-btn a.btn-1 {
  border: 2px solid #FE7A16;
  background: #fff;
  color: #FE7A16;
  font-weight: bold;
  line-height: 46px;
  cursor: pointer;
}



.post-result .result-bottom h3 {
  font-weight: 900;
  font-size: 16px;
  line-height: 50px;
  border-bottom: 1px solid #efefef;
  padding: 0 15px;
  color: #FE7A16;
}


.post-result .result-bottom .sup {
  font-size: 15px;
  font-weight: 900;
  display: block;
  float: left;
  padding: 0 15px;
}


.post-result .result-bottom .price {
  font-weight: 900;
  float: left;
  display: block;
  color: #fe1916;
}

.post-result .result-bottom .num {
  font-weight: 900;
  font-size: 24px;
  display: block;
  float: left;
}



.post-result .result-item {
  padding: 0 15px 15px 15px;
  border: 2px solid #ddd;
  margin-bottom: 15px;
  border-radius: 0.8em;
  position: relative;
}

.post-result .result-item h4 {
  line-height: 50px;
  font-weight: 900;
}


.result-price .simu-price {
  position: relative;
  font-weight: 900;
  text-align: right;
}


.post-result .result-price .simu-name {
  position: absolute;
  left: 0;
  font-size: 14px;
}


.post-result .result-price .simu-num {
  font-size: 30px;
}

.post-result .result-item .simu-price {
  line-height: 30px;
  text-align: right;
  position: relative;
  margin-bottom: 10px;
}

.post-result .result-item .simu-name {
  position: absolute;
  left: 0;
  font-size: 14px;
}

.post-result .result-item .simu-num {
  font-size: 18px;
  font-weight: 900;
}

.post-result .simu-product {
  max-height: 150px;
  overflow: auto;
}


.post-result .simu-product-name {
  line-height: 50px;
  font-weight: 900;
}

.post-result .simu-product-type {
  line-height: 50px;
}

#result-submit.blocked,
#result-show.blocked,
#submit.blocked {
  opacity: 0.3;
  pointer-events: none
}





.wrap-inner table {
  border: none;
  width: 100%;
}

.wrap-inner table th,
.wrap-inner table td {
  padding: 15px;
  border: none;
}

.wrap-inner table th {
  width: 200px;
  color: #666;
  font-size: 15px;
}

.wrap-inner table.history th span {
  float: right;
  display: inline-block;
  padding-right: 60px;
}

.wrap-inner table tr {
  border-bottom: 1px solid #efefef;
}

.column-2 {
  position: relative;
}

.column-2 .column-inner {
  width: 50%;
  position: relative;
  float: left;
  background: #fafafa;
  background: #fafafa;
  height: 400px;
  padding: 30px;
  overflow: hidden;
}

.column-2 h3 {
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  padding-bottom: 10px;
}

.column-2 .text {
  width: 100%;
}

.column-2 figure {
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.column-2.even .column-inner {
  float: right;
}

.column-1-3 {
  padding-right: 330px;
  min-height: 200px;
  margin: 0 auto 120px auto;
  max-width: 900px;
}

.column-1-3 figure.thumb {
  width: 300px;
  height: 100%;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

.column-1-3 .post-content .text {
  max-width: 600px;
  margin: 0;
}

.post-cta {
  margin: 0;
  background: #f5f5f5;
  color: #383838;
  border-top: 3px solid #5e6265;
}

.post-cta .post-cta-inner {
  padding: 30px 45px;
}

.post-cta .cta-post-title {
  padding: 40px 45px;
  text-align: center;
  font-size: 32px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e5e5e5;
}

.post-cta .post-cta-img {
  float: right;
  width: 230px;
  margin: 0 0 20px 30px;
}

.post-cta .post-cta-cont {
  overflow: hidden;
}

.post-cta .post-cta-btn {
  margin: 40px 0 10px;
}

.post-cta .post-cta-btn a {
  background: #5ace5f;
  color: #fff;
  border-radius: 3px;
  border-bottom: 5px solid #38bd3e;
  display: block;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  width: 60%;
  margin: 0 auto 20px;
}

.post-cta p {
  margin-bottom: 1em;
}

.post-cta .btn {
  width: 100%;
  display: block;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  padding: 14px 0;
  -webkit-transition: background .3s ease-in-out;
  transition: background .3s ease-in-out;
  background: #2581c4;
}

.post-footer {
  padding: 30px;
}

.post-footer ul li {
  display: inline-block;
  vertical-align: top;
}

.post-footer .bzb-sns-btn {
  padding: 0 0 64px;
}

.post-footer .bzb-sns-btn:after {
  content: '';
  display: block;
  clear: both;
  zoom: 1;
}

.post-footer:after {
  content: '';
  display: block;
  clear: both;
  zoom: 1;
}

.post-footer-list {
  margin: 0 0 40px;
}

.post-footer-list li {
  margin-right: 10px;
}

.post-author {
  padding: 15px;
  border-bottom: 1px #efefef solid;
  position: relative;
}


.post-author .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
}

.post-author .username {
  margin-left: 55px;
  line-height: 45px;
  font-weight: bold;
}


.post-author .date {
  position: absolute;
  line-height: 45px;
  font-size: 14px;
  right: 15px;
  top: 15px;
}

.post-author .post-author-img {
  width: 80px;
  float: left;
}

.post-author .post-author-img .inner {
  padding: 0;
}

.post-author a {
  color: #2581c4;
}

.post-author .post-author-meta {
  margin-left: 100px;
}

.post-author .post-author-meta h4 {
  margin: 0 40px 10px 0;
  font-weight: bold;
}

.thumb {
  background: #efefef;
}

.thumb img {
  width: 100%;
}


.footer-inner-title {
  margin: 0px;
  padding: 0px 15px;
  background: #fff;
  position: relative;
}

.footer-inner-title .title-inner {
  font-size: 20px;
  font-weight: 900;
  line-height: 30px;
  display: block;
  text-align: center;
}

.footer-inner-title .title-inner .line {
  display: inline-block;
  font-size: 24px;
  position: relative;
  background: linear-gradient(transparent 70%, #ffff00 70%);
}


.footer-inner-title .title-inner span {
  display: inline-block;
  font-size: 24px;
  position: relative;
}



.main-inner-title {
  margin: 0px;
  padding: 0 15px;
  background: #fff;
  position: relative;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #efefef;
}

.main-inner-title .title-inner {
  font-size: 15px;
  font-weight: 900;
  display: block;
}

.main-inner-title a {
  color: #999;
  font-size: 12px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0 41px 0 15px;
}

.main-inner-title a::before {
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 15px;
  top: 0;
  line-height: 50px;
  font-size: 16px;
  -webkit-transition: all .3s;
  transition: all .3s;
  content: "\e65d";
}

.main-inner-title a:hover::before {
  transform: translateX(2px);
}

.side-title a {
  color: #999;
  font-size: 12px;
  position: absolute;
  right: 0;
  padding: 0 41px 0 15px;
}

.side-title a::before {
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 15px;
  top: 0;
  line-height: 50px;
  font-size: 16px;
  -webkit-transition: all .3s;
  transition: all .3s;
  content: "\e65d";
}

.side-title a:hover::before {
  transform: translateX(2px);
}

.side-title a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}


/* topics
---------------------------------------- */

.topics .post-content .thumb {
  background: #fafafa;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.topics .post-content .thumb img {
  width: 100%;
  height: auto;
  min-width: 100%;
  max-height: inherit;
}

.topics .post-content .post-sup {
  color: #666;
  font-size: 14px;
}


.topics .post-content .post-sup li {
  position: relative;
  padding-left: 20px;
  text-align: left;
  line-height: 25px;
}

.topics .post-content .post-sup li::before {
  content: '※';
  position: absolute;
  left: 0;
  top: 0;
}

.topics .post-content .btn-content {
  text-align: center;
}

.topics .post-content .btn-content .deco {
  font-size: 15px;
  font-weight: bold;
  padding: 0 30px;
  position: relative;
  margin-bottom: 10px;
  display: inline-block;
}


.topics .post-content .btn-content .deco::before,
.topics .post-content .btn-content .deco::after {
  content: '';
  background-image: url(/lib/img/headdeco.png);
  background-repeat: no-repeat;
  background-size: 40px;
  position: absolute;
  width: 20px;
  height: 30px;
  bottom: 0;
  top: 0;
  margin: auto;
}



.topics .post-content .btn-content .deco::before {
  background-position: 0 0;
  left: 0;
}


.topics .post-content .btn-content .deco::after {
  background-position: -20px 0;
  right: 0;
}





.topics .post-content a.btn-1 {
  outline: 0;
  padding: 0 20px 0 50px;
  display: inline-block;
  text-align: center;
  border: 2px solid #FE7A16;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  border-radius: 0.25em;
  font-size: 16px;
  line-height: 46px;
  background: #fff;
  color: #FE7A16;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.topics .post-content a.btn-1._jump {
  padding: 0 50px 0 20px;
}

.topics .post-content a.btn-1:hover,
.topics .post-content a.btn-2:hover {
  box-shadow: 0 1px 0 #e06101;
  transform: translateY(1px);
}


.topics .post-content a.btn-1:hover:active,
.topics .post-content a.btn-2:hover:active {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}


.topics .post-content a.btn-1._jump::after {
  content: "\e732";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 46px;
  position: absolute;
  top: 0;
  right: 16px;
}


.topics .post-content a.btn-2 {
  outline: 0;
  padding: 0 20px 0 50px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  border-radius: 0.25em;
  font-size: 16px;
  line-height: 50px;
  background: #FE7A16;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}


.topics .post-content a.btn-2._simu::after {
  content: "\e65d";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 50px;
  position: absolute;
  top: 0;
  left: 16px;
}


.topics .post-content ul {
  list-style-type: circle;
  padding: 15px 15px 15px 35px;
  border: 2px solid #FE7A16;
}


.topics .post-content ul li {
  margin: 0 0 10px 0;
}

.topics .post-content ul li:last-child {
  margin: 0;
}

/* works
---------------------------------------- */

.works .post-content .thumb {}

.works .post-content .thumb img {}


.works .post-content .post-inner {}



/* comment
---------------------------------------- */

#comments {
  padding: 40px 64px;
}

.comment-list>.comment {
  margin-bottom: 40px;
  border-bottom: 1px #eee solid;
}

.comment-list>.comment>.comment-body {
  padding: 0 20px;
  margin-bottom: 20px;
}

.comment-list .children {
  margin-left: 45px;
}

.comment-list .children .comment-body {
  padding: 20px 30px;
  margin-bottom: 20px;
  background: #f7f7f7;
}

.comment-author {
  float: left;
  vertical-align: top;
  font-size: 12px;
  margin-left: 10px;
}

.comment-author img {
  vertical-align: top;
}

.comment-meta {
  font-size: 12px;
  margin-bottom: 12px;
}

.reply a {
  border-radius: 3px;
  padding: 3px 5px;
  font-size: 12px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.reply a:before {
  content: ' ';
  font-family: 'FontAwesome';
}

.comment-form-comment label {
  display: none;
}

.comment-form-comment textarea {
  width: 80%;
  margin: 20px 0;
  border-radius: 3px;
}

.form-allowed-tags {
  font-size: 12px;
  margin-bottom: 20px;
  display: none;
}

.comment-meta:after {
  content: ' ';
  display: block;
  clear: both;
}

.comments-title {
  font-size: 24px;
  padding: 20px 0;
  margin-bottom: 30px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
  overflow: hidden;
  margin: 10px 0;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
  width: 15%;
  float: left;
  font-size: 12px;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  width: 40%;
  float: left;
  margin-left: 5%;
  border-radius: 3px;
  padding: 5px;
}

.form-submit #submit {
  width: 300px;
  line-height: 40px;
  border: none;
  border-radius: 3px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.comment-form-comment textarea {
  width: 95%;
  padding-left: 2%;
  padding-right: 2%;
}

.comment-form {
  overflow: hidden;
}

.comment-form-author,
.comment-form-email {
  width: 49%;
  margin: 0;
}

.comment-form-author label,
.comment-form-author input,
.comment-form-email label,
.comment-form-email input {
  width: 90%;
  float: none;
  margin: 0 0 10px;
}

.comment-form-author {
  float: left;
}

.comment-form-email {
  float: right;
}


/* loop
---------------------------------------- */

.post-loop-wrap article p {
  margin-top: 0;
}

#loop-product .post-thumbnail {
  width: auto;
  height: 200px;
  float: left;
  background: #fafafa;
}

#loop-product .post-thumbnail img {
  width: auto;
  height: 100%;
}


#loop-product .post-body {
  padding-left: 15px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

#loop-product .post-ex {
  font-size: 15px;
}

.no-thumb {
  margin-left: 0px !important
}

.no-metadata {
  min-height: 68px;
}

.post-loop-wrap .post-thumbnail img {
  width: 100%;
  height: auto;
}

.post-loop-wrap .post-content {
  width: auto;
}

.post-loop-wrap .post-footer {
  border-top: 1px #efefef solid;
  padding-top: 10px;
}

.post-loop-wrap .post-footer .bzb-sns-btn {
  padding: 0;
  margin-right: 50px;
  float: left;
  /* _sns.scss */
}

.post-loop-wrap .post-footer .loop-comment-icon {
  float: right;
}

.post-loop-wrap .post-footer .loop-comment-icon .fa {
  font-size: 18px;
  margin-right: 5px;
}

.post-loop-wrap .post-footer .loop-comment-icon .share {
  display: none;
}

.post-loop-wrap .post-footer .loop-comment-icon .count {
  font-size: 14px;
}

.post-loop-wrap .date-column {
  padding: 0 15px;
  border-bottom: 1px solid #efefef;
  font-weight: 600;
  line-height: 30px;
  font-size: 14px;
}

.more-link {
  border: 1px #2581c4 solid;
  padding: 12px 24px;
  line-height: 26px;
  margin-bottom: 64px;
  box-sizing: border-box;
  clear: both;
  color: #2581c4;
  font-size: 14px;
}


/* content-none */

.content-none {
  padding: 200px 20px 20px;
  background: url(lib/images/face_cry.png) no-repeat;
  background-size: 200px;
  background-position: top center;
}

#next a::after,
#next_ajax a::after {
  content: "\e65f";
}

#next a i,
#next_ajax a i {
  font-size: 8px;
  padding-left: 5px;
}

.pagenum {
  height: 50px;
  line-height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pagenum .paged {
  padding-left: 15px;
  font-size: 14px;
  font-weight: 600;
}

.pagenum .counter {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 12px;
}

.pagenum .max_num_page {
  color: #999;
}

.pagenum .line {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  height: 1px;
  background: #efefef;
  left: 0;
}


/* ----------------------------------------
* pagenation
---------------------------------------- */

#pagination {
  line-height: 50px;
  padding: 15px;
  background: url(/lib/img/stripe.png) repeat left top;
}


#pagination .all_num {
  float: left;
  font-size: 14px;
}


#pagination .all_num span {
  font-size: 21px;
  font-weight: 900;
}


#pagination a {
  background: #fff;
  display: inline-block;
  padding: 0 15px;
  border-radius: .25rem;
  font-size: 14px;
  position: relative;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .1);
  min-width: 50px;
  text-align: center;
}


#pagination a:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
  transform: translateY(1px);
}


#pagination a:hover:active {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}


#pagination a.next {
  padding: 0 40px 0 15px;
}


#pagination a.next::before {
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 11px;
  top: 0;
  line-height: 50px;
  font-size: 18px;
  -webkit-transition: all .3s;
  transition: all .3s;
  content: "\e65d";
}

#pagination a.next:hover::before {
  transform: translateX(2px);
}


#pagination a.prev {
  padding: 0 15px 0 40px;
}


#pagination a.prev::before {
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: 11px;
  top: 0;
  line-height: 50px;
  font-size: 18px;
  -webkit-transition: all .3s;
  transition: all .3s;
  content: "\e65e";
}

#pagination a.prev:hover::before {
  transform: translateX(-2px);
}



.pagination li {
  margin-left: 10px;
}

.pagination li:first-child {
  margin-left: 0;
}


#pagination li.current a {
  background: rgba(0, 0, 0, .05);
  box-shadow: none;
  color: #666;
  pointer-events: none;
}


.pagination,
.pagination li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 50px;
}


.pagination {
  list-style-type: none;
  padding-left: 0;
  border: 0;
  transition: all .3s;
  float: right;
}


.pagination a {
  text-decoration: none;
  padding: 0 15px;
}




/* ----------------------------------------
* side
---------------------------------------- */

.side-widget-area {
  padding: 0;
}

.side-widget {
  line-height: 1.6;
  font-size: 14px;
}

.side-widget ul li {
  position: relative;
}

.side-widget ul li:last-child {
  border-bottom: none !important;
}

.side-widget .side-title {
  margin: 0px;
  padding: 0 15px;
  background: #fff;
  position: relative;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #efefef;
}






.side-title-inner {
  font-size: 15px;
  font-weight: 900;
}

.side-widget .inner a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all .35s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.side-widget .inner a.hover {
  background: #f9f9f9;
}

.side-widget.widget_recent_comments a {
  background: none;
}

.side-widget .post-date {
  margin: 0 0 0 36px;
  font-size: 13px;
  color: #999999;
}

#views-2 ul li span {
  margin: 0 0 0 36px;
  font-size: 13px;
  color: #999999;
}

.side-widget .inner a {
  color: #333;
  text-decoration: none;
  display: block;
}


/* comment */

.recentcomments {
  color: #808080;
  font-size: 12px;
}

.recentcomments a {
  color: #383838;
  font-size: 14px;
}


.side-widget a figure {
  transition: all .35s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.side-widget a:hover figure {
  opacity: .6;
}


.side-widget .more a,
.post-loop-wrap .more a {
  padding: 0 10px;
  text-align: center;
  font-size: 12px;
  border-top: 1px solid #efefef;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  line-height: 50px;
  position: relative;
}


.side-widget .more a::before,
.post-loop-wrap .more a::before {
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 15px;
  top: 0;
  line-height: 50px;
  font-size: 16px;
  color: #999;
  -webkit-transition: all .3s;
  transition: all .3s;
  content: "\e649";
}

.side-widget .more a:hover {
  opacity: .6;
}

.side-widget .more a:hover::before {
  transform: translateX(2px);
}


.side-widget-inner .more a i {
  font-size: 8px;
  padding-left: 5px;
}


/* ----------------------------------------
* side-widget
---------------------------------------- */

#side .desc {
  padding: 0 15px 15px;
  color: #999;
  font-size: 12px;
}



#side-simu {
  background-image: url(/lib/img/_simu_02.jpg);
  background-size: cover;
  height: 150px;
  position: relative;
}

#side-simu::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(/lib/img/_simu_03.png);
  background-size: cover;
  width: 100%;
  height: 200px;
  z-index: 9;
  pointer-events: none;
}


#side-simu .simu {
  position: absolute;
  left: 15px;
  bottom: 15px;
}

#side-simu .simu .simu_btn {
  display: inline-block;
  line-height: 48px;
  width: auto;
  text-align: center;
  border-radius: 0.25em;
  position: relative;
  padding: 0 35px 0 10px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #FE7A16;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
}

#side-simu .simu .simu_btn::before {
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 11px;
  top: 0;
  font-size: 18px;
  -webkit-transition: all .3s;
  transition: all .3s;
  content: "\e65d";
}


#side-simu a {
  display: block;
  width: 100%;
  height: 100%;
  border: 3px solid #fe1916;
}

#side-simu a:hover .simu_btn {
  box-shadow: 0 1px 0 #e06101;
  transform: translateY(1px);
}

#side-simu a:hover:active .simu_btn {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}

#side-simu .simu-content {
  padding: 10px;
}

#side-simu .simu-content .sub {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #fe1916;
}

#side-simu .simu-content .main {
  font-size: 16px;
  font-weight: 900;
  color: #333;
}

#side-rank .title {
  padding-top: 15px;
  padding-left: 34px;
  font-weight: bold;
  font-size: 15px;
}

#side-rank .inner a {
  padding: 15px;
}


#side-rank .inner a:hover .post-thumbnail {
  opacity: .6;
}

#side-rank .maker {
  position: absolute;
  top: 15px;
  right: 15px;
}


#side-rank .cat {
  font-size: 12px;
  color: #999;
  line-height: 1;
  margin-bottom: 5px;
}


#side-rank .post-title {
  position: relative;
}




#side-rank .rank {
  width: 24px;
  text-align: center;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  background: #333;
  color: #fff;
  position: absolute;
  top: 15px;
  font-weight: 500;
}


#side-rank .rank.rank-1 {
  background: #d9b340;
}

#side-rank .rank.rank-2 {
  background: #6f7b83;
}

#side-rank .rank.rank-3 {
  background: #a15326;
}





#side-rank li {
  border-bottom: 1px solid #efefef;
}

#side-product .post-thumbnail {
  width: 70px;
  float: left;
}

#side-product .inner a {
  padding: 15px;
}

#side-product .title {
  font-weight: bold;
  font-size: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#side-product .post-body {
  margin-left: 80px;
  min-height: 70px;
}


#side-product .pricedown {
  overflow: hidden;
  float: left;
  line-height: 50px;
  line-height: 45px;
  height: 45px;
  margin-right: 10px;
  font-weight: 900;
}


#side-product .price {
  line-height: 45px;
  height: 45px;
}

#side-product .price .sup {
  padding-right: 5px;
}



#side-product .price .num {
  font-size: 21px;
  font-weight: 900;
  display: inline-block;
}





#side-product li {
  border-bottom: 1px solid #efefef;
}





#side-works .post-data {
  font-size: 14px;
  position: relative;
}

#side-works .post-icon {
  border-radius: 50%;
  overflow: hidden;
  width: 50px;
  height: 50px;
  border: 2px solid #efefef;
  float: left;
  background-position: center center;
  background-repeat: no-repeat;
}

#side-works .post-name {
  line-height: 50px;
  padding-left: 10px;
}

#side-works .inner a {
  padding: 15px;
}

#side-works .post-balloon {
  padding: 15px;
  border: 2px solid #e0e0e0;
  margin-bottom: 15px;
  border-radius: 0.8em;
  position: relative;
}


#side-works .post-balloon::before {
  content: '';
  background-image: url(/lib/img/hukidashi.png);
  position: absolute;
  width: 40px;
  height: 25px;
  bottom: -25px;
  left: 40px;
  background-size: contain;
  background-repeat: no-repeat;
}

#side-works .post-title {
  font-weight: bold;
  font-size: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#side-works .post-comment {
  line-height: 22px;
  height: 88px;
  overflow: hidden;
}



#side-works ul {
  font-size: 14px;
  display: block;
  padding-right: 15px;
  color: #999;
  line-height: 25px;
}

#side-works ul li {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  float: left;
}


#side-works ul li:first-child {
  width: 80px;
}


#side-works ul li:last-child {
  width: calc(100% - 80px);
}

#side-works .post-rate {}



#side-works .post-rate .num {
  font-weight: 900;
  color: #feb416;
  position: relative;
  padding-left: 16px;
  display: inline-block;
  font-size: 15px;
}

#side-works .post-rate .num::before {
  content: '';
  background-image: url(/lib/img/star.png);
  width: 13px;
  height: 13px;
  display: block;
  background-size: cover;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  margin: 6px 0;
  position: absolute;
  left: 0;
  top: 0;
}


#side-works .post-product {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#side-posts .post-thumbnail {
  width: 80px;
  float: left;
}

#side-posts .post-body {
  margin-left: 90px;
  min-height: 80px;
}

#side-posts .inner a {
  padding: 15px;
}


#side-posts .inner a:hover .post-thumbnail {
  opacity: .6;
}





#side-posts li {
  border-bottom: 1px solid #efefef;
}


#side-posts .title {
  font-weight: bold;

  max-height: 66px;
  overflow: hidden;
}


#side-maker li {
  width: 50%;
  float: left;
}


#side-maker .inner a {
  padding: 15px;
}

#side-maker .inner a figure {
  height: 50px;
  background-size: 500px;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  width: 100%;
  background-position: center;
}


#side-maker .inner a figure.maker-plast {
  background-position: 0;
}


#side-maker .inner a figure.maker-agc {
  background-position: -125px;
}

#side-maker .inner a figure.maker-lixil {
  background-position: -250px;
}

#side-maker .inner a figure.maker-ykkap {
  background-position: -375px;
}




/* ----------------------------------------
* pagetop
---------------------------------------- */

.pagetop {
  bottom: 0;
  right: 0;
  color: #fff;
  z-index: 999;
  width: 100%;
}

.pagetop span {
  display: block;
  background: url(/lib/img/stripe.png) repeat left top;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
}

.pagetop span i {
  color: #666;
}

.pagetop.show {
  visibility: visible;
  opacity: 1;
}






/* ----------------------------------------
* share
---------------------------------------- */

.post-share {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  text-align: center;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 15px;
}


.post-share h4 {
  font-size: 18px;
  line-height: 60px;
  font-weight: 900;
}

.post-share .inner .title {
  font-size: 16px;
}



.post-share .share-bg {
  background-size: cover;
  background-position: center center;
  width: 110%;
  height: 110%;
  position: absolute;
  top: -5%;
  left: -5%;
  z-index: -1;
  filter: blur(5px);
}




.btn-content ul {
  display: inline-block;
  padding: 30px;
}

.btn-content ul li {
  float: left;
  margin-left: 15px;
}

.btn-content ul li:first-child {
  margin-left: 0;
}



.share {
  width: 200px;
  height: 80px;
  color: #fff;
  display: block;
  position: relative;
  border-radius: .25rem;
  line-height: 80px;
  padding-left: 40px;
}



.share::before {
  content: '';
  background-image: url(/lib/img/sns.png);
  background-repeat: no-repeat;
  background-size: 64px;
  position: absolute;
  width: 32px;
  height: 32px;
  bottom: 0;
  top: 0;
  margin: auto;
  left: 24px;
}

.share.facebook {
  background: #3B5998;
  box-shadow: 0 2px 0 #2d4372;
}

.share.facebook::before {
  background-position: 0;
}

.share.facebook:hover {
  box-shadow: 0 1px 0 #2d4372;
  transform: translateY(1px);
}

.share.facebook:hover:active {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}


.share.twitter {
  background: #55acee;
  box-shadow: 0 2px 0 #2795e9;
}

.share.twitter::before {
  background-position: -32px;
}

.share.twitter:hover {
  box-shadow: 0 1px 0 #2795e9;
  transform: translateY(1px);
}

.share.twitter:hover:active {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}


.share.googleplus {
  background: #dd4b39;
  box-shadow: 0 2px 0 #c23321;
}

.share.hatena {
  background: #008fde;
  box-shadow: 0 2px 0 #006eab;
}


.not_found {
  padding: 15px;
  display: block;
}


/* ----------------------------------------
* footer
---------------------------------------- */

#footer {
  background: #efefef;
  content-visibility: auto;
  /*24.03.26 追加*/
}

.single-product #footer {
  padding-bottom: 70px;
}

#footer .post-share {
  padding-right: 0;
  padding-left: 0;
}

#footer .logo {
  margin: 0 auto;
}

#footer .logo a {
  height: 50px;
  line-height: 50px;
  background-image: url(/lib/img/logo.png);
  background-size: 100%;
  background-position: center;
  width: 200px;
  display: block;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.footer-01 {
  background: #fff;
  padding: 15px 0;
}

.footer-01 ul {
  overflow: hidden;
  text-align: left;
}

.footer-01 li {
  line-height: 30px;
}

.footer-01 li.parent {
  float: left;
  padding: 0 30px;
}

.footer-01 li.parent a {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.footer-01 li.child a {
  color: #999;
  font-size: 12px;
}

.footer-02 {
  line-height: 80px;
  height: 80px;
}

.footer-02 li {
  font-size: 12px;
  float: left;
  padding-right: 30px;
}

.footer-02 li.footer-copy {
  float: right;
  padding-right: 0;
}

.footer-02 li a {
  color: #666;
}

#footer a:hover {
  opacity: .8;
}

#footer .logo {
  float: left;
}

#footer .footer-links {
  float: right;
}

#footer_0 {
  background-position: center;
  background-size: cover;
  background: #fff;
}

#footer_0 h3 {
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  padding-bottom: 15px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#footer_0 .text {
  text-align: center;
  margin-bottom: 30px;
}

#footer_0 .btn-inner {
  margin-top: 30px;
}


.footer-content {
  background: #fff;
  padding: 60px 0;
}


.footer-content .inner {
  padding: 15px;
  text-align: center;
  font-size: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.footer-content .footer-inner-title .logo {
  height: 70px;
  line-height: 70px;
  background-image: url(/lib/img/logo.png);
  background-size: 100%;
  background-position: center center;
  width: 130px;
  display: block;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}




.contact-inner ul {
  display: block;
  margin: 0 auto;
  text-align: center;
}



.contact-inner {
  line-height: 50px;
  text-align: center;
}

.contact-inner .tel {
  font-size: 28px;
  padding-left: 50px;
  font-weight: 900;
  display: inline-block;
  position: relative;
  letter-spacing: .08em;
  color: #154ca1;
}

.contact-inner .tel::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  background-position: center;
  background-size: cover;
  left: 9px;
  top: 50%;
  margin-top: -16px;
  background-image: url('/lib/img/_icon_1.png');
}

.contact-inner .term {
  color: #154ca1;
  display: inline-block;
}

.contact-form {
  margin-top: 60px;
  max-width: 900px;
}

.contact-form span.wpcf7-not-valid-tip {
  font-size: 12px;
  font-weight: normal;
  display: inline-block;
  line-height: 30px;
  text-align: left;
  padding-left: 15px;
}

.page-template-page-contact .breadcrumb,
.page-template-page-order .breadcrumb {
  margin-bottom: 0;
}

.page-template-page-contact #content,
.page-template-page-order #content {
  padding: 70px 0 0;
}

#contact {
  box-shadow: none;
  margin-bottom: 0;
}


#contact h3 {
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 30px;
}

#contact .post-content .text {
  padding: 0;
}


#contact .product {
  margin-bottom: 20px;
  background: #fff;
  border: 0;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px -1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .3s;
  transition: all .3s;
  overflow: hidden;
}

#contact .product .thumb {
  background: #efefef;
  width: 40%;
  height: 485px;
  float: right;
  background-size: cover;
  background-position: center;
  position: relative;
}

#contact .product .thumb img {
  width: 80%;
  border-radius: 0.8em;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px -1px rgba(0, 0, 0, 0.1);
}


#contact .product .color {
  display: block;
  width: 30px;
  height: 30px;
  margin: 10px 10px 10px 0;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  border: 1px solid #efefef;
}

#contact .product .color img {
  vertical-align: top;
}








.tel-content {
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 60px;
  z-index: 1;
  position: relative;
  text-align: center;
  /*content-visibility: auto;/* /*24.03.26追加*/
  /*contain-intrinsic-size: 300px; 25.01.14追加*/
}


.tel-content.active a {
  color: #2baca8;
}

.tel-content.inactive a {
  color: #fff;
}

.tel-content.active {
  background: #2baca8;
  background-image: linear-gradient(45deg, #2baca8, #43cea2);
}


.tel-content.inactive {
  background: #ef2d73;
  background-image: linear-gradient(45deg, #ef2d73, #fc6767);
  color: #fff;
}

.tel-content.inactive .body .main .num {
  color: #fff;
}

.tel-content.inactive .body .desc {
  color: rgba(255, 255, 255, 0.8);
}



.tel-content.inactive .operator {
  display: none;
}

.tel-content.inactive .body .desc ul li .deco {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}






.tel-content::before {
  content: '';
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background: #fff;
}

.tel-content.inactive::before {
  background-image: url(/lib/img/kazuend.jpg);
  background-size: cover;
  background-position: center bottom;
}



.tel-content .title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}



.tel-content .body .desc ul li {}




.tel-content .body .desc ul li {
  display: inline-block;
  line-height: 25px;
  margin: 0 10px 0 0;
}


.tel-content .body .desc ul li .deco {
  display: inline-block;
  float: left;
  padding: 0 8px;
  background: #efefef;
  border-radius: .25em;
  font-size: 12px;
  margin: 0 5px 0 0;
}

.tel-content .body {
  position: relative;
  z-index: 1;
}

.tel-content .body .main {
  font-size: 30px;
  font-weight: 900;
  line-height: 30px;
  margin: 0 0 10px;
}

.tel-content .body .main .num {
  font-size: 40px;
  font-weight: 900;
  line-height: 48px;
  color: #2baca8;
  padding-left: 58px;
  display: inline-block;
}

.tel-content .body .desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.tel-content .operator {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 400px;
  z-index: 0;
}

.tel-content a.btn-2 {
  background: #2baca8;
  color: #fff;
  background-image: linear-gradient(45deg, #2baca8, #43cea2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

.tel-content a.btn-2:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, .05);
}

.tel-content .message {
  font-size: 14px;
  line-height: 17px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 17px;
}

.tel-content .message::before {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}

.tel-content .btn-content {
  margin-top: 15px;
}

.tel-content .btn-content a {
  height: 50px;
  margin: 10px 0;
  line-height: 46px;
  font-size: 14px;
  border: 2px solid #fff;
  text-decoration: none;
  z-index: 1;
  padding: 0 15px;
  display: inline-block;
  font-weight: bold;
  border-radius: 0.25rem;
  position: relative;
}

.tel-content .btn-content a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.area .tel-content {
  margin-top: 0;
  margin-bottom: 20px;
}

.area .tel-content .body .main {
  line-height: 50px;
}

.area .tel-content .btn-inner {
  padding-top: 35px;
}

.area .tel-content .btn-inner::before {
  content: 'または';
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  width: 300px;
  margin: 0 auto;
  line-height: 20px;
  font-size: 12px;
  color: #999;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
  z-index: 9;
}


.area .tel-content .btn-inner::after {
  content: '';
  height: 1px;
  width: 150px;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  background: #e0e0e0;
  margin: 0 auto;
}

.area .tel-content.inactive .title .sub {
  color: #fff;
  opacity: .8;
}

.area .tel-content.inactive .body .main {
  display: none;
}

.area .tel-content.inactive .body .desc {
  display: none;
}


.area .tel-content.inactive .btn-inner {
  padding-top: 15px;
}

.area .tel-content.inactive a.btn-2 {
  background: transparent;
  border: 2px solid #fff;
}


.area .tel-content.inactive .btn-inner::before,
.area .tel-content.inactive .btn-inner::after {
  display: none;
}

.content-area .title-inner {
  font-size: 18px;
}

.content-area .title-inner span {
  font-size: 21px;
}




.tel-content .title .sub {
  font-size: 16px;
  color: #2baca8;
  font-weight: normal;
}


.tel-content .title .main {
  font-size: 24px;
}

.tel-content.active .message {
  color: #2baca8;
  text-shadow: 0 0 30px #fff;
}

.tel-content.inactive .message {
  color: #ef2d73;
}



.tel-content.active .message::before {
  background: #2baca8;
}


.tel-content.inactive .message::before {
  background: #ef2d73;
}


.tel-content .hukidashi {
  position: absolute;
  background-image: url(/lib/img/balloon_01.png);
  background-size: 240px;
  background-repeat: no-repeat;
  width: 120px;
  height: 120px;
  right: -90px;
  top: -115px;
  font-size: 18px;
  font-weight: 900;
  /* opacity: 0; */
  /* visibility: hidden; */
  animation-delay: 1200ms;
  z-index: 9;
  line-height: 120px;
  padding: 0;
}


.tel-content.inactive .hukidashi {
  display: none;
}

.tel-content.inactive .body .main .num {
  text-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}


.tel-content .body .main .num {
  position: relative;
}

.tel-content .body .main .num::before {
  content: '';
  background-image: url(/lib/img/icon.png);
  background-repeat: no-repeat;
  background-size: 144px;
  position: absolute;
  width: 48px;
  height: 48px;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;

  background-position: 0 -624px;
}


.tel-content.inactive .body .main .num::before {
  background-position: -96px -624px;
}





#side .tel-content {
  margin-top: 0;
  width: 300px;
}

#side .tel-content .title {
  font-size: 16px;
  text-align: center;
}


#side .tel-content .body {
  text-align: center;

}

#side .tel-content .body .main .num {
  font-size: 32px;
  padding: 0;
}

#side .tel-content .body .main .num::before {
  content: '';
  display: none;
}

#side .tel-content .body .main .sub {
  display: none;
}


#side .tel-content.inactive .body .desc {
  color: #efefef;
  padding: 0;
}

#side .tel-content.active .body .desc {
  color: #666;
  padding: 0;
}



#side .tel-content .operator {
  width: 300px;
  opacity: .3;
}

#side .tel-content .hukidashi {
  position: absolute;
  background-image: url(/lib/img/balloon_01.png);
  background-size: 180px;
  background-repeat: no-repeat;
  background-position: 0;
  width: 90px;
  height: 90px;
  right: -70px;
  top: -85px;
  font-size: 16px;
  font-weight: 900;
  /* opacity: 0; */
  /* visibility: hidden; */
  animation-delay: 1200ms;
  z-index: 9;
  line-height: 90px;
  padding: 0;
}



.post-content .product table {
  width: 60%;
  border: none;
  line-height: 50px;
}




.post-content .product table tr {
  border-bottom: 1px solid #efefef;
}

.post-content .product table tr:last-child {
  border-bottom: none;
}


.post-content .product table th,
.post-content .product table td {
  padding: 15px;
}

.post-content .product table td .sup {

  font-size: 12px;
  color: #666;
}

#contact .contact-inner {
  line-height: 50px;
  text-align: center;
  margin-bottom: 60px;
}



#contact_1 h3,
#contact_1 .text,
#contact_1 .contact-inner {
  text-align: center;
}

#contact_1 .wrap-inner table th {
  width: 250px;
}

#contact_1 .required {
  color: #ff1200;
}

#contact .result .off {
  line-height: 26px;
  display: inline-block;
  padding: 0 10px;
  color: #fe1916;
  border: 2px solid #fe1916;
  border-radius: 0.25em;
  float: left;
}



#contact .result .price {
  font-weight: 900;
  float: left;
  display: block;
  color: #fe1916;
}


#contact .result .price .num {
  font-weight: 900;
  font-size: 24px;
  display: block;
  float: left;
}

#contact .result .price .sub {
  font-weight: normal;
  color: #999;
  font-size: 14px;
}


#contact .result button {
  border: 0;
  outline: 0;
  padding: 0 20px 0 50px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
  overflow: hidden;
  line-height: 1;
  border-radius: 0.25em;
  font-weight: 900;
  font-size: 14px;
  line-height: 46px;
  border: 2px solid #FE7A16;
  background: #fff;
  color: #FE7A16;
  font-weight: bold;
  line-height: 46px;
  cursor: pointer;
  float: right;
}

#contact .result button::after {
  content: "\e6b4";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 18px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 20px;
}

#contact .result button:hover {
  box-shadow: 0 1px 0 #e06101;
  transform: translateY(1px);
}



#contact .result button:hover:active {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}


#contact .result button.done {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  background: #FE7A16;
  color: #fff;
}

#contact .result button.done::after {
  color: #fff;
}


#contact .detailed {
  margin-top: 20px;
  background: #fff;
  border: 0;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px -1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .3s;
  transition: all .3s;
  overflow: hidden;
  display: none;
}


#contact .detailed th {
  background: #fafafa;
}

#contact .detailed .price {
  text-align: right;
  font-size: 18px;
}

#detailed table td.sub {
  font-size: 14px;
}

#contact .detailed ._sum {
  color: #fe1916;
}


#contact .detailed ._sum .num {
  font-size: 24px;
}


#contact .input-area {
  margin-bottom: 30px
}

#contact .input-area .sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
  display: block;
}




#contact .input-area:last-child {
  margin: 0;
}



#contact form ul li {
  padding: 15px 0;
  position: relative;
}

#contact form ul li a.add {
  width: 30px;
  height: 30px;
  border: 2px solid #FE7A16;
  position: absolute;
  right: 0;
  top: 15px;
  border-radius: 50%;
  color: #FE7A16;
  margin: 5px;
  line-height: 26px;
  text-align: center;
}



#contact form ul li a.add.active {
  color: #999;
  border: 2px solid #999;
}


#contact form ul li a.add span::before {
  content: "\e61a";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

#contact form ul li a.add.active span::before {
  content: "\e622";
}



#contact form ul li .sub {
  font-size: 12px;
  line-height: 26px;
  display: inline-block;
  color: #666;
  padding: 0 10px;
  border: 2px solid #666;
  border-radius: 0.25rem;
  margin: 5px 15px 5px 0;
  float: left;
}




#contact form table td,
#contact form table th {
  padding: 30px 15px;
}

/*
#contact form .wpcf7-form-control-wrap {
display: block;
}*/

#contact form #name .wpcf7-form-control-wrap,
#contact form #phonetic .wpcf7-form-control-wrap,
{
/* 24/09/06 追加 */
display: inline-block;
margin-left: 15px;
}


#contact form .medium-input {
  max-width: 250px;
}

#contact form .required {
  font-size: 12px;
  height: 30px;
  display: inline-block;
  margin-left: 15px;
  padding: 0 10px;
  color: #fe1916;
  border: 2px solid #fe1916;
  line-height: 26px;
  border-radius: 0.25em;
}


#contact .wpcf7-form input[type="submit"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  border: 0;
  outline: 0;
  padding: 20px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #FE7A16;
  box-shadow: 0 2px 0 #e06101;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: relative;
  overflow: hidden;
  line-height: 1;
  border-radius: 0.25em;
  font-weight: 900;
  font-size: 16px;
  width: auto;
}


input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}


#contact .wpcf7-form input[type="submit"]:hover {
  box-shadow: 0 1px 0 #e06101;
  transform: translateY(1px);
}

#contact .wpcf7-form input[type="submit"]:hover:active {
  box-shadow: 0 2px 0 transparent;
  transform: translateY(2px);
  -webkit-transition: all ease-in .05s;
  transition: all ease-in .05s;
}


#contact .ajax-loader {
  border-left: 2px solid #FE7A16;
}

#contact div.wpcf7 .ajax-loader.is-active {
  visibility: visible;
  -webkit-animation: load8 .6s infinite linear;
  animation: load8 .6s infinite linear;
}

#caution {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  padding-bottom: 30px;
  margin-top: 30px;
}

#caution .text {
  max-width: 600px;
  border: 2px solid #ddd;
  margin-bottom: 15px;
  border-radius: 0.8em;
  position: relative;
  text-align: left;
  font-size: 15px;
}

#caution .text::before {
  content: '';
  background-image: url(/lib/img/hukidashi.png);
  position: absolute;
  width: 40px;
  height: 25px;
  bottom: -25px;
  left: 50px;
  background-size: contain;
  background-repeat: no-repeat;
}

#caution figure {
  width: 600px;
  height: 160px;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #fafafa;
}

.contact-form .select-type {
  position: relative;
  display: inline-block;
}

.contact-form .select-type::before {
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e64b";
  position: absolute;
  right: 0;
  height: 40px;
  line-height: 40px;
  z-index: 1;
  width: 40px;
  text-align: center;
  pointer-events: none;
}



.contact-form .privacy {
  display: block;
  background: #fafafa;
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
}

.contact-form .privacy label {
  padding: 30px;
  display: block;
}

.contact-form .privacy input {
  display: none;
}

.contact-form .privacy input[type="checkbox"]+label {
  line-height: 30px;
  padding-left: 30px;
  display: block;
  position: relative;
  cursor: pointer;
  color: #666;
  padding-left: 50px;
}

.contact-form .privacy input[type="checkbox"]+label::before {
  content: '';
  position: absolute;
  left: 15px;
  width: 20px;
  height: 20px;
  border: 1px solid #efefef;
  border-radius: 0.25rem;
  background: #fff;
  top: 50%;
  margin-top: -10px;
  box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="url"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="number"]:focus,
.contact-form input[type="date"]:focus,
.contact-form input[type="password"]:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px #FE7A16 inset;
}

.wpcf7-form .privacy input[type="checkbox"]+label::after {
  content: '';
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: absolute;
  top: 50%;
  left: 22px;
  display: block;
  margin-top: -6px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #FE7A16;
  border-bottom: 2px solid #FE7A16;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) scale(0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wpcf7-form .privacy input[type="checkbox"]:checked+label::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.wpcf7-form .btn-content {
  margin-top: 30px;
  position: relative;
}

.wpcf7-form input[type="submit"] {
  outline: none;
  border: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background: #154ca1;
  color: #fff;
  padding: 0 15px;
  color: #fff;
  position: relative;
  height: 60px;
  line-height: 60px;
  width: 300px;
  margin: 0 auto;
  display: block;
  opacity: .4;
  pointer-events: none;
}

.wpcf7-form input[type="submit"].active {
  opacity: 1;
  pointer-events: auto;
}

.wpcf7-form input[type="submit"].active:hover {
  opacity: .8;
}

.wpcf7c-conf {
  border: none !important;
  background: none !important;
  color: #333 !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  box-shadow: 0 0 0px 1000px white inset !important;
}

.wpcf7c-conf:-webkit-autofill {
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  box-shadow: 0 0 0px 1000px white inset !important;
}

#radio-value,
#select-value {
  padding: 8px 13px;
}

.wpcf7-form .wpcf7-back {
  background: #fafafa;
  text-align: center;
  color: #666;
  display: block;
  width: 100px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  border: none;
  box-sizing: border-box;
  font-family: 'Noto Sans Japanese', serif;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.wpcf7-form .wpcf7-back:hover {
  background: #154ca1;
  color: #fff;
}


/* ----------------------------------------
* head
---------------------------------------- */

.head_deco.deco_1,
.head_deco.deco_2 {
  position: relative;
  display: inline-block;
  padding: 0 30px;
}

.head_deco.deco_1::before,
.head_deco.deco_1::after,
.head_deco.deco_2::before,
.head_deco.deco_2::after {
  content: '';
  background-image: url(/lib/img/headdeco.png);
  background-repeat: no-repeat;
  background-size: 40px;
  position: absolute;
  width: 20px;
  height: 30px;
  bottom: 0;
  top: 0;
  margin: auto;
}


.head_deco.deco_1::before {
  left: 0;
  background-position: 0 0;
}


.head_deco.deco_1::after {
  right: 0;
  background-position: -20px 0;
}

.head_deco.deco_2::before {
  left: 0;
  background-position: 0 -30px;
}


.head_deco.deco_2::after {
  right: 0;
  background-position: -20px -30px;
}


.head_deco .line {
  display: inline-block;
  font-size: 21px;
}


.head_deco span {
  font-size: 21px;
  position: relative;
}

.head_deco span::before {
  content: '';
  position: absolute;
  background: #333;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -3px;
}

.head_deco.deco_2 span::before {
  background: #fff;
}




/* ----------------------------------------
* contact
---------------------------------------- */

.contact .required {
  color: #ea5413;
}

.contact .post-content table {
  border: 1px solid #efefef;
}

.contact .post-content table tr,
.contact .post-content table td {
  border: 1px solid #efefef;
}

.contact .post-content table th {
  width: 25%;
  text-align: right;
  font-size: 14px;
}

.contact .post-content .small-input {
  width: 100px;
  float: left;
}

.contact .post-content .medium-input {
  width: 300px;
}

.contact .sub {
  float: left;
  line-height: 36px;
  min-width: 50px;
  text-align: center;
  font-size: 14px;
}

.contact .sub_2 {
  display: block;
  font-size: 14px;
  padding: 10px;
}

.contact #email,
.contact #email-2 {
  ime-mode: disabled;
}

.contact .file-input {
  margin-bottom: 10px;
  font-size: 14px;
}

.contact #file-5 {
  margin-bottom: 0;
}

.contact .select-input {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  border-radius: 3px;
  border: 1px #e0e0e0 solid;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 35px;
  line-height: 35px;
  outline: none;
  padding-left: 23px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  white-space: nowrap;
  width: auto;
  min-width: 75px;
  vertical-align: middle;
  box-sizing: border-box;
}

.contact .menu-1 {
  display: inline-block;
}

.contact .menu-1::after {
  border-bottom: 2px solid #ea5413;
  border-right: 2px solid #ea5413;
  content: '';
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
  z-index: -1;
}

#pop-1,
#pop-2 {
  font-size: 14px;
  padding-left: 10px;
}

#pop-1 .error,
#pop-2 .error {
  color: #f00;
}

#pop-1 .success,
#pop-2 .success {
  color: #4cd964;
}

.contact form .button-area {
  position: relative;
}

.contact form .button-area input[type="button"] {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 5px;
  text-align: center;
  color: #383838;
  display: block;
  width: 100px;
  position: absolute;
  border: none;
  border: 1px solid #efefef;
  box-sizing: border-box;
  font-family: 'Noto Sans Japanese', serif;
  outline: none;
}

.contact label {}

.contact label {
  position: relative;
  cursor: pointer;
}

.contact input[type="checkbox"] {
  display: none;
}

.contact input[type="checkbox"]+span {
  font-size: 14px;
  line-height: 25px;
  padding-left: 23px;
  height: 25px;
  display: block;
  position: relative;
}

.contact input[type="checkbox"]+span::before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  content: '';
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  background: #fff;
  top: 50%;
  margin-top: -10px;
  box-sizing: border-box;
}

.contact input[type="checkbox"]+span::after {
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  position: absolute;
  top: 50%;
  left: 7px;
  display: block;
  margin-top: -6px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #ea5413;
  border-bottom: 2px solid #ea5413;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) scale(0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact input[type="checkbox"]:checked+span::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.contact-form span.wpcf7-list-item.first {
  margin: 0 !important;
}

.contact-form input[type="radio"] {
  display: none;
}

.contact-form input[type="radio"]+span {
  line-height: 40px;
  padding-left: 30px;
  height: 40px;
  display: block;
  position: relative;
  cursor: pointer;
}

.contact-form input[type="radio"]+span::before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  content: '';
  border: 1px solid #efefef;
  border-radius: 50%;
  background: #fafafa;
  top: 50%;
  margin-top: -10px;
  box-sizing: border-box;
}

.contact-form input[type="radio"]+span::after {
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  content: '';
  opacity: 0;
  transform: scale(0.1);
  background: #FE7A16;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-form input[type="radio"]:checked+span::after {
  opacity: 1;
  transform: scale(1);
}


/* ----------------------------------------
* レスポンシブ
---------------------------------------- */

.sp-show {
  display: none;
}

@media screen and (max-width: 1100px) {


  .sp-show[data-width="1100"] {
    display: block;
  }

  .sp-hide[data-width="1100"] {
    display: none;
  }





  .single-lp .lp-wrap {
    width: auto;
    margin: 0 36px;
  }

  .single-lp .main-inner {
    margin-right: 350px;
  }

  .footer-links ul li.parent:first-child {
    display: none;
  }

  #loop-product .simu {
    display: none;
  }



  #header .header-nav.right li a {
    font-size: 12px;
    line-height: 1;
    padding-top: 30px;
  }

  #header .header-nav.right li a span.had-icon {
    padding: 0;
  }


  #header .header-nav.right li a span.had-icon::before {
    bottom: auto;
    top: 3px;
    left: 0;
    right: 0;
  }

}

@media screen and (max-width: 991px) {

  /* tablet */
  .sp-hide {
    display: none;
  }

  .sp-show {
    display: block !important;
  }


  .sp-show[data-width="991"] {
    display: block;
  }

  .sp-hide[data-width="991"] {
    display: none;
  }







  .post-content .text {
    font-size: 15px;
  }

  #main .post-sns {
    margin: 0 -20px -20px !important;
  }

  #main .post-share-title {
    margin: 0 -20px !important;
  }

  .single-lp #lp-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .single-lp #lp-header .lp-title {
    padding: 0;
    margin: 0;
    font-size: 21px;
  }

  .single-lp #content {
    padding: 20px;
  }

  .single-lp .lp-wrap {
    padding: 24px 0;
    width: auto;
    margin: 0 24px;
  }

  .single-lp .lp-wrap input[type=text] {
    width: 100%;
  }

  .single-lp .lp-wrap input[type=submit] {
    margin-top: 30px;
  }

  .single-lp .post-content {
    padding: 0 !important;
  }

  .single-lp #side {
    margin-left: 0;
    width: 100%;
  }

  .single-lp #side dl,
  .single-lp #side dt,
  .single-lp #side dd {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
  }

  .single-lp #side dt {
    margin-bottom: 8px;
  }

  .alignleft,
  .alignright {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* header */
  #header .wrap {
    padding: 0;
    margin-right: 0;
  }

  #header .header-nav.right {
    margin-right: 80px;
    border-right: 1px solid #efefef;
  }

  #header #logo img {
    vertical-align: top;
  }

  /* loop */
  .post-loop-wrap .post-thumbnail img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .post-loop-wrap .post-title {
    margin-bottom: 0;
  }

  .post-loop-wrap .post-content {}

  .post-loop-wrap .post-footer {
    display: none;
  }

  /* comment */
  .comment-form-author,
  .comment-form-email {
    float: none;
    width: auto;
  }


  #side-rank li {
    width: 33.333%;
    float: left;
    border: none;
    border-left: 1px solid #efefef;
    border-bottom: none;
  }


  #side-rank li:first-child {
    border-left: none;
  }


  #side-maker li {
    width: 150px;
  }


  #contact .wrap-inner table td {
    font-size: 14px;
  }


  #contact .wrap-inner table th {
    width: 180px;
    color: #666;
    font-size: 12px;
    line-height: 30px;
  }


  #contact #radio_3_hidden .select-content {
    margin-left: 0;
    margin-top: 15px;
  }

  #contact form ul li a.add {
    top: auto;
    bottom: 15px;
  }

  #side-rank .title,
  #loop-guide article .post-title,
  #loop-product .post-ex,
  #loop-topics .post-ex {
    font-size: 14px;
  }

  #loop-history article .post-title {
    font-size: 15px;
  }


  #loop-topics .post-title #related-post .post-title {
    font-size: 14px;
  }

  #loop-product .simu {
    display: block;
  }

  #loop-product .simu_btn {
    padding: 0 15px;
  }

  #loop-product .simu_btn::before {
    display: none;
  }



  #slider .swiper-button-next {
    right: 15px;
  }

  #slider .swiper-button-prev {
    left: 15px;
  }

  #side-map figure {
    text-align: center;
    display: block;
  }


  #side-simu {
    background-image: url(/lib/img/_simu_02_tablet.jpg);
    height: 200px;
  }

  #side-simu::before {
    content: '';
    position: absolute;
    bottom: 30px;
    left: auto;
    right: 40px;
    background-image: url(/lib/img/_simu_03.png);
    background-size: cover;
    width: 400px;
    height: 200px;
    z-index: 9;
    pointer-events: none;
  }

  #side-simu .simu-content {
    padding: 30px;
    text-align: center;
  }

  #side-simu .simu-content .sub {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #side-simu .simu-content .main {
    font-size: 24px;
  }

  #side-simu .simu {

    position: relative;
    text-align: center;
    left: 15px;
    right: 15px;
  }


  .footer-02 li {
    padding-right: 20px;
  }


  .tel-content .operator {
    width: 300px;
  }

  .tel-content .hukidashi {
    top: -90px;
    right: 120px;
    background-position: -90px;
    background-size: 180px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 16px;
  }

  #side .tel-content {
    width: auto;
  }


  #side .tel-content .hukidashi {
    top: -80px;
    right: 120px;
    background-position: -90px;
  }

  #side .tel-content .operator {
    opacity: 1;
  }

  #menu .tel-content {
    display: none;
  }


  /* tablet end */
}

@media screen and (max-width: 767px) {

  .sp-show[data-width="767"] {
    display: block;
  }

  .sp-hide[data-width="767"] {
    display: none;
  }


  /* phone */
  #main .post-share .post-sns {
    margin: 0 -20px -20px;
  }

  #main .post-share .post-sns ul li {
    width: auto;
    float: none;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  #main .post-share .post-sns ul li a {
    padding: 16px 0;
    font-size: 16px;
  }

  #main .post-share .post-sns ul li a span {
    font-size: 16px;
  }

  #main .post-share .post-sns ul li a:before {
    font-size: 18px;
  }

  #main #comments {
    padding: 20px;
  }

  #main .post-author {
    padding: 20px;
  }

  #main .post-author .post-author-img {
    float: none;
  }

  #main .post-author .post-author-meta {
    padding: 0;
    margin: 10px 0 0;
  }

  .post-cta .post-cta-img {
    width: 100%;
    margin: 0 auto 30px;
    float: none;
  }

  .post-cta .post-cta-btn {
    margin: 24px 0 10px;
  }

  .post-cta .post-cta-btn a {
    width: 100%;
    box-sizing: border-box;
  }

  .post-footer {
    padding: 15px;
  }

  #main .post-cta .cta-post-title {
    font-size: 24px !important;
    padding: 0 0 20px !important;
  }

  .container {
    font-size: 16px;
    bottom: 0px;
    left: 0px;
    padding: 10px;
  }

  .container a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .side-widget,
  .post-loop-wrap {
    margin-bottom: 15px;
  }

  .cat-title {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    padding-right: 80px;
  }

  .side-widget.GlaHquq0 {
    position: relative;
    background: #fff;
    text-align: left;
    display: none;
  }

  .side-widget.GlaHquq0 .inner>div {
    padding: 0 !important;
    width: 100% !important;
    height: auto !important;
  }

  .side-widget.GlaHquq0 a[data-btn=remove] {
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 5px;
    right: 20px;
    border-radius: 50%;
    color: #333;
    background: rgba(255, 255, 255, 0.6);
  }

  .post-loop-wrap article a {
    padding: 15px;
  }

  .this-btn {
    width: 10px;
  }

  .metadata {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    text-overflow: ellipsis;
    font-size: 15px;
    line-height: 12px;
  }

  .widget_recent_entries a,
  .widget_archive a,
  .widget_categories a,
  .widget_meta a,
  .widget_views a {
    line-height: 18px;
  }

  form #submit {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  #panel-2,
  #panel-1 {
    height: 100%;
  }

  #show-share {
    width: auto !important;
    left: 5% !important;
    right: 5% !important;
    margin-left: 0 !important;
  }

  #show-share .post-body {
    height: 50px;
    overflow: hidden;
    line-height: 17px;
    font-size: 14px;
  }

  .swal2-modal h2 {
    font-size: 21px !important;
  }

  #close-btn {
    display: block !important;
  }

  #side .pagination {
    margin: 10px 0;
  }

  .ad-side {
    text-align: center;
    padding: 0px;
    max-height: 250px;
    background: none;
    border: 0;
    box-shadow: none;
  }

  #game-head {
    padding: 50px 0 0;
  }

  #game-head .background-img {
    height: 150px;
  }

  #game-head .wrap,
  .side-widget,
  .post-loop-wrap {
    border-radius: 0;
  }

  .icon {
    height: 50%;
  }

  .title {
    overflow: hidden;
  }

  #sub-logo a {
    width: 50px;
    text-align: center;
  }

  #sub-logo a span {
    text-indent: -9999px;
    width: 0 !important;
  }

  .post-loop-wrap .post-thumbnail {
    background: #fafafa;
  }

  #header #sub-logo {
    width: 40px;
  }

  #header #sub-logo img {
    margin: 0 auto;
    left: 0;
    right: 0;
  }

  .search_box {
    width: 100vw;
  }

  #header #logo a {
    transition: all cubic-bezier(0.77, 0, 0.175, 1) .9s;
  }

  #header .header-nav.right {
    display: none !important;
  }


  .smartfone_overlay {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    height: 50px;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
  }

  .smartfone_overlay.blocked {
    display: none;
  }

  .smartfone_overlay .inner {
    width: 320px;
    margin: 0 auto;
  }

  #side-posts a {
    color: #333;
  }

  #side-posts .post-title {
    height: 63px;
    overflow: hidden;
    line-height: 21px;
    font-size: 14px;
    font-weight: bold;
  }

  #side-posts li:first-child .post-title {
    max-height: 42px;
  }

  #side-posts .metadata {
    line-height: 13px;
    font-size: 8px;
  }

  #overlay .inner[data-page=1] {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 0;
    top: 50px;
    left: 0;
    bottom: 0;
  }

  #overlay [data-page="2"] {
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    margin: auto;
    margin-left: 0;
    right: 20px;
    width: auto;
  }

  .column-2 .column-inner {
    width: 100%;
  }

  .i-catch {
    height: 250px;
  }

  #header .header-nav {
    display: none;
    position: fixed;
    width: 100%;
    height: calc(100% - 80px);
    top: 80px;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.95);
  }

  #header .header-nav ul li {
    float: left;
    width: 50%;
    text-align: center;
  }

  .wrap-inner table tr {
    display: block;
  }

  .wrap-inner table th,
  .wrap-inner table td {
    width: 100%;
    display: block;
    padding: 15px 0;
  }

  .wrap-inner table.history th span {
    float: none;
    padding-left: 15px;
  }

  .hook {
    height: 100%;
    bottom: 0;
  }

  #footer .footer-links {
    float: none;
  }

  .footer-01 li.parent {
    padding: 0;
    float: left;
    display: block;
    width: 50%;
    border-bottom: #efefef;
    text-align: center;
  }

  .footer-01 li.parent a {
    padding: 15px;
    margin: 0;
  }

  .footer-01 li.child {
    display: none;
  }

  .footer-inner-title .title-inner {
    font-size: 18px;
  }

  .footer-inner-title .title-inner .line {
    font-size: 21px;
  }

  .footer-inner-title .title-inner span {
    font-size: 21px;
  }

  .footer-inner-title {
    padding: 15px 0;
  }


  .footer-content .inner {
    padding: 0;
  }

  .column-1-3 {
    padding: 0;
  }

  .column-2 h3 {
    line-height: 1.8;
  }

  .contact-form .privacy {
    width: 100%;
  }

  form input[type="text"],
  form input[type="email"],
  form input[type="url"],
  form input[type="tel"],
  form input[type="number"],
  form input[type="date"],
  form input[type="time"],
  form input[type="password"],
  form textarea {
    width: 100%;
    font-size: 16px;
  }

  .footer-02 li {
    display: none;
  }

  .footer-02 li.footer-copy {
    width: 100%;
    float: none;
    display: block;
    text-align: center;
  }

  .footer-content .inner {
    font-size: 15px;
  }

  #header {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
  }

  #header .header-nav ul li:last-child a {
    background: none;
    color: #666;
  }

  #header .header-nav ul li:last-child:hover a {
    color: #fff;
  }

  #footer .logo {
    display: none;
  }

  .wpcf7-confirm {
    width: calc(100% - 80px);
  }



  div.wpcf7 .ajax-loader {
    left: 10px !important;
    margin-left: 0 !important;
  }

  .news .postmeta {
    padding: 15px;
  }

  .news .post-content {
    padding: 15px;
  }

  h1.post-title {
    font-size: 18px;
  }

  #pickup_1 li.post {
    width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }

  #index_2 .column-2 .column-inner {
    padding: 15px;
  }

  .mapdata li {
    padding: 15px 0;
    float: none;
    border: none;
  }

  #slider {
    margin-bottom: 10px;
  }

  .side-widget,
  .post-loop-wrap {
    margin-bottom: 10px;
  }

  .main-inner-title {
    padding: 0 10px;
  }

  span.had-icon {
    padding-left: 29px;
  }

  span.had-icon::before {
    left: 10px;
  }

  #related-post article {
    width: 100%;
    float: none;
    border-left: none;
    border-bottom: 1px solid #efefef;
  }

  #related-post .post-thumbnail {
    width: 80px;
    float: left;
  }

  #related-post .post-body {
    margin-left: 90px;
    min-height: 80px;
  }

  #related-post .post-title {
    margin: 0;
    font-size: 14px;
  }

  #related-post article:last-child {
    border-bottom: none;
  }

  #loop-product .post-thumbnail {
    float: none;
  }

  #loop-product .post-body {
    padding: 0;
    margin: 10px 0 0;
  }

  #loop-product .cat {
    background-image: url(/lib/img/cat/_cat.png);
  }

  #loop-guide article {
    width: 100%;
    float: none;
    padding: 10px;
  }

  #loop-guide article .post-thumbnail {
    width: 100%;
  }

  #loop-guide article a .card {
    padding: 10px;
  }

  #loop-guide article .new_label {
    width: 50px;
    height: 50px;
  }


  #loop-guide article:nth-child(n + 2)::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 80%;
    background: #ddd;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
  }



  .post-loop-wrap article a {
    padding: 10px;
  }

  #loop-works article,
  article.works .post-body {
    padding: 10px;
  }

  #loop-works .post-body {
    margin: 0;
  }

  article.works .post-balloon {
    padding: 10px;
  }

  #loop-works .post-comment,
  article.works .post-comment {
    font-size: 14px;
    margin-bottom: 10px;
  }

  #loop-works .post-data,
  article.works .post-data {
    position: relative;
  }

  .head-content .post-title,
  article.works .header-title {
    padding: 10px;
    font-size: 18px;
  }


  #loop-history article {
    width: 200px;
    margin: 0;
  }

  #loop-history .pre,
  #loop-history .swiper-container,
  #side-rank .swiper-container {
    padding: 10px 10px 40px;
  }

  #loop-history .cat {
    font-size: 12px;
    margin-bottom: 5px;
  }

  #side-rank article {
    width: 200px;
    margin: 0;
    box-shadow: none;
  }

  #side-rank .inner a {
    padding: 0;
  }

  #side-rank .title {
    padding: 0;
    font-size: 15px;
  }

  #side-rank .rank {
    top: 0;

  }

  #side-rank article .post-body {
    margin-top: 10px;
  }

  #side-posts .inner a {
    padding: 10px;
  }


  #side-maker li {
    width: 50%;
    float: left;
  }



  #side-maker .inner a {
    padding: 15px;
    width: 150px;
    margin: 0 auto;
  }


  #side .tel-content .operator {
    opacity: .3;
  }



  .head-content .text {
    padding: 10px;
  }


  #overlay .alert {
    min-height: auto;
    min-width: auto;
    width: 100%;
  }



  .show_more {
    width: 30px;
    text-align: center;
  }

  .breadcrumb {
    margin-bottom: 10px;
  }


  .breadcrumb .wrap {
    overflow-x: auto;
  }

  .breadcrumb ol {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;

    -webkit-overflow-scrolling: touch;
  }

  .post-content,
  .head-content {
    margin-bottom: 10px;
  }

  .post-content .post-header {
    padding: 10px;
  }

  .post-content .post-data {
    padding: 10px;
  }

  .post-data .swiper-pagination {
    text-align: center;
  }


  .post-data .swiper-pagination-bullet {
    margin-left: 5px;
  }

  .post-data .swiper-pagination-bullet:first-child {
    margin: 0;
  }

  .post-content .inner {
    padding: 10px;
  }

  #loop-product .post-data {
    height: 100px;
  }

  #loop-product .price {
    bottom: 50px;
    min-width: 215px;
    left: auto;
    right: 0;
  }

  #loop-product .pricedown {
    min-width: auto;
  }

  #loop-product .pricedown .priceoff {
    font-weight: 900;
    border: 2px solid #fe1916;
    color: #fe1916;
    font-size: 12px;
    line-height: 26px;
    padding: 0 5px;
    margin: 10px 0;
    background: none;
  }

  #loop-product .pricedown .num {
    font-size: 12px;
  }


  #loop-product .simu {
    width: 100%;

  }

  #loop-product .simu .simu_btn {
    padding: 0;
  }

  #loop-product .simu .simu_btn::before {
    display: none;
  }

  /* ---product start--- */
  .product h1.post-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }


  .post-result .result-bottom .sup {
    font-size: 12px;
    line-height: 20px;
    padding: 35px 10px 5px;
    display: block;
    float: left;
    position: relative;
    font-weight: normal;
    width: 100%;
    text-align: center;
  }

  .post-result .result-bottom .price {
    line-height: 35px;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
  }


  .post-result .result-bottom .num {
    font-weight: 900;
    font-size: 21px;
    display: inline-block;
    float: none;
  }

  .post-result .result-bottom {
    padding: 0;
  }

  .post-result .wrap {
    margin: 0;
  }


  .post-result ul li {
    display: block;
    float: left;
  }


  .post-result ul li a {
    width: 70px;
    text-align: center;
  }

  .post-result ul li:last-child a {
    width: 95px;
    text-align: center;
  }

  .post-result .result-price {
    float: left;
    position: relative;
    width: calc(100% - 235px);
  }

  .form-inner li {
    width: calc((100% - 10px) / 2);
    margin-left: 10px;
    margin-bottom: 10px;
  }

  .form-inner li:nth-child(3n + 1) {
    margin-left: 10px;
  }

  .form-inner li:nth-child(2n + 1) {
    margin-left: 0;
  }

  .form-inner li label {
    padding: 10px;
  }

  .cast-inner {
    padding: 10px;
  }

  .cast-inner h4 {
    font-size: 14px;
  }

  .form-inner.inner-0 label span,
  .form-inner.inner-1 label span,
  .form-inner.inner-3 label span,
  .form-inner.inner-4 label span,
  .form-inner.inner-5 label span {
    font-size: 12px;
    font-weight: bold;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .form-inner.inner-4 li figure {
    width: 60px;
    height: 60px;
  }


  .form-inner.inner-4 li .show_image a {
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: block;
    font-size: 16px;
    color: #999;
    cursor: zoom-in;
  }


  .inner-5 label::after {
    content: '個';
    right: 0;
    width: 50px;
    font-size: 14px;
  }


  .form-inner.inner-3 li label .sup {
    font-size: 10px;
  }


  #form_pay .form-inner li .name {
    font-size: 12px;
  }

  .form-inner.inner-2 li {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    float: left;
  }

  .form-inner.inner-2 li:last-child {
    padding-left: 0;
    margin: 0;
  }

  .form-inner.inner-2 li label input {
    padding: 15px 50px 15px 50px;
    width: 100%;
    text-align: right;
  }

  .form-inner.inner-2 li label .sup {
    font-size: 14px;
    line-height: 50px;
    font-weight: normal;
    padding-right: 0;
    position: absolute;
    left: 0px;
    width: 50px;
    text-align: center;
    line-height: 30px;
    height: 30px;
    top: 50%;
    margin-top: -15px;
    pointer-events: none;
    z-index: 9;
  }


  .form-inner.inner-2 .balloon-box {
    width: 100%;

  }

  .form-inner.inner-2 li label::after {
    font-size: 12px;
    right: 0;
    width: 50px;
  }

  .form-inner.inner-2 li:last-child::before {
    display: none;
  }

  .form-inner.inner-2 figure {
    height: 250px;
  }

  #form_style .form-inner li figure {
    font-size: 30px;
    line-height: 60px;
  }



  .alert_text {
    font-size: 12px;
  }


  form #submit {
    line-height: 60px;
    position: relative;
    width: 100%;
    padding: 0 10px;
  }

  .contact-this {
    font-size: 14px;
    margin-top: 10px;
  }


  .post-content .result-top table th {
    display: block;
    width: 100%;
    border: none;
    text-align: left;
  }

  .post-content .result-top table td.sub {
    font-size: 12px;
    display: block;
    float: left;
    line-height: 30px;
    width: 150px;
    border: none;
  }

  .post-content .result-top table td.price {
    width: calc(100% - 150px);
    line-height: 30px;
    float: left;
    display: block;
    border: none;
  }

  .post-content .result-price {
    width: 100%;
    margin-top: 10px;
  }

  .post-content .result-top table {
    border: 2px solid #efefef;
  }

  .result-top .simu-price {
    border: 0;
    height: 60px;
    float: left;
    width: calc(100% - 150px);
    color: #FE7A16;
  }



  .post-content .result-top .result-price {
    border: 2px solid #FE7A16;
  }

  .result-top .simu-price .simu-num {
    font-size: 21px;
    line-height: 30px;
  }

  .result-top .simu-price td {
    border: none;
  }

  .post-content .result-top .result-price th {
    line-height: 30px;
    border: none;
    background: none;
    width: 150px;
    float: left;
    color: #FE7A16;
  }


  .result-breakdown table {
    border: none;
  }


  .result-breakdown table th {
    display: block;
    width: 100%;
    border: none;
    text-align: left;
  }

  .result-breakdown table td.sub {
    font-size: 12px;
    display: block;
    float: left;
    line-height: 30px;
    width: 150px;
    border: none;
  }

  .result-breakdown table td.price {
    width: calc(100% - 150px);
    line-height: 30px;
    float: left;
    display: block;
    border: none;
  }

  .result-breakdown .item-inner .item-breakdown {
    height: 300px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .result-breakdown .item-price {

    border-top: 1px solid #efefef;
  }

  .result-breakdown .item-price th {
    line-height: 30px;
    border: none;
    background: none;
    width: 150px;
    float: left;
    color: #FE7A16;
  }

  .result-breakdown .item-price table td.simu-price {
    border: 0;
    height: 60px;
    line-height: 30px;
    float: left;
    width: calc(100% - 150px);
    color: #FE7A16;

  }

  .btn-inner .emphasis .body {
    margin-top: 5px;
  }

  .btn-inner .emphasis .body .sup {
    font-size: 12px;
    line-height: 20px;
    display: block;
  }

  .btn-inner .emphasis .body .main {

    font-size: 16px;
    line-height: 30px;
  }

  .btn-inner .emphasis .free span {
    font-size: 16px;
  }


  .btn-inner .emphasis h5 {
    padding: 0 30px 0 100px;
  }

  .btn-inner .emphasis .free {
    left: 30px;
    width: 60px;
    line-height: 60px;
    padding: 0;
  }

  /* ---product end--- */
  /* ---alert start--- */
  #overlay .alert {
    padding: 10px;
  }

  #overlay .navi .prev,
  #overlay .navi .next {
    width: 20%;
    text-align: center;
  }

  #overlay .color {
    margin: 10px;
  }

  #overlay .name {
    position: relative;
    width: 100%;
    font-size: 14px;
    line-height: 60px;
    padding: 0 10px;
  }

  /* ---alert end--- */
  /* ---menu start--- */
  #menu {
    width: 100%;
    height: calc(100% - 70px);
  }

  #menu .module {
    width: 300px;
    position: absolute;
    top: 0;
    right: 0;
  }

  #menu .module::before {
    left: 5px;
    right: 5px;
  }

  #menu .inner {
    height: 100%;
    background: #fafafa;
    z-index: 9;
  }

  #menu .inner ul li {
    border-bottom: 1px solid #efefef;
  }

  #menu .close {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.25);
    cursor: zoom-out;
  }

  #menu .tel-content {
    display: block;
  }


  /* ---menu end--- */
  /* ---contact start--- */
  #contact h3 {
    font-size: 18px;
  }


  #contact .product .thumb {
    width: 100%;
    height: 250px;
  }

  .post-content .product table {
    width: 100%;
    border: none;
    line-height: 30px;
  }

  #contact .product table th,
  #contact .product table td {
    display: block;
    line-height: 30px;
    padding: 10px;
  }

  #contact .product table th {
    padding: 10px 10px 0 10px;
  }

  #contact .product table td {
    font-weight: bold;
  }

  #contact .detailed th {
    background: #fff;
  }

  #contact .product .color {

    margin: 0 10px 0 0;
  }

  .post-content .text {
    padding: 0;
  }

  .post-content .text h3 {
    font-size: 16px;
  }

  .post-content .text h2 {
    font-size: 18px;
    margin: 0 auto 10px;
    padding-bottom: 10px;
  }


  .head-content .text {
    padding: 10px;
  }

  .content-inner {
    padding: 30px 0;
  }

  .wrap-inner table th,
  .wrap-inner table td {
    padding: 10px;
    line-height: 30px;
  }

  .wrap-inner table th {
    padding: 10px 10px 0 10px;
  }

  .wrap-inner table td {
    font-weight: bold;
  }





  #contact .input-area {
    margin-bottom: 15px;
  }


  #contact form table td,
  #contact form table th {
    padding: 10px;
  }

  #contact form ul li {
    padding: 0;
    margin-bottom: 15px;
  }

  #contact #radio_3_hidden .select-content {
    margin-top: 10px;
  }

  #contact #radio_3_hidden .hope_1 {
    display: block;
    margin-bottom: 15px;
  }

  #contact form ul li a.add {
    top: auto;
    bottom: 0;
  }

  .contact-form .privacy {
    font-size: 14px;
    margin-top: 10px;
  }

  .wpcf7-form .btn-content {
    margin-top: 10px;
  }

  #contact .wpcf7-form input[type="submit"] {
    width: 100%;
    float: none;
    line-height: 60px;
    padding: 0;
    margin-bottom: 2px;
  }

  #contact .result .price {
    line-height: 30px;
    float: right;
  }

  #contact .result .price .sup {
    color: #333;
  }




  #contact .wpcf7-form input[type="submit"] {
    font-size: 14px;
  }

  #contact .result button {
    margin: 10px auto 0;
    float: none;
  }

  #detailed table td.sub {
    font-size: 12px;
    display: block;
    float: left;
    line-height: 30px;
    width: 150px;
    border: none;
  }

  #detailed table td.price {
    line-height: 30px;
  }

  #contact .detailed table td.sub {
    width: calc(100% - 150px);
    line-height: 30px;
    float: left;
    display: block;
    border: none;
  }

  #contact .wrap-inner table th {
    width: 100%;
  }

  #contact .detailed .price {
    font-size: 16px;
  }

  #contact .ajax-loader {
    border-left: 2px solid #fff;
  }




  .show-detail {
    position: relative;
    display: block;
    border-top: 1px solid #efefef;
    color: #666;
    font-size: 12px;
    line-height: 50px;
  }


  .show-detail:before {
    content: "\e64b";
    font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 15px;
    top: 0;
    line-height: 50px;
    font-size: 16px;
    color: #999;
    -webkit-transition: all .3s;
    transition: all .3s;
  }

  /* ---contact end--- */
  /* ---topics start--- */
  #main .post-author {
    padding: 10px;
  }

  .post-author .date {
    position: absolute;
    line-height: 45px;
    font-size: 14px;
    right: 10px;
    top: 10px;
  }

  .post-content .post-inner .text {
    padding: 10px;
  }



  .post-share h4 {
    font-size: 16px;
  }

  .head_deco .line {
    font-size: 18px;
  }

  .head_deco span {
    font-size: 18px;
  }

  .post-share .desc {
    font-size: 14px;
  }

  .post-share .btn-content ul {
    width: 100%;
    padding: 0;
    margin-top: 15px;
  }

  .btn-content ul li {
    width: 45%;
    width: calc((100% - 15px)/2);
  }

  .post-share .share {
    width: 100%;
    height: 60px;
    line-height: 60px;
  }

  .post-author .date {
    font-size: 12px;
  }

  .share {

    padding-left: 24px;
  }

  .share::before {
    background-size: 48px;
    width: 24px;
    height: 24px;
    left: 12px;
  }

  .share.twitter::before {
    background-position: -24px;
  }


  /* ---topics end--- */
  /* ---pagination start--- */
  .pagination {

    width: 100%;
    float: none;
  }

  .pagination li {
    margin: 0;
    width: 33.333%;
    text-align: center;
  }

  #pagination a {
    width: 100%;
  }





  /* ---pagination end--- */
  /* ---simulation start--- */
  .content-inner .content-title h2 {
    font-size: 18px;
    line-height: 25px;
  }

  #simulation .content-inner .content-title {
    margin-bottom: 15px;
  }

  #simulation .wrap-inner.desc {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 15px;
  }

  #simulation .sup-inner {
    font-size: 14px;
  }


  #simulation .btn-inner {
    height: auto;
    margin-top: 30px;
    padding-bottom: 2px;
  }

  #simulation .btn-inner a {
    font-size: 14px;
    margin: 0;
    width: 100%;
  }

  #simulation #simu_1_2.btn-inner a:first-child {
    margin-bottom: 10px;
  }


  #simulation .wrap-inner li {
    width: calc((100% - 10px) / 2);
    margin-left: 10px;
    margin-bottom: 10px;
  }

  #simulation .wrap-inner li:nth-child(4n + 1) {
    margin-left: 10px;
  }

  #simulation .wrap-inner li:nth-child(2n + 1) {
    margin-left: 0;
  }


  #simulation .wrap-inner li label {
    padding: 10px;
  }

  #simulation .btn-inner li {
    display: inline-block;
    float: left;
    width: calc((100% - 10px) / 2);
  }

  #simulation .btn-inner li:last-child {
    margin-left: 10px;
  }


  #simulation #simu_4_2 .sup {
    position: absolute;
    font-size: 14px;
    line-height: 50px;
    font-weight: normal;
    padding-right: 0;
    left: 0px;
    width: 50px;
    text-align: center;
    line-height: 30px;
    height: 30px;
    top: 50%;
    margin-top: -15px;
    pointer-events: none;
    z-index: 9;
  }

  #simulation #simu_4_2 li {
    display: inline-block;
    float: left;
    width: calc((100% - 10px) / 2);
    margin-bottom: 0;
  }


  #simulation #simu_4_2 li label::after {
    font-size: 12px;
  }



  #simulation #simu_4_2 li:last-child {
    padding-left: 0;
    margin-left: 10px;
  }

  #simulation #simu_4_2 li:last-child::before {
    display: none;
  }

  #simulation #simu_4_2 .balloon-box {
    width: 100%;
  }

  #simulation #simu_4_2 li input {
    padding: 15px 50px 15px 50px;
    width: 100%;
    text-align: right;
  }

  #simulation #simu_4_2 .thumb {
    height: 250px;
  }

  #simu_6_2 li figure {
    width: 60px;
    height: 60px;
  }


  #simu_7_2.wrap-inner li figure {
    font-size: 40px;
  }

  #simu_7_2.wrap-inner li .sup {
    font-size: 12px;
  }

  #simu_7_2.wrap-inner li .title {

    font-size: 14px;
    font-weight: bold;
  }


  #simu_7_3.btn-inner li {
    width: 100%;
    float: none;
    margin: 0 !important;
  }

  #simulation .show_image a {
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: block;
    font-size: 16px;
    color: #999;
    cursor: zoom-in;
  }



  #simulation h3 {
    margin: 10px;
    font-size: 16px;
    font-weight: 900;
    text-align: left;
  }


  #simu .post-sup {
    padding: 10px;
    margin-bottom: 10px;
  }

  #contact .post-sup {
    margin-top: 10px
  }

  /* ---simulation end--- */
  /* ---topics start--- */
  #loop-topics .post-thumbnail {
    height: 80px;
  }

  #loop-topics .post-body {
    padding-left: 10px;
    min-height: 80px;
  }

  #loop-topics .post-title {
    font-size: 14px;
    line-height: 20px;
  }

  #loop-topics .post-tag .tag {
    font-size: 10px;
    line-height: 25px;

  }

  .topics-tag {
    padding: 10px;
    border-top: 1px solid #efefef;
  }


  /* ---topics end--- */
  /* ---work start--- */
  #loop-works .post-balloon {
    padding: 10px;
  }

  .post-images {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }


  .post-images .my-gallery {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
    -webkit-overflow-scrolling: touch;

  }

  /* ---work end--- */
  /* ---contact start--- */
  .tel-content {
    padding: 30px 10px;
    margin-top: 30px;
    /*content-visibility: auto;*/
    /*24.03.26追加*/
  }

  .tel-content .title {
    font-size: 16px;
  }

  .tel-content .body .main {
    font-size: 24px;
  }

  .tel-content .body .main .num {
    font-size: 30px;
  }

  .tel-content .operator {
    width: 300px;
    opacity: .3;
  }

  .tel-content .hukidashi {
    display: none;
  }

  #contact form ul li .sub {
    float: none;
  }

  .contact-form {
    margin: 30px auto 0 auto
  }


  #contact form #radio_3 .timepickr {
    width: auto;
  }

  #contact form #radio_3 .select-content {
    display: block;
  }


  #contact form #radio_3 select {
    padding: 0 10px;

  }

  #contact form #radio_3 .select_month {
    margin-right: 5px;
  }

  #contact form #radio_3 .select_day {
    margin-right: 15px;
  }

  #contact form #radio_3 .sup {
    width: 20px;
  }

  #side-simu {
    background-image: url(/lib/img/_simu_02.jpg);
    height: 150px;
  }

  #side-simu::before {
    display: none;
  }

  #side-simu .simu-content {
    padding: 10px;
    text-align: left;
  }

  #side-simu .simu-content .sub {
    font-size: 12px;
    margin-bottom: 0;
  }

  #side-simu .simu-content .main {
    font-size: 16px;
  }

  #side-simu .simu {
    position: absolute;
    left: 15px;
    right: auto;
    bottom: 15px;

  }


  /* ---contact end--- */
  /* ---phone end--- */
}

.read-more {
  display: block;
  text-align: center;
  font-size: 12px;
  padding: 15px !important;
}




.form-row {
  display: flex;
  align-items: center;
  padding: 1em 0.4em;
  width: 100%;
  border-bottom: 1px solid var(--color-light-gray);

  .form-row:last-child {
    border-bottom: none;
  }

  p {
    width: 100%
  }
}


.form-label {
  display: flex;
  align-items: center;
  width: 35%;
}

.form-label label {
  font-weight: bold;
}

.form-label span {
  margin-left: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  color: var(--wp--preset--color--white);
  background-color: var(--color-red);
}

.form-row-child {
  display: flex;
  /*align-items: center;*/
  padding: 1em 0.4em;
  width: 50%;
}

.form-label-child {
  display: flex;
  /*align-items: center;*/
  padding: 0em 0.4em;
}

.form-label-child label {
  font-weight: bold;
}

.form-label-child span {
  margin-left: 5px;
  padding: 1px 3px;
  border-radius: 1px;
  font-size: 10px;
  font-weight: bold;
  color: var(--wp--preset--color--white);
  background-color: var(--color-red);
}