@charset "UTF-8";
/**
	リンク下線のエフェクト
 */
/**
	リンク下線のエフェクト インラインリンク用
 */
/* ==========================================================================
   Base
   リセットcssとhtml要素の定義
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/*img, picture {
  max-width: 100%;
  display: block
}*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select {
  font: inherit;
}

/* ==========================================================================

   preset.scss
   プリミティブ要素の設定

 */
*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media only screen and (max-width: 350px) {
  html {
    font-size: 2.8571428571vw;
  }
}
@media screen and (min-width: 480px) and (max-width: 768px) {
  html {
    font-size: 2.0833333333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (min-width: 1281px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-size: 1.5rem;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  /*overscroll-behavior: none;*/
  -webkit-tap-highlight-color: rgba(0, 156, 255, 0.4);
  font-family: "ゴシックMB101 R", "Gothic MB101 Regular", "A-OTF ゴシックMB101 Pro R", sans-serif;
}
@media print, screen and (min-width:769px) {
  body {
    font-size: 1.6rem;
  }
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  }
}
body.is-fixed {
  position: fixed;
  height: 100%;
  overflow: hidden;
}

main {
  display: block;
}

a {
  color: #000;
  text-decoration: none;
  outline: none;
}

a:active, a:hover, a.touchstart {
  text-decoration: none;
}

@media print, screen and (min-width:769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

p, h1, h2, h3, h4, h5, h6, li, dt, dd, th, td {
  line-height: 1;
  font-weight: normal;
  font-feature-settings: "palt";
  font-size: 1.3rem;
}
@media print, screen and (min-width:769px) {
  p, h1, h2, h3, h4, h5, h6, li, dt, dd, th, td {
    font-size: 1.6rem;
  }
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  vertical-align: bottom;
}

img,
picture {
  width: 100%;
  height: auto;
}

/* 画像のぼやけをなくす（chrome opera） */
/*@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}*/
sup {
  font-size: 0.4em;
  vertical-align: top;
}

hr {
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* reset form elements */
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.svg-assets {
  display: none;
}

/* ==========================================================================
    libs
   ========================================================================== */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
	リンク下線のエフェクト
 */
/**
	リンク下線のエフェクト インラインリンク用
 */
.slick-slide {
  outline: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
.slick-controll {
  position: relative;
}
@media print, screen and (min-width:769px) {
  .slick-controll {
    width: 40%;
    margin: 0 0 0 auto;
  }
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  right: 0;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  z-index: 11;
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
@media print, screen and (min-width:769px) {
  .slick-prev:hover,
  .slick-next:hover {
    opacity: 0.8;
  }
}

.slick-prev {
  background: url(/common/img/ic_prev.svg) no-repeat center center/contain;
  left: 15px;
}

.slick-next {
  background: url(/common/img/ic_next.svg) no-repeat center center/contain;
  right: 15px;
}

/* Dots */
.slick-dots {
  position: relative;
  z-index: 1;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 22px;
  width: 22px;
}
.slick-dots li button {
  font-size: 0;
  cursor: pointer;
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  border-radius: 50%;
  background-color: #6A6855;
}
.slick-dots li.slick-active button {
  background-color: #fff;
}

#toc_container {
  display: block !important;
  line-height: 1.5;
  padding: 0 2.5rem;
  margin: 0 0 6em;
  border: 2px solid var(--col-blog);
}
@media print, screen and (min-width:769px) {
  #toc_container {
    padding: 0 5rem 3rem;
  }
}

#toc_container .toc_title {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  margin: 0 -2.5rem 2rem;
  padding: 0 2.5rem;
  border-bottom: 2px solid var(--col-blog);
}
@media print, screen and (min-width:769px) {
  #toc_container .toc_title {
    font-size: 1.8rem;
    margin: 0 -5rem 4rem;
    padding: 1.4rem 3rem;
  }
}

#toc_container ul {
  margin: 0;
}

#toc_container ul li {
  list-style: none;
  margin: 0 0 0.5em 0;
  padding-left: 0;
  text-indent: 0;
}
#toc_container ul li:last-child {
  margin-bottom: 1em;
}

#toc_container ul a {
  display: block;
  text-decoration: none;
}
@media print, screen and (min-width:769px) {
  #toc_container ul a {
    transition: 0.25s;
  }
  #toc_container ul a:hover {
    color: #ddd;
  }
}

#toc_container > ul > li {
  border-bottom: 1px dashed #000;
  padding-bottom: 0;
  margin-bottom: 1.5em;
}
#toc_container > ul > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#toc_container > ul > li > a {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  font-size: 1.5rem;
  padding-bottom: 0.6em;
}
@media print, screen and (min-width:769px) {
  #toc_container > ul > li {
    padding-bottom: 1em;
    margin-bottom: 2.5em;
  }
  #toc_container > ul > li > a {
    font-size: 2rem;
  }
}

#toc_container > ul > li > ul > li > a {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  font-size: 1.4rem;
}
@media print, screen and (min-width:769px) {
  #toc_container > ul > li > ul > li > a {
    font-size: 1.6rem;
  }
}

#toc_container ul > li > ul > li > ul {
  padding: 1em 0 0 1.5em;
}
#toc_container ul > li > ul > li > ul > li > a {
  font-size: 1.4rem;
}
@media print, screen and (min-width:769px) {
  #toc_container ul > li > ul > li > ul > li > a {
    font-size: 1.6rem;
  }
}

#toc_container .toc_number {
  display: inline-block;
  margin-right: 0.5em;
}

/* ==========================================================================
   Layout
   ========================================================================== */
/* --------------------------------------------------------------------
  #基本幅レイアウト用wrapper
 */
.l-width-std {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
@media print, screen and (min-width:769px) {
  .l-width-std {
    margin-left: 6.2rem;
    margin-right: 6.2rem;
    max-width: 140.4rem;
  }
}
@media screen and (min-width: 1404px) {
  .l-width-std {
    margin-right: auto;
    margin-left: auto;
    width: 140.4rem;
    padding-left: 6.2rem;
    padding-right: 6.2rem;
  }
}

/* --------------------------------------------------------------------
  #ページ全体のwrapper
 */
.l-page-wrapper {
  position: relative;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------
  #メインエリアwrapper
 */
.l-main {
  position: relative;
  overflow: hidden;
}

.l-main.--top {
  padding-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .l-main.--top {
    padding-bottom: 12rem;
  }
}

.l-main.--second {
  padding-top: 9.5rem;
}
@media print, screen and (min-width:769px) {
  .l-main.--second {
    padding-top: 13rem;
  }
}

.l-main.--gray {
  background-color: #EDEDED;
}

.l-main.--second2 {
  padding-top: 100px;
}
@media print, screen and (min-width:769px) {
  .l-main.--second2 {
    padding-top: 200px;
  }
}

/* --------------------------------------------------------------------
  #セカンドユーティリティページレイアウト
 */
/*.l-second {
  padding-top: 100px;
  @include mq-pc {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}*/
/* --------------------------------------------------------------------
  #汎用セクションフォーマット
 */
.l-section {
  position: relative;
  z-index: 3;
  margin-bottom: 6rem;
}
@media print, screen and (min-width:769px) {
  .l-section {
    margin-bottom: 10rem;
  }
}

/* ==========================================================================
   Module
   ========================================================================== */
/* ====================================================================

#コンテンツヘッダ

*/
/* --------------------------------------------------------------------
  #ヘッダ
 */
.header {
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  height: 5.5rem;
  background-color: #fff;
}
@media print, screen and (min-width:769px) {
  .header {
    height: 6.2rem;
  }
}

/**
  SP時の固定ヘッダ要素
 */
.header-wrap {
  position: relative;
  background: #fff;
  width: 100%;
  z-index: 110;
}

/**
  メニュートリガーボタン
 */
.header__trigger {
  position: fixed;
  z-index: 111;
  cursor: pointer;
  right: 0;
  top: 0;
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0;
  background-color: #000;
}
.header__trigger .line1,
.header__trigger .line2,
.header__trigger .line3 {
  display: block;
  width: 2.2rem;
  height: 2px;
  background-color: #fff;
  transform-origin: 50% 50%;
  transition-duration: 0.2s;
}
.header__trigger .line1 {
  transform: translate3d(0, -5px, 0);
}
.header__trigger .line3 {
  transform: translate3d(0, 5px, 0);
}
.header__trigger.is-active .line1,
.header__trigger.is-active .line2,
.header__trigger.is-active .line3 {
  transition-duration: 0.4s;
}
.header__trigger.is-active .line1 {
  transform: translate3d(0, 2px, 0) rotate(45deg);
}
.header__trigger.is-active .line2 {
  opacity: 0;
}
.header__trigger.is-active .line3 {
  transform: translate3d(0, -2px, 0) rotate(-45deg);
}
@media print, screen and (min-width:769px) {
  .header__trigger {
    width: 6.2rem;
    height: 6.2rem;
    transition: 0.25s background-color;
  }
  .header__trigger .line1,
  .header__trigger .line2,
  .header__trigger .line3 {
    width: 25px;
  }
  .header__trigger:hover {
    background-color: #ddd;
  }
}

/**
  ヘッダロゴ
 */
.header__ci {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 1.5rem;
}
.header__ci.is-active > a {
  background-color: rgba(255, 255, 255, 0);
}
.header__ci img {
  width: 10rem;
  line-height: 0;
}
.header__ci > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 5.5rem;
  transition: 0.3s;
}
@media print, screen and (min-width:769px) {
  .header__ci {
    top: 0;
    left: 0;
    transition: 0.3s transform, 0.8s opacity;
    transform-origin: 0 0;
  }
  .header__ci img {
    width: 15.8rem;
  }
  .header__ci.is-hidden {
    opacity: 0;
  }
  .header__ci > a {
    height: 6.2rem;
    width: 22rem;
  }
  .header__ci.is-top img {
    width: 11.5rem;
  }
  .header__ci.is-top > a {
    width: 20rem;
    height: 20rem;
  }
}

.header__top-ci,
.header__menu-ci {
  display: none;
}
@media print, screen and (min-width:769px) {
  .header__top-ci,
  .header__menu-ci {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .header__top-ci img,
  .header__menu-ci img {
    width: 11.5rem;
  }
  .header__top-ci.is-active > a,
  .header__menu-ci.is-active > a {
    background-color: rgba(255, 255, 255, 0);
  }
  .header__top-ci.is-hidden,
  .header__menu-ci.is-hidden {
    opacity: 0;
    transition: 1s;
  }
  .header__top-ci > a,
  .header__menu-ci > a {
    width: 20rem;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
  }
}

.header__top-ci {
  z-index: 110;
}

.header__menu-ci > a {
  background: none;
}

/**
  ヘッダユーティリティ
 */
.header__utility {
  position: absolute;
  z-index: 111;
  display: flex;
  align-items: center;
  top: 0;
  right: 7.5rem;
  height: 5.5rem;
}
.header__utility > li {
  font-size: 1.1rem;
  letter-spacing: 0;
  margin-right: 2em;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
.header__utility > li:last-child {
  margin-right: 0;
}
@media print, screen and (min-width:769px) {
  .header__utility {
    height: 6.2rem;
    right: 12rem;
  }
  .header__utility > li {
    font-size: 1.6rem;
    margin-right: 5rem;
  }
  .header__utility > li > a {
    transition: 0.25s;
  }
  .header__utility > li > a:hover {
    color: #808080;
  }
}

/**
  ドロワーコンテナ（SP時メニューのボディ）
 */
.header-menu {
  display: none;
  position: fixed;
  z-index: 108;
  height: 100%;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: #fff;
}
.header-menu.is-beforeEnter {
  display: block;
  opacity: 0;
}
.header-menu.is-active {
  display: block;
  transition: 0.5s opacity;
  opacity: 1;
}
.header-menu.is-fadeOut {
  display: block;
  opacity: 0;
  transition: 0.3s opacity;
}

.header-menu-inner {
  position: relative;
  z-index: 111;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-menu-inner {
    /*overflow-y: auto;
    -webkit-overflow-scrolling: touch;*/
    /*padding: 8rem 0 0;*/
    padding: 2.8rem 0 0;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
  }
}
@media print, screen and (min-width:769px) {
  .header-menu-inner {
    padding: 19rem 0 0;
  }
}

.header-menu-content {
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width:769px) {
  .header-menu-content {
    width: 87.4rem;
    display: flex;
  }
}

@media print, screen and (min-width:769px) {
  .header-container {
    width: 28.6rem;
  }
}

.header-gnav {
  -moz-column-count: 2;
       column-count: 2;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-gnav {
    margin-bottom: 2rem;
    width: 100%;
    height: 26rem;
  }
}
@media print, screen and (min-width:769px) {
  .header-gnav {
    width: 58.7rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.header-gnav__item {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
.header-gnav__item > a, .header-gnav__item > span {
  display: block;
  letter-spacing: 0;
}
.header-gnav__item .item-en {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  display: inline-block;
  position: relative;
}
.header-gnav__item .item-en::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  transition: 0.25s transform;
  margin-top: 0.5rem;
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 0;
  background-color: #000;
}
.header-gnav__item small {
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #676767;
}
@media print, screen and (min-width:769px) {
  .header-gnav__item {
    margin-bottom: 5rem;
  }
  .header-gnav__item > a, .header-gnav__item > span {
    font-size: 3.2rem;
  }
  .header-gnav__item small {
    font-size: 1.3rem;
    margin-top: 0.8rem;
  }
  .header-gnav__item .item-en::after {
    margin-top: 0.8rem;
  }
  .header-gnav__item:hover .item-en::after {
    transform-origin: 0 0;
    transform: scale3d(1, 1, 1);
  }
}

.header-gnav__item.is-current .item-en::after {
  transform: scale3d(1, 1, 1);
}

.header-gnav__item.--about .item-en::after {
  background-color: var(--col-about);
}

.header-gnav__item.--business .item-en::after {
  background-color: var(--col-business);
}

.header-gnav__item.--brand .item-en::after {
  background-color: var(--col-brand);
}

.header-gnav__item.--people .item-en::after {
  background-color: var(--col-people);
}

.header-gnav__item.--blog .item-en::after {
  background-color: var(--col-blog);
}

.header-gnav__item.--recruit .item-en::after {
  background-color: var(--col-recruit);
}

.header-gnav__item.--solution .item-en::after {
  background-color: var(--col-solution);
}

.header-gnav__item.--news .item-en::after {
  background-color: var(--col-others);
}

@media print, screen and (min-width:769px) {
  .header__contact.btn-a {
    margin-bottom: 4.5rem;
  }
  .header__contact.btn-a .btn-inner {
    height: 6.7rem;
  }
}

/* ====================================================================

  #フッタ

 */
.footer {
  background-color: #EDEDED;
}

.footer-inner {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer-inner {
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .footer-inner {
    padding-top: 6.5rem;
    padding-bottom: 2rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer__ci {
    margin-bottom: 3.5rem;
    width: 9.3rem;
  }
}
@media print, screen and (min-width:769px) {
  .footer__ci {
    position: absolute;
    width: 13.5rem;
    margin-left: 2.5rem;
  }
}

@media print, screen and (min-width:769px) {
  .footer-container {
    width: 52%;
    margin: 0 0 5rem auto;
    display: flex;
  }
}

.footer-gnav {
  margin-bottom: 2.5rem;
  -moz-column-count: 2;
       column-count: 2;
}
.footer-gnav > li {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.footer-gnav > li a {
  color: #4D4D4D;
}
.footer-gnav > li:nth-child(4),
.footer-gnav > li:nth-child(8) {
  margin-bottom: 0;
}
@media print, screen and (min-width:769px) {
  .footer-gnav {
    margin-bottom: 0;
    width: calc(100% - 21rem);
  }
  .footer-gnav > li {
    font-size: 1.8rem;
    margin-bottom: 3.5rem;
    transition: 0.25s opacity;
  }
  .footer-gnav > li:hover {
    opacity: 0.6;
  }
}

.footer__copyright {
  display: block;
  text-align: center;
  font-size: 1rem;
}
@media print, screen and (min-width:769px) {
  .footer__copyright {
    font-size: 1.2rem;
    text-align: right;
  }
}

@media print, screen and (min-width:769px) {
  .footer-container2 {
    width: 21rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.footer__contact.btn-a .btn-inner {
  height: 5rem;
  color: #4D4D4D;
  font-size: 1.3rem;
}
@media print, screen and (min-width:769px) {
  .footer__contact.btn-a .btn-inner {
    height: 4.4rem;
  }
}

.table-wrap {
  margin-bottom: 80px;
  /*  @include mq-sp {
      overflow: auto;
    }*/
}
@media print, screen and (min-width:769px) {
  .table-wrap {
    margin-bottom: 120px;
  }
}

/* ==========================================================================

	#アコーディオンモジュール

 */
.prg-accr-trigger {
  cursor: pointer;
}

.prg-accr-content {
  display: none;
}

.prg-sp-accr-trigger {
  cursor: pointer;
}
.prg-sp-accr-trigger .icon-arrow {
  transition-duration: 0.3s;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .prg-sp-accr-content {
    display: none;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .pagination {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .pagination {
    margin-top: 8rem;
  }
}

.pagination .prev,
.pagination .next {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 0.5em;
  font-size: 1.3rem;
}
.pagination .prev::after,
.pagination .next::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #707070;
  bottom: 0;
  left: 0;
}
@media print, screen and (min-width:769px) {
  .pagination .prev,
  .pagination .next {
    margin: 0 3rem;
    /*height: 6rem;*/
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5em;
  }
  .pagination .prev::after,
  .pagination .next::after {
    bottom: 1rem;
  }
  .pagination .prev:hover,
  .pagination .next:hover {
    color: #000;
  }
  .pagination .prev::after,
  .pagination .next::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: #000;
    transform: scale3d(1, 1, 1);
    transform-origin: 0 0;
    transition: transform 0.25s;
  }
  .pagination .prev:hover::after,
  .pagination .next:hover::after {
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 0;
  }
}

.pagination > .page-numbers > li.disabled {
  pointer-events: none;
  visibility: hidden;
}

.page-numbers:not(.prev):not(.next) {
  position: relative;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  border-radius: 50%;
  font-size: 1.3rem;
  color: #4D4D4D;
  width: 2.6rem;
  height: 2.6rem;
}
.page-numbers:not(.prev):not(.next) > li {
  margin: 0 0.5rem;
}
@media print, screen and (min-width:769px) {
  .page-numbers:not(.prev):not(.next) {
    width: 6rem;
    height: 6rem;
    font-size: 1.8rem;
    transition: 0.25s;
  }
  .page-numbers:not(.prev):not(.next) > li {
    margin: 0 2rem;
  }
  .page-numbers:not(.prev):not(.next) .page-numbers:not(.current):not(.prev):not(.next):hover {
    color: #808080;
  }
}

.page-numbers .page-numbers.current {
  background-color: var(--col-blog);
  color: #fff;
}

.pagination.--type2 .prev,
.pagination.--type2 .next {
  height: 6rem;
  display: flex;
  align-items: center;
  padding-bottom: 0;
}
.pagination.--type2 .prev::after,
.pagination.--type2 .next::after {
  display: none;
}
.pagination.--type2 .prev svg,
.pagination.--type2 .next svg {
  stroke: #000;
  width: 0.85rem;
  height: 1.7rem;
}
.pagination.--type2 .prev svg {
  transform: rotate(180deg);
}
.pagination.--type2 .page-numbers .page-numbers.current {
  background-color: #808080;
  color: #fff;
}
@media print, screen and (min-width:769px) {
  .pagination.--type2 .page-numbers {
    transition: 0.25s;
  }
  .pagination.--type2 svg {
    stroke: #000;
    width: 1.3rem;
    height: 2.5rem;
  }
}

/* ====================================================================

  #見出しモジュール

 */
/* --------------------------------------------------------------------
  # ページ見出し
 */
.heading-page {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
@media print, screen and (min-width:769px) {
  .heading-page {
    display: flex;
    align-items: flex-end;
    margin-left: 6.2rem;
    margin-right: 6.2rem;
  }
}

.heading-page__en img {
  width: auto;
  height: 3.6rem;
}
@media print, screen and (min-width:769px) {
  .heading-page__en {
    margin-right: 5rem;
  }
  .heading-page__en img {
    height: 6.6rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .heading-page__jp {
    margin-top: 1.2rem;
    font-size: 1.3rem;
    display: block;
  }
}
@media print, screen and (min-width:769px) {
  .heading-page__jp {
    font-size: 1.8rem;
  }
}

/* --------------------------------------------------------------------
  # セクション見出し
 */
.heading1 {
  position: relative;
  z-index: 6;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  text-align: center;
  padding-top: 4em;
  margin-top: -4em;
}
@media print, screen and (min-width:769px) {
  .heading1 {
    font-size: 4rem;
  }
}

.heading2 {
  position: relative;
  background-color: #676767;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  height: 5rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .heading2 {
    height: 6rem;
    font-size: 2rem;
  }
}

.heading2.--about {
  background-color: #808080;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .heading2.--about {
    font-size: 1.6rem;
  }
}

.heading3 {
  position: relative;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 2.2rem;
}
@media print, screen and (min-width:769px) {
  .heading3 {
    font-size: 3.2rem;
  }
}

.heading4 {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}
@media print, screen and (min-width:769px) {
  .heading4 {
    font-size: 2rem;
  }
}

.form-w1 {
  width: 30%;
  max-width: 60px;
}
@media print, screen and (min-width:769px) {
  .form-w1 {
    width: 20%;
    max-width: 100px;
  }
}

.form-w2 {
  width: 100%;
}
@media print, screen and (min-width:769px) {
  .form-w2 {
    width: 40%;
  }
}

.form-w3 {
  width: 100%;
}
@media print, screen and (min-width:769px) {
  .form-w3 {
    width: 60%;
  }
}

.form-w4 {
  width: 100%;
}
@media print, screen and (min-width:769px) {
  .form-w4 {
    width: 80%;
  }
}

.form-w5 {
  width: 100%;
}
@media print, screen and (min-width:769px) {
  .form-w5 {
    width: 100%;
  }
}

.form-textarea {
  height: 10rem;
}
@media print, screen and (min-width:769px) {
  .form-textarea {
    height: 20rem;
  }
}

.input-list > li {
  display: inline-block;
  margin-right: 1rem;
  line-height: 2;
}
@media print, screen and (min-width:769px) {
  .input-list > li {
    margin-right: 1.5rem;
  }
}

.form-require {
  color: #CC3E39;
  font-size: 1.1rem;
  margin-left: 0.5rem;
}
@media print, screen and (min-width:769px) {
  .form-require {
    font-size: 1.4rem;
  }
}

.form-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
.form-buttons > li {
  margin-right: 2rem;
}
.form-buttons > li:last-child {
  margin-right: 0;
}
@media print, screen and (min-width:769px) {
  .form-buttons {
    margin-top: 4rem;
  }
  .form-buttons > li {
    margin-right: 4rem;
  }
}

/* --------------------------------------------------------------------
  #input
 */
input:not([type=radio]):not([type=submit], [type=button]):not([type=file]),
textarea {
  height: 6rem;
  font-size: 1.6rem;
  align-items: center;
  background: #fff;
  padding: 6px;
  border: 1px solid #707070;
}
input:not([type=radio]):not([type=submit], [type=button]):not([type=file])::-moz-placeholder, textarea::-moz-placeholder {
  color: #ccc;
  font-size: 1.4rem;
}
input:not([type=radio]):not([type=submit], [type=button]):not([type=file]):-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ccc;
  font-size: 1.4rem;
}
input:not([type=radio]):not([type=submit], [type=button]):not([type=file])::placeholder,
textarea::placeholder {
  color: #ccc;
  font-size: 1.4rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  input:not([type=radio]):not([type=submit], [type=button]):not([type=file]),
  textarea {
    height: 4.5rem;
    font-size: 1.6rem;
  }
  input:not([type=radio]):not([type=submit], [type=button]):not([type=file])::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 1.6rem;
  }
  input:not([type=radio]):not([type=submit], [type=button]):not([type=file]):-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 1.6rem;
  }
  input:not([type=radio]):not([type=submit], [type=button]):not([type=file])::placeholder,
  textarea::placeholder {
    font-size: 1.6rem;
  }
}

textarea {
  height: initial;
}

/* --------------------------------------------------------------------
  #チェックボックス
 */
input[type=checkbox] {
  position: relative;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem !important;
  border-radius: 0 !important;
  margin: 0 0.8rem 0 0;
  background: #fff;
  padding: 0 !important;
  transform: translateY(0.2rem);
}
@media print, screen and (min-width:769px) {
  input[type=checkbox] {
    transform: translateY(0.1rem);
    width: 3rem;
    height: 3rem !important;
  }
}

input[type=checkbox]:checked {
  /*position: absolute;*/
}
input[type=checkbox]:checked::before, input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 2px;
  background-color: #CC3E39;
}
input[type=checkbox]:checked::before {
  transform: rotate(45deg);
  top: 1.2rem;
  left: 0.3rem;
}
input[type=checkbox]:checked::after {
  transform: rotate(-45deg);
  width: 1.5rem;
  top: 1rem;
  left: 0.7rem;
}
@media print, screen and (min-width:769px) {
  input[type=checkbox]:checked::before {
    top: 1.5rem;
    left: 0.6rem;
  }
  input[type=checkbox]:checked::after {
    width: 1.5rem;
    top: 1.3rem;
    left: 0.9rem;
  }
}

/* --------------------------------------------------------------------
  #ラジオボタン
 */
label {
  cursor: pointer;
}

input[type=radio] {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.5rem;
  border: 1px solid #707070;
  border-radius: 50%;
  margin-right: 1em;
  background: #fff;
  transform: translateY(-0.1em);
}
@media print, screen and (min-width:769px) {
  input[type=radio] {
    width: 3rem;
    height: 3rem;
  }
}

input[type=radio]:checked {
  position: relative;
}
input[type=radio]:checked::before, input[type=radio]:checked::after {
  position: absolute;
  font-size: 14px;
  left: 17.5%;
  top: 17.5%;
  width: 65%;
  height: 65%;
  background: #CC3E39;
  content: "";
  border-radius: 50%;
}

/* --------------------------------------------------------------------
  #select
 */
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  height: 4.5rem;
  pointer-events: none;
  right: 0;
  top: 0;
  background: url(/assets/img/ic_arrow_down.png) no-repeat center center/14px auto #f5f5f5;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .select-wrap {
    width: 200px;
  }
}
@media print, screen and (min-width:769px) {
  .select-wrap::after {
    width: 40px;
    height: 6rem;
  }
}

@media print, screen and (min-width:769px) {
  .select-wrap--address {
    width: 200px;
  }
}

select {
  height: 4.5rem;
  width: 100%;
  letter-spacing: 0.05em;
  border-radius: 2px;
  background-color: #f5f5f5;
  padding: 0 10px;
  font-size: 1.6rem;
}
@media print, screen and (min-width:769px) {
  select {
    height: 6rem;
  }
}

.article-wrap {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .article-wrap {
    width: 76rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8rem;
  }
}

.article-container {
  position: relative;
  margin-bottom: 5rem;
}
@media print, screen and (min-width:769px) {
  .article-container {
    margin-bottom: 10rem;
  }
}

.article {
  margin-bottom: 4rem;
}
.article::after {
  content: "";
  display: block;
  clear: both;
}
@media print, screen and (min-width:769px) {
  .article {
    margin-bottom: 8rem;
  }
}

.article-head {
  margin-bottom: 3rem;
}
@media print, screen and (min-width:769px) {
  .article-head {
    margin-bottom: 4rem;
  }
}

.article-meta {
  display: flex;
  margin-bottom: 2rem;
}
.article-meta > p {
  font-size: 1.1rem;
}
@media print, screen and (min-width:769px) {
  .article-meta {
    margin-bottom: 5rem;
  }
  .article-meta > p {
    font-size: 1.6rem;
  }
}

.article-meta__date {
  position: relative;
  padding-right: 1rem;
  margin-right: 1rem;
}
.article-meta__date:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #000;
}
@media print, screen and (min-width:769px) {
  .article-meta__date {
    margin-right: 2rem;
    padding-right: 2rem;
  }
}

.article-head.--news .article-meta {
  margin-bottom: 0;
}
.article-head.--news .article-meta > p,
.article-head.--news .article-meta > p > a {
  color: #676767;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .article-head.--news {
    padding-bottom: 0;
    margin-bottom: 1rem;
  }
}
@media print, screen and (min-width:769px) {
  .article-head.--news {
    border-bottom: 1px solid #707070;
    padding-bottom: 3rem;
  }
}

.article__heading {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  line-height: 1.75;
  font-size: 2rem;
}
@media print, screen and (min-width:769px) {
  .article__heading {
    font-size: 3.2rem;
    margin-bottom: 7rem;
  }
}

.article__heading.--news {
  margin-bottom: 2rem;
}
@media print, screen and (min-width:769px) {
  .article__heading.--news {
    margin-bottom: 4rem;
  }
}

/**
  記事スタイル
 */
.article h1, .article h2, .article h3, .article h4, .article h5, .article h6,
.wp-editor h1,
.wp-editor h2,
.wp-editor h3,
.wp-editor h4,
.wp-editor h5,
.wp-editor h6 {
  line-height: 1.5;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  margin: 1em 0;
}
@media print, screen and (min-width:769px) {
  .article h1, .article h2, .article h3, .article h4, .article h5, .article h6,
  .wp-editor h1,
  .wp-editor h2,
  .wp-editor h3,
  .wp-editor h4,
  .wp-editor h5,
  .wp-editor h6 {
    margin: 1.5em 0;
  }
}
.article h1, .article h2,
.wp-editor h1,
.wp-editor h2 {
  font-size: 1.8rem;
  padding-bottom: 0.7rem;
  line-height: 1.5;
  border-bottom: 2px solid var(--col-blog);
}
@media print, screen and (min-width:769px) {
  .article h1, .article h2,
  .wp-editor h1,
  .wp-editor h2 {
    font-size: 2.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2em;
  }
}
.article h3,
.wp-editor h3 {
  font-size: 1.6rem;
}
@media print, screen and (min-width:769px) {
  .article h3,
  .wp-editor h3 {
    font-size: 2rem;
  }
}
.article p + h1,
.article p + h2,
.article p + h3,
.article p + h4,
.article p + h5,
.article p + h6,
.wp-editor p + h1,
.wp-editor p + h2,
.wp-editor p + h3,
.wp-editor p + h4,
.wp-editor p + h5,
.wp-editor p + h6 {
  margin-top: 4rem;
}
@media print, screen and (min-width:769px) {
  .article p + h1,
  .article p + h2,
  .article p + h3,
  .article p + h4,
  .article p + h5,
  .article p + h6,
  .wp-editor p + h1,
  .wp-editor p + h2,
  .wp-editor p + h3,
  .wp-editor p + h4,
  .wp-editor p + h5,
  .wp-editor p + h6 {
    margin-top: 8rem;
  }
}
.article p,
.wp-editor p {
  line-height: 2;
  font-size: 1.4rem;
  margin-bottom: 3em;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media print, screen and (min-width:769px) {
  .article p,
  .wp-editor p {
    font-size: 1.6rem;
    line-height: 2.2;
  }
}
.article a,
.wp-editor a {
  text-decoration: underline;
}
@media print, screen and (min-width:769px) {
  .article a:hover,
  .wp-editor a:hover {
    text-decoration: none;
  }
}
.article img,
.wp-editor img {
  display: block;
  max-width: 100%;
  margin: 0 auto 2em;
}
@media print, screen and (min-width:769px) {
  .article img,
  .wp-editor img {
    margin-top: 4em;
    margin-bottom: 4em;
  }
}
.article .wp-caption,
.wp-editor .wp-caption {
  max-width: 100%;
}
.article .wp-caption-text,
.wp-editor .wp-caption-text {
  font-size: 0.83em;
  margin-top: -1em;
}
.article .aligncenter,
.wp-editor .aligncenter {
  margin: 0 auto 1em;
}
.article .alignleft,
.wp-editor .alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.article .alignright,
.wp-editor .alignright {
  margin: 0 0 1em auto;
}
.article strong,
.wp-editor strong {
  font-weight: bold;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
.article em,
.wp-editor em {
  font-style: italic;
}
.article blockquote,
.wp-editor blockquote {
  font-style: italic;
  margin: 2em;
  background-color: #f5f5f5;
  padding: 1.2em;
}
@media print, screen and (min-width:769px) {
  .article blockquote,
  .wp-editor blockquote {
    margin: 3em 2em;
  }
}
.article pre,
.wp-editor pre {
  white-space: normal;
}
.article ul,
.article ol,
.wp-editor ul,
.wp-editor ol {
  margin: 2em 0;
}
.article ul li,
.wp-editor ul li {
  list-style-type: disc;
  line-height: 1.5;
  margin-bottom: 1em;
  list-style-position: inside;
  margin-left: 1.5em;
}
.article ol li,
.wp-editor ol li {
  list-style-type: decimal;
  line-height: 1.5;
  margin-bottom: 1em;
}
.article iframe[src*=youtube],
.wp-editor iframe[src*=youtube] {
  display: block;
  margin: 0 auto 3em;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .article iframe[src*=youtube],
  .wp-editor iframe[src*=youtube] {
    width: 100%;
    height: 45vw;
  }
}

/* ====================================================================

  #ボタンモジュール
  style設定クラスは > .btn-inner を内包する
  ex)
  <div class="some-btn">
  <p class="btn-style-a">
    <a class="btn-inner" href="hoge">ボタン</a>
  </p>
  </div>

 */
.btn-inner {
  position: relative;
  width: 100%;
  display: block;
  cursor: pointer;
}

/* --------------------------------------------------------------------
  #ボタン A - 黒ボーダ
 */
.btn-a .btn-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  font-size: 1.3rem;
  height: 4.8rem;
  text-align: center;
  line-height: 1.3;
}
@media print, screen and (min-width:769px) {
  .btn-a .btn-inner {
    height: 5.4rem;
    font-size: 1.6rem;
    transition: 0.25s;
  }
  .btn-a .btn-inner:hover {
    color: #fff;
    background-color: #4D4D4D;
  }
  .btn-a .btn-inner:hover svg {
    stroke: #fff;
  }
}

.btn-a.--small .btn-inner {
  height: 3.2rem;
}
@media print, screen and (min-width:769px) {
  .btn-a.--small .btn-inner {
    height: 4.5rem;
  }
}

.btn-a .icon-arrow {
  content: "";
  display: block;
  position: absolute;
  width: 1.2rem;
  height: 1.8rem;
  right: 1.5rem;
  top: calc(50% - 0.9rem);
  stroke: #000;
}

.btn-a .icon-newwin {
  content: "";
  display: block;
  position: absolute;
  width: 2.17rem;
  height: 2.8rem;
  right: 2rem;
  top: calc(50% - 1.4rem);
  stroke: #000;
}

/* --------------------------------------------------------------------
  #ボタン B - 角丸ボタン
 */
.btn-b {
  width: 25rem;
  margin: 0 auto 0;
}
.btn-b .btn-inner {
  height: 6.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4D4D4D;
  border-radius: 10rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  color: #fff;
}
.btn-b .icon-arrow {
  position: absolute;
  width: 0.8rem;
  height: 1.6rem;
  stroke: #fff;
  right: 4rem;
  transition: 0.25s;
}
@media print, screen and (min-width:769px) {
  .btn-b {
    margin: 8rem auto 0;
    width: 30rem;
  }
  .btn-b .btn-inner {
    transition: 0.25s;
    height: 8rem;
  }
  .btn-b .icon-arrow {
    width: 1.2rem;
    height: 2.4rem;
    right: 4.5rem;
  }
  .btn-b:hover .btn-inner {
    background-color: #fff;
    color: #4D4D4D;
  }
  .btn-b:hover .icon-arrow {
    stroke: #4D4D4D;
  }
}

.section-inner {
  position: relative;
  z-index: 1;
}

.section-body {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 3rem 1.5rem 3rem;
  margin-bottom: 7.5rem;
}
@media print, screen and (min-width:769px) {
  .section-body {
    padding: 8rem 6.5rem;
    margin-bottom: 10rem;
  }
}

.section-body.--news {
  border-radius: 0 0 0.6rem 0.6rem;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}
@media print, screen and (min-width:769px) {
  .section-body.--news {
    padding-top: 5rem;
    margin-bottom: 3rem;
  }
}

.section__catch {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
  font-size: 2.2rem;
  line-height: 1.5;
}
@media print, screen and (min-width:769px) {
  .section__catch {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

.section__text {
  line-height: 1.8;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media print, screen and (min-width:769px) {
  .section__text {
    line-height: 2;
    text-align: center;
    font-size: 1.8rem;
  }
}

.path-anim {
  transform-origin: 50% 50%;
}

/* KeyFrames
----------------------------------------------------------------- */
@-webkit-keyframes fluffyRotate {
  0% {
    transform: rotate(0) scale(1, 1);
  }
  50% {
    transform: rotate(180deg) scale(1.1, 1.1);
  }
  100% {
    transform: rotate(360deg) scale(1, 1);
  }
}
@keyframes fluffyRotate {
  0% {
    transform: rotate(0) scale(1, 1);
  }
  50% {
    transform: rotate(180deg) scale(1.1, 1.1);
  }
  100% {
    transform: rotate(360deg) scale(1, 1);
  }
}
@-webkit-keyframes fluffyRotateReverse {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes fluffyRotateReverse {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes fluffySkew {
  0% {
    transform: skew(-10deg);
  }
  100% {
    transform: skew(10deg);
  }
}
@keyframes fluffySkew {
  0% {
    transform: skew(-10deg);
  }
  100% {
    transform: skew(10deg);
  }
}
@-webkit-keyframes fluffySkew5deg {
  0% {
    transform: skew(-5deg);
  }
  100% {
    transform: skew(5deg);
  }
}
@keyframes fluffySkew5deg {
  0% {
    transform: skew(-5deg);
  }
  100% {
    transform: skew(5deg);
  }
}
/* ==========================================================================
   project
   ========================================================================== */
.top__marquee {
  position: relative;
  z-index: 2;
  background: url(../../img/shape_marquee01.svg) repeat-x left top/52rem auto;
  height: 5.2rem;
  width: 100%;
  margin-bottom: 7rem;
  -webkit-animation: anim-marquee-sp linear infinite 20s;
          animation: anim-marquee-sp linear infinite 20s;
}
@media print, screen and (min-width:769px) {
  .top__marquee {
    margin-bottom: 17rem;
    background: url(../../img/shape_marquee01.svg) repeat-x left top/130.1rem auto;
    height: 10rem;
    -webkit-animation: anim-marquee linear infinite 20s;
            animation: anim-marquee linear infinite 20s;
  }
}

@-webkit-keyframes anim-marquee-sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -52rem 0;
  }
}

@keyframes anim-marquee-sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -52rem 0;
  }
}
@-webkit-keyframes anim-marquee {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -130.1rem 0;
  }
}
@keyframes anim-marquee {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -130.1rem 0;
  }
}
.top__fixed {
  position: fixed;
  right: 2rem;
  top: calc(70vh - 2rem);
  z-index: 100;
  transition: 0.3s;
  /*  @media screen and (min-width: 769px) and (min-aspect-ratio: 9/5) {
      right: 2rem;
      bottom: 2rem;
    }*/
  /*  @include mq-min(1600) {
      right: 2rem;
      bottom: 2rem;
    }*/
}
.top__fixed > a, .top__fixed > span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  padding: 0.8rem;
  color: #fff;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-color: #CC3E39;
  font-size: 1.1rem;
  white-space: nowrap;
}
.top__fixed.is-hidden {
  pointer-events: none;
  opacity: 0;
}
.top__fixed.is-scroll {
  /*right: 1.2rem;*/
  top: calc(100vh - 8.2rem);
  top: calc(100dvh - 8.2rem);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top__fixed.is-scroll2 {
    top: auto !important;
    bottom: calc(env(safe-area-inset-bottom) + 1.2rem);
  }
}
@media print, screen and (min-width:769px) {
  .top__fixed {
    top: auto;
    right: 2rem;
    bottom: 2rem;
  }
  .top__fixed.is-scroll {
    top: auto;
    right: 2rem;
    bottom: 2rem;
  }
  .top__fixed > a, .top__fixed > span {
    width: 13.2rem;
    height: 13.2rem;
    transition: 0.25s;
    font-size: 1.6rem;
    padding: 2rem;
  }
  .top__fixed > a:hover, .top__fixed > span:hover {
    color: #CC3E39;
    background-color: #EDA19E;
  }
}

.top-mv {
  position: relative;
  margin: 5.5rem 1.5rem 1.5rem;
}
@media print, screen and (min-width:769px) {
  .top-mv {
    margin: 6.2rem;
  }
}
@media screen and (min-width: 1600px) {
  .top-mv {
    width: 1600px;
    margin: 6.2rem auto;
    padding: 0 6.2rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-mv-slide {
    margin-bottom: 1.5rem;
  }
}

.top-mv-slide__item {
  position: relative;
  height: 70vh;
}
@media print, screen and (min-width:769px) {
  .top-mv-slide__item {
    height: calc(100vh - 12.4rem);
  }
}
@media screen and (min-width: 769px) and (min-aspect-ratio: 9/5) {
  .top-mv-slide__item {
    height: 72rem;
  }
}

.top-mv-slide__item .item-catch {
  position: absolute;
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  font-feature-settings: "pkna";
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  -ms-text-combine-horizontal: all;
  left: calc(50% - 1rem);
  top: 10vw;
  letter-spacing: 0.1em;
  font-feature-settings: "pkna";
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .top-mv-slide__item .item-catch {
    font-size: 2.5vw;
    left: 80vw;
    top: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .top-mv-slide__item .item-catch {
    left: 78vw;
  }
}
@media screen and (min-width: 1600px) {
  .top-mv-slide__item .item-catch {
    font-size: 4rem;
    top: 12.5rem;
    left: calc(50% + 56rem);
  }
}

.top-mv-slide__item .item-heading {
  position: absolute;
  z-index: 3;
}
.top-mv-slide__item .item-heading span {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  letter-spacing: 0.075em;
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background-color: #fff;
  font-size: 1.5rem;
  line-height: 1.75;
  padding: 0.5rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-mv-slide__item .item-heading {
    top: 2rem;
    left: 2rem;
    width: 88%;
  }
}
@media print, screen and (min-width:769px) {
  .top-mv-slide__item .item-heading {
    bottom: 13rem;
    left: 4rem;
  }
  .top-mv-slide__item .item-heading span {
    font-size: 3rem;
    padding: 1.2rem;
    line-height: 1.75;
    transition: 0.25s;
  }
}

@media print, screen and (min-width:769px) {
  .top-mv-slide__item a:hover .item-heading span {
    background-color: #000;
    color: #fff;
  }
}

.top-mv-slide__item .item-pict picture, .top-mv-slide__item .item-pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-mv__indicator {
  position: absolute;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  height: 1.6rem;
  width: 12rem;
}
.top-mv__indicator .bar,
.top-mv__indicator .back {
  position: absolute;
  display: block;
  width: 6rem;
  height: 2px;
  left: 3rem;
  top: 0.7rem;
  background-color: #C4BEBE;
  transform-origin: 0 50%;
}
.top-mv__indicator .bar {
  background-color: #000;
  z-index: 3;
}
.top-mv__indicator .current,
.top-mv__indicator .total {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 1.6rem;
  font-size: 1rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-mv__indicator {
    right: 0;
    top: calc(50% + 5rem);
    transform: rotate(90deg);
    transform-origin: 100% 0;
  }
}
@media print, screen and (min-width:769px) {
  .top-mv__indicator {
    width: 13.4rem;
    left: -3.8rem;
    bottom: calc(50% - 5.2rem);
    transform: rotate(-90deg);
    transform-origin: 0 0;
  }
  .top-mv__indicator .bar,
  .top-mv__indicator .back {
    width: 6.4rem;
    left: 3.5rem;
    top: 0.7rem;
  }
  .top-mv__indicator .current,
  .top-mv__indicator .total {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1600px) {
  .top-mv__indicator {
    left: 2rem;
  }
}

/**
  mv newsエリア
 */
.top-mv-news {
  position: relative;
  background-color: #CCCBCB;
  display: flex;
  align-items: center;
  padding: 0.5em 0;
  padding-right: 1rem;
  padding-left: 0.5em;
}
@media print, screen and (min-width:769px) {
  .top-mv-news {
    position: absolute;
    bottom: 3rem;
    height: 5rem;
    padding-right: 4rem;
    padding-left: 0;
  }
  .top-mv-news::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    background-color: #CCCBCB;
    width: 6.2rem;
    left: -6.2rem;
  }
}
@media screen and (min-width: 1600px) {
  .top-mv-news::before {
    width: calc((100vw - 14.8rem) / 2);
    left: calc((100vw - 14.8rem) / -2);
  }
}

.top-mv-news__heading {
  position: relative;
  font-size: 1rem;
  padding-right: 3rem;
  margin-right: 0.6rem;
}
.top-mv-news__heading::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #707070;
  width: 2.3rem;
  height: 1px;
}
@media print, screen and (min-width:769px) {
  .top-mv-news__heading {
    font-size: 1.4rem;
    padding-right: 8rem;
    margin-right: 1.6rem;
  }
  .top-mv-news__heading::after {
    width: 6.6rem;
  }
}

.top-mv-news__text {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-mv-news__text > dt, .top-mv-news__text > dd {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.top-mv-news__text > dt {
  margin-right: 1em;
}
@media print, screen and (min-width:769px) {
  .top-mv-news__text {
    transition: 0.25s opacity;
  }
  .top-mv-news__text > dt, .top-mv-news__text > dd {
    font-size: 1.4rem;
  }
  .top-mv-news__text:hover {
    opacity: 0.6;
  }
}

.mv-dots {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mv-dots li {
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-dots button {
  width: 0.6rem;
  height: 0.6rem;
  background: #EDEDED;
  font-size: 0;
}
.mv-dots .slick-active button {
  background: #4D4D4D;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .mv-dots {
    bottom: 1rem;
    left: 1rem;
    width: 88%;
  }
}
@media print, screen and (min-width:769px) {
  .mv-dots {
    height: 100%;
    right: -4rem;
    top: 0;
  }
  .mv-dots li {
    width: 2rem;
    height: 2rem;
  }
  .mv-dots button {
    width: 0.8rem;
    height: 0.8rem;
    background: #EDEDED;
    font-size: 0;
  }
}
.top-grid {
  margin: 0 1.5rem;
}
@media print, screen and (min-width:769px) {
  .top-grid {
    display: grid;
    margin: 0 6.2rem;
  }
}
@media screen and (min-width: 1600px) {
  .top-grid {
    width: 1600px;
    margin: 6.2rem auto;
    padding: 0 6.2rem;
  }
}

.top-grid.--layout1 {
  margin-bottom: 12rem;
}
@media print, screen and (min-width:769px) {
  .top-grid.--layout1 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas: "about business" "about business" "brand banner1" "brand people" "banner2 people";
    margin-bottom: 17rem;
  }
}

.top-grid.--layout2 {
  margin-bottom: 8rem;
}
@media print, screen and (min-width:769px) {
  .top-grid.--layout2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "recruit banner3" "recruit solution" "banner4 solution";
    margin-bottom: 17rem;
  }
}

.top-grid-item {
  position: relative;
}
.top-grid-item > a {
  display: block;
  background-color: #000;
}
.top-grid-item > a > img,
.top-grid-item > a > picture > img {
  transition: 0.25s;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-grid-item {
    margin-bottom: 1.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-grid-item {
    overflow: hidden;
  }
  .top-grid-item:hover .top-grid-item__heading::after {
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 0;
  }
  .top-grid-item:hover > a > img,
  .top-grid-item:hover > a > picture > img {
    opacity: 0.8;
    transform: scale3d(1.05, 1.05, 1);
  }
  .top-grid-item:hover .top-grid-item__pict img {
    opacity: 0.8;
    transform: scale3d(1.05, 1.05, 1);
  }
}

.top-gird-item-content {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1.5rem;
}
@media print, screen and (min-width:769px) {
  .top-gird-item-content {
    padding: 2.5rem;
  }
}

.top-grid-item__catch {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}
.top-grid-item__catch::before, .top-grid-item__catch::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #ddd;
  transform-origin: 0 0;
  transition: transform 0.3s;
  will-change: transform;
}
.top-grid-item__catch::before {
  width: 100%;
  height: 3.4rem;
  transition-delay: 0.9s;
}
.top-grid-item__catch::after {
  right: 0;
  top: 0;
  width: 3.4rem;
  height: 100%;
  transition: transform 0.5s;
  transition-delay: 1.2s;
}
.top-grid-item__catch img {
  position: relative;
  display: block;
  z-index: 3;
  transition: 0.4s opacity;
  transition-delay: 1.4s;
}
@media print, screen and (min-width:769px) {
  .top-grid-item__catch {
    right: 2.5rem;
    top: 2.5rem;
  }
  .top-grid-item__catch::before {
    height: 7.2rem;
  }
  .top-grid-item__catch::after {
    width: 7.2rem;
  }
}

.top-grid-item__catch {
  will-change: opacity;
}
.top-grid-item__catch.ef-scroll-in::before {
  transform: scale3d(0, 1, 1);
}
.top-grid-item__catch.ef-scroll-in::after {
  transform: scale3d(1, 0, 1);
}

@media print, screen and (min-width:769px) {
  .top-grid-item__pict {
    background-color: #000;
  }
  .top-grid-item__pict img {
    transition: 0.25s;
  }
}

.top-grid-item__text {
  line-height: 1.75;
  margin-bottom: 1.5em;
}
.top-grid-item__heading {
  position: relative;
  display: inline-block;
}
.top-grid-item__heading::after {
  transform-origin: 0 0;
  transition: transform 0.25s;
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #000;
  bottom: -0.5em;
}

/**
  コンテンツごとバリエーション
 */
.top-grid-item.--about {
  grid-area: about;
}
.top-grid-item.--about::after {
  background-color: var(--col-about);
}
.top-grid-item.--about .top-grid-item__catch {
  width: 6.5rem;
}
.top-grid-item.--about .top-grid-item__catch::before, .top-grid-item.--about .top-grid-item__catch::after {
  background-color: var(--col-about);
}
@media print, screen and (min-width:769px) {
  .top-grid-item.--about .top-grid-item__catch {
    width: 13.3rem;
  }
}

.top-grid-item.--business {
  grid-area: business;
}
.top-grid-item.--business::after {
  background-color: var(--col-business);
}
.top-grid-item.--business .top-grid-item__catch {
  width: 12.5rem;
}
.top-grid-item.--business .top-grid-item__catch::before, .top-grid-item.--business .top-grid-item__catch::after {
  background-color: var(--col-business);
}
@media print, screen and (min-width:769px) {
  .top-grid-item.--business .top-grid-item__catch {
    width: 26.2rem;
  }
}

.top-grid-item.--brand {
  grid-area: brand;
}
.top-grid-item.--brand::after {
  background-color: var(--col-brand);
}
.top-grid-item.--brand .top-grid-item__catch {
  width: 12.9rem;
}
.top-grid-item.--brand .top-grid-item__catch::before, .top-grid-item.--brand .top-grid-item__catch::after {
  background-color: var(--col-brand);
}
@media print, screen and (min-width:769px) {
  .top-grid-item.--brand .top-grid-item__catch {
    width: 27rem;
  }
}

.top-grid-item.--people {
  grid-area: people;
}
.top-grid-item.--people::after {
  background-color: var(--col-people);
}
.top-grid-item.--people .top-grid-item__catch {
  width: 13.5rem;
}
.top-grid-item.--people .top-grid-item__catch::before, .top-grid-item.--people .top-grid-item__catch::after {
  background-color: var(--col-people);
}
@media print, screen and (min-width:769px) {
  .top-grid-item.--people .top-grid-item__catch {
    width: 27rem;
  }
}

.top-grid-item.--recruit {
  grid-area: recruit;
}
.top-grid-item.--recruit::after {
  background-color: var(--col-recruit);
}
.top-grid-item.--recruit .top-grid-item__catch {
  width: 12rem;
}
.top-grid-item.--recruit .top-grid-item__catch::before, .top-grid-item.--recruit .top-grid-item__catch::after {
  background-color: var(--col-recruit);
}
@media print, screen and (min-width:769px) {
  .top-grid-item.--recruit .top-grid-item__catch {
    width: 24.3rem;
  }
}

.top-grid-item.--solution {
  grid-area: solution;
}
.top-grid-item.--solution::after {
  background-color: var(--col-solution);
}
.top-grid-item.--solution .top-grid-item__catch {
  width: 11.7rem;
}
.top-grid-item.--solution .top-grid-item__catch::before, .top-grid-item.--solution .top-grid-item__catch::after {
  background-color: var(--col-solution);
}
@media print, screen and (min-width:769px) {
  .top-grid-item.--solution .top-grid-item__catch {
    width: 24.2rem;
  }
}

.top-grid-item.--banner1 {
  grid-area: banner1;
}

.top-grid-item.--banner2 {
  grid-area: banner2;
}

.top-grid-item.--banner3 {
  grid-area: banner3;
}

.top-grid-item.--banner4 {
  grid-area: banner4;
}

.top-blog {
  position: relative;
  margin-top: 12rem;
  padding: 0 0 6rem;
  margin-bottom: 8rem;
}
@media print, screen and (min-width:769px) {
  .top-blog {
    padding: 16rem 0;
    margin-bottom: 17rem;
  }
}

.top-blog-container {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-blog-container {
    padding-top: 11rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-blog-container {
    display: flex;
    flex-direction: row-reverse;
  }
}

.top-blog__heading {
  position: relative;
}
.top-blog__heading::before, .top-blog__heading::after {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--col-blog);
  transform-origin: 0 0;
  transition: transform 0.3s;
}
.top-blog__heading::before {
  width: 100%;
  height: 3.4rem;
  transition-delay: 0.3s;
}
.top-blog__heading::after {
  right: 0;
  top: 0;
  width: 3.4rem;
  height: 100%;
  transition: transform 0.5s;
  transition-delay: 0.6s;
}
.top-blog__heading img {
  position: relative;
  display: block;
  z-index: 3;
  transition: 0.4s opacity;
  transition-delay: 0.8s;
}
.top-blog__heading.ef-scroll img {
  opacity: 0;
}
.top-blog__heading.ef-scroll::before {
  transform: scale3d(0, 1, 1);
}
.top-blog__heading.ef-scroll::after {
  transform: scale3d(1, 0, 1);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-blog__heading {
    position: absolute;
    right: 0;
    top: 3rem;
    width: 7.4rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-blog__heading {
    width: 16.8rem;
    height: 29rem;
  }
  .top-blog__heading::before {
    height: 7.2rem;
  }
  .top-blog__heading::after {
    width: 7.2rem;
  }
}

.top-blog-cover {
  width: 70vw;
}
@media print, screen and (min-width:769px) {
  .top-blog-cover {
    width: calc(100% - 25rem);
  }
}

.top-blog__btn {
  width: 25rem;
  margin: 0 auto 0;
}
.top-blog__btn .btn-inner {
  height: 6.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--col-blog);
  border-radius: 10rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  color: #fff;
}
.top-blog__btn .icon-arrow {
  position: absolute;
  width: 0.8rem;
  height: 1.6rem;
  stroke: #fff;
  right: 4rem;
  transition: 0.25s;
}
@media print, screen and (min-width:769px) {
  .top-blog__btn {
    margin: 8rem auto 0;
    width: 30rem;
  }
  .top-blog__btn .btn-inner {
    transition: 0.25s;
    height: 8rem;
  }
  .top-blog__btn .icon-arrow {
    width: 1.2rem;
    height: 2.4rem;
    right: 4.5rem;
  }
  .top-blog__btn:hover .btn-inner {
    background-color: #fff;
    color: var(--col-blog);
  }
  .top-blog__btn:hover .icon-arrow {
    stroke: var(--col-blog);
  }
}

.top-sub {
  position: relative;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 8rem;
}
@media print, screen and (min-width:769px) {
  .top-sub {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 110rem;
    margin-bottom: 8rem;
  }
}

.top-sub__heading {
  margin-bottom: 2.5rem;
}
.top-sub__heading img {
  width: auto;
  height: 1.5rem;
}
@media print, screen and (min-width:769px) {
  .top-sub__heading {
    margin-bottom: 2rem;
  }
  .top-sub__heading img {
    height: 1.8rem;
  }
}

.top-sub__list {
  border-top: 1px solid #B2B0B0;
}

.top-sub__list > li {
  border-bottom: 1px solid #B2B0B0;
}
.top-sub__list > li > a, .top-sub__list > li > span {
  display: flex;
  padding: 1.5rem 0;
  font-size: 1.4rem;
}
.top-sub__list > li .date {
  width: 11rem;
}
.top-sub__list > li p {
  width: calc(100% - 11rem);
  line-height: 1.6;
}
@media print, screen and (min-width:769px) {
  .top-sub__list > li > a, .top-sub__list > li > span {
    padding: 1.5rem 0;
    font-size: 1.4rem;
    transition: 0.25s opacity;
  }
  .top-sub__list > li > a:hover, .top-sub__list > li > span:hover {
    opacity: 0.6;
  }
  .top-sub__list > li .date {
    width: 13rem;
  }
  .top-sub__list > li p {
    width: calc(100% - 13rem);
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-sub__link {
    text-align: right;
    margin-top: 2.5rem;
    position: relative;
  }
  .top-sub__link > a {
    position: relative;
  }
  .top-sub__link > a::after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    right: 0;
    bottom: -0.6rem;
    background-color: #000;
  }
}
@media print, screen and (min-width:769px) {
  .top-sub__link {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5em;
    position: absolute;
    top: 0;
    right: 0;
  }
  .top-sub__link::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: #000;
    transform: scale3d(1, 1, 1);
    transform-origin: 0 0;
    transition: transform 0.25s;
  }
  .top-sub__link:hover::after {
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 0;
  }
}

@media print, screen and (min-width:769px) {
  .top-sub__list2 {
    display: flex;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-sub__list2 > li {
    margin-bottom: 0.8rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-sub__list2 > li {
    width: 32.9%;
    overflow: hidden;
    background-color: #000;
  }
  .top-sub__list2 > li img {
    transition: 0.25s;
  }
  .top-sub__list2 > li:hover img {
    opacity: 0.8;
    transform: scale3d(1.05, 1.05, 1);
  }
}

.about-main {
  text-align: center;
}
@media print, screen and (min-width:769px) {
  .about-main {
    margin: 0 6.2rem;
  }
}

.about-main__mv {
  display: block;
  margin-bottom: 5rem;
}
@media print, screen and (min-width:769px) {
  .about-main__mv {
    margin-bottom: 8rem;
  }
}

.about-main__catch {
  font-size: 2.4rem;
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .about-main__catch {
    font-size: 4rem;
    margin-bottom: 6rem;
  }
}

.about-main__text {
  line-height: 2.4;
  margin-bottom: 2.5em;
}
.about-main__text:last-of-type {
  margin-bottom: 0;
}

.about-main-container {
  position: relative;
  margin-top: 2rem;
  height: 106vw;
}
@media print, screen and (min-width:769px) {
  .about-main-container {
    margin-top: 3rem;
    height: 44.4vw;
    margin-bottom: 4rem;
  }
}

.about-main__pict {
  position: absolute;
}

.about-main__pict.--p01 {
  width: 50vw;
}
@media print, screen and (min-width:769px) {
  .about-main__pict.--p01 {
    width: 26.3vw;
    left: 0;
    top: 6.2vw;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .about-main__pict.--p02 {
    top: 11.2vw;
    width: 38.6vw;
    right: 5.3vw;
  }
}
@media print, screen and (min-width:769px) {
  .about-main__pict.--p02 {
    width: 20vw;
    left: 29vw;
    top: 15vw;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .about-main__pict.--p03 {
    width: 50vw;
    right: 0;
    top: 67.7vw;
  }
}
@media print, screen and (min-width:769px) {
  .about-main__pict.--p03 {
    width: 26vw;
    right: 22.2vw;
    top: 10.3vw;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .about-main__pict.--p04 {
    width: 38.6vw;
    left: 5.8vw;
    top: 45.3vw;
  }
}
@media print, screen and (min-width:769px) {
  .about-main__pict.--p04 {
    width: 20vw;
    right: 0;
    top: 0;
  }
}

/**
  about section共通
 */
.about-sec {
  position: relative;
  padding-top: 5rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .about-sec {
    margin: 0 1.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .about-sec {
    max-width: 140.4rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 8rem;
  }
}

.about-sec-inner {
  position: relative;
  z-index: 3;
}
@media print, screen and (min-width:769px) {
  .about-sec-inner {
    padding: 0 6.2rem;
  }
}

.about-sec__heading img {
  width: auto;
  height: 3.6rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .about-sec__heading {
    margin-bottom: -1rem;
    margin-left: -1.5rem;
  }
}
@media only screen and (max-width: 350px) {
  .about-sec__heading img {
    height: 3.2rem;
  }
}
@media print, screen and (min-width:769px) {
  .about-sec__heading {
    margin-bottom: -2rem;
  }
  .about-sec__heading img {
    height: 9.4rem;
  }
}

.about-sec__heading.--line2 img {
  height: 8.2rem;
}
@media print, screen and (min-width:769px) {
  .about-sec__heading.--line2 img {
    height: 22.4rem;
  }
}

/**
  top message
 */
.about-message {
  margin-bottom: 7rem;
}
@media print, screen and (min-width:769px) {
  .about-message {
    margin-bottom: 15rem;
  }
}

.about-message__text1 {
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .about-message__text1 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
}

.about-message__text2 {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .about-message__text2 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
}

.about-message__text3 {
  line-height: 2.4;
  word-break: break-word;
}
@media print, screen and (min-width:769px) {
  .about-message__text3 {
    width: 44%;
  }
}

.about-message__text4 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  line-height: 1.5;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .about-message__text4 {
    font-size: 2.5rem;
  }
}

.about-message__pict {
  display: block;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .about-message__pict {
    margin: 3rem auto;
  }
}
@media print, screen and (min-width:769px) {
  .about-message__pict {
    position: absolute;
    width: 45%;
    right: 0;
    top: 9rem;
  }
}

/**
  future map
 */
.about-future {
  margin-bottom: 10rem;
}
@media print, screen and (min-width:769px) {
  .about-future {
    margin-bottom: 22rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .about-future-container {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 4rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .about-future__pict {
    margin: -1.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .about-future__pict {
    margin-right: -6.2rem;
  }
}

.about-future__btn .btn-inner {
  background-color: #E6C747;
}
@media print, screen and (min-width:769px) {
  .about-future__btn:hover .btn-inner {
    background-color: #F8F1D2;
    color: #E6C747;
  }
  .about-future__btn:hover .icon-arrow {
    stroke: #E6C747;
  }
}

/**
  group
 */
.about-group-wrap {
  margin-bottom: 8rem;
}
@media print, screen and (min-width:769px) {
  .about-group-wrap {
    max-width: 112.6rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16rem;
  }
}

.about-group__dojo {
  width: 13.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
@media print, screen and (min-width:769px) {
  .about-group__dojo {
    width: 23rem;
    margin-bottom: 4.5rem;
  }
}

.about__table {
  width: 100%;
  border-top: 1px solid #B5B5B5;
  border-left: 1px solid #B5B5B5;
}
.about__table th, .about__table td {
  border-right: 1px solid #B5B5B5;
  border-bottom: 1px solid #B5B5B5;
  padding: 1rem;
  line-height: 1.75;
}
.about__table th {
  width: 30%;
}
.about__table ul.dot > li {
  position: relative;
  padding-left: 1em;
}
.about__table ul.dot > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.about__table ul > li {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.about__table ul > li:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width:769px) {
  .about__table th, .about__table td {
    padding: 1.5rem 2.5rem;
  }
  .about__table th {
    width: 25%;
  }
  .about__table td {
    width: 75%;
  }
  .about__table ul.col2 {
    -moz-column-count: 2;
         column-count: 2;
  }
  .about__table ul > li {
    margin-bottom: 1.5rem;
  }
}

.about-group-container {
  position: relative;
}
@media print, screen and (min-width:769px) {
  .about-group-container {
    padding-left: 42rem;
  }
}

.about-group__pict1 {
  display: block;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .about-group__pict1 {
    margin: 3rem auto;
  }
}
@media print, screen and (min-width:769px) {
  .about-group__pict1 {
    position: absolute;
    width: 37.5rem;
    left: 0;
    top: 0;
  }
}

.about-group__text {
  line-height: 2.4;
}

.about-group__tabi {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  width: 16rem;
}
@media print, screen and (min-width:769px) {
  .about-group__tabi {
    width: 29rem;
    margin-bottom: 4.5rem;
  }
}

.about-group__btn {
  margin-top: 5rem;
}
@media print, screen and (min-width:769px) {
  .about-group__btn {
    margin-top: 8rem;
    width: 52.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-group__bears {
  width: 13.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
@media print, screen and (min-width:769px) {
  .about-group__bears {
    width: 27.8rem;
    margin-bottom: 4.5rem;
  }
}

/**
  会社概要
 */
.about-company {
  background-color: #EDEDED;
  padding: 5rem 1.5rem;
}
@media print, screen and (min-width:769px) {
  .about-company {
    padding: 15rem 0;
  }
}

.about__table2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about__table2 > dt, .about__table2 > dd {
  padding-bottom: 0.3rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.about__table2 > dt {
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26%;
  text-align: center;
}
.about__table2 > dd {
  border-bottom: 1px solid #777676;
  width: 71%;
}
.about__table2 ul.dot > li {
  position: relative;
  padding-left: 1em;
}
.about__table2 ul.dot > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.about__table2 ul > li {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.about__table2 ul > li:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width:769px) {
  .about__table2 {
    width: 85rem;
    margin-left: auto;
    margin-right: auto;
  }
  .about__table2 > dt, .about__table2 > dd {
    padding-bottom: 1rem;
    margin-bottom: 3rem;
  }
  .about__table2 > dt {
    width: 15rem;
  }
  .about__table2 > dd {
    width: 65rem;
  }
}

.about-history {
  padding: 5rem 1.5rem;
}
@media print, screen and (min-width:769px) {
  .about-history {
    padding: 15rem 0;
  }
}

.about-history__note {
  text-align: right;
  font-size: 1rem;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width:769px) {
  .about-history__note {
    width: 85rem;
    font-size: 1.3rem;
  }
}

.business-main {
  margin-bottom: 8rem;
}
@media print, screen and (min-width:769px) {
  .business-main {
    display: flex;
    margin-bottom: 15rem;
  }
}

.business-main__pict {
  margin-bottom: 3rem;
}
.business-main__pict img {
  display: block;
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width:769px) {
  .business-main__pict {
    margin-bottom: 0;
    width: 50%;
  }
  .business-main__pict img {
    width: 51.4rem;
  }
}

@media print, screen and (min-width:769px) {
  .business-main-content {
    width: 50%;
    padding: 2rem 4rem 0;
  }
}

.business-main__catch {
  line-height: 1.75;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .business-main__catch {
    font-size: 4rem;
    margin-bottom: 3.5rem;
  }
}

.business__text {
  line-height: 2.4;
}

.business-sec {
  position: relative;
  margin-bottom: 8rem;
}
.business-sec:last-of-type {
  margin-bottom: 0;
}
@media print, screen and (min-width:769px) {
  .business-sec {
    margin-bottom: 20rem;
  }
}

.business__pict {
  display: block;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .business__pict {
    margin-bottom: 2rem;
  }
}

.business-content {
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width:769px) {
  .business-content {
    position: absolute;
    width: 50%;
    background-color: #fff;
    left: 3rem;
    bottom: -4rem;
    padding: 3rem 3rem 0;
  }
}

.business__heading {
  position: relative;
  line-height: 1.5;
  padding-left: 6rem;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  /*white-space: nowrap;*/
}
.business__heading > span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0.7rem;
  width: 4.6rem;
}
.business__heading > span img {
  width: auto;
  height: 4.6rem;
}
.business__heading small {
  display: inline-block;
  font-size: 0.6em;
  letter-spacing: 0;
  line-height: 1.5;
  white-space: nowrap;
}
@media print, screen and (min-width:769px) {
  .business__heading {
    padding-left: 10rem;
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .business__heading > span {
    width: 7rem;
    top: 0.2rem;
  }
  .business__heading > span img {
    height: 7rem;
  }
  .business__heading small {
    font-size: 0.72em;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .business__heading.--spfix {
    line-height: 1.3;
  }
  .business__heading.--spfix > span {
    top: 0.2rem;
  }
}

.business__btn {
  margin: 8rem auto;
}
.business__btn .btn-inner {
  background-color: var(--col-brand);
}
@media print, screen and (min-width:769px) {
  .business__btn {
    margin: 17rem auto;
  }
  .business__btn:hover .btn-inner {
    background-color: #B3E6EC;
    color: var(--col-brand);
  }
  .business__btn:hover .btn-inner svg {
    stroke: var(--col-brand);
  }
}

@media print, screen and (min-width:769px) {
  .brand-main {
    margin: 0 6.2rem 10rem;
  }
}

.brand-main__mv {
  display: block;
  margin-bottom: 2.5rem;
}
@media print, screen and (min-width:769px) {
  .brand-main__mv {
    margin-bottom: 8rem;
  }
}

.brand-sec {
  position: relative;
}
.brand-sec > a {
  display: block;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .brand-sec {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .brand-sec::after {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    height: 1px;
    bottom: 0;
    left: -1.5rem;
    background-color: #C9C9C9;
  }
}
@media print, screen and (min-width:769px) {
  .brand-sec {
    display: flex;
    margin-bottom: 20rem;
  }
}

.brand__pict {
  display: block;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .brand__pict {
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .brand__pict {
    width: calc(50% + 6.2rem);
    margin-left: -6.2rem;
    overflow: hidden;
    background-color: #000;
  }
  .brand__pict img {
    transition: 0.25s;
  }
  .brand__pict:hover img {
    opacity: 0.8;
    transform: scale3d(1.05, 1.05, 1);
  }
}

.brand__heading {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .brand__heading {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
}

.brand__text {
  line-height: 2.1;
}
@media print, screen and (min-width:769px) {
  .brand__text {
    line-height: 2.4;
  }
}

.brand-content {
  position: relative;
}
@media print, screen and (min-width:769px) {
  .brand-content {
    width: 50%;
    padding: 0 5rem 0 4rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .brand-sec__btn {
    margin-top: 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .brand-sec__btn {
    position: absolute;
    bottom: 0;
    width: calc(100% - 9rem);
  }
}

/**
 brand section 反転
 */
@media print, screen and (min-width:769px) {
  .brand-sec.--invert {
    flex-direction: row-reverse;
  }
  .brand-sec.--invert .brand__pict {
    width: calc(50% + 6.2rem);
    margin-left: auto;
    margin-right: -6.2rem;
  }
  .brand-sec.--invert .brand-content {
    padding: 0 4rem 0 5rem;
  }
}

/**
  シンプル2カラムレイアウト用コンテナ
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .brand-container {
    margin-bottom: 4rem;
  }
}
@media print, screen and (min-width:769px) {
  .brand-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 5rem;
  }
}

@media print, screen and (min-width:769px) {
  .brand-sec.--simple {
    display: block;
    margin-bottom: 13rem;
    width: calc(50% - 4rem);
  }
  .brand-sec.--simple .brand__pict {
    width: auto;
    margin: 0 0 3rem;
  }
  .brand-sec.--simple .brand-content {
    width: auto;
    margin: 0;
    padding: 0 0 9rem;
  }
  .brand-sec.--simple .brand-sec__btn {
    width: 100%;
  }
}

/**
  その他
 */
@media print, screen and (min-width:769px) {
  .brand-sec2 {
    padding: 0 5rem;
  }
}

.brand-others {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .brand-others {
    justify-content: space-between;
  }
  .brand-others > li {
    width: 48%;
    margin-bottom: 3rem;
  }
}
@media print, screen and (min-width:769px) {
  .brand-others > li {
    width: 18.8%;
    margin-right: 1.4%;
  }
  .brand-others > li:nth-child(5n) {
    margin-right: 0;
  }
}

.brand-others__pict {
  margin-bottom: 1.5rem;
  overflow: hidden;
}
@media print, screen and (min-width:769px) {
  .brand-others__pict {
    margin-bottom: 2rem;
    background-color: #000;
  }
  .brand-others__pict img {
    transition: 0.25s;
  }
  .brand-others__pict a:hover img {
    opacity: 0.8;
    transform: scale3d(1.05, 1.05, 1);
  }
}

.brand__heading2 {
  line-height: 1.3;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .brand__heading2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.brand-others__text {
  font-size: 1rem;
  line-height: 1.3;
}
@media print, screen and (min-width:769px) {
  .brand-others__text {
    font-size: 1.4rem;
  }
}

.brand-others__link {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5em;
  margin-top: 1rem;
}
.brand-others__link::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #000;
  transform: scale3d(1, 1, 1);
  transform-origin: 0 0;
  transition: transform 0.25s;
}
.brand-others__link:hover::after {
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 0;
}
@media print, screen and (min-width:769px) {
  .brand-others__link {
    margin-top: 2rem;
  }
}

.brand__btn {
  margin: 8rem auto;
}
.brand__btn .btn-inner {
  background-color: var(--col-about);
}
@media print, screen and (min-width:769px) {
  .brand__btn {
    margin: 17rem auto;
  }
  .brand__btn:hover .btn-inner {
    background-color: #def3a7;
    color: var(--col-about);
  }
  .brand__btn:hover .btn-inner svg {
    stroke: var(--col-about);
  }
}

.solution-main {
  text-align: center;
  padding-bottom: 7rem;
}
@media print, screen and (min-width:769px) {
  .solution-main {
    margin: 0 6.2rem;
    padding-bottom: 16rem;
  }
}

.solution-main__mv {
  display: block;
  margin-bottom: 5rem;
}
@media print, screen and (min-width:769px) {
  .solution-main__mv {
    margin-bottom: 8rem;
  }
}

.solution-main__catch {
  font-size: 2.2rem;
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .solution-main__catch {
    font-size: 4rem;
    margin-bottom: 6rem;
  }
}

.solution-main__text {
  line-height: 2.4;
  margin-bottom: 2.5em;
}
.solution-main__text:last-of-type {
  margin-bottom: 0;
}

/**
 solution section 共通
 */
.solution-sec {
  position: relative;
  padding-top: 5rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .solution-sec {
    margin: 0 1.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .solution-sec {
    max-width: 140.4rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 8rem;
  }
}

.solution-sec-inner {
  position: relative;
  z-index: 3;
}
@media print, screen and (min-width:769px) {
  .solution-sec-inner {
    padding: 0 12.4rem;
  }
}

.solution-sec__heading {
  position: relative;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  padding-left: 1.5rem;
  font-size: 2rem;
  line-height: 1.5;
}
.solution-sec__heading img {
  display: block;
  width: auto;
  height: 3.6rem;
  margin-bottom: -1rem;
  margin-left: -1.5rem;
}
.solution-sec__heading small {
  display: block;
  margin-bottom: 0.6em;
  font-size: 1.3rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .solution-sec__heading {
    margin-left: -1.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .solution-sec__heading {
    padding-left: 12.4rem;
    font-size: 3.2rem;
  }
  .solution-sec__heading small {
    font-size: 2.5rem;
  }
  .solution-sec__heading img {
    height: 9.4rem;
    margin-bottom: -2rem;
    margin-left: -12.4rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .solution-sec__heading.--line2-sp img {
    height: 8rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .solution-sec__heading.--margin-sp img {
    margin-bottom: 3rem;
  }
}

.solution-sec__heading.--line2 img {
  height: 8.2rem;
}
@media print, screen and (min-width:769px) {
  .solution-sec__heading.--line2 img {
    height: 22.4rem;
  }
}

.solution-sec__heading2 {
  color: var(--col-solution);
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  line-height: 1.75;
  font-size: 1.8rem;
}
.solution-sec__heading2 small {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.4rem;
}
@media print, screen and (min-width:769px) {
  .solution-sec__heading2 {
    font-size: 2.5rem;
  }
  .solution-sec__heading2 small {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
}

.solution__text {
  line-height: 2.2;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media print, screen and (min-width:769px) {
  .solution__text {
    line-height: 2.5;
  }
}

/**
  サポートスタイル
 */
.solution-style {
  background-color: #F4F4F4;
  padding-bottom: 6rem;
}
@media print, screen and (min-width:769px) {
  .solution-style {
    padding: 12rem 0;
  }
}

@media print, screen and (min-width:769px) {
  .solution-container {
    display: flex;
    justify-content: space-between;
    padding: 0 6rem;
  }
}

@media print, screen and (min-width:769px) {
  .solution-container.--invert {
    flex-direction: row-reverse;
  }
}

@media print, screen and (min-width:769px) {
  .solution-content {
    width: 46%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .soultion-style__pict {
    margin: 0 2rem 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .soultion-style__pict {
    width: 46%;
  }
}

/**
  私達の強み
 */
.solution-strong {
  padding-bottom: 6rem;
}
@media print, screen and (min-width:769px) {
  .solution-strong {
    padding-bottom: 8rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .soultion-strong__pict {
    margin: 0 3rem 1rem;
  }
}
@media print, screen and (min-width:769px) {
  .soultion-strong__pict {
    width: 46%;
  }
}

/**
  多彩なサービスメニュー
 */
.solution-service {
  background-color: #F4F4F4;
}
@media print, screen and (min-width:769px) {
  .solution-service {
    padding: 16rem 0;
  }
}

.solution-service-list {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .solution-service-list > li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4rem;
  }
  .solution-service-list > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media print, screen and (min-width:769px) {
  .solution-service-list > li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 8rem;
  }
  .solution-service-list > li:nth-child(3n) {
    margin-right: 0;
  }
}

.solution-service__pict {
  margin-bottom: 1rem;
}
@media print, screen and (min-width:769px) {
  .solution-service__pict {
    margin-bottom: 1rem;
  }
}

.solution-service__heading {
  line-height: 1.5;
  font-size: 1.6rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .solution-service__heading {
    font-size: 2rem;
  }
}

.solution-service__text {
  line-height: 2;
  font-size: 1.1rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media print, screen and (min-width:769px) {
  .solution-service__text {
    font-size: 1.4rem;
  }
}

.solution-service__link {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5em;
  margin-top: 1em;
}
.solution-service__link::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #000;
  transform: scale3d(1, 1, 1);
  transform-origin: 0 0;
  transition: transform 0.25s;
}
.solution-service__link:hover::after {
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 0;
}

/**
  パートナーシップ
 */
.solution-partnership {
  padding-bottom: 6rem;
}
@media print, screen and (min-width:769px) {
  .solution-partnership {
    padding: 13rem 0 22rem;
  }
}

.solution-partnership__text {
  margin-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .solution-partnership__text {
    width: 60%;
    margin-bottom: 6rem;
  }
}

/*.solution-partnership__heading {
  @include mq-sp {
    text-align: center;
    font-size: 1.8rem;
  }
  @include mq-pc {
    font-size: 2rem;
  }
}*/
.solution-partnership__table {
  width: 100%;
  border-top: 1px solid var(--col-solution);
  border-left: 1px solid var(--col-solution);
}
.solution-partnership__table th, .solution-partnership__table td {
  border-right: 1px solid var(--col-solution);
  border-bottom: 1px solid var(--col-solution);
  padding: 0.8rem 0.3rem;
  line-height: 1.75;
  font-size: 1.2rem;
}
.solution-partnership__table small {
  margin-top: 1rem;
  display: block;
  line-height: 1.5 !important;
}
.solution-partnership__table thead th {
  color: #fff;
}
.solution-partnership__table thead th:nth-child(2) {
  background-color: #909090;
}
.solution-partnership__table thead th:nth-child(3) {
  background-color: var(--col-solution);
}
.solution-partnership__table ul.dot > li {
  position: relative;
  padding-left: 1em;
}
.solution-partnership__table ul.dot > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.solution-partnership__table ul > li {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.solution-partnership__table ul > li:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width:769px) {
  .solution-partnership__table th, .solution-partnership__table td {
    padding: 1.5rem 2.5rem;
    text-align: center;
    font-size: 1.6rem;
  }
  .solution-partnership__table ul.col2 {
    -moz-column-count: 2;
         column-count: 2;
  }
  .solution-partnership__table ul > li {
    margin-bottom: 1.5rem;
  }
}

/**
  店舗開発の流れ
 */
.solution-flow {
  background-color: #F4F4F4;
  padding-bottom: 10rem;
}
@media print, screen and (min-width:769px) {
  .solution-flow {
    padding: 4rem 0 14rem;
  }
}

.solution-flow__text2 {
  line-height: 2;
  font-size: 1.2rem;
}
@media print, screen and (min-width:769px) {
  .solution-flow__text2 {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}

@media print, screen and (min-width:769px) {
  .solution-flow-list {
    width: 91rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.solution-flow-list > li {
  border-bottom: 2px solid var(--col-solution);
  position: relative;
  padding-bottom: 4rem;
  margin-bottom: 7rem;
}
.solution-flow-list > li::before, .solution-flow-list > li::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 36px 47px 0 47px;
  border-color: #0073a4 transparent transparent transparent;
  bottom: -36px;
  left: calc(50% - 47px);
}
.solution-flow-list > li::before {
  z-index: 2;
  bottom: -34px;
  border-color: #F4F4F4 transparent transparent transparent;
}
.solution-flow-list > li:last-child {
  margin-bottom: 0;
}
.solution-flow-list > li:last-child::before, .solution-flow-list > li:last-child::after {
  display: none;
}
@media print, screen and (min-width:769px) {
  .solution-flow-list > li {
    display: flex;
    flex-direction: row-reverse;
    padding-bottom: 5rem;
    margin-bottom: 8rem;
  }
  .solution-flow-list > li::before, .solution-flow-list > li::after {
    border-width: 46px 63px 0 63px;
    bottom: -46px;
    left: calc(50% - 63px);
  }
  .solution-flow-list > li::before {
    bottom: -44px;
  }
}

.solution-flow-content {
  position: relative;
}
@media print, screen and (min-width:769px) {
  .solution-flow-content {
    padding-left: 20rem;
    width: 61rem;
    padding-right: 5rem;
  }
}

.solution-flow__num {
  position: absolute;
  left: 0;
  width: 5rem;
  height: 3.6rem;
}
.solution-flow__num img {
  width: auto;
  height: 3.6rem;
}
@media print, screen and (min-width:769px) {
  .solution-flow__num {
    height: 100%;
    width: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .solution-flow__num img {
    height: 6.7rem;
  }
}

.solution-flow__heading {
  color: var(--col-solution);
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  line-height: 1.5;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .solution-flow__heading {
    padding-left: 4rem;
    font-size: 1.8rem;
    height: 4rem;
    display: flex;
    align-items: flex-end;
    margin-bottom: 1rem;
    white-space: nowrap;
  }
}
@media print, screen and (min-width:769px) {
  .solution-flow__heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .solution-flow__pict {
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .solution-flow__pict {
    width: 30rem;
  }
}

.solution-flow-memo {
  border-bottom: 2px solid var(--col-solution);
  padding: 4rem 0;
}
@media print, screen and (min-width:769px) {
  .solution-flow-memo {
    width: 91rem;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 0;
    display: flex;
  }
}

.solution-flow-memo__heading {
  font-size: 2rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  color: var(--col-solution);
  margin-bottom: 1rem;
}
@media print, screen and (min-width:769px) {
  .solution-flow-memo__heading {
    margin-bottom: 0;
    font-size: 2.5rem;
    width: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.solution-flow-memo__list > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.75;
}
.solution-flow-memo__list > li::before {
  position: absolute;
  left: 0;
  content: "●";
  color: var(--col-solution);
}
.solution-flow-memo__list > li:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width:769px) {
  .solution-flow-memo__list {
    width: 71rem;
  }
  .solution-flow-memo__list > Li {
    font-size: 1.4rem;
  }
}

/**
  ご契約までの流れ
 */
@media print, screen and (min-width:769px) {
  .solution-contract {
    padding: 14rem 0 18rem;
  }
}

@media print, screen and (min-width:769px) {
  .solution-contract-list {
    display: flex;
    justify-content: space-between;
  }
}

.solution-contract-list > li {
  position: relative;
  background-color: #D2E6EF;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .solution-contract-list > li {
    padding: 3.5rem 1.5rem;
    margin-bottom: 6rem;
  }
  .solution-contract-list > li::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4rem calc(50vw - 1.5rem) 0 calc(50vw - 1.5rem);
    border-color: #D2E6EF transparent transparent transparent;
    position: absolute;
    bottom: -3.9rem;
    left: 0;
    right: 0;
  }
}
@media print, screen and (min-width:769px) {
  .solution-contract-list > li {
    width: 34%;
    height: 50rem;
    padding-right: 9rem;
    padding-left: 3rem;
  }
  .solution-contract-list > li::before, .solution-contract-list > li::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 9rem 25rem 0;
    right: 0;
    border-color: transparent #fff transparent transparent;
  }
  .solution-contract-list > li::before {
    top: 0;
  }
  .solution-contract-list > li::after {
    transform: scale3d(1, -1, 1);
    bottom: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .solution-contract-list > li:last-child::after {
    display: none;
  }
}
@media print, screen and (min-width:769px) {
  .solution-contract-list > li:last-child {
    width: 30%;
    padding-right: 3rem;
  }
  .solution-contract-list > li:last-child::before, .solution-contract-list > li:last-child::after {
    display: none;
  }
}

.solution-contract__num img {
  width: auto;
  height: 2.9rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .solution-contract__num {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .solution-contract__num {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0 2rem;
  }
  .solution-contract__num img {
    height: 3.6rem;
  }
}

.solution-contract__pict {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width:769px) {
  .solution-contract__pict {
    margin-bottom: 1.2rem;
    width: 24rem;
  }
}

.solution-contract__heading {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .solution-contract__heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .solution-contract-list > li .solution__text {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .solution-contract-list > li .solution__text {
    line-height: 2;
  }
}

/**
  よくある質問
 */
.solution-qa {
  background-color: #F4F4F4;
  padding-bottom: 6rem;
}
@media print, screen and (min-width:769px) {
  .solution-qa {
    padding: 4rem 0 10rem;
  }
}

.solution-qa-list {
  margin-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .solution-qa-list {
    margin-bottom: 9rem;
  }
}

.solution-qa-list > li {
  border: 1px solid #808080;
  background-color: #fff;
  margin-bottom: 1.5rem;
  padding: 1rem 2rem;
}
@media print, screen and (min-width:769px) {
  .solution-qa-list > li {
    padding: 2rem 3rem;
    margin-bottom: 2rem;
  }
}

.solution-qa__trigger {
  position: relative;
  line-height: 1.5;
  padding-right: 3em;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  min-height: 3rem;
}
.solution-qa__trigger::before, .solution-qa__trigger::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 1.8rem;
  height: 0.2rem;
  background-color: #808080;
}
.solution-qa__trigger::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.solution-qa__trigger.is-active::after {
  transform: rotate(0deg);
}
@media print, screen and (min-width:769px) {
  .solution-qa__trigger {
    font-size: 2rem;
    padding-right: 3em;
    min-height: 3rem;
  }
  .solution-qa__trigger::before, .solution-qa__trigger::after {
    width: 3rem;
  }
}

.solution-qa__a {
  padding: 3rem 0 1rem;
}
.solution-qa__a p {
  line-height: 1.75;
  margin-bottom: 0.5em;
}

.solution-qa__btn .btn-inner {
  background-color: #fff;
  height: 6rem;
}
@media print, screen and (min-width:769px) {
  .solution-qa__btn .btn-inner {
    height: 10rem;
    font-size: 2rem;
  }
}

/**
  資料のご請求
 */
.solution-require {
  padding-bottom: 8rem;
}
@media print, screen and (min-width:769px) {
  .solution-require {
    padding: 14rem 0;
  }
}

.solution-require__btn .btn-inner {
  background-color: var(--col-solution);
  color: #fff;
  height: 6rem;
}
@media print, screen and (min-width:769px) {
  .solution-require__btn .btn-inner {
    height: 10rem;
    font-size: 2rem;
    border: 1px solid var(--col-solution);
  }
  .solution-require__btn:hover .btn-inner {
    background-color: #fff;
    color: var(--col-solution);
  }
}

.sns-list {
  display: flex;
  justify-content: space-between;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .sns-list.--header {
    width: 23rem;
    margin-top: 3.6rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.sns-list > li {
  width: 2.4rem;
}
@media print, screen and (min-width:769px) {
  .sns-list > li {
    width: 3rem;
    transition: 0.25s opacity;
  }
  .sns-list > li:hover {
    opacity: 0.4;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .sns-list.--footer {
    width: 22rem;
    margin: 2rem auto;
  }
  .sns-list.--footer > li {
    width: 2.2rem;
  }
}
@media print, screen and (min-width:769px) {
  .sns-list.--footer > li {
    width: 2.6rem;
  }
}

.bottom-cta {
  background: url(../img/bottom_cta_p01_sp.jpg) no-repeat center center/cover;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .bottom-cta {
    padding: 5.5rem 0;
  }
}
@media print, screen and (min-width:769px) {
  .bottom-cta {
    background-image: url(../img/bottom_cta_p01.jpg);
    height: 46rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media print, screen and (min-width:769px) {
  .bottom-cta-inner {
    display: flex;
    width: 100%;
  }
}

.bottom-cta__heading {
  width: 16.4rem;
  margin-bottom: 2.5rem;
}
@media print, screen and (min-width:769px) {
  .bottom-cta__heading {
    width: 24.4rem;
    margin-bottom: 4rem;
  }
}

.bottom-cta__text {
  color: #fff;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .bottom-cta__text {
    margin-bottom: 3.6rem;
    line-height: 1.9;
  }
}
@media print, screen and (min-width:769px) {
  .bottom-cta__text {
    line-height: 2.5;
  }
}

@media print, screen and (min-width:769px) {
  .bottom-cta-box {
    width: 50%;
  }
}

@media print, screen and (min-width:769px) {
  .bottom-cta-box.--btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.bottom-cta__button .btn-inner {
  height: 9.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  color: #4D4D4D;
}
.bottom-cta__button .icon-arrow {
  position: absolute;
  width: 0.9rem;
  height: 1.6rem;
  stroke: #4D4D4D;
  right: 3rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .bottom-cta__button {
    width: 23.4rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width:769px) {
  .bottom-cta__button .btn-inner {
    font-size: 2.3rem;
    width: 38rem;
    height: 15rem;
    transition: 0.25s;
  }
  .bottom-cta__button .icon-arrow {
    width: 1.2rem;
    height: 2.4rem;
    right: 4.5rem;
    transition: 0.25s;
  }
  .bottom-cta__button:hover .btn-inner {
    background-color: #4D4D4D;
    color: #fff;
  }
  .bottom-cta__button:hover .icon-arrow {
    stroke: #fff;
  }
}

/**
  projectのフォーム用パーツ
 */
.form-table > dt, .form-table > dd {
  line-height: 1.75;
  margin-bottom: 1rem;
}
.form-table > dd {
  margin-bottom: 3rem;
}
@media print, screen and (min-width:769px) {
  .form-table > dt {
    margin-bottom: 1.5rem;
  }
  .form-table > dd {
    margin-bottom: 4rem;
  }
}

.form-table.--confirm > dt, .form-table.--confirm > dd {
  margin-bottom: 0.3em;
}
.form-table.--confirm > dd {
  margin-bottom: 2em;
}

.form-table > dt.layouter {
  width: 18rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media print, screen and (min-width:769px) {
  .form-table > dt.layouter {
    width: 25rem;
  }
}

.form-table.--confirm > dt,
.form-table.--confirm > dd {
  margin-top: 0;
}

/**
  テーブル内の要素
 */
.form-table .required {
  background-color: #CA3F3D;
  display: inline-block;
  color: #fff;
  margin-left: 1em;
  padding: 0.1rem 0.7rem;
  font-size: 1.1rem;
}
@media print, screen and (min-width:769px) {
  .form-table .required {
    padding: 0.2rem 1rem;
    font-size: 1.3rem;
    margin-left: 2em;
  }
}

.form-table br + .required {
  margin-left: 0;
  margin-top: 1rem;
}

.form-table .error input,
.form-table .error textarea {
  background-color: #ffdddd !important;
  border: 1px solid #ff0000 !important;
}

.form-table .error b {
  display: block;
  color: #ff0000;
  margin-top: 2em;
  line-height: 1.3;
  font-size: 0.8em;
}

.form-table label {
  display: inline-block;
}
.form-table .note {
  font-size: 0.6em;
  line-height: 1.3;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .form-table .note {
    display: block;
    margin-top: 1em;
  }
}

@media print, screen and (min-width:769px) {
  .form-table input + .note {
    margin-left: 1em;
  }
}

.form-radio-list > li {
  margin-bottom: 1.5em;
  position: relative;
}
.form-radio-list > li input {
  left: 0;
  top: 0;
}
.form-radio-list > li label {
  position: absolute;
  line-height: 1.5;
  margin-top: 0.2rem;
}

.form-cb-list > li {
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 1rem;
}
@media print, screen and (min-width:769px) {
  .form-cb-list {
    margin-top: 1rem;
  }
}

.form-postal-wrap {
  display: flex;
}
@media print, screen and (min-width:769px) {
  .form-postal-input {
    width: 60%;
  }
}

.form-postal__btn {
  background-color: #393939;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem !important;
  margin: 1rem 0 0 2rem;
  height: 2.8rem;
  width: 6rem;
}
@media print, screen and (min-width:769px) {
  .form-postal__btn {
    width: 8rem;
    height: 3rem;
    margin: 1rem 0 0 2rem;
    font-size: 1.5rem !important;
    transition: 0.25s;
  }
  .form-postal__btn:hover {
    background-color: #ddd;
  }
}

.form-btns {
  margin-top: 6rem;
}
.form-btns > li {
  margin-bottom: 2rem;
}
.form-btns > li .btn-a {
  width: 100%;
}
.form-btns > li .btn-a .btn-inner {
  height: 6rem;
}
.form-btns > li .btn-a.--small .btn-inner {
  height: 4rem;
}
.form-btns > li:last-child {
  margin-bottom: 0;
}
.form-btns > li.is-disabled {
  pointer-events: none;
  opacity: 0.3;
}
@media print, screen and (min-width:769px) {
  .form-btns {
    margin: 10rem auto 0;
    width: 50rem;
  }
  .form-btns > li {
    margin-bottom: 3rem;
  }
  .form-btns > li .btn-a .btn-inner {
    display: flex;
    height: 10rem;
  }
  .form-btns > li .btn-a.--small .btn-inner {
    height: 6rem;
  }
  .form-btns > li .icon-arrow {
    width: 1.4rem;
    height: 2.8rem;
    right: 2.8rem;
    top: calc(50% - 1.4rem);
  }
  .form-btns > li:hover .icon-arrow {
    stroke: #fff;
  }
}

.form-privacy__text {
  overflow: auto;
  padding: 1rem;
  border: 1px solid #707070;
  height: 20rem;
  margin-bottom: 3rem;
}
.form-privacy__text p {
  line-height: 1.75;
  margin-bottom: 1em;
}
@media print, screen and (min-width:769px) {
  .form-privacy__text {
    padding: 2rem;
    height: 28rem;
    margin-bottom: 4rem;
  }
}

.form-privacy__agree {
  display: flex;
  align-items: center;
}
.form-privacy__agree label {
  margin-left: 0.5em;
}
.blog-wrap {
  padding-bottom: 8rem;
}
@media print, screen and (min-width:769px) {
  .blog-wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .blog-main {
    margin-bottom: 8rem;
  }
}
@media print, screen and (min-width:769px) {
  .blog-main {
    width: 67.8%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .blog-sp-category-area {
    margin-bottom: 7rem;
  }
}

.blog-archive__heading {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  line-height: 1.5;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  font-size: 2rem;
  color: var(--col-blog);
  margin-bottom: 4rem;
}
.blog-archive__heading.--hash::before {
  content: "#";
}
@media print, screen and (min-width:769px) {
  .blog-archive__heading {
    display: flex;
    align-items: flex-end;
    margin-left: 6.2rem;
    margin-right: 6.2rem;
    margin-bottom: 6rem;
    font-size: 3.8rem;
  }
}

.blog__page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog__page-nav > li {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  font-size: 1.3rem;
}
.blog__page-nav > li > a {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5em;
}
.blog__page-nav > li > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #000;
  transform: scale3d(1, 1, 1);
  transform-origin: 0 0;
  transition: transform 0.25s;
}
.blog__page-nav > li > a:hover::after {
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 0;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .blog__page-nav {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .blog__page-nav > li:nth-child(2) {
    margin-left: -2.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .blog__page-nav {
    width: 62rem;
    margin-left: auto;
    margin-right: auto;
  }
  .blog__page-nav > li {
    font-size: 1.8rem;
  }
  .blog__page-nav > li:nth-child(2) {
    margin-left: -3.5rem;
  }
}

/**
  波ラップ
 */
.blog-wave-wrap {
  position: relative;
  background-color: #F4ECE1;
}
.blog-wave-wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1.5rem;
  background: url(../img/wave.svg) repeat-x center top/auto 1.55rem;
  top: -1.5rem;
  left: 0;
  -webkit-animation: anim-wave-sp 4s infinite linear;
          animation: anim-wave-sp 4s infinite linear;
}
.blog-wave-wrap::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1.5rem;
  background: url(../img/wave.svg) repeat-x center top/auto 1.55rem;
  bottom: -1.5rem;
  left: 0;
  transform: rotate(180deg);
  -webkit-animation: anim-wave-sp 4s infinite linear;
          animation: anim-wave-sp 4s infinite linear;
}
@media print, screen and (min-width:769px) {
  .blog-wave-wrap::before {
    height: 2rem;
    background: url(../img/wave.svg) repeat-x center top/auto 2rem;
    top: -2rem;
    -webkit-animation: anim-wave 2s infinite linear;
            animation: anim-wave 2s infinite linear;
  }
  .blog-wave-wrap::after {
    height: 2rem;
    background: url(../img/wave.svg) repeat-x center top/auto 2rem;
    bottom: -2rem;
    -webkit-animation: anim-wave 2s infinite linear;
            animation: anim-wave 2s infinite linear;
  }
}

@-webkit-keyframes anim-wave {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -12.4rem 0;
  }
}

@keyframes anim-wave {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -12.4rem 0;
  }
}
@-webkit-keyframes anim-wave-sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -9.3rem 0;
  }
}
@keyframes anim-wave-sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -9.3rem 0;
  }
}
/**
  recommend
 */
.blog-recommend {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .blog-recommend {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
}

.blog-recommend__heading {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 16rem;
  margin-bottom: 4rem;
}
.blog-recommend__heading::before, .blog-recommend__heading::after {
  content: "";
  display: block;
  position: absolute;
  width: 5rem;
  height: 0.2rem;
  top: -0.6rem;
  left: -3rem;
  background-color: var(--col-blog);
  transform: rotate(50deg);
  transform-origin: 0 0;
}
.blog-recommend__heading::after {
  transform: rotate(-50deg);
  left: auto;
  right: -3rem;
  transform-origin: 100% 0;
}
@media print, screen and (min-width:769px) {
  .blog-recommend__heading {
    width: 25.8rem;
    margin-bottom: 10rem;
  }
  .blog-recommend__heading::before, .blog-recommend__heading::after {
    width: 8rem;
    left: -8rem;
    top: -1.4rem;
    height: 0.3rem;
  }
  .blog-recommend__heading::after {
    left: auto;
    right: -8rem;
  }
}

.blog-recommend__btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 6rem;
  width: 18rem;
}
.blog-recommend__btn > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--col-blog);
  height: 3.5rem;
  color: #fff;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .blog-recommend__btn {
    width: 23.6rem;
  }
  .blog-recommend__btn > a {
    height: 5.4rem;
  }
}

/**
  ranking
 */
.blog-ranking {
  padding-top: 6rem;
  padding-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .blog-ranking {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.blog-ranking__heading {
  margin-left: auto;
  margin-right: auto;
  width: 11.2rem;
  margin-bottom: 5rem;
}
@media print, screen and (min-width:769px) {
  .blog-ranking__heading {
    width: 18rem;
    margin-bottom: 8rem;
  }
}

.blog-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-list > li {
  position: relative;
  width: 47.4%;
  margin-bottom: 4.5rem;
}
@media print, screen and (min-width:769px) {
  .blog-list > li {
    margin-bottom: 9rem;
  }
}

.blog-list__pict {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.blog-list__pict::before {
  float: left;
  content: "";
  padding-top: 69.44%;
}
.blog-list__pict::after {
  display: block;
  content: "";
  clear: both;
}
.blog-list__pict > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-list__pict a {
  display: block;
  position: relative;
  aspect-ratio: 3/2;
}
.blog-list__pict a::before {
  float: left;
  content: "";
  padding-top: 69.44%;
}
.blog-list__pict a::after {
  display: block;
  content: "";
  clear: both;
}
.blog-list__pict a > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-list__pict img,
.blog-list__pict picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.25s;
}
@media print, screen and (min-width:769px) {
  .blog-list__pict {
    margin-bottom: 3rem;
    background-color: #000;
  }
  .blog-list__pict img {
    transform: scale3d(1.01, 1.01, 1);
  }
  .blog-list__pict:hover img {
    opacity: 0.8;
    transform: scale3d(1.05, 1.05, 1);
  }
}

.blog-list-meta {
  display: flex;
  margin-bottom: 1.5rem;
}
.blog-list-meta > p {
  letter-spacing: 0;
  font-size: 1rem;
}
@media print, screen and (min-width:769px) {
  .blog-list-meta {
    margin-bottom: 2rem;
  }
  .blog-list-meta > p {
    font-size: 1.5rem;
  }
  .blog-list-meta a {
    transition: 0.25s opacity;
  }
  .blog-list-meta a:hover {
    opacity: 0.6;
  }
}

.blog-list__date {
  position: relative;
  padding-right: 1rem;
  margin-right: 1rem;
}
.blog-list__date:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #000;
}
@media print, screen and (min-width:769px) {
  .blog-list__date {
    margin-right: 2rem;
    padding-right: 2rem;
  }
}

.blog-list__heading {
  font-size: 1.3rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  line-height: 1.75;
}
@media print, screen and (min-width:769px) {
  .blog-list__heading {
    font-size: 2rem;
    transition: 0.25s opacity;
  }
  .blog-list__heading:hover {
    opacity: 0.6;
  }
}

.blog-list__tag {
  margin-top: 1rem;
}
@media print, screen and (min-width:769px) {
  .blog-list__tag {
    margin-top: 1rem;
  }
}

.blog-list__author {
  margin-top: 1.5rem;
}
.blog-list__author > a, .blog-list__author > span {
  display: flex;
  align-items: center;
}
.blog-list__author img {
  width: 4rem;
  display: block;
  border-radius: 50%;
  margin-right: 1rem;
}
.blog-list__author span {
  color: var(--col-blog);
  font-size: 1rem;
  line-height: 1.3;
}
@media print, screen and (min-width:769px) {
  .blog-list__author {
    margin-top: 2rem;
    transition: 0.25s opacity;
  }
  .blog-list__author img {
    width: 5rem;
    margin-right: 1.5rem;
  }
  .blog-list__author span {
    font-size: 1.5rem;
  }
  .blog-list__author:hover {
    opacity: 0.6;
  }
}

/**
  トップページ カバーバージョン
 */
.blog-list.--top-blog-cover {
  display: block;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .blog-list.--top-blog-cover {
    margin-left: 0;
    margin-right: auto;
  }
  .blog-list.--top-blog-cover > li {
    width: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .blog-list.--top-blog-cover .item-wrap {
    margin-bottom: 2rem;
  }
  .blog-list.--top-blog-cover .blog-list-meta {
    margin-bottom: 1rem;
  }
  .blog-list.--top-blog-cover .blog-list__heading {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .blog-list.--top-blog-cover .blog-list__author {
    margin-top: 1rem;
  }
  .blog-list.--top-blog-cover .blog-list__pict {
    margin-right: calc(-30vw + 3rem);
  }
}
@media print, screen and (min-width:769px) {
  .blog-list.--top-blog-cover {
    margin-left: auto;
    margin-right: auto;
  }
  .blog-list.--top-blog-cover > li {
    width: auto;
    display: flex;
    justify-content: space-between;
  }
  .blog-list.--top-blog-cover .item-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 38%;
  }
  .blog-list.--top-blog-cover .blog-list__pict {
    margin-bottom: 0;
    width: 58%;
  }
  .blog-list.--top-blog-cover .blog-list__pict a {
    height: 100%;
  }
  .blog-list.--top-blog-cover .blog-list-meta {
    margin-bottom: 3rem;
  }
  .blog-list.--top-blog-cover .blog-list__heading {
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }
}

/**
  トップページ カルーセルバージョン
 */
.blog-list.--top-blog-caroucel .blog-list__author img {
  display: none;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .blog-list.--top-blog-caroucel {
    margin: 0 1.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .blog-list.--top-blog-caroucel li {
    padding: 0 3rem;
  }
  .blog-list.--top-blog-caroucel .blog-list-meta {
    margin-bottom: 1.5rem;
  }
  .blog-list.--top-blog-caroucel .blog-list-meta > p {
    font-size: 1.3rem;
  }
  .blog-list.--top-blog-caroucel .blog-list__pict {
    margin-bottom: 2rem;
  }
  .blog-list.--top-blog-caroucel .blog-list__heading {
    font-size: 1.6rem;
  }
  .blog-list.--top-blog-caroucel .blog-list__author {
    margin-top: 1.5rem;
  }
  .blog-list.--top-blog-caroucel .blog-list__author span {
    font-size: 1.3rem;
  }
}

/**
  blog top カバー バージョン
 */
.blog-list.--cover {
  margin-bottom: 4rem;
}
.blog-list.--cover > li {
  width: 100%;
  margin: 0;
}
.blog-list.--cover > li > a {
  display: block;
}
@media print, screen and (min-width:769px) {
  .blog-list.--cover {
    margin-bottom: 15rem;
  }
  .blog-list.--cover .blog-list-meta > p, .blog-list.--cover .blog-list-meta a {
    color: #fff;
  }
  .blog-list.--cover .blog-list__date::after {
    background-color: #fff;
  }
  .blog-list.--cover .blog-list__heading {
    /*width: 70%;*/
  }
  .blog-list.--cover .blog-list__heading a {
    color: #fff;
  }
  .blog-list.--cover .blog-list__pict {
    position: relative;
    margin: 0;
  }
  .blog-list.--cover .blog-list__pict::before {
    float: left;
    content: "";
    padding-top: 65.79%;
  }
  .blog-list.--cover .blog-list__pict::after {
    display: block;
    content: "";
    clear: both;
  }
  .blog-list.--cover .blog-list__pict > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-list.--cover .blog-list__pict::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 60%;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0));
  }
}

@media print, screen and (min-width:769px) {
  .cover-content {
    position: absolute;
    bottom: 0;
    padding: 2rem;
  }
}

/**
  blog single ヨコレイアウト バージョン
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .blog-list.--horizontal {
    margin-left: 5rem;
    margin-right: 5rem;
    display: block;
  }
  .blog-list.--horizontal > li {
    width: auto;
  }
  .blog-list.--horizontal .blog-list-meta {
    margin-bottom: 1rem;
  }
  .blog-list.--horizontal .blog-list__heading {
    font-size: 1.6rem;
  }
  .blog-list.--horizontal .blog-list__author {
    margin-top: 1rem;
  }
}
@media print, screen and (min-width:769px) {
  .blog-list.--horizontal {
    width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }
  .blog-list.--horizontal > li {
    width: auto;
    padding-left: 34rem;
    min-height: 20rem;
    margin-bottom: 4rem;
  }
  .blog-list.--horizontal .blog-list__pict {
    position: absolute;
    left: 0;
    top: 0;
    width: 30rem;
    /*a {
      height: 20rem;
    }*/
  }
  .blog-list.--horizontal .blog-list-meta {
    margin-bottom: 3rem;
  }
  .blog-list.--horizontal .blog-list-meta > p {
    font-size: 1.5rem;
  }
  .blog-list.--horizontal .blog-list__heading {
    margin-bottom: 3rem;
  }
  .blog-list.--horizontal .blog-list__author span {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .blog-list.--horizontal.--sp2col {
    display: flex;
    margin-left: 0;
    margin-right: 0;
  }
  .blog-list.--horizontal.--sp2col > li {
    width: 47.4%;
  }
}

/**
  blog single ranking バージョン
 */
.blog-list.--ranking > li::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 6;
  width: 3.3rem;
  height: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: var(--col-blog);
  pointer-events: none;
  color: #fff;
  font-size: 1.8rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  content: "1";
  left: -1rem;
  top: -1.32rem;
}
.blog-list.--ranking > li:nth-child(2)::before {
  content: "2";
}
.blog-list.--ranking > li:nth-child(3)::before {
  content: "3";
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .blog-list.--ranking {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    display: block;
  }
  .blog-list.--ranking > li {
    width: auto;
    padding-left: 50%;
  }
  .blog-list.--ranking .blog-list__pict {
    width: 45%;
    position: absolute;
    left: 0;
    top: 0;
  }
  .blog-list.--ranking .blog-list-meta {
    margin-bottom: 0.8rem;
  }
}
@media print, screen and (min-width:769px) {
  .blog-list.--ranking {
    width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }
  .blog-list.--ranking > li {
    width: 31%;
  }
  .blog-list.--ranking > li::before {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
    left: -2rem;
    top: -1.5rem;
  }
  .blog-list.--ranking .blog-list-meta {
    margin-bottom: 1.5rem;
  }
  .blog-list.--ranking .blog-list-meta > p {
    font-size: 1.3rem;
  }
  .blog-list.--ranking .blog-list__pict {
    margin-bottom: 2rem;
  }
  .blog-list.--ranking .blog-list__heading {
    font-size: 1.6rem;
  }
  .blog-list.--ranking .blog-list__author {
    margin-top: 1.5rem;
  }
  .blog-list.--ranking .blog-list__author span {
    font-size: 1.3rem;
  }
}

@media print, screen and (min-width:769px) {
  .blog-side {
    width: 20%;
  }
}

.blog-side__heading {
  position: relative;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
.blog-side__heading .icon-arrow {
  position: absolute;
  display: block;
  stroke: #000;
  width: 1.7rem;
  height: 0.9rem;
  right: 2rem;
  top: calc(50% - 0.45rem);
  transition: 0.3s transform;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .blog-side__heading {
    border: 1px solid #000;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blog-side__heading.is-active .icon-arrow {
    transform: rotate(180deg);
  }
}
@media print, screen and (min-width:769px) {
  .blog-side__heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    cursor: auto;
  }
  .blog-side__heading .icon-arrow {
    display: none;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .blog-side__category {
    background-color: #F4ECE1;
    border-right: 1px solid #707070;
    border-left: 1px solid #707070;
    border-bottom: 1px solid #707070;
  }
}
@media print, screen and (min-width:769px) {
  .blog-side__category {
    border-top: 1px solid #707070;
    margin-bottom: 5rem;
  }
}

.blog-side__category > li {
  border-bottom: 1px solid #707070;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
.blog-side__category > li > a {
  display: flex;
  align-items: center;
}
.blog-side__category > li.is-current {
  pointer-events: none;
}
.blog-side__category > li.is-current > a {
  background-color: var(--col-blog);
  color: #fff;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .blog-side__category > li > a {
    height: 3.5rem;
    justify-content: center;
  }
  .blog-side__category > li:last-child {
    border-bottom: none;
  }
}
@media print, screen and (min-width:769px) {
  .blog-side__category > li > a {
    height: 5rem;
    padding-left: 1.5rem;
    transition: background-color 0.25s;
  }
  .blog-side__category > li:hover > a {
    background-color: #F4ECE1;
  }
}

.blog-side__search {
  display: flex;
  position: relative;
}
.blog-side__search > input {
  width: calc(100% - 4.6rem);
  height: 5rem !important;
}
.blog-side__search > button {
  cursor: pointer;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  background-color: #fff;
}
.blog-side__search > button img {
  width: 50%;
}

.author {
  position: relative;
  background-color: #EDEDED;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  padding: 2rem 1.5rem 3rem;
}
@media print, screen and (min-width:769px) {
  .author {
    width: 90rem;
    margin-left: auto;
    margin-right: auto;
    padding: 6rem 5rem 4.5rem;
  }
}

.author__pict {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  overflow: hidden;
}
.author__pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .author__pict {
    margin-right: 1.7rem;
  }
}
@media print, screen and (min-width:769px) {
  .author__pict {
    position: absolute;
    left: 5rem;
    width: 16rem;
    height: 16rem;
  }
}

@media print, screen and (min-width:769px) {
  .author-container {
    padding-left: 20rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .author-container2 {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .author-container2 {
    transition: 0.25s opacity;
  }
  .author-container2:hover {
    opacity: 0.6;
  }
}

.author__name {
  font-size: 1.8rem;
}
.author__name > small {
  display: block;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .author__name {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .author__name > small {
    font-size: 1.3rem;
    margin-top: 1rem;
  }
}
@media print, screen and (min-width:769px) {
  .author__name {
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
  }
  .author__name > small {
    font-size: 1.2rem;
    margin-left: 2rem;
  }
}

.author__meta > dt, .author__meta > dd {
  line-height: 1.5;
  letter-spacing: 0.035em;
}
.author__meta > dt {
  color: var(--col-blog);
  font-size: 1rem;
}
.author__meta > dd {
  font-size: 1.3rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .author__meta {
    margin-bottom: 1.5rem;
  }
  .author__meta > dd {
    margin-bottom: 0.8rem;
  }
  .author__meta > dd:last-of-type {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width:769px) {
  .author__meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .author__meta > dt, .author__meta > dd {
    font-size: 1.4rem;
    margin-bottom: 0.6em;
  }
  .author__meta > dt:last-of-type, .author__meta > dd:last-of-type {
    margin-bottom: 0;
  }
  .author__meta > dt {
    width: 12rem;
  }
  .author__meta > dd {
    width: calc(100% - 12rem);
  }
}

.author__summary {
  line-height: 2.1;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
@media print, screen and (min-width:769px) {
  .author__summary {
    line-height: 1.75;
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
  }
}

.author__link {
  text-align: center;
  font-size: 1.2rem;
}
.author__link > a {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5em;
}
.author__link > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #000;
  transform: scale3d(1, 1, 1);
  transform-origin: 0 0;
  transition: transform 0.25s;
}
.author__link > a:hover::after {
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 0;
}
@media print, screen and (min-width:769px) {
  .author__link {
    text-align: right;
    font-size: 1.6rem;
  }
}

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

.tag-list > li {
  margin-bottom: 0.5em;
  margin-right: 0.5em;
}
.tag-list > li > a, .tag-list > li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDEDED;
  border-radius: 3rem;
  font-size: 1rem;
  height: 2.3rem;
  color: #4D4D4D;
  padding: 0 1rem;
}
.tag-list > li > a::before, .tag-list > li > span::before {
  content: "#";
}
@media print, screen and (min-width:769px) {
  .tag-list > li > a, .tag-list > li > span {
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 1.2rem;
  }
}

/**
  blog side バージョン
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .tag-list.--blog-side > li > a, .tag-list.--blog-side > li > span {
    height: 3rem;
    font-size: 1.2rem;
    padding: 0 1.5rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .share {
    border-top: 1px solid #C9C9C9;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
  }
}
@media print, screen and (min-width:769px) {
  .share {
    position: absolute;
    width: 7.6rem;
    left: calc(50% + 48rem);
    height: 28rem;
    bottom: 0;
  }
  .share.is-fixed {
    position: fixed;
    bottom: auto;
    top: calc(50vh - 14rem);
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .share__heading {
    width: 9rem;
  }
}
@media print, screen and (min-width:769px) {
  .share__heading {
    margin-bottom: 2.5rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .share__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 9rem);
    margin-bottom: 2rem;
    padding: 0 2rem;
  }
  .share__list > li {
    width: 2.4rem;
  }
}
@media print, screen and (min-width:769px) {
  .share__list {
    width: 2.4rem;
    margin-left: auto;
    margin-right: auto;
  }
  .share__list > li {
    margin-bottom: 4rem;
  }
  .share__list > li:last-child {
    margin-bottom: 0;
  }
}

.news-wrap {
  padding-bottom: 8rem;
}
@media print, screen and (min-width:769px) {
  .news-wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .news-main {
    margin-bottom: 6rem;
  }
}
@media print, screen and (min-width:769px) {
  .news-main {
    width: 67.8%;
  }
}

.news-main__heading {
  font-size: 1.8rem;
  letter-spacing: 0.075em;
  margin-bottom: 0.7em;
}
@media print, screen and (min-width:769px) {
  .news-main__heading {
    font-size: 2.5rem;
    margin-bottom: 1em;
  }
}

.news-page-nav {
  border-top: 1px solid #707070;
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
}
.news-page-nav__prev,
.news-page-nav__next,
.news-page-nav__index {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}
@media print, screen and (min-width:769px) {
  .news-page-nav__prev,
  .news-page-nav__next,
  .news-page-nav__index {
    font-size: 1.8rem;
  }
  .news-page-nav__prev > a,
  .news-page-nav__next > a,
  .news-page-nav__index > a {
    transition: 0.25s;
  }
  .news-page-nav__prev > a:hover,
  .news-page-nav__next > a:hover,
  .news-page-nav__index > a:hover {
    color: #808080;
  }
}

.news-page-nav__prev svg,
.news-page-nav__next svg {
  position: absolute;
  width: 0.9rem;
  height: 1.7rem;
  stroke: #000;
  top: -0.2rem;
}
@media print, screen and (min-width:769px) {
  .news-page-nav__prev svg,
  .news-page-nav__next svg {
    width: 1.2rem;
    height: 2.4rem;
    top: -0.2rem;
  }
}

.news-page-nav__prev {
  padding-left: 2rem;
}
.news-page-nav__prev svg {
  left: 0;
  transform: rotate(180deg);
}
@media print, screen and (min-width:769px) {
  .news-page-nav__prev {
    padding-left: 3rem;
  }
}

.news-page-nav__next {
  padding-right: 2rem;
}
.news-page-nav__next svg {
  right: 0;
}
@media print, screen and (min-width:769px) {
  .news-page-nav__next {
    padding-right: 3rem;
  }
}

@media print, screen and (min-width:769px) {
  .news-side {
    width: 22%;
  }
}

.news-side__category > li {
  margin-bottom: 1.2rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
.news-side__category > li > a,
.news-side__category > li > span {
  border: 1px solid #676767;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #808080;
  height: 3.5rem;
}
.news-side__category > li.is-current > a,
.news-side__category > li.is-current > span {
  background-color: #676767;
  color: #fff;
  pointer-events: none;
}
@media print, screen and (min-width:769px) {
  .news-side__category > li > a,
  .news-side__category > li > span {
    height: 5rem;
    transition: 0.25s;
  }
  .news-side__category > li > a:hover,
  .news-side__category > li > span:hover {
    background-color: #676767;
    color: #fff;
  }
}

.news-side__trigger {
  position: relative;
  cursor: pointer;
  padding-bottom: 1.5rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  border-bottom: 1px solid #707070;
  color: #676767;
  text-align: center;
}
.news-side__trigger .icon-arrow {
  position: absolute;
  stroke: #676767;
  width: 1.6rem;
  height: 0.9rem;
  top: 0.5rem;
  right: 0;
  transition: 0.3s transform;
}
.news-side__trigger.is-active .icon-arrow {
  transform: rotate(180deg);
}
@media print, screen and (min-width:769px) {
  .news-side__trigger {
    text-align: left;
    transition: 0.25s opacity;
  }
  .news-side__trigger:hover {
    opacity: 0.6;
  }
}

.news-side__archive > li {
  border-bottom: 1px solid #707070;
}
.news-side__archive > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #676767;
  height: 3.5rem;
}
@media print, screen and (min-width:769px) {
  .news-side__archive > li > a {
    transition: 0.25s;
  }
  .news-side__archive > li > a:hover {
    color: #808080;
  }
}

.news-list {
  border-top: 1px solid #707070;
}

.news-list > li {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid #707070;
}
@media print, screen and (min-width:769px) {
  .news-list > li {
    padding: 3rem 0;
  }
}

.news-list__heading {
  line-height: 1.75;
}
@media print, screen and (min-width:769px) {
  .news-list__heading > a {
    transition: 0.25s;
  }
  .news-list__heading > a:hover {
    color: #808080;
  }
}

.news-list__heading.--newwin::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2rem;
  background: url(../img/ic_newwin.svg) no-repeat center center/contain;
  transform: translateY(0.4em);
  margin-left: 1rem;
}
@media print, screen and (min-width:769px) {
  .news-list__heading.--newwin::after {
    width: 2rem;
    height: 2.4rem;
    transform: translateY(0.4em);
  }
}

.news-list__meta {
  display: flex;
  margin-bottom: 1rem;
}
.news-list__meta > p {
  color: #676767;
  margin-right: 3rem;
}
.news-list__meta > p:first-child {
  position: relative;
  padding-right: 2rem;
  margin-right: 2rem;
}
.news-list__meta > p:first-child::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #707070;
}
.news-list__meta a {
  color: #676767;
}
@media print, screen and (min-width:769px) {
  .news-list__meta {
    margin-bottom: 2rem;
  }
  .news-list__meta > p > a {
    transition: 0.25s;
  }
  .news-list__meta > p > a:hover {
    color: #808080;
  }
}

.contact-wrap {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  padding-bottom: 6rem;
}
@media print, screen and (min-width:769px) {
  .contact-wrap {
    margin-left: auto;
    margin-right: auto;
    width: 76rem;
    padding-bottom: 18rem;
  }
}

.contact__intro {
  line-height: 2.2;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .contact__intro {
    margin-bottom: 4rem;
    padding: 0 2.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .contact__intro {
    line-height: 2.5;
    text-align: center;
    margin-bottom: 13rem;
  }
}

.contact__heading {
  text-align: center;
  font-size: 2rem;
  margin: 5rem 0;
  letter-spacing: 0.075em;
}
@media print, screen and (min-width:769px) {
  .contact__heading {
    font-size: 2.5rem;
    margin: 5rem 0 10rem;
  }
}

.people-wrap {
  margin-bottom: 8rem;
}
@media print, screen and (min-width:769px) {
  .people-wrap {
    margin-bottom: 12rem;
  }
}

/**
  peopleトップソートエリア
 */
.people-sort {
  margin-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .people-sort {
    margin-bottom: 4rem;
  }
}

.people-sort__trigger {
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .people-sort__trigger::before, .people-sort__trigger::after {
    content: "";
    display: block;
    position: absolute;
    width: 1.6rem;
    height: 0.1rem;
    background-color: #000;
    right: 1rem;
    top: 0.8rem;
    transition: 0.3s;
  }
  .people-sort__trigger::after {
    transform: rotate(90deg);
  }
  .people-sort__trigger.is-active::after {
    transform: rotate(0deg);
  }
}
@media print, screen and (min-width:769px) {
  .people-sort__trigger {
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
  }
}

.people-sort__list {
  display: flex;
  flex-wrap: wrap;
}
.people-sort__list > li {
  display: inline-block;
  margin-right: 0.35em;
  margin-bottom: 0.35em;
}
.people-sort__list > li:last-child {
  margin-right: 0;
}
.people-sort__list input {
  display: none;
}
.people-sort__list input:checked + .check-all,
.people-sort__list input:checked + .check {
  color: #fff;
  background-color: #676767;
}
.people-sort__list label {
  display: flex;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #808080;
  color: #808080;
  font-size: 1.3rem;
  padding: 0.5em;
}
@media print, screen and (min-width:769px) {
  .people-sort__list label {
    height: 3rem;
    font-size: 1.4rem;
    transition: background-color 0.25s;
  }
  .people-sort__list > li:hover label {
    background-color: #C9C9C9;
  }
}

/**
  people mv
 */
.people-mv {
  position: relative;
}
@media print, screen and (min-width:769px) {
  .people-mv {
    padding-top: 6rem;
  }
}

.people-mv__pict {
  display: block;
}
@media print, screen and (min-width:769px) {
  .people-mv__pict {
    width: calc(50% + 16rem);
  }
}

.people-mv-content {
  position: relative;
  z-index: 3;
  background-color: #eee;
  background-color: var(--mycolor);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .people-mv-content {
    width: 84vw;
    margin-top: -2.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2.5rem 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .people-mv-content {
    position: absolute;
    padding: 3.5rem 3rem;
    top: 0;
    left: calc(50% + 9rem);
    width: 34.4vw;
    min-width: 47rem;
    max-width: 70rem;
  }
}

.people-mv__name {
  color: #fff;
  font-size: 1.8rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.people-mv__name > small {
  font-size: 1.3rem;
  display: block;
  margin-top: 0.6em;
}
@media print, screen and (min-width:769px) {
  .people-mv__name {
    padding-bottom: 2rem;
    font-size: 3.2rem;
    margin-bottom: 3.5rem;
  }
  .people-mv__name > small {
    font-size: 2rem;
  }
}

.people-mv__meta > dt, .people-mv__meta > dd {
  line-height: 1.75;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.people-mv__meta > dt::before {
  display: inline-block;
  content: "●";
  font-size: 1rem;
  transform: translateY(-0.1rem);
  margin-right: 0.5em;
}
.people-mv__meta > dd {
  margin-bottom: 2rem;
}
.people-mv__meta > dd:last-of-type {
  margin-bottom: 0;
}
@media print, screen and (min-width:769px) {
  .people-mv__meta {
    display: flex;
    flex-wrap: wrap;
  }
  .people-mv__meta > dt, .people-mv__meta > dd {
    margin-bottom: 3rem;
  }
  .people-mv__meta > dt {
    width: 15rem;
  }
  .people-mv__meta > dt::before {
    transform: translateY(-0.2rem);
  }
  .people-mv__meta > dd {
    width: calc(100% - 15rem);
  }
}

/**
  people single 共通タイトル
 */
.people__heading {
  text-align: center;
}
.people__heading img {
  width: auto;
  height: 1.7rem;
}
@media print, screen and (min-width:769px) {
  .people__heading img {
    height: 2.8rem;
  }
}

/**
  people profile
 */
.people-profile {
  padding-top: 6.5rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 10rem;
}
@media print, screen and (min-width:769px) {
  .people-profile {
    width: 70rem;
    margin-left: auto;
    margin-right: auto;
    padding: 8rem 0 0;
    margin-bottom: 15rem;
  }
}

.people-profile__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.people-profile__list > dt, .people-profile__list > dd {
  line-height: 1.9;
  border-bottom: 1px solid #000;
  padding: 1rem 0;
}
.people-profile__list > dt {
  width: 35%;
}
.people-profile__list > dd {
  width: 65%;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .people-profile__list > dt {
    display: flex;
    align-items: center;
  }
}
@media print, screen and (min-width:769px) {
  .people-profile__list {
    margin-bottom: 5rem;
  }
  .people-profile__list > dt, .people-profile__list > dd {
    line-height: 2.4;
  }
}

.people-profile p:not(.people-profile__btn) {
  line-height: 1.9;
  font-size: 1.4rem;
  margin-bottom: 1em;
}
.people-profile p:not(.people-profile__btn):last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width:769px) {
  .people-profile p:not(.people-profile__btn) {
    line-height: 2.4;
    font-size: 1.6rem;
  }
}

.people-profile__btn {
  width: 18rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
}
@media print, screen and (min-width:769px) {
  .people-profile__btn {
    width: 23.6rem;
    margin-top: 10rem;
  }
}

/**
  people 最新記事
 */
.people-recent {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 8rem;
}
@media print, screen and (min-width:769px) {
  .people-recent {
    width: 90rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20rem;
  }
}

/**
  people other member
 */
.people-other {
  background-color: #EDEDED;
  padding: 5rem 0;
}
@media print, screen and (min-width:769px) {
  .people-other {
    padding: 8rem 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .people-other-list > li:nth-child(n+3) {
    display: none;
  }
}

.people-list {
  margin-right: -1.6rem;
}
@media print, screen and (min-width:769px) {
  .people-list {
    margin-right: -5rem;
  }
}

.people-list > li {
  width: calc(50% - 1.6rem);
  margin-right: 1.6rem;
  margin-bottom: 1.6rem;
}
@media print, screen and (min-width:769px) {
  .people-list > li {
    width: calc(33.33% - 5rem);
    margin-right: 5rem;
    margin-bottom: 5rem;
  }
  .people-list > li:hover .people-list__pict img {
    opacity: 0.8;
    transform: scale3d(1.05, 1.05, 1);
  }
}

.people-list__pict {
  position: relative;
  overflow: hidden;
}
.people-list__pict::before {
  float: left;
  content: "";
  padding-top: 100%;
}
.people-list__pict::after {
  display: block;
  content: "";
  clear: both;
}
.people-list__pict > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.people-list__pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale3d(1.01, 1.01, 1);
}
@media print, screen and (min-width:769px) {
  .people-list__pict {
    background-color: #000;
  }
  .people-list__pict img {
    transition: 0.25s;
  }
}

.people-list-content {
  padding: 2rem 1.5rem;
  background-color: #fff;
}
.people-list-content > p:not(.people-list__name) {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1em;
}
.people-list-content > p:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width:769px) {
  .people-list-content {
    padding: 2rem;
  }
  .people-list-content > p:not(.people-list__name) {
    font-size: 1.3rem;
  }
}

.people-list__name {
  font-size: 1.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: #B2B0B0;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #B2B0B0;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
.people-list__name > small {
  margin-top: 1rem;
  font-size: 0.65em;
  display: block;
  letter-spacing: 0.025em;
  /*font-weight: bold;*/
  font-family: "ゴシックMB101 R", "Gothic MB101 Regular", "A-OTF ゴシックMB101 Pro R", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .people-list__name {
    font-size: 2rem;
    padding-bottom: 1.5rem;
  }
}

.people-list__text {
  line-height: 1.9;
}
@media print, screen and (min-width:769px) {
  .people-list__text {
    font-size: 1.3rem;
  }
}

/**
  people list flex レイアウトバージョン
 */
.people-list.--layout {
  display: flex;
  flex-wrap: wrap;
}

/**
  リクルート共通
 */
.recruit__heading {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  font-size: 2.7rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
.recruit__heading small {
  display: inline-block;
  background-color: #ddd;
  color: #fff;
  padding: 0.6rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.recruit__heading span {
  display: block;
}
.recruit__heading::after {
  transition: 0.5s;
}
.recruit__heading.ef-scroll::after {
  transform: translate3d(100%, 0, 0);
}
@media print, screen and (min-width:769px) {
  .recruit__heading {
    font-size: 5rem;
  }
  .recruit__heading small {
    font-size: 1.6rem;
    padding: 1rem 2rem;
    margin-bottom: 3rem;
  }
}

.recruit__text {
  line-height: 2.15;
}
@media print, screen and (min-width:769px) {
  .recruit__text {
    line-height: 2.4;
  }
}

/**
  mv
 */
.recruit-mv {
  padding-top: 5.5rem;
  height: 100vh;
  position: absolute;
  top: 150vh;
  width: 100%;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .recruit-mv {
    top: 150vh;
  }
}
.recruit-mv::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 4;
  mix-blend-mode: multiply;
  background-color: rgba(77, 77, 77, 0.88);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 1s;
  opacity: 0;
  pointer-events: none;
}
.recruit-mv.is-darken::before {
  opacity: 1;
}
.recruit-mv.is-fixed {
  position: fixed;
  top: 0;
}
@media print, screen and (min-width:769px) {
  .recruit-mv {
    padding-top: 6.2rem;
    height: 100vh;
  }
}

.recruit-mv-head {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: row-reverse;
  top: calc(7vw + 5.5rem);
  right: 8vw;
  transition: 0.5s opacity;
}
.recruit-mv-head.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media print, screen and (min-width:769px) {
  .recruit-mv-head {
    right: 6vw;
    top: calc(5vw + 6.2rem);
  }
}

.recruit-mv__heading {
  width: 3.4vw;
  margin-left: 5vw;
}
@media print, screen and (min-width:769px) {
  .recruit-mv__heading {
    width: 1.6vw;
    margin-left: 3vw;
  }
}

.recruit-mv__catch {
  width: 22.4vw;
}
@media print, screen and (min-width:769px) {
  .recruit-mv__catch {
    width: 11.2vw;
  }
}

.recruit-mv__pict {
  position: relative;
  width: 100%;
  height: 100%;
}
.recruit-mv__pict::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.recruit-mv__pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-mv__info {
  position: absolute;
  height: 6.3rem;
  left: 1.5rem;
  padding: 1.4rem 1.5rem 0 7rem;
  bottom: 0;
  transition: 0.5s opacity;
}
.recruit-mv__info.is-intro {
  opacity: 0;
}
.recruit-mv__info.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.recruit-mv__info::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../../recruit/img/mv_fig.svg) no-repeat left top/contain;
  width: 5.3rem;
  height: 6.3rem;
  left: 0;
  top: 0;
}
.recruit-mv__info span:first-child {
  margin-right: 1em;
}
.recruit-mv__info > a, .recruit-mv__info > span {
  position: relative;
  background-color: #fff;
  padding: 0.5rem;
  display: flex;
  line-height: 1.3;
  font-size: 1rem;
}
.recruit-mv__info > a::before, .recruit-mv__info > span::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 12px 4.5px 0;
  border-color: transparent #ffffff transparent transparent;
  left: -12px;
}
.recruit-mv__info .info-date {
  margin-right: 1em;
}
@media print, screen and (min-width:769px) {
  .recruit-mv__info {
    left: 3rem;
    height: 10.8rem;
    padding: 2.4rem 6.2rem 0 11rem;
  }
  .recruit-mv__info::before {
    width: 9.2rem;
    height: 10.8rem;
  }
  .recruit-mv__info span {
    transition: 0.25s opacity;
  }
  .recruit-mv__info > a, .recruit-mv__info > span {
    font-size: 1.4rem;
    padding: 1rem 3rem 1rem 1.5rem;
  }
  .recruit-mv__info > a::before, .recruit-mv__info > span::before {
    border-width: 7px 20px 7px 0;
    left: -14px;
  }
  .recruit-mv__info > a:hover span {
    opacity: 0.6;
  }
}

.recruit-mv-content {
  position: relative;
  z-index: 6;
  height: 250vh;
  pointer-events: none;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .recruit-mv-content {
    padding-top: 120vh;
  }
}
@media print, screen and (min-width:769px) {
  .recruit-mv-content {
    /*display: flex;
    align-items: center;
    justify-content: center;*/
    padding-top: 120vh;
  }
}

.recruit-mv-content__text {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  line-height: 2.5;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .recruit-mv-content__text {
    font-size: 2.2rem;
    line-height: 2.7;
  }
}

/**
  company
 */
.recruit-company {
  background-color: #DCF5EF;
  padding: 5rem 0;
}
@media print, screen and (min-width:769px) {
  .recruit-company {
    padding: 17rem 0;
  }
}

.recruit__heading.--company small {
  background-color: #7EC956;
}

.recruit-company__text {
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width:769px) {
  .recruit-company__text {
    width: 50%;
  }
}

.recruit-company__map {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  margin-bottom: 4rem;
  margin-top: 0;
}
@media print, screen and (min-width:769px) {
  .recruit-company__map {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    margin-top: -10vw;
    margin-bottom: 4rem;
  }
}

.recruit-company__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.recruit-company__heading img {
  width: auto;
  height: 1.8rem;
}
@media print, screen and (min-width:769px) {
  .recruit-company__heading {
    margin-bottom: 5rem;
  }
  .recruit-company__heading img {
    height: 2.9rem;
  }
}

@media print, screen and (min-width:769px) {
  .recruit-company__list {
    display: flex;
    justify-content: space-between;
  }
}

.recruit-company__list > li {
  margin-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .recruit-company__list > li {
    width: 30.5%;
    margin-bottom: 0;
  }
}

.recruit-company__list picture {
  display: block;
  margin-bottom: 2rem;
}
@media print, screen and (min-width:769px) {
  .recruit-company__list picture {
    margin-bottom: 2rem;
  }
}

.recruit-company__list h4 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .recruit-company__list h4 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.recruit-company__list p {
  font-size: 1.3rem;
  line-height: 1.75;
}
@media print, screen and (min-width:769px) {
  .recruit-company__list p {
    font-size: 1.4rem;
  }
}

/**
  culture
 */
.recruit-culture {
  background-color: #F8F5D4;
  padding: 6rem 0;
  overflow: hidden;
}
@media print, screen and (min-width:769px) {
  .recruit-culture {
    padding: 10rem 0 8rem;
  }
}

.recruit__heading.--culture small {
  background-color: #E8C11F;
}

.recruit-culture-slide-wrap {
  position: relative;
}

.recruit-culture-slide .slick-list {
  overflow: visible;
}
@media print, screen and (min-width:769px) {
  .recruit-culture-slide {
    padding: 4vw 0;
    margin-bottom: 4rem;
  }
}

.recruit-culture-slide__item {
  transition: 0.3s;
  padding: 0 15vw;
}
.recruit-culture-slide__item picture {
  display: block;
  margin-bottom: 2.5rem;
}
.recruit-culture-slide__item p {
  transition: 0.3s;
  line-height: 1.75;
  text-align: center;
  font-size: 1.3rem;
}
@media print, screen and (min-width:769px) {
  .recruit-culture-slide__item {
    padding: 0 5rem;
  }
  .recruit-culture-slide__item p {
    font-size: 1.3rem;
    opacity: 0;
  }
  .recruit-culture-slide__item.slick-center {
    transform: scale3d(1.3, 1.3, 1);
  }
  .recruit-culture-slide__item.slick-center p {
    opacity: 1;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .recruit-culture-slide__nav {
    position: absolute;
    top: calc(50% - 6rem);
    width: 100%;
  }
  .recruit-culture-slide__nav .nav-arrow {
    width: 3.8rem;
    position: absolute;
  }
  .recruit-culture-slide__nav .nav-arrow.--prev {
    left: 1.5rem;
  }
  .recruit-culture-slide__nav .nav-arrow.--next {
    right: 1.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .recruit-culture-slide__nav {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    width: 31rem;
    margin-left: auto;
    margin-right: auto;
  }
  .recruit-culture-slide__nav .nav-arrow {
    width: 7rem;
    transition: 0.25s opacity;
  }
  .recruit-culture-slide__nav .nav-arrow:hover {
    opacity: 0.6;
  }
}

/**
  member
 */
.recruit-member {
  background-color: #F7ECF1;
  padding: 6rem 0;
}
@media print, screen and (min-width:769px) {
  .recruit-member {
    padding: 10rem 0 12rem;
  }
}

.recruit__heading.--member::after {
  content: "";
  display: block;
  position: absolute;
  width: 52.8vw;
  height: 25.3rem;
  right: 0;
  margin-top: -3vw;
  background: url(../../recruit/img/member_fig.png) no-repeat right top/contain;
}
@media print, screen and (min-width:769px) {
  .recruit__heading.--member::after {
    width: 39rem;
    height: 18.5rem;
    margin-top: -18rem;
  }
}

.recruit__heading.--member small {
  background-color: #E385C9;
}

.recruit-member-list {
  margin-bottom: 6rem;
}
@media print, screen and (min-width:769px) {
  .recruit-member-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 9rem;
  }
}

.recruit-member-list > li {
  margin-bottom: 4rem;
  cursor: pointer;
}
@media print, screen and (min-width:769px) {
  .recruit-member-list > li {
    width: 47.5%;
    margin-bottom: 8rem;
  }
}

.recruit-member-list__pict {
  display: block;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width:769px) {
  .recruit-member-list__pict {
    margin-bottom: 2rem;
    overflow: hidden;
  }
  .recruit-member-list__pict img {
    transition: 0.25s transform;
  }
  .recruit-member-list__pict:hover img {
    transform: scale3d(1.05, 1.05, 1);
  }
}

.recruit-member-list__heading {
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .recruit-member-list__heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

.recruit-member-list__shoulder {
  line-height: 1.5;
}

/**
  style
 */
.recruit-style {
  position: relative;
  background-color: #DBF3FC;
  padding: 4rem 0 6rem;
}
@media print, screen and (min-width:769px) {
  .recruit-style {
    padding: 10rem 0 12rem;
  }
}

.recruit__heading.--style::after {
  content: "";
  display: block;
  position: absolute;
  width: 8.6rem;
  height: 9.7rem;
  right: 0;
  top: 5vw;
  background: url(../../recruit/img/style_fig.png) no-repeat right top/contain;
}
@media print, screen and (min-width:769px) {
  .recruit__heading.--style::after {
    width: 14.4rem;
    height: 16.3rem;
    top: auto;
    margin-top: -14rem;
  }
}

.recruit__heading.--style small {
  background-color: #00A9BF;
}

.recruit-style-list > li {
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .recruit-style-list > li {
    padding-top: 13rem;
    margin-bottom: 5rem;
  }
}
@media print, screen and (min-width:769px) {
  .recruit-style-list > li {
    display: flex;
    margin-left: 15%;
    margin-bottom: 6rem;
    width: 58rem;
  }
  .recruit-style-list > li:nth-child(2n) {
    margin-left: 50%;
  }
  .recruit-style-list > li:hover .recruit-style-list__balloon > span::after {
    transform-origin: 100% 0;
    transform: scale3d(0, 1, 1);
  }
  .recruit-style-list > li:hover .recruit-style-list__pict img {
    transform: scale3d(1.05, 1.05, 1);
  }
}

.recruit-style-list__balloon {
  position: absolute;
  z-index: 2;
  width: 24rem;
  height: 17rem;
  background: url(../../recruit/img/style_shape.svg) no-repeat center center/contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  font-size: 1.4rem;
  top: 0;
  right: -1rem;
  padding-top: 1rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
.recruit-style-list__balloon > span {
  position: relative;
  display: inline-block;
  padding: 0 0.2rem;
  margin-top: 0.5rem;
}
.recruit-style-list__balloon > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: 0 0;
  transition: 0.3s transform;
}
@media print, screen and (min-width:769px) {
  .recruit-style-list__balloon {
    width: 24rem;
    height: 18.6rem;
    left: 18rem;
    top: -6rem;
  }
  .recruit-style-list__balloon > span {
    font-size: 1.4rem;
  }
}

.recruit-style-list__pict {
  overflow: hidden;
  border-radius: 50%;
}
.recruit-style-list__pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.25s transform;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .recruit-style-list__pict {
    width: 23rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .recruit-style-list__pict {
    width: 30rem;
    height: 30rem;
  }
}

.recruit-style-list__heading {
  line-height: 1.5;
  text-align: center;
  font-size: 2rem;
}
.recruit-style-list__heading > small {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
@media print, screen and (min-width:769px) {
  .recruit-style-list__heading {
    text-align: left;
    font-size: 2.5rem;
    margin-left: 3.5rem;
    margin-top: 11.5rem;
    width: calc(100% - 30rem);
  }
  .recruit-style-list__heading > small {
    font-size: 1.8rem;
  }
}

.recruit-style-list__heading {
  line-height: 1.5;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
  white-space: nowrap;
}
@media print, screen and (min-width:769px) {
  .recruit-style-list__heading {
    font-size: 2.5rem;
  }
}

.recruit-style-list__shoulder {
  line-height: 1.5;
}

.recruit-style-modal {
  background-color: rgb(255, 255, 255);
  display: none;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  left: 0;
  top: 0;
  overflow-y: auto;
  padding: 7rem 5vw calc(env(safe-area-inset-bottom) + 5rem);
  z-index: 111;
  opacity: 0;
}
.recruit-style-modal.is-beforeEnter {
  display: block;
  opacity: 0;
}
.recruit-style-modal.is-enter {
  display: block;
  transition: 0.5s opacity;
  opacity: 1;
}
.recruit-style-modal.is-leave {
  display: block;
  transition: 0.5s opacity;
  opacity: 0;
}
@media print, screen and (min-width:769px) {
  .recruit-style-modal {
    padding: 6rem;
  }
}

.recruit-style-modal__close {
  position: fixed;
  z-index: 111;
  right: 2.5rem;
  top: 2rem;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.recruit-style-modal__close img {
  width: 2.4rem;
  display: block;
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width:769px) {
  .recruit-style-modal__close {
    right: auto;
    width: 7rem;
    height: 7rem;
    left: calc(50% + 37rem);
    top: 5rem;
    font-size: 1.3rem;
    transition: 0.25s opacity;
  }
  .recruit-style-modal__close:hover {
    opacity: 0.6;
  }
  .recruit-style-modal__close img {
    width: 3rem;
    margin-bottom: 0.6rem;
  }
}

.recruit-style-modal-inner {
  border: 2px solid #28A9BE;
  border-radius: 3rem;
  padding: 3rem 2rem;
}
@media print, screen and (min-width:769px) {
  .recruit-style-modal-inner {
    width: 73rem;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 4rem;
    border-radius: 6rem;
  }
}

.recruit-style-modal__content > li {
  display: none;
}
.recruit-style-modal__content > li.is-active {
  display: block;
}
.recruit-style-modal__content .content-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.recruit-style-modal__content .content-pict {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  overflow: hidden;
}
.recruit-style-modal__content .content-pict img {
  margin-left: auto;
  margin-right: auto;
}
.recruit-style-modal__content .content-heading {
  line-height: 1.5;
  width: calc(100% - 10.5rem);
}
.recruit-style-modal__content .content-heading small {
  display: block;
  margin-bottom: 0.5em;
}
.recruit-style-modal__content .content-main p {
  line-height: 1.75;
  margin-bottom: 1em;
}
.recruit-style-modal__content .content-main p:last-child {
  margin-bottom: 0;
}
.recruit-style-modal__content .content-timeline > dt {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  position: relative;
  background-color: #28A9BE;
  color: #fff;
  padding: 0.7rem 1.5rem;
  font-size: 1.5rem;
  padding-left: 7rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.recruit-style-modal__content .content-timeline > dt span {
  position: absolute;
  display: block;
  left: 1rem;
}
.recruit-style-modal__content .content-timeline > dd {
  margin-bottom: 2rem;
}
@media print, screen and (min-width:769px) {
  .recruit-style-modal__content .content-head {
    width: 44rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }
  .recruit-style-modal__content .content-pict {
    width: 13.5rem;
    height: 13.5rem;
  }
  .recruit-style-modal__content .content-heading {
    width: calc(100% - 16rem);
    font-size: 2.2rem;
    white-space: nowrap;
  }
  .recruit-style-modal__content .content-heading small {
    font-size: 1.6rem;
  }
  .recruit-style-modal__content .content-timeline > dt {
    background-color: #28A9BE;
    color: #fff;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    padding-left: 11rem;
    font-size: 1.8rem;
  }
  .recruit-style-modal__content .content-timeline > dd {
    margin-bottom: 2.5rem;
  }
}

/**
  もっと知りたい方へ
 */
.recruit-more {
  background-color: #FDEAC6;
  padding: 6rem 0;
}
@media print, screen and (min-width:769px) {
  .recruit-more {
    padding: 10rem 0 15vw;
  }
}

.recruit-more__heading {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .recruit-more__heading {
    margin-bottom: 8rem;
    font-size: 3.8rem;
  }
}

@media print, screen and (min-width:769px) {
  .recruit-more__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.recruit-more__list > li {
  border: 1px solid #242424;
  margin-bottom: 1.2rem;
}
@media print, screen and (min-width:769px) {
  .recruit-more__list > li {
    width: calc(50% - 1.5rem);
    border: 1px solid #707070;
    margin-bottom: 3rem;
    overflow: hidden;
  }
  .recruit-more__list > li img {
    transition: 0.25s;
  }
  .recruit-more__list > li:hover img {
    transform: scale3d(1.05, 1.05, 1);
  }
}

/**
  joint us
 */
.recruit-join {
  position: relative;
  padding: 6rem 0;
}
.recruit-join::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20vw;
  background: url(../../recruit/img/join_shape.svg) no-repeat center top/100% auto;
  top: -9vw;
  z-index: 0;
}
@media print, screen and (min-width:769px) {
  .recruit-join {
    padding: 10rem 0 16rem;
  }
  .recruit-join::before {
    height: 20vw;
    top: -9vw;
  }
}

.recruit-join__heading {
  position: relative;
  z-index: 3;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
@media print, screen and (min-width:769px) {
  .recruit-join__heading {
    width: 76.6rem;
    margin-bottom: 8rem;
  }
}

.recruit-join__catch {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}
@media print, screen and (min-width:769px) {
  .recruit-join__catch {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}

.recruit-join__text {
  text-align: center;
  line-height: 2.4;
  margin-bottom: 6rem;
}
@media print, screen and (min-width:769px) {
  .recruit-join__text {
    margin-bottom: 10rem;
  }
}

.recruit-container {
  margin-left: auto;
  margin-right: auto;
  border-radius: 2.5rem;
  border: 3px solid #ED9925;
  padding: 3rem 1.5rem 4rem;
}
@media print, screen and (min-width:769px) {
  .recruit-container {
    border-radius: 5rem;
    width: 90rem;
    padding: 7rem;
  }
}

.recruit-join__pict {
  margin-bottom: 2rem;
}
@media print, screen and (min-width:769px) {
  .recruit-join__pict {
    margin-bottom: 0;
  }
}

.recruit-join__heading2 {
  text-align: center;
  color: #ED9925;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
}
@media print, screen and (min-width:769px) {
  .recruit-join__heading2 {
    font-size: 3.2rem;
    margin-bottom: 7rem;
  }
}

.recruit-join-block {
  margin-bottom: 6rem;
}
.recruit-join-block:last-of-type {
  margin-bottom: 0;
}
@media print, screen and (min-width:769px) {
  .recruit-join-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
  }
}

@media print, screen and (min-width:769px) {
  .recruit-join-box {
    width: 28rem;
  }
}

@media print, screen and (min-width:769px) {
  .recruit-join-content {
    width: calc(100% - 31.5rem);
  }
}

.recruit-join__segment {
  margin-top: 1.5rem;
  display: flex;
  margin-bottom: 2rem;
}
.recruit-join__segment > li {
  background-color: #ED9925;
  padding: 0.5rem 0.8rem;
  white-space: nowrap;
  color: #fff;
  margin-right: 0.7rem;
}
.recruit-join__segment > li:last-child {
  margin-right: 0;
}
@media print, screen and (min-width:769px) {
  .recruit-join__segment {
    margin-top: 1.5rem;
  }
  .recruit-join__segment > li {
    font-size: 1.4rem;
  }
}

.recruit-join__heading3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  .recruit-join__heading3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.recruit-join__text2 {
  line-height: 2;
}
.recruit-join__text2 small {
  display: block;
  line-height: 1.5;
  margin-top: 1rem;
}
@media print, screen and (min-width:769px) {
  .recruit-join__text2 small {
    font-size: 1.4rem;
  }
}

.recruit-join__btn {
  margin-top: 2rem;
}
@media print, screen and (min-width:769px) {
  .recruit-join__btn {
    margin-top: 3rem;
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
/* ==========================================================================

	#テキストモジュールとユーティリティ

	36　コピー
	27　 H1相当　ページタイトル
	25　 H2相当　コピー・見出しおよびラベル
	24　 H3相当　見出しおよびラベル
	20　コピー・中見出し・ラベル
	18　本文：大・ラベル
	16　本文：中
	14　本文：小を使用しています。
	12　最小（注文など一部のみ）

 */
/* -------------------------------------------------------------------------
	本文指定
*/
.txt-ll,
.txt-l,
.txt-m,
.txt-s,
.txt-ss {
  line-height: 1.75;
}

.txt-ll {
  font-size: 2.2rem;
}

.txt-l {
  font-size: 1.8rem;
}

.txt-m {
  font-size: 1.6rem;
}

.txt-s {
  font-size: 1.4rem;
}

.txt-ss {
  font-size: 1.2rem;
}

.txt-intro {
  font-size: 1.5rem;
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
  line-height: 2;
}
@media screen and (min-width: 640px) and (max-width: 768px) {
  .txt-intro {
    font-size: clamp(1.5rem, 2.344vw, 1.8rem);
  }
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  .txt-intro {
    font-size: 1.8rem;
    font-size: clamp(1.584rem, 1.375vw, 2rem);
  }
}
@media screen and (min-width: 1441px) {
  .txt-intro {
    font-size: 2.07rem;
  }
}
@media print, screen and (min-width:769px) {
  .txt-intro {
    text-align: center;
  }
}

/* -------------------------------------------------------------------------
	ユーティリティmisc
*/
/*一字下げ*/
.indent-head {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.font-bold {
  font-family: "ゴシックMB101 M", "Gothic MB101 Medium", "A-OTF ゴシックMB101 Pro M", sans-serif;
  font-style: normal;
}

.font-normal {
  font-weight: normal;
}

/* ==========================================================================

   ユーティリティモジュール

 */
/* -------------------------------------------------------------------------
	画像を100%に/100%を解除
	<img class="u-fit" src="xxx.jpg" />
*/
.u-fit {
  width: 100%;
  height: auto;
}

.u-free {
  width: auto;
}

/* -------------------------------------------------------------------------
	SPのみ、PCのみで改行させる
	<br class="u-spbr" />
	<br class="u-pcbr" />
*/
.u-spbr {
  display: none;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-spbr {
    display: inline;
  }
}

.u-pcbr {
  display: none;
}
@media print, screen and (min-width:769px) {
  .u-pcbr {
    display: inline;
  }
}

.u-tdbr {
  display: none;
}
@media only screen and (max-width: 768px) {
  .u-tdbr {
    display: inline;
  }
}

/* -------------------------------------------------------------------------
	フロート
*/
@media print, screen and (min-width:769px) {
  .u-floatL {
    float: left;
  }
}

@media print, screen and (min-width:769px) {
  .u-floatR {
    float: right;
  }
}

/* -------------------------------------------------------------------------
	position:relative
*/
.u-relative {
  position: relative;
}

/* -------------------------------------------------------------------------
	インラインテキストリンク
*/
.u-textLink:link, .u-textLink:visited {
  text-decoration: underline;
}
@media print, screen and (min-width:769px) {
  .u-textLink:hover {
    text-decoration: none;
  }
}

.u-textLink.--newwin::after {
  display: inline-block;
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  margin-left: 1rem;
  background: url(../img/ic_newwin.svg) no-repeat center center/contain;
}

/* -------------------------------------------------------------------------
	縦書きテキスト
*/
.u-vertical-text {
  font-feature-settings: "pkna";
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  -ms-text-combine-horizontal: all;
}

/* -------------------------------------------------------------------------
	ブロック指定
*/
.u-inlineBlock {
  display: inline-block;
}

.u-block {
  display: block;
}

/* -------------------------------------------------------------------------
	リスト要素のスタイル
*/
.u-listIndent li {
  font-size: 1.6rem;
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.75em;
  margin-bottom: 1.2em;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-listIndent li {
    font-size: 1.1rem;
    margin-bottom: 0.5em;
  }
}

.u-listDisc li {
  list-style-type: disc;
  margin-bottom: 1em;
  margin-left: 1.2em;
}

/* -------------------------------------------------------------------------
	PCレイアウト時に非表示
*/
.u-sp-only {
  display: none !important;
}

.u-pc-only {
  display: block !important;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-sp-only {
    display: block !important;
  }
  .u-pc-only {
    display: none !important;
  }
}
.u-noWrap {
  white-space: nowrap;
}

@media print, screen and (min-width:769px) {
  .u-pc-pdng {
    display: inline-block;
    width: 20px;
  }
}

/* -------------------------------------------------------------------------
	サイズ
*/
.l-w10 {
  width: 10px;
}

.l-w20 {
  width: 20px;
}

.l-w30 {
  width: 30px;
}

.l-w40 {
  width: 40px;
}

.l-w50 {
  width: 50px;
}

.l-w60 {
  width: 60px;
}

.l-w70 {
  width: 70px;
}

.l-w80 {
  width: 80px;
}

.l-w90 {
  width: 90px;
}

.l-w100 {
  width: 100px;
}

.l-w120 {
  width: 120px;
}

.l-w140 {
  width: 140px;
}

.l-w160 {
  width: 160px;
}

.l-w180 {
  width: 180px;
}

.l-w200 {
  width: 200px;
}

.l-w220 {
  width: 220px;
}

.l-w240 {
  width: 240px;
}

.l-w260 {
  width: 260px;
}

.l-w280 {
  width: 280px;
}

.l-w300 {
  width: 300px;
}

.l-w320 {
  width: 320px;
}

.l-w340 {
  width: 340px;
}

.l-w360 {
  width: 360px;
}

.l-w380 {
  width: 380px;
}

.l-w400 {
  width: 400px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-sp-w-auto {
    width: auto !important;
  }
  .l-sp-w10 {
    width: 10px !important;
  }
  .l-sp-w20 {
    width: 20px !important;
  }
  .l-sp-w30 {
    width: 30px !important;
  }
  .l-sp-w40 {
    width: 40px !important;
  }
  .l-sp-w50 {
    width: 50px !important;
  }
  .l-sp-w60 {
    width: 60px !important;
  }
  .l-sp-w70 {
    width: 70px !important;
  }
  .l-sp-w80 {
    width: 80px !important;
  }
  .l-sp-w90 {
    width: 90px !important;
  }
  .l-sp-w100 {
    width: 100px !important;
  }
}
/* -------------------------------------------------------------------------
	マージン
*/
.l-mb0 {
  margin-bottom: 0px !important;
}

.l-mb5 {
  margin-bottom: 5px !important;
}

.l-mb10 {
  margin-bottom: 10px !important;
}

.l-mb15 {
  margin-bottom: 15px !important;
}

.l-mb20 {
  margin-bottom: 20px !important;
}

.l-mb25 {
  margin-bottom: 25px !important;
}

.l-mb30 {
  margin-bottom: 30px !important;
}

.l-mb35 {
  margin-bottom: 35px !important;
}

.l-mb40 {
  margin-bottom: 40px !important;
}

.l-mb45 {
  margin-bottom: 45px !important;
}

.l-mb50 {
  margin-bottom: 50px !important;
}

.l-mb55 {
  margin-bottom: 55px !important;
}

.l-mb60 {
  margin-bottom: 60px !important;
}

.l-mb65 {
  margin-bottom: 65px !important;
}

.l-mb70 {
  margin-bottom: 70px !important;
}

.l-mb75 {
  margin-bottom: 75px !important;
}

.l-mb80 {
  margin-bottom: 80px !important;
}

.l-mb85 {
  margin-bottom: 85px !important;
}

.l-mb90 {
  margin-bottom: 90px !important;
}

.l-mb95 {
  margin-bottom: 95px !important;
}

.l-mb100 {
  margin-bottom: 100px !important;
}

.l-mb100 {
  margin-bottom: 100px;
}

.l-mb110 {
  margin-bottom: 110px;
}

.l-mb120 {
  margin-bottom: 120px;
}

.l-mb130 {
  margin-bottom: 130px;
}

.l-mb140 {
  margin-bottom: 140px;
}

.l-mb150 {
  margin-bottom: 150px;
}

.l-mb160 {
  margin-bottom: 160px;
}

.l-mb170 {
  margin-bottom: 170px;
}

.l-mb180 {
  margin-bottom: 180px;
}

.l-mb190 {
  margin-bottom: 190px;
}

.l-mb200 {
  margin-bottom: 200px;
}

.l-mt0 {
  margin-top: 0px !important;
}

.l-mt5 {
  margin-top: 5px !important;
}

.l-mt10 {
  margin-top: 10px !important;
}

.l-mt15 {
  margin-top: 15px !important;
}

.l-mt20 {
  margin-top: 20px !important;
}

.l-mt25 {
  margin-top: 25px !important;
}

.l-mt30 {
  margin-top: 30px !important;
}

.l-mt35 {
  margin-top: 35px !important;
}

.l-mt40 {
  margin-top: 40px !important;
}

.l-mt45 {
  margin-top: 45px !important;
}

.l-mt50 {
  margin-top: 50px !important;
}

.l-mt55 {
  margin-top: 55px !important;
}

.l-mt60 {
  margin-top: 60px !important;
}

.l-mt65 {
  margin-top: 65px !important;
}

.l-mt70 {
  margin-top: 70px !important;
}

.l-mt75 {
  margin-top: 75px !important;
}

.l-mt80 {
  margin-top: 80px !important;
}

.l-mt85 {
  margin-top: 85px !important;
}

.l-mt90 {
  margin-top: 90px !important;
}

.l-mt95 {
  margin-top: 95px !important;
}

.l-mt100 {
  margin-top: 100px !important;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb0-sp {
    margin-bottom: 0px !important;
  }
  .l-mb5-sp {
    margin-bottom: 5px !important;
  }
  .l-mb10-sp {
    margin-bottom: 10px !important;
  }
  .l-mb15-sp {
    margin-bottom: 15px !important;
  }
  .l-mb20-sp {
    margin-bottom: 20px !important;
  }
  .l-mb25-sp {
    margin-bottom: 25px !important;
  }
  .l-mb30-sp {
    margin-bottom: 30px !important;
  }
  .l-mb35-sp {
    margin-bottom: 35px !important;
  }
  .l-mb40-sp {
    margin-bottom: 40px !important;
  }
  .l-mb45-sp {
    margin-bottom: 45px !important;
  }
  .l-mb50-sp {
    margin-bottom: 50px !important;
  }
  .l-mb55-sp {
    margin-bottom: 55px !important;
  }
  .l-mb60-sp {
    margin-bottom: 60px !important;
  }
  .l-mb65-sp {
    margin-bottom: 65px !important;
  }
  .l-mb70-sp {
    margin-bottom: 70px !important;
  }
  .l-mb75-sp {
    margin-bottom: 75px !important;
  }
  .l-mb80-sp {
    margin-bottom: 80px !important;
  }
  .l-mb85-sp {
    margin-bottom: 85px !important;
  }
  .l-mb90-sp {
    margin-bottom: 90px !important;
  }
  .l-mb95-sp {
    margin-bottom: 95px !important;
  }
  .l-mb100-sp {
    margin-bottom: 100px !important;
  }
  .l-mb100-sp {
    margin-bottom: 100px;
  }
  .l-mb110-sp {
    margin-bottom: 110px;
  }
  .l-mb120-sp {
    margin-bottom: 120px;
  }
  .l-mb130-sp {
    margin-bottom: 130px;
  }
  .l-mb140-sp {
    margin-bottom: 140px;
  }
  .l-mb150-sp {
    margin-bottom: 150px;
  }
  .l-mb160-sp {
    margin-bottom: 160px;
  }
  .l-mb170-sp {
    margin-bottom: 170px;
  }
  .l-mb180-sp {
    margin-bottom: 180px;
  }
  .l-mb190-sp {
    margin-bottom: 190px;
  }
  .l-mb200-sp {
    margin-bottom: 200px;
  }
  .l-mt0-sp {
    margin-top: 0px !important;
  }
  .l-mt5-sp {
    margin-top: 5px !important;
  }
  .l-mt10-sp {
    margin-top: 10px !important;
  }
  .l-mt15-sp {
    margin-top: 15px !important;
  }
  .l-mt20-sp {
    margin-top: 20px !important;
  }
  .l-mt25-sp {
    margin-top: 25px !important;
  }
  .l-mt30-sp {
    margin-top: 30px !important;
  }
  .l-mt35-sp {
    margin-top: 35px !important;
  }
  .l-mt40-sp {
    margin-top: 40px !important;
  }
  .l-mt45-sp {
    margin-top: 45px !important;
  }
  .l-mt50-sp {
    margin-top: 50px !important;
  }
  .l-mt55-sp {
    margin-top: 55px !important;
  }
  .l-mt60-sp {
    margin-top: 60px !important;
  }
  .l-mt65-sp {
    margin-top: 65px !important;
  }
  .l-mt70-sp {
    margin-top: 70px !important;
  }
  .l-mt75-sp {
    margin-top: 75px !important;
  }
  .l-mt80-sp {
    margin-top: 80px !important;
  }
  .l-mt85-sp {
    margin-top: 85px !important;
  }
  .l-mt90-sp {
    margin-top: 90px !important;
  }
  .l-mt95-sp {
    margin-top: 95px !important;
  }
  .l-mt100-sp {
    margin-top: 100px !important;
  }
}
/* -------------------------------------------------------------------------
	テキスト揃え
*/
.l-alignL {
  text-align: left;
}

.l-alignR {
  text-align: right;
}

.l-alignC {
  text-align: center;
}

.l-block-alignC {
  margin-left: auto;
  margin-right: auto;
}

.l-valign-m {
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-sp-alignL {
    text-align: left;
  }
  .l-sp-alignR {
    text-align: right;
  }
  .l-sp-alignC {
    text-align: center;
  }
}
/* ==========================================================================
   animation
   ========================================================================== */
.ef-scroll,
.ef-scroll-in,
.ef-intro {
  pointer-events: none;
}

.tr-shutter {
  display: block;
  position: relative;
  overflow: hidden;
}
.tr-shutter > div,
.tr-shutter > a {
  /*transition-duration: $shutter_dur / 1.5; */
  transition-delay: 0.6s;
}
.tr-shutter::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100px;
  z-index: 12;
  background-color: #444;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.56, 0, 0.11, 1);
  transition: 0.6s transform;
  will-change: transform;
}
.tr-shutter.ef-scroll *, .tr-shutter.ef-scroll-in *, .tr-shutter.ef-intro * {
  opacity: 0;
}
.tr-shutter.ef-scroll::after, .tr-shutter.ef-scroll-in::after, .tr-shutter.ef-intro::after {
  opacity: 0;
}

.tr-shutter.ef-anim-in::after {
  -webkit-animation: 1.2s anim-shutter-l forwards;
          animation: 1.2s anim-shutter-l forwards;
  -webkit-animation-timing-function: cubic-bezier(0.56, 0, 0.11, 1);
          animation-timing-function: cubic-bezier(0.56, 0, 0.11, 1);
}

.tr-shutter2 {
  display: block;
  position: relative;
  overflow: hidden;
}
.tr-shutter2 > div,
.tr-shutter2 > a {
  transition-delay: 0.6s;
}
.tr-shutter2 .shutter-cover {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100px;
  z-index: 12;
  background-color: #ff0000;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.56, 0, 0.11, 1);
  transition: 0.6s transform;
  will-change: transform;
}
.tr-shutter2.ef-scroll *, .tr-shutter2.ef-scroll-in *, .tr-shutter2.ef-intro * {
  visibility: hidden;
}
.tr-shutter2.ef-scroll .shutter-cover, .tr-shutter2.ef-scroll-in .shutter-cover, .tr-shutter2.ef-intro .shutter-cover {
  opacity: 0;
}

.tr-shutter2.ef-anim-in .shutter-cover {
  -webkit-animation: 1.2s anim-shutter-l forwards;
          animation: 1.2s anim-shutter-l forwards;
  -webkit-animation-timing-function: cubic-bezier(0.56, 0, 0.11, 1);
          animation-timing-function: cubic-bezier(0.56, 0, 0.11, 1);
}

@-webkit-keyframes anim-shutter-l {
  0% {
    transform: scale3d(0.01, 1, 1);
  }
  50% {
    transform: scale3d(1, 1, 1);
  }
  99.9% {
    transform: translate3d(100%, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
}

@keyframes anim-shutter-l {
  0% {
    transform: scale3d(0.01, 1, 1);
  }
  50% {
    transform: scale3d(1, 1, 1);
  }
  99.9% {
    transform: translate3d(100%, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
}
.tr-slideup {
  transition: transform 1.5s, opacity 1.5s;
}
.tr-slideup.ef-scroll, .tr-slideup.ef-scroll-in {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}
@media print, screen and (min-width:769px) {
  .tr-slideup.ef-scroll, .tr-slideup.ef-scroll-in {
    transform: translate3d(0, 60px, 0);
  }
}

.tr-right {
  transition: transform 1.5s, opacity 1.5s;
}
.tr-right.ef-scroll, .tr-right.ef-scroll-in {
  opacity: 0;
  transform: translate3d(-30px, 0, 0);
}
@media print, screen and (min-width:769px) {
  .tr-right.ef-scroll, .tr-right.ef-scroll-in {
    transform: translate3d(-60px, 0, 0);
  }
}

.tr-fade-in {
  transition: transform 1.5s, opacity 1.5s;
}
.tr-fade-in.ef-scroll, .tr-fade-in.ef-scroll-in {
  opacity: 0;
}