@charset "UTF-8";
/*iPhone　フォームリセット
input,textarea {
  border-radius: 0;
  -webkit-appearance: none;
}
*/
* {
  box-sizing: border-box;
}

html {
  /*transition　Safari対策*/
  -webkit-font-smoothing: antialiased;
}

body {
  font: 14px/1.7 "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka,  "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000;
}

img {
  vertical-align: bottom;
}

#header {
  background-color: #ff0000;
}

.global-nav a {
  color: #fff;
  text-decoration: none;
}

.bg-gray-title span {
  background-color: #707070;
  color: #fff;
  font-size: 20px;
  padding: 5px 30px;
}

.bg-border {
  padding: 0 1em;
}
@media (max-width: 640px) {
  .bg-border {
    font-size: 14px;
    line-height: 30px;
    background-image: repeating-linear-gradient(#FAFAFA 0, #FAFAFA 30px, #fff 31px, #fff 60px);
  }
}
@media (min-width: 640px) {
  .bg-border {
    font-size: 20px;
    line-height: 50px;
    background-image: repeating-linear-gradient(#FAFAFA 0, #FAFAFA 50px, #fff 51px, #fff 100px);
  }
}

.bg-border-table_01 tr:nth-of-type(odd) th {
  background-color: #EFEFEF;
}
.bg-border-table_01 tr:nth-of-type(odd) td {
  background-color: #FAFAFA;
}

#footer {
  background-color: #F4F4F4;
}
#footer .footer-nav {
  display: flex;
  padding: 1em;
}
#footer .footer-nav ul {
  margin: auto;
  display: flex;
}
#footer .footer-nav ul li:after {
  content: "｜";
  margin: 0 2px;
}
#footer .footer-nav ul li:last-child:after {
  content: none;
}
#footer .footer-nav ul li a {
  color: #3B3B3B;
  text-decoration: none;
  transition: .2s;
}
#footer .footer-nav ul li a:hover {
  opacity: .8;
}
#footer .copy {
  background-color: #989898;
  color: #fff;
  text-align: center;
  padding: 2px;
  font-size: 12px;
}

@media (max-width: 640px) {
  #footer {
    font-size: 12px;
  }
  #footer ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  /*nav btn sp tab*/
  #nav-toggle {
    position: fixed;
    cursor: pointer;
    display: block;
    right: 16px;
    top: 10px;
    width: 48px;
    height: 48px;
    color: #fff;
    z-index: 1000;
  }

  #nav-toggle div {
    position: relative;
  }

  #nav-toggle span {
    display: block;
    position: absolute;
    background: #fff;
    height: 3px;
    width: 40px;
    left: 4px;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }

  #nav-toggle span:nth-child(1) {
    top: 12px;
  }

  #nav-toggle span:nth-child(2) {
    top: 24px;
  }

  #nav-toggle span:nth-child(3) {
    top: 36px;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 23px;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }

  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 23px;
    -webkit-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    transform: rotate(-225deg);
  }

  .open #nav-toggle span {
    background: #fff;
  }

  .global-nav {
    position: absolute;
    display: none;
    background: #ff0000;
    transition: all .2s ease-out;
    overflow-y: auto;
    right: -100vw;
    top: 0;
    padding-top: 10px;
    padding-bottom: 200px;
    width: 100%;
    z-index: 100;
    opacity: 0;
  }

  .global-nav li a {
    color: #fff;
    border-bottom: 1px solid #fff;
    display: block;
    width: 100vw;
    padding: 10px 10px;
  }

  .open .global-nav {
    right: 0;
    top: 69px;
    position: fixed;
    height: 100%;
    opacity: 1;
    display: block;
  }

  #header {
    position: fixed;
    width: 100%;
    padding: 10px;
    z-index: 999;
  }

  .main-nav-child li a {
    padding-left: 50px;
  }

  #main {
    padding-top: 70px;
  }
}
@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  #header {
    display: flex;
    width: 100%;
    padding: 27px 10px 27px;
    align-items: flex-end;
  }

  .header-inner {
    width: 100%;
  }

  .global-nav {
    display: flex;
    width: 100%;
  }
  .global-nav a {
    transition: .2s;
  }
  .global-nav a:hover {
    opacity: .8;
  }

  .main-nav {
    font-size: 15px;
    display: flex;
    justify-content: center;
    margin: auto;
  }
  .main-nav .sp {
    display: none;
  }

  .main-nav > li {
    position: relative;
  }
  .main-nav > li:after {
    content: "｜";
    color: #fff;
    margin: 0 3px;
  }
  .main-nav > li:last-child:after {
    content: none;
  }

  .main-nav-child {
    position: absolute;
    top: 24px;
    left: -10px;
    background-color: #fff;
    font-size: 14px;
    width: 150px;
    border: 1px solid #dcdcdc;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: .2s;
  }
  .main-nav-child li {
    padding: .2em .5em;
    border-bottom: 1px solid #dcdcdc;
  }
  .main-nav-child li:last-child {
    border-bottom: none;
  }
  .main-nav-child a {
    color: #3B3B3B;
    display: block;
  }

  .main-nav > li:hover .main-nav-child {
    top: 34px;
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 1000px) {
  .main-nav {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  #header {
    padding: 27px calc(50% - 650px) 27px;
  }
}
/*トップページ*/
.top-product ul {
  list-style: none;
}
.top-product ul li {
  margin-bottom: 50px;
}
.top-product ul img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 8px;
  display: block;
}
.top-product ul dt {
  font-size: 18px;
  margin-bottom: 8px;
}
.top-product ul dd {
  font-size: 12px;
  margin-bottom: 8px;
}
.top-product ul a {
  display: block;
  background-color: #4EC2FF;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  margin-bottom: 5px;
  text-align: center;
  font-weight: bold;
  transition: .2s;
}
.top-product ul a[href="#contact"] {
  background-color: #FFBB4E;
}
.top-product ul a:hover {
  opacity: .8;
}

.price-list .price-list-title {
  background-color: #FAFAFA;
  font-size: 24px;
  padding: 0 .5em;
  margin-bottom: 30px;
}
.price-list .price-list-title span {
  font-size: 18px;
}
.price-list table {
  width: 100%;
  margin-top: 20px;
}
.price-list table caption {
  border-bottom: 1px solid #707070;
  margin-bottom: 10px;
  text-align: left;
}
.price-list table tr {
  border-bottom: 1px solid #BCBCBC;
}
.price-list table tr th, .price-list table tr td {
  text-align: center;
  padding: 8px 3px 0;
}
.price-list table tr:first-of-type {
  border-bottom: none;
}
.price-list table tr:first-of-type th {
  background-color: #FAFAFA;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
  padding: 3px;
}
.price-list .note {
  font-size: 12px;
  color: #3B3B3B;
}
.price-list .flex table {
  table-layout: fixed;
}

.contact .contact-title {
  background-color: #FFBB4E;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  padding: 5px .5em;
  margin-bottom: 30px;
  border-radius: 4px;
}
.contact .contact-item {
  display: flex;
  flex-wrap: wrap;
}
.contact .contact-item > div {
  padding: 0 16px 0 0;
  margin-bottom: 10px;
}
.contact input[type="text"], .contact input[type="tel"], .contact input[type="email"], .contact textarea {
  border-radius: 0;
  -webkit-appearance: none;
  font-size: 20px;
  line-height: 1.5;
  padding: 5px 5px;
  width: 100%;
  border: 1px solid #95989A;
  border-radius: 3px;
}
.contact input[type="submit"] {
  border-radius: 0;
  -webkit-appearance: none;
  border: 0;
  background-color: #9A9A9A;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  width: 160px;
  height: 45px;
  text-align: center;
  margin: 0 auto;
  display: block;
  transition: .2s;
  border-radius: 3px;
}
.contact input[type="submit"]:hover {
  opacity: .8;
  cursor: pointer;
}
.contact th span {
  color: red;
  font-weight: bold;
}

@media (max-width: 640px) {
  .topimg .single-item {
    display: none;
  }

  .topimg-inner {
    margin: 0 auto 35px;
  }
  .topimg-inner img {
    width: 100%;
    height: auto;
  }

  .top-product {
    width: 96%;
    margin: 0 auto;
  }
  .top-product .bg-border {
    margin-bottom: 30px;
  }

  .toppage .price-list {
    width: 96%;
    margin: 0 auto;
  }

  .price-list table tbody {
    overflow-x: scroll;
  }

  .contact {
    width: 96%;
    margin: 50px auto;
  }
  .contact table, .contact tbody, .contact tr, .contact th, .contact td {
    display: block;
    width: 100%;
  }
  .contact th {
    text-align: left;
    border-bottom: 1px solid #95989A;
    margin-bottom: 10px;
  }
  .contact td {
    margin-bottom: 20px;
  }
}
@media (min-width: 640px) {
  .topimg img.sp {
    display: none;
  }

  .topimg-inner {
    max-width: 100%;
    margin: 0 auto 35px;
  }
  .topimg-inner img {
    max-width: 100%;
    height: auto;
  }

  .top-product {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 10px;
  }
  .top-product .bg-border {
    margin-bottom: 60px;
  }
  .top-product ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .top-product ul li {
    width: 48%;
  }

  .toppage .price-list {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .contact {
    max-width: 1320px;
    margin: 50px auto;
    padding: 0 10px;
  }
  .contact table th {
    width: 200px;
    padding: 15px 10px 0 50px;
    text-align: left;
    vertical-align: top;
  }
  .contact table td {
    padding: 10px 0;
  }
  .contact textarea {
    height: 200px;
  }
}
@media (min-width: 800px) {
  .top-product ul li {
    width: 32%;
  }

  .price-list .flex {
    display: flex;
    justify-content: space-between;
  }
  .price-list .flex table {
    width: 49%;
  }
}
@media (min-width: 1000px) {
  .top-product ul li {
    width: 24%;
  }

  .contact .contact-item {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1400px) {
  .top-product ul dd {
    min-height: 100px;
  }
}
.item-page {
  padding-top: 70px;
}
.item-page .item {
  margin: 0 auto 70px;
}
.item-page .item-title {
  font-size: 22px;
}
.item-page .item-title span {
  font-size: 18px;
}
.item-page .item-text a {
  display: block;
  background-color: #4EC2FF;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  margin-bottom: 5px;
  text-align: center;
  font-weight: bold;
  transition: .2s;
  padding: 5px 0;
  margin-top: 30px;
}
.item-page .item-text a[href="#contact"] {
  background-color: #FFBB4E;
}
.item-page .item-text a:hover {
  opacity: .8;
}
.item-page .item-text h3 {
  font-size: 18px;
  font-weight: bold;
}
.item-page .item-text p {
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .item-page .item {
    width: 96%;
  }
  .item-page .item-text a {
    font-size: 18px;
  }
  .item-page .img-block-01 ul, .item-page .img-block-02 ul, .item-page .img-block-03 ul {
    list-style: none;
  }
  .item-page .img-block-01 li, .item-page .img-block-02 li, .item-page .img-block-03 li {
    text-align: center;
    margin-bottom: 10px;
  }
  .item-page .img-block-01 li img, .item-page .img-block-02 li img, .item-page .img-block-03 li img {
    max-width: 100%;
    height: auto;
  }
}
@media (min-width: 640px) {
  .item-page .item {
    max-width: 1320px;
    padding: 0 10px;
  }
  .item-page .img-block-01 ul, .item-page .img-block-02 ul, .item-page .img-block-03 ul {
    list-style: none;
  }
  .item-page .img-block-01 li img, .item-page .img-block-02 li img, .item-page .img-block-03 li img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
  }
  .item-page .img-block-01 ul {
    display: grid;
    grid-template-columns: 56% 42%;
    grid-template-rows: 49% 49%;
    column-gap: 2%;
    grid-row-gap: 2%;
  }
  .item-page .img-block-01 li:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .item-page .img-block-02 ul {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-template-rows: 56% 42%;
    column-gap: 2%;
    grid-row-gap: 2%;
  }
  .item-page .img-block-02 li:first-child {
    grid-column: 1 / 3;
    grid-rows: 1 / 2;
  }
}
@media (min-width: 800px) {
  .item-page .item-inner {
    display: flex;
    justify-content: space-between;
  }
  .item-page .img-block-01, .item-page .img-block-02, .item-page .img-block-03 {
    width: 50%;
  }
  .item-page .item-text {
    width: 48%;
  }
}
@media (min-width: 1000px) {
  .item-page .img-block-01, .item-page .img-block-02, .item-page .img-block-03 {
    width: 63%;
  }
  .item-page .item-text {
    width: 35%;
  }
}
.info-page h2, .faq-page h2 {
  font-size: 22px;
}

.info {
  margin-top: 50px;
}
.info .info-title {
  font-size: 18px;
  margin-bottom: 5px;
}
.info .bg-border-table_01 {
  line-height: 30px;
}
.info table {
  width: 100%;
}
.info th {
  text-align: left;
}
.info iframe {
  width: 100%;
}
.info#info_03 div {
  font-size: 14px;
  line-height: 30px;
  background-image: repeating-linear-gradient(#FAFAFA 0, #FAFAFA 30px, #fff 31px, #fff 60px);
}
.info#info_03 div dt {
  font-weight: bold;
}
.info#info_03 p {
  margin-bottom: 30px;
}
.info#info_03 dt {
  margin-top: 30px;
}

.faq-page dl {
  margin-top: 50px;
}
.faq-page dt {
  background-color: #FFBB4E;
  color: #fff;
  font-size: 22px;
  margin-bottom: 25px;
  border-radius: 5px;
  padding: 3px 25px;
  font-weight: bold;
}
.faq-page dt:before {
  content: "Q.";
}
.faq-page dt + dd:before {
  content: "A.";
}
.faq-page dd {
  margin-bottom: 25px;
  padding: 0 25px;
}

@media (max-width: 640px) {
  .info-page, .faq-page {
    width: 96%;
    margin: 0 auto;
    padding-top: 70px;
  }

  .bg-border-table_02, .bg-border-table_01 {
    display: block;
  }
  .bg-border-table_02 tbody, .bg-border-table_02 tr, .bg-border-table_02 th, .bg-border-table_02 td, .bg-border-table_01 tbody, .bg-border-table_01 tr, .bg-border-table_01 th, .bg-border-table_01 td {
    display: block;
  }
  .bg-border-table_02 th, .bg-border-table_01 th {
    background-color: #EFEFEF;
  }
  .bg-border-table_02 th, .bg-border-table_02 td, .bg-border-table_01 th, .bg-border-table_01 td {
    padding: 5px 10px;
  }
}
@media (min-width: 640px) {
  .info-page, .faq-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 10px 0;
  }

  .wear-page h2 {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .bg-border-table_01 {
    margin-bottom: 20px;
  }
  .bg-border-table_01 th {
    width: 35%;
  }
  .bg-border-table_01 th, .bg-border-table_01 td {
    height: 30px;
    padding: 0 20px 0;
  }

  .bg-border-table_02 {
    font-size: 14px;
    line-height: 30px;
    background: linear-gradient(#FAFAFA 0, #FAFAFA 30px, #fff 31px, #fff 60px), linear-gradient(#EFEFEF 0, #EFEFEF 30px, #fff 31px, #fff 60px);
    background-size: 100% 60px,220px 60px;
    background-position: 220px 0, 0 0;
    background-repeat: repeat-y,repeat-y;
  }
  .bg-border-table_02 th {
    width: 220px;
  }
  .bg-border-table_02 th, .bg-border-table_02 td {
    padding: 0 20px 0;
  }
}
@media (min-width: 800px) {
  #info_01 .flex {
    display: flex;
    justify-content: space-between;
  }
  #info_01 table, #info_01 iframe {
    width: 49%;
  }
}
.wear-page h2 {
  font-size: 22px;
}

@media (max-width: 640px) {
  .wear-page h2 {
    width: 96%;
    margin: 0 auto;
  }
}
@media (min-width: 640px) {
  .wear-page h2 {
    max-width: 1320px;
    margin: 0 auto;
  }
}
