@charset "UTF-8";
/*------------------------------------------------------------
  Default
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

body, table,
input, textarea, select, option, button,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
}
/*------レシピボタン------*/
.recipe a {margin-left: 10px;
	text-align:left;white-space:nowrap; overflow:hidden; }
.recipe a:hover { position:relative; top:1px; left: 1px;}
.recipe img{ width:50%;height:auto}
/*------------------------------------------------------------
  Layout
------------------------------------------------------------*/
.wrapper {
  margin: 0 auto;
  width: 100%;
  min-width: 1080px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .wrapper {
    min-width: 320px;
  }
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

.container1 {
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .container1 {
    padding: 0 10px;
  }
}

main {
  display: block;
}

.c-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
    background: #ffffff;
}

.c-header1 {
  width: 960px;
  margin: 0 auto;
  padding-top: 15px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

@media screen and (max-width: 768px) {
  .c-header1 {
    width: 100%;
    padding-top: 0;
  }
}

.c-header1__inline {
  height: 70px;
  background-color: #fff;
  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;
  padding-left: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
/*  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.33);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.33);*/
/*              border-bottom: 2px #060606 solid;
    border-top: 2px #000000 solid;*/
}

@media screen and (max-width: 768px) {
  .c-header1__inline {
    width: 100%;
    height: 50px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .c-header1__logo {
    width: 176px;
  }
}

.c-header1__logo img {
  max-width: 100%;
}

.c-header1__logo a {
  display: block;
}

.c-header1__btn-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .c-header1__btn-menu {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 13px;
    right: 20px;
  }
  .c-header1__btn-menu .bar1,
  .c-header1__btn-menu .bar2,
  .c-header1__btn-menu .bar3 {
    width: 25px;
    height: 3px;
    background-color: #0048AA;
    margin: 4px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

.c-header1 .is-open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-3px, 4px);
          transform: rotate(-45deg) translate(-3px, 4px);
}

.c-header1 .is-open .bar2 {
  opacity: 0;
}

.c-header1 .is-open .bar3 {
  -webkit-transform: rotate(45deg) translate(-7px, -6px);
          transform: rotate(45deg) translate(-7px, -6px);
}

.navigation {
  display: block;
}

@media screen and (max-width: 768px) {
  .navigation {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 50px;
    left: 0;
    z-index: 999999999;
    background-color: rgba(255, 255, 255, 0.96);
    overflow: auto;
    padding-bottom: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.navigation ul {
  display: table-cell;
}

@media screen and (max-width: 768px) {
  .navigation ul {
    display: block;
  }
}

.navigation ul li {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .navigation ul li {
    display: block;
    border-top: 1px solid #EDEDED;
  }
}

.navigation ul li:last-child {
  display: none;
}

@media screen and (max-width: 768px) {
  .navigation ul li:last-child {
    display: block;
    border-bottom: 1px solid #EDEDED;
  }
}

.navigation ul li:last-child a {
  margin-right: 37px;
}

@media screen and (max-width: 768px) {
  .navigation ul li:last-child a {
    margin-right: 0;
  }
}

.navigation ul li:hover a:after, .navigation ul li.active a:after {
  width: 100%;
}

.navigation ul li a {
  display: block;
  margin-right: 56px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .navigation ul li a {
    margin-right: 0;
    padding: 20px;
  }
  .navigation ul li a:before {
    content: url(../images/chevron-circle-right-solid.svg);
    display: inline-block;
    font-size: 1.2rem;
    margin-right: 15px;
    width: 12px;
  }
}

.navigation ul li a:after {
  content: "";
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  height: 3px;
  width: 0;
  background: #D56200;
  left: 50%;
  bottom: -18px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .navigation ul li a:after {
    height: 0;
  }
}

.navigation__tt {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0D0D0D;
  display: block;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .navigation__tt {
    display: inline-block;
    font-size: 1.6rem;
  }
}

.navigation__sub {
  font-size: 1.2rem;
  color: #0048AA;
  font-family: "Hammersmith One", sans-serif;
  letter-spacing: 0.05rem;
  display: block;
  text-align: center;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .navigation__sub {
    display: inline-block;
    font-size: 1.4rem;
    margin-left: 10px;
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .navigation .contact__box {
    margin: 25px 20px;
  }
}

.c-footer {
  border-top: 4px solid #0048AA;
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .c-footer {
    margin-top: 40px;
  }
}

.c-footer__text {
  font-size: 1.1rem;
  color: #9B9999;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01rem;
  padding: 10px 0;
}

@media screen and (max-width: 768px) {
  .c-footer__text {
    font-size: 0.8rem;
  }
}

.c-footer1 {
    /* background: url(../images/bg-foo.png) no-repeat; */
    background-size: cover;
    padding-top: 20px;
    /* padding-bottom: 20px; */
}

@media screen and (max-width: 768px) {
  .c-footer1 {
    padding: 20px 0;
  }
}

.c-footer1__inline {
  width: 100%;
  max-width: 1000px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 23px 20px 15px;
  background-color: #fff;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .c-footer1__inline {
    margin: 0 10px;
    width: auto;
    padding: 14px 10px;
  }
}

@media screen and (max-width: 768px) {
  .c-footer1__logo {
    width: 190px;
  }
}

.c-footer1__logo img {
  max-width: 100%;
}

.c-footer1 dl dt,
.c-footer1 dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .c-footer1 dl dt,
  .c-footer1 dl dd {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}

.c-footer1 dl dd {
  padding-top: 10px;
  border-top: 1px solid #EDEDED;
  margin-top: 10px;
}

.c-footer1__text {
  font-size: 1.2rem;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
  font-weight: 500;
  line-height: 24px;
}

@media screen and (max-width: 768px) {
  .c-footer1__text {
    font-size: 1rem;
    line-height: 16px;
  }
}

.c-footer1__text span {
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .c-footer1__text span {
    display: block;
    text-align: center;
    margin-right: 0;
  }
}

.c-footer1__link {
  font-size: 1.2rem;
  color: #6F6F6F;
  letter-spacing: 0.01rem;
  font-weight: 500;
  line-height: 24px;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .c-footer1__link {
    display: none;
  }
}

.c-footer1__link:hover {
  text-decoration: none;
}

.c-nav-foo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .c-nav-foo {
    display: none;
  }
}

.c-nav-foo li:last-child a {
  margin-right: 0;
}

.c-nav-foo a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
  margin-right: 60px;
}

.c-nav-foo a:hover {
  opacity: 0.7;
}

.c-nav-foo a:before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 5px;
}

/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
  position: relative;
  box-sizing: border-box;

}


@media screen and (max-width: 768px) {
  .bx-wrapper img {
    border:5px solid #fff;
  }
}

.bxslider {
  margin: 0;
  padding: 0;
  /*fix flickering when used background-image instead of <img> (on Chrome)*/
  -webkit-perspective: 1000;
}

ul.bxslider {
  list-style: none;
}

.bx-viewport {
  /* fix other elements on the page moving (in Chrome) */
  -webkit-transform: translateZ(0);
  height: 470px!important;
}
@media screen and (max-width: 768px) {
  .bx-viewport {
    height: auto!important;
  }
}


/** THEME
===================================*/
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}

/* LOADER */
/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #000;
}

.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: bottom;
  *zoom: 1;
  *display: inline;
}

.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: -31px;
  background: url(../images/left.png) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .bx-wrapper .bx-prev {
    left: 0;
  }
}

.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  opacity: 0.7;
}

.bx-wrapper .bx-next {
  right: -30px;
  background: url(../images/right.png) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .bx-wrapper .bx-next {
    right: 0;
  }
}

.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  opacity: 0.7;
}

.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    outline: 0;
    width: 70px;
    height: 70px;
    text-indent: -9999px;
    z-index: 9999;
}

@media screen and (max-width: 768px) {
  .bx-wrapper .bx-controls-direction a {
    width: 25px;
    height: 25px;
  }
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(../images/controls.png) -86px -11px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(../images/controls.png) -86px -44px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

.bxslider {
  margin: 0 calc((100% - 980px)/2);
}

@media screen and (max-width: 768px) {
  .bxslider {
    margin: 0;
  }
}

.bxslider li {
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .bxslider li {
    padding: 0 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
  }
}

.bx-controls {
  width: 960px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .bx-controls {
    width: 100%;
  }
}

.bxslider li a {
  display: block;
  position: relative;
}

.bx-wrapper a:before {
  content: '';
  width: 100%;
  height: 100%;
  border: 1px solid #dadada;
   position: absolute;
   left: 0;
   top: 0;
   box-sizing: border-box;
   z-index: 8;
}
@media screen and (max-width: 768px) {
  .bx-wrapper a:before{
    border:5px solid #fff;
  }
}

.load {
  width: 100%;
  height: 100vh;
  background: url(../images/load.png) center center no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  z-index: 99999999999999999;
}

@media screen and (max-width: 768px) {
  .load {
    background: url(../images/load_sp.png) center center no-repeat;
    background-size: cover;
  }
}

.load__center {
  font-size: 4.2rem;
  font-family: "Hammersmith One", sans-serif;
  letter-spacing: 0.01rem;
  color: #fff;
  position: absolute;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .load__center {
    font-size: 2.2rem;
    white-space: normal;
    line-height: 26px;
  }
}

.load__center:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: calc((100% - 630px)/2);
  background-color: #ffffff;
  -webkit-animation-name: strike-left;
          animation-name: strike-left;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media screen and (max-width: 768px) {
  .load__center:before {
    width: calc((100% - 170px)/2);
  }
}

.load__center:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  height: 1px;
  width: calc((100% - 630px)/2);
  background-color: #ffffff;
  -webkit-animation-name: strike-right;
          animation-name: strike-right;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media screen and (max-width: 768px) {
  .load__center:after {
    width: calc((100% - 170px)/2);
  }
}

.load__top {
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 0.01rem;
  font-family: "Hammersmith One", sans-serif;
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .load__top {
    font-size: 1.8rem;
    padding-top: 20px;
  }
}

@-webkit-keyframes strike-right {
  0% {
    right: -35%;
  }
  100% {
    right: 0%;
  }
}

@keyframes strike-right {
  0% {
    right: -35%;
  }
  100% {
    right: 0%;
  }
}

@-webkit-keyframes strike-left {
  0% {
    left: -35%;
  }
  100% {
    left: 0%;
  }
}

@keyframes strike-left {
  0% {
    left: -35%;
  }
  100% {
    left: 0%;
  }
}

.c-tt1__name {
  font-size: 4rem;
  font-family: "Hammersmith One", sans-serif;
  letter-spacing: 0.01rem;
  color: #0048AA;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .c-tt1__name {
    font-size: 2.4rem;
  }
}

.c-tt1__sub {
  font-size: 1.4rem;
  color: #0048AA;
  font-weight: bold;
  letter-spacing: 0.01rem;
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  .c-tt1__sub {
    margin-left: 7px;
  }
}

.c-tt2 {
  font-size: 2.2rem;
  color: #D56200;
  letter-spacing: 0.01rem;
  font-family: "Hammersmith One", sans-serif;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .c-tt2 {
    font-size: 1.6rem;
  }
}

.c-tt3 {
  padding-bottom: 10px;
  border-bottom: 1px solid #0048AA;
}

@media screen and (max-width: 768px) {
  .c-tt3 {
    padding-bottom: 7px;
  }
}

.c-tt3__name {
  font-size: 2.4rem;
  font-family: "Hammersmith One", sans-serif;
  letter-spacing: 0.01rem;
  color: #0048AA;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .c-tt3__name {
    font-size: 1.8rem;
  }
}

.c-tt3__sub {
  font-size: 1.4rem;
  color: #0048AA;
  font-weight: bold;
  letter-spacing: 0.01rem;
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  .c-tt3__sub {
    margin-left: 7px;
  }
}

.c-pagetitle {
  padding-top: 155px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .c-pagetitle {
    padding-top: 50px;
  }
}

.c-pagetitle__name {
  font-size: 3.0rem;
  color: #2f5fb1;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1;
/*  text-shadow: 0 0 6px rgba(0, 0, 0, 0.56), 0 0 6px rgba(0, 0, 0, 0.56);*/
  display: block;
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-pagetitle__name {
    font-size: 2.4rem;
  }
}

.c-pagetitle__name:after {
  content: '';
  position: absolute;
  top: 15px;
  right: auto;
  height: 1px;
  width: 1000%;
  background-color: #2f5fb1;;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .c-pagetitle__name:after {
    top: 20px;
  }
}

.c-pagetitle__sub {
  font-size: 1.2rem;
  font-family: "Hammersmith One", sans-serif;
  letter-spacing: 0.05rem;
  color: #2f5fb1;
  display: block;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .c-pagetitle__sub {
    margin-top: 5px;
  }
}

.c-pagetitle--company .c-pagetitle__name:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  height: 1px;
  width: calc((100% - 175px)/2);
  background-color: #2f5fb1;
}

@media screen and (max-width: 768px) {
  .c-pagetitle--company .c-pagetitle__name:before {
    top: 20px;
    width: calc((100% - 150px)/2);
  }
}

.c-pagetitle--contact .c-pagetitle__name:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  height: 1px;
  width: calc((100% - 230px)/2);
  background-color: #2f5fb1;
}

@media screen and (max-width: 768px) {
  .c-pagetitle--contact .c-pagetitle__name:before {
    top: 20px;
    width: calc((100% - 180px)/2);
  }
}

.c-pagetitle--policy .c-pagetitle__name:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  height: 1px;
  width: calc((100% - 340px)/2);
  background-color: #2f5fb1;
}

@media screen and (max-width: 768px) {
  .c-pagetitle--policy .c-pagetitle__name:before {
    top: 20px;
    width: calc((100% - 275px)/2);
  }
}

.c-pagetitle--notfound .c-pagetitle__name:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  height: 1px;
  width: calc((100% - 290px)/2);
  background-color: #2f5fb1;
}

@media screen and (max-width: 768px) {
  .c-pagetitle--notfound .c-pagetitle__name:before {
    top: 20px;
    width: calc((100% - 240px)/2);
  }
}

.c-pagetitle--news-export .c-pagetitle__name:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  height: 1px;
  width: calc((100% - 250px)/2);
  background-color: #2f5fb1;
}

@media screen and (max-width: 768px) {
  .c-pagetitle--news-export .c-pagetitle__name:before {
    top: 20px;
    width: calc((100% - 210px)/2);
  }
}

.c-pagetitle--product .c-pagetitle__name:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  height: 1px;
  width: calc((100% - 175px)/2);
  background-color: #2f5fb1;
}

@media screen and (max-width: 768px) {
  .c-pagetitle--product .c-pagetitle__name:before {
    top: 20px;
    width: calc((100% - 145px)/2);
  }
}

.c-tt4 {
  font-size: 2.4rem;
  font-family: "Hammersmith One", sans-serif;
  letter-spacing: 0.01rem;
  color: #0D0D0D;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .c-tt4 {
    font-size: 1.8rem;
  }
}

.c-tt6 {
  font-size: 1.6rem;
  color: #0048AA;
  letter-spacing: 0.01rem;
  font-weight: bold;
}

.c-tt7 {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.01rem;
  line-height: 38px;
  color: #0D0D0D;
}

@media screen and (max-width: 768px) {
  .c-tt7 {
    font-size: 2rem;
    line-height: 22px;
  }
}

.c-text1 {
  font-size: 1.4rem;
  letter-spacing: 0.01rem;
  line-height: 24px;
  color: #0D0D0D;
}

@media screen and (max-width: 768px) {
  .c-text1 {
    font-size: 1.2rem;
    line-height: 19px;
  }
}

.c-text2 {
  font-size: 1.4rem;
  letter-spacing: 0.01rem;
  line-height: 24px;
  color: #0D0D0D;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-text2 {
    font-size: 1.2rem;
  }
}

.c-text3 {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01rem;
  line-height: 15px;
  color: #0048AA;
}

.c-text3--style1 a {
  color: #767676;
}

.c-text4 {
  font-size: 1.2rem;
  letter-spacing: 0.01rem;
  line-height: 24px;
  color: #0D0D0D;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.c-btn1 {
  width: 238px;
  line-height: 46px;
  background-color: #0048AA;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.01rem;
  display: block;
  border: 3px solid #0048AA;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .c-btn1 {
    width: 177px;
    line-height: 34px;
    font-size: 1.4rem;
  }
}

.c-btn1:hover {
  background-color: #fff;
  color: #0048AA;
}

.c-btn1 span.fas {
  margin-right: 10px;
}

.c-btn1--style1 {
  width: 275px;
}

@media screen and (max-width: 768px) {
  .c-btn1--style1 {
    width: 215px;
  }
}

.c-mainvisual {
    height: 260px;
    width: 100%;
    background-color: #fdfcfc;
}

@media screen and (max-width: 768px) {
  .c-mainvisual {
    height: 150px;
    margin-top: 50px;
  }
}

.c-mainvisual--company {
 /* background-image: url(../images/mainvisual@venoracircle.com);*/
  background-size: cover;
  background-position: center;
}

.c-mainvisual--contact {
/*  background-image: url(../images/mainvisual@venoracircle.com);*/
  background-size: cover;
  background-position: center;
}

.c-mainvisual--policy {
/*  background-image: url(../images/mainvisual@venoracircle.com);*/
  background-size: cover;
  background-position: center;
}

.c-mainvisual--notfound {
 /* background-image: url(../images/mainvisual@venoracircle.com);*/
  background-size: cover;
  background-position: center;
}

.c-mainvisual--news-export {
/*  background-image: url(../images/main-news-export@venoracircle.com);*/
  background-size: cover;
  background-position: center;
}

.c-mainvisual--news-import {
/*  background-image: url(../images/main-news-import@venoracircle.com);*/
  background-size: cover;
  background-position: center;
}

.c-mainvisual--product {
/*  background-image: url(../images/mainvisual@venoracircle.com);*/
  background-size: cover;
  background-position: center;
}

.c-breadcrumb {
  margin-top: 15px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .c-breadcrumb {
    margin-bottom: 35px;
  }
}

.c-breadcrumb li {
  display: inline;
  font-size: 1rem;
  color: #9A9A9A;
  letter-spacing: 0.01rem;
}

.c-breadcrumb li a {
  color: #9A9A9A;
  text-decoration: underline;
}

.c-breadcrumb li a:hover {
  text-decoration: none;
}

.c-breadcrumb li + li:before {
  padding: 1px;
  color: #9A9A9A;
  content: ">";
}

.c-rowstext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 940px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .c-rowstext {
    width: auto;
    padding: 0;
  }
}

.c-rowstext dt {
  font-size: 3rem;
  font-family: "Hammersmith One", sans-serif;
  letter-spacing: 0.01rem;
  color: #D56200;
  margin-right: 20px;
}

.c-rowstext dd {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.01rem;
  line-height: 24px;
  color: #D56200;
}

@media screen and (max-width: 768px) {
  .c-rowstext dd {
    font-size: 1.4rem;
    line-height: 17px;
  }
}

.c-table1 {
  border: 1px solid #D0D0D0;
  width: 920px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .c-table1 {
    width: 100%;
  }
}

.c-table1 table {
  border-collapse: collapse;
  width: 100%;
}

.c-table1 th {
  width: 200px;
  font-size: 1.4rem;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
  line-height: 24px;
  font-weight: normal;
  text-align: left;
  padding: 14px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F8F8F8;
}

@media screen and (max-width: 768px) {
  .c-table1 th {
    width: 100%;
    display: block;
    padding: 10px;
    font-size: 1.2rem;
    line-height: 19px;
  }
}

.c-table1 td {
  width: 720px;
  font-size: 1.4rem;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
  line-height: 24px;
  font-weight: normal;
  text-align: left;
  padding: 14px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .c-table1 td {
    width: 100%;
    display: block;
    font-size: 1.2rem;
    padding: 10px;
    line-height: 19px;
  }
}

.c-list1__item {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .c-list1__item {
    margin-bottom: 20px;
  }
}

.c-listdec {
  padding-left: 40px;
  padding-right: 30px;
  margin-top: 17px;
}

@media screen and (max-width: 768px) {
  .c-listdec {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 8px;
  }
}

.c-listdec li {
  font-weight: normal;
  margin-bottom: 5px;
  line-height: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #0D0D0D;
}

@media screen and (max-width: 768px) {
  .c-listdec li {
    margin-bottom: 0px;
    font-size: 1.2rem;
  }
}

.c-listdec li:before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #0D0D0D;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
}

.c-list2 {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .c-list2 {
    padding: 0 10px;
    margin-top: 10px;
  }
}

.c-list2 li {
  margin-bottom: 6px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .c-list2 li {
    font-size: 1.2rem;
    line-height: 15px;
  }
}

.c-nav-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-nav-brand li {
  width: 305px;
  line-height: 80px;
  border: 1px solid #D8D8D8;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .c-nav-brand li {
    width: 32%;
    margin-bottom: 10px;
  }
}

.c-nav-brand li a {
  display: block;
}

.c-nav1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .c-nav1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.c-nav1__text {
  width: 490px;
  margin-right: 70px;
}

@media screen and (max-width: 768px) {
  .c-nav1__text {
    width: 100%;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .c-nav1__img {
    padding: 0 10px;
    margin-bottom: 18px;
  }
}

.c-nav1__img img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .c-nav1__img img {
    width: 100%;
  }
}

.c-nav2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-nav2 li {
  width: 295px;
  margin-right: 17px;
  border: 1px solid #D0D0D0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .c-nav2 li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 10px;
  }
}

.c-nav2 li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .c-nav2 li:nth-child(3n) {
    margin-right: 2%;
  }
}

@media screen and (max-width: 768px) {
  .c-nav2 li:nth-child(2n) {
    margin-right: 0;
  }
}

.c-nav2 li a {
  display: block;
}

.c-nav2__photo {
  width: 100%;
  height: 150px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .c-nav2__photo {
    height: 120px;
  }
}

@media screen and (max-width: 500px) {
  .c-nav2__photo {
    height: 90px;
  }
}

@media screen and (max-width: 400px) {
  .c-nav2__photo {
    height: 80px;
  }
}

.c-nav2__photo img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-nav2__tt {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
  line-height: 20px;
  margin-bottom: 5px;
}

.c-nav2__des, .c-nav2__des p,  .c-nav2__des h1, .c-nav2__des h2, .c-nav2__des h3{
  font-size: 1.2rem;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
  line-height: 20px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
}

.c-nav2__content {
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .c-nav2__content {
    padding: 10px 8px;
  }
}

.c-nav3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-nav3 li {
  width: 220px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #D8D8D8;
  padding: 0 15px 15px;
}

@media screen and (max-width: 768px) {
  .c-nav3 li {
    width: 49%;
    margin-bottom: 10px;
    padding: 0 8px 15px;
  }
}

.c-nav3 li a {
  display: block;
}

.c-nav3 li p {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01rem;
  line-height: 18px;
  color: #0D0D0D;
}

.c-nav3__img {
  line-height: 90px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-nav3__img {
    line-height: 85px;
  }
}

.c-nav4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-nav4 li {
  width: 220px;
  margin-right: 13px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .c-nav4 li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 10px;
  }
}

.c-nav4 li:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .c-nav4 li:nth-child(2n) {
    margin-right: 0;
  }
}

.c-nav4__photo {
  margin-bottom: 10px;
}

.c-nav4__photo img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .c-nav4__photo img {
    width: 100%;
  }
}

.c-nav4__tt {
  font-size: 1.4rem;
  color: #0D0D0D;
  font-weight: bold;
  letter-spacing: 0.01rem;
  line-height: 20px;
  margin-bottom: 5px;
}

.c-nav4 .c-text3--style1 {
  margin-top: 4px;
}

.c-form {
  width: 920px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .c-form {
    width: auto;
  }
}

.c-form .c-btn1{
 border-radius: 0;
 background-color: #0048AA;
 position: relative;
}

.c-form .c-btn1:hover{
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .c-form .c-btn1 {
    width: 95%;
    margin: 0 auto;
  }
}

input[type="submit"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    box-sizing: border-box;
    cursor: pointer;
}

.c-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .c-radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-radio__en {
  font-family: "Roboto", sans-serif;
  margin-left: 8px;
}

.c-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: auto;
}

.c-radio input[type="radio"] + .wpcf7-list-item-label {
  margin-right: 18px;
  position: relative;
  font-size: 1.4rem;
  color: #000;
  letter-spacing: 0.01rem;
  cursor: pointer;
  line-height: 15px;
  margin-bottom: 10px;
  padding-left: 22px;
  display: block;
}

@media screen and (max-width: 768px) {
  .c-radio input[type="radio"] + .wpcf7-list-item-label {
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

.c-radio span.last input[type="radio"] + .wpcf7-list-item-label {
  margin-bottom: 0;
}

.c-radio input[type="radio"] + .wpcf7-list-item-label:before {
  content: '';
  border-radius: 100%;
  display: inline-block;
  border: 1px solid #727272;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #FAFAFA;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .c-radio input[type="radio"] + .wpcf7-list-item-label:before {
    margin-right: 4px;
  }
}

.c-radio input[type="radio"]:checked + .wpcf7-list-item-label:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #000;
  top: 50%;
  left: 3px;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-radio span.wpcf7-list-item{
  margin: 0;
}

@media screen and (max-width: 768px){
  span.wpcf7-list-item {
      display: flex!important;
  }
}

.c-rows1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #D0D0D0;
  border-top: 0;
  border-bottom: 0;
}

@media screen and (max-width: 768px) {
  .c-rows1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
  }
}

.c-rows1__st1 {
  border-top: 1px solid #D0D0D0;
}

.c-rows1__st2 {
  border-bottom: 1px solid #D0D0D0;
}

.c-rows1__left {
  width: 290px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 15px;
  line-height: 15px;
  background-color: #F8F8F8;
}

@media screen and (max-width: 768px) {
  .c-rows1__left {
    width: 100%;
    padding: 4px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-rows1__left__jp {
  font-size: 1.4rem;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
}

@media screen and (max-width: 768px) {
  .c-rows1__left__jp {
    font-size: 1.2rem;
    margin-right: 10px;
  }
}

.c-rows1__left__en {
  font-size: 1.2rem;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
}

.c-rows1__left span {
  margin-left: 10px;
  font-weight: 500;
  color: #D56200;
}

@media screen and (max-width: 768px) {
  .c-rows1__left span {
    margin-left: 3px;
  }
}

.c-rows1__right {
  width: 630px;
  padding: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.01rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #0D0D0D;
}

@media screen and (max-width: 768px) {
  .c-rows1__right {
    width: 100%;
    padding: 15px 10px;
  }
}

.c-rows1__right input {
  width: 400px;
  height: 40px;
  border: 1px solid #EDEDED;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #FCFCFC;
  padding: 10px;
  line-height: 1.5;
  color: #0D0D0D;
  -webkit-appearance: none;
 -moz-appearance: none;
}

@media screen and (max-width: 768px) {
  .c-rows1__right input {
    width: 100%;
  }
}

.c-rows1__right textarea {
  width: 520px;
  height: 230px;
  border: 1px solid #EDEDED;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  line-height: 1.5;
  color: #0D0D0D;
  background-color: #FCFCFC;
    -webkit-appearance: none;
 -moz-appearance: none;
}

@media screen and (max-width: 768px) {
  .c-rows1__right textarea {
    width: 100%;
    height: 210px;
  }
}

.c-rows1__right__text {
  font-size: 1.2rem;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
  margin-top: 15px;
  margin-bottom: 5px;
}

.c-rows1__right__text span {
  font-family: "Roboto", sans-serif;
  margin-left: 8px;
  
}

@media screen and (max-width: 768px) {
  .c-rows1__right__text span {
    margin-left: 0;
    margin-top: 2px;
  display: block;
  }
}

.c-rows1__alert {
  color: #D56200;
  font-weight: bold;
  margin-top: 10px;
  font-size: 1.2rem;
}

.c-rows1__alert--bottom {
  width: 800px;
  margin: 25px auto 0;
  border: 1px solid #D56200;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 20px;
}

@media screen and (max-width: 768px) {
  .c-rows1__alert--bottom {
    width: auto;
    padding: 10px;
  }
}

::-webkit-input-placeholder {
  color: #D1D1D1;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #D1D1D1;
  opacity: 1;
}

::placeholder {
  color: #D1D1D1;
  opacity: 1;
}

.c-checkbox {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

@media screen and (max-width: 768px) {
  .c-checkbox {
    text-align: left;
    margin-top: 50px;
    display: block;
  }
}

.c-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.c-checkbox input[type="checkbox"] + .wpcf7-list-item-label {
  position: relative;
  font-size: 1.4rem;
  color: #000;
  letter-spacing: 0.01rem;
  cursor: pointer;
  line-height: 22px;
}

.c-checkbox input[type="checkbox"] + .wpcf7-list-item-label:before {
  content: '';
  background: #EDEDED;
  border-radius: 2px;
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
  top: -1px;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .c-checkbox input[type="checkbox"] + .wpcf7-list-item-label:before {
    margin-right: 4px;
  }
}

.c-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label:before {
  background-color: #D0D0D0;
}

.c-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 3px;
  background: transparent;
  top: 46%;
  left: 4px;
  border: 3px solid #0D0D0D;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}

.ie .c-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  top: 36%;
}

@media screen and (max-width: 768px) {
  .c-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    top: 42%;
  }
}

.c-checkbox a {
  text-decoration: underline;
  color: #0D0D0D;
  font-size: 1.4rem;
}

.c-checkbox span.wpcf7-list-item{
  margin: 0;
}

/*============================TOP====================================*/
.top {
    padding-top: 65px;
}

@media screen and (max-width: 768px) {
  .top {
    padding-top: 50px;
  }
}

.top__bg {
  width: 100%;
  height: 667px;
/*  background: url(../images/bg-top.png) center center no-repeat;*/
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .top__bg {
    display: none;
  }
}

.top__slider {
  margin-top: 40px;
  margin-bottom: 60px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top__slider {
    margin-top: 0;
    padding-top: 20px;
    background: url(../images/bg-top_sp.png) center center no-repeat;
    background-size: cover;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}

.top__brand {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .top__brand {
    margin-bottom: 30px;
  }
}

.top__brand .c-nav-brand {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .top__brand .c-nav-brand {
    margin-top: 20px;
  }
}

.top__intro {
  padding: 60px 0;
  background-color: #FCF9F2;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .top__intro {
    padding: 40px 0;
    margin-bottom: 40px;
  }
}

.top__intro .c-nav1 {
  margin-top: 25px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .top__intro .c-nav1 {
    margin-top: 0;
    margin-bottom: 30px;
  }
}

.top__intro .c-nav1__text .c-tt2 {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .top__intro .c-nav1__text .c-tt2 {
    margin-top: 13px;
  }
}

.top__intro .c-nav1__text .c-text2 {
  margin-top: 6px;
}

@media screen and (max-width: 768px) {
  .top__intro .c-nav1__text .c-text2 {
    margin-top: 10px;
  }
}

.top__rows {
  width: 920px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .top__rows {
    width: auto;
    margin: 0 10px;
  }
}

.top__news .c-tt1 {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .top__news .c-tt1 {
    margin-bottom: 20px;
  }
}

.top__news .c-nav2 {
  margin-top: 20px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .top__news .c-nav2 {
    margin-bottom: 30px;
    margin-top: 10px;
  }
}

.top__news .c-nav2 li:nth-child(4){
  display: none;
}

@media screen and (max-width: 768px) {
  .top__news .c-nav2 li:nth-child(4){
    display: block;
  }
}

.top__news .c-btn1 {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .top__news .c-btn1 {
    margin-bottom: 40px;
  }
}

.c-contact {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .c-contact {
    margin-top: 40px;
  }
}

.c-contact__box {
  width: 880px;
  border: 1px solid #0048AA;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 32px 40px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .c-contact__box {
    width: auto;
    margin: 20px 10px 40px;
    padding: 30px 10px;
  }
}

.c-contact__box__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .c-contact__box__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}

.c-contact__box__top dt,
.c-contact__box__top dd {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .c-contact__box__top dt,
  .c-contact__box__top dd {
    width: 100%;
    text-align: center;
    display: inline-block;
  }
}

.c-contact__box__top a {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .c-contact__box__top a {
    margin-bottom: 8px;
  }
}

.c-contact__box__top img {
  vertical-align: inherit;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .c-contact__box__top img {
    margin-right: 5px;
  }
}

.c-contact__box__top__text {
  font-size: 2.8rem;
  color: #0048AA;
  font-family: "Hammersmith One", sans-serif;
  letter-spacing: 0.01rem;
}

@media screen and (max-width: 768px) {
  .c-contact__box__top__text {
    font-size: 2.2rem;
  }
}

.c-contact__box__top__number {
  font-size: 3.8rem;
  color: #0048AA;
  font-family: "Hammersmith One", sans-serif;
  letter-spacing: 0.01rem;
}

@media screen and (max-width: 768px) {
  .c-contact__box__top__number {
    font-size: 3rem;
  }
}

.c-contact__box__text1 {
  font-size: 1.6rem;
  color: #0048AA;
  font-weight: 500;
  letter-spacing: 0.01rem;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #EDEDED;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .c-contact__box__text1 {
    font-size: 1.4rem;
  }
}

.c-contact__box__text2 {
  text-align: center;
  margin-top: 20px;
}

.c-contact__box__text2__fs1 {
  font-size: 1.8rem;
  color: #0048AA;
  font-weight: 500;
  letter-spacing: 0.01rem;
  font-family: "Hammersmith One", sans-serif;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .c-contact__box__text2__fs1 {
    display: block;
  }
}

.c-contact__box__text2__fs2 {
  font-size: 2.4rem;
  color: #0048AA;
  font-weight: 500;
  letter-spacing: 0.01rem;
  font-family: "Hammersmith One", sans-serif;
}

.company__intro .c-nav1__text {
  width: 620px;
  margin-right: 18px;
}

@media screen and (max-width: 768px) {
  .company__intro .c-nav1__text {
    width: auto;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .company__intro .c-nav1__img {
    padding: 0;
  }
}

.company__intro .c-nav1 {
  margin-bottom: 60px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .company__intro .c-nav1 {
    margin-top: 15px;
    margin-bottom: 20px;
  }
}

.company__intro .c-rowstext {
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .company__intro .c-rowstext {
    margin-top: 15px;
  }
}

.company__depart {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .company__depart {
    margin-top: 30px;
  }
}

.company__depart .c-tt3 {
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .company__depart .c-tt3 {
    margin-top: 10px;
  }
}

.company__depart__img {
  margin-top: 25px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .company__depart__img {
    margin-top: 20px;
  }
}

.company__depart__img img {
  max-width: 100%;
}

.company__depart .c-nav3 {
  margin-top: 20px;
  margin-bottom: 55px;
}

@media screen and (max-width: 768px) {
  .company__depart .c-nav3 {
    margin-bottom: 25px;
    margin-top: 30px;
  }
}

.company__overseas {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .company__overseas {
    margin-top: 30px;
  }
}

.company__overseas .c-tt1 {
  margin-bottom: 27px;
}

@media screen and (max-width: 768px) {
  .company__overseas .c-tt1 {
    margin-bottom: 15px;
  }
}

.company__overseas .c-nav1 {
  margin-top: 17px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .company__overseas .c-nav1 {
    margin-bottom: 15px;
  }
}

.company__overseas .c-nav1__text {
  width: 600px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .company__overseas .c-nav1__text {
    width: auto;
    margin-right: 0;
  }
}

.company__overseas .c-nav1 .c-text1 {
  margin-bottom: 35px;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .company__overseas .c-nav1 .c-text1 {
    margin-bottom: 13px;
  }
}

@media screen and (max-width: 768px) {
  .company__overseas .c-nav1__img {
    padding: 0;
  }
}

.company__overseas .c-rowsnav {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .company__overseas .c-rowsnav {
    margin-bottom: 5px;
  }
}


.company__overseas .c-rowsnav .c-nav4 {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .company__overseas .c-rowsnav .c-nav4 {
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .company__overseas .container1 {
    padding: 0;
  }
}

.company__info {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .company__info {
    margin-top: 20px;
  }
}

.company__info .c-table1 {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .company__info .c-table1 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .contact__phone .c-contact__box__text2__fs1 {
    font-size: 1.2rem;
    display: inline-block;
    margin-right: 2px;
  }
  .contact__phone .c-contact__box__text2__fs2 {
    font-size: 1.6rem;
  }
  .contact__phone .c-contact__box__text2 {
    margin-top: 10px;
  }
  .contact__phone .c-contact__box {
    margin: 15px 0 35px;
    padding: 15px 10px;
  }
  .contact__phone .c-contact__box__text1 {
    font-size: 1.2rem;
  }
  .contact__phone .c-contact__box__top dt .c-contact__box__top__text {
    font-size: 2.6rem;
  }
  .contact__phone .c-contact__box__top dd .c-contact__box__top__text {
    font-size: 2rem;
  }
  .contact__phone .c-contact__box__top dd .c-contact__box__top__number {
    font-size: 2.6rem;
  }
  .contact__phone .c-contact__box__top a {
    margin-bottom: 4px;
  }
}

.contact__mail .c-text1 {
 text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .contact__mail .c-text1 {
    text-align: left;
    margin-bottom: 30px;
  }
}

.contact__mail .c-form {
  margin-top: 50px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .contact__mail .c-form {
    margin-top: 15px;
  }
}

.contact__mail span.wpcf7-not-valid-tip{
  margin-top: 5px;
}

.contact__send .c-tt1 {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .contact__send .c-tt1 {
    margin-bottom: 25px;
  }
}

.contact__send .c-text1 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.contact__send .c-btn1 {
  margin-top: 35px;
}

.policy__main .c-list1 {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .policy__main .c-list1 {
    margin-top: 30px;
  }
}

.policy__main .c-list1 .c-text1 {
  padding: 0 20px;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .policy__main .c-list1 .c-text1 {
    padding: 0 10px;
    margin-top: 8px;
  }
}

.notfound__main .c-text1 {
  margin-top: 20px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .notfound__main .c-text1 {
    margin-bottom: 25px;
  }
}

.news .c-nav2 {
  margin-top: 17px;
}

.news .c-nav2 li {
  margin-bottom: 20px;
}

.news .container1 {
  max-width: 960px;
}

.news__detail .c-tthead2 {
  margin-bottom: 20px;
}

.news__detail .c-para {
  margin: 10px 0;
}

.news__detail .c-btn1 {
  margin-top: 75px;
}

@media screen and (max-width: 768px) {
  .news__detail .c-btn1 {
    margin-top: 60px;
  }
}

.news__detail img{
  max-width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
  height: auto;
}

.c-pager, .c-pager__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pager{
  margin-top: 60px;
}

.c-pager a, .page-numbers {
  font-size: 1.6rem;
  letter-spacing: 0.01rem;
  color: #0D0D0D;
  text-decoration: underline;
  padding: 5px;
  display: block;
  font-weight: bold;
}

.c-pager a:hover {
  text-decoration: none;
}

.c-pager .current,  .c-pager a.active{
  text-decoration: none;
}

.c-pager__prev, .c-pager .prev{
  margin-right: 70px;
  text-decoration: none !important;
}

.c-pager__next, .c-pager .next {
  margin-left: 70px;
  text-decoration: none !important;
}

.c-pager-single {
  width: 624px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .c-pager-single {
    width: 100%;
  }
}

.c-pager-single a {
  font-size: 1.4rem;
  letter-spacing: 0.01rem;
  color: #0D0D0D;
  text-decoration: underline;
  display: block;
}

.c-pager-single a:hover {
  text-decoration: none;
}

.c-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-inner {
    padding-top: 65px;
  }
}

.c-content {
  width: 660px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .c-content {
    width: 100%;
    margin-right: 0;
  }
}

.sidebar {
  width: 260px;
}

@media screen and (max-width: 768px) {
  .sidebar {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.sidebar__sort {
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.sidebar__sort:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar__sort dt {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.01rem;
  padding-bottom: 15px;
  color: #0048AA;
  border-bottom: 1px solid #0048AA;
}

@media screen and (max-width: 768px) {
  .sidebar__sort dt {
    font-size: 1.4rem;
    line-height: 38px;
    padding-bottom: 0;
    border: 1px solid #0048AA;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 18px;
  }
  .sidebar__sort dt:before {
    content: url(../images/bottom.svg);
    vertical-align: bottom;
    position: absolute;
    top: 3px;
    right: 15px;
  }
}

.sidebar__sort dd {
  margin-top: 20px;
  display: block;
}

@media screen and (max-width: 768px) {
  .sidebar__sort dd {
    margin-top: 0;
    background-color: #fff;
    padding: 15px 10px 0 20px;
    border: 1px solid #0048AA;
    border-top: 0;
    display: none;
  }
}

.sidebar__sort ul li {
  margin-bottom: 18px;
}

.sidebar__sort ul li:hover {
  opacity: 0.6;
}

.sidebar__sort ul li a {
  display: inline;
  font-size: 1.6rem;
  color: #0D0D0D;
  letter-spacing: 0.05rem;
  line-height: 1;
  position: relative;
  padding-left: 22px;
}

@media screen and (max-width: 768px) {
  .sidebar__sort ul li a {
    font-size: 1.4rem;
  }
}

.sidebar__sort ul li a:before {
  content: url(../images/angle-right-solid.svg);
  vertical-align: bottom;
  margin-right: 5px;
  width: 5px;
  position: absolute;
  left: 0;
  top: 4px;
}

.sidebar__sort ul li span {
  font-size: 1.6rem;
  color: #0D0D0D;
}

@media screen and (max-width: 768px) {
  .sidebar__sort ul li span {
    font-size: 1.4rem;
  }
}

.c-tthead1, .news__detail h1 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #0048AA;
  letter-spacing: 0.01rem;
  line-height: 20px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .c-tthead1, .news__detail h1 {
    font-size: 1.8rem;
  }
}

.c-tthead2, .news__detail h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #D56200;
  letter-spacing: 0.01rem;
  line-height: 20px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .c-tthead2,, .news__detail h2 {
    font-size: 1.6rem;
  }
}

.c-tthead3, .news__detail h3 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
  line-height: 20px;
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  .c-tthead3, .news__detail h3 {
    font-size: 1.4rem;
  }
}

.c-tthead3:before, .news__detail h3:before {
  content: '';
  width: 11px;
  height: 11px;
  display: inline-block;
  background-color: #0D0D0D;
  margin-right: 3px;
}

.c-para, .news__detail p {
  font-size: 1.4rem;
  letter-spacing: 0.01rem;
  line-height: 26px;
  color: #0D0D0D;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .c-para, .news__detail p {
    font-size: 1.2rem;
    line-height: 19px;
  }
}

.news__detail .c-content ol, .c-listnum {
  padding-left: 30px;
  list-style-type: decimal;
  margin: 10px 0;
}

.news__detail .c-content ol li {
  font-size: 1.4rem;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
  margin-bottom: 8px;
}

.news__detail .c-content ul, .c-listbull {
  padding-left: 16px;
}

.news__detail .c-content ul li {
  font-size: 1.4rem;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
  margin-bottom: 8px;
}

.news__detail .c-content ul li:before {
  content: url(../images/check-circle-solid.svg);
  width: 12px;
  display: inline-block;
  margin-right: 10px;
}

.news__detail .addtoany_content{
  margin: 15px 0 30px;
}

.news__detail .addtoany_list{
  line-height: 16px!important;
}
.orange {
  color: #D56200;
  font-size: 1.4rem;
  letter-spacing: 0.01rem;
  font-weight: bold;
}

.blue {
  color: #0048AA;
  font-size: 1.4rem;
  letter-spacing: 0.01rem;
  font-weight: bold;
}

.news__detail .c-news__date {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0048AA;
  letter-spacing: 0.01rem;
  line-height: 20px;
}

@media screen and (max-width: 768px) {
  .news__detail .c-news__date {
    font-size: 1.6rem;
  }
}

.news__detail .c-news__tt {
  font-size: 2.2rem;
  color: #0D0D0D;
  font-weight: bold;
  letter-spacing: 0.01rem;
  line-height: 30px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .news__detail .c-news__tt {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}

.news__detail .c-news__image-full {
  margin: 20px 0;
}

.news__detail .c-news__image-full img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .news__detail .c-news__image-full img {
    width: 100%;
  }
}

.news__detail .c-news__image-medium {
  margin: 20px 0;
  max-width: 330px;
}

.news__detail .c-news__image-medium img {
  max-width: 100%;
}

.news__detail .c-news__link, .news__detail p a {
  font-size: 1.4rem;
  color: #0048AA;
  text-decoration: underline;
  letter-spacing: 0.1rem;
  line-height: 22px;
  display: block;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .news__detail .c-news__link, .news__detail p a {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}

.news__detail .c-news__link:hover {
  text-decoration: none;
}

/**======================Product=======================*/
@media screen and (max-width: 768px) {
  .product .c-pager {
    margin-top: 20px;
  }
}

.product__detail .c-text1 {
  margin: 22px 0;
}

@media screen and (max-width: 768px) {
  .product__detail .c-text1 {
    margin: 15px 0;
  }
}

.product__detail .li-cate:after{
  content: ',';
  display: inline-block;
}

.product__detail .li-cate:last-child:after{
  content: '.';
  display: inline-block;
}

.product__detail .c-para {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .product__detail .c-para {
    margin-top: 10px;
  }
}

.product__detail .c-tt7 {
  margin-bottom: 10px;
}

.c-list-product {
  width: 920px;
  margin: 40px auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .c-list-product {
    width: auto;
    margin: 20px 0;
    -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  }
}

.c-list-product li {
  width: 120px;
  height: 28px;
  border: 1px solid #0048AA;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 10px;
  margin-right: 13px;
}

@media screen and (max-width: 768px) {
  .c-list-product li {
    width: 32%;
    margin-right: 0;
  }
}

.c-list-product li:nth-child(7n){
  margin-right: 0;
}

.c-list-product li a {
  display: block;
  color: #0048AA;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
}

.c-list-product li.is-active a, .c-list-product li:hover a, .c-list-product li.current a {
  background-color: #0048AA;
  color: #fff;
}

.c-nav-pro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-nav-pro li {
  width: 220px;
  margin-right: 26px;
  margin-bottom: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .c-nav-pro li {
    width: 48.5%;
    margin-right: 2.5%;
    margin-bottom: 20px;
  }
}

.c-nav-pro li:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .c-nav-pro li:nth-child(2n) {
    margin-right: 0;
  }
}

.c-nav-pro li:hover {
  opacity: 0.7;
}

.c-nav-pro a {
  display: block;
  color: #0D0D0D;
}

.c-nav-pro__photo {
  margin-bottom: 20px;
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .c-nav-pro__photo {
    height: 150px;
    margin-bottom: 10px;
  }
}

.c-nav-pro__photo img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-nav-pro__cate {
  font-size: 1.2rem;
  font-weight: 500;
  color: #D56200!important;
  padding: 3px 16px;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #D56200;
  display: inline-block !important;
  margin-bottom: 5px;
}

.c-nav-pro__cate:hover {
  background-color: #D56200;
  color: #fff!important;
}

.c-nav-pro__tt {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 22px;
  color: #0D0D0D;
  letter-spacing: 0.01rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .c-nav-pro__tt {
    margin: 5px 0;
  }
}

.c-nav-pro__des {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.01rem;
}

.ie .c-nav-pro__cate {
  padding: 5px 16px 0;
}

.ie .c-list-product li a {
  line-height: 1;
  padding: 10px 0 4px;
}

.c-box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 20px;
}

@media screen and (max-width: 768px) {
  .c-box1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}

.c-box1__left {
  width: 400px;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .c-box1__left {
    width: auto;
    margin-right: 0;
  }
}

.c-box1__right {
  width: 480px;
}

@media screen and (max-width: 768px) {
  .c-box1__right {
    width: auto;
  }
}

.c-box1__photo {
  width: 400px;
  height: 400px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .c-box1__photo {
    width: auto;
    height: 355px;
    overflow: hidden;
  }
}

.c-box1__photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-box1__thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 15px 0 0;
}

@media screen and (max-width: 768px) {
  .c-box1__thumbnail {
    margin: 20px 0;
  }
}

.c-box1__thumbnail a {
  display: block;
  width: 90px;
  height: 90px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
}

.c-box1__thumbnail li {
  width: 90px;
  margin-bottom: 15px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-box1__thumbnail li {
    width: 23.5%;
    margin-bottom: 11px;
  }
}

.c-box1__thumbnail li:not(:nth-child(4n)) {
  margin-right: 13px;
}

@media screen and (max-width: 768px) {
  .c-box1__thumbnail li:not(:nth-child(4n)) {
    margin-right: 2%;
  }
}

.c-box1__thumbnail li img {
  max-width: 100%;
}

.c-box1__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .c-box1__sns {
    margin-right: 0;
  }
}

.c-box1__sns span {
  font-size: 1.6rem;
  color: #9D9D9D;
}

@media screen and (max-width: 768px) {
  .c-box1__sns span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .c-box1__sns li:last-child() a {
    padding-right: 0;
  }
}

.c-box1__sns a {
  padding: 0 12px;
}

@media screen and (max-width: 768px) {
  .c-box1__sns a {
    padding: 0 14px;
  }
}

.c-box-list {
  width: 920px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #707070;
  margin: 40px auto 60px;
}

@media screen and (max-width: 768px) {
  .c-box-list {
    width: 100%;
    margin: 20px 0;
  }
}

.c-box-list li {
  font-size: 1.4rem;
  color: #0D0D0D;
  font-weight: 500;
  letter-spacing: 0.01rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 19px;
}

@media screen and (max-width: 768px) {
  .c-box-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.2rem;
  }
}

.c-box-list li a{
  color: #0D0D0D;
  text-decoration: underline;
}

.c-box-list li a:hover{
  text-decoration: none;
}

.c-box-list__left {
  width: 300px;
  background-color: #F8F8F8;
  /*padding: 20px;*/
 padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #ffffff;
}

@media screen and (max-width: 768px) {
  .c-box-list__left {
    width: 100%;
    padding: 10px;
  }
}

.c-box-list__right {
  width: 620px;
 /* padding: 20px 20px 20px 30px;*/
   padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #f9f9f9;
}

@media screen and (max-width: 768px) {
  .c-box-list__right {
    width: 100%;
    padding: 10px;
  }
}

.c-box-list__right p {
  margin-bottom: 10px;
}

.u-bold {
  font-weight: bold;
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}



.tab-contents{
  display: none;
}
.tab-contents.current{
  display: block;
}

.product__main .c-tt3{
  margin-bottom: 40px;
}



.contact__mail div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
  border: 1px solid #D56200;
  font-size: 1.4rem;
  color: #D56200;
  padding:10px;
  text-align: center;
  box-sizing: border-box;
}

@media screen and (max-width: 768px){
  .contact__mail div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
    font-size: 1.2rem;
    padding: 5px;
  }
}
.contact__mail div.wpcf7-response-output{
    position: absolute;
    width: 920px;
   bottom: 175px;
    margin: 0 auto;
}

@media screen and (max-width: 768px){
  .contact__mail div.wpcf7-response-output{
    width: auto;
  }
}

.contact__mail span.wpcf7-not-valid-tip{
  color: #D56200;
}