@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;
}
a {
  cursor: pointer !important;
}
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;
}

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

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

/* block content */
.block {
  display: block;
}

/* all,html,body,layout */
* {
  font-size: 15px;
  color: #181818;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  background-color: #FFF;
  height: 100%;
}
body {
  overflow-x: hidden;
  font-family: YakuHanJP, "a-otf-futo-go-b101-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, Roboto, sans-serif;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 1;
  min-height: 100vh;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}

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

/* typefaces */
.midashi_go {
  font-family: YakuHanJP, "a-otf-midashi-go-mb31-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, Roboto, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0px;
}
.calson {
  font-family: YakuHanJP, adobe-caslon-pro, serif !important;
  font-weight: 400 !important;
  letter-spacing: 0px;
  padding-top: 1%;
}
/* text align */
.align_center {
	text-align: center;
}
.align_left {
  text-align: left;
}
.align_right {
  text-align: right;
}

/* line height */
.line_s {
  line-height: 1.3;
}
.line_p {
	line-height: 1.6;
}
.line_ex {
	line-height: 2.2;
}
.line_max {
	line-height: 3;
}

/* font size */
.font_120 {
  font-size: 100px;
}
.font_80 {
  font-size: 80px;
}
.font_72 {
  font-size: 72px;
}
.font_64 {
  font-size: 64px;
}
.font_56 {
  font-size: 56px;
}
.font_48 {
  font-size: 48px;
}
.font_40 {
  font-size: 40px;
}
.font_32 {
  font-size: 32px;
}
.font_30 {
  font-size: 30px;
}
.font_28 {
  font-size: 28px;
}
.font_26 {
  font-size: 26px;
}
.font_24 {
  font-size: 24px;
}
.font_22 {
  font-size: 22px;
}
.font_20 {
  font-size: 20px;
}
.font_18 {
  font-size: 18px;
}
.font_16 {
  font-size: 16px;
}
.font_15 {
  font-size: 15px;
}
.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;
}

/* text color */
.font_white {
  color: #fff;
}
.font_gray {
  color: #555;
}

/* background color */
.primary_black {
  background-color: #181818;
}
.primary_brown {
  background-color: #2A1516;
}
.primary_red {
  background-color: #ff676a;
}
.primary_white {
  background-color: #fff;
}
.primary_gray {
  background-color: #fafafa;
}
.primary_beige {
  background-color: #F4F2F0;
}

/* radius */
.radius {
	border-radius: 4px;
}
.radius_round {
	border-radius: 50%;
}
.radius_button {
	border-radius: 80px;
}

/* shadow */
.shadow {
	box-shadow: 0px 10px 20px rgba(0, 0, 0, .05);
}
.shadow_s {
  box-shadow: 0 0 28px rgba(49,49,49,.02);
}

/* strokes */
.stroke {
	border: solid 1px #2a1515;
}
.stroke_gray {
	border: solid 1px #eee;
}

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

/* hover action */
.hover_action {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.hover_action:after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #181818;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
.hover_action:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

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

/* button */
.button_common {
	width: 320px;
	text-align: center;
	padding: 20px 0;
	display: block;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  transition: all .2s ease-out;
}
.button_common:hover {
  border: solid 1px #181818;
  background-color: #181818;
  -webkit-transform: translate(0, -3px);
  transform: translate(0, -3px);
  -webkit-box-shadow: 0 12px 16px rgba(0, 0, 0, .15);
  box-shadow: 0 12px 16px rgba(0, 0, 0, .15);
}

/* 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;
}
input:valid,
select:valid {
  border: 1px solid #44AFA5;
}

/*---------------------------------------------------------------*\
$1500px
\*---------------------------------------------------------------*/
@media screen and (min-width: 1500px) {

  /* buttons */
  .button_conversion {
    width: 1400px;
  }
}

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

  /* buttons */
  .button_conversion {
     width: 90% !important;
  }
}

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

  .break_off_tab {
    display: none;
  }
}

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

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

  * {
    font-size: 14px;
  }

  /* font size */
  .font_18 {
    font-size: 13px;
  }

  /* buttons */
  .button_common {
    font-size: 14px;
    width: 100%;
    margin-top: 24px;
    padding: 14px 0;
  }
  .button_conversion {
    padding: 20px 0;
  }

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

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

  /* buttons */
  .button_common,
  .button_common_input {
    width: 260px;
  }
}