@charset "UTF-8";
/* 関数の書き方

$font24: 2.4rem;
$font35: 3.5rem;
$grey: #d8d8d8;
$red: #e80c0c;
ーーーーーーーーーーーーーーーーーーーー */
/* SASSの書き方
.corp-left {
  h2 {
    padding-bottom: 18px;
    font-size: $font2;
  }
  span {
    padding-left: 18px;
    font-size: $font1;
  }
  .map {
    width: 960px;
    margin-left: -360px;
  }
}

$red: #f00;

%fz-18 {
  font-size: 1.8rem;
}


/* SASSの書き方 中級
.fz-18 {
  @extend %fz-18;

  &-bold {
    font-weight: 700;
  }
  &-red {
    color: $red;
  }

  @media screen and (max-width: 768px) {
    font-size: 1.6rem;
  }
}

.sample {
  margin: 0;

  @media screen and (max-width: 768px) {
    margin: 1px;
  }
}

ーーーーーーーーーーーーーーーーーーーー */
/* 関数はここ
ーーーーーーーーーーーーーーーーーーーー */
/* 関数はここまで
ーーーーーーーーーーーーーーーーーーーー */
/* 全体にかける余白などはここに
ーーーーーーーーーーーーーーーーーーーー */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type="search"] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  position: relative;
  font-family: "Noto Serif JP", serif;
}

body::after {
  content: "";
  position: absolute;
  background: url(../images/line.png);
  width: 100%;
  height: 100%;
  z-index: -2;
  top: 00px;
  left: 0;
}

.lob-class {
  font-family: "Lobster", cursive;
}

img {
  width: 100%;
  display: block;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 全体にかける余白などはここまでに
ーーーーーーーーーーーーーーーーーーーー */
.slick-dots {
  background-color: #515151;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 50px;
  z-index: -1;
  margin-bottom: -39px;
}

@media screen and (max-width: 480px) {
  .slick-dots {
    margin-bottom: -32px;
    padding-bottom: 3px;
  }
}

.slider li.slick-slide {
  height: 100vh;
  max-height: 540px;
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.slider li.slick-slide .sample-top-box {
  left: 0 !important;
}

.slider li.slick-slide:nth-child(4n + 1) {
  background: url(../images/top-1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.slider li.slick-slide:nth-child(4n + 2) {
  background: url(../images/about-1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.slider li.slick-slide:nth-child(4n + 3) {
  background: url(../images/works-1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.slider li.slick-slide:nth-child(4n + 4) {
  background: url(../images/works-2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.slider li {
  width: 30px;
  height: 30px;
  padding-top: 5px;
  background-color: #000;
  margin-top: 4px;
}

.slick-dots li:nth-child(1)::before {
  content: "1";
  font-size: 2rem;
  color: white;
  width: 30px;
  height: 30px;
}

.slick-dots li:nth-child(2)::before {
  content: "2";
  font-size: 2rem;
  color: white;
  width: 30px;
  height: 30px;
}

.slick-dots li:nth-child(3)::before {
  content: "3";
  font-size: 2rem;
  color: white;
  width: 30px;
  height: 30px;
}

.slick-dots li:nth-child(4)::before {
  content: "4";
  font-size: 2rem;
  color: white;
  width: 30px;
  height: 30px;
}

.slick-dots li button:before {
  display: none !important;
}

.slider::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  content: "";
  width: 152px;
  height: 122px;
  background: url("../images/rogo.png");
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
  z-index: 1;
}

.slick-dotted.slick-slider {
  z-index: -1;
}

.sample-top-pic-box {
  position: relative;
  max-height: 720px;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: -1;
}

.sample-top-pic-box .slider::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  content: "";
  width: 152px;
  height: 122px;
  background: url("../images/rogo.png");
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
  z-index: 1;
}

.sample-top-pic {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 720px;
  height: 100vh;
}

.sample-top-box {
  position: relative;
  text-align: center;
  width: 360px;
  margin: auto;
  color: #fff;
  z-index: 10;
  left: 50%;
}

@media screen and (max-width: 630px) {
  .sample-top-box {
    max-width: 320px;
  }
}

.sample-top-title {
  font-size: 2.2rem;
}

@media screen and (max-width: 630px) {
  .sample-top-title {
    font-size: 2rem;
  }
}

.sample-top-lead {
  margin: 1rem 0;
  padding: 1.5rem;
  font-size: 2.2rem;
  line-height: 1.5;
  border: 1px solid #fff;
}

@media screen and (max-width: 630px) {
  .sample-top-lead {
    font-size: 2rem;
  }
}

.sample-top-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.6rem;
  position: relative;
  font-size: 2.2rem;
  background: #000;
  padding-top: 13px;
}

@media screen and (max-width: 630px) {
  .sample-top-link {
    font-size: 2rem;
  }
}

.sample-top-link::after {
  content: "";
  position: absolute;
  top: 3.6rem;
  left: 0;
  z-index: 0;
  border-top: 40px solid black;
  border-right: 180px solid transparent;
  border-left: 180px solid transparent;
}

@media screen and (max-width: 630px) {
  .sample-top-link::after {
    border-right: 160px solid transparent;
    border-left: 160px solid transparent;
    top: 35px;
    font-size: 2rem;
  }
}

.slick-prev {
  left: 50px;
  top: 50%;
  position: absolute;
  z-index: 30;
}

@media screen and (max-width: 768px) {
  .slick-prev {
    visibility: hidden;
  }
}

.slick-next {
  right: 50px;
  top: 50%;
}

@media screen and (max-width: 768px) {
  .slick-next {
    visibility: hidden;
  }
}

.slick-prev:before,
.slick-next:before {
  font-size: 40px;
}

@media screen and (max-width: 480px) {
  .slick-prev:before,
  .slick-next:before {
    font-size: 30px;
  }
}

/* ヘッダーはここから
ーーーーーーーーーーーーーーーーーーーー */
.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1270px) {
  .header-inner {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.header-inner .header-left {
  padding-top: 27px;
}

@media screen and (max-width: 768px) {
  .header-inner .header-left {
    padding-top: 30px;
    padding-bottom: 14px;
    margin-top: -14px;
  }
}

.header-inner .header-left p {
  font-size: 2.2rem;
}

.header-inner .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .header-inner .header-nav {
    display: block;
  }
}

.header-inner .header-nav li {
  padding-left: 46px;
  padding-bottom: 12px;
  padding-top: 31px;
  font-size: 2.4rem;
}

@media screen and (max-width: 1270px) {
  .header-inner .header-nav li {
    padding-left: 30px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .header-inner .header-nav li {
    border-bottom: 1px solid black;
    margin-left: 15px;
    margin-right: 50px;
  }
}

@media screen and (max-width: 1270px) {
  .header-inner .header-nav li:hover {
    opacity: 0.5;
  }
}

.header-inner .header-nav .list1 {
  color: #919106;
}

/*スライドなしのtopはここから
  ーーーーーーーーーーーーーーーーーーーー
  .sample-top {
  &-pic-box {
    position: relative;
    max-height: 720px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;

    &::before {
      position: absolute;
      top: 1rem;
      left: 1rem;
      content: "";
      width: 152px;
      height: 122px;
      background: url("../images/rogo.png");
      background-repeat: no-repeat;
      background-size: cover;
      mix-blend-mode: multiply;
      z-index: 1;
    }
  }

  &-pic {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 720px;
    height: 100vh;
  }

  &-box {
    position: relative;
    text-align: center;
    width: 560px;
    margin: auto;
    color: $white;
    z-index: 10;
    left: 50%;
    @media screen and (max-width: 630px) {
      max-width: 320px;
    }
  }

  &-title {
    font-size: $fz-26;

    @media screen and (max-width: 630px) {
      font-size: $fz-2;
    }
  }

  &-lead {
    margin: 1rem 0;
    padding: 1.5rem;
    font-size: $fz-26;
    line-height: 1.5;
    border: 1px solid #fff;

    @media screen and (max-width: 630px) {
      font-size: $fz-2;
    }
  }

  &-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.6rem;
    position: relative;
    font-size: $fz-26;
    background: #000;
    padding-top: 13px;

    @media screen and (max-width: 630px) {
      font-size: $fz-2;
    }

    &::after {
      content: "";
      position: absolute;
      top: 3.6rem;
      left: 0;
      z-index: 0;
      border-top: 40px solid black;
      border-right: 280px solid transparent;
      border-left: 280px solid transparent;

      @media screen and (max-width: 630px) {
        border-right: 160px solid transparent;
        border-left: 160px solid transparent;
        top: 35px;
        font-size: $fz-2;
      }
    }
  }
}

/* aboutはここから
ーーーーーーーーーーーーーーーーーー
ーー */
.about-title {
  font-size: 3.5rem;
  padding-top: 107px;
  padding-bottom: 23px;
  padding-left: 50px;
}

@media screen and (max-width: 768px) {
  .about-title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) and (max-width: 480px) {
  .about-title {
    font-size: 2.5rem;
    padding-top: 70px;
  }
}

.about-title span {
  font-size: 2.4rem;
  padding-left: 20px;
}

@media screen and (max-width: 480px) {
  .about-title span {
    font-size: 1.8rem;
  }
}

.about-text {
  font-size: 3.5rem;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 31px;
}

@media screen and (max-width: 768px) {
  .about-text {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 768px) and (max-width: 480px) {
  .about-text {
    font-size: 2rem;
  }
}

.about-reyou {
  position: relative;
  z-index: -1;
}

.about-reyou::before {
  content: "Reyou";
  position: absolute;
  top: -60%;
  left: 27%;
  color: #919106;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .about-reyou::before {
    top: -75%;
    left: 22%;
  }
}

@media screen and (max-width: 480px) {
  .about-reyou::before {
    top: -100%;
    left: 22%;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 414px) {
  .about-reyou::before {
    left: 22%;
    top: -40%;
  }
}

@media screen and (max-width: 375px) {
  .about-reyou::before {
    top: 93%;
    left: unset;
    right: 218px;
  }
}

.about-lead {
  font-size: 2.2rem;
  padding-top: 27px;
  padding-bottom: 88px;
  font-size: 2rem;
  padding-left: 100px;
  padding-right: 100px;
}

@media screen and (max-width: 768px) {
  .about-lead {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 2rem;
    letter-spacing: 1.7px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .about-lead {
    font-size: 1.5rem;
  }
}

.about-pic {
  padding: 0 20px;
}

/* アバウトここまで
ーーーーーーーーーーーーーーーーーーーー */
/* 写真と文字の上はここから
ーーーーーーーーーーーーーーーーーーーー */
.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .top {
    display: block;
  }
}

.top-left-bg {
  position: relative;
  width: 50%;
  height: 265px;
  background-image: url(../images/left-1.png);
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .top-left-bg {
    width: 100%;
  }
}

.top-left-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /*半透明のフィルターをかける*/
}

@media screen and (max-width: 768px) {
  .top-left-bg::after {
    right: 76%;
    height: 180px;
  }
}

.top-left-bg p {
  position: absolute;
  font-size: 3rem;
  color: #fff;
  right: 19%;
  z-index: 1;
}

@media screen and (max-width: 1270px) {
  .top-left-bg p {
    right: unset;
    font-size: 2.5rem;
  }
}

.top-right {
  width: 50%;
  height: 265px;
  background-color: #d8d8d8;
  font-size: 2.4rem;
}

@media screen and (max-width: 1270px) {
  .top-right {
    width: 60%;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .top-right {
    width: 100%;
    position: relative;
    z-index: -1;
  }
}

.top-right ul {
  padding-top: 43px;
  padding-left: 50px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-right ul {
    padding-left: 25%;
  }
}

.top-right ul::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 130px;
  background-color: #919106;
  position: absolute;
  top: 36px;
  left: 30px;
}

@media screen and (max-width: 1270px) {
  .top-right ul::before {
    height: 110px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .top-right ul::before {
    left: 22%;
  }
}

.top-right ul li {
  padding-bottom: 19px;
}

@media screen and (max-width: 1270px) {
  .top-right ul li {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 1270px) and (max-width: 480px) {
  .top-right ul li {
    font-size: 1.4rem;
  }
}

.top-right-text {
  padding-left: 73px;
  margin-top: -2px;
}

@media screen and (max-width: 1270px) {
  .top-right-text {
    font-size: 1.7rem;
    padding-left: 26px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .top-right-text {
    padding-left: 28%;
    padding-right: 40px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) and (max-width: 768px) {
  .top-right-text {
    font-size: 1.2rem;
  }
}

.top-right-lead {
  padding-left: 73px;
  padding-top: 17px;
}

@media screen and (max-width: 1270px) {
  .top-right-lead {
    font-size: 1.7rem;
    padding-left: 26px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .top-right-lead {
    padding-left: 28%;
    padding-right: 40px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) and (max-width: 768px) {
  .top-right-lead {
    font-size: 1.2rem;
  }
}

/* 写真と文字の下はここから
ーーーーーーーーーーーーーーーーーーーー */
.bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.bottom ul {
  width: 50%;
  position: relative;
  text-align: end;
  padding-top: 43px;
  padding-right: 50px;
  background-color: #d8d8d8;
  z-index: -1;
}

@media screen and (max-width: 1270px) {
  .bottom ul {
    width: 60%;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .bottom ul {
    width: 100%;
    text-align: left;
    padding-left: 26%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-bottom: 25px;
  }
}

.bottom ul::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 212px;
  background-color: #919106;
  position: absolute;
  top: 36px;
  right: 30px;
}

@media screen and (max-width: 768px) {
  .bottom ul::after {
    height: 156px;
    top: 39px;
    right: unset;
    left: 22%;
  }
}

.bottom ul li {
  padding-bottom: 17px;
  font-size: 2.4rem;
}

@media screen and (max-width: 1270px) {
  .bottom ul li {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .bottom ul li {
    font-size: 1.4rem;
  }
}

.bottom-bg {
  position: relative;
  width: 50%;
  height: 265px;
  background-image: url(../images/right-1.png);
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: -1;
}

@media screen and (max-width: 1270px) {
  .bottom-bg {
    width: 50%;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .bottom-bg {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.bottom-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /*半透明のフィルターをかける*/
}

.bottom p {
  position: absolute;
  font-size: 3rem;
  color: #fff;
  left: 16%;
  z-index: 1;
}

@media screen and (max-width: 1270px) {
  .bottom p {
    font-size: 2.5rem;
    left: unset;
  }
}

/*






.bottom ul li {

}
.top-line2 ::after {

}
.bottom ul {
  padding-top: 20px;
}

/* 写真と文字ここまで
ーーーーーーーーーーーーーーーーーーーー */
/* ワークスここから
ーーーーーーーーーーーーーーーーーーーー */
.works {
  padding-top: 152px;
}

@media screen and (max-width: 480px) {
  .works {
    padding-top: 70px;
  }
}

.works h2 {
  padding-bottom: 19px;
  font-size: 3.5rem;
  padding-left: 50px;
}

@media screen and (max-width: 480px) {
  .works h2 {
    font-size: 2.5rem;
  }
}

.works span {
  padding-left: 18px;
  font-size: 2.4rem;
}

@media screen and (max-width: 480px) {
  .works span {
    font-size: 1.8rem;
  }
}

.works-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  padding-left: 3;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .works-box {
    display: block;
  }
}

.works-box img {
  margin-bottom: 16px;
}

.works-box .works-button {
  border: 1px solid black;
  padding-top: 13px;
  padding-bottom: 13px;
  width: 100%;
  font-size: 2.4rem;
}

@media screen and (max-width: 1270px) {
  .works-box .works-button {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .works-box .works-button {
    font-size: 2.2rem;
  }
}

.works-box .works-text {
  font-size: 2rem;
  margin-top: 11px;
}

@media screen and (max-width: 1270px) {
  .works-box .works-text {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1270px) and (max-width: 1270px) {
  .works-box .works-text {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 480px) {
  .works-box .works-text {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .works .works-left {
    padding-left: 0;
    padding-right: 0;
  }
}

.works .works-center {
  padding-left: 45px;
  padding-right: 45px;
}

@media screen and (max-width: 1270px) {
  .works .works-center {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .works .works-center {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .works .works-right {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ワークスここまで
ーーーーーーーーーーーーーーーーーーーー */
/* ニュースここから
ーーーーーーーーーーーーーーーーーーーー */
.news {
  padding-top: 127px;
  padding-bottom: 13px;
}

@media screen and (max-width: 768px) {
  .news {
    padding-top: 70px;
  }
}

.news h2 {
  border-bottom: 1px solid black;
  font-size: 3.5rem;
  padding-left: 50px;
}

@media screen and (max-width: 768px) {
  .news h2 {
    font-size: 2.5rem;
  }
}

.news h2 span {
  padding-left: 18px;
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .news h2 span {
    font-size: 1.8rem;
  }
}

.news ul {
  font-size: 2.2rem;
  padding-top: 50px;
}

@media screen and (max-width: 1270px) {
  .news ul {
    padding-right: 50px;
  }
}

.news ul .news-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 106px;
  padding-bottom: 43px;
}

@media screen and (max-width: 768px) {
  .news ul .news-flex {
    display: block;
    padding-left: 30px;
    font-size: 1.6rem;
  }
}

.news ul .news-flex .subtitle {
  border: 1px solid black;
  min-width: 135px;
  max-width: 135px;
  height: 35px;
  margin-left: 30px;
  text-align: center;
  margin-top: -5px;
  padding-top: 5px;
}

@media screen and (max-width: 768px) {
  .news ul .news-flex .subtitle {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 8px;
  }
}

@media screen and (max-width: 768px) and (max-width: 414px) {
  .news ul .news-flex .subtitle {
    margin-left: 0;
  }
}

.news ul .news-flex .news-text {
  padding-left: 41px;
  max-width: 700px;
}

@media screen and (max-width: 414px) {
  .news ul .news-flex .news-text {
    margin-left: 0;
  }
}

.news ul .date {
  position: relative;
  z-index: -1;
}

.news ul .date::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 30px;
  background-color: #919106;
  position: absolute;
  top: -3px;
  left: -45px;
}

.news .news-more {
  text-align: center;
}

.news .news-more a {
  border: 1px solid black;
  padding: 2px 48px;
  font-size: 2.4rem;
}

.news .news-more a:hover {
  color: #fff;
  background-color: #515151;
}

/* ニュースここまで
ーーーーーーーーーーーーーーーーーーーー */
/* コーポレートここから
ーーーーーーーーーーーーーーーーーーーー */
.corp-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 120px;
}

@media screen and (max-width: 1270px) {
  .corp-flex {
    display: block;
  }
}

@media screen and (max-width: 1270px) and (max-width: 480px) {
  .corp-flex {
    padding-top: 70px;
  }
}

.corp-flex .corp-left {
  width: 50%;
}

@media screen and (max-width: 1270px) {
  .corp-flex .corp-left {
    width: 100%;
  }
}

.corp-flex .corp-left h2 {
  padding-left: 50px;
  padding-bottom: 18px;
  font-size: 3.5rem;
}

@media screen and (max-width: 768px) {
  .corp-flex .corp-left h2 {
    font-size: 2.5rem;
  }
}

.corp-flex .corp-left span {
  padding-left: 18px;
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .corp-flex .corp-left span {
    font-size: 1.8rem;
  }
}

.corp-flex .corp-left .map {
  width: 960px;
  margin-left: -360px;
}

@media screen and (max-width: 1270px) {
  .corp-flex .corp-left .map {
    width: 100%;
    margin-top: 50px;
    margin-left: 0;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .corp-flex .corp-left .map {
    margin-top: 20px;
  }
}

.corp-flex .corp-right {
  font-size: 2.1rem;
  width: 50%;
  padding-top: 60px;
}

@media screen and (max-width: 1270px) {
  .corp-flex .corp-right {
    width: 100%;
  }
}

@media screen and (max-width: 1270px) and (max-width: 1270px) {
  .corp-flex .corp-right {
    font-size: 1.6rem;
    padding-right: 10px;
    padding-left: 10px;
  }
}

.corp-flex .corp-right table {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
  border-collapse: collapse;
}

@media screen and (max-width: 1270px) {
  .corp-flex .corp-right table {
    margin: auto;
  }
}

.corp-flex .corp-right table td {
  border: 1px solid black;
}

.corp-flex .corp-right table .noborder {
  border-left: 0px none;
  text-align: right;
  padding: 20px 18px;
  width: 30%;
  border-right: 1px solid #919106;
}

.corp-flex .corp-right table .no-top {
  border-top: 0px none;
}

.corp-flex .corp-right table .no-bottom {
  border-bottom: 0px none;
}

.corp-flex .corp-right table .no-right {
  border-right: 0px none;
  padding: 20px 18px;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 2px;
}

.corp-flex .corp-right table .fixed {
  padding-top: 52px;
}

.corp-flex .corp-right table .fixed2 {
  padding-top: 32px;
}

.corp-flex .corp-right table .fixed3 {
  padding-top: 86px;
  border-bottom: none 0px;
}

/* コーポレートここまで
ーーーーーーーーーーーーーーーーーーーー */
/* コンタクトここから
ーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 1270px) {
  .contact {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 480px) {
  .contact {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.contact-title {
  font-size: 3.5rem;
  padding-left: 50px;
  padding-top: 120px;
  border-bottom: 1px solid black;
}

@media screen and (max-width: 480px) {
  .contact-title {
    font-size: 2.5rem;
    padding-left: 35px;
  }
}

.contact-title span {
  font-size: 2.4rem;
  padding-left: 18px;
}

@media screen and (max-width: 480px) {
  .contact-title span {
    font-size: 1.8rem;
  }
}

.contact-text {
  padding-top: 18px;
  font-size: 2.1rem;
  margin-bottom: 45px;
}

@media screen and (max-width: 1270px) {
  .contact-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 480px) {
  .contact-text {
    font-size: 1.6rem;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.contact-form {
  font-size: 2.4rem;
}

.contact-form .contact-box {
  margin-bottom: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1270px) {
  .contact-form .contact-box {
    display: block;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .contact-form .contact-box {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1270px) and (max-width: 480px) {
  .contact-form .contact-box {
    font-size: 1.6rem;
  }
}

.contact-form .contact-box ::-webkit-input-placeholder {
  text-align: left;
  padding-left: 10px;
}

.contact-form .contact-box :-ms-input-placeholder {
  text-align: left;
  padding-left: 10px;
}

.contact-form .contact-box ::-ms-input-placeholder {
  text-align: left;
  padding-left: 10px;
}

.contact-form .contact-box ::placeholder {
  text-align: left;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .contact-form .contact-box ::-webkit-input-placeholder {
    font-size: 1.6rem;
  }
  .contact-form .contact-box :-ms-input-placeholder {
    font-size: 1.6rem;
  }
  .contact-form .contact-box ::-ms-input-placeholder {
    font-size: 1.6rem;
  }
  .contact-form .contact-box ::placeholder {
    font-size: 1.6rem;
  }
}

.contact-form .contact-box .name-left {
  width: 30%;
  margin-top: 2%;
}

@media screen and (max-width: 1270px) {
  .contact-form .contact-box .name-left {
    padding-bottom: 3%;
    margin-top: 5%;
    width: 100%;
  }
}

.contact-form .contact-box .name-left .c-span {
  background-color: #e80c0c;
  color: #fff;
  padding: 3px 20px;
  margin-right: 15px;
}

.contact-form .contact-box .name-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  text-align: right;
}

@media screen and (max-width: 1270px) {
  .contact-form .contact-box .name-right {
    width: 100%;
  }
}

.contact-form .contact-box .name-right .right-right {
  margin-left: 20px;
}

.contact-form .contact-box .name-right .tel-input {
  width: 87%;
  height: 70px;
}

@media screen and (max-width: 1270px) {
  .contact-form .contact-box .name-right .tel-input {
    width: 100%;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .contact-form .contact-box .name-right .tel-input {
    height: 45px;
  }
}

.contact-form .contact-box .name-right .con-input {
  height: 400%;
  width: 87%;
}

@media screen and (max-width: 1270px) {
  .contact-form .contact-box .name-right .con-input {
    width: 100%;
    height: 300px;
    margin-top: 16px;
  }
}

.contact-form .contact-box .tell1 {
  margin-top: 2%;
}

@media screen and (max-width: 1270px) {
  .contact-form .contact-box .tell1 {
    margin-top: 5%;
  }
}

.contact-form .contact-box .tell2 {
  margin-top: 2%;
}

@media screen and (max-width: 1270px) {
  .contact-form .contact-box .tell2 {
    margin-top: 5%;
  }
}

.contact-form .confirm {
  text-align: center;
  margin-top: 25%;
}

@media screen and (max-width: 1270px) {
  .contact-form .confirm {
    margin-top: 10%;
  }
}

.contact-form .confirm .confirm-bt {
  padding: 12px 80px;
  color: #fff;
  background-color: #515151;
}

@media screen and (max-width: 768px) {
  .contact-form .confirm .confirm-bt {
    font-size: 2rem;
  }
}

.contact-form .address1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1270px) {
  .contact-form .address1 {
    display: block;
  }
}

.contact-form .address1 .add-bt-box {
  margin-top: 2%;
  margin-left: 10%;
}

@media screen and (max-width: 480px) {
  .contact-form .address1 .add-bt-box {
    margin-top: 4%;
    margin-left: 6%;
  }
}

.contact-form .address1 .add-bt-box a {
  padding: 12px 44px;
  background-color: #d8d8d8;
}

@media screen and (max-width: 480px) {
  .contact-form .address1 .add-bt-box a {
    padding: 7px 16px;
  }
}

.contact-form .contact-address {
  border: 1px solid black;
  font-size: 2.4rem;
  width: 30%;
  height: 70px;
  padding-left: 50px;
  margin-bottom: 20px;
  margin-left: 29%;
}

@media screen and (max-width: 1270px) {
  .contact-form .contact-address {
    margin-left: 0;
    width: 44%;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .contact-form .contact-address {
    font-size: 2rem;
    width: 53%;
    height: 45px;
    padding-left: 38px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) and (max-width: 480px) {
  .contact-form .contact-address {
    font-size: 1.6rem;
    width: 65%;
  }
}

.contact-form .add-2 {
  margin-left: 27.5%;
  width: 63%;
}

@media screen and (max-width: 1270px) {
  .contact-form .add-2 {
    margin-left: 0;
    width: 100%;
  }
}

.contact-form .add-detail {
  margin-left: 30%;
}

@media screen and (max-width: 1270px) {
  .contact-form .add-detail {
    margin-left: 5%;
    font-size: 2rem;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .contact-form .add-detail {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) and (max-width: 480px) {
  .contact-form .add-detail {
    font-size: 1.6rem;
  }
}

textarea {
  border: 1px solid black;
  width: 50%;
  height: 30%;
}

input {
  border: 1px solid black;
  width: 44%;
  height: 70px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  input {
    height: 45px;
  }
}

/* コンタクトここまで
ーーーーーーーーーーーーーーーーーーーー */
/* フッターここから
ーーーーーーーーーーーーーーーーーーーー */
.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 100px;
}

@media screen and (max-width: 1270px) {
  .footer-inner {
    display: block;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 100px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 480px) {
  .footer-inner {
    margin-top: 25px;
  }
}

@media screen and (max-width: 480px) {
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer-left-box {
  width: 15%;
}

@media screen and (max-width: 1270px) {
  .footer-left-box {
    width: 100%;
    text-align: right;
    text-align: -webkit-right;
  }
}

.footer-left-box .footer-logo {
  width: 157px;
}

@media screen and (max-width: 1270px) {
  .footer-left-box .footer-logo {
    width: 15%;
    margin-bottom: -255px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .footer-left-box .footer-logo {
    margin-bottom: -210px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) and (max-width: 480px) {
  .footer-left-box .footer-logo {
    margin-bottom: -136px;
    width: 25%;
  }
}

.footer-right-box {
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1270px) {
  .footer-right-box {
    display: block;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .footer-right-box {
    width: 100%;
  }
}

.footer-title {
  font-size: 3.2rem;
  padding-top: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .footer-title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) and (max-width: 480px) {
  .footer-title {
    font-size: 2rem;
  }
}

.footer-text-box {
  text-align: center;
}

@media screen and (max-width: 1270px) {
  .footer-text-box {
    text-align: left;
    padding-top: 10px;
  }
}

.footer-text-box .footer-lead {
  font-size: 2rem;
}

@media screen and (max-width: 1270px) {
  .footer-text-box .footer-lead {
    width: 100%;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .footer-text-box .footer-lead {
    width: 100%;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) and (max-width: 480px) {
  .footer-text-box .footer-lead {
    font-size: 1.2rem;
  }
}

.footer-text-box .footer-tell {
  font-size: 4.1rem;
  border: 1px solid black;
  padding: 5px 27px;
  margin-bottom: 15px;
}

@media screen and (max-width: 1270px) {
  .footer-text-box .footer-tell {
    width: 327px;
    min-width: 327px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .footer-text-box .footer-tell {
    font-size: 2.6rem;
    width: 230px;
    min-width: 230px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) and (max-width: 480px) {
  .footer-text-box .footer-tell {
    font-size: 2rem;
  }
}

.footer-list {
  padding-left: 50px;
}

@media screen and (max-width: 1270px) {
  .footer-list {
    margin-left: -63px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .footer-list {
    margin-left: -70px;
  }
}

.footer-list .list {
  border-bottom: 1px solid black;
  position: relative;
  padding-top: 5px;
  font-size: 2.1rem;
  font-weight: 600;
}

@media screen and (max-width: 1270px) {
  .footer-list .list {
    width: 130px;
    margin-left: 30px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .footer-list .list {
    font-size: 1.6rem;
    width: 100px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) and (max-width: 480px) {
  .footer-list .list {
    font-size: 1rem;
    width: 60px;
  }
}

.footer-list .list::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 20px;
  background-color: black;
  position: absolute;
  top: 6px;
  left: -16px;
}

@media screen and (max-width: 480px) {
  .footer-list .list::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 15px;
    background-color: black;
    position: absolute;
    top: 4px;
    left: -10px;
  }
}

@media screen and (max-width: 1270px) {
  .footer-list .left-blank {
    margin-left: 50px;
  }
}

.footer-small-box {
  font-size: 1.8rem;
  padding-left: 40px;
}

@media screen and (max-width: 1270px) {
  .footer-small-box {
    padding-left: 16px;
    padding-top: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .footer-small-box {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) and (max-width: 480px) {
  .footer-small-box {
    padding-left: 10px;
    font-size: 0.8rem;
    padding-top: 16px;
  }
}

.footer-small-box .list {
  border-bottom: 1px solid black;
  position: relative;
  font-size: 2.1rem;
  font-weight: 600;
}

@media screen and (max-width: 1270px) {
  .footer-small-box .list {
    width: 130px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) {
  .footer-small-box .list {
    font-size: 1.6rem;
    width: 100px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 768px) and (max-width: 480px) {
  .footer-small-box .list {
    font-size: 1rem;
    width: 60px;
  }
}

.footer-small-box .list::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 20px;
  background-color: black;
  position: absolute;
  top: 2px;
  left: -16px;
}

@media screen and (max-width: 480px) {
  .footer-small-box .list::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 15px;
    background-color: black;
    position: absolute;
    top: -1px;
    left: -10px;
  }
}

@media screen and (max-width: 1270px) {
  .footer-small-box .footer-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer-small-box .footer-small .small-list {
  padding-top: 5px;
  position: relative;
}

@media screen and (max-width: 1270px) {
  .footer-small-box .footer-small .small-list {
    padding-left: 30px;
  }
}

@media screen and (max-width: 480px) {
  .footer-small-box .footer-small .small-list {
    padding-left: 24px;
  }
}

.footer-small-box .footer-small .small-list::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 15px;
  background-color: #919106;
  position: absolute;
  top: 8px;
  left: -13px;
}

@media screen and (max-width: 1270px) {
  .footer-small-box .footer-small .small-list::before {
    left: 20px;
  }
}

@media screen and (max-width: 1270px) and (max-width: 1270px) {
  .footer-small-box .footer-small .small-list::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 11px;
    background-color: #919106;
    position: absolute;
    top: 5px;
    left: 17px;
  }
}

/*
      &::before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 29px;
        background-color: $black;
        position: absolute;
        top: -1px;
        left: -22px;
      }

*/
.copy {
  background-color: #919106;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-top: 20px;
}

@media screen and (max-width: 480px) {
  .copy {
    font-size: 1rem;
  }
}

#nav-input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  #nav-drawer {
    position: fixed;
    /*  オリジナル ハンバーガーの位置調整 */
    padding: 10px 0 0 90%;
    /*  オリジナル ハンバーガーの位置調整 */
    width: 100%;
    right: 20px;
  }
  .header-logo-menu {
    /*  オリジナル ハンバーガーの位置調整 */
    width: 100%;
    padding: 10px;
  }
  /*チェックボックス等は非表示に*/
  .nav-unshown {
    display: none;
  }
  /*アイコンのスペース*/
  #nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
    margin-top: 8px;
  }
  /*ハンバーガーの形をCSSで表現*/
  #nav-open span,
  #nav-open span:before,
  #nav-open span:after {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 25px;
    /*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: "";
    cursor: pointer;
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  /*閉じる用の薄黒箇所*/
  #nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  /*メニューの中身*/
  #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.9;
    padding-right: 50px;
    z-index: 9999;
    width: 90%;
    max-width: 330px;
    /*最大幅（お好みで調整を）*/
    height: 500px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
  }
  /*チェックがついたら表示させる*/
  #nav-input:checked ~ #nav-close {
    display: block;
    opacity: 0.5;
  }
  #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
            box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
  .header-logo-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    -ms-flex-direction: row;
  }
  /*ロゴやサイトタイトルをセンタリング*/
  .logo-area {
    text-align: center;
    margin: auto;
  }
}

/*ーーーーーースマホ用・レスポンシブデザインここまでーーーーーー*/
