@charset "UTF-8";
/*
  Reset
----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/*
  Definition
----------------------------------------------- */
/*-- ブレイクポイント -- */
/*
  Base
----------------------------------------------- */
html {
  font-size: 62.5%;
  text-rendering: optimizeSpeed;
}

body {
  font-family: "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  color: #333;
  font-weight: 500;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: black;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    display: block;
  }
}

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

/*
  Responsive
----------------------------------------------- */
.show--pc {
  display: none;
}

@media screen and (min-width: 1024px) {
  .show--pc {
    display: block;
  }
}

.show--tb {
  display: none;
}

@media screen and (min-width: 768px) {
  .show--tb {
    display: block;
  }
}

.show--sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .show--sp {
    display: none;
  }
}

/*
  共通パーツ
----------------------------------------------- */
/* ------------ ヘッダー ------------ */
.header {
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 0;
}

@media screen and (min-width: 1024px) {
  .header {
    padding: 12px 0;
  }
}

.header__container {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) and (max-width: 1139px) {
  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 95%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1140px) {
  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
  }
}

.header__logo {
  width: 146px;
}

@media screen and (min-width: 1024px) {
  .header__logo {
    display: block;
    width: 12%;
    margin-right: 52px;
  }
}

.header__ham {
  display: block;
  position: absolute;
  z-index: 30;
  right: 5%;
  top: 18px;
  cursor: pointer;
  text-align: center;
  border: 1px solid #333;
  background-color: #fff;
  width: 48px;
  height: 48px;
}

@media screen and (min-width: 1024px) {
  .header__ham {
    display: none;
  }
}

.header__ham:after {
  content: "メニュー";
  position: absolute;
  bottom: 5px;
  left: 0;
  color: #333;
  width: 100%;
  font-size: 1em;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.header__ham span {
  display: block;
  position: absolute;
  width: 19px;
  height: 2px;
  left: 13px;
  background: #333;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header__ham span:nth-child(1) {
  top: 12px;
}

.header__ham span:nth-child(2) {
  top: 17px;
}

.header__ham span:nth-child(3) {
  top: 22px;
}

.header__ham.active {
  background-color: #333;
}

.header__ham.active:after {
  content: "閉じる";
  color: #fff;
}

.header__ham.active span:nth-child(1) {
  top: 16px;
  left: 13px;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header__ham.active span:nth-child(2), .header__ham.active span:nth-child(3) {
  top: 16px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header__menu {
  height: 0;
  overflow: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
  position: absolute;
  right: 5%;
  top: 66px;
  z-index: 100;
}

@media screen and (min-width: 1024px) {
  .header__menu {
    height: auto;
    position: static;
    border: none;
    width: 45%;
    -webkit-transition: none;
    transition: none;
  }
}

.header__menulists {
  width: 66.443%;
  width: 80vw;
  font-size: 1.6em;
  line-height: 1.6;
  -webkit-transition: all 1s;
  transition: all 1s;
  height: auto;
  padding: 20% 10% 40% 20%;
  border: 1px solid #333;
  background-color: #fff;
}

@media screen and (min-width: 1024px) {
  .header__menulists {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    -webkit-transition: none;
    transition: none;
    margin-right: 1.25vw;
    padding: 0;
    border: none;
    background-color: transparent;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1140px) {
  .header__menulists {
    font-size: 1.5em;
  }
}

.header__menulists li {
  position: relative;
  -webkit-transition: all 1s;
  transition: all 1s;
}

@media screen and (min-width: 1024px) {
  .header__menulists li {
    position: static;
    -webkit-transition: none;
    transition: none;
    margin-right: min(1.66vw, 30px);
  }
}

@media screen and (min-width: 1024px) {
  .header__menulists li:last-child {
    margin-right: 0;
  }
}

.header__menulists li:before {
  content: "";
  position: absolute;
  width: 10%;
  height: 1px;
  background-color: #F37000;
  bottom: -1px;
  z-index: 10;
}

@media screen and (min-width: 1024px) {
  .header__menulists li:before {
    content: none;
  }
}

.header__menulists li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #D5D5D5;
}

@media screen and (min-width: 1024px) {
  .header__menulists li:after {
    content: none;
  }
}

.header__menu a {
  padding: 18px 0 8px;
  width: 100%;
  display: block;
}

@media screen and (min-width: 1024px) {
  .header__menu a {
    padding: 10px 0;
  }
}

.header__menu.active {
  height: 80vh;
  right: 5%;
  -webkit-transition: all 1s;
  transition: all 1s;
  visibility: visible;
  position: fixed;
  z-index: 100;
  margin-top: 0px;
}

.header__menu.active ul {
  min-height: 230px;
  border: 1px solid #333;
  background-color: #fff;
}

.header__link {
  display: none;
}

@media screen and (min-width: 1024px) {
  .header__link {
    display: block;
    text-align: center;
  }
}

.header__link--btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
}

.header__link--btn li:first-child {
  margin-right: 8px;
}

.header__link--btn a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  letter-spacing: -.2px;
  width: 100%;
}

.header__link--tel {
  background-color: #F37000;
  padding: 8px 13px;
  font-size: 1.8em;
  border-radius: 15px;
}

.header__link--tel span {
  font-size: .6em;
  display: block;
  margin-right: 8px;
  margin-bottom: 2px;
}

.header__link--line {
  font-size: 1.2em;
  background-color: #00B825;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}

.header__link--line a {
  padding: 10px 20px;
}

.header__disappear {
  opacity: 0;
  -webkit-transition: 1s all;
  transition: 1s all;
  height: 0;
  -webkit-animation: Disappear .6s forwards;
          animation: Disappear .6s forwards;
  position: fixed;
}

.header__appear {
  opacity: 1;
  position: fixed;
  -webkit-transition: 1s all;
  transition: 1s all;
  -webkit-animation: Appear .6s forwards;
          animation: Appear .6s forwards;
}

.header__none {
  display: none;
}

/* ------------ フッター ------------ */
.footer {
  padding: 56px 0 125px;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 106px 0 0;
    background-image: url(../img/common/footer.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.footer__logo {
  width: 25.866%;
  margin: 0 auto 24px;
}

@media screen and (min-width: 768px) {
  .footer__logo {
    width: 97px;
    margin-bottom: 32px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__logo {
    width: 175px;
  }
}

.footer__address {
  font-size: 1.4em;
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .footer__address {
    margin-bottom: 32px;
  }
}

.footer--tb {
  display: none;
}

@media screen and (min-width: 768px) {
  .footer--tb {
    display: block;
    margin-bottom: 12px;
  }
}

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

.footer--tbtel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #F37000;
  margin-bottom: 12px;
  font-size: 2.4em;
}

.footer--tbtel span {
  font-size: .4em;
  padding: 3px;
  border: 1px solid #F37000;
  margin-right: 1em;
}

.footer--tbtime {
  font-size: 1.1em;
  color: #333;
}

@media screen and (min-width: 1024px) {
  .footer--bottom {
    background-color: #888888;
    width: 100%;
  }
}

.footer small {
  font-size: 1.1em;
  color: #888;
}

@media screen and (min-width: 1024px) {
  .footer small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #fff;
    font-size: 1.4em;
    padding: 12px 0;
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
  }
}

.footer small a {
  color: #888;
}

@media screen and (min-width: 1024px) {
  .footer small a {
    color: #fff;
  }
}

.footer small span {
  display: block;
  margin-bottom: 4px;
}

@media screen and (min-width: 1024px) {
  .footer small span {
    margin: 0;
  }
}

.spfix {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 90;
}

@media screen and (min-width: 768px) {
  .spfix {
    display: none;
  }
}

.spfix__top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.spfix__top li {
  width: 50%;
}

.spfix__top li a {
  color: #fff;
  width: 100%;
  display: block;
  font-size: 1.4em;
  line-height: 1;
  padding: 16px 0;
}

.spfix__top--tel {
  background-color: #F37000;
}

.spfix__top--line {
  background-color: #00B825;
}

.spfix__bottom {
  background-color: #fff;
  text-align: center;
  font-size: 1.3em;
  padding: 4px 0 8px;
  color: #333;
}

/* ------------ トップh2 ------------ */
.top__h2 {
  font-size: 2.2em;
  font-weight: bold;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: relative;
  letter-spacing: 1.2px;
  padding: 5px 0;
  margin: 0 auto 56px;
}

@media screen and (min-width: 1024px) {
  .top__h2 {
    font-size: 4.5em;
    margin: 0 40px 0 0;
  }
}

.top__h2 span {
  z-index: 20;
  position: relative;
}

.top__h2:after {
  content: "";
  position: absolute;
  right: -3px;
  top: 0;
  width: 10px;
  height: 0;
  background: #F37000;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 10;
}

@media screen and (min-width: 1024px) {
  .top__h2:after {
    width: 15px;
  }
}

.top__h2.top__h2--active:after {
  width: 10px;
  height: 100%;
}

.ls--small {
  letter-spacing: -.5px;
}

#modal-line {
  display: none;
}

.modal-line--img {
  width: 300px;
}

.modaal-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/*
  TOPページ
----------------------------------------------- */
/* ------------ MV ------------ */
@media screen and (min-width: 1024px) {
  .topmv__outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
  }
}

.topmv--left {
  display: none;
}

@media screen and (min-width: 1024px) {
  .topmv--left {
    display: block;
    width: 682px;
    position: relative;
  }
}

.topmv--right {
  display: none;
}

@media screen and (min-width: 1024px) {
  .topmv--right {
    display: block;
    width: 650px;
    position: relative;
    left: -130px;
  }
}

.left_1-1 {
  position: absolute;
  right: 32px;
  top: 132px;
  width: 138px;
  height: 146px;
}

.left_2-1 {
  position: absolute;
  right: 222px;
  top: 140px;
  width: 153px;
  height: 145px;
}

.left_2-2 {
  position: absolute;
  right: 95px;
  top: 300px;
  width: 162px;
  height: 132px;
}

.left_3-1 {
  position: absolute;
  right: 413px;
  top: 120px;
  width: 170px;
  height: 167px;
}

.left_3-2 {
  position: absolute;
  right: 316px;
  top: 312px;
  width: 142px;
  height: 132px;
}

.left_4-1 {
  position: absolute;
  top: -21px;
  right: 117px;
  width: 144px;
  height: 137px;
}

.left_4-2 {
  position: absolute;
  top: -21px;
  right: 320px;
  width: 162px;
  height: 132px;
}

.left_5-1 {
  position: absolute;
  top: 150px;
  right: 627px;
  width: 167px;
  height: 135px;
}

.left_6-1 {
  position: absolute;
  top: -16px;
  right: 543px;
  width: 150px;
  height: 130px;
}

.left_6-2 {
  position: absolute;
  top: 308px;
  right: 543px;
  width: 140px;
  height: 151px;
}

.right_1-1 {
  position: absolute;
  top: 325px;
  left: 0px;
  width: 142px;
  height: 132px;
}

.right_2-1 {
  position: absolute;
  top: 130px;
  left: 85px;
  width: 170px;
  height: 167px;
}

.right_3-1 {
  position: absolute;
  top: 308px;
  left: 180px;
  width: 140px;
  height: 151px;
}

.right_4-1 {
  position: absolute;
  top: -6px;
  left: 183px;
  width: 162px;
  height: 132px;
}

.right_4-2 {
  position: absolute;
  top: 140px;
  left: 290px;
  width: 153px;
  height: 145px;
}

.right_4-3 {
  position: absolute;
  top: 134px;
  left: 509px;
  width: 140px;
  height: 151px;
}

.right_5-1 {
  position: absolute;
  top: 307px;
  left: 385px;
  width: 137px;
  height: 145px;
}

.right_5-2 {
  position: absolute;
  top: -6px;
  left: 611px;
  width: 150px;
  height: 131px;
}

.right_5-3 {
  position: absolute;
  top: 307px;
  left: 805px;
  width: 162px;
  height: 132px;
}

.right_6-1 {
  position: absolute;
  top: -6px;
  left: 408px;
  width: 142px;
  height: 137px;
}

.right_6-2 {
  position: absolute;
  top: 307px;
  left: 591px;
  width: 167px;
  height: 135px;
}

.right_6-3 {
  position: absolute;
  top: 147px;
  left: 707px;
  width: 142px;
  height: 132px;
}

.right_6-4 {
  position: absolute;
  top: -6px;
  left: 813px;
  width: 162px;
  height: 132px;
}

[class^="mvfade"] {
  -webkit-animation-name: Appear;
          animation-name: Appear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
  opacity: 0;
}

.mvfade_1 {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.mvfade_2 {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.mvfade_3 {
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

.mvfade_4 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.mvfade_5 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.mvfade_6 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.topmv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

@media screen and (min-width: 1024px) {
  .topmv {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 95%;
    margin: 0 auto;
    height: 500px;
  }
}

@media screen and (min-width: 1200px) {
  .topmv {
    max-width: 1140px;
  }
}

.topmv--bg {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .topmv--bg {
    display: none;
  }
}

.topmv--bg img {
  width: 100%;
  height: 44vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

@media screen and (min-width: 768px) {
  .topmv--bg img {
    height: 27.864vw;
  }
}

.topmv--menu {
  display: none;
}

@media screen and (min-width: 1024px) {
  .topmv--menu {
    display: block;
  }
}

.topmv--menu--bottom {
  width: 250px;
  text-align: center;
}

.topmv--menulists {
  margin: 120px 0 62px;
  font-size: 1.5em;
}

.topmv--menulists li {
  margin-bottom: 36px;
}

.topmv--menulists li:last-child {
  margin-bottom: 0;
}

.topmv--menulinks {
  width: 100%;
}

.topmv--menulinks li {
  text-align: center;
  height: 30px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 8px;
}

.topmv--menulinks a {
  color: #fff;
  width: 100%;
}

.topmv--menulinks--tel {
  background-color: #F37000;
  font-size: 2em;
  padding: 8px 0;
  color: #fff;
}

.topmv--menulinks--tel span {
  font-size: .6em;
  margin-right: .5em;
}

.topmv--menulinks--line {
  background-color: #00B825;
  font-size: 1.4em;
}

.topmv--menu small {
  width: 250px;
  text-align: center;
}

.topmv--catch {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: absolute;
  color: #F37000;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .topmv--catch {
    font-size: 2.2em;
  }
}

@media screen and (min-width: 1024px) {
  .topmv--catch {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    top: 0;
    left: 70%;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 4.5em;
    background-color: transparent;
  }
}

.topmv--catch br {
  margin-bottom: 1em;
}

.topmv--catch span {
  padding: 8px 6px;
  background-color: #fff;
}

@media screen and (min-width: 1024px) {
  .topmv--catch span {
    padding: 0;
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin-top: 43px;
    background-color: transparent;
  }
}

.topmv--catch--showpc {
  display: none;
}

@media screen and (min-width: 1024px) {
  .topmv--catch--showpc {
    display: inline;
  }
}

.topmv--catch:before {
  content: "";
  width: 28px;
  height: 24px;
  background-color: rgba(243, 112, 0, 0.53);
}

@media screen and (min-width: 768px) {
  .topmv--catch:before {
    height: 80px;
    width: 34px;
  }
}

@media screen and (min-width: 1024px) {
  .topmv--catch:before {
    width: 21px;
    height: 267px;
    background-color: #f3700086;
    position: absolute;
    margin-right: -8px;
    left: calc(50% + 40px);
  }
}

.topmv__block {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .topmv__block {
    width: calc(100% / 3);
    min-width: 324px;
    height: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .topmv__block--left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (min-width: 1024px) {
  .topmv__block--center {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (min-width: 1024px) {
  .topmv__block--right {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    position: relative;
    height: 100%;
  }
}

.topmv--logo {
  width: 41.06%;
  margin: 40px auto 16px;
}

@media screen and (min-width: 768px) {
  .topmv--logo {
    width: 245px;
    margin: 135px auto 16px;
  }
}

@media screen and (min-width: 1024px) {
  .topmv--logo {
    margin: 48px auto 28px;
    width: 310px;
  }
}

.topmv--text {
  text-align: center;
  font-size: 1.2em;
  line-height: 1.5833;
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .topmv--text {
    margin-bottom: 56px;
  }
}

@media screen and (min-width: 1024px) {
  .topmv--text {
    font-size: 1.5em;
    line-height: 2;
  }
}

.topmv--arrow {
  width: 8.8%;
  margin-bottom: 36px;
}

@media screen and (min-width: 768px) {
  .topmv--arrow {
    width: 33px;
  }
}

@media screen and (min-width: 1024px) {
  .topmv--arrow {
    display: none;
  }
}

/* ------------ リンクカード ------------ */
@media screen and (min-width: 1024px) {
  .linkcard {
    width: 1024px;
    margin: 0 auto 160px;
    padding-top: 160px;
  }
}

@media screen and (min-width: 1024px) {
  .linkcard ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.linkcard__item {
  width: 90%;
  margin: 0 auto 2.133vw;
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .linkcard__item {
    width: 338px;
  }
}

@media screen and (min-width: 1024px) {
  .linkcard__item {
    width: calc(100% / 3 - 4px);
    background-position: bottom right;
    background-size: 60%;
    margin: 0;
  }
}

.linkcard__item:last-child {
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .linkcard__item:last-child {
    margin: 0;
  }
}

.linkcard__item a {
  display: block;
  width: 100%;
  padding-top: 64.201%;
}

@media screen and (min-width: 768px) {
  .linkcard__item a {
    padding-top: 64.201%;
  }
}

@media screen and (min-width: 1024px) {
  .linkcard__item a {
    padding-top: 106.586%;
  }
}

.linkcard__item a:after {
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  position: absolute;
  z-index: 0;
  -webkit-transition: .6s all;
  transition: .6s all;
}

.linkcard__item a:hover:after {
  content: "";
  width: 100%;
}

.linkcard__item--left {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: absolute;
  left: 8.875%;
  top: 13.824%;
}

@media screen and (min-width: 768px) {
  .linkcard__item--left {
    left: 30px;
    top: 33px;
  }
}

@media screen and (min-width: 1024px) {
  .linkcard__item--left {
    position: absolute;
    top: 55px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
  }
}

.linkcard__item--left p {
  font-size: 6.4vw;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 1.2px;
}

@media screen and (min-width: 768px) {
  .linkcard__item--left p {
    font-size: 2.4em;
  }
}

@media screen and (min-width: 1024px) {
  .linkcard__item--left p {
    font-size: 2.8em;
  }
}

.linkcard__item--right {
  position: absolute;
  left: 35.5%;
  bottom: 13.824%;
}

@media screen and (min-width: 768px) {
  .linkcard__item--right {
    left: 120px;
    top: 98px;
  }
}

@media screen and (min-width: 1024px) {
  .linkcard__item--right {
    top: 216px;
    left: 48px;
    z-index: 10;
  }
}

.linkcard__item--right span {
  display: block;
  font-size: 4.533vw;
  padding: 2.133vw 4.266vw;
  white-space: nowrap;
  margin-bottom: 3.2vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 768px) {
  .linkcard__item--right span {
    font-size: 1.7em;
    padding: 8px 16px;
  }
}

@media screen and (min-width: 1024px) {
  .linkcard__item--right span {
    font-size: 1.8em;
    margin-bottom: 8px;
  }
}

.linkcard__item--right p {
  font-size: 3.466vw;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .linkcard__item--right p {
    font-size: 1.3em;
  }
}

@media screen and (min-width: 1024px) {
  .linkcard__item--right p {
    font-size: 1.6em;
  }
}

.linkcard__item--navy {
  background-image: url(../img/top/cardbg_white_sp.svg);
  background-color: #1C2C6F;
}

@media screen and (min-width: 1024px) {
  .linkcard__item--navy {
    background-image: url(../img/top/cardbg_white_pc.svg);
  }
}

.linkcard__item--navy a {
  color: #fff;
}

.linkcard__item--navy a:after {
  background-color: #253B98;
}

.linkcard__item--navy .linkcard__item--right span {
  color: #1C2C6F;
  background-color: #fff;
}

.linkcard__item--orange {
  background-image: url(../img/top/cardbg_orange_sp.svg);
  background-color: #fff;
  border: 5px solid #F37000;
}

@media screen and (min-width: 1024px) {
  .linkcard__item--orange {
    background-image: url(../img/top/cardbg_orange_pc.svg);
  }
}

.linkcard__item--orange a {
  color: #F37000;
}

.linkcard__item--orange a:after {
  background-color: #F4CB86;
  height: calc(100% + 10px);
  left: -5px;
  top: -5px;
}

.linkcard__item--orange a:hover:after {
  width: calc(100% + 10px);
}

.linkcard__item--orange .linkcard__item--right span {
  color: #fff;
  background-color: #F37000;
}

.linkcard__item--gray {
  background-image: url(../img/top/cardbg_white_sp.svg);
  background-color: #767676;
}

@media screen and (min-width: 1024px) {
  .linkcard__item--gray {
    background-image: url(../img/top/cardbg_white_pc.svg);
  }
}

.linkcard__item--gray a {
  color: #fff;
}

.linkcard__item--gray a:after {
  background-color: #888;
}

.linkcard__item--gray .linkcard__item--right span {
  color: #767676;
  background-color: #fff;
}

/* ------------ 相談を聞く人 ------------ */
.member {
  padding: 154px 0 0;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .member {
    width: 80%;
  }
}

@media screen and (min-width: 1024px) {
  .member {
    width: 85%;
    max-width: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  .member:before {
    content: "";
    width: 53px;
    height: 57px;
    background-image: url(../img/common/icon_orange.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 160px;
  }
}

.member .top__h2 {
  color: #1C2C6F;
}

.member .top__h2:before {
  content: "";
  background-image: url(../img/common/icon_orange.svg);
  background-repeat: no-repeat;
  width: 35px;
  height: 38px;
  position: absolute;
  top: -96px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

@media screen and (min-width: 1024px) {
  .member .top__h2:before {
    content: none;
  }
}

@media screen and (min-width: 1024px) {
  .member__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.member__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .member__block {
    width: 45%;
  }
}

@media screen and (min-width: 1024px) {
  .member__block:first-of-type {
    margin-right: 28px;
  }
}

.member__description {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.member__description--name {
  font-size: 1.6em;
  margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
  .member__description--name {
    width: 338px;
    margin: 0 auto 8px;
  }
}

@media screen and (min-width: 1024px) {
  .member__description--name {
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 16px;
    width: 100%;
  }
}

.member__description--name span {
  display: block;
  font-size: .8em;
  margin-bottom: 12px;
}

@media screen and (min-width: 1024px) {
  .member__description--name span {
    font-weight: 400;
    font-size: .7em;
  }
}

.member__description--born {
  display: block;
  font-size: 1.3em;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .member__description--born {
    width: 338px;
    margin: 0 auto 16px;
  }
}

@media screen and (min-width: 1024px) {
  .member__description--born {
    font-size: 1.4em;
    width: 100%;
    margin-bottom: 22px;
  }
}

.member__description--role {
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .member__description--role {
    width: 338px;
    margin: 0 auto 16px;
  }
}

@media screen and (min-width: 1024px) {
  .member__description--role {
    width: 100%;
  }
}

.member__description--role li {
  list-style: disc;
  font-size: 1.3em;
  margin-left: 1.2em;
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: -.3px;
}

@media screen and (min-width: 768px) {
  .member__description--role li {
    font-size: 1.2em;
  }
}

@media screen and (min-width: 1024px) {
  .member__description--role li {
    font-size: 1.4em;
    letter-spacing: -.3px;
    margin-left: 1.2em;
  }
}

.member__description--role li.member__description--roleNarrow {
  letter-spacing: -.6px;
  text-indent: -4px;
}

@media screen and (min-width: 1024px) {
  .member__description--br {
    display: none;
  }
}

.member__description--text {
  font-size: 1.3em;
  line-height: 1.9;
}

.member__pic {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 20px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .member__pic {
    width: 338px;
    margin: 0 auto 16px;
  }
}

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

.member__pic--role {
  position: absolute;
  bottom: 0;
  left: 0;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #fff;
  background-color: #333;
  padding: 6px 14px 1px 5px;
}

@media screen and (min-width: 1024px) {
  .member__pic--role {
    font-size: 1.8em;
    padding: 16px 20px 8px 6px;
    line-height: 1;
  }
}

.member__pic--en {
  position: absolute;
  bottom: 0;
  right: 2px;
  font-size: 1.8em;
  font-weight: bold;
  color: #fff;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.member__movie {
  text-align: center;
}

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

.member__movie iframe {
  width: 70vw;
  height: 39.39vw;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .member__movie iframe {
    width: 60%;
    height: calc(520px / 16 * 9);
  }
}

/* ------------ 私たちの想い ------------ */
.thought {
  padding: calc(20% + 58px) 0 calc(20% + 24px);
  background-color: #1C2C6F;
  background-image: url(../img/common/iyokan_bg.svg);
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}

@media screen and (min-width: 768px) {
  .thought {
    background-size: 80vw;
  }
}

@media screen and (min-width: 1024px) {
  .thought {
    background-position: center;
    background-attachment: fixed;
  }
}

@media screen and (min-width: 1200px) {
  .thought {
    background-size: 1140px;
    padding: calc(20vw + 82px) 0 20vw;
  }
}

.thought:before {
  content: "";
  background-image: url(../img/top/triangle_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 20%;
  position: absolute;
  top: 0;
}

@media screen and (min-width: 1700px) {
  .thought:before {
    height: 25%;
  }
}

.thought:after {
  content: "";
  background-image: url(../img/top/triangle_navy.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 20%;
  position: absolute;
  bottom: 0;
  background-position: bottom;
}

@media screen and (min-width: 1700px) {
  .thought:after {
    height: 25%;
  }
}

.thought .top__h2 {
  color: #fff;
  white-space: nowrap;
}

.thought .top__h2:after {
  background: #F39800;
}

@media screen and (min-width: 768px) {
  .thought__inner {
    width: 80%;
    margin: 0 auto;
  }
}

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

.thought__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.thought__block:after {
  content: "";
  width: 6px;
  height: 62px;
  background-color: #fff;
}

.thought__block:last-child:after {
  content: none;
}

.thought__title {
  width: 95%;
  margin: 0 auto 0 0;
  background-color: #F39800;
  color: #1C2C6F;
  padding: 14px 0 14px calc(5% + 18px);
}

@media screen and (min-width: 768px) {
  .thought__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 516px;
    z-index: 10;
    padding: 16px;
  }
}

.thought__title--inner {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.8em;
  line-height: 1.55;
}

@media screen and (min-width: 1024px) {
  .thought__title--inner {
    font-size: 2.2em;
  }
}

.thought__text {
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  padding: 24px 28px;
  font-size: 1.4em;
  line-height: 1.6;
}

.thought__text span {
  letter-spacing: -.5px;
}

@media screen and (min-width: 768px) {
  .thought__text {
    width: 100%;
    padding: 87px 32px 16px 24px;
    margin-top: -71px;
  }
  .thought__text span {
    letter-spacing: 1px;
  }
}

@media screen and (min-width: 1024px) {
  .thought__text {
    font-size: 1.6em;
    margin-left: 16px;
    width: calc(100% - 16px);
  }
}

.thought__text--item {
  margin-bottom: 1.4em;
}

@media screen and (min-width: 768px) {
  .thought__text--oneline {
    margin-top: -40px;
    padding: 56px 32px 16px 24px;
  }
}

/* ------------ 相談内容 ------------ */
.qa {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  margin-top: 56px;
  margin-bottom: 56px;
}

@media screen and (min-width: 1024px) {
  .qa {
    width: 85%;
    max-width: 900px;
  }
}

.qa__title {
  font-size: 2.2em;
  color: #1C2C6F;
  text-align: center;
  position: relative;
  padding-top: 68px;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .qa__title {
    margin-bottom: 40px;
  }
}

.qa__title:before {
  content: "";
  width: 35px;
  height: 4px;
  position: absolute;
  background-color: #1C2C6F;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
}

.qa__title--icon {
  width: 35px;
  margin: 0 auto;
  margin-bottom: 32px;
}

.qa .qa__accordion--label {
  display: block;
  color: #1C2C6F;
  background-color: #D5D5D5;
  font-size: 1.6em;
  line-height: 1.4;
  padding: 12px 52px 11px 12px;
  cursor: pointer;
  position: relative;
}

@media screen and (min-width: 768px) {
  .qa .qa__accordion--label {
    font-size: 1.8em;
  }
}

.qa .qa__accordion--label:before {
  content: "";
  width: 40px;
  height: 100%;
  background-color: #1C2C6F;
  position: absolute;
  right: 0;
  top: 0;
}

.qa .qa__accordion--label:after {
  content: "";
  width: 12px;
  height: 8px;
  background-image: url(../img/top/accordion_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa .qa__accordion--label.is-expand:after {
  right: 13px;
  top: 50%;
  -webkit-transform: rotate(-180deg) translateY(50%);
          transform: rotate(-180deg) translateY(50%);
}

.qa .qa__accordion--answer {
  margin-bottom: 10px;
  font-size: 1.4em;
  line-height: 1.5714;
  min-height: 0;
  max-height: 0;
  overflow-y: hidden;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}

.qa .qa__accordion--answer p {
  padding: 1em;
}

.qa .qa__accordion--answer.is-expand {
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}

.castle {
  margin-bottom: 56px;
}

/*
  アニメーション
----------------------------------------------- */
@-webkit-keyframes Disappear {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes Disappear {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes Appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes Appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
