@charset "UTF-8";

/* reset style */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote, th, td, input, select, textarea, button {
  margin: 0;
  padding: 0;
}
a, a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  outline: none;
}
ul, li {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th {
  text-align: left;
}
figure {
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

/* section title */
.section_title {
  font-size: 56px;
  font-family: 'Playfair Display', serif;
}
.section_subtitle {
  font-size: 3.5vw;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
}
.lead {
  font-family: 'Playfair Display', serif;
}

/* font size */
.font_56 {
  font-size: 56px;
}
.font_48 {
  font-size: 48px;
}
.font_40 {
  font-size: 40px;
}
.font_32 {
  font-size: 32px;
}
.font_28 {
  font-size: 28px;
}
.font_24 {
  font-size: 24px;
}
.font_22 {
  font-size: 22px;
  border-bottom: solid 3px #fff;
  padding-bottom: 6px;
  font-weight: bold;
  display: inline-block;
}
.font_18 {
  font-size: 18px;
}
.font_14 {
  font-size: 14px;
}
.font_13 {
  font-size: 13px;
}
.font_12 {
  font-size: 12px;
}
.font_11 {
  font-size: 11px;
}
.font_10 {
  font-size: 10px;
}

/* line */
.line_p {
  line-height: 2;
}
.line_ex {
  line-height: 2.4;
}

/* align */
.align_center {
  text-align: center;
}

/* word breaks */
.break_on_sp {
  display: none;
}
.break_off_sp {
  display: block;
}

/* all,html,body,layouts */
* {
  font-size: 16px;
  color: #fff;
  box-sizing: border-box;
}
html {
  background: #222;
  height: 100%;
}
body {
  font-family: "ヒラギノ角ゴ Pro", "Meiryo UI", "メイリオ", "Meiryo", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  min-height: 100vh;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}

/* selection color */
::selection {
  background: #444; /* Safari */
}
::-moz-selection {
  background: #444; /* Firefox */
}

/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* images and movies */
img, canvas, iframe, video, svg {
  border: 0;
  width: 100%;
  max-width: 100%;
  display: block;
}
img {
  height: auto;
}

/* background color */
.primary_black {
  background: #111;
}
.primary_white {
  background: #fff;
}

/* button */
.button_common {
  opacity: 1;
  border: solid 1px #fff;
  width: 320px;
  height: 52px;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 32px auto 0;
  text-align: center;
  font-size: 14px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.button_common:hover {
  border: none;
  background-color: #111;
  box-shadow: 0px 4px 12px 1px rgba(0,0,0,.1);
}

/* input */
input[type="search"], input[type="button"], input[type="submit"], input[type="reset"], select, textarea, button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
}
input, select, textarea, button {
  font-family: inherit;
  font-weight: inherit;
  outline: none;
  border: solid 1px #ccc;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="text"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="file"],
input[type="image"],
input[type="number"],
input[type="range"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
select,
textarea {
  display: block;
}
input[type="color"],
input[type="file"],
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  cursor: pointer;
}
input[type="color"],
input[type="file"],
input[type="image"] {
  border: none;
  background-color: transparent;
}
select {
  text-indent: 0.01px;
  text-overflow: '';
  background-image: url(./under_arrow.svg);
  background-position: 100% center;
  background-repeat: no-repeat;
  padding: 0 20px 0 10px;
}
select::-ms-expand {
  display: none;
}
textarea {
  overflow: auto;
  display: block;
  resize: vertical;
}

/*---------------------------------------------------------------*\
$860px
\*---------------------------------------------------------------*/
@media screen and (max-width: 960px) {

  /* section title */
  .section_title {
    font-size: 40px;
  }
  .section_subtitle {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------*\
$600px
\*---------------------------------------------------------------*/
@media screen and (max-width: 600px) {

  * {
    font-size: 13px;
  }

  /* section title */
  .section_title {
    font-size: 26px;
  }

  /* font size */
  .font_22 {
    font-size: 18px;
  }

  /* buttons */
  .button_common {
    font-size: 13px;
    width: 240px;
    height: 46px;
    margin-top: 24px;
  }

  /* word breaks */
  .break_on_sp {
    display: block;
  }
  .break_off_sp {
    display: none;
  }
}

/*---------------------------------------------------------------*\
$360px
\*---------------------------------------------------------------*/
@media screen and (max-width: 360px) {

  /* buttons */
  .button_common {
    width: 240px;
  }
}