@charset "UTF-8";
/***********************共通設定************************/
/*----------------------------------------------------
メニュー用
----------------------------------------------------*/
/*----------------------------------------------------
トップの検索フィール用
----------------------------------------------------*/
/*----------------------------------------------------
ヘッダーロゴ
----------------------------------------------------*/
.header_logo_wrap {
  top: 0;
  position: fixed;
  background: #00242A;
  width: 100%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 90px;
  /* 1240px以下  */
  z-index: 21;
}
@media all and (max-width: 1240px) {
  .header_logo_wrap {
    height: 50px;
  }
}

.header_logo {
  padding: 0 24px;
}
.header_logo img {
  height: 22px;
  width: auto;
  /* 1240px以下  */
}
@media all and (max-width: 1240px) {
  .header_logo img {
    height: 18px;
  }
}

.menu_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu_wrap a {
  color: #fff;
}

/*----------------------------------------------------
pc用のメインメニュー
----------------------------------------------------*/
.menu_pc {
  display: block;
  margin: 0 30px 0 0;
  /* 1240px以下  */
}
@media all and (max-width: 1240px) {
  .menu_pc {
    display: none;
  }
}
.menu_pc ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu_pc li {
  margin: 0 13px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 1240px以下  */
}
@media all and (max-width: 1240px) {
  .menu_pc li {
    height: 60px;
  }
}
.menu_pc li a {
  position: relative;
  letter-spacing: 0;
}

@media all and (max-width: 1420px) {
  .menu_pc li a {
	font-size: 12px!important;
　}
}

.menu_pc li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #fff;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu_pc li a:hover::after {
  width: 100%;
}

/*----------------------------------------------------
検索とお問い合わせ
----------------------------------------------------*/
.menu_right {
  display: block;
  /* 1240px以下  */
}
@media all and (max-width: 1240px) {
  .menu_right {
    display: none;
  }
}
.menu_right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu_right li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.menu_right li a::before {
  content: "";
  position: absolute;
  background-size: cover;
  left: 50px;
}
.menu_right li.search {
  position: relative;
}
.menu_right li.search input {
  border-radius: 100px;
  border: none;
  padding: 5px 5px 5px 10px;
  max-width: 180px;
}
.menu_right li.search input::-webkit-input-placeholder {
  color: #fff;
}
.menu_right li.search input::-moz-placeholder {
  color: #fff;
}
.menu_right li.search input:-ms-input-placeholder {
  color: #fff;
}
.menu_right li.search input::-ms-input-placeholder {
  color: #fff;
}
.menu_right li.search input::placeholder {
  color: #fff;
}
.menu_right li.search .sf-field-submit {
  position: absolute;
  top: 0;
  right: 0px;
}
.menu_right li.search .sf-field-submit input {
  background: none;
  font-size: 0;
  width: 40px;
  height: 30px;
  cursor: pointer;
}
.menu_right li.search .sf-field-submit::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon_search_top.png);
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 15px;
  right: 10px;
  pointer-events: none;
}
.menu_right li.contact a {
  background: #6E8B8F;
  color: #fff;
  padding: 8px 15px;
  border: 1px solid #6E8B8F;
  border-radius: 2px;
  margin: 0 30px;
  letter-spacing: 0.05em;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu_right li.contact a:hover {
  background: #E4F1F8;
  color: #6E8B8F;
}

/*----------------------------------------------------
ハンバーガーメニュー
----------------------------------------------------*/
.menu_sp {
  z-index: 99;
  cursor: pointer;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
  /* 1240px以下  */
  position: relative;
}
@media all and (max-width: 1240px) {
  .menu_sp {
    display: block;
  }
}
.menu_sp::before {
  content: "";
  position: absolute;
  background-image: url(../images/icon_search.png);
  background-size: cover;
  width: 16px;
  height: 16px;
  left: -18px;
  top: 18px;
}
.menu_sp::after {
  content: "";
  position: absolute;
  height: 30px;
  width: 1px;
  background: #00525D;
  left: -35px;
  top: 50%;
  margin-top: -15px;
}
.menu_sp span {
  display: block;
  position: absolute;
  background: #fff;
  width: 18px;
  height: 2px;
  right: 20px;
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu_sp span:nth-child(1) {
  top: 19px;
}
.menu_sp span:nth-child(2) {
  top: 25px;
}
.menu_sp span:nth-child(3) {
  top: 31px;
}
.menu_sp.open::before {
  display: none;
}
.menu_sp.open span:nth-child(1) {
  top: 24px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.menu_sp.open span:nth-child(2) {
  display: none;
}
.menu_sp.open span:nth-child(3) {
  top: 24px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*----------------------------------------------------
ハンバーガーメニューの内部
----------------------------------------------------*/
#gNav {
  position: absolute;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00353C;
  z-index: 11;
  /* 1240px以下  */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (max-width: 1240px) {
  #gNav {
    background-position-x: right;
  }
}
#gNav.open {
  top: 0px;
  height: 100vh;
  overflow: auto;
  position: fixed;
}

.gNav_inner {
  height: 100%;
  padding: 120px 0px 0;
  letter-spacing: 0;
  /* 1240px以下  */
}
@media all and (max-width: 1240px) {
  .gNav_inner {
    padding: 60px 0px 0px;
  }
}
.gNav_inner > ul {
  margin: 0 10% 20px;
}
.gNav_inner > ul li {
  text-align: left;
  border-bottom: 1px solid #A5A5A5;
  position: relative;
  width: 100%;
}
.gNav_inner > ul li:first-child {
  border-top: 1px solid #A5A5A5;
}
.gNav_inner > ul li.about {
  border-top: none;
}
.gNav_inner > ul li::after {
  content: "";
  background-image: url(../images/arr_sp.png);
  width: 6px;
  height: 12px;
  background-size: cover;
  right: 10px;
  top: 19px;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gNav_inner > ul li a {
  color: #fff;
  position: relative;
  display: block;
  padding: 15px;
  font-size: 15px;
}
.gNav_inner > ul li:hover::after {
  right: 20px;
}
.gNav_inner > ul.secont_menu {
  padding: 0 0 100px;
}
.gNav_inner .nav_tit {
  color: #fff;
  text-align: left;
  padding: 0 10%;
  margin: 15px 0;
  font-size: 16px;
  font-weight: 600;
}
.gNav_inner .sp_search {
  margin: 20px 10% 40px;
}
.gNav_inner .sp_search label {
  width: 100%;
  position: relative;
}
.gNav_inner .sp_search label::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon_search_top.png);
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 15px;
  right: 14px;
}
.gNav_inner .sp_search input {
  padding: 15px;
  width: calc(100% - 30px);
  border-radius: 40px;
  border: none;
}

/*----------------------------------------------------
loader
----------------------------------------------------*/
#loaderBg {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 10000;
  background: #1E3346;
}

@-webkit-keyframes slideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes slideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  pointer-events: none;
}
#loader .loader-slide {
  width: 100%;
  height: 100%;
}
#loader .loader-slide.open {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.load_logo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* 751以上 */
  /* 750以下  */
}
@media all and (min-width: 751px) {
  .load_logo {
    width: 360px;
    left: 50%;
    margin-left: -180px;
  }
}
@media all and (max-width: 750px) {
  .load_logo {
    width: 240px;
    left: 50%;
    margin-left: -120px;
  }
  .load_logo img {
    width: 80%;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*----------------------------------------------------
トップに戻るボタン
----------------------------------------------------*/
#toPageTop {
  right: -100%;
  bottom: 3%;
  position: fixed;
  z-index: 9;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  #toPageTop {
    max-width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
#toPageTop.scrollfixed {
  /* 751以上 */
  /* 750以下  */
}
@media all and (min-width: 751px) {
  #toPageTop.scrollfixed {
    right: 1%;
  }
}
@media all and (max-width: 750px) {
  #toPageTop.scrollfixed {
    right: 0;
    bottom: -45px;
  }
}
#toPageTop a {
  display: block;
}

.totop {
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .totop {
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-image: url(../images/arr_totop.png);
    width: 40px;
    background-size: cover;
    height: 40px;
    margin: 0 0 13px;
    -webkit-box-shadow: 1px 1px 11px rgba(0, 0, 0, 0.4);
            box-shadow: 1px 1px 11px rgba(0, 0, 0, 0.4);
    border-radius: 30px;
  }
  .totop:hover {
    background-image: url(../images/arr_totop_on.png);
  }
}

.totrial {
  width: 100%;
  background-image: url(/wp-content/uploads/2023/03/a7c484c935524f6d8584ff620790c914.png);
  background-size: cover;
  margin: 0 10px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 750以下  */
  /* 751以上 */
}
@media all and (max-width: 750px) {
  .totrial {
    width: 100%;
    background-image: url(../images/trial_sp.png);
    height: 186px;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
@media all and (min-width: 751px) {
  .totrial {
    width: 248px;
    height: 173px;
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  }
  .totrial:hover {
    background-image: url(/wp-content/uploads/2023/03/90382a20ba4adf679402a21193d3f0a6.png);
  }
}

.totrial_impact1000 {
  width: 100%;
  background-image: url(/wp-content/uploads/2023/10/58493e91f8e8185383588006595b1b94.png);
  background-size: cover;
  margin: 0 10px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 750以下  */
  /* 751以上 */
}
@media all and (max-width: 750px) {
  .totrial_impact1000 {
    width: 100%;
    background-image: url(../images/trial_sp.png);
    height: 186px;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
@media all and (min-width: 751px) {
  .totrial_impact1000 {
    width: 248px;
    height: 173px;
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  }
  .totrial_impact1000:hover {
    background-image: url(/wp-content/uploads/2023/10/90382a20ba4adf679402a21193d3f0a6.png);
  }
}

.totrial_impact800 {
  width: 100%;
  background-image: url(/wp-content/uploads/2024/05/679b7abb19f8c32305d2af5191608392.png);
  background-size: cover;
  margin: 0 10px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 750以下  */
  /* 751以上 */
}
@media all and (max-width: 750px) {
  .totrial_impact800 {
    width: 100%;
    background-image: url(../images/trial_sp.png);
    height: 186px;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
@media all and (min-width: 751px) {
  .totrial_impact800 {
    width: 248px;
    height: 173px;
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  }
  .totrial_impact800:hover {
    background-image: url(/wp-content/uploads/2024/05/c0675a86a315742ba56fe6ba041d8b3a.png);
  }
}

.totrial_impact700 {
  width: 100%;
  background-image: url(/wp-content/uploads/2024/05/7fbf78a8eebe40025e1bb41b1123555c.png);
  background-size: cover;
  margin: 0 10px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 750以下  */
  /* 751以上 */
}
@media all and (max-width: 750px) {
  .totrial_impact700 {
    width: 100%;
    background-image: url(../images/trial_sp.png);
    height: 186px;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
@media all and (min-width: 751px) {
  .totrial_impact700 {
    width: 248px;
    height: 173px;
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  }
  .totrial_impact700:hover {
    background-image: url(/wp-content/uploads/2024/05/5607cb1cc8d182ac10d83c1231e8dcc7.png);
  }
}

.totrial_talkhub {
  width: 100%;
  background-image: url(/wp-content/uploads/2025/07/8c14becdd13fa9279c26212eec488c4b.png);
  background-size: cover;
  margin: 0 10px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 750以下  */
  /* 751以上 */
}
@media all and (max-width: 750px) {
  .totrial_talkhub {
    width: 100%;
    background-image: url(/wp-content/uploads/2025/07/8c14becdd13fa9279c26212eec488c4b.png);
    height: 186px;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
@media all and (min-width: 751px) {
  .totrial_talkhub {
    width: 248px;
    height: 173px;
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  }
  .totrial_talkhub:hover {
    background-image: url(/wp-content/uploads/2025/07/5890d98304fcd5b7ae00bd8ee4f97e49.png);
  }
}

.totrial_talkhub {
  width: 100%;
  background-image: url(/wp-content/uploads/2025/07/8c14becdd13fa9279c26212eec488c4b.png);
  background-size: cover;
  margin: 0 10px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 750以下  */
  /* 751以上 */
}
@media all and (max-width: 750px) {
  .totrial_talkhub {
    width: 100%;
    background-image: url(/wp-content/uploads/2025/07/8c14becdd13fa9279c26212eec488c4b.png);
    height: 186px;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
@media all and (min-width: 751px) {
  .totrial_talkhub {
    width: 248px;
    height: 173px;
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  }
  .totrial_talkhub:hover {
    background-image: url(/wp-content/uploads/2025/07/5890d98304fcd5b7ae00bd8ee4f97e49.png);
  }
}
/*----------------------------------------------------
コピーライト
----------------------------------------------------*/
.footer_nav_wrap {
  background: #00242A;
}
.footer_nav_wrap .totop {
  /* 751以上 */
  background: #00353C;
}
@media all and (min-width: 751px) {
  .footer_nav_wrap .totop {
    display: none;
  }
}
.footer_nav_wrap .totop span {
  color: #fff;
  padding: 15px 0 15px 30px;
  font-size: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  display: block;
}
.footer_nav_wrap .totop span::before {
  content: "";
  position: absolute;
  background-image: url(../images/arr_totop.png);
  width: 24px;
  height: 24px;
  background-size: cover;
  left: 1px;
}

.footer_logo {
  width: 257px;
  margin: 0 auto;
  padding: 50px 0;
}

.copy {
  color: #6E8B8F;
  font-size: 14px;
  text-align: center;
  padding: 16px;
  letter-spacing: 0.1em;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .copy {
    font-size: 12px;
  }
}

.footer_nav {
  max-width: 1000px;
  padding: 0 35px 60px;
  margin: 0 auto;
  text-align: left;
  /* 1001以上  */
}
@media all and (min-width: 1001px) {
  .footer_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 20px 60px;
  }
}
.footer_nav a {
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer_nav a:hover {
  color: #6E8B8F;
}

.nav_link_prod li {
  margin: 10px 0;
}
.nav_link_prod li:first-child {
  margin: 0 0 10px 0;
}
.nav_link_prod .foot_search {
  margin: 30px 0;
  padding: 0 0 0 25px;
  position: relative;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .nav_link_prod .foot_search {
    margin: 0 0 0 20px;
  }
}
.nav_link_prod .foot_search::before {
  content: "";
  position: absolute;
  background-image: url(../images/icon_search.png);
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 3px;
  left: 7px;
}

.nav_link_tit {
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 20px;
  color: #fff;
  letter-spacing: 0;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .nav_link_tit {
    font-size: 14px;
  }
}

.nav_link_wrap {
  letter-spacing: 0;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .nav_link_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .nav_link_wrap ul {
    width: 50%;
  }
  .nav_link_wrap .foot_search {
    width: 50%;
  }
}

.nav_link_else {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 42px 0 0;
}
.nav_link_else ul {
  margin: 0 50px 0 0;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .nav_link_else ul {
    margin: 0 10px 0 0;
    width: 50%;
  }
}
.nav_link_else ul.right_menu {
  /* 750以下  */
  margin: 0;
}
@media all and (max-width: 750px) {
  .nav_link_else ul.right_menu {
    width: 50%;
  }
}
.nav_link_else li {
  margin: 10px 0;
  letter-spacing: 0;
}
.nav_link_else li:first-child {
  margin: 0 0 10px 0;
}

.company {
  font-size: 14px;
  padding: 10px 20px;
  height: 140px;
  background: #fff;
  color: #1C2B26;
  border-radius: 5px;
  margin: 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .company {
    font-size: 13px;
    height: 120px;
    padding: 10px 40px 10px 20px;
  }
}

.com_name {
  font-size: 16px;
  margin: 6px 0;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* 750以下  */
}
.com_name a {
  color: #1C2B26;
  padding: 0 30px 0 0;
}
@media all and (max-width: 750px) {
  .com_name {
    font-size: 14px;
  }
}
.com_name::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon_com.png);
  background-size: cover;
  width: 17px;
  height: 13px;
  top: 6px;
  right: 7px;
  pointer-events: none;
}

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

body {
  /* for iOS */
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img {
  /* for Chrome */
  -webkit-backface-visibility: hidden;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  font-size: 14px;
  text-align: center;
  letter-spacing: 2px;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  body {
    font-size: 13px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

section {
  display: block;
}

a {
  outline: none;
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

a img {
  border: none;
}

ul, li {
  list-style: none;
}

input, label, select, textarea {
  vertical-align: middle;
}

html,
body {
  overflow-x: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 750以下  */
@media all and (max-width: 750px) {
  html,
body {
    height: auto;
  }
}
/* 751以上 */
@media all and (min-width: 751px) {
  html,
body {
    height: 100%;
    min-height: 100%;
    height: auto !important;
  }
}
/*----------------------------------------------------
br
----------------------------------------------------*/
br.pc {
  /* 750以下  */
}
@media all and (max-width: 750px) {
  br.pc {
    display: none;
  }
}
br.sp {
  /* 751以上 */
}
@media all and (min-width: 751px) {
  br.sp {
    display: none;
  }
}

/*----------------------------------------------------
フォント
----------------------------------------------------*/
.poppins {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
}

/*----------------------------------------------------
パンクず
----------------------------------------------------*/
.bread {
  max-width: 1160px;
  padding: 20px;
  /* 751以上 */
  /* 750以下  */
}
@media all and (min-width: 751px) {
  .bread {
    margin: 0px auto;
  }
}
@media all and (max-width: 750px) {
  .bread {
    padding: 15px 15px 35px;
    font-size: 12px;
    text-align: left;
  }
}
.bread ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bread ul li {
  color: #393939;
  padding: 0 20px 0 0;
  position: relative;
}
.bread ul li::after {
  position: absolute;
  content: "";
  top: 3px;
  right: 10px;
  background: #82A79B;
  width: 1px;
  height: 16px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}
.bread ul li:last-child::after {
  display: none;
}
.bread ul li a {
  color: #393939;
  position: relative;
}
.bread ul li a::after {
  content: "";
  position: absolute;
  background: #393939;
  width: 0%;
  height: 1px;
  left: 0;
  bottom: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bread ul li a:hover::after {
  width: 100%;
}
.bread ul li .post-categories li {
  padding: 0;
}

input[type=text] {
  font-size: 16px;
  border: 1px solid #ccc;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*# sourceMappingURL=common.css.map */

.menu_left{
text-align: left
}