@charset "UTF-8";
/* グーグルフォントの読み込み */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/* 読み込んだフォントの指定 */
/* ベースとなるフォントカラー */
/* 任意のフォントカラー */
/* SPメディアクエリのブレイクポイント */
/* @media screen and (max-width: $sp_01) {} */
/* PCメディアクエリのブレイクポイント */
/* @media screen and (min-width: $pc_01) {} */
/********************************************************************************************************** setting */
/************************************************** メインビジュアル */
#mv {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100vh;
}
#mv::before {
  position: absolute;
  top: auto;
  left: auto;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
#mv::after {
  position: absolute;
  top: auto;
  left: auto;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../../image/mv.jpg");
  background-position: center center;
  background-size: cover;
  z-index: -2;
}
#mv.hikari::before {
  background-color: rgba(42, 20, 20, 0.4);
}
#mv.hikari::after {
  background-image: url("../../image/hikari/mv.jpg");
}
#mv.zoom::before {
  background-color: rgba(33, 33, 33, 0.4);
}
#mv.zoom::after {
  background-image: url("../../image/zoom/mv.jpg");
}
#mv.concept, #mv.recruit {
  height: 461px;
}
@media screen and (max-width: 1024px) {
  #mv.concept, #mv.recruit {
    height: 206px;
  }
}
#mv.concept::before, #mv.recruit::before {
  background-color: rgba(0, 0, 0, 0.3);
}
#mv.concept::after, #mv.recruit::after {
  background-image: url("../../image/concept/mv.jpg");
  background-position: center bottom 26%;
}

.mv_intro {
  position: absolute;
  left: 160px;
  bottom: 130px;
  max-width: 540px;
  width: 96%;
}
.mv_intro.zoom {
  bottom: 0;
  top: 290px;
}
@media screen and (max-width: 1024px) {
  .mv_intro.zoom {
    top: 30%;
    width: 85%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
}
@media screen and (max-width: 1024px) {
  .mv_intro {
    left: 20px;
    bottom: 200px;
    width: 75%;
  }
}

.mv_experience {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .mv_experience {
    font-size: 20px;
  }
}

.mv_content {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .mv_content {
    font-size: 14px;
    margin-top: 20px;
  }
}

#scroll_area {
  z-index: 0;
  position: absolute;
  right: 140px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  bottom: 130px;
}
#scroll_area.hikari {
  right: 170px;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  #scroll_area.hikari {
    right: 70px;
  }
}
#scroll_area.zoom {
  right: 50%;
  bottom: 0;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}
#scroll_area span {
  position: absolute;
  bottom: 145px;
  right: -40px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
#scroll_area span.hikari {
  bottom: 145px;
  right: -40px;
}
#scroll_area span.zoom {
  bottom: 215px;
  right: -25px;
}
@media screen and (max-width: 1024px) {
  #scroll_area span {
    font-size: 18px;
    bottom: 155px;
    right: -35px;
  }
}
@media screen and (max-width: 1024px) {
  #scroll_area {
    right: 50%;
    bottom: 0;
    margin-right: 0;
  }
}

#scroll_txt {
  width: 1px;
  padding-bottom: 200px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
#scroll_txt::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 1px;
  background: #fff;
  -webkit-animation: scroll_anime 2s infinite;
          animation: scroll_anime 2s infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  z-index: -1;
}

@-webkit-keyframes scroll_anime {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
    height: 100%;
  }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    height: 100%;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    height: 0;
  }
}

@keyframes scroll_anime {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
    height: 100%;
  }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    height: 100%;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    height: 0;
  }
}
/************************************************** メインビジュアル END */
.oblique {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.oblique_in {
  position: absolute;
  top: 0;
  right: 0;
  width: 257px;
  height: 100%;
}
.oblique_in::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../image/hikari/oblique.png");
  background-position: center center;
  background-size: auto;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .oblique_in::before {
    background-image: url("../../image/hikari/oblique_sp.png");
    background-position: top center;
  }
}
@media screen and (max-width: 1024px) {
  .oblique_in {
    width: 58px;
  }
}

article {
  padding: 90px 0 80px;
  background-color: #fff;
}
article.gray {
  background-color: #ebebeb;
}
article.dark {
  background-color: #222;
}
article.blue {
  background-color: #0c2560;
}
article.price {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}
article.price::before {
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  width: 100%;
  height: 631px;
  background-image: url("../../image/hikari/price.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  article.price::before {
    height: 270px;
    background-image: url("../../image/hikari/price_sp.jpg");
  }
}
article.price::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c2560;
  z-index: -2;
}
article.shop {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}
article.shop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 257px;
  height: 100%;
  background-image: url("../../image/hikari/oblique.png");
  background-position: center center;
  background-size: auto;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  article.shop::before {
    width: 58px;
    background-image: url("../../image/hikari/oblique_sp.png");
    background-position: top center;
  }
}
article.concept {
  margin: 30px 0 0;
  padding: 0;
}
article.recruit {
  padding: 140px 0 120px;
}
@media screen and (max-width: 1024px) {
  article.recruit {
    padding: 70px 0 60px;
  }
}
@media screen and (max-width: 1024px) {
  article {
    padding: 45px 0 40px;
  }
}

section.news {
  max-width: 1120px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  section.news {
    max-width: 100%;
    width: 85%;
  }
}
section.concept {
  margin-right: 160px;
}
@media screen and (max-width: 1024px) {
  section.concept {
    margin: 0 auto;
  }
}
section.recruit {
  max-width: 944px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  section.recruit {
    max-width: 100%;
    width: 90%;
  }
}
section.oblique {
  max-width: 1220px;
  width: 96%;
  margin: 0 auto;
}
section.oblique.insta {
  width: 90%;
}
@media screen and (max-width: 1024px) {
  section.oblique {
    width: 75%;
  }
}
section.price {
  max-width: 1205px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  section.price.insta {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  section.price {
    width: 90%;
  }
}
section.zoom {
  max-width: 1020px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  section.zoom {
    width: 90%;
  }
}
section.idea {
  max-width: 1060px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  section.idea {
    width: 75%;
  }
}
section.adopt {
  max-width: 980px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  section.adopt {
    width: 85%;
  }
}

.mv_under {
  position: absolute;
  bottom: 0;
  left: auto;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.75);
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  .mv_under {
    position: static;
    background-color: #ebebeb;
  }
}

.mv_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 700px;
  width: 96%;
  margin: 0 auto;
}
.mv_list li {
  width: 48%;
  margin-right: 4%;
  background-color: #0c2560;
  text-align: center;
  -webkit-box-shadow: inset 0 -8px 2px rgba(2, 10, 31, 0.9);
          box-shadow: inset 0 -8px 2px rgba(2, 10, 31, 0.9);
}
.mv_list li:last-child {
  margin-right: 0;
  background-color: #b10304;
  -webkit-box-shadow: inset 0 -8px 2px rgba(128, 3, 4, 0.85);
          box-shadow: inset 0 -8px 2px rgba(128, 3, 4, 0.85);
}
@media screen and (min-width: 1025px) {
  .mv_list li:last-child a:hover {
    background-color: #d70405;
    -webkit-box-shadow: inset 0 -8px 2px rgba(141, 3, 3, 0.85);
            box-shadow: inset 0 -8px 2px rgba(141, 3, 3, 0.85);
  }
}
@media screen and (max-width: 1024px) {
  .mv_list li:last-child {
    -webkit-box-shadow: inset 0 -6px 2px rgba(128, 3, 4, 0.85);
            box-shadow: inset 0 -6px 2px rgba(128, 3, 4, 0.85);
  }
}
.mv_list li a {
  display: block;
  padding: 10px 10px 18px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (min-width: 1025px) {
  .mv_list li a:hover {
    background-color: #113ea9;
    -webkit-box-shadow: inset 0 -8px 2px rgba(7, 37, 112, 0.9);
            box-shadow: inset 0 -8px 2px rgba(7, 37, 112, 0.9);
  }
}
@media screen and (max-width: 1024px) {
  .mv_list li a {
    -webkit-box-shadow: 0px 10px 15px -5px #787878;
            box-shadow: 0px 10px 15px -5px #787878;
    border-radius: 0px;
  }
}
@media screen and (max-width: 1024px) {
  .mv_list li {
    width: 49%;
    margin-right: 2%;
    -webkit-box-shadow: inset 0 -6px 2px rgba(2, 10, 31, 0.9);
            box-shadow: inset 0 -6px 2px rgba(2, 10, 31, 0.9);
  }
}

@media screen and (max-width: 1024px) {
  .mv_con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.mv_store {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .mv_store {
    font-size: 13px;
  }
}

.mv_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv_number img {
  max-width: 28px;
}
@media screen and (max-width: 1024px) {
  .mv_number img {
    max-width: 20px;
    margin-bottom: -30px;
  }
}

.mv_phone {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  .mv_phone.top {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .mv_phone {
    font-size: 16px;
  }
}

.mv_hours {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .mv_hours.hikari {
    font-size: 10px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .mv_hours.zoom {
    font-size: 10px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .mv_hours {
    font-size: 11px;
    margin-left: 10px;
  }
}

.news_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .news_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hgroup_area {
  text-align: center;
}
.hgroup_area.top {
  width: 15%;
}
@media screen and (max-width: 1024px) {
  .hgroup_area.top {
    width: 100%;
  }
}
.hgroup_area.concept {
  width: 50%;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .hgroup_area.concept {
    width: 100%;
    margin-right: 0;
  }
}
.hgroup_area.zoom {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hgroup_area.zoom::before, .hgroup_area.zoom::after {
  content: "";
  width: 75px;
  height: 78px;
  background-image: url("../../image/zoom/line.png");
  background-size: auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .hgroup_area.zoom::before, .hgroup_area.zoom::after {
    width: 57px;
    height: 61px;
    background-image: url("../../image/zoom/line_sp.png");
  }
}
.hgroup_area.zoom::before {
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .hgroup_area.zoom::before {
    margin-right: 20px;
  }
}
.hgroup_area.zoom::after {
  margin-left: 40px;
}
@media screen and (max-width: 1024px) {
  .hgroup_area.zoom::after {
    margin-left: 20px;
  }
}

.news_ja {
  font-size: 32px;
  font-weight: 700;
}
.news_ja.wc {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .news_ja {
    font-size: 24px;
  }
}

.news_en {
  font-size: 20px;
  font-weight: 700;
  color: #1237a5;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  font-family: "Sofia Sans Condensed", sans-serif;
  text-transform: uppercase;
}
.news_en.zoom {
  color: #222;
}
.news_en.wc {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .news_en {
    font-size: 14px;
  }
}

.news_list {
  margin: 40px 0 0 85px;
}
.news_list.top {
  margin: 40px 0 0 5%;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .news_list.top {
    margin: 20px 0 0 0;
    width: 100%;
  }
}
.news_list.hikari {
  padding: 70px 100px;
  background-color: #fff;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .news_list.hikari {
    padding: 0;
  }
}
.news_list li {
  margin-bottom: 40px;
}
.news_list li:last-child {
  margin-bottom: 0;
}
.news_list li a {
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px solid #3a3a3a;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (min-width: 1025px) {
  .news_list li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .news_list li {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .news_list {
    margin: 20px 0 0 0;
  }
}

.news_time {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #1237a5;
}
.news_time.hikari {
  display: inline-block;
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .news_time.hikari {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .news_time {
    font-size: 12px;
  }
}

.news_title {
  font-size: 18px;
  font-weight: 700;
}
.news_title.hikari {
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .news_title {
    font-size: 14px;
  }
}

.link_btn_area {
  max-width: 290px;
  width: 100%;
  margin: 90px auto 0 auto;
}
.link_btn_area.min {
  margin: 30px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .link_btn_area.min {
    margin: 20px auto 0 auto;
  }
}
.link_btn_area.right {
  margin: 90px 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .link_btn_area.right {
    margin: 45px auto 0 auto;
  }
}
.link_btn_area.mt0 {
  margin: 0 auto;
}
.link_btn_area.insta {
  max-width: 400px;
  margin: 65px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .link_btn_area.insta {
    max-width: 300px;
    margin: 60px auto 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .link_btn_area {
    max-width: 250px;
    margin: 45px auto 0 auto;
  }
}

.link_btn {
  display: block;
  background-color: #3a3a3a;
  padding: 15px 0;
  border: 1px solid #3a3a3a;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  position: relative;
  z-index: 0;
}
.link_btn.hikari {
  background-color: #0c2560;
  border: 1px solid #0c2560;
}
@media screen and (min-width: 1025px) {
  .link_btn.hikari:hover span {
    color: #0c2560;
  }
  .link_btn.hikari:hover::before {
    border-top: 2px solid #0c2560;
    border-right: 2px solid #0c2560;
  }
}
.link_btn.zoom {
  background-color: #b10304;
  border: 1px solid #b10304;
}
@media screen and (min-width: 1025px) {
  .link_btn.zoom:hover span {
    color: #b10304;
  }
  .link_btn.zoom:hover::before {
    border-top: 2px solid #b10304;
    border-right: 2px solid #b10304;
  }
}
.link_btn.insta {
  background-color: #145ea7;
  border: 1px solid #145ea7;
}
.link_btn.insta span {
  margin-left: 40px;
}
@media screen and (max-width: 1024px) {
  .link_btn.insta span {
    font-size: 14px;
    margin-left: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .link_btn.insta:hover span {
    color: #145ea7;
  }
  .link_btn.insta:hover::before {
    border-top: 2px solid #145ea7;
    border-right: 2px solid #145ea7;
  }
}
@media screen and (max-width: 1024px) {
  .link_btn.insta {
    text-align: left;
  }
}
.link_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 1024px) {
  .link_btn::before {
    margin-top: -5px;
    width: 10px;
    height: 10px;
  }
}
.link_btn span {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  margin-left: 70px;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
}
@media screen and (max-width: 1024px) {
  .link_btn span {
    font-size: 16px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1025px) {
  .link_btn:hover {
    background-color: #fff;
  }
  .link_btn:hover span {
    color: #222;
  }
  .link_btn:hover::before {
    right: 35px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
  }
}
@media screen and (max-width: 1024px) {
  .link_btn {
    padding: 10px 0;
    text-align: center;
  }
}

.shop_list {
  margin-top: 70px;
}
.shop_list li {
  max-width: 1330px;
  width: 100%;
  margin: 0 0 55px auto;
}
.shop_list li:last-child {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 1024px) {
  .shop_list li {
    margin: 0 0 45px auto;
  }
}
@media screen and (max-width: 1024px) {
  .shop_list {
    margin-top: 35px;
  }
}

.shop_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.shop_area.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.shop_area.reverse .shop_box {
  padding: 30px 30px 30px 70px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .shop_area.reverse .shop_box {
    width: auto;
    text-align: center;
    padding: 0 40px;
    margin-top: 30px;
  }
}

.shop_box {
  width: 560px;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 30px 70px 30px 30px;
}
@media screen and (max-width: 1024px) {
  .shop_box {
    width: auto;
    text-align: center;
    padding: 0 40px;
    margin-top: 30px;
  }
}

.shop_img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 548px;
}
.shop_img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: -1;
}
.shop_img.shop_01::before {
  background-image: url("../../image/shop_01.jpg");
  background-position: top right;
}
@media screen and (max-width: 1024px) {
  .shop_img.shop_01::before {
    display: none;
  }
}
.shop_img.shop_02::before {
  background-image: url("../../image/shop_02.jpg");
  background-position: top left;
}
@media screen and (max-width: 1024px) {
  .shop_img.shop_02::before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .shop_img {
    height: auto;
  }
}

.shop_logo img {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .shop_logo img {
    max-width: 115px;
  }
}

.shop_logo_sp {
  display: none;
}
.shop_logo_sp img {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .shop_logo_sp {
    display: block;
  }
}

.shop_title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .shop_title {
    font-size: 18px;
    margin-top: 15px;
  }
}

.shop_text {
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .shop_text {
    font-size: 14px;
    margin-top: 15px;
    text-align: left;
  }
}

.concept_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .concept_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.concept_box {
  width: 48%;
  margin-right: 4%;
}
.concept_box:last-child {
  margin-right: 0;
  margin-top: -60px;
}
@media screen and (max-width: 1024px) {
  .concept_box:last-child {
    margin-top: 0;
    max-width: 100%;
    width: 90%;
    margin: 30px auto 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .concept_box {
    width: 100%;
    margin-right: 0;
  }
}

.concept_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 170px;
}
@media screen and (max-width: 1024px) {
  .concept_con {
    margin-top: 70px;
  }
}

.concept_img.last {
  margin-left: 15px;
}
.concept_img img {
  max-width: 100%;
}

.concept_list li {
  margin-bottom: 40px;
}
.concept_list li:last-child {
  margin-bottom: 0;
}

.concept_title {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .concept_title {
    font-size: 18px;
  }
}

.concept_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .concept_text {
    font-size: 14px;
    margin-top: 10px;
  }
}

.recruit_box {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 440px;
  margin-top: 60px;
}
.recruit_box::before {
  content: "";
  position: absolute;
  top: auto;
  left: auto;
  width: 100%;
  height: 100%;
  background-image: url("../../image/recruit.jpg");
  background-position: center center;
  background-size: auto;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .recruit_box::before {
    background-image: url("../../image/recruit_sp.jpg");
    background-position: top center;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_box {
    margin-top: 40px;
    height: 214px;
  }
}

.recruit_position_01 {
  position: absolute;
  top: 140px;
  left: 90px;
}
@media screen and (max-width: 1024px) {
  .recruit_position_01 {
    top: 60px;
    left: 34px;
  }
}

.recruit_position_02 {
  position: absolute;
  bottom: 40px;
  right: 70px;
  width: 290px;
}
@media screen and (max-width: 1024px) {
  .recruit_position_02 {
    bottom: 32px;
    right: 50%;
    margin-right: -145px;
  }
}

.recruit_title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .recruit_title {
    font-size: 14px;
  }
}

.price_area {
  max-width: 1205px;
  width: 96%;
  margin: 70px auto 0 auto;
  background-color: #fff;
  padding: 90px 90px 60px;
}
@media screen and (max-width: 1024px) {
  .price_area {
    padding: 40px 20px;
    margin: 30px auto 0 auto;
  }
}

.price_box.mt {
  margin-top: 75px;
}
@media screen and (max-width: 1024px) {
  .price_box.mt {
    margin-top: 30px;
  }
}

.price_title {
  color: #0c2560;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 56px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.price_title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #000;
  display: block;
  margin-left: 35px;
}
@media screen and (max-width: 1024px) {
  .price_title::after {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .price_title {
    font-size: 32px;
  }
}

.price_subtitle {
  color: #0c2560;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  position: relative;
  z-index: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.price_subtitle.mt {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .price_subtitle.mt {
    margin-top: 32px;
  }
}
.price_subtitle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 2px;
  background-color: #000;
}
@media screen and (max-width: 1024px) {
  .price_subtitle::before {
    width: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .price_subtitle {
    font-size: 22px;
    padding-bottom: 5px;
  }
}

.price_list {
  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;
  margin-top: 60px;
  max-width: 935px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .price_list li.spmt {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .price_list {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.price_table.mt {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .price_table.mt {
    margin-top: 30px;
  }
}
.price_table table th,
.price_table table td {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .price_table table th,
  .price_table table td {
    font-size: 14px;
  }
}
.price_table table th {
  padding-bottom: 30px;
  min-width: 220px;
}
@media screen and (max-width: 1024px) {
  .price_table table th {
    padding-bottom: 15px;
    min-width: 156px;
  }
}
.price_table table td {
  padding-left: 90px;
}
.price_table table td.tac {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .price_table table td {
    padding-left: 35px;
  }
}

.price_tax {
  font-size: 18px;
  font-weight: 700;
  padding: 20px 0 0 40px;
  margin: 45px -40px 0;
  border-top: 1px solid #000;
}
@media screen and (max-width: 1024px) {
  .price_tax {
    font-size: 14px;
    padding: 10px 0 0 0;
    margin: 25px 0px 0;
  }
}

.insta_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.insta_box {
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .insta_box {
    margin-left: 10px;
  }
}

.insta_icon img {
  max-width: 70px;
}
@media screen and (max-width: 1024px) {
  .insta_icon img {
    max-width: 41px;
  }
}

.insta_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 60px;
}
.insta_list li {
  margin-right: 10px;
}
.insta_list li:last-child {
  margin-right: 0;
}
.insta_list li img {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .insta_list {
    display: none;
  }
}

.insta_list_sp {
  text-align: center;
  margin-top: 50px;
  display: none;
}
.insta_list_sp img {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .insta_list_sp {
    display: block;
  }
}

.store_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .store_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.store_box:first-child {
  width: 55%;
  padding: 45px 60px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .store_box:first-child {
    width: 100%;
    padding: 30px 0;
  }
}
.store_box:last-child {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .store_box:last-child {
    width: 100%;
    padding: 30px 0;
  }
}

@media screen and (max-width: 1024px) {
  .store_img img {
    max-width: 100%;
  }
}

.store_logo img {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .store_logo img.zoom {
    max-width: 122px;
  }
}
@media screen and (max-width: 1024px) {
  .store_logo img {
    max-width: 140px;
    width: 100%;
  }
}

.store_title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
}
.store_title.wc {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .store_title {
    font-size: 18px;
    margin-top: 30px;
  }
}

.store_address {
  margin-top: 15px;
}
.store_address.zoom {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .store_address.zoom {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .store_address {
    margin-top: 5px;
  }
}

.store_list li {
  font-size: 18px;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 1024px) {
  .store_list li {
    font-size: 14px;
  }
}

.store_table table th,
.store_table table td {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .store_table table th,
  .store_table table td {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .store_table table th {
    min-width: 75px;
  }
}

.barber_table table {
  width: 100%;
}
.barber_table table th,
.barber_table table td {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.barber_table table th.bbs,
.barber_table table td.bbs {
  border-bottom: 1px solid #fff;
}
.barber_table table th.pt,
.barber_table table td.pt {
  padding-top: 15px;
}
.barber_table table th.pb,
.barber_table table td.pb {
  padding-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .barber_table table th,
  .barber_table table td {
    font-size: 14px;
  }
}
.barber_table table th {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .barber_table table th {
    width: 23%;
  }
}
.barber_table table td {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .barber_table table td {
    width: 77%;
  }
}

.ggmap_area {
  max-width: 1135px;
  width: 100%;
  margin: 40px auto 0 auto;
}
.ggmap_area.zoom {
  max-width: 590px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .ggmap_area {
    margin: 30px auto 0 auto;
  }
}

.ggmap {
  position: relative;
  z-index: 0;
  height: 423px;
  overflow: hidden;
}
.ggmap.zoom {
  height: 551px;
}
@media screen and (max-width: 1024px) {
  .ggmap.zoom {
    height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .ggmap {
    height: 400px;
  }
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 75px;
}
.info_list li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 30px;
}
.info_list li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .info_list li:nth-child(4n) {
    margin-bottom: 0;
  }
}
.info_list li:nth-last-of-type(-n + 4) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .info_list li:nth-last-of-type(-n + 4) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .info_list li:last-child {
    margin-bottom: 0;
  }
}
.info_list li a {
  display: block;
}
@media screen and (min-width: 1025px) {
  .info_list li a:hover .info_img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .info_list li a:hover .info_title {
    color: #b10304;
  }
}
@media screen and (max-width: 1024px) {
  .info_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .info_list {
    margin-top: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.info_img {
  overflow: hidden;
}
.info_img img {
  max-width: 100%;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.info_time {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #b10304;
}
@media screen and (max-width: 1024px) {
  .info_time {
    margin-top: 15px;
  }
}

.info_title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 1024px) {
  .info_title {
    margin-top: 5px;
  }
}

.fare_title_box {
  max-width: 575px;
  width: 100%;
  margin: 80px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .fare_title_box {
    margin: 40px auto 0 auto;
  }
}

.fare_title {
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 15px 0;
  background-color: #222;
  text-transform: uppercase;
  line-height: 1;
  font-family: "Sofia Sans Condensed", sans-serif;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
}
@media screen and (max-width: 1024px) {
  .fare_title {
    font-size: 32px;
    padding: 10px 0;
  }
}

.fare_area {
  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;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .fare_area {
    margin-top: 20px;
    padding: 0 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .fare_box {
    width: 100%;
  }
}

.fare_sub_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #222;
  padding: 10px 20px;
}
.fare_sub_title.mt {
  margin-top: 40px;
}

.fare_sub_title_en {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  font-family: "Sofia Sans Condensed", sans-serif;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
}
@media screen and (max-width: 1024px) {
  .fare_sub_title_en {
    font-size: 20px;
  }
}

.fare_sub_title_ja {
  margin-left: auto;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .fare_sub_title_ja {
    font-size: 12px;
  }
}

.fare_table {
  margin-top: 40px;
}
.fare_table table th,
.fare_table table td {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .fare_table table th,
  .fare_table table td {
    font-size: 14px;
  }
}
.fare_table table th {
  padding-bottom: 30px;
  min-width: 220px;
}
@media screen and (max-width: 1024px) {
  .fare_table table th {
    min-width: 156px;
    padding-bottom: 15px;
  }
}
.fare_table table td {
  padding-left: 90px;
}
.fare_table table td.tac {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .fare_table table td {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .fare_table {
    margin-top: 30px;
  }
}

.gram_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gram_list li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 25px;
}
.gram_list li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .gram_list li:nth-child(4n) {
    margin-right: 2%;
  }
}
@media screen and (max-width: 1024px) {
  .gram_list li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .gram_list li:nth-last-child(-n+4) {
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 1024px) {
  .gram_list li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
.gram_list li img {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .gram_list li {
    width: 49%;
    margin-bottom: 7px;
  }
}

.barber_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1550px;
  width: 100%;
  margin: 100px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .barber_con {
    margin: 50px auto 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.barber_img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 690px;
}
.barber_img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: -1;
  background-image: url(../../image/zoom/shop_01.jpg);
  background-position: top right;
}
@media screen and (max-width: 1024px) {
  .barber_img::before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .barber_img {
    position: static;
    height: auto;
  }
}

.barber_img_sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .barber_img_sp {
    display: block;
    text-align: right;
    width: 100%;
  }
}
.barber_img_sp img {
  max-width: 100%;
}

.barber_tent {
  max-width: 800px;
  width: 100%;
  padding: 40px 0 85px;
  background-color: rgba(47, 47, 47, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -30px;
}
@media screen and (max-width: 1024px) {
  .barber_tent {
    width: 95%;
    padding: 20px 0 40px;
  }
}

.barber_tent_in {
  max-width: 540px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .barber_tent_in {
    padding: 0 20px;
  }
}

.barber_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1215px;
  width: 96%;
  margin: 65px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .barber_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 80px auto 0 auto;
    width: 90%;
  }
}

.barber_box {
  width: 48%;
  margin-right: 4%;
}
.barber_box:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .barber_box:last-child {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .barber_box {
    width: 100%;
    margin-right: 0;
  }
}

.idea_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 70px;
}
.idea_list li {
  width: 46%;
  margin-right: 8%;
  padding: 30px;
  border: 1px solid #222;
}
.idea_list li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .idea_list li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .idea_list li {
    width: 100%;
    margin-right: 0;
    padding: 20px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .idea_list {
    margin-top: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.idea_img {
  text-align: center;
}
.idea_img img {
  max-width: 100%;
}

.idea_title {
  font-size: 28px;
  font-weight: 700;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .idea_title {
    font-size: 18px;
    margin-top: 15px;
  }
}

.idea_text {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .idea_text {
    font-size: 14px;
    margin-top: 10px;
  }
}

#mv_lower_box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#mv_lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center;
  font-family: "Sofia Sans Condensed", sans-serif;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  color: #fff;
  line-height: 1;
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
}
#mv_lower.ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 46px;
}
@media screen and (max-width: 1024px) {
  #mv_lower.ja {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #mv_lower {
    font-size: 18px;
  }
}

.adopt_list li {
  margin-bottom: 95px;
}
.adopt_list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .adopt_list li {
    margin-bottom: 45px;
  }
}

.adopt_title {
  font-size: 32px;
  font-weight: 800;
  color: #1237a5;
  padding-bottom: 20px;
  position: relative;
  z-index: 0;
}
.adopt_title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #3a3a3a;
  z-index: -1;
}
.adopt_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 195px;
  height: 2px;
  background-color: #1237a5;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .adopt_title::after {
    width: 100px;
  }
}
.adopt_title span {
  font-size: 24px;
  color: #1237a5;
}
@media screen and (max-width: 1024px) {
  .adopt_title span {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .adopt_title {
    font-size: 24px;
    padding-bottom: 15px;
  }
}

.adopt_table table {
  width: 100%;
}
.adopt_table table th,
.adopt_table table td {
  font-size: 18px;
  font-weight: 500;
}
.adopt_table table th.bbs,
.adopt_table table td.bbs {
  border-bottom: 1px solid #3a3a3a;
}
.adopt_table table th.pt,
.adopt_table table td.pt {
  padding-top: 25px;
}
@media screen and (max-width: 1024px) {
  .adopt_table table th.pt,
  .adopt_table table td.pt {
    padding-top: 15px;
  }
}
.adopt_table table th.pb,
.adopt_table table td.pb {
  padding-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .adopt_table table th.pb,
  .adopt_table table td.pb {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .adopt_table table th,
  .adopt_table table td {
    font-size: 14px;
  }
}
.adopt_table table th {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .adopt_table table th {
    width: 24%;
  }
}
.adopt_table table td {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .adopt_table table td {
    width: 76%;
  }
}

.adopt_box {
  background-color: #fff;
  padding: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .adopt_box {
    padding: 25px 20px;
    margin-top: 20px;
  }
}

.adopt_resume {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .adopt_resume {
    font-size: 14px;
  }
}

.adopt_contact {
  font-size: 20px;
  font-weight: 800;
  color: #0c2560;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
  z-index: 0;
  margin-top: 40px;
}
.adopt_contact::before, .adopt_contact::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #000;
  display: block;
}
.adopt_contact::before {
  margin-right: 20px;
}
.adopt_contact::after {
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .adopt_contact {
    font-size: 14px;
    margin-top: 20px;
  }
}

.adopt_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .adopt_con {
    margin-top: 10px;
  }
}

.adopt_text {
  font-size: 18px;
  font-weight: 800;
}
.adopt_text.thin {
  font-weight: 500;
  padding: 30px 10px;
  border-bottom: 1px solid #3a3a3a;
}
@media screen and (max-width: 1024px) {
  .adopt_text.thin {
    padding: 15px 10px;
  }
}
.adopt_text.name {
  margin-left: 50px;
}
@media screen and (max-width: 1024px) {
  .adopt_text.name {
    margin-left: auto;
  }
}
.adopt_text span {
  font-size: 40px;
  font-weight: 800;
  color: #4897ff;
  font-family: "Sofia Sans Condensed", sans-serif;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .adopt_text span {
    font-size: 23px;
  }
}
@media screen and (max-width: 1024px) {
  .adopt_text {
    font-size: 13px;
  }
}