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

h3 {
  margin-bottom: 60px;
  font-family: "Cardo", serif;
  font-size: 4.8rem;
  color: #3366ff;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  h3 {
    margin-bottom: 30px;
    font-size: 3.8rem;
  }
}
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) {
  h3 span {
    padding-top: 10px;
    font-size: 1.8rem;
  }
}

.main {
  display: grid;
  grid-template-columns: 9.33vw calc(100% - 9.33vw);
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .main {
    display: block;
    height: auto;
    padding: 80px 0 10px;
  }
}
.main_catch {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 140px;
  height: 100%;
  padding-top: 30px;
}
@media screen and (max-width: 599px) {
  .main_catch {
    width: 100%;
    max-width: inherit;
    height: auto;
    padding: 10px 0;
  }
}
.main_catch p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.6rem;
}
@media screen and (max-width: 599px) {
  .main_catch p {
    writing-mode: inherit;
    text-orientation: inherit;
    font-size: 1.6rem;
  }
}
.main_catch .scroll {
  position: absolute;
  bottom: 160px;
  color: #3366ff;
  font-size: 1.2rem;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 599px) {
  .main_catch .scroll {
    display: none;
  }
}
.main_catch .scroll:after {
  content: "";
  display: block;
  position: absolute;
  right: 50%;
  bottom: -115px;
  transform: translateX(-50%);
  width: 2px;
  height: 100px;
  background-color: #3366ff;
  animation: scroll 3s cubic-bezier(1, 0, 0, 1) infinite;
}
.main_catch .scroll:before {
  content: "●";
  display: block;
  position: absolute;
  right: calc(50% - 5px);
  bottom: -125px;
  margin: auto;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.main_img .img {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .main_img .img {
    height: auto;
  }
}
.main_img .img img {
  width: 100%;
}
.main_img .txt {
  display: inline-block;
  background: #3366ff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 80px;
  margin: auto;
  padding: 10px 20px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .main_img .txt {
    position: inherit;
    left: inherit;
    right: inherit;
    bottom: inherit;
    padding: 20px;
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: left;
  }
}
.main_privacy {
  display: flex;
  align-items: center;
  width: calc(50% + 75px);
  margin-left: auto;
  padding: 30px;
}
@media screen and (max-width: 599px) {
  .main_privacy {
    width: 100%;
    padding: 40px 20px 20px 20px;
  }
}
.main_privacy a {
  display: block;
  margin-right: 40px;
  /*img{
      margin-right: 40px;
      @include sp{
          width: 22%;
          margin-right: 20px;
      }
  }*/
}
@media screen and (max-width: 599px) {
  .main_privacy a {
    width: 35%;
    margin-right: 20px;
  }
}
.main_privacy .ttl {
  margin-bottom: 20px;
  font-size: 2rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
}
.main_privacy .txt {
  font-size: 1.4rem;
}
.main .slick-prev {
  top: inherit;
  right: inherit;
  left: 0;
  bottom: -65px;
}
.main .slick-prev:before {
  content: "";
  display: block;
  width: 38px;
  height: 6px;
  border-bottom: 1px solid #262626;
  border-left: 1px solid #262626;
  transform: skew(135deg);
}
.main .slick-next {
  top: inherit;
  right: inherit;
  left: 75px;
  bottom: -65px;
}
.main .slick-next:before {
  content: "";
  display: block;
  width: 38px;
  height: 6px;
  border-bottom: 1px solid #262626;
  border-right: 1px solid #262626;
  transform: skew(45deg);
}

.news {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 65px 0 130px;
}
@media screen and (max-width: 599px) {
  .news {
    padding: 30px 20px;
  }
}
.news_ttl {
  width: 25%;
}
@media screen and (max-width: 599px) {
  .news_ttl {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
.news_ttl h3 {
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .news_ttl h3 {
    margin-top: 0;
  }
}
.news_cnt {
  width: 75%;
}
@media screen and (max-width: 599px) {
  .news_cnt {
    width: 100%;
  }
}
.news_cnt .catch {
  background: #3366ff;
  margin-bottom: 10px;
  padding: 10px;
  color: #fff;
}
.news_cnt ul li {
  display: flex;
  grid-template-columns: 35% 65%;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #c9c9c9;
  padding: 12px 0;
}
@media screen and (max-width: 599px) {
  .news_cnt ul li {
    display: block;
  }
}
.news_cnt_date {
  width: 140px;
  font-family: "Cardo", serif;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .news_cnt_date {
    width: 100%;
  }
}
.news_cnt_ttl {
  width: calc(100% - 140px);
}
@media screen and (max-width: 599px) {
  .news_cnt_ttl {
    width: 100%;
  }
}

.service {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .service {
    padding: 40px 0 0;
  }
}
.service_main {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 599px) {
  .service_main {
    display: block;
  }
}
.service_main_box {
  transition: 0.3s linear;
}
.service_main_box h4 {
  margin: 30px auto;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
  font-size: 2.8rem;
}
.service_main_box h4 span {
  color: #3366ff;
}
.service_main_box .img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 37.33vw;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .service_main_box .img {
    height: 220px;
  }
}
.service_main_box .img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  transition: 4s linear;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media screen and (max-width: 599px) {
  .service_main_box .img img {
    height: auto;
    width: 100%;
    -o-object-position: 50% 10%;
       object-position: 50% 10%;
  }
}
.service_main_box .img:hover img {
  transition: 4s linear;
  transform: scale(1.3);
}
.service_main_box .cnt {
  position: relative;
  z-index: 3;
  background: #fff;
  width: 80%;
  margin: -8.67vw auto 90px;
  padding: 60px 20px;
  transition: 1s linear;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .service_main_box .cnt {
    width: 85%;
    margin: -50px auto 0;
    padding: 40px 30px;
  }
}
.service_main_box .cnt .btn {
  display: block;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .service_main_box .cnt .btn {
    margin-top: 30px;
  }
}
.service_main_box .cnt .btn + .btn {
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .service_main_box .cnt .btn + .btn {
    margin-top: 5px;
  }
}
.service_main_box .cnt .txt {
  display: inline-block;
  text-align: left;
}
.service_main_box:hover {
  transition: 0.3s linear;
}
.service_main_box:hover .img img {
  transition: 4s linear;
  transform: scale(1.3);
}
.service_main_box:hover .cnt {
  box-shadow: 0px 12px 50px 5px rgba(0, 10, 30, 0.22);
}
.service_main_box-02 .cnt {
  padding-bottom: 130px;
}
@media screen and (max-width: 599px) {
  .service_main_box-02 .cnt {
    padding-bottom: 40px;
  }
}

.about {
  position: relative;
  background: #f0f4f7;
  padding: 80px 0 240px;
}
@media screen and (max-width: 599px) {
  .about {
    padding: 40px 0;
  }
}
.about h3 {
  margin: 0 auto 60px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .about h3 {
    margin-bottom: 30px;
  }
}
.about h3 span {
  display: block;
  margin-left: 0;
}
.about_box {
  position: relative;
  z-index: 3;
  background: #fff url(../../img/bg_about.png) right 50px top 200px no-repeat;
  width: 60vw;
  padding: 100px 10vw 80px;
}
@media screen and (max-width: 599px) {
  .about_box {
    width: 100%;
    padding: 40px 10vw;
  }
}
.about_box h4 {
  margin-bottom: 40px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 3.4rem;
  font-weight: bold;
  color: #3366ff;
}
@media screen and (max-width: 599px) {
  .about_box h4 {
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
}
.about_box .txt {
  margin-bottom: 50px;
}
.about_img {
  position: absolute;
  z-index: 2;
  top: 335px;
  right: 0;
}
@media screen and (max-width: 599px) {
  .about_img {
    position: inherit;
    top: inherit;
    right: inherit;
  }
}

.link {
  background: #262626;
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .link {
    display: block;
    padding: 0;
  }
}
.link_btn {
  display: block;
  padding: 80px 0;
  color: #fff;
  transition: 0.3s linear;
}
@media screen and (max-width: 599px) {
  .link_btn {
    padding: 25px 0;
    border-top: solid 1px #fff;
  }
}
.link_btn:last-child > div {
  border-left: solid 1px #fff;
}
@media screen and (max-width: 599px) {
  .link_btn:last-child > div {
    border-left: none;
  }
}
.link_btn > div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: 0.3s linear;
}
@media screen and (max-width: 599px) {
  .link_btn > div {
    justify-content: flex-start;
  }
}
.link_btn > div .icon {
  width: 9.33vw;
  max-width: 140px;
  height: 9.33vw;
  max-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid #ae8d57 1px;
  border-radius: 50%;
  margin-right: 40px;
  transition: 0.3s linear;
}
@media screen and (max-width: 599px) {
  .link_btn > div .icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
}
.link_btn > div .icon-01 {
  background: url(../img/icon_foot_01.png) center center no-repeat;
  background-size: 38%;
}
.link_btn > div .icon-02 {
  background: url(../img/icon_foot_02.png) center center no-repeat;
  background-size: 38%;
}
.link_btn > div .icon img {
  width: 40%;
}
.link_btn > div .ttl {
  position: relative;
  margin-bottom: 30px;
  padding-left: 40px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 3.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .link_btn > div .ttl {
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 2.6rem;
    line-height: 1.4;
  }
}
.link_btn > div .ttl:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 15px;
  height: 2px;
  background: #fff;
}
.link_btn > div .ttl-sub {
  font-weight: bold;
}
.link_btn:hover {
  background: #000;
  color: #fff;
  opacity: 1;
  transition: 0.3s linear;
}
.link_btn:hover > div {
  transition: 0.3s linear;
}
.link_btn:hover > div .icon {
  border: solid #ae8d57 1px;
}
.link_btn:hover > div .icon-01 {
  background: #ae8d57 url(../img/icon_foot_01_on.png) center center no-repeat;
  background-size: 38%;
}
.link_btn:hover > div .icon-02 {
  background: #ae8d57 url(../img/icon_foot_02_on.png) center center no-repeat;
  background-size: 38%;
}