@charset "UTF-8";

/*------------------------------------------------------------
  reset
------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
html {
  font-size: 62.5%;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
small,
address,
strong {
  font: inherit;
}
body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
main {
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  display: block;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
input,
button,
select,
textarea {
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  font: inherit;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: inherit;
}
textarea {
  overflow: auto;
  resize: none;
}
::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/*------------------------------------------------------------
  body
------------------------------------------------------------*/
body {
  position: relative;
  left: 0;
  background: #fff;
  color: #000;
  font: normal normal normal 1.4em/1.75 'Hiragino Sans W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', sans-serif;
  transition: left .6s;
}
body.is-on {
  visibility: visible;
}
body.is-drawer-open {
  left: -25rem
}

@media screen and (min-width: 375px) {
  body.is-drawer-open {
    left: -28.5rem
  }
} /* ----- media END ----- */

@media screen and (min-width: 960px) {
  body {
    font-size: 1.8rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  material-icons
------------------------------------------------------------*/
.material-icons {
  font-size: inherit;
}

/*------------------------------------------------------------
  header
------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  padding-left: 2rem;
  background: #fff;
  transition: left .6s;
}
.is-drawer-open .header {
  left: -25rem
}
.header__content {
  display: flex;
  align-items: center;
}
.header__logo {
  margin-right: auto;
}

@media screen and (min-width: 375px) {
  .is-drawer-open .header {
    left: -28.5rem
  }
} /* ----- media END ----- */

@media screen and (min-width: 960px) {
  .header {
    padding: 0 6rem;
  }
  .header__content {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 2rem calc(50vw - 50%);
    background: #fff;
  }
  .header__button,
  .header__search {
    margin-left: 3rem;
  }
  .header__menu {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
  }
} /* ----- media END ----- */

@media screen and (min-width: 1200px) {
  .header {
    padding: 0 9rem;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1500px) {
  .header {
    padding: 0 12rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  header-logo
------------------------------------------------------------*/
.header-logo {
  width: 15rem;
}

@media screen and (min-width: 1200px) {
  .header-logo {
    width: 23rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  header-catch
------------------------------------------------------------*/
.header-catch {
  position: relative;
  line-height: 1.4;
  font-size: .9rem;
  line-height: 1.4;
}

@media screen and (min-width: 960px) {
  .header-catch {
    top: -1.5rem;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1200px) {
  .header-catch {
    font-size: 1.2rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  header-drawer-button
------------------------------------------------------------*/
@media screen and (max-width: 959px) {
  .header-drawer-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
  }
  .header-drawer-button__line {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
  }
  .header-drawer-button__line-item {
    width: 100%;
    height: 1px;
    background: #fff;
    transition: opacity .6s, transform .6s;
  }
  body.is-drawer-open .header-drawer-button__line-item:nth-child(1) {
    transform: translate3d(0, .7rem, 0) rotate(45deg);
  }
  body.is-drawer-open .header-drawer-button__line-item:nth-child(2) {
    opacity: 0;
  }
  body.is-drawer-open .header-drawer-button__line-item:nth-child(3) {
    transform: translate3d(0, -.7rem, 0) rotate(-45deg);
  }
  .header-drawer-button__text {
    margin: 1em 0 -.5em;
    font-size: 1.1rem;
    line-height: 1;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  header-drawer-menu
------------------------------------------------------------*/
@media screen and (max-width: 959px) {
  .header-drawer-menu {
    position: fixed;
    top: 0;
    right: -28.5rem;
    width: 28.5rem;
    height: 100vh;
    padding: 3rem 2rem 10rem 2rem;
    overflow-y: scroll;
    transition: right .6s;
  }
  body.is-drawer-open .header-drawer-menu {
    right: 0;
  }
  .header-drawer-menu__nav {
    margin-right: -2rem;
  }
  .header-drawer-menu__search + .header-drawer-menu__nav {
    margin-top: 2rem;
  }
  .header-drawer-menu__nav + .header-drawer-menu__button {
    margin-top: 4rem;
  }
} /* ----- media END ----- */

@media screen and (max-width: 374px) {
  .header-drawer-menu {
    right: -25rem;
    width: 25rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  header-search
------------------------------------------------------------*/
.header-search {
  position: relative;
}
.header-search__input {
  width: 100%;
  height: 100%;
  padding: .75em 6.5rem .75em 1.5rem;
  background: #fff;
  color: #000;
  font-size: 1.6rem;
}
.header-search__submit,
.header-search__icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 100%;
  cursor: pointer;
}
.header-search__submit {
  background: currentColor
}
.header-search__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  pointer-events: none;
}

@media screen and (min-width: 960px) {
  .header-search {
    width: 100%;
    max-width: 26rem;
    border: 1px solid currentColor;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  header-nav
------------------------------------------------------------*/
.header-nav__item {
  position: relative;
  transition: background-color .6s, color .6s;
}
.header-nav__link {
  padding: 1.2em 0;
  border-bottom: 1px solid currentColor;
}

@media screen and (min-width: 960px) {
  .header-nav {
    z-index: auto !important;
  }
  .header-nav__list {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .header-nav__list .header-nav__list {
    display: none;
  }
  .header-nav__item {
    position: static;
    width: 100%;
  }
  .header-nav__link {
    border-bottom: none !important;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1200px) {
  .header-nav__link {
    font-size: 1.6rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  header-nav-child
------------------------------------------------------------*/
@media screen and (max-width: 959px) {
  .header-nav-child {
    display: none;
    padding-left: 2rem;
    border-bottom: 1px solid currentColor;
    background: none !important;
    color: currentColor !important;
  }
  .header-nav-child__link {
    border-bottom: 1px dotted currentColor;
  }
  .header-nav-child__item:last-child .header-nav__link {
    border-bottom: none;
  }
} /* ----- media END ----- */

@media screen and (min-width: 960px) {
  .header-nav-child {
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: -1;
    transform: translate3d(-50%, -100%, 0);
    width: 100vw;
    padding: 3rem 6rem 6rem 3rem;
    transition: transform .6s;
  }
  body.is-on .header-nav-child {
    display: flex;
  }
  .ua-pc .header-nav__item:hover .header-nav-child {
    transform: translate3d(-50%, 0, 0);
  }
  .header-nav-child__item {
    width: 33.333%;
    padding: 3rem 0 0 3rem;
    background: none !important;
  }
  .header-nav-child__link {
    padding-left: 3rem;
    border-left: 3px solid currentColor;
    background: #fff;
    text-align: left;
    transition: border-color .6s, color .6s;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1200px) {
  .header-nav-child {
    padding: 3rem 9rem 6rem 6rem;
  }
  .header-nav-child__item {
    width: 25%;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1500px) {
  .header-nav-child {
    padding: 3rem 12rem 6rem 9rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  header-accordion
------------------------------------------------------------*/
@media screen and (max-width: 959px) {
  .header-accordion {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(1em * 1.7 + 2.4em);
    height: calc(1em * 1.7 + 2.4em);
  }
  .header-accordion::before,
  .header-accordion::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5rem;
    height: 1px;
    background: currentColor;
    transition: opacity .6s, transform .6s;
  }
  .header-accordion::before {
    transform: translateX(-50%);
  }
  .header-accordion.is-on::before {
    opacity: 0;
  }
  .header-accordion::after {
    transform: translateX(-50%) rotate(90deg);
  }
  .header-accordion.is-on::after {
    transform: translateX(-50%) rotate(0);
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  header-button
------------------------------------------------------------*/
.header-button__item + .header-button__item {
  margin-top: 2rem;
}
.header-button .primary-button {
  font-size: 1.4rem;
}
.header-button__item.-tel .primary-button {
  border: 1px solid currentColor;
}
.ua-pc .header-button__item.-tel .primary-button {
  pointer-events: none;
}
.header-button .primary-button__icon.-tel {
  right: auto;
  left: calc(50% - 3.5em);
  font-size: 2.6rem;
}
.header-button__item.-contact .primary-button {
  padding: .75em 4rem;
}
.header-button__item.-contact .primary-button__notice {
  display: block;
  font-size: 1.1rem;
}
.header-button__text {
  margin-top: 1em;
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .header-button {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  .header-button__item {
    position: relative;
  }
  .header-button__item + .header-button__item {
    margin: 0 0 0 3rem;
  }
  .header-button__item.-tel {
    padding-left: 4rem;
    line-height: 1;
  }
  .header-button__item.-tel .primary-button {
    position: static;
    padding: 0;
    border: none;
    color: currentColor;
    font-size: 3rem;
    line-height: 1;
  }
  .header-button .primary-button__icon.-tel {
    left: 0;
    font-size: 4rem;
  }
  .header-button__text {
    margin-top: .5em;
    color: #000;
    font-size: 1rem;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1200px) {
  .header-button .primary-button {
    min-width: 23rem;
    font-size: 1.6rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  footer
------------------------------------------------------------*/
.footer {
  padding: 0 2rem;
}

@media screen and (min-width: 560px) {
  .footer {
    padding: 0 3rem;
  }
} /* ----- media END ----- */

@media screen and (min-width: 960px) {
  .footer {
    padding: 0 6rem;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1200px) {
  .footer {
    padding: 0 9rem;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1500px) {
  .footer {
    padding: 0 12rem;
  }
} /* ----- media END ----- */


/*------------------------------------------------------------
  footer-main
------------------------------------------------------------*/
.footer-main {
  padding: 6rem 0;
}

@media screen and (min-width: 960px) {
  .footer-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .footer-main__info {
    margin-top: 4rem;
  }
  .footer-main__content {
    width: 50%;
  }
  .footer-main__nav {
    width: 25%;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1200px) {
  .footer-main__nav {
  }
} /* ----- media END ----- */

@media screen and (min-width: 1500px) {
  .footer-main__nav {
    width: 20%;
  }
} /* ----- media END ----- */


/*------------------------------------------------------------
  footer-sub
------------------------------------------------------------*/
.footer-sub {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 4rem calc(50vw - 50%) 6rem;
  border-top: 1px solid #fff;
}
.footer-sub__copyright {
  margin-top: 3rem;
}

@media screen and (min-width: 960px) {
  .footer-sub {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 3rem calc(50vw - 50%);
  }
  .footer-sub__copyright {
    margin-top: 0;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  footer-logo
------------------------------------------------------------*/
.footer-logo {
  width: 17rem;
  margin: 0 auto;
}
.footer-logo a {
  padding: 1px;
  background: #fff;
}

@media screen and (min-width: 960px) {
  .footer-logo {
    width: 23rem;
    margin-left: 0;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  footer-info
------------------------------------------------------------*/
@media screen and (min-width: 960px) {
  .footer-info__text + .footer-info__text {
    margin-top: .5em;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  footer-nav
------------------------------------------------------------*/
@media screen and (min-width: 960px) {
  .footer-nav {
    display: flex;
  }
  .footer-nav__item + .footer-nav__item {
    padding-left: 3rem;
  }
  .footer-nav__list .footer-nav__list {
    padding-left: 1rem;
  }
  .footer-nav__list-link {
    padding: .4em 0;
    white-space: nowrap;
    transition: color .6s;
  }
  .footer-nav__list .footer-nav__list .footer-nav__list-link {
    position: relative;
    padding: .3em 0 .3em 1.2em;
    font-size: 1.4rem;
  } 
  .footer-nav__list-icon {
    position: absolute;
    top: .6em;
    left: 0;
  }
  .footer-nav__list-item .footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 350px;
  }
  .footer-nav__list-item .footer-nav__list-item {
    width: 49%;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1200px) {
  .footer-nav__item + .footer-nav__item {
    padding-left: 6rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  footer-pagetop
------------------------------------------------------------*/
.footer-pagetop {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.footer-pagetop__text {
  margin-top: .5em;
}

@media screen and (min-width: 960px) {
  .footer-pagetop {
    flex-direction: row;
  }
  .footer-pagetop__text {
    margin: 0 0 0 1rem;
  }
  
} /* ----- media END ----- */

/*------------------------------------------------------------
  footer-copyright
------------------------------------------------------------*/
.footer-copyright__text {
  display: block;
  font-size: 1.2rem;
  text-align: center;
}

/*------------------------------------------------------------
  response-device
------------------------------------------------------------*/
.response-device {
  background: #f1f5f9;
}
.article__item:not(.-background) + .response-device {
  border-top: 1px solid currentColor;
}
.response-device__intro {
  color: #000;
  font-size: 1.6rem;
  text-align: center;
}
.response-device__button-item + .response-device__button-item {
  margin-top: 2rem;
}
.ua-pc .response-device__button-item.-tel {
  pointer-events: none;
}
.response-device__button .primary-button {
  font-size: 2rem;
}
.response-device__button .primary-button__icon.-tel {
  right: auto;
  left: calc(50% - 3.8em);
  font-size: 3.3rem;
}
.response-device__button-item.-contact .primary-button {
  padding: .75em 4rem;
}
.response-device__button-item.-contact .primary-button__notice {
  display: block;
  font-size: 1.3rem;
}
.response-device__button-text {
  margin-top: .5em;
  color: #000;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .response-device__button {
    display: flex;
    align-items: center;
  }
  .response-device__button-item {
    position: relative;
    width: 100%;
  }
  .response-device__button-item + .response-device__button-item {
    margin: 0 0 0 6rem;
  }
  .response-device__button-item.-tel {
    width: auto;
    padding-left: 7rem;
    white-space: nowrap;
  }
  .response-device__button-item .primary-button {
    max-width: none;
  }
  .response-device__button-item.-tel .primary-button {
    position: static;
    padding: 0;
    border: none;
    background: none;
    color: currentColor;
    font-size: 5.5rem;
    line-height: 1;
    text-align: left;
  }
  .response-device__button .primary-button__icon.-tel {
    left: 0;
    font-size: 5.5rem;
  }
  .response-device__button-text {
    text-align: left;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  breadcrumb
------------------------------------------------------------*/
.breadcrumb {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 1em 2rem;
  border-top: 1px solid currentColor;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin: 0 1rem;
}
.breadcrumb__link {
  font-size: 1.2rem;
  transition: color .6s;
}
.breadcrumb__item:last-child .breadcrumb__link {
  color: #000;
  pointer-events: none;
}

@media screen and (min-width: 560px) {
  .breadcrumb {
    padding: 1em 3rem;
  }
} /* ----- media END ----- */

@media screen and (min-width: 960px) {
  .breadcrumb {
    padding: 1em 6rem;
  }
  .breadcrumb__link {
    font-size: 1.4rem;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1200px) {
  .breadcrumb {
    padding: 1em 9rem;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1500px) {
  .breadcrumb {
    padding: 1em 12rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  article
------------------------------------------------------------*/
.article {
  opacity: 0;
  padding: 0 2rem;
}
body.is-on .article {
  opacity: 1;
  transition: opacity .6s ease;
}
.article__mainvisual {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
}
.article__content {
  padding: 9rem 0;
}
.article__main {
  width: 100%;
}
.article__sidebar {
  margin-top: 6rem;
}
.article__item {
  padding: 9rem 0;
}
.article__item:first-child {
  padding-top: 0;
}
.article__item:last-child {
  padding-bottom: 0;
}
.article__item.-background {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 9rem calc(50vw - 50%);
}
.article__item.-background:first-child {
  margin-top: -9rem;
}
.article__item.-background:last-child {
  margin-bottom: -9rem;
}
.article__item:not(.-background) + .article__item:not(.-background) {
  margin-top: -9rem
}

@media screen and (min-width: 560px) {
  .article {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 3rem;
  }
} /* ----- media END ----- */

@media screen and (min-width: 960px) {
  .article {
    max-width: 103rem;
    padding: 0 6rem;
  }
  .article__content {
    display: flex;
  }
  .article.-sidebar {
    max-width: 154rem;
  }
  .article__content {
    padding: 12rem 0;
  }
  .article__sidebar {
    width: 30rem;
    min-width: 30rem;
    margin: 0 0 0 9rem;
  }
  .article__item {
    padding: 12rem 0;
  }
  .article__item.-background {
    padding: 12rem calc(50vw - 50%);
  }
  .article__item.-background:first-child,
  .article__item:not(.-background) + .article__item:not(.-background) {
    margin-top: -12rem;
  }
  .article__item.-background:last-child {
    margin-bottom: -12rem;
  }
} /* ----- media END ----- */

@media screen and (min-width: 1200px) {
  .article {
    max-width: 114rem;
    padding: 0 9rem;
  }  
} /* ----- media END ----- */

@media screen and (min-width: 1500px) {
  .article {
    max-width: 120rem;
    padding: 0 12rem;
  }  
} /* ----- media END ----- */

/*------------------------------------------------------------
  hero
------------------------------------------------------------*/
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  overflow: hidden;
}
.hero.-medium {
  height: 70vh !important;
}
.hero.-small {
  height: 50vh !important;
}
.hero.-en {
  margin: -9rem calc(50% - 50vw) 0;
  height: 50vh !important;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: center / 4px 4px rgba(0, 0, 0, .1) radial-gradient(rgba(0, 0, 0, .2) 30%, transparent 0);
}
.hero__catch-text {
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}
.hero__catch-text.-large {
  font-size: 3rem;
  line-height: 1.5;
}
.hero__catch-text.-medium {
  margin-top: 1em;
  font-size: 2rem;
}
.hero__catch-text.-small {
  margin-top: 1em;
}
.hero__catch-text.-en-title {
  line-height: 1.5;
  font-size: 1.8rem;
}
.hero__catch-text.-en-sentence {
  margin-top: 1em;
  line-height: 1.5;
  font-weight: normal;
}
.hero__image,
.hero__movie {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.hero__image-slider {
  height: 100%;
}
.hero__image-item {
  height: 100%;
  background: center / cover;
}
@media screen and (max-width: 374px) {
  .hero.-en {
    height: 64vh !important;
  }
} /* ----- media END ----- */

@media screen and (min-width: 960px) {
  .hero.-en {
    height: 40vh !important;
    margin: -12rem calc(50% - 50vw) 0;
  }
  .hero__movie {
    background: none !important;
  }
  .hero__catch-text.-large {
    font-size: 4rem;
  }
  .hero__catch-text.-medium {
    font-size: 3rem;
  }
  .hero__catch-text.-en-title {
    font-size: 3rem;
  }
  .hero__catch-text.-en-sentence {
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  mainvisual
------------------------------------------------------------*/
.mainvisual {
  padding: .5em 0;
  font-weight: bold;
  font-size: 2.6rem;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .mainvisual {
    font-size: 4rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  grid
------------------------------------------------------------*/
.grid {
  display: flex;
  flex-wrap: wrap;
  margin: -3rem 0 0 -3rem;
}
[class^="grid__item-"],
[class*=" grid__item-"] {
  width: 100%;
  padding: 3rem 0 0 3rem;
}

@media screen and (min-width: 960px) {
  .grid {
    margin: -4rem 0 0 -4rem;
  }
  [class^="grid__item-"],
  [class*=" grid__item-"] {
    padding: 4rem 0 0 4rem;
  }
  .grid__item-12 {
    width: 100%;
  }
  .grid__item-11 {
    width: 91.666%;
  }
  .grid__item-10 {
    width: 83.333%;
  }
  .grid__item-9 {
    width: 75%;
  }
  .grid__item-8 {
    width: 66.666%;
  }
  .grid__item-7 {
    width: 58.333%;
  }
  .grid__item-6 {
    width: 50%;
  }
  .grid__item-5 {
    width: 41.666%;
  }
  .grid__item-4 {
    width: 33.333%;
  }
  .grid__item-3 {
    width: 25%;
  }
  .grid__item-2 {
    width: 16.666%;
  }
  .grid__item-1 {
    width: 8.333%;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  unit
------------------------------------------------------------*/
.unit__item {
  width: 100%;
}
.unit__item + .unit__item {
  margin-top: 3rem;
}

@media screen and (min-width: 960px) {
  .unit__item:only-child {
    height: 100%;
  }
  .unit__item + .unit__item {
    margin-top: 4rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  primary-title
------------------------------------------------------------*/
.primary-title {
  margin-bottom: -.3em;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
}
.primary-title__sub {
  display: block;
  font-size: 70%;
}

@media screen and (min-width: 960px) {
  .primary-title {
    margin-bottom: 0;
    font-size: 4rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  secondary-title
------------------------------------------------------------*/
.secondary-title {
  margin-bottom: -.5em;
  padding-bottom: .4em;
  border-bottom: 2px solid currentColor;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
}

@media screen and (min-width: 960px) {
  .secondary-title {
    font-size: 2.8rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  tertiary-title
------------------------------------------------------------*/
.tertiary-title {
  position: relative;
  margin-bottom: -.5em;
  padding-bottom: .4em;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}
.tertiary-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 2px;
  background: currentColor;
}

@media screen and (min-width: 960px) {
  .tertiary-title {
    font-size: 2.4rem;
  }
  .tertiary-title::after {
    width: 4rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  quaternary-title
------------------------------------------------------------*/
.quaternary-title {
  margin-bottom: -1em;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}

@media screen and (min-width: 960px) {
  .quaternary-title {
    font-size: 2.4rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  sentence
------------------------------------------------------------*/
.sentence::before,
.sentence::after {
  content: '';
  display: block;
}
.sentence::before {
  margin-top: calc(.5em * -.7);
}
.sentence::after {
  margin-bottom: calc(.5em * -.7);
}

@media screen and (min-width: 960px) {
  .sentence.-center {
    text-align: center;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  link
------------------------------------------------------------*/
.link {
  display: inline;
}
.link.-blank {
  position: relative;
  padding-left: 1.1em;
}
.link__inner {
  border-bottom: 1px solid currentColor;
  transition: border-color .6s;
}
.ua-pc .link:hover .link__inner {
  border-color: transparent;
}
.link__icon {
  position: absolute;
  top: .1em;
  left: -0;
}

/*------------------------------------------------------------
  note
------------------------------------------------------------*/
.note {
  display: block;
  padding-left: 1.2em;
  color: #686E74;
  font-size: 85%;
  text-indent: -1.2em;
}
.note::before {
  content: '※ ';
}

/*------------------------------------------------------------
  emphasis
------------------------------------------------------------*/
.emphasis {
  font-weight: bold;
  font-style: normal;
}

/*------------------------------------------------------------
  marker
------------------------------------------------------------*/
.marker {
  background: linear-gradient(transparent 50%, #FFFF00 50%);
}

/*------------------------------------------------------------
  unordered-list
------------------------------------------------------------*/
.unordered-list li {
  position: relative;
  padding-left: 2.5rem;
}
.unordered-list li + li {
  margin-top: .7em;
}
.unordered-list li::before {
  content: '';
  position: absolute;
  top: .65em;
  left: 0;
  width: .6rem;
  height: .6rem;
  border-radius: 100%;
  background: currentColor;
}
.unordered-list span {
  color: #000;
}

@media screen and (min-width: 960px) {
  [class*="unordered-list -grid-"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  [class*="unordered-list -grid-"] li:first-child {
    margin-top: .7em;
  }
  .unordered-list.-grid-2-pc li {
    width: calc(50% - 2rem);
  }
  .unordered-list.-grid-3-pc li {
    width: calc(33.333% - 2rem);
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  ordered-list
------------------------------------------------------------*/
.ordered-list li {
  counter-increment: ol;
  position: relative;
  padding-left: 2.5rem;
}
.ordered-list li + li {
  margin-top: .7em;
}
.ordered-list li::before {
  content: counter(ol) '.';
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
}
.ordered-list span {
  color: #000;
}

/*------------------------------------------------------------
  media
------------------------------------------------------------*/
.media {
  text-align: center;
}
.media__link {
  position: relative;
}
.media__icon {
  display: none;
}
.media__link[href*=".jpg"] .media__icon,
.media__link[href*=".png"] .media__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4rem;
  height: 4rem;
  color: #fff;
  font-size: 2rem;
}
.media__caption {
  margin-top: 1em;
}

/*------------------------------------------------------------
  table
------------------------------------------------------------*/
.table {
  overflow-x: scroll;
  -ms-overflow-style: none; 
  scrollbar-width: none;      
}
.table::-webkit-scrollbar {
  display:none;
}
.table table {
  overflow: hidden;
}
.table th,
.table td {
  padding: 1em 1.5rem; 
}
.table th {
  text-align: left;
}
.article__item.-background .table th {
  background: #f5f5f5 !important;
}
.article__item.-background .table td {
  background: #fff;
}
.table td + td {
  border-top: 1px solid #DDE1E5;
}
.table .acms-cell-text-center {
  text-align: center;
}
.table .acms-cell-text-right {
  text-align: right;
}
.table .acms-admin-cell-text-nowrap {
  white-space: nowrap;
}
.table .acms-admin-cell-text-bold {
  font-weight: bold;
}
.table .acms-cell-text-center {
  vertical-align: middle;
}

.table .acms-cell-text-bottom {
  vertical-align: bottom;
}
.table__link {
  margin: 1rem 0 0;
}
.table__link a {
  position: relative;
  max-width: 32rem;
  margin: auto;
  padding: .5rem;
  border: 2px solid transparent;
  text-align: center;
  transition: border-color .6s, background-color .6s, color .6s;
}

@media screen and (max-width: 959px) {
  .table th,
  .table td {
    display: block;
  }
  .table .acms-table-scrollable th,
  .table .acms-table-scrollable td,
  .table.scroll-hint th,
  .table.scroll-hint td {
    display: table-cell;
    white-space: nowrap;
  }
  .table .acms-table-scrollable th + th,
  .table.scroll-hint th + th {
    border-left: 1px solid #fff;
  }
  .table .acms-table-scrollable td + td,
  .table.scroll-hint td + td {
    border-left: 1px solid #DDE1E5;
  }
  .table .acms-table-scrollable tr + tr td {
    border-top: 1px solid #DDE1E5;
  }
} /* ----- media END ----- */

@media screen and (min-width: 960px) {
  .table th,
  .table td {
    padding: 1.3em 3rem; 
  }
  .table th {
    white-space: nowrap;
  }
  .table tr + tr th {
    border-top: 1px solid #fff;
  }
  .table th+ th {
    border-left: 1px solid #fff;
  }
  .table tr + tr td {
    border-top: 1px solid #DDE1E5;
  }
  .table td + td {
    border-top: none;
    border-left: 1px solid #DDE1E5;
  }
  .table__link {
    display: inline-block;
    margin: .5em 0 0 1em;
  }
  .table__link a {
    display: inline-block;
    padding: .5rem 5rem .5rem 4rem;
    font-size: 1.4rem;
  }
  .table__link a:hover {
    border-color: currentColor;
    background-color: transparent;
  }
  .table__equality {
    table-layout: fixed;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  noborder-table
------------------------------------------------------------*/
.noborder-table th,
.noborder-table td {
}
.noborder-table th {
  padding: .5rem 1rem .5rem 0;
  vertical-align: top;
  white-space: nowrap;
  text-align: left;
}
.noborder-table td {
  padding: .5rem 1rem;
}
@media screen and (min-width: 960px) {
} /* ----- media END ----- */


/*------------------------------------------------------------
  map
------------------------------------------------------------*/
.map {
  z-index: 0;
  width: 100%;
  height: 40rem;
  pointer-events: none;
}

/*------------------------------------------------------------
  primary-button
------------------------------------------------------------*/
.primary-button {
  position: relative;
  width: 100%;
  padding: 1.3em 4rem;
  border: 2px solid transparent;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;;
  text-align: center;
  cursor: pointer;
  transition: border-color .6s, background-color .6s, color .6s;
}
.ua-pc .primary-button:hover {
  border-color: currentColor;
  background-color: transparent !important;
}
.primary-button__icon {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  font-size: 1.5em;
}
.primary-button.-reverse .primary-button__icon {
  right: auto;
  left: 1.5rem;
}

@media screen and (min-width: 560px) {
  .primary-button {
    max-width: 38rem;
    margin: 0 auto;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  secondary-button
------------------------------------------------------------*/
.secondary-button-unit {
  margin: -1px 0 0 -1px;
  padding: 0;
}
.secondary-button {
  position: relative;
  transform: translate(3rem, 3rem);
  width: calc(100% - 3rem);
  height: 100%;
  padding: 1em 6rem 1em 2rem;
  border: 1px solid currentColor;
  line-height: 1.5;
  transition: background .6s;
}
.article__item.-background .secondary-button {
  background: #fff;
}
.secondary-button__text {
  color: #000;
  transition: color .6s;
}
.ua-pc .secondary-button:hover .secondary-button__text {
  color: #fff;
}
.secondary-button__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  padding-top: .1em;
  border-radius: 100%;
  color: #fff;
  font-size: 2rem;
}

@media screen and (min-width: 960px) {
  .secondary-button-unit.grid__item-12 {
    width: calc(100% - 4rem);
  }
  .secondary-button-unit.grid__item-6 {
    width: calc(50% - 2rem + 1px);
  }
  .secondary-button-unit.grid__item-4 {
    width: calc(33.333% - 1.333rem + 1px);
  }
  .secondary-button-unit.grid__item-3 {
    width: calc(25% - 1rem + 1px);
  }
  .secondary-button {
    display: flex;
    align-items: center;
    transform: translate(4rem, 4rem);
    width: 100%;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  primary-card
------------------------------------------------------------*/
.article__item:not(.-background) .primary-card__link {
  padding: 3rem;
  border: 1px solid #DDE1E5;
  transition: border-color .6s;
}
.ua-pc .article__item:not(.-background) .primary-card__link:hover {
  border-color: currentColor;
}
.article__item.-background .primary-card__link .primary-card__head {
  overflow: hidden;
}
.article__item.-background .primary-card__link .primary-card__image {
  transition: transform .6s;
}
.ua-pc .article__item.-background .primary-card__link:hover .primary-card__image {
  transform: scale3d(1.1, 1.1, 1);
}
.primary-card__head {
  text-align: center;
}
.primary-card__body {
  padding-top: 2rem;
}
.article__item.-background .primary-card__body {
  padding: 2rem 2.5rem;
  background: #fff;
}
.primary-card__title {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}
.primary-card__sentence {
  color: #000;
  font-size: 1.4rem;
}
.primary-card__title + .primary-card__sentence {
  margin-top: .3em;
}

@media screen and (min-width: 960px) {
  .primary-card,
  .primary-card__link,
  .primary-card__body {
    height: 100%;
  }
  .primary-card {
    overflow: hidden;
  }
  .primary-card__body {
    padding-top: 2.5rem;
  }
  .article__item.-background .primary-card__body {
    padding: 2.5rem 3rem;
  }
  .primary-card__title {
    font-size: 2rem;
  }
  .primary-card__title + .primary-card__sentence {
    margin-top: .5em;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  secondary-card
------------------------------------------------------------*/
.secondary-card {
  padding: 3rem;
  color: #fff;
}
.secondary-card__body {
  padding-top: 2rem;
}
.secondary-card__title {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  transition: color .6s;
}
.secondary-card__sentence {
  font-size: 1.4rem;
  color: #fff !important;
}
.secondary-card__title + .secondary-card__sentence {
  margin-top: .3em;
}

@media screen and (min-width: 960px) {
  .secondary-card,
  .secondary-card__link {
    height: 100%;
  }
  .secondary-card__body {
    padding-top: 2.5rem;
  }
  .secondary-card__title {
    font-size: 2rem;
  }
  .secondary-card__title + .secondary-card__sentence {
    margin-top: .5em;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  tertiary-card
------------------------------------------------------------*/
.tertiary-card__title {
  margin-bottom: .5em;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.5;
}
.tertiary-card__sentence {
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (min-width: 960px) {
  .tertiary-card__body {
    align-self: center;
  }
  .tertiary-card__title {
    font-size: 3.2rem;
  }
  .tertiary-card__sentence {
    font-size: 2.4rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  quaternary-card
------------------------------------------------------------*/
.quaternary-card__title {
  margin-bottom: .5em;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.5;
}
.quaternary-card__sentence {
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (min-width: 960px) {
  .quaternary-card__body {
    align-self: center;
  }
  .quaternary-card__title {
    font-size: 3.2rem;
  }
  .quaternary-card__sentence {
    font-size: 2.4rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  accordion
------------------------------------------------------------*/
.accordion {
  padding: 0 2rem;
}
.article__item.-background .accordion {
  background: #fff;
}
.accordion__head {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
}
.article__item:not(.-background) .accordion__head {
  color: #fff;
}
.accordion__head-sentence {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
}
.accordion__head-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
}
.accordion__head-icon::before,
.accordion__head-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: opacity .6s, transform .6s;
}
.accordion__head-icon::after {
  transform: rotate(90deg);
}
.accordion__head.is-on .accordion__head-icon::before  {
  opacity: 0;
}
.accordion__head.is-on .accordion__head-icon::after  {
  transform: rotate(0);
}
.accordion__body {
  display: none;
  padding: 1.5rem 0;
  border-top: 1px solid currentColor;
}
.accordion__body-sentence {
  color: #000;
}
.article__item:not(.-background) .accordion__body-sentence {
  color: #fff;
}

@media screen and (min-width: 960px) {
  .accordion {
    padding: 0 3rem;
  }
  .accordion__head {
    padding: 2.5rem 4rem 2.5rem 0;
  }
  .accordion__head-sentence {
    font-size: 2rem;
  }
  .accordion__body {
    padding: 2.5rem 0;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  primary-slider
------------------------------------------------------------*/
.primary-slider {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.primary-slider__item {
  padding: 0 4rem;
  overflow: hidden;
}
.primary-slider__body {
  height: 100%;
  padding: 2rem;
}
.article__item.-background .primary-slider__body {
  padding: 3rem;
  background: #fff !important;
}
.primary-slider__title {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}
.primary-slider__sentence {
  margin-top: .5em;
}
.primary-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 3rem;
  height: 8rem;
  font-size: 2.5rem;
  cursor: pointer;
}
.primary-slider__arrow.-prev {
  left: 0;
}
.primary-slider__arrow.-next {
  right: 0;
}
.primary-slider__pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.primary-slider__pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 .7rem !important;
}
.article__item.-background .swiper-pagination-bullet {
  background-color: #fff;
}
.primary-slider__pagination .swiper-pagination-bullet-active {
  background-color: currentColor !important;
}

@media screen and (min-width: 560px) {
  .primary-slider__item {
    padding: 0;
  }
} /* ----- media END ----- */

@media screen and (min-width: 960px) {
  .primary-slider__body {
    padding: 3rem;
  }
  .primary-slider__title {
    font-size: 2rem;
  }
  .primary-slider__sentence {
    font-size: 1.4rem;
  }
  .primary-slider__arrow {
    width: 4rem;
    height: 10rem;
  }
  .primary-slider__pagination {
    margin-top: 4.5rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  archive-list
------------------------------------------------------------*/
.archive-list__link {
  position: relative;
  padding: 2rem 0;
  transition: color .6s;
}
.archive-list__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.archive-list__category {
  padding: .5em 2rem;
  color: #000;
  font-size: 1.2rem;
}
.archive-list__info + .archive-list__title {
  margin-top: 1em;
}
.archive-list__line,
.archive-list__line-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.article__item.-background .archive-list__line {
  background: #fff !important;
}
.archive-list__line-inner {
  transform: scale3d(0, 1, 1);
  transform-origin: left;
  transition: transform .6s;
}
.ua-pc .archive-list__link:hover .archive-list__line-inner {
  transform: scale3d(1, 1, 1);
}

@media screen and (min-width: 960px) {
  .archive-list__link {
    display: flex;
    align-items: flex-start;
    padding: 3rem 0;
  }
  .archive-list__info {
    transform: translateY(.15em);
    white-space: nowrap;
  }
  .archive-list__category {
    margin-left: 6rem;
  }
  .archive-list__info + .archive-list__title {
    margin: 0 0 0 6rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  archive-thumbnail
------------------------------------------------------------*/
.archive-thumbnail {
  transition: color .6s;
}
.archive-thumbnail__body {
  padding: 2rem;
}
.article__item.-background .archive-thumbnail__body {
  background: #fff !important;
}
.archive-thumbnail__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.archive-thumbnail__category {
  padding: .5em 2rem;
  color: #fff;
  font-size: 1.2rem;
}
.archive-thumbnail__title {
  margin-top: .7em;
}

@media screen and (min-width: 960px) {
  .archive-thumbnail,
  .archive-thumbnail__body {
    height: 100%;
    overflow: hidden;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  category
------------------------------------------------------------*/
.category {
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
}
.category__title {
  transform: translateY(.6em);
  margin-right: 2rem;
  white-space: nowrap;
}
.category__list {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem 0 0 -1rem;
}
.category__item {
  padding: 1rem 0 0 1rem;
}
.category__link {
  padding: .5em 2rem;
  border: 1px solid currentColor;
  transition: color .6s, background-color .6s;
}
.ua-pc .category__link:hover {
  background-color: currentColor;
}
.category__link.-current {
  background-color: currentColor;
  pointer-events: none;
}
.category__link-inner {
  color: #000;
  transition: color .6s;
}
.ua-pc .category__link:hover .category__link-inner,
.category__link.-current .category__link-inner {
  color: #fff;
}

@media screen and (min-width: 960px) {
  .category {
    font-size: 1.4rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  pager
------------------------------------------------------------*/
.pager {
  display: flex;
  justify-content: center;
}
.pager__button,
.pager__button-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  min-width: 12rem;
  height: 5rem;
  color: #fff;
}
.pager__button-link {
  border: 1px solid transparent;
  transition: border-color .6s, background-color .6s, color .6s;
}
.ua-pc .pager__button-link:hover {
  border: 1px solid currentColor;
  background-color: #fff !important;
}
.pager__button-icon {
  font-size: 2rem;
}
.pager__button-icon.-prev {
  margin: 0 2rem 0 -3rem;
}
.pager__button-icon.-next {
  margin: 0 -3rem 0 2rem;
}
.pager__num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  letter-spacing: -.1em;
}

/*------------------------------------------------------------
  entry-head
------------------------------------------------------------*/
.entry-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  line-height: 1;
}
.entry-head__date {
  font-weight: bold;
}
.entry-head__category {
  margin-top: 1rem;
  padding: .5em 2rem;
  font-size: 1.2rem;
}
.entry-head__sns {
  display: flex;
}
.entry-head__sns-item {
  width: 3rem;
}
.entry-head__sns-item + .entry-head__sns-item {
  margin-left: 1rem;
}

@media screen and (min-width: 960px) {
  .entry-head__info {
    display: flex;
    align-items: center;
  }
  .entry-head__category {
    margin: 0 0 0 3rem;
  }
  .entry-head__sns-item {
    width: 4rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  sidebar
------------------------------------------------------------*/
.sidebar__item + .sidebar__item {
  margin-top: 3rem;
}
.sidebar__head {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
}
.sidebar__head + .sidebar__body {
  margin-top: 1rem;
}
.sidebar__list-link {
  position: relative;
  padding: 1em 0 1em 2.5rem;
  transition: color .6s;
}
.sidebar__list-icon {
  position: absolute;
  left: 0;
}
.sidebar__list-icon.-arrow {
  font-size: 2rem;
  top: .8em;
}
.sidebar__list-icon.-calendar {
  top: 1.35em;
}
.sidebar__list-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

@media screen and (min-width: 960px) {
  .sidebar__list-link {
    font-size: 1.4rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  youtube
------------------------------------------------------------*/
.youtube {
  width: 100%;
  height: calc(89.333vw * .5625);
}

@media screen and (min-width: 560px) {
  .youtube {
    height: 28.125rem;
  }
} /* ----- media END ----- */

@media screen and (min-width: 960px) {
  .youtube {
    height: 51.188rem;
  }
} /* ----- media END ----- */


/*------------------------------------------------------------
  form
------------------------------------------------------------*/
.form__term {
  position: relative;
  padding-left: 4rem;
}
.form__batch {
  position: absolute;
  top: .2em;
  left: 0;
  width: 3rem;
  height: 2rem;
  color: #fff;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
}
.form__batch.-must {
  background: #b23333;
}
.form__batch.-any {
  background: #000;
}
.form__batch.-must + .form__batch.-any {
  display: none;
}
.form__border {
  border: 1px solid currentColor;
}
.form__table input,
.form__table select,
.form__table textarea {
  display: block;
  width: 100%;
  padding: .5em 1rem;
  color: #000;
  font-size: 1.6rem;
}
.form__table select {
  cursor: pointer;
}
.form__select {
  position: relative;
}
.form__select-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 4rem;
  height: 60%;
  padding: .1em .1em 0 0;
  border-left: 1px solid currentColor;
  font-size: 2.5rem;
  pointer-events: none;
}
.form__list {
  display: flex;
  flex-wrap: wrap;
  margin: -1.5rem 0 0 -1.5rem;
}
.form__list-item {
  width: 50%;
  padding: 1.5rem 0 0 1.5rem;
}
.form__option input {
  display: none;
}
.form__option label {
  display: block;
  position: relative;
  padding-left: 4rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.form__option-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  transition: .2s;
}
.form__option input:checked + label {
  background: none;
}
.form__option input:checked + label .form__option-icon {
  background: currentColor;
}
.form__option input:checked + label .form__option-icon-inner {
  opacity: 1;
}
.form__option.-radio .form__option-icon {
  border-radius: 100%;
}
.form__option.-radio .form__option-icon-inner {
  content: "";
  opacity: 0;
  border-radius: 100%;
  width: 1rem;
  height: 1rem;
  background: #fff;
}
.form__option.-check .form__option-icon-inner {
  opacity: 0;
  color: #fff;
  font-size: 2rem;
}
.form__button {
  margin-top: 3rem;
}
.form__button > * {
  width: 100%;
  text-align: center;
}
.form__button > * + * {
  margin-top: 2rem;
}
.form__item + .form__item {
  margin-top: 1em;
}
.form__privacy-box {
  margin: 1em 0 2em;
  padding: .5em 1em;
  height: 10em;
  background: #f8f8f8;
  border: 1px solid #dde1e5;
  box-shadow: 0 0 8px inset rgba(0,0,0,.1);
  overflow: scroll;
  font-size: 1.2rem;
}
.form__privacy-box-list {
  margin-top: 1em;
}
.form__privacy-box-head {
  position: relative;
  padding-bottom: .4em;
  font-weight: bold;
  line-height: 1.5;
}
.form__privacy-box-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 1px;
  background: currentColor;
}
.form__privacy-box-body {
  margin-top: .5em;
}
.form__privacy-box-sentence + * {
  margin-top: 1em;
}
.form__privacy-box-btm-note {
  margin-top: 1em;
  color: #686E74;
  font-size: .9em;
}
.form__privacy-box li {
  padding-left: 1.5rem;
}

/* /en */
.form__table.-en .form__batch {
  width: 6rem;
}
.form__table.-en .form__term {
  padding-left: 7rem;
}

/* エラー表示 */
.form__error-text {
  display: none;
}
.form__error {
  background: #fdf0f0;
}
.form__error .form__error-text {
  display: block;
  margin-top: 1em;
  color: #b23333;
}
.form__error .form__border {
  border-color: #b23333;
}

@media screen and (min-width: 960px) {
  .form__batch {
    top: .4em;
  }
  .form__button {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-top: 4rem;
  }
  .form__button > * + * {
    margin: 0 3rem 0 0;
  }
  .form__error-text {
    font-size: 1.4rem;
  }
  .form__privacy-box {
    font-size: 1.4rem;
    height: 14em;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  hover
------------------------------------------------------------*/
.hover-opacity {
  transition: opacity .6s;
}
.ua-pc .hover-opacity:hover {
  opacity: .6;
}

/*------------------------------------------------------------
  hide
------------------------------------------------------------*/
@media screen and (max-width: 959px) {
  .hide-sp {
    display: none;
  }
} /* ----- media END ----- */

@media screen and (min-width: 960px) {
  .hide-pc {
    display: none;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  theme
------------------------------------------------------------*/
.theme-background-main {
  color: #fff;
}

/*------------------------------------------------------------
  smartphoto
------------------------------------------------------------*/
.smartphoto {
  z-index: 999999 !important;
}

/*------------------------------------------------------------
  primary-frame
------------------------------------------------------------*/
.primary-frame {
  padding: 3rem;
  border: 1px solid #DDE1E5;
}
.primary-frame__ttl {
  margin: 0 0 .5em;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .primary-frame {
    padding: 4rem;
  }
  .primary-frame__ttl {
    font-size: 2.2rem;
  }
} /* ----- media END ----- */

/*------------------------------------------------------------
  indent-list
------------------------------------------------------------*/
.indent-list > li + li {
  margin-top: .5em;
}
.indent-list-letter-1 > li {
  padding-left: 1em;
  text-indent: -1em;
}
.indent-list-letter-2 > li {
  padding-left: 2em;
  text-indent: -2em;
}

/*------------------------------------------------------------
  indent-list
------------------------------------------------------------*/
.flowchart-item {}
.flowchart-item > li {
  position: relative;
  border: 1px solid #DDE1E5;
}
.flowchart-item > li:not(:last-child) {
  margin-bottom: 2rem;
}
.flowchart-item > li:not(:last-child)::before {
  content: "\e313";
  position: absolute;
  bottom: -85px;
  left: 50%;
  line-height: 1;
  transform: translateX(-50%);
  z-index: 2;
  color: #272b75;
  font-family: 'Material Icons';
  font-size: 12rem;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}
.flowchart-item__body {
  padding: 3rem;
}
.flowchart-item__ttl {
  margin: 0 0 .5em;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: bold;
}
[class*="flowchart-item__thum"] {
  height: 0;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
}
  .flowchart-item__thum-1 { background-image: url("/media/business/fig-flow-1.jpg"); }
  .flowchart-item__thum-2 { background-image: url("/media/business/fig-flow-2.jpg"); }
  .flowchart-item__thum-3 { background-image: url("/media/business/fig-flow-3.jpg"); }
  .flowchart-item__thum-4 { background-image: url("/media/business/fig-flow-4.jpg"); }
  .flowchart-item__thum-5 { background-image: url("/media/business/fig-flow-5.jpg"); }

@media screen and (min-width: 960px) {
  .flowchart-item {}
  .flowchart-item > li {
    display: flex;
  }
  .flowchart-item > li:not(:last-child) {
    margin-bottom: 4rem;
  }
  .flowchart-item > li:not(:last-child)::before {
    bottom: -115px;
    font-size: 18rem;
  }
  .flowchart-item__body {
    width: 50%;
  }
  [class*="flowchart-item__thum"] {
    width: 50%;
    padding-top: 25%;
  }
  .flowchart-item__ttl {
    font-size: 2.4rem;
  }
  .flowchart-item__txt {}

} /* ----- media END ----- */

/*------------------------------------------------------------
  frame-list
------------------------------------------------------------*/
.frame-list__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid #DDE1E5;
}
.frame-list__ttl {
  font-weight: bold;
  font-size: 1.8rem;
}

/*------------------------------------------------------------
  map-area
------------------------------------------------------------*/
.map-area {
}
.map-area iframe {
}

/*------------------------------------------------------------
  btm-note
------------------------------------------------------------*/
.btm-note {
  color: #686E74;
}

/*------------------------------------------------------------
  bg-full
------------------------------------------------------------*/
.bg-full {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #ccc;
}
  .-recruit-1 {
    height: 0;
    padding-top: 32%;
    background: url("/media/recruit/bg-recruit-1.jpg") no-repeat 50% 50% / cover;
  }
  @media screen and (min-width: 1440px) {
    .-recruit-1 {
      padding-top: 40%;
    }
  } /* ----- media END ----- */

/*------------------------------------------------------------
  phone-box
------------------------------------------------------------*/
.phone-box {
  display: flex;
  justify-content: center;
  padding: 0 0 0 3rem;
}
.phone-box__link {
  position: relative;
  text-align: center;
}
.phone-box__link::before {
  content: "\e551";
  position: absolute;
  top: 50%;
  left: -4rem;
  line-height: 1.5;
  font-family: 'Material Icons';
  font-size: 4rem;
  transform: translateY(-50%);
}
.ua-pc .phone-box__link {
  pointer-events: none;
}
.phone-box__phone {
  line-height: 1;
  font-size: 3.4rem;
  font-weight: bold;
}
.phone-box__sentence {
  color: #000;
  font-size: 1.2rem;
}

@media screen and (min-width: 960px) {
  
} /* ----- media END ----- */