@charset "UTF-8";
/**
 * VARIABLE.............プロジェクト全体を通して使用される変数です。
 *
 * MIXIN
 *
 * BASE.................要素セレクタと属性セレクタのデフォルトスタイルです。
 *
 * LAYOUT
 * Header...............ヘッダーエリアのコンテナブロックのスタイルを指定します。
 * Footer...............フッターエリアのコンテナブロックのスタイルを指定します。
 * Main.................メインコンテンツエリアのコンテナブロックのスタイルを指定します。
 *
 */
/* ==========================================================================
 RESET
========================================================================== */
/* CSS Document */
*, *:before, *:after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0; }

html {
  font-size: 62.5% !important;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

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, main, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

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; }

table th {
  word-break: break-all; }

table td {
  word-break: break-all; }

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box; }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none; }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px; }

input[type="text"] {
  border-radius: 0; }

/* ==========================================================================
 BASE
========================================================================== */
body {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #3f3a39;
  background: #f8f6f2; }

main {
  padding-right: 15vw; }
  @media only screen and (max-width: 1200px) {
    main {
      padding-right: 0; } }

p {
  line-height: 1.6; }

img {
  display: block;
  height: auto;
  max-width: 100%; }

a {
  color: #ea5404;
  text-decoration: none; }
  a:hover {
    color: #ea5404; }

/* ==========================================================================
 LAYOUT 共通パーツ
 ========================================================================== */
/* ==========================================================================
Header 
========================================================================== */
header .Sp-Nav {
  display: none;
  position: fixed;
  top: 10px;
  right: 8px;
  width: 60px;
  height: 60px;
  padding: 12px 10px;
  z-index: 9999;
  cursor: pointer; }
  @media only screen and (max-width: 1200px) {
    header .Sp-Nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      flex-direction: column;
      justify-content: space-between; } }
  header .Sp-Nav span {
    display: block;
    width: 100%;
    height: 6px;
    background: #ea5404; }
  header .Sp-Nav.Open span:nth-child(1) {
    transform: rotate(45deg) translateY(1px);
    transform-origin: center left; }
  header .Sp-Nav.Open span:nth-child(2) {
    display: none; }
  header .Sp-Nav.Open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-1px);
    transform-origin: center left; }
  header .Sp-Nav.Open + nav {
    transform: translateX(0); }
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 15vw;
  height: 100vh;
  z-index: 999;
  background-color: #f8f6f2;
  padding: 70px 20px; }
  @media only screen and (max-width: 1520px) {
    header nav {
      padding: 50px 20px; } }
  @media only screen and (max-width: 1200px) {
    header nav {
      padding: 90px 30px 0;
      width: 200px;
      transform: translateX(100%);
      transition: .35s ease-in-out;
      justify-content: flex-start; } }
  header nav ul li {
    position: relative;
    margin-bottom: 30px;
    padding-left: 26px;
    line-height: 1.6; }
    header nav ul li::before {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: 0.6em;
      width: 8px;
      height: 8px;
      border: 1px solid #ea5404;
      border-radius: 50%; }
    header nav ul li a {
      display: block;
      color: inherit; }
      header nav ul li a:hover {
        color: #ea5404; }
header .Header__Contact {
  width: 110px;
  height: 110px;
  border: 1px solid #ea5404;
  border-radius: 50%; }
  @media only screen and (max-width: 950px) {
    header .Header__Contact {
      position: relative;
      margin-top: 10px;
      bottom: auto; } }
  header .Header__Contact a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 110px;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold; }

/* ==========================================================================
 Footer
========================================================================== */
footer {
  margin-top: 160px;
  padding-right: 15vw; }
  @media only screen and (max-width: 1200px) {
    footer {
      margin-top: 120px;
      padding-right: 0; } }
  @media only screen and (max-width: 950px) {
    footer {
      margin-top: 80px; } }
  footer .Footer__Contact {
    background: #746a68;
    color: #fff;
    padding: 60px; }
    @media only screen and (max-width: 1520px) {
      footer .Footer__Contact {
        padding: 40px; } }
    @media only screen and (max-width: 950px) {
      footer .Footer__Contact {
        padding: 40px 20px; } }
  footer .Contact__Header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 30px;
    max-width: 1300px;
    width: 100%; }
    footer .Contact__Header .Sec-Title {
      margin-bottom: 0; }
    footer .Contact__Header p {
      font-weight: bold; }
    @media only screen and (max-width: 640px) {
      footer .Contact__Header .Sec-Title {
        margin-bottom: 20px; } }
  footer .Contact__Contents__Wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto; }
    @media only screen and (max-width: 780px) {
      footer .Contact__Contents__Wrapper {
        display: block;
        text-align: center; } }
  footer .Border {
    width: 1px;
    background: #fff;
    align-self: stretch; }
    @media only screen and (max-width: 780px) {
      footer .Border {
        width: 100px;
        height: 1px;
        margin: 20px auto; } }
  footer h3 {
    color: #e9e4da;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3px; }
  footer p.Contact__Num {
    font-size: 34px;
    font-size: 3.4rem;
    font-weight: bold;
    text-align: center; }
    @media only screen and (max-width: 1520px) {
      footer p.Contact__Num {
        font-size: 28px;
        font-size: 2.8rem; } }
    @media only screen and (max-width: 950px) {
      footer p.Contact__Num {
        font-size: 22px;
        font-size: 2.2rem; } }
    @media only screen and (max-width: 780px) {
      footer p.Contact__Num {
        font-size: 26px;
        font-size: 2.6rem; } }
    footer p.Contact__Num a {
      color: inherit; }
  footer > span {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center; }
  footer small {
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 1200px) {
      footer small {
        height: 70px; } }
    footer small p {
      font-size: 14px;
      font-size: 1.4rem; }
      @media only screen and (max-width: 640px) {
        footer small p {
          font-size: 12px;
          font-size: 1.2rem; } }

.Contents-Inner--Wide {
  padding: 0 70px; }
  @media only screen and (max-width: 1520px) {
    .Contents-Inner--Wide {
      padding: 0 50px; } }
  @media only screen and (max-width: 1200px) {
    .Contents-Inner--Wide {
      padding: 0 40px; } }
  @media only screen and (max-width: 640px) {
    .Contents-Inner--Wide {
      padding: 0 30px; } }

.Contents-Inner--Wide-Right {
  padding-left: 70px; }
  @media only screen and (max-width: 1520px) {
    .Contents-Inner--Wide-Right {
      padding-left: 50px; } }
  @media only screen and (max-width: 1200px) {
    .Contents-Inner--Wide-Right {
      padding-left: 40px; } }
  @media only screen and (max-width: 640px) {
    .Contents-Inner--Wide-Right {
      padding-left: 30px; } }

.Contents-Inner--Narrow {
  width: calc(100% - 15vw);
  max-width: 1300px;
  margin: 0 auto; }
  @media only screen and (max-width: 1520px) {
    .Contents-Inner--Narrow {
      width: calc(100% - 11vw); } }
  @media only screen and (max-width: 1200px) {
    .Contents-Inner--Narrow {
      width: calc(100% - 80px); } }
  @media only screen and (max-width: 640px) {
    .Contents-Inner--Narrow {
      width: calc(100% - 60px); } }

.Contents-Inner--Narrow-Right {
  width: calc(100% - 15vw);
  margin: 0 0 0 auto; }

.Sec-Title {
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 68px; }
  @media only screen and (max-width: 1520px) {
    .Sec-Title {
      font-size: 36px;
      font-size: 3.6rem;
      margin-bottom: 50px; } }
  @media only screen and (max-width: 1200px) {
    .Sec-Title {
      font-size: 32px;
      font-size: 3.2rem;
      margin-bottom: 40px; } }
  @media only screen and (max-width: 950px) {
    .Sec-Title {
      font-size: 30px;
      font-size: 3rem;
      margin-bottom: 30px; } }
  .Sec-Title span {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.5em;
    font-weight: 900;
    color: #ea783b;
    margin-bottom: 7px; }

table caption {
  text-align: center;
  line-height: 1.6;
  padding: 1em;
  color: #fff;
  background: #ea783b; }
table tbody tr:nth-child(odd) {
  background: #fff; }
table tfoot tr td {
  text-align: center;
  background: #e9e4da;
  border-top: 20px solid #f8f6f2; }
table tr th, table tr td {
  line-height: 1.6;
  padding: 1em; }
table tr th {
  font-weight: bold;
  text-align: left; }

@media only screen and (max-width: 640px) {
  .Hide__Sp {
    display: none; } }
