﻿/* ****************************************************************************************************
   * タイトル
**************************************************************************************************** */

.title-1 {
  font-size: 3.6rem;
  color: #000;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 0.75em;
}

.title-1:before {
  content: attr(data-txt);
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  font-family: 'Oswald',sans-serif;
  letter-spacing: normal;
  text-align: center;
  line-height: 1;
  color: #ff9600;
  padding-bottom: 0.1em;
}

@media (max-width:736px) {
  .title-1 {
    font-size: 3rem;
  }
  .title-1:before {
    font-size: 1.8rem;
  }
}

.title-2 {
  position: relative;
  font-size: 2.4rem;
  font-weight: 500;
  color: #000;
  padding-left: 1.5em;
}

.title-2:before {
  content: '';
  display: block;
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 25px;
  height: 5px;
  background: #ff9600;
}

.title-3 {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  margin-bottom: 0.5em;
}

/* ****************************************************************************************************
   * btn
**************************************************************************************************** */

.btn-1 {
  position: relative;
  max-width: 300px;
  width: 100%;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  text-align: center;
  color: #fff;
  padding: 1.5em;
  background: #504642;
  border-radius: 3em;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.25);
}

.btn-1:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  display: block;
  width: 11px;
  height: 17px;
  background: url(../../_images/_common/btn-1.png) center center /contain no-repeat;
  transform: translateY(-50%);
  transition: 0.2s right;
}

.btn-1:hover:after {
  right: 0.8em;
}

.btn-1.back:after {
  left: 1em;
  right: auto;
  transform: rotate(-180deg);
  margin-top: -6px;
  transition: 0.2s left;
}

.btn-1.back:hover:after {
  left: 0.8em;
}

@media (max-width:736px) {
  .btn-1 {
    max-width: 240px;
    font-size: 1.6rem;
  }
}

/* ****************************************************************************************************
   * layout
**************************************************************************************************** */

[class*="layout-flex"] {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.layout-flex-2.reverse {
  flex-direction: row-reverse;
}

.layout-flex-2 > * {
  width: 48%;
}

.layout-flex-2 > *:nth-child(n+3) {
  margin-top: 40px;
}

.layout-flex-3 > * {
  width: 30%;
}

.layout-flex-3 > *:nth-child(n+4) {
  margin-top: 30px;
}

.layout-flex-4 > * {
  width: 23%;
}

.layout-flex-4 > *:nth-child(n+5) {
  margin-top: 30px;
}

.layout-inline-4 {
  letter-spacing: -0.4em;
}

.layout-inline-4 > * {
  width: 23%;
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  margin-top: 0;
  margin-left: 2.66%;
}

.layout-inline-4 > *:nth-child(4n+1) {
  margin-left: 0;
}

@media (max-width:736px) {
  .layout-flex-2 > *,
  .layout-flex-3 > * {
    width: 100%;
  }
  .layout-flex-2 > *~*,
  .layout-flex-3 > *~* {
    margin-top: 20px;
  }
  .layout-flex-4 > * {
    width: 49%;
  }
  .layout-flex-4 > *:nth-child(n+3) {
    margin-top: 20px;
  }
  .layout-inline-4 > * {
    width: 49%;
    margin-left: 2%;
  }
  .layout-inline-4 > *:nth-child(2n+1) {
    margin-left: 0;
  }
  .layout-inline-4 > *:nth-child(n+3) {
    margin-top: 2%;
  }
}

/* ****************************************************************************************************
   * テキスト
**************************************************************************************************** */

.color-red { color:#f00; }

.align-l { text-align:left !important; }
.align-c { text-align:center !important; }
.align-r { text-align:right !important; }

@media (max-width:736px) {
  .align-c.pc {
    text-align: left !important;
  }
}

/* ****************************************************************************************************
   * 画像
**************************************************************************************************** */

.inline-left  { margin-right:4.70%; margin-bottom:0.75em; float:left; }
.inline-right { margin-left:4.70%; margin-bottom:0.75em; float:right; }

.inline-left img,
.inline-right img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.valign-t { vertical-align:top; }
.valign-m { vertical-align:middle; }
.valign-b { vertical-align:bottom; }

/* ****************************************************************************************************
   * テーブル
**************************************************************************************************** */

table.default + * { margin-top:1.5em; }

* + table.default { margin-top:1.5em; }

table.default { width:100%; border-collapse:collapse; }

table.default tr > th,
table.default tr > td {
  padding: 0.75em;
  font-weight: normal;
  text-align: left;
  border: 1px solid #fff;
}

table.default tr > th {
  color: #fff;
}

table.default tr > td {
}

@media (max-width:736px) {
  table.default:not(.no-responsive),
  table.default:not(.no-responsive) tbody,
  table.default:not(.no-responsive) tr,
  table.default:not(.no-responsive) tr > * {
    width: 100%;
    display: block;
  }
  table.default:not(.no-responsive) tr ~ tr {
    margin-top: 1em;
  }
  table.default:not(.no-responsive) tr > td {
    border: none;
  }
  table.default:not(.no-responsive) caption {
    display: block;
    font-weight: bold;
    text-align: left;
    margin-bottom: 0.5em;
  }
}

/* ****************************************************************************************************
   * リスト
**************************************************************************************************** */

ul.default,ul.default li,ol.default,ol.default li {
  margin: 0;
  padding: 0;
}

ul.default,ol.default {
  margin-left: 1.25em;
}

ul.default li ~ li,ol.default li ~ li {
  margin-top: 0.4em;
}

ul.default + *,* + ul.default,ol.default + *,* + ol.default {
  margin-top: 1em;
}

ul.default li {
  list-style: disc;
}

ol.default li {
  list-style: decimal;
}

/* ****************************************************************************************************
   * フロートクリア
**************************************************************************************************** */

.clearfix:after { content:''; display:block; clear:both; }
