@charset "utf-8";

/* CSS Document */
/*----------------------------------------------------
 * レスポンシブフォントサイズ対応
 *（タイトルなどレスポンシブ対応フォントはhtmlからのrem指定する！！
 * ウィンドウ幅 480px から 880px まで、
 * フォントサイズが 10px から 20px に流動的に変化する
 * font-size = calc(最小フォントサイズ + ((1vw - XX) * YY))
 * - XX : ViewPort の最小幅 / 100 (単位 : px)
 * - YY : 100 * フォントサイズの差 / ViewPort 幅の差 (単位 : なし)
----------------------------------------------------*/
/* 最大フォントサイズ : 幅 950px 以上は 24px */
html {
  font-size: 24px;
}

@media screen and (max-width: 880px) {
  html {
    font-size: calc(16px + ((1vw - 4.8px) * 2));
  }
}

/* 最小フォントサイズ : 幅 480px 以上は 14px */
@media screen and (max-width:480px) {
  html {
    font-size: 16px;
  }
}

/*----------------------------------------------------
  初期クリア
----------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

ul {
  list-style: none;
}

li {
  list-style-position: inside;
}

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

form label {
  cursor: pointer;
}

a {
  text-decoration: none;
}

a:link {
  color: #767676;
}

a:visited {
  color: #767676;
}

a:hover {
  color: #767676;
}

a:active {
  color: #767676;
}

img {
  border: none;
  vertical-align: bottom;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

@media screen and (min-width:769px) {
  a:hover {
    opacity: .7;
  }
}

@media screen and (max-width:768px) {
  a:active {
    opacity: .7;
  }
}

/*----------------------------------------------------
  共通設定
----------------------------------------------------*/
.fr {
  float: right;
}

.fl {
  float: left;
}

.cf::after {
  content: "";
  display: block;
  clear: both;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.imgfit {
  max-width: 100%;
  height: auto;
}

.product-mv_sp {
  display: none;
}

@media screen and (max-width:768px) {
  .fr {
    float: none;
  }

  .fl {
    float: none;
  }

  #box01 {
    margin: 30px 0;
  }

  .product-mv_pc {
    display: none;
  }

  .product-mv_sp {
    display: block;
    margin: 0 auto;
  }
}

/*----------------------------------------------------
  pc,sp切り替え
----------------------------------------------------*/
@media screen and (min-width:769px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width:768px) {
  .pc {
    display: none !important;
  }
}

/*----------------------------------------------------
  フレックスボックス(1カラム　2カラム　3カラム)
----------------------------------------------------*/
.flex_cont {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 0 -10px 20px;
}

.flex_cont_nowrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.flex_center {
  justify-content: center;
}

.flex_item_1clm {
  margin: 10px;
  width: calc(100% - 20px);
}

.flex_item_2clm {
  margin: 10px;
  width: calc(50% - 20px);
}

.flex_item_3clm {
  margin: 10px;
  width: calc(33.3% - 20px);
}

@media screen and (max-width:768px) {
  .flex_item_2clm {
    width: calc(100% - 20px);
  }

  .flex_item_3clm {
    width: calc(100% - 20px);
  }
}

/*----------------------------------------------------
  全体共通
----------------------------------------------------*/
body {
  font-family: '-apple-system', 'BlinkMacSystemFont', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', "segoe ui", '游ゴシック  Medium', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #000;
  font-size: 14px;
  line-height: 1.6;
}

#wrap {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.wrap_inner {
  max-width: 880px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.wrap_inner2 {
  max-width: 800px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

header {
  height: 220px;
  padding-top: 40px;
}

@media screen and (max-width:768px) {
  #wrap {
    margin-top: 110px;
  }

  .wrap_inner {
    width: calc(100% - 20px);
    margin: 0 auto;
  }

  .wrap_inner2 {
    width: calc(100% - 20px);
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 110px;
    padding: 10px 10px 0;
    background-color: #fff;
    border-bottom: 1px solid #d2d2d2;
  }
}

/*----------------------------------------------------
  ロゴ
 ----------------------------------------------------*/
.logo {
  position: relative;
  text-align: center;
}

.logo_txt {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .logo {
    width: calc(100% - 50px);
    line-height: 58px;
    text-align: left;
    z-index: 9999;
  }

  .logo img {
    vertical-align: middle;
  }

  .logo_txt {
    font-size: 10px;
    margin-bottom: 5px;
  }
}

/*----------------------------------------------------
  ナビゲーション(通常)
 ----------------------------------------------------*/
#nav {
  position: relative;
  padding-top: 30px;
  text-align: center;
  z-index: 9999;
}

#nav > li {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

#nav > li > a {
  border-left: 1px solid #d2d2d2;
}

#nav > li:last-child > a {
  border-right: 1px solid #d2d2d2;
}

#nav a {
  display: block;
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  padding: 5px 30px;
}

#nav .nav_child {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 200px;
  box-shadow: 2px 2px 5px #000;
}

#nav .nav_child a {
  padding: 10px;
  border-bottom: 1px solid #d2d2d2;
}

@media screen and (min-width:769px) {

  /* パンバーガーメニュー非表示 */
  .nav-btn,
  .nav_child-btn {
    display: none;
  }

  #nav > li:hover .nav_child {
    display: block;
  }
}

/*----------------------------------------------------
  ナビゲーション(スマホ)
 ----------------------------------------------------*/

@media screen and (max-width:768px) {
  #nav {
    display: none;
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 0;
    background-color: #fff;
    z-index: 999;
  }

  #nav li {
    display: block;
    width: 100%;
    padding-bottom: 0;
    position: relative;
  }

  #nav li a {
    border-right: none;
    border-bottom: 1px solid #d2d2d2;
  }

  #nav li:last-child a {
    border-right: none;
  }

  #nav a {
    width: 100%;
    text-align: center;
    padding: 15px;
  }

  #nav .nav_child {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
  }

  #nav .nav_child a {
    padding: 15px;
  }

  /* パンバーガーメニュー設定 */
  .nav-btn {
    display: block;
    position: absolute;
    right: 10px;
    top: 35px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    background-color: #fff;
    z-index: 9999;
  }

  .nav-btn > span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 2px #00123a;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 5px;
  }

  .nav-btn span:nth-child(1) {
    top: 9px;
  }

  .nav-btn span:nth-child(2) {
    top: 19px;
  }

  .nav-btn span:nth-child(3) {
    top: 29px;
  }

  .nav-btn.active span:nth-child(1) {
    top: 19px;
    left: 5px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .nav-btn.active span:nth-child(2),
  .nav-btn.active span:nth-child(3) {
    top: 19px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .nav_child-btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 51px;
    z-index: 9999;
  }

  .nav_child-btn > span {
    position: absolute;
    right: 25px;
    top: 20px;
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #00123a;
    border-right: 2px solid #00123a;
    transform: rotate(45deg);
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
  }

  .nav_child-btn.active > span {
    transform: rotate(-135deg);
  }
}

/*----------------------------------------------------
  フッタ
----------------------------------------------------*/
footer {
  text-align: center;
}

.sitemap {
  margin-top: 20px;
  text-align: center;
  padding: 5px 20px;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 20px;
}

.sitemap li {
  display: inline-block;
  border-left: 1px solid #d2d2d2;
}

.sitemap li:last-child {
  border-right: 1px solid #d2d2d2;
}

.sitemap li a {
  padding: 5px 10px;
  font-size: 12px;
}

.foot_cont {
  max-width: 600px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

.foot_logo {
  float: left;
  width: 240px;
  margin-right: 40px;
}

.add {
  float: left;
  text-align: left;
  font-size: 12px;
}

.add .bold {
  font-size: 1.3em;
  font-weight: bold;
}

.copy {
  background-color: #84cbc7;
  color: #fff;
  font-size: 10px;
  padding: 10px 20px;
  margin-top: 20px;
}

@media screen and (max-width:768px) {
  .sitemap li a {
    font-size: 10px;
    padding: 5px 5px;
  }

  .foot_logo {
    float: none;
    width: 240px;
    margin: 0 auto 20px;
  }

  .add {
    float: none;
    text-align: center;
  }
}

/*----------------------------------------------------
  topへ戻る
----------------------------------------------------*/
.scrollTop {
  height: 80px;
  background-color: #d2d2d2;
  text-align: center;
}

.scrollTop button:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}

.scrollTop button {
  font-size: 12px;
  width: 8em;
  line-height: 2;
  color: #fff;
  margin-top: 15px;
}
