@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cardo:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600;700;900&display=swap");
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
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%;
  vertical-align: baseline;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

body {
  line-height: 1;
}

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

nav ul, 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%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 50px 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html, body {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  color: #262626;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1.8;
}

* {
  box-sizing: border-box;
}

a {
  color: #262626;
  text-decoration: none;
  transition: 0.3s linear;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}

img {
  max-width: 100%;
}

input[type=checkbox],
input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

main {
  overflow: hidden;
}
main .content {
  padding: 100px 0 120px;
}
@media screen and (max-width: 599px) {
  main .content {
    padding: 30px 0 60px;
  }
}

@media screen and (max-width: 599px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .tb {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .sp {
    display: block;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.center {
  text-align: center;
}

.wrapper {
  width: 100%;
}

.content {
  width: 1200px;
  max-width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .content {
    width: 100%;
    padding: 0 15px;
  }
}
.content .head {
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .content .head {
    margin-bottom: 30px;
  }
}

.required {
  display: inline-block;
  padding: 0 15px;
  border: solid 1px #cd5047;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #cd5047;
  text-align: center;
}

.btn {
  position: relative;
  display: inline-block;
  transition: 0.3s linear;
}
.btn:hover {
  opacity: 1;
}
.btn-gld {
  width: 300px;
  height: 60px;
}
@media screen and (max-width: 599px) {
  .btn-gld {
    width: 100%;
  }
}
.btn-gld:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  margin: auto;
  width: 20px;
  height: 2px;
  background: #fff;
}
.btn-gld div {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: auto;
  background: transparent;
  width: 100%;
  height: 100%;
  font-weight: bold;
  transition: 0.3s linear;
  background: #ae8d57;
  color: #fff;
  overflow: hidden;
}
.btn-gld div p {
  display: inline-block;
}
.btn-gld div:hover {
  opacity: 0.9;
}
.btn-nml {
  width: 300px;
  height: 60px;
}
@media screen and (max-width: 599px) {
  .btn-nml {
    width: 100%;
  }
}
.btn-nml:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  margin: auto;
  width: 20px;
  height: 2px;
  background: #fff;
}
.btn-nml div {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: auto;
  background: transparent;
  width: 100%;
  height: 100%;
  font-weight: bold;
  transition: 0.3s linear;
  color: #fff;
  overflow: hidden;
}
.btn-nml div:before, .btn-nml div:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-nml div:before {
  transition: 0.3s linear;
  z-index: -1;
  background: linear-gradient(270deg, #3366ff 0%, #063271 100%);
}
.btn-nml div:after {
  z-index: -2;
  background: linear-gradient(270deg, #063271 0%, #3366ff 100%);
}
.btn-nml div p {
  display: inline-block;
}
.btn-nml div:hover:before {
  opacity: 0;
}
.btn-nml.rent:hover {
  opacity: 1;
}
.btn-nml.rent div {
  justify-content: center;
  border: solid #666666 1px;
  padding: 0 20px;
  color: #666666;
  line-height: 1.5;
}
.btn-nml.rent div:hover {
  background: #666666;
  color: #fff;
  border: solid #666666 1px;
}
.btn-nml.rent div {
  position: relative;
}
.btn-nml.rent div img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
}
.btn-nml.cont:hover {
  opacity: 1;
}
.btn-nml.cont div {
  justify-content: center;
  border: solid #598eb8 1px;
  padding: 0 20px;
  color: #598eb8;
  line-height: 1.5;
}
.btn-nml.cont div:hover {
  background: #598eb8;
  color: #fff;
  border: solid #598eb8 1px;
}
.btn-nml.point {
  margin-left: 1%;
}
.btn-nml.point:hover {
  opacity: 1;
}
.btn-nml.point div {
  justify-content: center;
  border: solid #f58589 1px;
  padding: 0 20px;
  color: #f58589;
  line-height: 1.5;
}
.btn-nml.point div:hover {
  background: #f58589;
  color: #fff;
  border: solid #f58589 1px;
}

.headCatch {
  margin-bottom: 120px;
  /*&::before{
      display: block;
      content: "";
      background: $cpColor;
      height: 80px;
      width: 1px;
      margin: 0 auto 60px;
      @include sp{
          height: 40px;
          margin: 0 auto 30px;
      }
  }*/
}
@media screen and (max-width: 599px) {
  .headCatch {
    margin-bottom: 60px;
  }
}

.h3 {
  position: relative;
  margin-bottom: 60px;
  padding-left: 30px;
  font-family: "Cardo", serif;
  font-size: 4.8rem;
  color: #3366ff;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .h3 {
    margin-bottom: 30px;
    padding-left: 20px;
    font-size: 3.8rem;
  }
}
.h3::before {
  content: "・";
  display: block;
  position: absolute;
  top: 3px;
  left: -15px;
}
@media screen and (max-width: 599px) {
  .h3::before {
    left: -5px;
  }
}
.h3 span {
  display: block;
  padding-top: 10px;
  font-size: 1.8rem;
  color: #666666;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
}
@media screen and (max-width: 599px) {
  .h3 span {
    font-size: 1.8rem;
  }
}
.h3-bd {
  margin-bottom: 60px;
  padding-left: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #3366ff;
  line-height: 1.8;
  border-left: solid 2px #3366ff;
}
@media screen and (max-width: 599px) {
  .h3-bd {
    margin-bottom: 30px;
    line-height: 1.6;
  }
}
.h3-bdb {
  background: #3366ff;
  margin-bottom: 40px;
  padding: 10px 20px;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .h3-bdb {
    margin-bottom: 30px;
    line-height: 1.4;
    font-size: 2.5rem;
  }
}
.h3-bdb span {
  display: block;
  padding-left: 20px;
  border-left: solid 2px #fff;
}

.h4-nml {
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: solid #3366ff 2px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #3366ff;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .h4-nml {
    margin-bottom: 20px;
  }
}
.h4-bold {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .h4-bold {
    margin-bottom: 10px;
  }
}
.h4-bd {
  display: flex;
  align-items: center;
  color: #3366ff;
  font-size: 1.8rem;
  font-weight: bold;
}
.h4-bd::before, .h4-bd::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #c9c9c9;
}
.h4-bd::before {
  margin-right: 3rem;
}
.h4-bd::after {
  margin-left: 3rem;
}

.box-catch {
  padding: 40px;
  border-radius: 10px;
  border: solid 1px #ccc;
}
@media screen and (max-width: 599px) {
  .box-catch {
    border-radius: 7px;
    padding: 20px;
  }
}
.box-catch .ttl {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 2rem;
}
@media screen and (max-width: 599px) {
  .box-catch .ttl {
    margin-bottom: 20px;
  }
}
.box-catch .ttl img {
  width: 36px;
  margin-right: 15px;
}
.box-catch + .box-catch {
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .box-catch + .box-catch {
    margin-top: 20px;
  }
}
.box-wh {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  border: solid 1px #ccc;
}
@media screen and (max-width: 599px) {
  .box-wh {
    border-radius: 7px;
    padding: 20px;
  }
}
.box-gr {
  background: #f0f4f7;
  display: flex;
  padding: 35px;
}
@media screen and (max-width: 599px) {
  .box-gr {
    display: block;
    padding: 20px;
  }
}
.box-gr h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35%;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 30px;
  padding-right: 30px;
  border-right: solid 1px #c9c9c9;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .box-gr h4 {
    width: 100%;
    display: block;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: solid 1px #c9c9c9;
    border-right: none;
  }
}

.txt-date {
  margin-top: 40px;
  font-size: 1.4rem;
  text-align: right;
}

.table th {
  padding: 20px 20px 20px 0;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .table th {
    padding: 15px 15px 15px 0;
  }
}
.table td {
  padding: 20px 20px 20px 0;
}
@media screen and (max-width: 599px) {
  .table td {
    padding: 0 15px 15px 0;
  }
}
@media screen and (max-width: 599px) {
  .table-nml tr {
    border-top: solid 1px #ccc;
  }
}
@media screen and (max-width: 599px) {
  .table-nml tr:last-child {
    border-bottom: solid 1px #ccc;
  }
}
.table-nml tr th {
  background: #f0f4f7;
  padding: 20px;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .table-nml tr th {
    padding: 15px;
    border: none;
  }
}
.table-nml tr td {
  padding: 20px;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 599px) {
  .table-nml tr td {
    padding: 15px;
    border: none;
  }
}
.table-bd tr th {
  padding: 30px 0;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 599px) {
  .table-bd tr th {
    padding: 15px 0;
  }
}
.table-bd tr td {
  padding: 30px 0;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 599px) {
  .table-bd tr td {
    padding: 15px 0;
  }
}
.table-bd tr > * + * {
  border-left: solid 1px #ccc;
}

.list-nml dl dt {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .list-nml dl dt {
    margin-bottom: 10px;
  }
}
.list-nml dl + dl {
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  .list-nml dl + dl {
    margin-top: 30px;
  }
}
.list-nml dl ul li {
  padding-left: 2em;
  text-indent: -2em;
}
.list-bd li {
  padding: 20px 0;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 599px) {
  .list-bd li {
    padding: 15px 0;
  }
}
.list-bd li:first-child {
  border-top: solid 1px #ccc;
}
.list-bd li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.list-bd li img {
  display: inline-block;
  width: 30px;
  margin-right: 20px;
}
@media screen and (max-width: 599px) {
  .list-bd li img {
    width: 25px;
    margin-right: 10px;
  }
}
.list-bd li p {
  display: inline-block;
}
.list-bd:nth-of-type(2) {
  margin-top: -1px;
}

@media screen and (max-width: 599px) {
  .accordion_bdList-sp {
    border: solid 1px #ccc;
  }
}
.accordion_bdList-sp dt {
  display: none;
}
@media screen and (max-width: 599px) {
  .accordion_bdList-sp dt {
    position: relative;
    display: block;
    padding: 10px;
    font-weight: bold;
  }
}
@media screen and (max-width: 599px) {
  .accordion_bdList-sp dt:after {
    content: "";
    position: absolute;
    top: -3px;
    bottom: 0;
    right: 10px;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 1px solid #262626;
    border-right: 1px solid #262626;
    transform: rotate(135deg);
  }
}
@media screen and (max-width: 599px) {
  .accordion_bdList-sp dt.active_sp:after {
    top: 0;
    bottom: -8px;
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 599px) {
  .accordion_bdList-sp dd {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .accordion_bdList-sp dd ul li {
    width: 100%;
    border-left: none;
  }
}
@media screen and (max-width: 599px) {
  .accordion_bdList-sp dd ul li p {
    display: block;
    width: 100%;
    padding: 10px;
    border-top: dotted 1px #ccc;
  }
}
@media screen and (max-width: 599px) {
  .accordion_bdList-sp dd ul li:last-child {
    border-right: none;
  }
}

/*ふわっと*/
.fadeIn {
  opacity: 0;
  transition: 1.2s;
}

.fadeIn.is-show {
  opacity: 1;
}

/*下からフェードイン*/
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 1.2s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/*左からフェードイン*/
.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 1.2s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/*右からフェードイン*/
.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 1.2s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.header {
  background: #3366ff;
  height: 80px;
}
@media screen and (max-width: 599px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
}
.header nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  padding: 0 2%;
}
@media screen and (max-width: 1024px) {
  .header nav {
    grid-template-columns: 25% 75%;
  }
}
@media screen and (max-width: 599px) {
  .header nav {
    max-width: 100%;
    grid-template-columns: 1fr;
    padding: 15px 10px;
  }
}
@media screen and (max-width: 599px) {
  .header_ttl {
    width: 100%;
    height: 100%;
  }
}
.header_ttl h1 a {
  display: flex;
  align-items: center;
}
.header_ttl h1 a img {
  width: 56px;
  margin-right: 20px;
}
@media screen and (max-width: 599px) {
  .header_ttl h1 a img {
    width: auto;
    max-width: inherit;
    height: 50px;
    margin-right: 15px;
  }
}
.header_ttl h1 a p {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .header_ttl h1 a p {
    font-size: 1.4rem;
  }
}
.header_ttl h1 a p span {
  font-size: 2.8rem;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .header_ttl h1 a p span {
    display: block;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .header_ttl img {
    display: flex;
    align-items: center;
    max-width: 64%;
    max-height: 80px;
  }
}
.header_toggle {
  display: none;
}
@media screen and (max-width: 599px) {
  .header_toggle {
    position: absolute;
    z-index: 99;
    top: 15px;
    right: 15px;
    display: block;
    flex-shrink: 0;
    width: 47px;
    height: 47px;
    background: #fff;
  }
  .header_toggle i {
    display: block;
    width: 55%;
    height: 2px;
    right: 0;
    left: 0;
    background-color: #3366ff;
    position: absolute;
    transition: transform 0.5s, opacity 0.5s;
  }
  .header_toggle i:nth-child(1) {
    top: 14px;
    margin: auto;
  }
  .header_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .header_toggle i:nth-child(3) {
    top: 32px;
    margin: auto;
  }
  .header_toggle.open i:nth-child(1) {
    transform: translateY(9px) rotate(-35deg);
  }
  .header_toggle.open i:nth-child(2) {
    opacity: 0;
  }
  .header_toggle.open i:nth-child(3) {
    transform: translateY(-9px) rotate(35deg);
  }
}
.header_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header_list {
    padding-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .header_list {
    display: none;
    width: 100%;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 88;
    overflow-y: scroll;
    padding-bottom: 80px;
  }
}
.header_list > li {
  position: relative;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .header_list > li {
    background: rgba(51, 102, 255, 0.9);
    height: auto;
  }
}
.header_list > li.current > a:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #ae8d57;
  bottom: 22px;
  transform: none;
}
@media screen and (max-width: 599px) {
  .header_list > li.current > a:after {
    content: none;
  }
}
.header_list > li .child {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 80px;
  right: 0;
  margin: auto;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #f0f4f7;
  transition: 0.6s ease;
  text-align: right;
}
@media screen and (max-width: 599px) {
  .header_list > li .child {
    overflow: hidden;
    position: inherit;
    top: inherit;
    left: inherit;
    height: 0 !important;
    display: block;
    visibility: hidden;
    padding: 0;
    opacity: 0;
  }
}
.header_list > li .child-company {
  width: 215px;
}
@media screen and (max-width: 599px) {
  .header_list > li .child-company {
    width: 100%;
  }
}
.header_list > li .child-service {
  width: 280px;
}
@media screen and (max-width: 599px) {
  .header_list > li .child-service {
    width: 100%;
  }
}
.header_list > li .child h3 {
  margin: 0 30px 0 0;
  font-family: "Cardo", serif;
  font-size: 3.8rem;
  color: #3366ff;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .header_list > li .child h3 {
    margin: 0 0 20px 0;
    padding: 20px 20px 0 20px;
    font-size: 3rem;
  }
}
.header_list > li .child h3 span {
  display: block;
  padding-top: 15px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  font-size: 1.6rem;
  color: #262626;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .header_list > li .child h3 span {
    padding-top: 10px;
    font-size: 1.8rem;
  }
}
.header_list > li .child_menu {
  width: 100%;
  padding: 10px;
}
@media screen and (max-width: 599px) {
  .header_list > li .child_menu {
    padding: 20px;
  }
}
.header_list > li .child_menu li {
  margin: 10px;
}
@media screen and (max-width: 599px) {
  .header_list > li .child_menu li {
    width: 100%;
    height: auto;
    max-height: inherit;
    margin: 15px 5px;
  }
}
.header_list > li .child_menu li a {
  display: block;
  line-height: 0;
}
@media screen and (max-width: 599px) {
  .header_list > li .child_menu li a {
    text-align: left;
  }
}
.header_list > li .child_menu li a img {
  background: #ccc;
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}
.header_list > li .child_menu li a p {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  font-size: 1.6rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  font-weight: bold;
  line-height: 1.5;
  color: #262626;
}
@media screen and (max-width: 599px) {
  .header_list > li .child_menu li a p {
    padding-left: 15px;
  }
}
.header_list > li .child_menu li a p:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 1px;
  background: #262626;
}
.header_list > li .child_menu li a:hover p {
  opacity: 1;
  color: #3366ff;
}
.header_list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  font-size: 1.6rem;
  color: #fff;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-family: "Cardo", serif;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .header_list > li > a {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 1.8rem;
    text-align: center;
  }
}
.header_list > li > a:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #ae8d57;
  bottom: 22px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media screen and (max-width: 599px) {
  .header_list > li > a:after {
    content: none;
  }
}
.header_list > li > a.drop_btn.is-active + .child {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 599px) {
  .header_list > li > a.drop_btn.is-active + .child {
    overflow: inherit;
    height: auto !important;
    width: 100%;
  }
}
.header_list > li > a:hover {
  opacity: 1;
}
.header_list > li > a:hover .child {
  opacity: 1;
  visibility: visible;
}
.header_list > li > a:hover:after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.header_list > li > a.current:after {
  transform: scale(1, 1);
  transform-origin: left top;
}
@media screen and (max-width: 599px) {
  .header_list > li > a.current:after {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .header_list > li + li {
    border-top: solid 1px #fff;
  }
}
@media screen and (max-width: 599px) {
  .header_list > li + li a {
    margin: 0;
  }
}
.header_list > li:first-child a {
  margin-left: 0;
}
.header_list > li:nth-child(4)::after {
  content: "";
  display: block;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .header_list > li:nth-child(4)::after {
    content: none;
  }
}
.header_list > li:nth-child(n+5) {
  margin-top: 5px;
}
@media screen and (max-width: 1024px) {
  .header_list > li:nth-child(n+5) {
    margin-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .header_list > li:nth-child(n+5) {
    margin-top: 0;
  }
}
.header_list > li:nth-child(n+5) a {
  font-size: 1.4rem;
  font-weight: normal;
}
@media screen and (max-width: 599px) {
  .header_list > li:nth-child(n+5) a {
    font-size: 1.8rem;
    font-weight: bold;
  }
}
.header_sub {
  background: #ccc;
}
.header_sub .content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 380px;
}
@media screen and (max-width: 599px) {
  .header_sub .content {
    height: auto;
    margin-top: 80px;
    padding: 30px 15px;
  }
}
.header_sub .content .catch h2 {
  margin-bottom: 0;
  text-align: center;
  font-family: "Cardo", serif;
  font-size: 4.8rem;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 599px) {
  .header_sub .content .catch h2 {
    margin: 0 0 20px 0;
    padding: 20px 20px 0 20px;
    font-size: 3rem;
  }
}
.header_sub .content .catch h2 span {
  display: block;
  padding-top: 15px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .header_sub .content .catch h2 span {
    padding-top: 10px;
    font-size: 1.8rem;
  }
}

.pan {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0 30px 10%;
}
@media screen and (max-width: 599px) {
  .pan {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 15px 10px;
  }
}
.pan li {
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .pan li {
    font-size: 1.4rem;
  }
}
.pan li a {
  border-bottom: solid 1px #262626;
}
.pan li + li:before {
  content: ">";
  padding: 0 4px 0 8px;
}

.pagelink {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #ccc;
}
.pagelink .catch {
  width: 50%;
  padding: 45px 0;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .pagelink .catch {
    width: 100%;
    padding: 25px 0;
  }
}
.pagelink .catch .img_ttl {
  width: 84px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .pagelink .catch .img_ttl {
    width: 80px;
    margin-bottom: 5px;
  }
}
.pagelink .catch .arrow {
  margin-top: 40px;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 599px) {
  .pagelink .catch .arrow {
    margin-top: 20px;
  }
}
.pagelink .catch + .catch {
  border-left: solid 1px #ccc;
}
@media screen and (max-width: 599px) {
  .pagelink .catch + .catch {
    border-top: solid 1px #ccc;
    border-left: none;
  }
}

#footer {
  position: relative;
  background: url(../img/bg_foot.jpg) no-repeat center bottom;
  background-size: cover;
  padding: 70px 5% 60px;
}
@media screen and (max-width: 599px) {
  #footer {
    padding: 30px 10px 30px;
  }
}
#footer .footer {
  display: flex;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width: 599px) {
  #footer .footer {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  #footer .footer_left {
    text-align: center;
  }
}
#footer .footer_left .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 599px) {
  #footer .footer_left .logo {
    font-size: 2rem;
  }
}
#footer .footer_left .logo img {
  width: 55px;
  margin-right: 20px;
}
@media screen and (max-width: 599px) {
  #footer .footer_left .logo img {
    width: 40px;
    margin-right: 15px;
  }
}
#footer .footer_left .logo span {
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  #footer .footer_left .logo span {
    font-size: 1.4rem;
  }
}
#footer .footer_left .txt {
  font-size: 1.4rem;
}
#footer .footer_left .txt a {
  font-weight: bold;
  color: #fff;
}
#footer .footer_menu {
  display: flex;
  justify-content: space-between;
  width: 55%;
}
@media screen and (max-width: 599px) {
  #footer .footer_menu {
    display: none;
  }
}
#footer .footer_menu p {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  #footer .footer_list {
    justify-content: space-around;
    margin-bottom: 20px;
  }
}
#footer .footer_list li a {
  position: relative;
  padding: 0 15px;
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 599px) {
  #footer .footer_list li a {
    padding: 0;
  }
}
#footer .footer_list li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 1px;
  background: #fff;
}
#footer .footer_bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1500px;
  margin-top: 70px;
  color: #fff;
}
@media screen and (max-width: 599px) {
  #footer .footer_bottom {
    display: block;
    margin-top: 20px;
  }
}
#footer .footer_bottom ul {
  display: flex;
}
@media screen and (max-width: 599px) {
  #footer .footer_bottom ul {
    justify-content: center;
    margin-bottom: 20px;
  }
}
#footer .footer_bottom ul li + li {
  margin-left: 50px;
}
@media screen and (max-width: 599px) {
  #footer .footer_bottom ul li + li {
    margin-left: 30px;
  }
}
#footer .footer_bottom ul li a {
  font-size: 1.4rem;
  color: #fff;
}
#footer .footer_copy {
  font-family: "Cardo", serif;
  text-align: right;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  #footer .footer_copy {
    text-align: center;
  }
}
#footer .pagetop {
  position: absolute;
  right: 20px;
  bottom: 70px;
  font-family: "Cardo", serif;
  color: #fff;
  writing-mode: vertical-rl;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  #footer .pagetop {
    right: 10px;
    bottom: 20px;
  }
}
#footer .pagetop .scroll {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 160px;
  margin: auto;
  color: #fff;
  font-size: 1.2rem;
}
#footer .pagetop .scroll:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  margin: auto;
  width: 2px;
  height: 60px;
  background-color: #fff;
}
#footer .pagetop .scroll:before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  right: 4px;
}

#company .header_sub {
  background: url(../../company/img/bg_company.jpg) no-repeat center center;
  background-size: cover;
}
#company .table-nml {
  width: 100%;
}
#company .table-nml th {
  width: 25%;
}
@media screen and (max-width: 599px) {
  #company .table-nml th {
    width: 100%;
    display: block;
  }
}
#company .table-nml td {
  width: 75%;
}
@media screen and (max-width: 599px) {
  #company .table-nml td {
    width: 100%;
    display: block;
  }
}

.link {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 599px) {
  .link {
    display: block;
  }
}
.link_business {
  background: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 320px;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .link_business {
    height: auto;
    padding: 30px 20px;
    font-size: 2rem;
  }
}
.link_business:first-child {
  border-right: solid 1px #fff;
}
@media screen and (max-width: 599px) {
  .link_business:first-child {
    border-right: none;
    border-bottom: solid 1px #fff;
  }
}
.link_business-life {
  background: url(../../service/img/bg_business-life.jpg) no-repeat center center;
  background-size: cover;
}
.link_business-property {
  background: url(../../service/img/bg_business-property.jpg) no-repeat center center;
  background-size: cover;
}
.link_business-customer {
  background: url(../../service/img/bg_business-customer.jpg) no-repeat center center;
  background-size: cover;
}
.link_recruit {
  background: url(../../service/img/bg_recruit.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  grid-column: 1/3;
  grid-row: 2/2;
  text-align: center;
  color: #fff;
  border-top: solid 1px #fff;
}
@media screen and (max-width: 599px) {
  .link_recruit {
    height: auto;
    padding: 30px 20px;
  }
}
.link_recruit .h3 {
  margin-bottom: 0;
  padding: 0;
  text-align: center;
  color: #fff;
}
.link_recruit .h3::before {
  content: none;
}
.link_recruit .h3 span {
  color: #fff;
}
.link_recruit .txt {
  margin: 40px auto;
}
@media screen and (max-width: 599px) {
  .link_recruit .txt {
    margin: 20px auto;
  }
}
.link_recruit .btn {
  background: #ae8d57;
}

#customer .header_sub {
  background: url(../../service/img/bg_customer.jpg) no-repeat center center;
  background-size: cover;
}
#customer .content {
  width: 1000px;
  max-width: 96%;
}
@media screen and (max-width: 599px) {
  #customer .content {
    padding: 40px 0;
  }
}
#customer .catch {
  text-align: center;
}
#customer .catch .headCatch {
  width: 1000px;
  max-width: 96%;
  margin: 90px auto 60px;
  text-align: left;
}
@media screen and (max-width: 599px) {
  #customer .catch .headCatch {
    margin: 40px auto 30px;
    padding: 0 6.67vw;
  }
}
#customer .catch .txt-date {
  width: 1200px;
  max-width: 96%;
  margin: 30px auto 0;
}
#customer .venobox {
  position: relative;
  display: block;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  #customer .venobox {
    pointer-events: visible;
    padding: 0 10px;
  }
}
@media screen and (max-width: 599px) {
  #customer .venobox:after {
    content: "+";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #3366ff;
    position: absolute;
    right: 10px;
    bottom: -10px;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
}
#customer .article-02 {
  padding-bottom: 120px;
}
@media screen and (max-width: 599px) {
  #customer .article-02 {
    padding-bottom: 50px;
  }
}
#customer .article-02 .content {
  padding-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #customer .article-02 .content {
    padding-bottom: 50px;
  }
}
#customer .article-02 .h4-bd {
  width: 1000px;
  max-width: 96%;
  margin: 0 auto 40px;
}
#customer .article-02 img {
  display: block;
  margin: 0 auto;
}
#customer .bg {
  background: url(../../service/img/bg_customer_02.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 599px) {
  #customer .bg {
    height: 160px;
  }
}

#life .header_sub {
  background: url(../../service/img/bg_service.jpg) no-repeat center center;
  background-size: cover;
}
#life .catch .flex {
  align-items: flex-end;
  justify-content: space-between;
}
#life .catch_cnt {
  width: calc(100% - 320px);
}
@media screen and (max-width: 599px) {
  #life .catch_cnt {
    width: 100%;
    margin-bottom: 20px;
  }
}
#life .catch .btn-gld {
  width: 250px;
  height: 50px;
}
@media screen and (max-width: 599px) {
  #life .catch .btn-gld {
    width: 100%;
  }
}
#life .article .bg {
  background: url(../../service/img/bg_life.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 420px;
}
@media screen and (max-width: 599px) {
  #life .article .bg {
    height: 180px;
  }
}
#life .article .content {
  background: #fff;
  margin-top: -100px;
  padding: 100px 6.67vw 120px;
}
@media screen and (max-width: 599px) {
  #life .article .content {
    margin-top: -50px;
    padding: 50px 6.67vw;
  }
}
#life .article .content ul li + li {
  margin-top: 40px;
  padding-top: 40px;
  border-top: solid 1px #c9c9c9;
}
@media screen and (max-width: 599px) {
  #life .article .content ul li + li {
    margin-top: 30px;
    padding-top: 30px;
  }
}

#property .header_sub {
  background: url(../../service/img/bg_service.jpg) no-repeat center center;
  background-size: cover;
}
#property .catch .flex {
  align-items: flex-end;
  justify-content: space-between;
}
#property .catch_cnt {
  width: calc(100% - 320px);
}
@media screen and (max-width: 599px) {
  #property .catch_cnt {
    width: 100%;
    margin-bottom: 20px;
  }
}
#property .catch .btn-gld {
  width: 250px;
  height: 50px;
}
@media screen and (max-width: 599px) {
  #property .catch .btn-gld {
    width: 100%;
  }
}
#property .article .bg {
  background: url(../../service/img/bg_property.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 420px;
}
@media screen and (max-width: 599px) {
  #property .article .bg {
    height: 180px;
  }
}
#property .article .content {
  background: #fff;
  margin-top: -100px;
  padding: 100px 6.67vw 120px;
}
@media screen and (max-width: 599px) {
  #property .article .content {
    margin-top: -50px;
    padding: 50px 6.67vw;
  }
}
#property .article .content ul li + li {
  margin-top: 40px;
  padding-top: 40px;
  border-top: solid 1px #c9c9c9;
}
@media screen and (max-width: 599px) {
  #property .article .content ul li + li {
    margin-top: 30px;
    padding-top: 30px;
  }
}

#a-guideline .header_sub {
  background: url(../../company/img/bg_philosophy.jpg) no-repeat center center;
  background-size: cover;
}
#a-guideline .philosophy_list li {
  background: #f0f4f7;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 25px 25px 25px 140px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  #a-guideline .philosophy_list li {
    font-size: 1.8rem;
    padding: 20px;
  }
}
#a-guideline .philosophy_list li + li {
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  #a-guideline #guideline {
    display: block;
    margin-top: -80px;
    padding-top: 80px;
  }
}
#a-guideline .guideline {
  background: url(../../company/img/bg_guideline.jpg) no-repeat center center;
  background-size: cover;
}
#a-guideline .guideline_list > li {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
}
@media screen and (max-width: 599px) {
  #a-guideline .guideline_list > li {
    display: block;
    padding: 20px;
  }
}
#a-guideline .guideline_list > li + li {
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  #a-guideline .guideline_list > li + li {
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  #a-guideline .guideline_list > li img {
    width: 24%;
    display: block;
    margin: 0 auto 20px;
  }
}
#a-guideline .guideline_list_cnt {
  width: calc(100% - 124px);
}
@media screen and (max-width: 599px) {
  #a-guideline .guideline_list_cnt {
    width: 100%;
  }
}
#a-guideline .guideline_list_cnt h4 {
  margin-bottom: 20px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  #a-guideline .guideline_list_cnt h4 {
    text-align: center;
  }
}
#a-guideline .guideline_list_cnt h4 span {
  display: inline-block;
  padding-right: 10px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #3366ff;
}
#a-guideline .guideline_list_cnt ul li {
  position: relative;
  padding-left: 20px;
}
#a-guideline .guideline_list_cnt ul li:before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#a-guideline .message_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 599px) {
  #a-guideline .message_box {
    display: block;
  }
}
#a-guideline .message_box > img {
  display: block;
  width: 30%;
  max-width: 360px;
}
@media screen and (max-width: 599px) {
  #a-guideline .message_box > img {
    width: 80%;
    max-width: inherit;
    margin: 0 auto 50px;
  }
}
#a-guideline .message_box > div {
  width: 58%;
  margin-right: 3.75%;
}
@media screen and (max-width: 599px) {
  #a-guideline .message_box > div {
    width: 100%;
    margin-right: 0;
  }
}
#a-guideline .message_box > div .name {
  margin-top: 50px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: right;
}
@media screen and (max-width: 599px) {
  #a-guideline .message_box > div .name {
    margin-top: 30px;
  }
}
#a-guideline .message_box > div .name span {
  display: block;
}
@media screen and (max-width: 599px) {
  #a-guideline .message_box > div .name img {
    width: 70%;
  }
}

#office .header_sub {
  background: url(../../company/img/bg_office.jpg) no-repeat center center;
  background-size: cover;
}
#office .chart {
  background: linear-gradient(90deg, #f0f4f7 0%, #f0f4f7 50%, #fff 50%, #fff 100%);
}
#office .chart_img {
  background: #fff;
  padding: 45px 0;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #office .chart_img {
    padding: 30px 0;
  }
}
@media screen and (max-width: 599px) {
  #office .chart_img img {
    max-width: 90%;
  }
}
#office .chart .txt {
  margin-top: 20px;
  text-align: right;
}
@media screen and (max-width: 599px) {
  #office .chart .txt {
    margin-top: 10px;
  }
}
#office .office .table-nml {
  width: 100%;
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  #office .office .table-nml {
    margin-bottom: 40px;
  }
}
#office .office .table-nml:last-of-type {
  margin-bottom: 0;
}
#office .office .table-nml th {
  width: 25%;
}
@media screen and (max-width: 599px) {
  #office .office .table-nml th {
    width: 100%;
    display: block;
  }
}
#office .office .table-nml td {
  width: 75%;
}
@media screen and (max-width: 599px) {
  #office .office .table-nml td {
    width: 100%;
    display: block;
  }
}
#office .office .table-nml td dl {
  display: flex;
}
#office .office .table-nml td dl dt {
  min-width: 200px;
}
@media screen and (max-width: 599px) {
  #office .office .table-nml td dl dt {
    min-width: inherit;
    width: 55%;
  }
}
#office .office .table-nml td > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #office .office .table-nml td > div {
    display: block;
  }
}
#office .office .table-nml td > div .btn {
  width: 240px;
  height: 45px;
}
@media screen and (max-width: 599px) {
  #office .office .table-nml td > div .btn {
    width: 100%;
    margin: 10px 0;
  }
}

#privacy .header_sub {
  background: url(../../privacy/img/bg_privacy.jpg) no-repeat center bottom;
  background-size: cover;
}
#privacy main .content {
  background: #fff;
  padding: 90px 6.67vw 60px;
}
@media screen and (max-width: 599px) {
  #privacy main .content {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
#privacy main .content + .content {
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  #privacy main .content + .content {
    margin-top: 30px;
  }
}
#privacy main .privacy {
  background: linear-gradient(0deg, #f0f4f7 0%, #f0f4f7 30%, #fff 30%, #fff 100%);
}
#privacy main .secondary {
  background: #f0f4f7;
  padding: 60px 0 120px;
}
@media screen and (max-width: 599px) {
  #privacy main .secondary {
    padding: 30px 0 60px;
  }
}
#privacy main .secondary .flex {
  justify-content: space-between;
  align-items: flex-end;
}
#privacy main .secondary .icon {
  padding: 20px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #privacy main .secondary .icon {
    margin: 0 auto;
  }
}
#privacy main .secondary .icon p {
  font-size: 1.4rem;
}
#privacy main .secondary .box-gr {
  margin: 40px auto 60px;
}
@media screen and (max-width: 599px) {
  #privacy main .secondary .box-gr {
    margin: 20px auto 40px;
  }
}
#privacy main .secondary .box-gr:last-child {
  margin-bottom: 0;
}
#privacy main .secondary * + h4 {
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  #privacy main .secondary * + h4 {
    margin-top: 30px;
  }
}
#privacy main .secondary .ind {
  padding-left: 1em;
  text-indent: -1em;
}

#antisocial .header_sub {
  background: url(../../privacy/img/bg_privacy.jpg) no-repeat center bottom;
  background-size: cover;
}
#antisocial main .content {
  background: #fff;
  padding: 90px 6.67vw 120px;
}
@media screen and (max-width: 599px) {
  #antisocial main .content {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
#antisocial main .content + .content {
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  #antisocial main .content + .content {
    margin-top: 30px;
  }
}

#recruit .header_sub {
  background: url(../../recruit/img/bg_recruit.jpg) no-repeat center center;
  background-size: cover;
}
#recruit main {
  background: url(../../recruit/img/bg_bottom.jpg) no-repeat center bottom;
  background-size: 100%;
}
#recruit main .content {
  padding-bottom: 240px;
}
@media screen and (max-width: 599px) {
  #recruit main .content {
    padding-bottom: 90px;
  }
}
#recruit main .content .ind {
  text-indent: -1em;
  padding-left: 1em;
}
#recruit main .content .table-nml {
  width: 100%;
}
#recruit main .content .table-nml th {
  width: 25%;
}
@media screen and (max-width: 599px) {
  #recruit main .content .table-nml th {
    width: 100%;
    display: block;
  }
}
#recruit main .content .table-nml td {
  width: 75%;
  background: #fff;
}
@media screen and (max-width: 599px) {
  #recruit main .content .table-nml td {
    width: 100%;
    display: block;
  }
}
#recruit main .content .table-nml td ul {
  padding-left: 1em;
}
#recruit main .content .table-nml td .flex {
  margin-top: 20px;
  justify-content: center;
}
#recruit main .content .table-nml td .flex .btn:last-child {
  margin-left: 30px;
}
@media screen and (max-width: 599px) {
  #recruit main .content .table-nml td .flex .btn:last-child {
    margin: 10px 0 0 0;
  }
}
#recruit main .content iframe {
  width: 100%;
  height: 500px;
  margin-top: 10px;
}