@charset "UTF-8";

/* reset
------------------------------------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
  display: block;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  -webkit-text-size-adjust: 100%;
  word-break:break-all;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
input[type="radio"],
input[type="checkbox"],
input[type="submit"],
input[type="button"],
label {
  cursor:pointer
}

::-webkit-input-placeholder {
  color: #666;
  opacity: .6;
}
:-moz-placeholder {
  color: #666;
  opacity: .6;
}
::-moz-placeholder {
  color: #666;
  opacity: .6;
}
:-ms-input-placeholder {
  color: #666;
  opacity: .6;
}
:placeholder-shown {
  color: #666;
  opacity: .6;
}
select::-ms-expand {
  display: none;
}

a,canvas {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
em {
  font-weight: bold;
}

/* public ----------------------------------------*/
body {
  font-family: arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}


/* module ----------------------------------------*/
/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  overflow:hidden;
}

/* align */
.align-l {
  text-align: left;
}
.align-r {
  text-align: right;
}
.align-c {
  text-align: center;
}

/* over */
.over,
a.over,
button.over {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.over:hover,
a.over:hover,
button.over:hover {
  opacity: .7;
}


/* sp-only pc-only
------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

/* btn-01
------------------------------------------------------------------*/
.btn-01,
a.btn-01 {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  background: #D08E41;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.btn-01:focus,
a.btn-01:focus {
  outline: none;
}


/* list
------------------------------------------------------------------*/
/* list-hyphen */
.list-hyphen li {
  margin-left: 1em;
  text-indent: -1em;
}
.list-hyphen li:before {
  content: "-";
  display: inline-block;
  width: 1em;
  text-indent: 0;
}

/* list-decimal */
.list-decimal {
  counter-reset: number-lv1 0;
}
.list-decimal > li:before {
  //display: inline-block;
  width: 4em;
  //counter-increment: number-lv1 1;  **1028Terms等レイアウト整理にあたり一旦コメントアウトしました。
  //content: counter(number-lv1) "." ;
}
.list-decimal > li > ol {
  counter-reset: number-lv2 0;
}
.list-decimal > li > ol > li:before {
  display: inline-block;
  width: 4em;
  //counter-increment: number-lv2 1;
  //content: counter(number-lv1) "." counter(number-lv2);
}

/* list-var */
.list-var > li .list-var-pre {
  display: inline-block;
  width: 4em;
}

/* input-number
------------------------------------------------------------------*/
.input-number {
  position: relative;
  text-align: center;
}
.input-number-count {
  font-weight: bold;
}
.input-number-plus,
.input-number-minus {
  position: absolute;
  top: 50%;
  display: block;
  color: #D08E41;
  border: 1px solid;
  border-radius: 2px;
  transform: translateY(-50%);
  cursor: pointer;
}
.input-number-plus {
  left: 0;
}
.input-number-minus {
  right: 0;
}
.input-number-plus:before,
.input-number-plus:after,
.input-number-minus:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  border-top: 2px solid;
}
.input-number-plus:after {
  transform: rotate(90deg);
}
@media screen and (min-width: 769px) {
  .input-number-count {
    font-size: 24px;
  }
  .input-number-plus,
  .input-number-minus {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .input-number-count {
    font-size: 2.4rem;
  }
  .input-number-plus,
  .input-number-minus {
    width: 2.4rem;
    height: 2.4rem;
  }
}


/* input-search
------------------------------------------------------------------*/
.input-search {
  position: relative;
  width: 100%;
  color: #D08E41;
  border: 1px solid #D08E41;
  background: #fff;
}
.input-search i {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  pointer-events: none;
}
.input-search i:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/icon-search.png) no-repeat center center / contain;
}
.input-search input {
  width: 100%;
  margin: 0;
  color: inherit;
  font-size: inherit;
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input-search :focus {
  outline: none;
}
@media screen and (min-width: 769px) {
  .input-search i {
    width: 16px;
    height: 16px;
  }
  .input-search input {
    height: 44px;
    padding: 0 35px 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .input-search i {
    width: 1.6rem;
    height: 1.6rem;
  }
  .input-search input {
    height: 6rem;
    padding: 0 4rem 0 1rem;
  }
}

/* input-select
------------------------------------------------------------------*/
.input-select {
  position: relative;
  width: 100%;
  color: #D08E41;
  border: 1px solid #D08E41;
  background: #fff;
}
.input-select i {
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  pointer-events: none;
}
.input-select i:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(45deg);
}
.input-select select {
  width: 100%;
  margin: 0;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input-select :focus {
  outline: none;
}
@media screen and (min-width: 769px) {
  .input-select i {
    width: 5px;
    height: 5px;
  }
  .input-select select {
    height: 44px;
    padding: 0 0 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .input-select i {
    width: .5rem;
    height: .5rem;
  }
  .input-select i:before {
    border-width: .2rem;
  }
  .input-select select {
    height: 6rem;
    padding: 0 0 0 1rem;
  }
}


/* gmap
------------------------------------------------------------------*/
.gmap {
  position: relative;
  width: 100%;
}
.gmap > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* slider
------------------------------------------------------------------*/
.js-slider {
  display:none;
}
.js-slider.slick-initialized {
  display: block;
}
.js-slider-wrap :focus {
  outline: none;
}
.js-slider-control-dots {
  display: flex;
  justify-content: center;
}
.js-slider-control-dots button {
  display: block;
  line-height: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

/* terms/faq/privacy add
-------------------------------------------------------------*/
h4.static{font-weight:bold; font-size:20px; margin-top:10px;}

