@charset "utf-8";

/* = Color
-------------------------------------------------------------- */
:root {
  --color-text: #000;
  --color-text-muted: #555;
  --color-text-caption: #777;
  --color-text-small: #888;
  --color-text-light: #ADADAD;
  --color-text-dark: #310b00;
  --color-text-red: #A64638;
  --color-white: #fff;
  --color-gray: #707070;
  --color-link: #0066cc;

  --color-bg: #F5F3F0;
  --color-bg-gray: #eaeaea;
  --color-bg-gray-light: #e1e1e1;
  --color-bg-gray-lighter: #f1f1f1;
  --color-bg-warm: #f0edea;
  --color-bg-cream: #fdf9f5;
  --color-bg-table: #efefef;
  --color-bg-input: #f9f9f9;
  --color-bg-surface: #ccc;

  --color-primary: #000;
  --color-black: #000;

  --color-accent: #3a625c;
  --color-accent-red: #A64638;

  --color-border: #ddd;
  --color-border-light: #eee;
  --color-border-gray: #ccc;
  --color-border-table: #dcdddd;
  --color-border-dark: #1e1e1e;

  --color-gray: #adadad;
  --color-mv-overlay: #adadad;
  --color-bg-cream-overlay: rgba(242, 231, 216, 0.75);
  --color-bg-cream-overlay2: rgba(242, 231, 216, 0.45);

  --shadow-wrapper: 0 0 10px rgba(30, 30, 30, 0.3);
  --shadow-input: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
  --color-marker: rgba(255, 167, 0, 0.7);

  --font-gothic: "Zen Kaku Gothic New", sans-serif;
  --font-mincho: "Zen Old Mincho", serif;
  --font-serif: "Crimson Pro", serif;
}

/* = Bugfix For Android
-------------------------------------------------------------- */
* {
  max-height: 999999px;
}

/* = Init
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
body,
input,
textarea {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  font-family: var(--font-gothic);
  color: var(--color-text);
}
body {
  background: var(--color-white);
}

img,
iframe {
  max-width: 100%;
}

/* = reset element style
-------------------------------------------------------------- */
ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* = Anchor
-------------------------------------------------------------- */
a {
  color: inherit;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}
a:focus {
  outline: none;
}
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

a.sec-btn,
a.sec-btn.is-pressed,
a.sec-btn:hover,
a.sec-btn:active,
a.sec-btn:focus {
  opacity: 1;
}

a.underline {
  text-decoration: underline;
}

a.img-box {
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
  transition: 0.35s opacity;
  transition: opacity ease 0.2s;
}

a.tel,
.tel a {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  a.tel,
  .tel a {
    pointer-events: none;
  }
}

/* = Table
-------------------------------------------------------------- */
table {
  border-collapse: separate;
  border-spacing: 0;
  empty-cells: show;
  border-top: 1px solid var(--color-border-table);
  border-right: none;
  border-bottom: none;
  border-left: 1px solid var(--color-border-table);
  margin: 20px 0;
  width: 100%;
}
td,
th {
  padding: 10px;
  border-top: none;
  border-right: 1px solid var(--color-border-table);
  border-bottom: 1px solid var(--color-border-table);
  border-left: none;
}
th {
  background: var(--color-bg-table);
}
figure {
  margin: 0;
}

/* = Input
-------------------------------------------------------------- */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea {
  background: var(--color-bg-input);
  border: 1px solid var(--color-border-gray);
  box-shadow: var(--shadow-input);
  -moz-box-shadow: var(--shadow-input);
  -webkit-box-shadow: var(--shadow-input);
  padding: 0.2em 0.5em;
}

input:hover,
input:focus,
textarea {
  outline: none;
}
input[type="radio"]:hover,
input[type="submit"]:hover {
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

/* = Font
-------------------------------------------------------------- */
.font-gothic {
  font-family: var(--font-gothic);
}

.font-mincho {
  font-family: var(--font-mincho);
}

.font-serif {
  font-family: var(--font-serif);
}

/* = Common Class
-------------------------------------------------------------- */
.img-box {
  font-size: 0;
  line-height: 1;
  text-align: center;
}

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

@media screen and (max-width: 767px) {
  html {
    font-size: 70%;
  }
  .pc-only {
    display: none !important;
  }
}

.left {
  float: left;
}
.right {
  float: right;
}
.clearfix {
  min-height: 1px;
}
.clearfix::after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  .left,
  .right {
    float: none;
  }
}
