﻿@charset "UTF-8";
/* ========================================================================== 
 *
 * Reset
 *
========================================================================== */

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
canvas {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  position: relative;
}

address,
article,
blockquote,
canvas,
caption,
dd,
div,
dl,
dt,
fieldset,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
legend,
li,
nav,
object,
ol,
p,
pre,
section,
table,
td,
th,
ul {
  margin: 0;
  padding: 0;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset,
img {
  border: none;
  vertical-align: top;
}

address,
caption,
cite,
code,
dfn,
em,
h1,
h2,
h3,
h4,
h5,
h6,
small,
strong,
th,
var {
  font-weight: normal;
  font-style: normal;
  font-size: 100%;
}

li,
ol,
ul {
  list-style: none;
}
ul.new_area {
  justify-content: flex-start;
  align-items: flex-start;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
caption,
td,
th {
  vertical-align: middle;
  text-align: left;
}

a,
abbr,
acronym,
embed,
i,
object {
  font-style: normal;
  border: none;
  outline: none;
}

a:hover {
  outline: none;
}

q:after,
q:before {
  content: "";
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: baseline;
}

article,
canvas,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

/* ========================================================================== 
 *
 * Variables
 *
========================================================================== */

@font-face {
  font-family: "futura-bold";
  src: url("/font/Futura-Bold-03.woff2") format("woff2"), url("/font/Futura-Bold-03.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "futura-medium";
  src: url("/font/Futura-Medium-01.woff2") format("woff2"), url("/font/Futura-Medium-01.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "HiraKakuProN-W3", sans-serif;
  src: url("/font/HiraKakuProN-W3.woff2") format("woff2"), url("/font/HiraKakuProN-W3.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HiraKakuProN-W3";
  src: url("/font/HiraKakuProN-W3.woff2") format("woff2"), url("/font/HiraKakuProN-W3.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "HiraKakuStdN-W7";
  src: url("/font/HiraKakuStdN-W7.woff2") format("woff2"), url("/font/HiraKakuStdN-W7.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html {
  font-family: "futura-bold", Verdana, Meiryo, sans-serif;
  font-feature-settings: "palt" 1;
  background-color: #fff;
  letter-spacing: 0.1em;
  width: 100%;
  height: 100%;
  position: relative;
  scroll-behavior: smooth;
}

@media all and (-ms-high-contrast: none) {
  html {
    font-family: "futura-bold", Verdana, Meiryo, sans-serif;
  }
}

/* ========================================================================== 
 *
 * Animations
 *
========================================================================== */

#opening {
  -webkit-animation-duration: 2000ms;
  animation-duration: 2000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  opacity: 0;
}

@-webkit-keyframes openingAnimation {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -48%);
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1 !important;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@keyframes openingAnimation {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -48%);
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1 !important;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.openingAnimation {
  opacity: 1 !important;
  -webkit-animation-name: openingAnimation;
  animation-name: openingAnimation;
}

.hasAnimeBox .hasAnime {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  opacity: 0;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  opacity: 1 !important;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/*--------------------------------------------------------------
# MOVE_TOP_BTN
--------------------------------------------------------------*/

#MOVE_TOP_BTN {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  background-color: #1a1714;
  color: white;
  cursor: pointer;
  padding: 20px;
  border-radius: 50%;
  line-height: 0;
}
#MOVE_TOP_BTN:hover {
  background-color: #555;
  -webkit-transition: background-color cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
  transition: background-color cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

#MOVE_TOP_BTN .fa-chevron-up {
  color: #fff;
  margin: 0;
}
/* ========================================================================== 
 *
 * General Styles
 *
========================================================================== */
::selection {
  background-color: rgba(0, 0, 0, 0.1);
}

a {
  background-color: transparent;
  color: #231815;
  transition: opacity 0.6s ease;
}

a:hover {
  opacity: 0.6;
}

.section {
  padding: 150px 0;
}

.pc_only {
  display: block !important;
}

.sp_only {
  display: none !important;
}

.overlay {
  display: none;
  position: fixed;
  top: -10px;
  left: 0;
  right: 0;
  bottom: -10px;
  background-color: rgba(0, 0, 0, 0.45);
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1300;
}

.container {
  display: table;
  padding: 10px 0;
  width: 100%;
  height: 100%;
}

.inner {
  display: table-cell;
  padding: 20px;
  vertical-align: middle;
}

.content {
  margin: 0 auto;
  width: 80%;
}
.content::after {
  content: "";
  clear: both;
  display: block;
}
.content.-paddingtop {
  padding-top: 80px;
}
.content h2 {
  margin-bottom: 60px;
  font-size: 6em;
  line-height: 1.4em;
  font-weight: 800;
  letter-spacing: 0.4em;
}

.content h2.-white {
  color: #fff;
  text-align: center;
}
.content h2.-black {
  color: #000;
  text-align: center;
}

.content h2.-center {
  text-align: center;
}
.content h2 {
  margin-bottom: 60px;
}

.content h3 {
  margin-bottom: 0;
  padding-top: 0;
  font-weight: 800;
  font-family: "HiraKakuStdN-W7", sans-serif;
  letter-spacing: 0.4em;
  font-size: 2em;
  line-height: 1.8em;
  text-align: center;
}
.content h5 {
  font-weight: normal;
  letter-spacing: 0.4em;
  font-size: 2.4em;
  line-height: 1.8em;
  font-family: "HiraKakuProN-W3", sans-serif;
  text-align: center;
  margin-bottom: 100px;
}

p.contact {
  font-size: 1.4em;
  line-height: 1.8em;
  margin-top: 43px;
  letter-spacing: 0.01em;
  text-align: center;
}
p.contact em {
  font-weight: 800;
}
p.contact:last-of-type {
  margin-bottom: 0;
}

.padding-top20 {
  padding-top: 20px;
}

/* gray-canvas */

#canvas,
#canvas2,
#text {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fafafa;
}
#text {
  min-height: 100vh;
  width: 100vw;
  z-index: 1;
  color: #fff;
  /* text-transform: uppercase; */
  font-size: 8vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#text h1 {
  opacity: 0.9;
}

.title {
  margin-bottom: 80px;
}
.title.-access {
  margin-bottom: 50px;
}

.title p {
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  padding: 0 20px 4px;
}

p.text {
  font-size: 15px;
  line-height: 1.6em;
  margin-bottom: 1.6em;
  letter-spacing: 0.01em;
}
p.text:last-of-type {
  margin-bottom: 20px;
}

p.link {
  font-size: 18px;
  line-height: 1.6em;
  margin-bottom: 1.6em;
  letter-spacing: 0.1em;
}
p.link a {
  text-decoration: underline;
}
p.link a:hover {
  text-decoration: none;
}
p.link:last-of-type {
  margin-bottom: 0;
}

h5.-margintop {
  padding-top: 30px;
}

.pushbtn_all {
  text-align: center;
}
.pushbtn {
  display: inline-block;
  position: relative;
  /* width: 20%; */
  padding: 1.5em;
  text-align: center;
  text-decoration: none;
  background: #000;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 4px;
  margin-bottom: 0;
  line-height: 1.6em;
  font-size: 1.6em;
  font-family: "futura-bold", sans-serif;
  letter-spacing: 0.4em;
}
.pushbtn:hover {
  background: #ddd;

  color: #000;
}
.pushbtn:active {
  -webkit-transform: translate(10px, 10px);
  transform: translate(10px, 10px);
}
.pushbtn:active:after {
  border-bottom: solid 0 #d1d3d4;
  border-right: solid 0 #d1d3d4;
}

/* header  */
#header .inner {
  margin: 0 auto;
  width: 100%;
  padding: 0 6%;
}

.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 140px;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.header #logo {
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}

.header a {
  text-decoration: none;
}
.header.-trans {
  color: #231815;
  width: 100%;
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  padding: 16px 0;
  text-align: center;
  z-index: 100;
  background: transparent;
}
.header.-trans #logo {
  fill: #fff;
}
.header.-trans .header-language li a,
.header.-trans .header-navigation li a {
  color: #231815;
}
.header.-white {
  color: #231815;
  width: 100%;
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  padding: 16px 0;
  text-align: center;
  z-index: 100;
  background: #ffffff90;
}
.header.-white #logo {
  fill: #231815;
}
.header.-white .header-navigation li a {
  color: #231815;
}
.header .pp_menuButton {
  display: inline-block;
  position: relative;
  width: 26px;
  height: 26px;
  background-image: none;
}

.headerLogo {
  margin: 0;
  padding-top: 10px;
  float: left;
  text-align: left;
  width: 12%;
}
.headerLogo a {
  display: inline;
  background-image: none;
}
.headerLogo svg {
  height: 52px;
  width: 129px;
}

.header-navigation {
  float: right;
}
.header-navigation li {
  float: left;
  position: relative;
  padding-top: 11px;
  letter-spacing: 0.4em;
  font-size: 1.6em;
  font-family: "futura-bold", sans-serif;
  padding-left: 0;
}
.header-navigation li.-line1 {
  padding-top: 18px;
}
.header-navigation li span {
  display: block;
  font-size: 0.7em;
  font-weight: bold;
}
p.header-regist {
  float: right;
  padding-top: 10px;
}

.header-navigation li {
  margin-right: 30px;
  height: 65px;
}
.header-navigation li:hover .header-navigation-child {
  max-height: 250px;
  -webkit-box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.15);
}

.header-menu {
  display: none;
}

/* nav regist-button*/

.regist-button {
  background-color: #000;
  padding: 1rem;
  border-radius: 5px;
  right: 0;
  display: block;
  opacity: 1;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}
.regist-button img {
  width: 20px;
}
.regist-button:hover {
  opacity: 1;
  background-color: #67686b;
}

p.subjp-text {
  margin-bottom: 100px;
  padding-top: 200px;
  font-size: 2.4em;
  line-height: 1.8em;
  font-family: "HiraKakuProN-W3", sans-serif;
  letter-spacing: 0.4em;
  text-align: center;
}

.text-detail {
  font-size: 1.6em;
  line-height: 1.8em;
  margin-bottom: 30px;
  font-family: "HiraKakuProN-W3", sans-serif;
  letter-spacing: 0.4em;
}

.text_center {
  text-align: center;
  margin-bottom: 50px;
}

/* #main-image-company */

#main-image-company {
  width: 100%;
  position: relative;
  padding-top: 290px;
  padding-bottom: 220px;
}

#main-image-company .content h2 {
  margin-bottom: 60px;
  padding-top: 0;
}

#main-image-company .content h4 {
  text-align: center;
  margin-bottom: 100px;
  padding-top: 0;
  font-weight: 800;
  font-family: "HiraKakuStdN-W7", sans-serif;
  letter-spacing: 0.4em;
  font-size: 2em;
  line-height: 1.8em;
}

/* #column-container */
.column-container {
  position: relative;
  width: 70%;
  display: flex;
  margin: 0 auto 100px;
}
.column-container .column-half {
  float: left;
  width: 50%;
  display: block;
}

.column-container .column-half:first-child {
  padding-left: 0;
  width: 50%;
}
.column-container .column-half:last-child {
  padding-left: 6%;
  width: 50%;
  margin-bottom: 50px;
}
.column-container .column-half .address_icon {
  text-align: center;
  border-bottom: 1px solid #d1d3d4;
  padding-bottom: 30px;
}

.bk_egrey {
  background: #ededed;
  z-index: 1;
  position: relative;
}
.bk_grey {
  background: #ededed;
  border-radius: 10px;
  z-index: 1;
  position: relative;
}

.bk_white {
  background: #ffffff;
  border-radius: 10px;
  z-index: 1;
  position: relative;
}

/* dou-close */
.dou-close:after,
.dou-close:before {
  transition: 0.5s ease-in-out;
}

.dou-close:after,
.dou-close:before {
  z-index: -1;
}

.button-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.button-wrap {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.button-container .button-wrap a {
  position: relative;
  overflow: hidden;
  /* text-transform: uppercase; */
  color: #212121;
  border-radius: 50px;
  border: 1px solid #000;
  font-size: 1.6em;
  line-height: 1.8em;
  font-family: "HiraKakuStdN-W5", sans-serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-decoration: none;
  width: fit-content;
  float: none;
  margin: 0.8rem;
  padding: 1rem 3rem;
  display: inline-block;
}
.button-container .button-wrap a:hover {
  color: white;
}
.buttons {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

button {
  padding: 10px;
  border: none;
  cursor: pointer;
  background: transparent;
  border-right: 1px solid #000000;
  width: 10%;
  font-family: "futura-bold", Verdana, Meiryo, sans-serif;
}

button:last-child {
  padding: 10px;
  border: none;
  cursor: pointer;
  background: transparent;
  border-right: none;
}

button.active {
  color: #000000;
}
button.active::after {
  content: "　";
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  display: block;
  position: relative;
}
.dou-close:after,
.dou-close:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 100px solid #000;
}
.dou-close:before {
  right: -50px;
  border-right: 50px solid transparent;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.dou-close:after {
  left: -50px;
  border-left: 50px solid transparent;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.dou-close:hover:before {
  -webkit-transform: translateX(-40%);
  transform: translateX(-40%);
}
.dou-close:hover:after {
  -webkit-transform: translateX(40%);
  transform: translateX(40%);
}

@media screen and (max-width: 1440px) {
  .headerLogo {
    margin: 0;
    padding-top: 10px;
    float: left;
    text-align: left;
    width: 18%;
  }
  .content h2 {
    margin-bottom: 60px;
    padding-top: 0;
    font-size: 6em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
  }
  button {
    width: 20%;
    font-family: "futura-bold", Verdana, Meiryo, sans-serif;
    padding: 5px;
  }
  button:last-child {
    padding: 5px;
  }
}

@media screen and (max-width: 1024px) {
  .content h2 {
    margin-bottom: 30px;
    padding-top: 0;
    font-size: 5em;
    line-height: 1.2em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
  }
  .pushbtn {
    /* width: 30%; */
    padding: 1.5em;
    line-height: 1.6em;
    font-size: 1.6em;
  }

  .button-container .button-wrap a {
    margin: 0.5rem;

    padding: 1rem 2rem;
  }
}

@media screen and (max-width: 768px) {
  .content h2 {
    margin-bottom: 30px;
    padding-top: 0;
    font-size: 4em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
  }
  .content h3 {
    margin-bottom: 0;
    padding-top: 0;
    font-weight: 800;
    font-family: "HiraKakuStdN-W7", sans-serif;
    letter-spacing: 0.4em;
    font-size: 1.8em;
    line-height: 1.8em;
    text-align: center;
  }
  .content h5 {
    font-weight: normal;
    letter-spacing: 0.4em;
    font-size: 3em;
    line-height: 1.8em;
    font-family: "HiraKakuProN-W3", sans-serif;
    text-align: center;
    margin-bottom: 50px;
  }
  p.header-regist {
    display: none;
  }
  .headerLogo {
    float: inherit;
    text-align: center;
    width: 40%;
  }
  .header-menu {
    display: block;
  }
  .header-navigation {
    display: none;
    padding-right: 10px;
  }
  .pushbtn {
    /* width: 40%; */
    padding: 2em;
    font-size: 1.4em;
    line-height: 1.4em;
  }
  .text-detail {
    font-size: 1.4em;
    line-height: 1.8em;
    margin-bottom: 30px;
  }
  #main-image-company {
    width: 100%;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
  }
  #main-image-company .content h2 {
    margin-bottom: 30px;
    padding-top: 0;
    font-size: 4em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
  }

  #main-image-company .content h4 {
    margin-bottom: 100px;
    padding-top: 0;
    font-family: "HiraKakuProN-W3", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
    text-align: center;
    font-size: 1.8em;
    line-height: 1.8em;
  }

  /* column-container */
  .column-container {
    position: relative;
    width: 100%;
    display: block;
    margin-top: 0;
  }

  .column-container .column-half {
    float: left;
    width: 100%;
    display: block;
  }

  .column-container .column-half:first-child {
    padding-left: 0;
    width: 100%;
    margin-bottom: 50px;
  }
  .column-container .column-half:last-child {
    padding-left: 0;
    width: 100%;
    margin-bottom: 50px;
  }
  .column-container .column-half .address_icon {
    text-align: center;
    border-bottom: 1px solid #d1d3d4;
    padding-bottom: 30px;
  }
  .bk_egrey {
    background: #ededed;
    z-index: 1;
    position: relative;
  }

  .bk_grey {
    background: #ededed;
    border-radius: 10px;
    z-index: 1;
    position: relative;
  }
  .bk_grey::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: inherit;
    filter: blur(3px);
    z-index: -1;
    border-radius: 5px;
  }
  .bk_white {
    background: #ffffff;
    border-radius: 10px;
    z-index: 1;
    position: relative;
  }

  .bk_white::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: inherit;
    filter: blur(3px);
    z-index: -1;
    border-radius: 5px;
  }
  .dou-close:before,
  .dou-close:after {
    transition: 0.5s ease-in-out;
  }

  .dou-close:before,
  .dou-close:after {
    z-index: -1;
  }

  .button-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0rem;
  }
  .button-wrap {
    display: block;
  }

  .button-container .button-wrap a {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    /* text-transform: uppercase; */
    color: #212121;
    float: left;
    border-radius: 50px;
    border: 1px solid #000;
    font-size: 1.6em;
    line-height: 1.8em;
    font-family: "HiraKakuStdN-W5", sans-serif;
    letter-spacing: 0.4em;
    padding: 1em 4em;
    margin: 10px auto;
    text-align: center;
    text-decoration: none;
  }

  .button-container .button-wrap a:hover {
    color: white;
  }

  button {
    width: 20%;
    font-family: "futura-bold", Verdana, Meiryo, sans-serif;
  }

  .dou-close:after,
  .dou-close:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 100px solid #000;
  }
  .dou-close:before {
    right: -50px;
    border-right: 50px solid transparent;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .dou-close:after {
    left: -50px;
    border-left: 50px solid transparent;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  .dou-close:hover:before {
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
  }
  .dou-close:hover:after {
    -webkit-transform: translateX(40%);
    transform: translateX(40%);
  }
}

@media screen and (max-width: 480px) {
  .content {
    margin: 10px auto;
    width: 90%;
  }
  .content h2 {
    margin-bottom: 30px;
    padding-top: 0;
    font-size: 3.5em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
  }
  .content h3 {
    margin-bottom: 0;
    padding-top: 0;
    font-family: "HiraKakuStdN-W7", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
    font-size: 1.6em;
    line-height: 1.6em;
    text-align: center;
  }
  .content h5 {
    font-weight: normal;
    letter-spacing: 0.4em;
    font-size: 1.8em;
    line-height: 1.8em;
    font-family: "HiraKakuProN-W3", sans-serif;
    text-align: center;
    margin-bottom: 50px;
  }
  .content p.subjp-text {
    margin-bottom: 50px;
    padding-top: 100px;
    font-size: 1.8em;
    line-height: 1.6em;
    font-family: "HiraKakuProN-W3", sans-serif;
    letter-spacing: 0.4em;
    text-align: center;
  }
  .pushbtn {
    width: 80%;
    padding: 1.5em 0;
    font-size: 1.4em;
    line-height: 1.4em;
  }

  .text-detail {
    font-size: 1.4em;
    line-height: 1.8em;
    margin-bottom: 30px;
    font-family: "HiraKakuProN-W3", sans-serif;
    letter-spacing: 0.4em;
  }

  /* main-image-company */
  #main-image-company .content h2 {
    margin-bottom: 30px;
    padding-top: 0;
    font-size: 3.5em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
  }
  #main-image-company .content h4 {
    margin-bottom: 100px;
    padding-top: 0;
    font-family: "HiraKakuProN-W3", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
    text-align: center;
    font-size: 1.6em;
    line-height: 1.6em;
  }

  /* column-container */

  .column-container .column-half {
    float: left;
    width: 100%;
    display: block;
  }

  .column-container .column-half:first-child {
    padding-left: 0;
    width: 100%;
    margin-bottom: 50px;
  }
  .column-container .column-half:last-child {
    padding-left: 0;
    width: 100%;
    margin-bottom: 50px;
  }
  .column-container .column-half .address_icon {
    text-align: center;
    border-bottom: 1px solid #d1d3d4;
    padding-bottom: 30px;
  }
  .bk_egrey {
    background: #ededed;
    z-index: 1;
    position: relative;
  }
  .bk_grey {
    background: #ededed;
    border-radius: 10px;
    z-index: 1;
    position: relative;
  }
  .bk_grey::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: inherit;
    filter: blur(3px);
    z-index: -1;
    border-radius: 5px;
  }
  .bk_white {
    background: #ffffff;
    border-radius: 10px;
    z-index: 1;
    position: relative;
  }

  .bk_white::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: inherit;
    filter: blur(3px);
    z-index: -1;
    border-radius: 5px;
  }
  .button-container .button-wrap a {
    padding: 1em 0.5em;
    font-size: 1.4em;
    line-height: 1.8em;
    font-family: "HiraKakuStdN-W5", sans-serif;
    letter-spacing: 0.2em;
  }
}

/* ========================================================================== 
 *
 * INDEX
 *
========================================================================== */

/* top_main */

#top_main {
  position: relative;
  padding-top: 290px;
  padding-bottom: 220px;
}
#top_main .column-container {
  position: relative;
  width: 100%;
  margin: auto;
  display: block;
}

#top_main h3 {
  padding-top: 100px;
  margin-bottom: 0;
}

#top_main .content h2 {
  margin-bottom: 30px;
  font-size: 5em;
  line-height: 1.4em;
  font-weight: 800;
  letter-spacing: 0.4em;
}
#top_main .content h2:last-child {
  margin-bottom: 100px;
}

#top_main .content {
  padding-bottom: 0;
}

/* #main-image */

#main-image {
  width: 100%;
  position: relative;
  padding-top: 290px;
  padding-bottom: 220px;
}
#main-image .content h2 {
  margin-bottom: 60px;
  padding-top: 0;
}

/* #news */
#news {
  width: 100%;
  position: relative;
  padding-top: 290px;
  padding-bottom: 220px;
}

#news .content h3 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  text-align: left;
}

#news .main {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
/* #news .main::after {
    content: "";
    clear: both;
    display: block;
} */
#news .main li {
  /* float: left; */
  /* width: calc(33.33% - 34px); */
  /* display: block; */
  /* margin-right: 50px; */
  /* margin-top: 50px; */
}
#news .main li:last-of-type {
  margin-right: 0;
}
#news .main li img {
  width: 100%;
}
#news .main li p {
  font-size: 1.6em;
  line-height: 1.8em;
  padding-top: 10px;
}

#news .text-detail {
  font-size: 1.6em;
  line-height: 1.8em;
  margin-bottom: 30px;
  font-family: "HiraKakuProN-W3", sans-serif;
  letter-spacing: 0.4em;
}

#news .date_line {
  color: #000;
  width: 100%;
  padding: 20px 0;
  font-size: 1.2em;
  font-family: "futura-bold";
  letter-spacing: 0.4em;
}
#news .label {
  background-color: #000;
  color: #fff;
  padding: 2px 10px;
  margin-right: 10px;
  font-family: "futura-bold";
  letter-spacing: 0.4em;
}
.small_title {
  background-color: #000;
  color: #fff;
  padding: 2px 10px;
  font-family: "HiraKakuProN-W3", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.4em;
  margin: 0 10px 10px 0;
  width: fit-content;
  border-radius: 5px;
}
.small_title_area .small_title:last-child {
  margin: 0 10px 30px 0;
}

/* .business */

.business {
  width: 100%;
  position: relative;
  padding-top: 290px;
  padding-bottom: 220px;
}

.business-box:nth-child(odd) {
  width: 80%;
  display: flex;
  margin-top: 0;
  background: #fff;
  float: right;
  margin-bottom: 140px;
}
.business-box:nth-child(even) {
  width: 80%;
  display: flex;
  margin-top: 0;
  background: #fff;
  float: left;
  margin-bottom: 140px;
}

.business-box:last-child {
  margin-bottom: 100px;
}

.business-text {
  width: 50%;
  text-align: center;
  padding: clamp(4.5rem, 8.15625vw, 6.125rem) clamp(2rem, 4.25vw, 3rem);
}
.business-title {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 8em;
  line-height: 1.4em;
  font-family: "futura-bold", sans-serif;
  font-weight: 800;
  color: #000;
  text-align: center;
}
p.business-subtitle {
  margin-bottom: 150px;
  padding-top: 150px;
  font-size: 3em;
  line-height: 1.8em;
  font-family: "HiraKakuProN-W3", sans-serif;
  letter-spacing: 0.4em;
  text-align: center;
}
.business-img {
  width: 50%;
}
.business-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business .link-1 a {
  /* text-transform: uppercase; */
  color: #000;
  text-decoration: none;
  position: relative;
  display: block;
  line-height: 1.6em;
  font-size: 1.6em;
  font-family: "futura-bold", sans-serif;
  letter-spacing: 0.4em;
  margin-bottom: 0;
}
[class^="link-"] {
  display: inline-block;
  margin: 2em;
}
.business .link-1 a:after,
.business .link-1 a:before {
  content: "";
  border-bottom: solid 1px #000;
  position: absolute;
  bottom: 0;
  width: 0;
  top: 30px;
}

.business .link-1 a:before {
  left: 0;
}

.business .link-1 a:hover:before {
  width: 100%;
}

.business .link-1 a:before {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.business .link-1 img {
  width: 20px;
  margin: 2px 0 0 20px;
}

.business .content h3 {
  margin-bottom: 100px;
}

/* #recruit */
#recruit {
  width: 100%;
  background-image: url("/img/recruit/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
  position: relative;
  padding-top: 290px;
  padding-bottom: 220px;
}
#recruit .content h2 {
  padding-top: 0;
}
#recruit .content p.subjp-text {
  color: #fff;
}
#recruit .content h3 {
  margin-bottom: 0;
  color: #fff;
  font-family: "HiraKakuStdN-W3", sans-serif;
  letter-spacing: 0.4em;
}

/* contact */
#contact {
  width: 100%;
  position: relative;
  padding-top: 290px;
  padding-bottom: 220px;
}

#contact .content h2 {
  padding-top: 0;
}

.contact_tel {
  display: block;
  margin: 30px auto;
  font-size: 1.6em;
  line-height: 1.6em;
  font-family: "HiraKakuProN-W3", sans-serif;
  letter-spacing: 0.4em;
  text-align: center;
}
.contact_tel a {
  text-decoration: none;
}

.contact_tel img {
  width: 20px;
  margin: 0 10px 0 0;
}

/* footer */
footer {
  padding: 100px 0;
  background-color: #000;
}
footer .copyright .footer_all {
  width: 100%;
  display: inline-flex;
}

footer .copyright {
  color: #fff;
  line-height: 10px;
  font-size: 10px;
  text-align: center;
}
footer .copyright .footer_logo {
  text-align: left;
  width: 50%;
}
footer .copyright .footer_content {
  float: right;
  width: 50%;
  line-height: 1.4em;
  text-align: right;
}
footer .copyright .footer_content ul {
  margin-bottom: 260px;
}
footer .copyright .footer_content ul li:first-child {
  margin-top: 0;
  margin-bottom: 30px;
}
footer .copyright .footer_content ul li {
  margin-top: 30px;
  margin-bottom: 30px;
  letter-spacing: 0.4em;
  font-size: 2em;
  line-height: 1.8em;
  font-family: "futura-bold", sans-serif;
}

footer .copyright .footer_content ul li a {
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.6s ease;
}
footer .copyright .footer_content ul li.small_text {
  letter-spacing: 0.4em;
  font-size: 1.2em;
  line-height: 1.2em;
}

footer .copyright img {
  width: 50%;
}

@media screen and (max-width: 1440px) {
  #top_main .content h2 {
    margin-bottom: 40px;
    font-size: 3.5em;
    line-height: 1em;
  }
  p.business-subtitle {
    margin-bottom: 100px;
    padding-top: 100px;
    font-size: 2.4em;
    line-height: 1.8em;
  }
  footer .copyright img {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  #top_main .content h2 {
    margin-bottom: 30px;
    font-size: 3em;
    line-height: 1em;
    font-weight: 800;
    letter-spacing: 0.4em;
  }
  .column-container {
    position: relative;
    width: 100%;
    display: flex;
    margin: auto;
  }
  footer .copyright img {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: block !important;
  }
  ul.new_area {
    display: block;
  }
  #top_main {
    position: relative;
    padding-top: 200px;
    padding-bottom: 140px;
  }

  #top_main .content h2 {
    margin-bottom: 60px;
    font-size: 3.5em;
    line-height: 1em;
    font-weight: 800;
    letter-spacing: 0.4em;
  }

  .text-detail {
    font-size: 1.6em;
    line-height: 1.8em;
    margin-bottom: 30px;
  }
  #news .main {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
  }
  #news .content h3 {
    text-align: left;
  }

  /* #news .main::after {
        content: "";
        clear: both;
        display: block;
    } */
  #news .main li {
    float: left;
    width: 100%;
    display: block;
    margin-right: 0;
    padding-bottom: 40px;
  }
  /* #news .main li:last-child {
    padding-bottom: 0;
  } */

  #news .main li h4 {
    width: 100%;
    display: inline-block;
  }
  #news .main li h4 img {
    width: 100%;
  }
  #news .main li p {
    font-size: 1.6em;
    line-height: 1.8em;
    font-family: "HiraKakuProN-W3", sans-serif;
  }

  .business {
    width: 100%;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .business .content h2 {
    padding-top: 0;
  }
  .business .content h3 {
    padding-bottom: 50px;
    margin-bottom: 0;
  }
  .business-box:nth-child(odd) {
    width: 100%;
    display: flex;
    margin-top: 0;
    background: #fff;
    float: right;
    margin-bottom: 80px;
  }
  .business-box:nth-child(even) {
    width: 100%;
    display: flex;
    margin-top: 0;
    background: #fff;
    float: left;
    margin-bottom: 80px;
  }

  .business-box:last-child {
    margin-bottom: 50px;
  }

  .business-text {
    width: 50%;
    text-align: center;
    padding: clamp(2.5rem, 4.15625vw, 2.125rem) clamp(1rem, 2.25vw, 1rem);
  }
  .business-title {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 3.5em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;

    color: #000;
    text-align: center;
  }
  p.business-subtitle {
    margin-bottom: 50px;
    padding-top: 50px;
    font-size: 2em;
    line-height: 1.8em;
    font-family: "HiraKakuProN-W3", sans-serif;
    letter-spacing: 0.4em;
    text-align: center;
  }
  .business-img {
    width: 50%;
  }
  .business-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #recruit {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  #recruit .content h3 {
    margin-bottom: 50px;
    color: #fff;
  }

  #top_main {
    position: relative;
    background-image: none;
    width: 100%;
  }
  #top_main .content {
    padding-left: 0;
    padding-right: 0;
  }
  #top_main .content h2:first-child {
    padding-top: 0;
  }
  #top_main .content h2 {
    padding-top: 20px;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 4em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
    color: #000;
    text-align: left;
  }
  #top_main h3 {
    padding-top: 0;
    text-align: left;
  }
  #top_main .image {
    position: relative;
    top: inherit;
    right: inherit;
    bottom: inherit;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 600px;
    background-image: url("../img/top_main/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  #top_main p.text {
    padding-left: 20px;
    padding-right: 20px;
  }
  #top_main dl dt {
    clear: both;
    float: left;
    margin-bottom: 4px;
    width: 50px;
    text-align: right;
    padding-left: 20px;
  }
  #top_main dl dd {
    padding-left: 30px;
    width: calc(100% - 50px);
  }

  #main-image {
    width: 100%;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
  }
  #main-image .main {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: 350px;
    max-width: 100%;
  }

  #main-image .main h1 {
    padding: 85px 15px 50px;
    width: 100%;
  }

  #main-image .content h2 {
    margin-bottom: 30px;
    padding-top: 0;
    font-size: 4em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
  }

  #main-image .content h4 {
    margin-bottom: 100px;
    padding-top: 0;
    font-family: "HiraKakuProN-W3", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
    text-align: center;
    font-size: 1.8em;
    line-height: 1.8em;
  }
  #main-image .content p.subjp-text {
    margin-bottom: 50px;
    padding-top: 100px;
    font-size: 2.4em;
    line-height: 1.8em;
    font-family: "HiraKakuProN-W3", sans-serif;
    letter-spacing: 0.4em;
    text-align: center;
  }

  #news {
    width: 100%;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  #recruit .content h3 {
    margin-bottom: 0;
    color: #fff;
  }
  #recruit .content h2 {
    margin-bottom: 30px;
    padding-top: 0;
    font-size: 4em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
  }

  #recruit .content p.subjp-text {
    color: #fff;
    margin-bottom: 50px;
    padding-top: 100px;
  }

  #contact {
    width: 100%;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  #contact .content h2 {
    margin-bottom: 30px;
    padding-top: 0;
    font-size: 4em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
  }
  #contact .content p.subjp-text {
    margin-bottom: 50px;
    padding-top: 100px;
    font-size: 2.4em;
    line-height: 1.8em;
    font-family: "HiraKakuProN-W3", sans-serif;
    letter-spacing: 0.4em;
    text-align: center;
  }
  footer .copyright img {
    width: 70%;
  }
}

@media screen and (max-width: 480px) {
  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: block !important;
  }

  /* top_main */
  #top_main {
    position: relative;
    padding-top: 200px;
    padding-bottom: 140px;
  }
  #top_main .content h2 {
    padding-top: 20px;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 3em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
    color: #000;
    text-align: left;
  }
  #top_main .content h2:last-child {
    margin-bottom: 0px;
  }
  #top_main h3 {
    padding-top: 0;
    text-align: left;
    letter-spacing: 0.4em;
    font-size: 2em;
    line-height: 2em;
  }

  #main-image {
    width: 100%;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
  }
  #main-image .main {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: 350px;
    max-width: 100%;
  }
  /*main-image */
  #main-image .main h1 {
    padding: 85px 15px 50px;
    width: 100%;
  }

  #main-image .content h2 {
    margin-bottom: 30px;
    padding-top: 0;
    font-size: 3.5em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
  }

  #main-image .content h4 {
    margin-bottom: 100px;
    padding-top: 0;
    font-family: "HiraKakuProN-W3", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
    text-align: center;
    font-size: 1.8em;
    line-height: 1.8em;
  }
  #main-image .content p.subjp-text {
    margin-bottom: 50px;
    padding-top: 100px;
    font-size: 1.8em;
    line-height: 1.6em;
    font-family: "HiraKakuProN-W3", sans-serif;
    letter-spacing: 0.4em;
    text-align: center;
  }

  /* news */

  #news {
    width: 100%;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
  }
  #news .main {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
  }

  #news .content h3 {
    text-align: left;
  }
  #news .main .news_last {
    position: relative;
    top: 50px;
  }
  #news .main li {
    float: left;
    width: 100%;
    display: block;
    margin-right: 0;
    padding-bottom: 60px;
    margin-top: 0px;
  }
  /* #news .main li:last-child {
    padding-bottom: 0;
  } */

  #news .main li h4 {
    width: 100%;
    display: inline-block;
  }
  #news .main li h4 img {
    width: 100%;
  }
  #news .main li p {
    font-size: 1.4em;
    line-height: 1.8em;
    padding-top: 10px;
    font-family: "HiraKakuProN-W3", sans-serif;
  }
  #news .text-detail {
    margin-bottom: 10px;
    font-size: 1.4em;
    line-height: 1.8em;
  }

  /* business */
  .business {
    width: 100%;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .business .content h2 {
    padding-top: 0;
  }
  .business-box:nth-child(odd) {
    width: 100%;
    display: flex;
    margin-top: 0;
    background: #fff;
    float: right;
    margin-bottom: 80px;
  }
  .business-box:nth-child(even) {
    width: 100%;
    display: flex;
    margin-top: 0;
    background: #fff;
    float: left;
    margin-bottom: 80px;
  }

  .business-box:last-child {
    margin-bottom: 50px;
  }

  .business-text {
    width: 50%;
    text-align: center;
    padding: clamp(2.5rem, 4.15625vw, 2.125rem) clamp(1rem, 2.25vw, 1rem);
  }
  .business-title {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 3.5em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;

    color: #000;
    text-align: center;
  }
  .business .content h3 {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 50px;
    font-family: "HiraKakuStdN-W7", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
    font-size: 1.6em;
    line-height: 1.6em;
    text-align: center;
  }
  p.business-subtitle {
    margin-bottom: 50px;
    padding-top: 50px;
    font-size: 1.6em;
    line-height: 1.8em;
    font-family: "HiraKakuProN-W3", sans-serif;
    letter-spacing: 0.2em;
    text-align: center;
  }
  .business-img {
    width: 50%;
  }
  .business-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .business .link-1 a {
    /* text-transform: uppercase; */
    color: #000;
    text-decoration: none;
    position: relative;
    display: block;
    line-height: 1.6em;
    font-size: 1.2em;
    font-family: "futura-bold", sans-serif;
    letter-spacing: 0.1em;
    margin-bottom: 0;
  }
  [class^="link-"] {
    display: inline-block;
    margin: 2em 0em;
  }

  .business .link-1 img {
    width: 15px;
    margin: 2px 0 0 5px;
  }

  /* recruit */

  #recruit .content h3 {
    margin-bottom: 50px;
    color: #fff;
  }

  #recruit {
    width: 100%;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
  }
  #recruit .content h3 {
    margin-bottom: 0;
    color: #fff;
  }
  #recruit .content h2 {
    margin-bottom: 30px;
    padding-top: 0;
    font-size: 3.5em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
  }

  /* contact */
  #contact {
    width: 100%;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  #contact .content h2 {
    margin-bottom: 30px;
    padding-top: 0;
    font-size: 3.5em;
    line-height: 1.4em;
    font-family: "futura-bold", sans-serif;
    font-weight: 800;
    letter-spacing: 0.4em;
  }
  #contact .content p.subjp-text {
    margin-bottom: 50px;
    padding-top: 100px;
    font-size: 1.8em;
    line-height: 1.6em;
    font-family: "HiraKakuProN-W3", sans-serif;
    letter-spacing: 0.4em;
    text-align: center;
  }
  .contact_tel {
    font-size: 1.4em;
    line-height: 1.8em;
  }

  /* footer */
  footer {
    padding: 100px 0;
    background-color: #000;
  }
  footer .copyright .footer_all {
    width: 100%;
    display: block;
  }

  footer .copyright {
    color: #fff;
    line-height: 10px;
    font-size: 10px;
    text-align: center;
  }
  footer .copyright .footer_logo {
    text-align: center;
    width: 100%;
    margin-bottom: 100px;
  }
  footer .copyright .footer_content {
    float: none;
    width: 100%;
    line-height: 1.4em;
    text-align: center;
  }
  footer .copyright .footer_content ul {
    margin-bottom: 200px;
  }
  footer .copyright .footer_content ul li:first-child {
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: 0.4em;
    font-size: 1.8em;
    line-height: 1.6em;
  }
  footer .copyright .footer_content ul li {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  footer .copyright .footer_content ul li.small_text {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  footer .copyright img {
    width: 70%;
  }
}
