@charset "utf-8";


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Site Header
	4. 	Site Footer
	5. 	Top Page
	6. 	Business Page
	7. 	Works Page
	8.  Recruit Page

----------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */


*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure, 
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section { 
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000; 
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid #333;
  margin: 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/* -------------------------------------------------------------------------- */

/*	1. Document Setup
/* -------------------------------------------------------------------------- */


body {
  background-color: #fff;
  color: #000;
  font-size: 13px;
  font-family: 'Helvetica Neue','Arial','Noto Sans JP', sans-serif;
}

#wrapper {
  position: relative;
}


/* -------------------------------------------------------------------------- */

/*	2. Element Base
/* -------------------------------------------------------------------------- */


img {
  max-width: 100%;
}

.container {
  width: 85%;
  margin: auto;
}

.sp-dsp {
  display: block;
}

.pc-dsp {
  display: none;
}

.sec-title {
  margin-bottom: 20px;
  padding: 13px 0 13px 18px;
  border-left: solid 2px #000;
  letter-spacing: 3px;
}

.text {
  letter-spacing: 2.5px;
  line-height: 2;
}

.text-bold {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 3px;
  white-space: nowrap;
}

@media screen and (max-width: 360px) {
  /* for iPhone SE and etc. */
  .text-bold {
    font-size: 19px;
  }
}

.page-title-svg {
  position: absolute;
  top: 0;
  left: 7.5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  width: auto;
  height: 34px;
}

.page-image {
  position: relative;
  width: 100%;
  height: 260px;
  margin-bottom: 20px;
  padding-top: 60px;
}


/* -------------------------------------------------------------------------- */

/*	3. Site Header
/* -------------------------------------------------------------------------- */


header {
  height: 80px;
  background-color: #fff;
}

/* Header Logo ------------------------------- */

.header-logo {
  position: fixed;
  top: 25px;
  left: 5%;
  z-index: 1000;
  width: 180px;
}

.header-logo img {
  width: 100%;
  height: auto;
}


/* Menu Button ------------------------------- */

.menu-trigger,
.menu-trigger .line {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.menu-trigger {
  position: fixed;
  top: 25px;
  right: 5%;
  z-index: 999;
  width: 46px;
  height: 24px;
}

.menu-trigger .line {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.menu-trigger .line01 {
  top: 0;
}

.menu-trigger .line02 {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.menu-trigger .line03 {
  right: 0;
  bottom: 0;
}

/* Menu Button Open */

.menu-trigger.active .line02 {
  opacity: 0;
}

.menu-trigger .line01 {
  -webkit-animation: menu-bar01 .75s forwards;
  animation: menu-bar01 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(25deg);
  }
  50% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(25deg);
    transform: translateY(-50%) rotate(25deg);
  }
  50% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

.menu-trigger .line02 {
  -webkit-transition: all .25s .25s;
  transition: all .25s .25s;
  opacity: 1;
}

.menu-trigger .line03 {
  -webkit-animation: menu-bar02 .75s forwards;
  animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
  0% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-25deg);
    width: 100%;
  }
  50% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(0);
    width: 100%;
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar02 {
  0% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-25deg);
    transform: translateY(50%) rotate(-25deg);
    width: 100%;
  }
  50% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(0);
    transform: translateY(50%) rotate(0);
    width: 100%;
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

.menu-trigger.active .line01 {
  -webkit-animation: active-menu-bar01 .75s forwards;
  animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0);
  }
  100% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(25deg);
  }
}

@keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
  }
  100% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(25deg);
    transform: translateY(-50%) rotate(25deg);
  }
}

.menu-trigger.active .line02 {
  opacity: 0;
}

.menu-trigger.active .line03 {
  -webkit-animation: active-menu-bar03 .75s forwards;
  animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(0);
    width: 100%;
  }
  100% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-25deg);
    width: 100%;
  }
}

@keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(0);
    transform: translateY(50%) rotate(0);
    width: 100%;
  }
  100% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-25deg);
    transform: translateY(50%) rotate(-25deg);
    width: 100%;
  }
}


/* Menu Contents ----------------------------- */

.header-menu {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 998;
  width: 100%;
  width: calc(100% - 10% - 46px);
  height: 100vh;
  background-color: #fff;
/*
  -webkit-transition: .5s all;
  transition: .5s all;
*/
}

.header-menu.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.header-menu-wrap {
  position: relative;
  height: 100%;
  margin-right: 18.75px;
  margin-right: calc(100vw * 0.05);
  padding-top: 120px;
  padding-left: 18.75px;
  padding-left: calc(100vw * 0.05);
}

.header-menu-contents {
  margin-bottom: 50px;
}

.menu-title {
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: solid 1px #aaa;
  color: #aaa;
}

.header-menu ul li {
  margin-bottom: 12px;
}

.header-menu ul li a {
  color: #000;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.5;
}

header small {
  position: absolute;
  bottom: 20px;
  left: 18.75px;
  left: calc(100vw * 0.05);
  color: #aaa;
}

.overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 997;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  opacity: 0;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.overlay.visible {
  display: block;
  opacity: 1;
}


/* -------------------------------------------------------------------------- */

/*	4. Site Footer
/* -------------------------------------------------------------------------- */


footer {
  padding: 60px 0 20px;
}

.top footer {
  padding-top: 0;
}


/* Footer Logo ------------------------------- */

.footer-logo {
  width: 180px;
  margin-bottom: 10px;
}

.footer-info {
  margin-bottom: 30px;
  font-size: 11px;
  letter-spacing: .5px;
  line-height: 1.5;
}


/* Footer Menu ------------------------------- */

.footer-menu {
  margin-bottom: 40px;
}

.footer-menu li {
  margin-bottom: 3px;
}

.footer-menu a {
  display: block;
  position: relative;
}

.footer-menu a::after {
  content: "";
  display: block;
  padding-top: 100px;
}

.footer-menu img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;'
}

.footer-menu span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  white-space: nowrap;
}


/* Credit ------------------------------------ */

footer small {
  display: block;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  text-indent: 1px;
}


/* -------------------------------------------------------------------------- */

/*	5. Top Page
/* -------------------------------------------------------------------------- */


/* Common ------------------------------------ */

.read-more {
  display: inline-block;
}

.read-more span {
  margin-right: 15px;
  color: #000;
  font-size: 16px;
  letter-spacing: 2px;
  vertical-align: middle;
}

.triangle {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  border: solid 1px #000;
  border-radius: 50%;
  vertical-align: middle;
}

.triangle::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: solid 7px transparent;
  border-left: solid 12px #000;
}


/* First View -------------------------------- */

.top header {
  margin-bottom: 90px;
}

.first-view {
  margin-bottom: 30px;
}

.catch-phrase {
  margin-bottom: 5px;
  text-align: center;
  text-indent: 3px;
}

.fv-img {
  width: 100vw;
  height: 80vh;
  height: calc(var(--vh, 1vh) * 100 - 197px);
  background: url(../images/first-view_index.jpg) center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 360px) {
  /* for iPhone SE and etc. */
  .fv-img {
    height: 80vh;
    height: calc(var(--vh, 1vh) * 100 - 194px);
  }
}


/* Top Business ------------------------------ */

.top-business {
  margin-bottom: 60px;
}

.policy {
  margin-bottom: 30px;
}

.policy p {
  margin-bottom: 15px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.top-business .text {
  margin-bottom: 20px;
}

.top-business .read-more {
  margin-bottom: 35px;
}

.top-business-img {
  position: relative;
  width: 100%;
  height: 400px;
  background: url(../images/business-sample_index.jpg) 20% center no-repeat;
  background-size: cover;
}


/* Fade In */

.text-sj.sp-dsp {
  position: absolute;
  right: -10px;
  bottom: 40px;
  height: 420px;
}

.text-sj.sp-dsp img {
  width: auto;
  height: 100%;
}

.text-wks {
  position: absolute;
  bottom: -29px;
  left: 0;
  width: 220px;
}

.fadein {
  opacity : 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein-text-sj {
  opacity : 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein-text-wks {
  opacity : 0;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}


/* Top Works --------------------------------- */

.top-works {
  margin-bottom: 40px;
  overflow: hidden;
}

.top-works .text-bold {
  margin-bottom: 30px;
}

.works-thumb {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 3px;
}

.works-thumb:last-child {
  margin-bottom: 20px;
}

.works-thumb::after {
  content: "";
  display: block;
  padding-top: 100%;
}

.works-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.fadein-thumb {
  opacity : 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.top-works .read-more {
  float: right;
}


/* Top Recruit ------------------------------- */

.top-recruit {
  padding-bottom: 40px;
}

.top-recruit-img {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  height: 530px;
  margin-bottom: 30px;
  padding-top: 30px;
  background: url(../images/recruit_background.jpg) center center no-repeat;
  background-size: cover;
}

.top-recruit .text {
  margin-bottom: 40px;
}

/* Entry Button */

.entry-btn {
  text-align: center;
}

.entry-btn a {
  display: inline-block;
  padding: 15px 20px;
  border: solid 1px #000;
  border-radius: 5px;
  color: #000;
  font-size: 16px;
  letter-spacing: 2px;
  text-indent: 2px;
}

.entry-btn span {
  margin-right: 10px;
}


/* -------------------------------------------------------------------------- */

/*	6. Business Page
/* -------------------------------------------------------------------------- */


.business header {
  margin-bottom: 50px;
}

.business footer {
  padding-top: 60px;
}

.page-outline {
  margin-bottom: 45px;
}

.business .page-image {
  background: url(../images/first-view_business.jpg) top center no-repeat;
  background-size: 200%; /* 要確認 */
}

.business-img {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  height: 240px;
  margin-bottom: 40px;
}

.business-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover'
}

.business-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.business-name {
  width: 58px;
  padding: 0 30px 0 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 3px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.business-contents .text {
  padding: 0 0 15px 30px;
  border-left: solid 1px #000;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.issoku, .uchikomi {
  margin-bottom: 50px;
}


/* Process ----------------------------------- */

.process {
  padding: 40px 0 50px;
  background-color: #f9f9f9;
}

.process h2 {
  margin-bottom: 45px;
}

.process h2 img {
  width: 228px;
  margin: auto;
}

.process-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.part_06.process-part {
  margin-bottom: 0;
}

.number {
  font-size: 32px;
  font-family: 'DIN Alternate','Segoe UI',sans-serif;
  white-space: nowrap;
}

.number span {
  display: inline-block;
  width: 30px;
  margin: 5px 10px 0 0;
  border-top: solid 1px #000;
  vertical-align: top;
}

.process-contents {
  padding: 3px 7.5% 0 15px;
}

.process-contents h3,
.process-contents h3 span {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.part_01 .text {
  margin-bottom: 20px;
}

.contact-btn a {
  display: block;
  padding: 12px 0;
  border: solid 1px #000;
  border-radius: 3px;
  color: #000;
  font-size: 16px;
  letter-spacing: 3px;
  text-align: center;
  text-indent: 3px;
}


/* -------------------------------------------------------------------------- */

/*	7. Works Page
/* -------------------------------------------------------------------------- */


.works header {
  margin-bottom: 50px;
}

.works main {
  position: relative;
  padding: 60px 0 60px;
  background-color: #f9f9f9;
}

.works .sec-title {
  margin-bottom: 50px;
}


/* Example Item ------------------------------ */

.example-item {
  padding-top: 140px;
  margin: -140px 0 50px;
  opacity : 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.example-item.oldest {
  margin-bottom: 0;
}

.example-img {
  margin-bottom: 15px;
}

.example-img img {
  width: 100%;
}

.example-info {
  margin-bottom: 15px;
}

.example-info p {
  display: inline-block;
  margin-right: 2px;
  padding: 6px 12px;
  border: solid 1px #555;
  border-radius: 3px;
  font-size: 12px;
  letter-spacing: 1px;
  text-indent: 1px;
}


/* -------------------------------------------------------------------------- */

/*	7. About Page
/* -------------------------------------------------------------------------- */


.about header {
  margin-bottom: 50px;
}

.about .page-image {
  z-index: -4;
  margin-bottom: 45px;
  background: url(../images/about_background.jpg) center center no-repeat;
  background-size: cover; /* 要確認 */
}

.wht-layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .5);
}


/* About Company ----------------------------- */

.about-nemoto {
  margin-bottom: 100px;
}

.about-item {
  padding: 20px 0;
  border-bottom: solid 1px #d7dde0;
}

.about-item:first-child {
  border-top: solid 1px #d7dde0;
}

.about-item dt {
  margin-bottom: 9px;
  color: #888;
  letter-spacing: 1px;
  line-height: 2;
}

.about-item dd {
  letter-spacing: 1px;
  line-height: 2;
}

/* Map */

.map-wrap {
  padding-top: 20px;
}

.jimusho {
  padding-bottom: 28px;
  border-bottom: solid 1px #d7dde0;
}

.doba {
  padding: 20px 0 28px;
  border-bottom: solid 1px #d7dde0;
}

.map-name {
  margin-bottom: 9px;
  color: #888;
  letter-spacing: 1px;
  line-height: 2;
}

.google-map {
  position: relative;
  width: 100%;
}

.google-map::after {
  content: "";
  display: block;
  padding-top: 100%;
}

.google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 576px) {
    .google-map::after {
        padding-top: 62.5%;
    }
}

@media screen and (min-width: 768px) {
    .google-map::after {
        padding-top: 50%;
    }
}

@media screen and (min-width: 1200px) {
    .google-map::after {
        padding-top: 40%;
    }
}


/* Contact ----------------------------------- */

#anchor {
  padding-top: 120px;
  margin-top: -120px;
}

#contact {
  position: relative;
  padding: 60px 0 50px;
  background-color: #f9f9f9;
}

.form-row {
  display: block;
  padding: 25px 0 30px;
}

.form-head {
  width: 100%;
  margin-bottom: 13px;
}

.form-label {
  letter-spacing: 2px;
}

.form-detail {
  width: 100%;
}

.form-input {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border: solid 1px #ccc;
  border-radius: 5px;
  font-size: 13px;
  letter-spacing: 2.2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

.form-input::-webkit-input-placeholder {
  color: #999;
}

.form-input:-ms-input-placeholder {
  color: #999;
}

.form-input::placeholder {
  color: #999;
}

.form-textarea {
  min-height: 100px;
  resize: none;
}

.icon-required {
  color: #f56060;
}

.attention {
  margin-top: 7px;
  color: #444;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 1.4;
}

.submit-btn {
  margin-top: 30px;
}

.submit-btn input {
  display: block;
  width: 230px;
  height: 50px;
  margin: auto;
  padding: 12px 0;
  border-radius: 50px;
  background-color: #222;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


/* Radio Button */

.form-radio {
  display: none;
}

.form-head.radio-title {
  margin-bottom: 19px;
}

.radio-label {
  margin-right: 35px;
}

.form-radio-parts {
  position: relative;
  padding-left: 25px;
  letter-spacing: 2px;
  vertical-align: middle;
}

.form-radio-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border: 1px solid #333;
  border-radius: 50%;
  background-color: #fff;
}

.form-radio:checked + .form-radio-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-color: #333;
  border-radius: 50%;
}


/* Confirm ----------------------------------- */


.confirm main {
  padding: 30px 0 50px;
}

.confirm-item {
  display: block;
  padding: 25px 0 30px;
  border-bottom: solid 1px #ccc;
}

.confirm-attention {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  line-height: 2;
  background-color: #f8f8f8;
}

.confirm-item dt {
  margin-bottom: 19px;
  color: #888;
  letter-spacing: 2px;
}

.confirm-item dd {
  letter-spacing: 2.2px;
}

.confirm .submit-btn {
  margin-top: 60px;
}


/* Mailto ------------------------------------ */


.mailto main {
  padding: 30px 0 10px;
}

.mailto-attention {
  margin-bottom: 50px;
  letter-spacing: 2px;
  line-height: 2;
}

.back-home a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 230px;
  height: 50px;
  margin: auto;
  padding: 12px 0;
  border-radius: 50px;
  background-color: #222;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.5px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}


/* -------------------------------------------------------------------------- */

/*	7. Recruit Page
/* -------------------------------------------------------------------------- */


.recruit header {
  height: 0;
}

.recruit-main-img {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: url(../images/recruit_background.jpg) no-repeat;
  background-position: left 50%;
  background-size: cover;
}

.recruit-main-text {
  position: absolute;
  top: 40%;
}

.recruit-main-text img:first-child {
  padding: 0 5% 0 20%;
  width: 100%;
  height: auto;
}

.recruit-main-text img:last-child {
  position: absolute;
  bottom: -170%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
  height: auto;
}

.recruit-lead {
  width: 85%;
  margin: auto;
  padding: 40px 0 60px;
  background-color: #fff;
}

.recruit-img {
  position: relative;
  width: 80%;
  height: 400px;
  margin-bottom: 130px;
  background: url(../images/description_background.jpg) center center no-repeat;
  background-size: cover;
}

.text-dsc.sp-dsp {
  position: absolute;
  top: -20px;
  right: 0;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  height: 450px;
}

.text-dsc.sp-dsp img {
  height: 100%;
}

.cursive-dsc {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(70%);
  transform: translateY(70%);
  width: 240px;
}

.cursive-dsc img {
  width: 100%;
  height: auto;
}


/* Conditions -------------------------------- */

.conditions {
  padding: 50px 7.5%;
  background-color: #f9f9f9;
}

.conditions .sec-title {
  margin-bottom: 0;
}

.cond-item {
  padding: 35px 20px 20px;
  border-bottom: solid 1px #aaa;
}

.cond-item dt {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
}

.cond-item dd {
  letter-spacing: 1px;
  line-height: 2;
}

.cond-wrap {
  margin-bottom: 60px;
}